/* 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;
}

/* Keep the hand cursor reserved for controls that perform a real action. */
a[href],
button:not(:disabled),
input[type="button"]:not(:disabled),
input[type="submit"]:not(:disabled),
input[type="reset"]:not(:disabled),
input[type="checkbox"]:not(:disabled),
input[type="radio"]:not(:disabled),
select:not(:disabled),
label[for],
summary,
[role="button"]:not([aria-disabled="true"]),
[data-open-trial-popup="true"] {
  cursor: pointer;
}

/* Placeholder anchors have no destination or click behavior. */
a[href="javascript:void(0)"]:not([data-open-trial-popup="true"]) {
  cursor: default;
  pointer-events: none;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

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: #262626;
    --color-surface-stronger: #0a1731;
    --color-border: rgba(16, 35, 71, 0.1);
    --color-border-strong: rgba(36, 107, 255, 0.2);
    --color-text: #262626;
    --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: '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);

    /* qKnow 产品营销页：1524px 核心版心 */
    --container-product: 1524px;
    --grid-columns-desktop: 12;
    --grid-columns-tablet: 8;
    --grid-columns-mobile: 4;
    --grid-gutter-desktop: 16px;
    --grid-gutter-mobile: 12px;
    --page-padding-desktop: 20px;
    --page-padding-tablet: 24px;
    --page-padding-mobile: 16px;
    --header-height-desktop: 72px;
    --page-padding-current: var(--page-padding-mobile);
    --grid-columns-current: var(--grid-columns-mobile);
    --grid-gutter-current: var(--grid-gutter-mobile);
    --content-max-width: min(
        var(--container-product),
        calc(100vw - 2 * var(--page-padding-current))
    );

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

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

    /* 断点说明
   * 手机：<=767px（4 栏）
   * 平板 / 中屏：768px–1199px（8 栏）
   * 桌面：1200px–1439px（12 栏）
   * 大屏：>=1440px（12 栏，1524px 版心上限）
   */
}

/*
 * qKnow 产品营销页响应式栅格：
 * 768px–1199px  8 栏 / 16px Gutter / 左右 24px
 * 1200px–1439px 12 栏 / 16px Gutter / 左右 24px
 * >=1440px      12 栏 / 16px Gutter / 左右至少 20px，版心上限 1524px
 */
html.is-desktop {
    --page-padding-current: var(--page-padding-tablet);
    --grid-columns-current: var(--grid-columns-tablet);
    --grid-gutter-current: var(--grid-gutter-desktop);
    --content-max-width: min(
        var(--container-product),
        calc(100vw - 2 * var(--page-padding-current))
    );
    --gutter-x: max(
        var(--page-padding-current),
        calc((100vw - var(--content-max-width)) / 2)
    );
}

@media (min-width: 1200px) {
    html.is-desktop {
        --grid-columns-current: var(--grid-columns-desktop);
    }
}

@media (min-width: 1440px) {
    html.is-desktop {
        --page-padding-current: var(--page-padding-desktop);
    }
}

html.is-mobile {
    --page-padding-current: var(--page-padding-mobile);
    --grid-columns-current: var(--grid-columns-mobile);
    --grid-gutter-current: var(--grid-gutter-mobile);
    --content-max-width: min(
        var(--container-product),
        calc(100vw - 2 * var(--page-padding-current))
    );
    --gutter-x: var(--page-padding-current);
}

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

body {
    position: relative;
    min-width: 0;
    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.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) {

  /* Header: slide down from top */
  html.site-motion--intro .site-header {
    animation: m-slide-down 0.6s var(--m-ease) 0s both;
  }

  /* 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;
  }

  /* 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 */
}

html.is-desktop main#main-content {
    margin-top: calc(-1 * var(--header-height-desktop));
}


.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));
}

/* qKnow 产品营销页统一版心：最大 1524px，并随视口流式收缩。 */
.content-inner {
    width: var(--content-max-width);
    max-width: var(--container-product);
    margin-inline: auto;
    box-sizing: border-box;
}

html.is-desktop .content-inner {
    width: var(--content-max-width) !important;
    max-width: var(--container-product) !important;
}

/* PC：页头、页脚和内容模块使用同一条版心线。 */
html.is-desktop .site-container.site-container--wide {
    width: var(--content-max-width);
    margin-inline: auto;
    max-width: var(--container-product);
    box-sizing: border-box;
}

/* 供跨栏组件复用的 12 / 8 / 4 栅格。 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-current), minmax(0, 1fr));
    gap: var(--grid-gutter-current);
}

.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-back-to-top {
    position: absolute;
    top: calc(100% + 24px);
    left: 50%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(55, 14, 138, 0.12);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.sidebar-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sidebar-back-to-top:hover {
    box-shadow: 0 14px 40px rgba(55, 14, 138, 0.18);
    transform: translate(-50%, -2px);
}

.sidebar-back-to-top:focus-visible {
    outline: 2px solid #0e78ff;
    outline-offset: 3px;
}

.sidebar-back-to-top img {
    display: block;
    width: 20px;
    height: 24px;
}

@media (prefers-reduced-motion: reduce) {
    .sidebar-back-to-top {
        transition: none;
    }
}

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

.sidebar :is(a, button).sidebar-item {
    cursor: pointer;
}

.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);
}

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

/* 平板和中屏下避免悬浮咨询条遮挡 8 栏内容区。 */
@media (max-width: 1199px) {
    .sidebar {
        display: none;
    }
}

/* source: styles/components/header.css */
/* ==========================================================================
   Header – Top Navigation Bar
   qKnow product marketing layout (1524px content width)
   ========================================================================== */

.site-header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.site-header__surface {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
}

.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%
    ); */
    /* background-color: #fff; */
}

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

html.is-desktop .site-header .site-container--wide.content-inner {
    width: var(--content-max-width) !important;
    margin-inline: auto;
    max-width: var(--container-product) !important;
    padding-left: 0;
    padding-right: 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);
    z-index: 9;
}

.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;
}

/* Dropdown-only nav items are clickable controls. */
.site-nav__link--button {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.site-nav__link--button:hover,
.site-nav__link--button:focus-visible,
.site-nav__link--button[aria-expanded='true'],
.site-nav__link--button.is-current {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
}

.site-nav__link--button:hover::after,
.site-nav__link--button:focus-visible::after,
.site-nav__link--button[aria-expanded='true']::after,
.site-nav__link--button.is-current::after {
    width: 0;
}

.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;
}

.is-mobile .site-header {
    position: sticky;
}

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

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

.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;
}

.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;
    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 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 75rem){
    .site-header__actions{
        position: relative;
        top:unset;
        transform:unset;
        right: unset;
    }
}

.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: 8px;
    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(
        128deg,
        #a529ff 0%,
        #3b60ff 37.45%,
        #097aff 100%
    );
    color: #ffffff;
    font-weight: 400;
    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;
    z-index: 1002;
    display: none;
}

.language-switcher__trigger {
    height: 2rem;
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 0.5rem;
    border: 1px solid #0f69e6;
    border-radius: 0.375rem;
    background: transparent;
    color: #454545;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: color 0.2s ease;
}

.language-switcher__trigger span {
    width: 3.75rem;
    text-align: center;
}

.language-switcher__trigger:disabled {
    cursor: not-allowed;
    opacity: 0.68;
}

.language-switcher__trigger:disabled::after {
    opacity: 0.3;
}

.language-switcher__icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 1.2rem;
    margin-top: 1px;
    color: #6b7280;
}

.language-switcher__trigger:hover,
.language-switcher__trigger:focus-visible,
.language-switcher.is-open .language-switcher__trigger {
    color: #0156c9;
}

.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.55;
}

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

.language-switcher__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 1.0625rem);
    min-width: 10rem;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.language-switcher__option {
    width: 100%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

@media (min-width: 75rem) and (max-width: 89.9375rem) {
    html.is-desktop .site-header__cta--ghost {
        display: none;
    }
}

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

.language-switcher__option.is-active,
.language-switcher__option[aria-current='page'] {
    color: #0156c9;
    background: rgba(1, 86, 201, 0.04);
    font-weight: 600;
}

/* ---------- 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: #0156c9;
    font-weight: 400;
}

/* .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__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: 500;
    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: 400;
    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;
}

.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);
}

/* Placeholder entries without a real destination must not behave like links. */
.site-mega-menu a[href='javascript:void(0)'],
.mobile-nav__submenu a[href='javascript:void(0)'] {
    cursor: default;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

/* ---------- 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 .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(4, 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 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    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 {
    position: relative;
    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 {
    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;
}

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

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

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

/* ==========================================================================
   Responsive – Desktop (>= 75rem / 1200px)
   ========================================================================== */

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

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


    .site-header__utility-cluster{
        display: none;
    }

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

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

    .menu-toggle {
        display: none;
    }
}

/* PC（指针设备）：视口 >= 1200px 使用桌面顶栏 */
@media (min-width: 75rem) {
    html.is-desktop .site-nav {
        display: block;
        min-width: 0;
        flex: 1;
    }

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

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

    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;
    }
}

/* ==========================================================================
   Responsive – Tablet and below (<= 74.9375rem / 1199px)
   ========================================================================== */
@media (max-width: 74.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;
    }
}

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 .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: 74.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;
    }
}

/* PC：视口 <1200px 时，is-desktop 也使用移动端导航 */
@media (max-width: 74.9375rem) {
    html.is-desktop .site-nav {
        display: none;
    }

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

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

    html.is-desktop .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;
    }
}

/* 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: 75rem) {
  .drawer-backdrop,
  .site-drawer {
    display: none;
  }

  html.is-desktop .drawer-backdrop,
  html.is-desktop .site-drawer {
    display: none !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: 585px;
}

html.is-desktop [data-hero-carousel] .hero-carousel__track {
    height: 585px;
    min-height: 585px;
    max-height: 585px;
    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: 585px;
    max-height: 585px;
    overflow: hidden;
}

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

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

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

html.is-desktop .hero-carousel__inner.content-inner {
    width: var(--content-max-width) !important;
    max-width: var(--container-product);
}

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

.hero-carousel__text {
    flex: 0 0 49%;
    min-width: 380px;
    padding-top: 180px;
}

.hero-carousel__title {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(22px, 3vw, 52px);
    font-weight: 400;
    line-height: 73px;
    color: #1d2234;
}

.hero-carousel__subtitle {
    margin: 22px 0 0;
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.8vw, 32px);
    font-weight: 400;
    line-height: 1.46;
    color: #313647;
}

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

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 42px;
    padding: 0 28px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    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(
        128deg,
        #a529ff 0%,
        #3b60ff 37%,
        #097aff 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;
    border: 1px solid #1574ff;
}

.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;
}

/* ---------- 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;
    width: 100%;
    box-sizing: border-box;
    background-color: #e8f1fb;
}

.hero-features .hero-features__inner {
    display: grid;
    max-width: var(--container-product);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gutter-desktop);
    padding: 0;
    margin: 0 auto;
}

html.is-desktop .hero-features .hero-features__inner.content-inner {
    width: var(--content-max-width) !important;
    max-width: var(--container-product) !important;
}

.hero-features__card {
    display: flex;
    flex-direction: column;
    height: 96px;
    padding: 0 32px;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.hero-features__card.active,
.hero-features__card:hover {
    background: #ffffff;
    /* 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: var(--font-sans);
    font-weight: 400;
    font-size: 22px;
    color: #24283a;
    line-height: 30px;
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.16);
    text-align: left;
    margin-bottom: 6px;
}

.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.active .hero-features__arrow,
.hero-features__card:hover .hero-features__arrow {
    /* transform: translateX(4px); */
    /* color: #0c66ff; */
}

.hero-features__desc {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #393e4f;
    line-height: 22px;
    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__inner {
        max-width: var(--container-product);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
        padding: 0;
    }
}

@media (max-width: 79.9375rem) {
    .hero-features .hero-features__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    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 (min-width: 75rem) and (max-width: 89.9375rem) {
    .hero-features .hero-features__inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@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;
        justify-content: center;
        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: 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__text {
        width: 100%;
        min-width: 0;
    }

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

    .hero-features .hero-features__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-mobile);
        margin-inline: auto;
        padding: 0;
    }
    html:not(.is-desktop) .hero-carousel__track {
        /* height: auto;
        min-height: 0;
        max-height: none; */
        height: 100%;
        min-height: 100%;
        max-height: 100%;
    }

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

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

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

    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;
        width: 70%;
    }

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

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

    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__card {
        height: auto;
        min-height: 88px;
        padding: 12px;
    }

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

    html:not(.is-desktop) .hero-features__desc {
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* 最小宽度兜底（≤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;
    }
}

.is-mobile .hero-carousel {
    height: 350px;
}

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

/* ── Section Shell ── */
.home-core-products {
    padding: 0px 0 31px 0;
    background: linear-gradient(137deg, #ffffff 0%, #faf7ff 100%);
    width: 100%;
    position: relative;
    z-index: 10;
}

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

html.is-desktop .core-products__header {
    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: var(--font-sans);
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 36px);
    color: #000000;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0 0 9px;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
}

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

.core-products__subtitle {
    font-family: var(--font-sans);
    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%;
}

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

html.is-desktop .core-products__container {
    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: var(--font-sans);
    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: var(--font-sans);
    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 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    align-items: stretch;
}

.cp-row__cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.cp-row__image {
    position: relative;
    flex: 35 1 0;
    min-width: 0;
    width: 100%;
    max-width: 1050px;
    aspect-ratio: 1050 / 619;
    min-height: 240px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px 1px rgba(0, 0, 0, 0.06);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-row__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #d9e7fe 0%,
        #f3eeff 57.05%,
        #d8e5fb 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 {
    border-radius: 0;
    overflow: hidden;
    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);
    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: 502px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.1s;
    border: 1px solid #ececec;
    box-sizing: border-box;
    padding: 18px 0 24px;
}

.cp-card.is-active {
    box-shadow: 0 0 0 3px #4450E5 inset;
}

.cp-card.is-active .cp-card__title .site-header__cta--primary {
    opacity: 1;
    display: flex;
}

.cp-card.is-active .cp-card__title img {
    opacity: 1;
}

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

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

.cp-card__title {
    position: relative;
    font-family: var(--font-sans);
    font-size: 24px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px 0 72px;
    display: flex;
    align-items: center;
}

.cp-card__title img {
    width: 16px;
    height: 17px;
    margin-left: 16px;
    opacity: 0;
}

.cp-card__title::after {
    content: '';
    position: absolute;
    width: 33px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    background: url('/assets/images/home/core/icon-data-platform.png') no-repeat
        center / cover;
}

.cp-card__title .site-header__cta--primary {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    opacity: 0;
}

.cp-card__desc {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #393e4f;
    line-height: 24px;
    padding: 0 34px 0 20px;
}

.cp-card__desc + .cp-card__desc {
    margin-top: 9px;
    font-weight: 600;
}

.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: 36px;
    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) {
    .home-core-products {
        height: auto;
        min-height: 0;
        padding-bottom: 48px;
        background-size: 100% auto;
    }

    .home-core-products .core-products__header {
        padding-top: 24px;
        margin-bottom: 24px;
    }

    .home-core-products .core-products__title {
        flex-wrap: wrap;
    }

    .home-core-products .core-products__title::after {
        width: calc(100% - 42px);
        right: -14px;
    }

    .home-core-products .core-products__subtitle {
        line-height: 1.5;
        padding: 0 8px;
    }

    .home-core-products .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));
    }

    .home-core-products .cp-row {
        flex-direction: column;
        gap: 24px;
    }

    .home-core-products .cp-row__cards {
        flex: none;
        width: 100%;
        max-width: 100%;
        gap: 14px;
    }

    .home-core-products .cp-row__image {
        aspect-ratio: 16 / 10;
        padding: 16px;
        flex: none;
    }

    .home-core-products .cp-hero__title {
        font-size: 24px;
        line-height: 36px;
    }

    .home-core-products .cp-hero__desc {
        font-size: 15px;
    }

    .home-core-products .cp-hero__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-core-products .cp-hero__actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .home-core-products .cp-hero__actions .cp-action-btn {
        white-space: normal;
        line-height: 1.35;
        height: auto;
        min-height: 36px;
        padding: 8px 16px;
    }

    .home-core-products .cp-card {
        height: auto;
        min-height: 0;
        max-width: 100%;
        background-size: 100% 100%;
        background-position: center;
    }

    /* .home-core-products .cp-card__body {
        padding: 22px 16px 14px 30px;
    } */

    .home-core-products .cp-card__title {
        font-size: 20px;
        margin: 0 0 8px 0;
        line-height: 1.35;
    }

    .home-core-products .cp-card__desc {
        font-size: 14px;
        /* max-width: 85%; */
        line-height: 1.5;
        /* margin: 6px 0 8px; */
    }

    .home-core-products .cp-card__tags {
        gap: 8px;
    }

    .home-core-products .cp-pill {
        height: 28px;
        padding: 0 12px;
        font-size: 14px;
        line-height: 28px;
        border-radius: 14px;
    }

    .home-core-products .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%;
    }

    .home-core-products .cp-row__screenshot img {
        transform: scale(1.04);
    }

    .home-core-products .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;
    }

    .home-core-products .cp-action-btn {
        width: auto;
        min-width: 88px;
        padding-inline: 12px;
        font-size: 14px;
    }
}

@media (max-width: 47.9375rem) {
    .home-core-products .core-products__title {
        font-size: 22px;
    }

    .home-core-products .cp-hero__actions,
    .home-core-products .cp-hero__tags {
        width: 100%;
    }

    .home-core-products .cp-hero__tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .home-core-products .cp-tag--gradient {
        flex-shrink: 0;
    }
}

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

    .home-core-products .core-products__header {
        padding-top: 16px;
        margin-bottom: 16px;
    }

    .home-core-products .core-products__title {
        font-size: 18px;
    }

    .home-core-products .core-products__title::after {
        width: calc(100% - 42px);
        right: -14px;
    }

    .home-core-products .core-products__subtitle {
        font-size: 14px;
        padding: 0 4px;
    }

    .home-core-products .core-products__container {
        padding: 0 8px;
        gap: 32px;
    }

    .home-core-products .cp-hero__title {
        font-size: 20px;
        line-height: 1.4;
    }

    .home-core-products .cp-hero__desc {
        font-size: 14px;
    }

    .home-core-products .cp-card {
        min-height: 140px;
    }

    .home-core-products .cp-card__body {
        padding: 14px 14px 12px 28px;
    }

    .home-core-products .cp-card__title {
        font-size: 18px;
    }

    .home-core-products .cp-card__desc {
        font-size: 14px;
    }

    .home-core-products .cp-row__screenshot {
        padding: 20px 12px;
    }

    .home-core-products .cp-action-btn {
        min-width: 72px;
        font-size: 14px;
        padding-inline: 8px;
    }

    .home-core-products .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/structure.css */
.home-structure {
    padding: 0 0 41px 0;
    background: url('/assets/images/home/structure-bg.png') no-repeat center
        center;
    background-size: 100% 100%;
    box-sizing: border-box;
}

.structure__container {
    border-radius: 0px 0px 0px 0px;
    margin: 0 auto;
    width: 100%;
    max-width: none;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.structure__container img {
    aspect-ratio: 1349 / 850;
}

/* 桌面端收紧架构图高度，避免模块在首屏之后占用过长的纵向空间。 */
html.is-desktop .structure__container img {
    width: auto;
    max-width: 100%;
    max-height: 720px;
    object-fit: contain;
}

.is-mobile .structure__container {
    padding: 0 max(16px, env(safe-area-inset-left)) 0
        max(16px, env(safe-area-inset-right));
}

/* source: styles/components/scene.css */
.home-scene {
    padding: 0px;
}

.scene__container {
    --scene-card-width: 369px;
    --scene-card-height: 439px;
    --scene-card-gap: var(--grid-gutter-desktop);
    --scene-track-padding: 0px;
    --scene-page-columns: 4;
    position: relative;
}

.scene__container .scene-container__inner {
    width: var(--content-max-width);
    max-width: var(--container-product);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--scene-card-gap);
    padding: 0 var(--scene-track-padding);
    justify-content: center;
}

.is-mobile .scene__container.is-carousel .scene-container__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.is-mobile
    .scene__container.is-carousel
    .scene-container__inner::-webkit-scrollbar {
    display: none;
}

.scene__page {
    display: grid;
    flex: 0 0 100%;
    grid-template-columns: repeat(
        var(--scene-page-columns),
        var(--scene-card-width)
    );
    gap: var(--scene-card-gap);
    justify-content: center;
    scroll-snap-align: start;
}

.scene__card {
    width: var(--scene-card-width);
    height: var(--scene-card-height);
    background: #f0fafd;
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.scene__controls {
    display: none;
    margin-top: 20px;
}

.is-mobile .scene__container.is-carousel .scene__controls {
    display: block;
}

.scene__arrow {
    position: absolute;
    top: var(--scene-arrow-top, 50%);
    z-index: 8;
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
    box-shadow: none;
    transform: translateY(-50%);
}

.scene__arrow--prev {
    left: 8px;
    background-image: url('/assets/images/home/scenarios/arrows/arrow-next.svg');
}

.scene__arrow--next {
    right: 8px;
    background-image: url('/assets/images/home/scenarios/arrows/arrow-prev.svg');
}

.scene__arrow--prev:hover {
    background-image: url('/assets/images/home/scenarios/arrows/arrow-next-active.svg');
}

.scene__arrow--next:hover {
    background-image: url('/assets/images/home/scenarios/arrows/arrow-prev-active.svg');
}

.scene__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scene__dot {
    width: 55px;
    height: 7px;
    border-radius: 999px;
    background: rgba(15, 105, 230, 0.18);
}

.scene__dot.is-active {
    background: #0f69e6;
}

.scene__card .scene__card-header {
    position: relative;
    height: 224px;
    background: #ffffff;
    overflow: hidden;
}

.scene__card .scene__card-header .header-title {
    position: absolute;
    font-weight: 400;
    font-size: 32px;
    color: #ffffff;
    line-height: 45px;
}

.scene__card .scene__card-header img {
    display: block;
    height: 100%;
}

.scene__card .scene__card-content {
    position: relative;
    padding: 15px 31px 22px 23px;
}

.scene__card .scene__card-content .content-title {
    font-weight: 400;
    font-size: 28px;
    color: #333333;
    line-height: 40px;
    margin-bottom: 10px;
}

.scene__card .scene__card-content .content-desc {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 30px;
    margin-bottom: 20px;
}

.scene__card .scene__card-content .more-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
}

.scene__card .scene__card-content .more-btn .arrow-right {
    display: block;
    width: 16px;
    height: 13px;
    background: url('/assets/images/home/scene/arrow-right.png') no-repeat
        center center;
    background-size: 100% 100%;
}

.scene__card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0px 12px 24px 1px rgba(61, 132, 255, 0.23);
}

.scene__card:hover .more-btn {
    color: #0f69e6;
}
.scene__card:hover .more-btn .arrow-right {
    background-image: url('/assets/images/home/scene/arrow-right-hover.png');
}

.scene__card.card-1 .header-title {
    top: 73px;
    left: 20px;
    color: #fff;
}

.scene__card.card-2 .header-title {
    top: 33px;
    left: 50px;
    color: #0362dc;
}

.scene__card.card-3 {
    background-color: #f1f5ff;
}
.scene__card.card-3 .header-title {
    top: 47px;
    left: 38px;
    color: #fff;
}

.scene__card.card-4 {
    background-color: #f6f7f8;
}
.scene__card.card-4 .header-title {
    top: 34px;
    left: 34px;
    color: #0362dc;
}

.scene__card.card-5 .header-title {
    top: 75px;
    left: 20px;
    color: #fff;
}

.scene__card.card-6 {
    background-color: #fdf9ec;
}

.scene__card.card-6 .header-title {
    top: 27px;
    left: 18px;
    color: #f65911;
}

.scene__card.card-7 {
    background-color: #f3feff;
}
.scene__card.card-7 .header-title {
    top: 37px;
    left: 21px;
    color: #0e8f61;
}

.scene__card.card-8 {
    background-color: #f5f9f9;
}
.scene__card.card-8 .header-title {
    top: 48px;
    left: 31px;
    color: #238f6d;
}

/* 1524px 版心：四列卡片各占 3 栏，卡宽 369px，栏间距 16px。 */
html.is-desktop .home-scene .home-header__title {
    font-weight: 600;
}

html.is-desktop .scene__container .scene-container__inner {
    row-gap: var(--grid-gutter-desktop);
}

html.is-desktop .scene__card .scene__card-header {
    width: auto;
    height: 222px;
    margin: 8px 10px 0;
    border-radius: 10px 10px 0 0;
}

html.is-desktop .scene__card .scene__card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

html.is-desktop .scene__card .scene__card-header .header-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
}

html.is-desktop .scene__card .scene__card-content {
    padding: 18px 16px 18px 22px;
}

html.is-desktop .scene__card .scene__card-content .content-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 37px;
    margin-bottom: 10px;
}

html.is-desktop .scene__card .scene__card-content .content-desc {
    margin-bottom: 16px;
}

html.is-desktop .scene__card.card-1 .header-title {
    top: 45px;
    left: 39px;
}

html.is-desktop .scene__card.card-2 .header-title {
    top: 36px;
    left: 38px;
}

html.is-desktop .scene__card.card-3 .header-title {
    top: 35px;
    left: 28px;
}

html.is-desktop .scene__card.card-4 .header-title {
    top: 36px;
    left: 34px;
}

html.is-desktop .scene__card.card-5 .header-title {
    top: 35px;
    left: 29px;
}

html.is-desktop .scene__card.card-6 .header-title {
    top: 34px;
    left: 31px;
}

html.is-desktop .scene__card.card-7 .header-title {
    top: 35px;
    left: 29px;
}

html.is-desktop .scene__card.card-8 .header-title {
    top: 42px;
    left: 42px;
}

@media (min-width: 75rem) {
    html.is-desktop .scene__container {
        --scene-card-width: min(369px, calc((100% - 48px) / 4));
        --scene-card-height: auto;
    }

    html.is-desktop .scene__card {
        height: auto;
        aspect-ratio: 735 / 878;
        container-type: inline-size;
    }

    html.is-desktop .scene__card .scene__card-header {
        height: 60.408cqi;
        margin: 2.177cqi 2.721cqi 0;
        border-radius: 2.721cqi 2.721cqi 0 0;
    }

    html.is-desktop .scene__card .scene__card-header .header-title {
        font-size: 8.163cqi;
        line-height: 12.245cqi;
    }

    html.is-desktop .scene__card .scene__card-content {
        padding: 4.898cqi 4.354cqi 4.898cqi 5.986cqi;
    }

    html.is-desktop .scene__card .scene__card-content .content-title {
        font-size: 7.075cqi;
        line-height: 10.068cqi;
        margin-bottom: 2.721cqi;
    }

    html.is-desktop .scene__card .scene__card-content .content-desc {
        font-size: 4.898cqi;
        line-height: 8.163cqi;
        margin-bottom: 4.354cqi;
    }

    html.is-desktop .scene__card .scene__card-content .more-btn {
        gap: 3.537cqi;
        font-size: 4.354cqi;
    }

    html.is-desktop .scene__card .scene__card-content .more-btn .arrow-right {
        width: 4.354cqi;
        height: 3.537cqi;
    }

    html.is-desktop .scene__card.card-1 .header-title {
        top: 12.245cqi;
        left: 10.612cqi;
    }

    html.is-desktop .scene__card.card-2 .header-title {
        top: 9.796cqi;
        left: 10.34cqi;
    }

    html.is-desktop .scene__card.card-3 .header-title {
        top: 9.524cqi;
        left: 7.619cqi;
    }

    html.is-desktop .scene__card.card-4 .header-title {
        top: 9.796cqi;
        left: 9.252cqi;
    }

    html.is-desktop .scene__card.card-5 .header-title {
        top: 9.524cqi;
        left: 7.891cqi;
    }

    html.is-desktop .scene__card.card-6 .header-title {
        top: 9.252cqi;
        left: 8.435cqi;
    }

    html.is-desktop .scene__card.card-7 .header-title {
        top: 9.524cqi;
        left: 7.891cqi;
    }

    html.is-desktop .scene__card.card-8 .header-title {
        top: 11.429cqi;
        left: 11.429cqi;
    }
}

@media (min-width: 48rem) and (max-width: 74.9375rem) {
    html.is-desktop .scene__container {
        --scene-card-width: calc((100% - var(--grid-gutter-desktop)) / 2);
    }
}

@media (max-width: 1666px) {
    .scene__container {
        --scene-track-padding: 0px;
    }
}

@media (max-width: 520px) {
    .scene__container {
        --scene-card-width: min(383px, calc(100vw - 32px));
        --scene-track-padding: 0px;
    }

    .is-mobile .scene__container.is-carousel .scene-container__inner {
        padding-inline: 0;
    }
}

.is-mobile .scene__card {
    height: auto;
}

.is-mobile .scene__card-header {
    height: 90px;
}

.is-mobile .scene__card-header br {
    display: none;
}

.is-mobile .scene__card-header .header-title {
    display: none;
}

.is-mobile .scene__card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.is-mobile .scene__card-content .content-title {
    position: absolute;
    top: -60px;
    font-size: 18px;
    font-weight: 400;
}

.is-mobile .scene__card-content .more-btn,
.is-mobile .scene__card-content .content-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.is-mobile .scene__card-content .content-desc {
    margin-bottom: 14px;
}

/* 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: var(--font-sans);
  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: var(--font-sans);
  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 {
  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 {
  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: var(--grid-gutter-desktop);
}

/* ═══════════════════════════════════════════════════════
   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: var(--font-sans);
  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: var(--font-sans);
  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: 0 0 65px 0;
    width: 100%;
    min-height: 671px;
    overflow: hidden;
    box-sizing: border-box;
    font-family: var(--font-sans);
    /* 整体背景：顶白 → 底浅蓝（与设计稿一致，可用渐变替代位图） */
    background: linear-gradient(137deg, #ffffff 0%, #faf7ff 100%);
}

.is-mobile .home-scenarios {
    background: #faf7ff;
}

.is-mobile .home-scenarios .scenarios__viewport {
    display: none;
}

.is-mobile .home-scenarios .scenarios__list {
    display: block;
}

.is-mobile .home-scenarios .core-products__header {
    padding-top: 0;
}

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

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

.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 {
    width: var(--content-max-width);
    max-width: var(--container-product);
    margin: 0 auto;
    position: relative;
}

.scenarios__viewport {
    position: relative;
    overflow: hidden;
    contain: layout paint;
}

.scenarios__list {
    display: none;
}

/* ── 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 {
    display: none;
}

html.is-desktop .scenarios__arrow--next {
    display: none;
}

/* ── Slides Container ── */
.scenarios__slides {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: var(--grid-gutter-desktop);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 10px 0 0;
    -webkit-mask-image: none;
    mask-image: none;
    contain: layout paint;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

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

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

.home-scenarios.is-resizing .scenarios__slides {
    -webkit-mask-image: none;
    mask-image: none;
}

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

/* ── Card Styles（1524px 版心：四列 369px，间距 16px） ── */
.scenarios__card {
    position: relative;
    flex: 0 0 379px;
    width: 379px;
    min-width: 379px;
    max-width: 379px;
    height: 510px;
    min-height: 510px;
    max-height: 510px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 41px 24px 24px;
    transition: transform 0.3s ease;
    color: inherit;
    text-decoration: none;
    /* default background if none specified */
    overflow: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* 桌面轮播始终展示完整卡片，避免固定宽度把末张卡片裁掉。 */
html.is-desktop .scenarios__viewport .scenarios__card {
    flex-basis: calc((100% - 3 * var(--grid-gutter-desktop)) / 4);
    width: calc((100% - 3 * var(--grid-gutter-desktop)) / 4);
    min-width: 0;
    max-width: none;
}

@media (min-width: 75rem) {
    html.is-desktop .scenarios__viewport .scenarios__card {
        height: auto;
        min-height: 0;
        max-height: none;
        aspect-ratio: 379 / 510;
        container-type: inline-size;
    }
}

@media (max-width: 74.9375rem) {
    html.is-desktop .scenarios__viewport .scenarios__card {
        flex-basis: calc((100% - 2 * var(--grid-gutter-desktop)) / 3);
        width: calc((100% - 2 * var(--grid-gutter-desktop)) / 3);
    }
}

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

.scenarios__card.card-1 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-1.jpg)
        no-repeat center / cover;
}

.scenarios__card.card-2 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-2.jpg)
        no-repeat center / cover;
}

.scenarios__card.card-3 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-3.jpg)
        no-repeat center / cover;
}

.scenarios__card.card-4 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-4.jpg)
        no-repeat center / cover;
}

.scenarios__card.card-5 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-5.jpg)
        no-repeat center / cover;
}

.scenarios__card.card-6 {
    background: url(/assets/images/home/industry-solutions/industry-solutions-6.jpg)
        no-repeat center / cover;
}

/* 金融科技：背景与尺寸都在 .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 {
    width: 100%;
    margin: 0 0 23px 0;
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    line-height: 34px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
}

.scenarios__card.white .scenarios__card-title {
    color: #ffffff !important;
}

.scenarios__card .scenarios__card-title,
.scenarios__card .scenarios__card-desc,
.scenarios__card .more-btn {
    position: relative;
    z-index: 9;
}

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

.scenarios__card-desc {
    margin: 0 0 27px 0;
    font-weight: normal;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    overflow: hidden;
}

.scenarios__card.white .scenarios__card-desc {
    color: #ffffff !important;
}

.scenarios__card .more-btn {
    display: block;
    width: 112px;
    border-radius: 19px;
    border: 1px solid #333333;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 33px;
    cursor: pointer;
    text-decoration: none;
}

html.is-desktop .home-scenarios .home-header__title {
    font-weight: 400;
}

.scenarios__card.white .more-btn {
    border-color: #ffffff;
    color: #ffffff;
}

@media (min-width: 75rem) {
    html.is-desktop .scenarios__viewport .scenarios__card {
        padding: 2.7045% 1.583% 1.583%;
    }

    html.is-desktop .scenarios__viewport .scenarios__card-title {
        margin-bottom: 6.949cqi;
        font-size: 7.251cqi;
        line-height: 10.272cqi;
    }

    html.is-desktop .scenarios__viewport .scenarios__card-desc {
        height: 16.616cqi;
        margin-bottom: 8.157cqi;
        font-size: 5.438cqi;
        line-height: 9.063cqi;
    }

    html.is-desktop .scenarios__viewport .scenarios__card .more-btn {
        width: 33.837cqi;
        border-radius: 5.74cqi;
        font-size: 4.834cqi;
        line-height: 9.97cqi;
    }
}

.is-mobile .scenarios__card .more-btn {
    font-size: 14px;
    width: 86px;
    line-height: 28px;
}

.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);
}

.scenarios__list .scenarios-list__inner {
    max-width: 1486px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}
.scenarios__list .scenarios__slides--cards {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.scenarios__list .scenarios__card {
    max-width: 453px;
}

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

.scenarios__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;
}

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

/* ═══════════════════════════════════════════════════════
   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(16px, env(safe-area-inset-left)) 0
            max(16px, env(safe-area-inset-right));
    }

    html:not(.is-desktop) .scenarios__slides {
        padding: 10px 0;
        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: none;
    }

    html:not(.is-desktop) .scenarios__card::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.65);
        border-radius: 12px;
        top: 0;
        left: 0;
        z-index: 1;
    }

    html:not(.is-desktop) .scenarios__card.white::before {
        background: rgba(0, 0, 0, 0.35);
    }

    html:not(.is-desktop) .scenarios__card,
    html:not(.is-desktop) .scenarios__card.scenarios__card--finance {
        flex: 0 0 min(421px, calc(100vw - 40px));
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
        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;
        margin-bottom: 10px;
    }

    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 - 32px);
        width: 100vw;
        max-width: 100vw;
        padding: 24px 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: 0 0 36px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    font-family: var(--font-sans);
    background-color: #f4f5f8;
}

.home-stories .core-products__header {
    padding-top: 0;
}

/* ── 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: 400;
    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%;
}

.stories__inner {
    width: 100%;
    max-width: none;
    padding: 0;
    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 {
    display: none;
    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 {
    display: none;
    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: 527px;
    transform: translateX(var(--stories-drag-offset, 0px));
    transition: transform 0.24s ease;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    container-type: inline-size;
}

.stories__track.is-dragging {
    transition: none;
    cursor: grabbing;
}

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

/* ═══════════════════════════════════════════════════════
   Card — 624×351 单张卡（全幅图 + 渐变覆盖 + 内容叠加）
   ═══════════════════════════════════════════════════════ */
.stories__card {
    position: absolute;
    top: 50%;
    left: 50%;
    --card-width: 684px;
    --card-gap: 24px;
    --side-scale: 0.838;
    --side-translate: calc(
        50cqw - (var(--card-width) * var(--side-scale) / 2)
    );
    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:hover {
    box-shadow: 0px 20px 40px 1px rgba(0, 46, 67, 0.16);
} */

.stories__card.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    z-index: 3;
    filter: none;
    box-shadow: 0px 20px 40px 1px rgba(0, 46, 67, 0.16);
}
.stories__card.is-active .stories__card-image .stories__metrics {
    display: flex;
}

.stories__card.is-active .stories__card-image .stories__detail-btn,
.stories__card.is-active .stories__card-image::after {
    display: block;
}

.stories__card.is-prev {
    transform: translate(-50%, -50%)
        translateX(calc(-1 * var(--side-translate)))
        scale(var(--side-scale));
    opacity: 1;
    visibility: visible;
    z-index: 2;
    /* filter: blur(3px); */
}

.stories__card.is-next {
    transform: translate(-50%, -50%)
        translateX(var(--side-translate))
        scale(var(--side-scale));
    opacity: 1;
    visibility: visible;
    z-index: 2;
    /* filter: blur(3px); */
}

.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: 684 / 350;
}

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

.stories__card-image::after {
    display: none;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(248, 249, 255, 0) 0%,
        rgba(42, 52, 66, 0.1) 50%,
        rgba(7, 18, 33, 0.6) 100%
    );
    pointer-events: none;
}

.stories__card-image .stories__detail-btn {
    display: none;
}

.stories__card-image .stories__metrics {
    position: absolute;
    z-index: 9;
    padding: 24px 14px;
    width: 100%;
    bottom: 0;
    display: none;
}

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

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

.stories__tag {
    background: #ffffff;
    border-radius: 17px;
    font-weight: 400;
    font-size: 16px;
    color: #0f69e6;
    line-height: 36px;
    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(
        128deg,
        #a529ff 0%,
        #3b60ff 37.45%,
        #097aff 100%
    );
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    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);
}

.stories__platform .stories__card {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 0px;
    row-gap: 20px;
}

.stories__platform .stories__list {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.stories__platform .stories__card .stories__card-content {
    position: relative;
}

.stories__platform .stories__card .stories__card-content,
.stories__platform .stories__card .stories__card-thumbnail {
    width: 684px;
    height: 350px;
    background: #ffffff;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
    margin: 0 auto;
}

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

.stories__track .stories__card-body {
    position: relative;
    background: #ffffff;
    padding: 25px 39px 35px 32px;
}

.stories__company {
    font-size: 34px;
    color: #333333;
    line-height: 48px;
    margin-bottom: 13px;
}

.stories__desc {
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 30px;
    height: 56px;
}

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

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

.stories__metric-title {
    font-weight: 400;
    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.png') no-repeat
        center / contain;
}

.stories__metric p {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-family: var(--font-sans);
    margin: 0;
    height: 62px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.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;
    }

    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: 46rem) {
    .home-stories {
        min-height: 0;
    }

    .home-stories .stories__header {
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .home-stories .stories__title {
        font-size: 22px;
        line-height: 1.4;
    }

    .home-stories .stories__subtitle {
        font-size: 15px;
    }

    .home-stories .stories__arrow {
        display: none;
    }

    .home-stories .stories__track {
        height: auto;
        min-height: 0;
        position: relative;
    }

    .home-stories .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;
    }

    .home-stories .stories__card.is-active {
        position: relative;
        transform: none;
        opacity: 1;
        visibility: visible;
        z-index: 3;
        filter: none;
    }

    .home-stories
        .stories__card.is-active
        .stories__card-image
        .stories__metrics {
        display: flex;
    }

    .home-stories .stories__card.is-active .stories__card-image::after,
    .home-stories
        .stories__card.is-active
        .stories__card-image
        .stories__detail-btn {
        display: block;
    }

    .home-stories .stories__card.is-prev,
    .home-stories .stories__card.is-next,
    .home-stories .stories__card.is-hidden-left,
    .home-stories .stories__card.is-hidden-right {
        position: absolute;
        transform: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        filter: none;
    }

    .home-stories .stories__card-image {
        position: relative;
        aspect-ratio: 16 / 9;
        border-radius: 12px 12px 0 0;
    }

    .home-stories .stories__card-image::after {
        display: none;
    }

    .home-stories .stories__card-overlay {
        padding: 10px 12px;
    }

    .home-stories .stories__tags {
        gap: 6px;
    }

    .home-stories .stories__tag {
        font-size: 11px;
        padding: 0 10px;
        line-height: 24px;
    }

    .home-stories .stories__detail-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .home-stories .stories__card-body {
        position: static;
        padding: 14px;
        background: #ffffff;
        padding-bottom: 340px;
    }

    .home-stories .stories__card-body.small {
        padding-bottom: 320px;
    }

    .home-stories .stories__metrics {
        padding: 14px;
    }

    .home-stories .stories__metric p {
        height: auto;
    }

    .home-stories .stories__card-image {
        position: unset;
    }

    .home-stories .stories__company {
        font-size: 16px;
        font-weight: 400;
        color: #1d2234;
        margin-bottom: 6px;
        line-height: 32px;
    }

    .home-stories .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;
    }

    .home-stories .stories__metrics {
        flex-direction: column;
        gap: 8px;
    }

    .home-stories .stories__metric {
        padding: 10px 12px;
        background: #f4f7fc;
        border: 1px solid #e8edf5;
        border-radius: 8px;
    }

    .home-stories .stories__metric-title {
        font-size: 14px;
        font-weight: 400;
        color: #1d2234;
        line-height: 1.4;
        margin-bottom: 4px;
        gap: 6px;
    }

    .home-stories .stories__metric-title::before {
        width: 18px;
        height: 16px;
    }

    .home-stories .stories__metric p {
        font-size: 14px;
        line-height: 1.5;
        color: #5a5d6b;
    }

    .home-stories .stories__dots {
        margin-top: 16px;
        padding: 0 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .home-stories .stories__dot {
        width: 40px;
        height: 5px;
    }
}

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

    .home-stories .stories__header {
        padding: 0 8px;
    }

    .home-stories .stories__title {
        font-size: 18px;
    }

    .home-stories .stories__subtitle {
        font-size: 13px;
    }

    .home-stories .stories__carousel {
        padding: 0 8px;
    }

    .home-stories .stories__company {
        font-size: 14px;
    }

    .home-stories .stories__dots {
        gap: 6px;
        padding: 0 8px;
    }

    .home-stories .stories__dot {
        width: 30px;
        height: 4px;
    }
}

.is-mobile .stories__inner {
    padding: 0 max(16px, env(safe-area-inset-left)) 0
        max(16px, env(safe-area-inset-right));
}

/* source: styles/components/clients.css */
/* ═══════════════════════════════════════════════════════
   Clients Section — 行业领军者的共同选择
   Infinite Scrolling Marquee (3 rows)
   ═══════════════════════════════════════════════════════ */

/* ── Section ── */
.home-clients {
    padding: 0 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;
    }

    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: 0 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: 400;
    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 {
    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: var(--grid-gutter-desktop);
    width: 100%;
    max-width: none;
    margin-inline: auto;
    box-sizing: border-box;
}

.certs__card {
    min-height: 136px;
    height: 136px;
    box-sizing: border-box;
    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: 136px;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: 400;
    line-height: 1.46;
    color: #223252;
}

.certs__summary-num {
    display: inline-block;
    color: #1d67ff;
    font-weight: 400;
    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: 400;
    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: 0 0 36px;
    }

    .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: 0 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 {
    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, minmax(0, 1fr));
    gap: var(--grid-gutter-desktop);
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

html.is-desktop .news__grid {
    margin-inline: auto;
    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;
    height: 138px;
    min-height: 138px;
    box-sizing: border-box;
}

.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;
    height: 138px;
    box-sizing: border-box;
}

.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: 400;
    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(
        128deg,
        #a529ff 0%,
        #3b60ff 37.45%,
        #097aff 100%
    );
    color: #ffffff;
    font-weight: 400;
    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;
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 64rem) {
    html:not(.is-desktop) .home-news {
        min-height: 0;
    }

    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: stretch;
        min-height: 132px;
    }

    html:not(.is-desktop) .news__card-thumb {
        flex: 0 0 120px;
        width: 120px;
        padding: 12px 0 12px 12px;
    }

    html:not(.is-desktop) .news__card-thumb img {
        width: 108px;
        max-width: none;
        height: 108px;
        aspect-ratio: 1 / 1;
        max-height: none;
        object-fit: cover;
    }

    html:not(.is-desktop) .news__card-body {
        padding: 12px;
    }

    html:not(.is-desktop) .news__card-title {
        font-size: 14px;
        margin-bottom: 4px;
        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: 20px;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }

    html:not(.is-desktop) .news__card-footer {
        flex-wrap: wrap;
        gap: 6px 8px;
    }

    html:not(.is-desktop) .news__card-btn {
        font-size: 12px;
        line-height: 20px;
        padding: 3px 10px;
    }

    html:not(.is-desktop) .news__card-date {
        font-size: 12px;
        line-height: 22px;
    }
}

/* 最小宽度兜底（≤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 {
        flex-basis: 116px;
        width: 116px;
        padding: 8px 0 8px 8px;
    }

    html:not(.is-desktop) .news__card-thumb img {
        width: 108px;
        height: 108px;
    }

    html:not(.is-desktop) .news__card-body {
        padding: 10px;
    }

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

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

@media (max-width: 1150px) {
    .news__grid{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* 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: 400;
    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: 56px;
    line-height: 56px;
    border-radius: 8px;
    background: linear-gradient(
        128deg,
        #a529ff 0%,
        #3b60ff 37.45%,
        #097aff 100%
    );
    color: #ffffff;
    font-weight: 400;
    font-size: 22px;
    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: 47.9375rem) {
    html.is-mobile .home-cta {
        min-height: 0;
        padding: 40px 0 44px;
    }

    html.is-mobile .cta__content {
        display: flex;
        width: var(--content-max-width);
        max-width: var(--container-product);
        margin-inline: auto;
        flex-direction: column;
        align-items: center;
    }

    html.is-mobile .cta__title {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    html.is-mobile .cta__subtitle {
        max-width: 34rem;
        font-size: 16px;
        margin-bottom: 24px;
    }

    html.is-mobile .cta__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: min(100%, 360px);
        box-sizing: border-box;
        font-size: 18px;
        padding: 0 24px;
        height: 48px;
        line-height: 48px;
        margin: 0 0 24px;
    }

    html.is-mobile .cta__features {
        display: grid;
        width: min(100%, 320px);
        grid-template-columns: minmax(0, 1fr);
        gap: var(--grid-gutter-mobile);
        margin-inline: auto;
    }

    html.is-mobile .cta__feature {
        min-width: 0;
        min-height: 44px;
        padding: 8px 12px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    html.is-mobile .cta__feature img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 30rem) {
    html.is-mobile .home-cta {
        padding: 32px 0 36px;
    }

    html.is-mobile .cta__title {
        font-size: 24px;
    }

    html.is-mobile .cta__subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    html.is-mobile .cta__btn {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
        font-size: 17px;
    }

    html.is-mobile .cta__features {
        width: min(100%, 320px);
    }

    html.is-mobile .cta__feature {
        min-height: 40px;
        padding: 6px 12px;
    }
}

/* 最小宽度兜底（≤320px） */
@media (max-width: 20rem) {
    html.is-mobile .home-cta {
        min-height: 0;
        padding: 28px 0 32px;
    }

    html.is-mobile .cta__title {
        font-size: 20px;
    }

    html.is-mobile .cta__subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    html.is-mobile .cta__btn {
        font-size: 15px;
        padding: 0 12px;
        height: 40px;
        line-height: 40px;
    }

    html.is-mobile .cta__features {
        gap: 8px;
    }

    html.is-mobile .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;
}

.footer__sub-cols--products {
    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 .site-container.content-inner {
        width: calc(100% - 32px);
        max-width: calc(100% - 32px);
        margin-inline: auto;
        padding-inline: 0;
    }

    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: 8px;
    }

    html:not(.is-desktop) .footer__col--contact .footer__sub-cols {
        display: flex;
        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 .site-container.content-inner {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    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;
    }
}

/* 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: default;
    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: default;
    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: default;
    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);
    }
}

/* Standalone back-to-top control. */
.back-to-top {
    position: fixed;
    right: 27px;
    bottom: 36px;
    z-index: 9998;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(15, 105, 230, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(31, 70, 132, 0.16);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top img {
    display: block;
    width: 20px;
    height: 24px;
}

@media (hover: hover) and (pointer: fine) {
    .back-to-top:hover {
        background: #f2f7ff;
        box-shadow: 0 10px 28px rgba(15, 105, 230, 0.22);
        transform: translateY(-3px) scale(1);
    }
}

.back-to-top:focus-visible {
    outline: 2px solid #0f69e6;
    outline-offset: 3px;
}

@media (max-width: 1199px) {
    .back-to-top {
        right: 16px;
        bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    }
}

@media (max-width: 767px) {
    .back-to-top {
        right: max(12px, env(safe-area-inset-right, 0px));
        width: 44px;
        height: 44px;
    }

    .back-to-top img {
        width: 13px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}

/* 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;
    }
}

.home-module {
    padding: 40px 0;
}

/* 首页常规内容统一版心；通栏轮播、客户 Logo 跑马灯等独立轨道不受此规则影响。 */
html.is-desktop .shell-view--home :where(
        .home-header__wrapper,
        .core-products__header,
        .structure__container,
        .industries__header,
        .industries__container,
        .scene-container__inner,
        .stories__inner,
        .certs__header,
        .certs__grid,
        .news__header,
        .news__grid
    ) {
    width: var(--content-max-width);
    max-width: var(--container-product);
    margin-inline: auto;
    box-sizing: border-box;
}

html.is-desktop .shell-view--home :where(
        .scene-container__inner,
        .stories__inner,
        .news__grid
    ) {
    padding-inline: 0;
}

/* 1920px 设计稿：解决方案标题、卡片、分页点与下一节标题的纵向节奏。 */
.home-module.home-scenarios {
    padding: 102px 0 72px;
}

html.is-desktop .home-module.home-stories {
    padding: 28px 0 21px;
}

html.is-desktop .home-module.home-scene {
    padding: 40px 0 60px;
}

html.is-desktop .home-scene .home-header__wrapper {
    margin-bottom: 26px;
}

html.is-desktop .home-module.home-clients {
    padding: 38px 0 0;
}

html.is-desktop .home-clients .home-header__wrapper {
    margin-bottom: 45px;
}

html.is-desktop .home-module.home-certs {
    padding: 28px 0 54px;
}

html.is-desktop .home-certs .home-header__wrapper {
    margin-bottom: 45px;
}

html.is-desktop .home-module.home-news {
    padding: 31px 0 43px;
}

html.is-desktop .home-news .home-header__wrapper {
    margin-bottom: 27px;
}

.home-header__wrapper {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto 40px;
    animation: m-fade-up var(--m-dur) var(--m-ease) 0.88s both;
}

.home-header__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 36px);
    color: #000000;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0 0 9px;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
}

.home-header__title[id] {
    scroll-margin-top: 100px;
}

.home-header__subtitle {
    font-family: var(--font-sans);
    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%;
}

.is-mobile .home-header__wrapper {
    margin-bottom: 24px;
}

.is-mobile .home-header__title {
    font-size: 22px;
    line-height: 36px;
}

.is-mobile .home-header__subtitle {
    line-height: 1.5;
    padding: 0 16px;
}

/* source: styles/pages/blog.css */
.news-page {
  background: #ffffff;
}

html.is-desktop .news-page .site-container.site-container--wide {
  width: var(--content-max-width);
  margin-inline: auto;
  max-width: var(--container-product);
  box-sizing: border-box;
}

.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%;
}

html.is-desktop .news-page__hero {
  margin-top: var(--header-height-desktop);
}

.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) 369px;
  gap: var(--grid-gutter-desktop);
  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;
}

html.is-desktop .about-page .site-container.site-container--wide {
  width: var(--content-max-width);
  margin-inline: auto;
  max-width: var(--container-product);
  box-sizing: border-box;
}

.about-hero {
  min-height: 348px;
  background:
    linear-gradient(90deg, rgba(244, 250, 255, 0.18) 0%, rgba(244, 250, 255, 0) 48%),
    url("/assets/images/about/qknow-design/hero-bg.png") no-repeat center / cover;
}

html.is-desktop .about-hero {
  margin-top: var(--header-height-desktop);
}

.about-hero__inner {
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}

html.is-desktop .about-hero__inner {
  padding-inline: 0;
}

.about-hero__title {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(40px, 3.4vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.about-hero__title span {
  color: #0f69e6;
  font-weight: 700;
}

.about-hero__lead {
  margin: 0 0 11px;
  color: #111827;
  font-size:28px;
  font-weight: 500;
  line-height: 1.45;
}

.about-hero__desc {
  max-width: 820px;
  margin: 0;
  color: #293241;
  font-size: 18px;
  line-height: 1.6;
}

.about-section {
  padding: 72px 0;
}

.about-company,
.about-honor {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

html.is-desktop .about-honor__grid {
  width: var(--content-max-width);
}

.about-qknow {
  overflow: hidden;
  padding: 30px 0 64px;
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.74), rgba(240, 249, 255, 0.92)),
    url("/assets/images/about/qknow-design/section-bg.png") no-repeat center top / cover;
}

.about-qknow__inner {
  display: grid;
  gap: 27px;
}

.about-qknow__heading {
  text-align: center;
}

.about-qknow__heading h2 {
  margin: 0 0 10px;
  color: #000000;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.about-qknow__heading p {
  margin: 0;
  color: #393e4f;
  font-size: 18px;
  line-height: 1.55;
}

.about-qknow__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gutter-desktop);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.about-qknow__card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  min-height: 158px;
  padding: 30px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.about-qknow__card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.about-qknow__card--compact {
  min-height: 146px;
}

.about-qknow__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: #ecf1fb;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.about-qknow__card:hover .about-qknow__icon {
  background: #e5efff;
  transform: scale(1.03);
}

.about-qknow__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-qknow__copy {
  min-width: 0;
  padding-top: 2px;
}

.about-qknow__copy h3 {
  color: rgba(0, 0, 0, 0.85);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.45;
  margin-top: -5px;
}

.about-qknow__copy p {
  margin: 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.65;
}

.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: none;
}

.about-section__icon {
  display: none;
  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(500px, 1fr) minmax(0, 0.82fr);
}

.about-company__grid {
  max-width: 1180px;
  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: 369px minmax(0, 1fr);
  gap: var(--grid-gutter-desktop);
}

.about-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 36px rgba(15, 39, 81, 0.08));
}

.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;
  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;
}

.about-contact__divider {
  height: 1px;
  margin: 28px 0;
  background: rgba(15, 105, 230, 0.12);
}

.about-contact__map {
  position: relative;
  overflow: hidden;
  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-qknow__grid,
  .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-qknow {
    padding: 40px 0 56px;
  }

  html:not(.is-desktop) .about-qknow__heading h2 {
    font-size: 30px;
  }

  html:not(.is-desktop) .about-qknow__heading p,
  html:not(.is-desktop) .about-qknow__copy p {
    font-size: 16px;
  }

  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 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: 62% center;
  }

  html:not(.is-desktop) .about-hero__inner {
    min-height: 270px;
    padding-right: 24%;
  }

  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-qknow__card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  html:not(.is-desktop) .about-qknow__icon {
    width: 58px;
    height: 58px;
  }

  html:not(.is-desktop) .about-qknow__icon img {
    width: 42px;
    height: 42px;
  }

  html:not(.is-desktop) .about-qknow__copy h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  html:not(.is-desktop) .about-contact__card {
    padding: 24px 18px;
  }

  html:not(.is-desktop) .about-contact__map {
    aspect-ratio: 1110 / 594;
  }

  html:not(.is-desktop) .about-contact__map > img {
    object-fit: contain;
  }

  html:not(.is-desktop) .about-contact__map-pin-icon {
    width: clamp(30px, 9vw, 42px);
  }

  html:not(.is-desktop) .about-contact__map-pin-label {
    min-height: clamp(20px, 5.4vw, 26px);
    margin-left: -4px;
    padding: 0 clamp(6px, 1.8vw, 10px);
    border-radius: 4px;
    font-size: clamp(11px, 3vw, 13px);
    box-shadow: 0 3px 10px rgba(30, 118, 224, 0.18);
  }
}

@media (max-width: 420px) {
  html:not(.is-desktop) .about-hero__inner {
    padding-right: 14%;
  }

  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;
  }

  html:not(.is-desktop) .about-contact__map-pin--nanjing {
    left: 68%;
  }
}

/* source: styles/pages/solution.css */
.solution-page {
    font-family: var(--font-sans);
}

/* banner模块 */
.solution-page .solution-page__hero {
    position: relative;
    isolation: isolate;
    height: 350px;
    background: url('/assets/images/solution/hero-bg.png') no-repeat right
        center;
    background-size: cover;
}

.solution-page .solution-page__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.solution-page .site-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.solution-page .solution-page__hero-content {
    width: 100%;
    text-align: center;
    font-family: var(--font-sans);
}

.solution-page .solution-page__hero-title {
    font-weight: 500;
    font-size: 22px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 6px;
}

.solution-page .solution-page__hero-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 32px;
    color: #fff;
}

.solution-page .solution-page__hero-desc br {
    display: none;
}

.solution-page .hero-carousel__actions {
    justify-content: center;
}

/* Hero 是通栏背景，进入视口时只淡入，避免整体缩放露出两侧底色。 */
@media (prefers-reduced-motion: no-preference) {
    .solution-page .solution-page__hero.motion-reveal,
    .solution-page .solution-page__hero.motion-reveal.is-visible {
        transform: none;
    }
}

.is-desktop .solution-page {
    padding-top: var(--header-height-desktop);
}

@media screen and (min-width: 768px) {
    .solution-page .solution-page__hero {
        height: 518px;
    }

    .solution-page .solution-page__hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .solution-page .solution-page__hero-desc {
        font-size: 18px;
    }
}

@media screen and (min-width: 1200px) {
    html.is-desktop .solution-page .solution-page__hero {
        height: 518px;
    }

    html.is-desktop .solution-page .site-container {
        align-items: flex-start;
    }

    html.is-desktop .solution-page .solution-page__hero-title {
        font-weight: 400;
        font-size: clamp(22px, 3vw, 52px);
        line-height: 80px;
        letter-spacing: 0.5px;
        margin-bottom: 22px;
    }

    html.is-desktop .solution-page .solution-page__hero-desc {
        font-weight: 400;
        font-size: clamp(15px, 1.8vw, 28px);
        line-height: 48px;
    }

    html.is-desktop .solution-page .solution-page__hero-desc br {
        display: block;
    }

    html.is-desktop .solution-page .solution-page__hero-content {
        text-align: left;
    }

    html.is-desktop .solution-page .hero-carousel__actions {
        justify-content: flex-start;
    }
}

/* 行业痛点 */
.solution-page .solution-page__pain {
    background: linear-gradient(137deg, #ffffff 0%, #faf7ff 100%);
}

/* .solution-page .pain-container {
    padding: 0 16px;
    margin: 0 auto;
} */

.solution-page .pain-container .pain-item {
    --border-width: 18px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(-180deg, #e6eefc, #f3f7fb);
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: calc(var(--border-width) - 1px);
    transition: all 0.3s ease-in-out;
}
.solution-page .pain-container .pain-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0px 6px 12px 1px rgba(0, 0, 0, 0.08);
}

.solution-page .pain-container .pain-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(-180deg, #c5dcfc, #fff);
    border-radius: var(--border-width);
}

.solution-page .pain-container .pain-item--img {
    height: 120px;
}

.solution-page .pain-container img {
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.solution-page .pain-container .pain-item--title {
    font-weight: 400;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.solution-page .pain-container .pain-item--desc {
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .solution-page .pain-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--grid-gutter-desktop);
    }

    .solution-page .pain-container .pain-item {
        max-width: 375px;
        flex: 1;
        margin: unset;
        min-width: 276px;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page .pain-container {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .solution-page .pain-container .pain-item {
        width: 100%;
        height: auto;
        min-height: 439px;
        margin: unset;
        padding: 16px 0;
        min-width: 0;
        max-width: none;
    }

    .solution-page .pain-container .pain-item--img {
        height: 183px;
        margin-bottom: 11px;
    }

    .solution-page .pain-container img {
        height: 100%;
        object-fit: contain;
    }

    .solution-page .pain-container .pain-item--title {
        font-weight: 400;
        font-size: 28px;
        color: rgba(0, 0, 0, 0.85);
        line-height: 40px;
        text-align: center;
        margin-bottom: 17px;
    }

    .solution-page .pain-container .pain-item--desc {
        font-size: 16px;
        color: #393e4f;
        line-height: 26px;
        text-align: left;
        padding: 0 clamp(20px, 2vw, 43px);
    }
}

/* 方案架构图 */
.solution-page__structure {
    background-color: #f7faff;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
        url('/assets/images/solution/structure-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.structure-container {
    max-width: var(--container-product);
    padding: 0;
    margin: 0 auto;
}

.structure-container img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .structure-container {
        padding: 0;
    }

    .structure-container img {
        width: auto;
        max-width: 100%;
        max-height: 770px;
        padding: 0;
        margin: 0 auto;
        object-fit: contain;
    }
}

/* 产品展示 */
.solution-page__products {
    background: linear-gradient(43deg, #f2f9ff 0%, #ffffff 45.6%, #faf7ff 100%);
}
.products-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
}

.products-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

.products-row + .products-row {
    margin-top: 20px;
}

.products-row .products-text__title {
    font-weight: 400;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    margin-bottom: 10px;
}

.products-row .products-text__desc {
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    margin-bottom: 16px;
    text-align: left;
}

.products-row .products-row__image {
    background: linear-gradient(
        135deg,
        #d9e7fe 0%,
        #f3eeff 57.05%,
        #d8e5fb 100%
    );
    padding: 26px;
    border-radius: 16px;
    aspect-ratio: 21 / 10;
}

@media screen and (min-width: 768px) {
    .products-row {
        flex-direction: row-reverse;
        justify-content: center;
        box-shadow: none;
        padding: 0;
        text-align: left;
    }
    .products-row:nth-child(2n) {
        flex-direction: row;
    }

    .products-row + .products-row {
        margin-top: 42px;
    }

    .products-row .products-row__text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 500px;
        transform: translateY(-10px);
    }
    .products-row .products-text__title {
        font-size: clamp(20px, 1.5vw, 28px);
        margin-bottom: 15px;
        line-height: 40px;
    }
    .products-row .products-text__desc {
        font-size: clamp(14px, 1.5vw, 20px);
        color: #393e4f;
        line-height: 33px;
        margin-bottom: 23px;
    }

    .products-row .products-text__btn .site-header__cta {
        display: inline-flex;
    }

    .products-row .products-row__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .products-row .products-row__image {
        flex: 1;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__products {
        padding-top: 66px;
        padding-bottom: 67px;
    }

    .products-row {
        gap: 92px;
    }

    .products-row + .products-row {
        margin-top: 44px;
    }

    .products-container {
        /* padding: 0 40px; */
    }
    .products-row .products-row__image {
        max-width: 975px;
        height: 462px;
        aspect-ratio: auto;
    }
}

/* 方案特色 */
.solution-page__feature {
    background-color: #fff;
}

.solution-page__feature .feature-row {
    position: relative;
    border-radius: 16px;
    padding: 20px 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.solution-page__feature .feature-row:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.solution-page__feature .feature-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-page__feature .feature-row--title {
    font-weight: 400;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 40px;
    margin-bottom: 4px;
}

.solution-page__feature .feature-row--desc {
    font-weight: 400;
    font-size: 14px;
    color: #393e4f;
    line-height: 28px;
}

.solution-page__feature .feature-row--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.solution-page__feature .feature-row--img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 768px) {
    .solution-page__feature .feature-container {
        /* padding: 0 40px; */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--grid-gutter-desktop);
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__feature {
        padding-top: 60px;
        padding-bottom: 47px;
    }

    .solution-page__feature .feature-container {
        gap: var(--grid-gutter-desktop);
    }

    .solution-page__feature .feature-row {
        padding: 48px 0 42px 45px;
    }

    .solution-page__feature .feature-row--title {
        font-weight: 400;
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 17px;
    }

    .solution-page__feature .feature-row--desc {
        font-weight: 400;
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 17px;
    }
}

/* 领军行业客户 */
.solution-page__leader-customer {
    background: url('/assets/images/solution/leader-customer-bg.png') no-repeat
        center center;
    background-size: 100% 100%;
}

.leader-customer-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.leader-customer-row {
    max-width: 781px;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.leader-customer-row .leader-customer-row--text {
    padding-top: 20px;
}

.leader-customer-row .leader-customer-row--img {
    max-height: 296px;
    aspect-ratio: 8 / 3;
    overflow: hidden;
}

.leader-customer-row .leader-customer-row--img img {
    width: 100%;
}

.leader-customer-row .leader-customer-row--text-title {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 32px;
    justify-content: center;
    margin-bottom: 10px;
}

.leader-customer-row .leader-customer-row--text-title p {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
    color: rgba(0, 0, 0, 0.85);
}

.leader-customer-row .leader-customer-row--text-title img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-right: 5px;
}

.leader-customer-row .leader-customer-row--text-title span {
    font-size: 14px;
}

.leader-customer-row .leader-customer-row--text-desc {
    font-size: 14px;
    color: #333;
    line-height: 28px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .leader-customer-container {
        /* padding: 0 40px; */
    }

    .leader-customer-row {
        background-color: #fff;
    }
    .leader-customer-row .leader-customer-row--text {
        padding: 20px 15px;
    }
}

@media screen and (min-width: 860px) {
    .leader-customer-container {
        flex-direction: row;
    }

    .leader-customer-row .leader-customer-row--text-title {
        justify-content: flex-start;
    }
    .leader-customer-row .leader-customer-row--text-desc {
        text-align: left;
    }
}

@media screen and (max-width: 1199px) {
    .leader-customer-container {
        flex-direction: column;
    }

    .leader-customer-row {
        width: 100%;
        max-width: none;
    }

}

@media screen and (min-width: 1200px) {
    .solution-page__leader-customer {
        padding-top: 60px;
        padding-bottom: 49px;
    }

    .leader-customer-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .leader-customer-row {
        display: flex;
        flex-direction: column;
        max-width: none;
        min-height: 635px;
        background-color: #fff;
    }

    .leader-customer-row .leader-customer-row--img {
        width: calc(100% - 40px);
        height: 270px;
        max-height: none;
        aspect-ratio: auto;
        margin: 19px 20px 0;
        border-radius: 8px;
    }

    .leader-customer-row .leader-customer-row--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .leader-customer-row .leader-customer-row--text {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 24px 40px 30px;
    }

    .leader-customer-row .leader-customer-row--text-title {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 48px;
    }
    .leader-customer-row .leader-customer-row--text-title img {
        width: 48px;
        height: 48px;
        margin-right: 12px;
    }

    .leader-customer-row .leader-customer-row--text-desc {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 30px;
    }

    .leader-customer-row--role {
        margin-top: auto;
        font-size: 20px;
        line-height: 30px;
        text-align: right;
        color: #333;
    }
}

/* 客户案例 */
.solution-page__customer {
    display: block;
}
.customer-container {
    max-width: var(--container-product);
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gutter-desktop);
}

.customer-item {
    width: 100%;
    min-width: 0;
    background-color: #fff;
    box-shadow: 0px 5px 12px 1px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    aspect-ratio: 245 / 84;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: clamp(12px, 1.2vw, 18px);
    font-weight: bold;
}

.customer-item img {
    display: block;
    width: auto;
    height: clamp(30px, 2.25vw, 38px);
    max-width: 88%;
    max-height: 52%;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .customer-container {
        padding: 0;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__customer {
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .customer-container {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--grid-gutter-desktop);
    }
}

/* 运维伙伴 */
.solution-page__ability {
    background-color: #fff;
}
.ability-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ability-row {
    background: linear-gradient(105deg, #ebf2ff 0%, #f7fafd 43.47%, #e4f0ff 100%);
    padding: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
}

.ability-row:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.ability-row:nth-child(1) {
    order: 1;
}

.ability-row:nth-child(2) {
    order: 3;
}

.ability-row:nth-child(3) {
    order: 2;
}

.ability-row:nth-child(4) {
    order: 5;
}

.ability-row:nth-child(5) {
    order: 4;
}

.ability-row:nth-child(6) {
    order: 6;
}

.ability-row--title {
    --ability-title-height: 44px;
    display: flex;
    width: min(100%, 180px);
    height: var(--ability-title-height);
    line-height: 1.2;
    position: relative;
    isolation: isolate;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 0 14px 0 58px;
    margin-bottom: 10px;
}

.ability-row--title::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 4px;
    right: 0;
    bottom: 4px;
    left: calc(var(--ability-title-height) / 2);
    border-radius: 8px 999px 999px 8px;
    background: linear-gradient(105deg, #08baff 0%, #2870ff 43%, #6b3cff 100%);
}

.ability-row--title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: var(--ability-title-height);
    height: var(--ability-title-height);
    border-radius: 50%;
    background-color: #fff;
}

.ability-row--title img {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 1;
    width: 22px;
    height: 22px;
    border-radius: 0;
    object-fit: contain;
}

.ability-row:nth-child(4) .ability-row--title::after {
    background-image: url('/assets/images/solution/ability-icon-4-cloud.svg');
    background-repeat: no-repeat;
    background-position: center 66%;
    background-size: 24px auto;
}

.ability-row:nth-child(4) .ability-row--title img {
    top: 8px;
    width: 22px;
    height: 16px;
}

.ability-row--desc {
    font-size: 14px;
    color: #333333;
    line-height: 28px;
}

@media screen and (min-width: 768px) {
    .ability-container {
        /* padding: 0 40px; */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__ability {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .ability-container {
        gap: var(--grid-gutter-desktop);
    }
    .ability-row {
        --ability-title-offset: 34px;
        --ability-desc-offset: 43px;
        padding: 0;
        min-height: 280px;
    }

    .ability-row:nth-child(1) {
        --ability-title-offset: 33px;
        --ability-desc-offset: 42px;
        order: 1;
    }

    .ability-row:nth-child(2) {
        --ability-title-offset: 51px;
        --ability-desc-offset: 57px;
        order: 3;
    }

    .ability-row:nth-child(3) {
        --ability-title-offset: 37px;
        --ability-desc-offset: 55px;
        order: 2;
    }

    .ability-row:nth-child(4) {
        --ability-title-offset: 37px;
        --ability-desc-offset: 45px;
        order: 5;
    }

    .ability-row:nth-child(5) {
        --ability-title-offset: 35px;
        --ability-desc-offset: 43px;
        order: 4;
    }

    .ability-row:nth-child(6) {
        --ability-title-offset: 42px;
        --ability-desc-offset: 51px;
        order: 6;
    }

    .ability-row--title {
        --ability-title-height: 78px;
        width: min(calc(100% - var(--ability-title-offset)), 332px);
        margin-top: 30px;
        margin-bottom: 14px;
        margin-left: var(--ability-title-offset);
        padding-right: 12px;
        padding-left: 90px;
        font-size: 26px;
        white-space: nowrap;
    }

    .ability-row--title::before {
        top: 13px;
        right: 0;
        bottom: 13px;
        left: 1px;
        border-radius: 29px;
        background: linear-gradient(90deg, #00bbff 0%, #0a6fff 55.64%, #9034ff 100%);
    }

    .ability-row--title img {
        top: 19px;
        left: 19px;
        width: 40px;
        height: 40px;
    }

    .ability-row:nth-child(4) .ability-row--title::after {
        background-position: center 66%;
        background-size: 43px auto;
    }

    .ability-row:nth-child(4) .ability-row--title img {
        top: 17px;
        left: 23px;
        width: 33px;
        height: 24px;
    }

    .ability-row--desc {
        font-size: 18px;
        line-height: 36px;
        margin-right: 38px;
        margin-left: var(--ability-desc-offset);
        padding: 0;
    }

    .ability-row:nth-child(1) .ability-row--desc {
        line-height: 32px;
    }
}

/* 常见问题（FAQ） */
.solution-page__faq {
    padding: 76px 0;
    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%
    );
}

.solution-page__faq .home-header__wrapper {
    margin-bottom: 30px;
}

.solution-page__faq .faq-container.content-inner {
    display: grid;
    gap: var(--grid-gutter-desktop);
    width: var(--content-max-width) !important;
    max-width: var(--container-product) !important;
    margin: 0 auto;
    padding: 0;
}

.solution-page__faq .faq-item {
    box-sizing: border-box;
    height: 73px;
    min-height: 73px;
    padding: 0;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.solution-page__faq .faq-item.open {
    height: auto;
    min-height: 166px;
    /* padding-bottom: 20px; */
}

.solution-page__faq .faq-item__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 73px;
    margin: 0;
    padding: 0 68px 0 74px;
    border: 0;
    color: rgba(0, 0, 0, 0.85098);
    cursor: pointer;
}

.solution-page__faq .faq-item.open .faq-item__title {
    min-height: 65px;
}

.solution-page__faq .faq-item__title img {
    display: none;
}

.solution-page__faq .faq-item__title p {
    margin: 0;
    color: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.solution-page__faq .faq-item__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 26px;
    width: 30px;
    height: 30px;
    border-radius: 18px;
    background: #d9e6fb url("/assets/images/solutions/high-quality-dataset/faq-question-mark.svg") no-repeat center / 16.7168px 17.491px;
    transform: translateY(-50%);
}

.solution-page__faq .faq-item__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 18px;
    height: 12px;
    background: url("/assets/images/solutions/high-quality-dataset/faq-chevron-down.svg") no-repeat center / contain;
    transform: translateY(-50%);
}

.solution-page__faq .faq-item.open .faq-item__title::before {
    top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: none;
}

.solution-page__faq .faq-item.open .faq-item__title::after {
    top: 26px;
    width: 20.0586px;
    height: 11.3389px;
    background-image: url("/assets/images/solutions/high-quality-dataset/faq-chevron-up.svg");
    transform: none;
}

.solution-page__faq .faq-item__desc {
    position: relative;
    display: block;
    box-sizing: border-box;
    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);
    color: rgba(0, 0, 0, 0.85098);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.solution-page__faq .faq-item__desc::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff url("/assets/images/solutions/high-quality-dataset/faq-answer-mark.svg") no-repeat center / 16.0176px 15.833px;
}

.solution-page__faq .faq-item__desc img {
    display: none;
}

.solution-page__faq .faq-item:not(.open) .faq-item__desc {
    display: none;
}

.solution-page__faq .faq-item.open .faq-item__desc {
    display: block;
}

@media screen and (max-width: 1024px) {
    .solution-page__faq .faq-container.content-inner {
        width: var(--content-max-width) !important;
        max-width: var(--container-product) !important;
    }
}

@media screen and (max-width: 767px) {
    .solution-page__faq {
        padding: 56px 0;
    }

    .solution-page__faq .faq-container.content-inner {
        gap: var(--grid-gutter-mobile);
    }

    .solution-page__faq .faq-item,
    .solution-page__faq .faq-item.open {
        width: 100%;
    }

    .solution-page__faq .faq-item__title {
        min-height: 64px;
        padding: 14px 48px 14px 52px;
    }

    .solution-page__faq .faq-item__title p {
        overflow-wrap: anywhere;
        font-size: 16px;
        line-height: 24px;
    }

    .solution-page__faq .faq-item.open .faq-item__title {
        min-height: 58px;
    }

    .solution-page__faq .faq-item__title::before {
        left: 16px;
        width: 24px;
        height: 24px;
        background-size: 13px 14px;
    }

    .solution-page__faq .faq-item__title::after {
        right: 18px;
        width: 15px;
        height: 10px;
    }

    .solution-page__faq .faq-item__desc {
        min-height: 0;
        margin: 0 16px 16px;
        padding: 12px 14px 12px 44px;
        overflow-wrap: anywhere;
        font-size: 15px;
        line-height: 24px;
    }

    .solution-page__faq .faq-item__desc::before {
        top: 12px;
        left: 12px;
        width: 24px;
        height: 24px;
        background-size: 13px 13px;
    }
}

@media screen and (max-width: 767px) {
    .solution-page__faq {
        padding: 44px 0;
    }

    .solution-page__faq .home-header__wrapper {
        margin-bottom: 24px;
    }

    .solution-page__faq .faq-container.content-inner {
        width: var(--content-max-width) !important;
        max-width: var(--container-product) !important;
    }
}

@media screen and (max-width: 480px) {
    .solution-page__faq .faq-container.content-inner {
        width: var(--content-max-width) !important;
    }

    .solution-page__faq .faq-item__title {
        padding-right: 40px;
        padding-left: 46px;
    }

    .solution-page__faq .faq-item__title p {
        font-size: 15px;
    }

    .solution-page__faq .faq-item__desc {
        margin-right: 10px;
        margin-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 390px) {
    .solution-page__faq .faq-item__desc {
        padding-left: 40px;
    }
}

/* 相关产品 */
.solution-page__related {
    background-color: #fff;
}
.related-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
}

.related-item {
    border-radius: 12px;
    border: 2px solid #c9d3fc;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    max-height: 416px;
}

.related-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 22px 48px rgba(22, 69, 148, 0.1);
}

.related-item + .related-item {
    margin-top: 20px;
}

.related-item .related-item__img {
    position: relative;
    flex-shrink: 1;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.related-item .related-item__img img {
    width: 100%;
    height: 100%;
}

.related-item .related-item__text {
    flex: 1;
    padding: 20px 0;
}

.related-item .related-item__title {
    width: 100%;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
    line-height: 42px;
    font-weight: 400;
}

.related-item .related-item__desc {
    padding: 0 10px 10px;
    font-size: 14px;
    text-align: left;
}

.related-item .related-item__btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.related-item .related-item__btn .site-header__cta {
    display: inline-flex;
}

@media screen and (min-width: 768px) {
    .related-item {
        display: flex;
        flex-direction: row;
        text-align: left;
    }

    .related-item .related-item__img {
        flex-shrink: 0;
        max-width: 186px;
    }

    .related-item .related-item__img img {
        width: auto;
        height: 100%;
    }

    .related-item .related-item__text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 10px 0;
    }

    .related-item .related-item__btn,
    .related-item .related-item__title {
        padding-left: 10px;
    }
}

@media screen and (min-width: 768px) {
    .related-container {
        /* padding: 0 40px; */
    }

    .related-item .related-item__btn,
    .related-item .related-item__title {
        padding-left: 20px;
    }

    .related-item .related-item__desc {
        padding: 0 20px 10px;
    }
}

@media screen and (min-width: 1000px) {
    .related-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }

    .related-item + .related-item {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__related {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .related-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .related-item {
        min-height: 416px;
        max-height: none;
        flex-direction: column;
        text-align: left;
    }

    .related-item .related-item__img {
        width: 100%;
        max-width: none;
        height: 210px;
        flex: 0 0 210px;
    }

    .related-item .related-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .related-item .related-item__text {
        flex: 1;
        color: #333333;
        padding: 14px 18px 18px;
    }

    .related-item .related-item__title {
        font-weight: 400;
        font-size: 26px;
        line-height: 1.43;
        margin-bottom: 8px;
        padding-left: 0;
    }

    .related-item .related-item__desc {
        font-weight: 400;
        font-size: 16px;
        line-height: 1.67;
        margin-bottom: 10px;
        padding: 0;
    }

    .related-item .related-item__btn {
        width: 100%;
        margin-top: auto;
        padding-right: 0;
        padding-left: 0;
    }
}

/* 学习资料 */
.solution-page__resource {
    background: linear-gradient(
        138deg,
        #ffffff 0%,
        #eff0f7 10.59%,
        #f2f3fa 100%
    );
}
.resource-container {
    /* max-width: 1604px; */
    /* padding: 0 16px; */
    /* margin: 0 auto; */
}

.resource-item:nth-child(1) {
    --resource-color: #573ca1;
    --resource-light-color: #e4dff7;
    --resource-flag-image: url('/assets/images/solution/resource-flag-1.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-1.png');
}

.resource-item:nth-child(2) {
    --resource-color: #1469a5;
    --resource-light-color: #caeff7;
    --resource-flag-image: url('/assets/images/solution/resource-flag-2.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-2.png');
}

.resource-item:nth-child(3) {
    --resource-color: #1653d5;
    --resource-light-color: #cee1ff;
    --resource-flag-image: url('/assets/images/solution/resource-flag-3.png');
    --resource-icon-image: url('/assets/images/solution/resource-icon-3.png');
}

.resource-container .resource-item {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--resource-light-color) 0%,
        #ffffff 40%
    );
    padding: 15px 15px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.resource-item + .resource-item {
    margin-top: 20px;
}

.resource-container .resource-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 6px;
    width: 6%;
    aspect-ratio: 4 / 5;
    background: var(--resource-flag-image) no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.7;
}

.resource-item--title {
    position: relative;
    font-size: 18px;
    color: var(--resource-color);
    font-weight: 400;
    z-index: 9;
    padding-left: 60px;
    margin-bottom: 15px;
    line-height: 50px;
}

.resource-item--title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--resource-icon-image) no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    z-index: 1;
    border-radius: 50%;
}

.resource-item--desc {
    position: relative;
    padding: 15px 0 8px;
    font-size: 16px;
    color: #393e4f;
    line-height: 26px;
    border-top: 2px solid var(--resource-light-color);
    z-index: 9;
}

.resource-item--links {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    z-index: 9;
    line-height: 32px;
}

.resource-item--links a {
    position: relative;
    font-size: 16px;
    padding-left: 20px;
    cursor: default;
}

.resource-item--links a[href]:not([href="javascript:void(0)"]),
.resource-item--links a[data-open-trial-popup="true"] {
    cursor: pointer;
}

.resource-item--links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('/assets/images/home/scene/arrow-right.png') no-repeat
        center center;
    background-size: cover;
    width: 16px;
    height: 13px;
}

.resource-item--btn {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    z-index: 9;
    line-height: 36px;
    background: #ffffff;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid var(--resource-color);
    margin-top: auto;
    cursor: pointer;
    color: var(--resource-color);
    font-weight: 400;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .resource-container {
        /* padding: 0 40px; */
    }
}

@media screen and (min-width: 1000px) {
    .resource-container {
        display: flex;
        gap: 10px;
    }

    .resource-item {
        flex: 1;
    }

    .resource-item + .resource-item {
        margin-top: 0;
    }
}

@media screen and (min-width: 1200px) {
    .solution-page__resource {
        padding-top: 30px;
        padding-bottom: 65px;
    }

    .resource-container {
        gap: var(--grid-gutter-desktop);
    }

    .resource-container .resource-item {
        padding: 22px 38px;
        min-height: 408px;
    }

    .resource-container .resource-item::after {
        width: 14%;
    }

    .resource-item--title {
        line-height: 66px;
        font-weight: 400;
        font-size: 32px;
        padding-left: 86px;
        margin-bottom: 16px;
    }

    .resource-item--title::after {
        width: 66px;
        height: 66px;
    }

    .resource-item--desc {
        font-weight: 400;
        font-size: clamp(14px, 1.4vw, 20px);
        color: #333333;
        line-height: 30px;
        padding: 16px 6px;
        min-height: 124px;
    }

    .resource-item--links {
        margin-bottom: 22px;
    }

    .resource-item--links a {
        font-weight: 400;
        font-size: clamp(14px, 1.4vw, 20px);
        color: #333333;
        line-height: 30px;
        padding-left: 26px;
    }

    .resource-item--links a::after {
        left: 6px;
    }

    .resource-item--btn {
        line-height: 52px;
        font-weight: 400;
        font-size: clamp(16px, 1.4vw, 22px);
    }
}

/* 方案页响应式版心与卡片布局 */
@media screen and (max-width: 1199px) {
    .solution-page :where(
            .pain-container,
            .structure-container,
            .products-container,
            .feature-container,
            .leader-customer-container,
            .customer-container,
            .ability-container,
            .faq-container,
            .related-container,
            .resource-container
        ) {
        width: var(--content-max-width);
        max-width: var(--container-product);
        padding-inline: 0;
    }

    .structure-container img {
        max-height: none;
        padding-inline: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .solution-page .pain-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .solution-page .pain-container .pain-item {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .products-row {
        gap: clamp(24px, 4vw, 48px);
    }

    .products-row > * {
        min-width: 0;
    }

    .leader-customer-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: var(--grid-gutter-desktop);
    }

    .ability-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .leader-customer-row {
        display: grid;
        grid-template-columns: minmax(240px, 3fr) minmax(0, 5fr);
        width: 100%;
        max-width: none;
        min-height: 300px;
        background-color: #fff;
        margin: 0;
    }

    .leader-customer-row .leader-customer-row--img {
        width: 100%;
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
    }

    .leader-customer-row .leader-customer-row--img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .leader-customer-row .leader-customer-row--text {
        display: flex;
        min-width: 0;
        flex-direction: column;
        padding: 24px;
    }

    .leader-customer-row--role {
        margin-top: auto;
        text-align: right;
    }

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

    .ability-row {
        min-height: 220px;
        padding: 20px;
    }

    .related-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .related-item,
    .related-item + .related-item {
        min-height: 0;
        max-height: none;
        margin-top: 0;
        flex-direction: column;
    }

    .related-item .related-item__img {
        width: 100%;
        max-width: none;
        aspect-ratio: 16 / 7;
    }

    .related-item .related-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .related-item .related-item__text {
        flex: 1;
        align-items: stretch;
        padding: 16px;
    }

    .related-item .related-item__title,
    .related-item .related-item__desc,
    .related-item .related-item__btn {
        padding-right: 0;
        padding-left: 0;
    }

    .related-item .related-item__btn {
        width: 100%;
        margin-top: auto;
    }

    .resource-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-desktop);
    }

    .resource-item + .resource-item {
        margin-top: 0;
    }

    .resource-container .resource-item:nth-child(3) {
        grid-column: 1 / -1;
        width: calc((100% - var(--grid-gutter-desktop)) / 2);
        justify-self: center;
    }
}

@media screen and (max-width: 767px) {
    .solution-page .solution-page__hero {
        min-height: 400px;
        height: clamp(400px, 108vw, 460px);
        background-position: 62% center;
    }

    .solution-page .solution-page__hero-title {
        font-size: clamp(22px, 6.4vw, 28px);
        line-height: 1.45;
    }

    .solution-page .solution-page__hero-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .solution-page .pain-container .pain-item {
        margin-bottom: 0;
    }

    .solution-page .pain-container {
        display: grid;
        gap: var(--grid-gutter-mobile);
    }

    .products-row {
        gap: 16px;
        padding: 14px;
    }

    .products-row + .products-row {
        margin-top: 16px;
    }

    .products-row .products-row__image {
        padding: clamp(12px, 4vw, 20px);
    }

    .solution-page__feature .feature-row {
        min-height: 180px;
        padding: 24px 20px;
    }

    .solution-page__feature .feature-container,
    .leader-customer-container,
    .ability-container {
        gap: var(--grid-gutter-mobile);
    }

    .leader-customer-row {
        max-width: none;
        background-color: #fff;
    }

    .leader-customer-row .leader-customer-row--img {
        max-height: none;
        aspect-ratio: 16 / 9;
    }

    .leader-customer-row .leader-customer-row--img img {
        height: 100%;
        object-fit: cover;
    }

    .leader-customer-row .leader-customer-row--text {
        padding: 18px 16px 22px;
    }

    .leader-customer-row .leader-customer-row--text-title,
    .leader-customer-row .leader-customer-row--text-desc {
        justify-content: flex-start;
        text-align: left;
    }

    .leader-customer-row--role {
        margin-top: 14px;
        text-align: right;
    }

    .customer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--grid-gutter-mobile);
    }

    .customer-item {
        min-height: 68px;
        padding: 8px;
    }

    .customer-item img {
        height: clamp(24px, 7vw, 32px);
        max-width: 86%;
        max-height: 54%;
    }

    .ability-row {
        min-height: 0;
        padding: 18px 16px;
    }

    .ability-row--desc {
        line-height: 1.75;
    }

    .related-item {
        max-height: none;
    }

    .related-item + .related-item,
    .resource-item + .resource-item {
        margin-top: var(--grid-gutter-mobile);
    }

    .related-item .related-item__img {
        aspect-ratio: 16 / 9;
    }

    .related-item .related-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .related-item .related-item__text {
        padding: 14px 16px 16px;
    }

    .related-item .related-item__title,
    .related-item .related-item__desc,
    .related-item .related-item__btn {
        padding-right: 0;
        padding-left: 0;
    }

    .related-item .related-item__desc {
        padding-bottom: 12px;
    }

    .related-item .related-item__btn {
        justify-content: center;
    }

    .resource-container .resource-item {
        padding: 18px 16px 20px;
    }
}

@media screen and (max-width: 359px) {
    .solution-page :where(
            .pain-container,
            .structure-container,
            .products-container,
            .feature-container,
            .leader-customer-container,
            .customer-container,
            .ability-container,
            .faq-container,
            .related-container,
            .resource-container
        ) {
        width: var(--content-max-width);
    }

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

    .ability-row--title {
        width: 100%;
        font-size: 15px;
    }
}

/* source: styles/pages/price.css */
.price-shell,
.pricing-shell {
  background: #ffffff;
}

.price-redesign {
  --price-desktop-scale: 1;
  --price-desktop-layout-width: 1524px;
  --price-desktop-plans-height: 892px;
  --price-desktop-hero-height: 1205px;
  --price-desktop-compare-offset: 0px;
  --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;
  overflow: hidden;
  background: #f4f8fc;
}

.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: 1000px) {
  .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: 1000px) {
  .price-redesign__hero {
    min-height: 1205px;
    padding-top: 74px;
  }

  .price-redesign__hero::before {
    background-position: center -85px;
    background-size: 100% auto;
  }

  .price-redesign__hero-heading h1 {
    font-size: 52px;
  }

  .price-redesign__hero-heading p {
    margin-top: 15px;
    font-size: 32px;
    line-height: 48px;
  }

  .price-redesign__plans {
    display: block;
    width: 1430px;
    height: 892px;
    margin-top: 36px;
    margin-right: auto;
    margin-left: auto;
  }

  .price-redesign__plans-stage {
    position: relative;
    display: block;
    width: 1430px;
    height: 892px;
  }

  .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: -4px;
    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;
  }

}

@media (min-width: 1480px) {
  .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: 100%;
    grid-template-columns: repeat(6, 208.312px);
    column-gap: 33.33px;
    justify-content: space-between;
    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: 100%;
    height: 159.476px;
    grid-template-columns: repeat(4, 304.155px);
    column-gap: 39.541px;
    justify-content: space-between;
    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: 100%;
    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;
    right: 29.732px;
    left: 29.732px;
    width: auto;
    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: 1500px) {
  .price-redesign__hero::before {
    background-position: center -4.427083vw;
  }
}

@media (min-width: 1000px) and (max-width: 1571px) {
  .price-redesign__hero {
    min-height: var(--price-desktop-hero-height);
  }

  .price-redesign__plans {
    width: var(--price-desktop-layout-width);
    height: var(--price-desktop-plans-height);
  }

  .price-redesign__plans-stage {
    width: 1524px;
    height: 892px;
    transform: scale(var(--price-desktop-scale));
    transform-origin: top left;
  }

  .price-plan--open {
    width: 330px;
  }

  .price-plan--pro {
    left: 343px;
  }

  .price-plan--enterprise {
    left: 769px;
  }

  .price-redesign__side-plans {
    left: 1194px;
    width: 330px;
  }

  .price-plan--open .price-plan__badge {
    left: 88px;
  }

  .price-plan--open .price-plan__stats,
  .price-plan--open .price-plan__features {
    width: 291px;
  }

  .price-mini-plan p,
  .price-mini-plan:first-child p {
    width: 278px;
  }

  .price-mini-plan .price-button {
    width: 278px;
  }

  html:not([lang^="en"]):not([lang^="ja"]) .price-redesign__compare {
    min-height: calc(633px + var(--price-desktop-compare-offset));
  }

  html:not([lang^="en"]):not([lang^="ja"]) .price-redesign__compare .price-redesign__container {
    width: var(--price-desktop-layout-width);
    max-width: none;
  }

  html:not([lang^="en"]):not([lang^="ja"]) .price-compare-panel {
    width: 1524px;
    margin-bottom: var(--price-desktop-compare-offset);
    transform: scale(var(--price-desktop-scale));
    transform-origin: top left;
  }

  html:not([lang^="en"]):not([lang^="ja"]) .price-compare-panel__qr-card {
    width: calc(100% - 858px);
    background-size: calc(100% - 46px) 340px;
  }

  html:not([lang^="en"]):not([lang^="ja"]) .price-compare-panel__contact {
    left: calc(50% + 59px);
  }
}

@media (min-width: 1572px) {
  .price-redesign__plans {
    width: 1524px;
  }

  .price-redesign__plans-stage {
    width: 1524px;
  }

  .price-plan--open {
    width: 330px;
  }

  .price-plan--pro {
    left: 343px;
  }

  .price-plan--enterprise {
    left: 769px;
  }

  .price-redesign__side-plans {
    left: 1194px;
    width: 330px;
  }

  .price-plan--open .price-plan__badge {
    left: 88px;
  }

  .price-plan--open .price-plan__stats,
  .price-plan--open .price-plan__features {
    width: 291px;
  }

  .price-mini-plan p,
  .price-mini-plan:first-child p {
    width: 278px;
  }

  .price-mini-plan .price-button {
    width: 278px;
  }

  .price-compare-panel__qr-card {
    width: calc(100% - 858px);
    background-size: calc(100% - 46px) 340px;
  }

  .price-compare-panel__contact {
    left: calc(50% + 59px);
  }

  .price-service-flow {
    width: 1524px;
    column-gap: 54.8256px;
  }

  .price-service-flow li:not(:last-child)::after {
    right: -39.638px;
  }

  .price-service-advantages {
    width: 1524px;
    column-gap: 73.541px;
  }

  .price-service-banner {
    width: 1524px;
  }

  .price-service-banner .price-button {
    right: 200px;
    left: auto;
  }
}

@media (max-width: 999px) {
  .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: 0;
    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: 999px) {
  .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: 767px) {
  .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__recommend {
    top: 0;
  }

  .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: 1000px) {
  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;
  }
}

/* Keep every price-page section heading aligned with the homepage heading component. */
.price-redesign .price-section-heading h2,
.price-redesign .hqd-section-heading h2 {
  position: relative;
  z-index: 0;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
}

.price-redesign .price-section-heading h2::before,
.price-redesign .price-section-heading h2::after,
.price-redesign .hqd-section-heading h2::before,
.price-redesign .hqd-section-heading h2::after {
  content: none;
  display: none;
  background: none;
}

.price-redesign .price-section-heading p,
.price-redesign .hqd-section-heading p {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: #393e4f;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .price-redesign .price-section-heading h2,
  .price-redesign .hqd-section-heading h2 {
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 36px;
  }

  .price-redesign .price-section-heading p,
  .price-redesign .hqd-section-heading p {
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.5;
  }
}

/* qKnow shell spacing and FAQ section treatment retained during qData responsive sync. */
html.is-desktop .price-redesign__hero {
  margin-top: var(--header-height-desktop);
}

.price-redesign > .hqd-section--faq {
  padding: 76px 0;
  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%);
}

.price-redesign > .hqd-section--faq .hqd-section-heading {
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .price-redesign > .hqd-section--faq {
    padding: 56px 0;
  }

  .price-redesign .hqd-section-heading p {
    font-size: 15px;
  }
}

/* Keep the consultant-card artwork evenly inset from both sides. */
@media (min-width: 1000px) {
  html:not([lang^='en']):not([lang^='ja']) .price-compare-panel__qr-card {
    background-position: 6px 3px;
    background-size: calc(100% - 46px) 340px;
  }

  html:is([lang^='en'], [lang^='ja']) .price-compare-panel__qr-card {
    background-position: center;
    background-size: 100% 100%;
  }
}

@media (min-width: 1480px) {
  .price-plan--pro .price-plan__features li {
    font-size: 15px;
    line-height: 16px;
    white-space: normal;
  }

  .price-plan--enterprise .price-plan__features li {
    font-size: 14px;
    line-height: 18px;
    white-space: normal;
  }

  .price-plan--enterprise .price-plan__feature-columns--dense .price-plan__features {
    grid-auto-rows: 32px;
  }

  .price-plan--enterprise .price-plan__feature-columns--dense .price-plan__features li {
    font-size: 13px;
    line-height: 15px;
  }

  .price-partner-card {
    display: block;
    height: 469px;
    min-height: 469px;
    padding: 0;
  }

  .price-partner-card > img {
    object-fit: contain;
  }

  .price-partner-card:nth-child(1) > img {
    width: 270px;
    height: 45px;
  }

  .price-partner-card:nth-child(2) > img {
    width: 261px;
    height: 49px;
  }

  .price-partner-card:nth-child(3) > img {
    width: 360px;
    height: 59px;
  }

  .price-partner-card blockquote {
    top: 269px;
    height: 176px;
    min-height: 0;
    font-size: 15px;
    line-height: 1.75;
  }

  .price-partner-card > span {
    top: 402px;
    bottom: auto;
  }
}

/* Keep the price FAQ identical to qData despite qKnow's shared FAQ overrides. */
.price-redesign .hqd-faq-list {
  display: grid;
  gap: var(--grid-gutter-desktop);
  width: var(--content-max-width);
  max-width: var(--container-product);
  margin: 0 auto;
}

.price-redesign .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;
}

.price-redesign .hqd-faq-item.is-hidden {
  display: none;
}

.price-redesign .hqd-faq-item[open] {
  min-height: 166px;
  padding-bottom: 20px;
}

.price-redesign .hqd-faq-item summary {
  position: relative;
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  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;
}

.price-redesign .hqd-faq-item[open] summary {
  min-height: 65px;
}

.price-redesign .hqd-faq-item summary::-webkit-details-marker {
  display: none;
}

.price-redesign .hqd-faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  width: 30px;
  height: 30px;
  border-radius: 18px;
  background: #d9e6fb url("/assets/images/solutions/high-quality-dataset/faq-question-mark.svg") no-repeat center / 16.7168px 17.491px;
  transform: translateY(-50%);
}

.price-redesign .hqd-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 18px;
  height: 12px;
  background: url("/assets/images/solutions/high-quality-dataset/faq-chevron-down.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.price-redesign .hqd-faq-item[open] summary::before {
  top: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: none;
}

.price-redesign .hqd-faq-item[open] summary::after {
  top: 26px;
  width: 20.0586px;
  height: 11.3389px;
  background-image: url("/assets/images/solutions/high-quality-dataset/faq-chevron-up.svg");
  transform: none;
}

.price-redesign .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;
}

.price-redesign .hqd-faq-answer::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff url("/assets/images/solutions/high-quality-dataset/faq-answer-mark.svg") no-repeat center / 16.0176px 15.833px;
}

.price-redesign .hqd-faq-answer p {
  margin: 0;
  color: rgba(0, 0, 0, 0.85098);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.price-redesign .hqd-faq-more {
  display: flex;
  width: 289px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  padding: 0;
  border: 0;
  border-radius: 50px;
  background: #e2ecf9;
  color: #1d50a3;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.price-redesign .hqd-faq-more:hover,
.price-redesign .hqd-faq-more:focus-visible {
  color: #1d50a3;
}

@media (max-width: 47.9375rem) {
  .price-redesign .hqd-faq-list {
    gap: var(--grid-gutter-mobile);
  }

  .price-redesign .hqd-faq-item summary {
    min-height: 64px;
    padding: 14px 48px 14px 52px;
    font-size: 16px;
    line-height: 24px;
  }

  .price-redesign .hqd-faq-item[open] summary {
    min-height: 58px;
  }

  .price-redesign .hqd-faq-item summary::before {
    left: 16px;
    width: 24px;
    height: 24px;
    background-size: 13px 14px;
  }

  .price-redesign .hqd-faq-item summary::after {
    right: 18px;
    width: 15px;
    height: 10px;
  }

  .price-redesign .hqd-faq-answer {
    min-height: 0;
    margin: 0 16px 16px;
    padding: 12px 14px 12px 44px;
  }

  .price-redesign .hqd-faq-answer::before {
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    background-size: 13px 13px;
  }

  .price-redesign .hqd-faq-answer p {
    font-size: 15px;
    line-height: 24px;
  }

  .price-redesign .hqd-faq-more {
    width: min(100%, 289px);
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .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;
  }

  .price-redesign .hqd-faq-more {
    height: 38px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .price-redesign .hqd-faq-answer {
    padding-left: 40px;
  }
}

.price-plan--pro .price-plan__features li,
.price-plan--enterprise .price-plan__features li {
  font-size: 16px;
}

/* source: styles/pages/case-yellow-river.css */
.case-yellow-river-page {
  background: #ffffff;
}

.case-yellow-river,
.case-yellow-river * {
  letter-spacing: 0;
}

.case-yellow-river {
  color: #111827;
  background: #ffffff;
  overflow-x: clip;
}

html.is-desktop .case-yellow-river__hero {
  margin-top: var(--header-height-desktop);
}

.case-yellow-river p {
  color: #393e4f;
}

.case-yellow-river img {
  max-width: 100%;
}

.case-yellow-river h1,
.case-yellow-river h2,
.case-yellow-river h3,
.case-yellow-river p,
.case-yellow-river li,
.case-yellow-river dd {
  overflow-wrap: break-word;
}

.case-yellow-river__hero {
  position: relative;
  min-height: 560px;
  background: #edf5ff url("/assets/images/case/hhslwyh/hero-bg.png") center / cover no-repeat;
}

.case-yellow-river__hero-inner {
  display: flex;
  min-height: 560px;
  align-items: center;
}

.case-yellow-river__hero-copy {
  position: relative;
  z-index: 1;
  width: min(750px, 52%);
  padding-bottom: 4px;
}

.case-yellow-river__hero h1 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
}

.case-yellow-river__hero-copy > p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #313647;
  font-size: 24px;
  line-height: 1.7;
}

.case-yellow-river__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.case-yellow-river__hero-tags span {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  padding: 6px 18px;
  border: 1px solid #b9d3ff;
  border-radius: 6px;
  color: #0b66ff;
  background: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 500;
}

.case-yellow-river__hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.case-yellow-river__button {
  flex: 0 0 auto;
}

.case-yellow-river__section {
  padding: 74px 0 82px;
}

.case-yellow-river__heading {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.case-yellow-river__heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: #000000;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 46px;
  position: relative;
  z-index: 0;
}

.case-yellow-river__heading h2::before {
  content: "";
  width: 46px;
  height: 36px;
  flex: 0 0 46px;
  background: url("/assets/images/home/icon-core-diamond.png") center / contain no-repeat;
}

.case-yellow-river__heading h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: 0;
  width: calc(100% - 50px);
  height: 26px;
  background: url("/assets/images/home/core-title-pill-image.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

.case-yellow-river__heading p {
  margin: 12px 0 0;
  color: #393e4f;
  font-size: 20px;
  line-height: 1.6;
}

.case-yellow-river__pain {
  background: #ffffff;
}

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

.case-yellow-river__pain-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  height: 512px;
  overflow: hidden;
  padding: 43px 36px;
  border: 1px solid rgba(203, 219, 242, 0.8);
  border-radius: 6px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 8px 22px rgba(28, 69, 135, 0.08);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.case-yellow-river__pain-card::before,
.case-yellow-river__capability-card::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(30, 151, 246, 0.9) 0%,
    rgba(24, 105, 233, 0.88) 58%,
    rgba(64, 193, 240, 0.84) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.case-yellow-river__pain-card--source {
  background-image: url("/assets/images/case/hhslwyh/pain-source.png");
}

.case-yellow-river__pain-card--search {
  background-image: url("/assets/images/case/hhslwyh/pain-search.png");
}

.case-yellow-river__pain-card--approval {
  background-image: url("/assets/images/case/hhslwyh/pain-approval.png");
}

.case-yellow-river__pain-card--accounting {
  background-image: url("/assets/images/case/hhslwyh/pain-accounting.png");
}

.case-yellow-river__pain-card > div {
  position: relative;
  z-index: 1;
  max-width: 290px;
}

.case-yellow-river__pain-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.28s ease;
}

.case-yellow-river__pain-card p {
  margin: 17px 0 0;
  color: #343b4e;
  font-size: 16px;
  line-height: 1.75;
  transition: color 0.28s ease;
}

.case-yellow-river__capabilities {
  background: #fbfdff;
}

.case-yellow-river__capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-yellow-river__capability-card {
  position: relative;
  top: 0;
  isolation: isolate;
  display: grid;
  min-height: 224px;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 30px 32px;
  border: 1px solid #e1eaf8;
  border-radius: 6px;
  background: #f3f8ff;
  box-shadow: 0 5px 16px rgba(34, 82, 150, 0.05);
  transition:
    top 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.case-yellow-river__capability-card > * {
  position: relative;
  z-index: 1;
}

.case-yellow-river__capability-card:nth-child(2),
.case-yellow-river__capability-card:nth-child(5) {
  background: #f2f3ff;
}

.case-yellow-river__capability-card:nth-child(3),
.case-yellow-river__capability-card:nth-child(6) {
  background: #f0f9ff;
}

.case-yellow-river__capability-card img {
  width: 96px;
  height: 102px;
  object-fit: contain;
}

.case-yellow-river__capability-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.28s ease;
}

.case-yellow-river__capability-card p {
  margin: 12px 0 0;
  color: #393e4f;
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .case-yellow-river__pain-card:hover {
    transform: translateY(-6px);
    box-shadow: none;
  }

  .case-yellow-river__capability-card:hover {
    top: -6px;
    box-shadow: none;
  }
}

.case-yellow-river__solution {
  background: #f8fbff url("/assets/images/case/hhslwyh/solution-bg.png") center top / 1920px auto no-repeat;
}

.case-yellow-river__solution-overview {
  display: grid;
  min-height: 358px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  margin-bottom: 24px;
  padding: 46px 54px;
  border: 1px solid rgba(205, 220, 244, 0.72);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}

.case-yellow-river__solution-overview > div {
  max-width: 680px;
}

.case-yellow-river__solution-overview h3 {
  margin: 0 0 20px;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
}

.case-yellow-river__solution-overview p {
  margin: 0 0 12px;
  color: #313647;
  font-size: 17px;
  line-height: 1.78;
}

.case-yellow-river__solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-yellow-river__solution-card {
  display: grid;
  min-width: 0;
  min-height: 315px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid #dce6f6;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(43, 82, 144, 0.08);
}

.case-yellow-river__solution-copy {
  position: relative;
  z-index: 1;
  padding: 42px 12px 36px 38px;
}

.case-yellow-river__step {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #0b66ff;
  font-size: 22px;
  font-weight: 700;
}

.case-yellow-river__solution-card h3 {
  margin: 16px 0 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35;
}

.case-yellow-river__solution-card p {
  margin: 14px 0 0;
  color: #313647;
  font-size: 15px;
  line-height: 1.68;
}

.case-yellow-river__solution-card > img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
  object-position: center;
}

.case-yellow-river__solution-card > img[data-case-image-preview='true'] {
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

html.is-case-image-viewer-open {
  overflow: hidden;
}

.case-image-viewer {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(3, 12, 30, 0.84);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    opacity 0.22s ease,
    visibility 0s linear 0.22s;
}

.case-image-viewer.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.22s ease,
    visibility 0s linear 0s;
}

.case-image-viewer__dialog {
  position: relative;
  display: flex;
  width: min(92vw, 1600px);
  height: min(88vh, 900px);
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.22s ease;
}

.case-image-viewer.is-open .case-image-viewer__dialog {
  transform: scale(1);
}

.case-image-viewer__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.case-image-viewer__close {
  position: absolute;
  z-index: 2;
  top: 2px;
  right: 2px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(9, 30, 66, 0.72);
  color: #ffffff;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.case-image-viewer__close:hover,
.case-image-viewer__close:focus-visible {
  background: rgba(15, 105, 230, 0.94);
  transform: scale(1.06);
}

.case-image-viewer__hint {
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .case-image-viewer {
    padding: 16px;
  }

  .case-image-viewer__dialog {
    width: calc(100vw - 32px);
    height: calc(100vh - 80px);
  }

  .case-image-viewer__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .case-image-viewer__hint {
    bottom: -24px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-image-viewer,
  .case-image-viewer__dialog,
  .case-image-viewer__close {
    transition: none;
  }
}

.case-yellow-river__benefits {
  background: #ffffff;
}

.case-yellow-river__comparison {
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.case-yellow-river__comparison-panel {
  align-self: center;
  min-height: 320px;
  padding: 34px 38px;
  border: 1px solid #c8dcff;
  border-radius: 6px;
  background: #f6f9ff;
  box-shadow: 0 8px 20px rgba(40, 85, 156, 0.08);
}

.case-yellow-river__comparison-panel--after {
  border-color: #4a94ff;
  background: #eef7ff;
}

.case-yellow-river__comparison-panel h3 {
  margin: 0 0 24px;
  color: #246bff;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.case-yellow-river__comparison-panel li {
  position: relative;
  min-height: 47px;
  padding: 10px 12px 10px 42px;
  border-bottom: 1px solid #d8e5f7;
  color: #30384a;
  font-size: 16px;
  line-height: 1.55;
}

.case-yellow-river__comparison-panel li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 13px;
  height: 13px;
  border: 2px solid #74aaff;
  border-radius: 50%;
}

.case-yellow-river__comparison-panel--after li::before {
  border-color: #0b66ff;
  background: #0b66ff;
  box-shadow: inset 0 0 0 3px #eef7ff;
}

.case-yellow-river__comparison-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 799;
  align-self: center;
  object-fit: contain;
  object-position: center;
}

.case-yellow-river__outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.case-yellow-river__outcome-card {
  display: grid;
  min-height: 205px;
  grid-template-columns: 102px minmax(0, 1fr);
  align-items: center;
  padding: 26px 22px;
  border: 1px solid #e1e9f5;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(31, 73, 133, 0.07);
}

.case-yellow-river__outcome-card img {
  width: 92px;
  height: 104px;
  object-fit: contain;
}

.case-yellow-river__outcome-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
}

.case-yellow-river__outcome-card p {
  margin: 10px 0 0;
  color: #393e4f;
  font-size: 14px;
  line-height: 1.7;
}

.case-yellow-river__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0 0;
  border: 1px solid #dbe7f7;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(30, 75, 143, 0.08);
}

.case-yellow-river__metrics > div {
  position: relative;
  padding: 25px 26px;
  text-align: center;
}

.case-yellow-river__metrics > div + div::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 1px;
  background: #dce7f5;
}

.case-yellow-river__metrics dt {
  color: #0b66ff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.case-yellow-river__metrics dd {
  margin: 8px 0 0;
  color: #4a5264;
  font-size: 15px;
}

.case-yellow-river__value {
  min-height: 674px;
  background: #edf5ff url("/assets/images/case/hhslwyh/value-bg.png") center / cover no-repeat;
}

.case-yellow-river__value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 38px;
}

.case-yellow-river__value-card {
  position: relative;
  min-height: 314px;
  padding: 90px 32px 34px;
  border: 1px solid rgba(194, 215, 247, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(54, 96, 157, 0.08);
}

.case-yellow-river__value-card:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -50px;
  right: -52px;
  width: 92px;
  height: 62px;
  background: url("/assets/images/price-redesign/service-arrow.png") center / contain no-repeat;
  transform: rotate(-28deg) scale(1.5);
}

.case-yellow-river__value-card > span {
  position: absolute;
  top: 22px;
  left: 28px;
  color: #6ca5ff;
  font-size: 42px;
  font-weight: 700;
}

.case-yellow-river__value-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 27px;
  font-weight: 600;
}

.case-yellow-river__value-card p {
  margin: 18px 0 0;
  color: #343b4e;
  font-size: 16px;
  line-height: 1.75;
}

.case-yellow-river__contact {
  background: #f8fbff url("/assets/images/case/hhslwyh/contact-bg.png") center / cover no-repeat;
}

.case-yellow-river__contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: stretch;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #cfe0f8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 30px rgba(40, 86, 153, 0.08);
}

.case-yellow-river__contact-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #dbe7f7;
}

.case-yellow-river__contact-services article {
  display: grid;
  min-height: 199px;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.95);
}

.case-yellow-river__contact-services img {
  width: 108px;
  height: 116px;
  object-fit: contain;
}

.case-yellow-river__contact-services h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
}

.case-yellow-river__contact-services p {
  margin: 9px 0 0;
  color: #4a5264;
  font-size: 14px;
  line-height: 1.65;
}

.case-yellow-river__qr {
  display: grid;
  grid-template-columns: minmax(245px, 1fr) minmax(150px, 0.58fr);
  align-items: center;
  padding: 24px 20px 24px 8px;
  background: rgba(237, 246, 255, 0.86);
}

.case-yellow-river__qr-stage {
  position: relative;
  width: 100%;
  max-width: 330px;
  aspect-ratio: 361 / 326;
  margin: 0 auto;
}

.case-yellow-river__qr-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-yellow-river__qr-code {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 48%;
  height: 53%;
  object-fit: cover;
  transform: translateX(-50%);
}

.case-yellow-river__qr-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-yellow-river__qr-copy strong {
  color: #0b66ff;
  font-size: 28px;
  font-weight: 700;
}

.case-yellow-river__qr-copy > span {
  margin-top: 5px;
  color: #313647;
  font-size: 16px;
}

.case-yellow-river__qr-copy ul {
  margin-top: 18px;
}

.case-yellow-river__qr-copy li {
  position: relative;
  margin-top: 8px;
  padding-left: 16px;
  color: #4a5264;
  font-size: 14px;
}

.case-yellow-river__qr-copy li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b66ff;
}

.case-yellow-river__products {
  background: #ffffff;
}

.case-yellow-river__product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.case-yellow-river__product-card {
  display: flex;
  min-width: 0;
  min-height: 455px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe8f5;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(35, 78, 140, 0.07);
}

.case-yellow-river__product-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-yellow-river__product-card > div {
  padding: 24px 30px 10px;
}

.case-yellow-river__product-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.case-yellow-river__product-card p {
  margin: 12px 0 0;
  color: #4a5264;
  font-size: 15px;
  line-height: 1.7;
}

.case-yellow-river__product-card > a {
  display: inline-flex;
  width: 110px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: auto 30px 24px;
  border-radius: 4px;
  color: #ffffff;
  background: #0b66ff;
  font-size: 14px;
  text-decoration: none;
}

.case-yellow-river__more {
  background: #f4f9ff url("/assets/images/case/hhslwyh/case-more-bg.png") center / cover no-repeat;
}

.case-yellow-river__more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.case-yellow-river__more-card {
  overflow: hidden;
  border: 1px solid #dce6f3;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(37, 80, 141, 0.08);
}

.case-yellow-river__more-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 450 / 260;
  object-fit: cover;
}

.case-yellow-river__more-card > div {
  padding: 24px 28px 30px;
}

.case-yellow-river__more-card h3 {
  margin: 0;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
}

.case-yellow-river__more-card h3[data-open-trial-popup='true'] {
  cursor: pointer;
  transition: color 0.2s ease;
}

.case-yellow-river__more-card h3[data-open-trial-popup='true']:hover {
  color: #0b66ff;
}

.case-yellow-river__more-card h3[data-open-trial-popup='true']:focus-visible {
  border-radius: 4px;
  color: #0b66ff;
  outline: 2px solid #0b66ff;
  outline-offset: 4px;
}

.case-yellow-river__more-card p {
  margin: 13px 0 0;
  color: #4a5264;
  font-size: 15px;
  line-height: 1.75;
}

@media (min-width: 1281px) {
  .case-yellow-river__heading h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 46px;
  }

  .case-yellow-river__pain {
    padding-top: 48px;
    padding-bottom: 57px;
    background: linear-gradient(114deg, #ffffff 3%, #eff5fd 100%);
  }

  .case-yellow-river__pain .case-yellow-river__heading {
    margin-bottom: 34px;
  }

  .case-yellow-river__pain-grid {
    display: flex;
    width: 1524px;
    gap: 0;
    margin-top: -8px;
    margin-left: 4px;
    padding-top: 8px;
    overflow: hidden;
  }

  .case-yellow-river__pain-card {
    width: 359px;
    height: 472px;
    flex: 0 0 359px;
    padding: 28px 0 0 45px;
    border: 3px solid #ffffff;
    border-radius: 12px;
    background-origin: border-box;
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__pain-card--source {
    background-position: 0 0;
    background-size: 100% 104.0389%;
  }

  .case-yellow-river__pain-card:nth-child(2) {
    margin-left: 26px;
    padding: 28px 0 0 43px;
  }

  .case-yellow-river__pain-card:nth-child(3) {
    margin-left: 29px;
    padding: 28px 0 0 42px;
  }

  .case-yellow-river__pain-card:nth-child(4) {
    margin-left: 28px;
    padding: 28px 0 0 39px;
  }

  .case-yellow-river__pain-card > div {
    width: 275px;
    max-width: none;
  }

  .case-yellow-river__pain-card h3 {
    margin-left: 9px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
  }

  .case-yellow-river__pain-card p {
    width: 275px;
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }

  .case-yellow-river__pain-card:first-child p {
    margin-top: 8px;
  }

  .case-yellow-river__capabilities {
    padding-top: 48px;
    padding-bottom: 57px;
    margin-top: -1px;
  }

  .case-yellow-river__capabilities .case-yellow-river__heading {
    margin-bottom: 31px;
  }

  .case-yellow-river__capability-grid {
    width: 1524px;
    grid-template-columns: repeat(3, 482.729675px);
    column-gap: 37.270325px;
    row-gap: 27px;
    margin-left: 0;
  }

  .case-yellow-river__capability-card {
    position: relative;
    display: block;
    width: 482.729675px;
    height: 296px;
    min-height: 296px;
    padding: 0;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f5fa 0%, #dfeeff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__capability-card:nth-child(2) {
    background: linear-gradient(135deg, #e5e9ff 33%, #eceeff 100%);
  }

  .case-yellow-river__capability-card:nth-child(1),
  .case-yellow-river__capability-card:nth-child(4) {
    transform: translateX(2px);
  }

  .case-yellow-river__capability-card:nth-child(3) {
    transform: translate(1px, 1px);
    background: linear-gradient(180deg, #e5edfa 36%, #f0f4f9 100%);
  }

  .case-yellow-river__capability-card:nth-child(4) {
    background: linear-gradient(180deg, #cbe3fc 0%, #f0f4f9 100%);
  }

  .case-yellow-river__capability-card:nth-child(5) {
    background: linear-gradient(180deg, #b9e5fa 0%, #eff5fd 100%);
  }

  .case-yellow-river__capability-card:nth-child(6) {
    transform: translate(1px, 1px);
    background: linear-gradient(180deg, #c6d0fe 0%, #eff5fd 100%);
  }

  .case-yellow-river__capability-card img {
    position: absolute;
    top: 2px;
    left: 113px;
    width: 249px;
    height: 176px;
    object-fit: cover;
    object-position: center bottom;
    transform: none;
  }

  .case-yellow-river__capability-card:nth-child(2) img {
    top: 7px;
    left: 99px;
    width: 272px;
    height: 170px;
  }

  .case-yellow-river__capability-card:nth-child(3) img {
    top: 6px;
    left: 96px;
    width: 290px;
    height: 168px;
  }

  .case-yellow-river__capability-card:nth-child(4) img {
    top: 15px;
    left: 84px;
    width: 302px;
    height: 157px;
  }

  .case-yellow-river__capability-card:nth-child(5) img {
    top: 1px;
    left: 106px;
    width: 254px;
    height: 180px;
  }

  .case-yellow-river__capability-card:nth-child(6) img {
    top: 2px;
    left: 85px;
    width: 311px;
    height: 191px;
  }

  .case-yellow-river__capability-card > div {
    position: absolute;
    top: 138px;
    left: 50%;
    width: 402px;
    transform: translateX(-50%);
  }

  .case-yellow-river__capability-card:nth-child(1) > div,
  .case-yellow-river__capability-card:nth-child(4) > div {
    width: 399px;
  }

  .case-yellow-river__capability-card h3 {
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
  }

  .case-yellow-river__capability-card p {
    margin: 6px 0 0;
    color: #393e4f;
    font-size: 18px;
    line-height: 26px;
  }

  .case-yellow-river__solution {
    padding-top: 48px;
    padding-bottom: 45px;
    background-position: calc(50% + 1.6px) 170px;
    background-size: 100%;
  }

  .case-yellow-river__solution .case-yellow-river__heading {
    margin-bottom: 114px;
  }

  .case-yellow-river__solution-overview {
    display: block;
    height: 250px;
    min-height: 0;
    margin-bottom: 37px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .case-yellow-river__solution-overview > div {
    max-width: none;
  }

  .case-yellow-river__solution-overview h3 {
    position: relative;
    margin: 0 0 17px 128px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
  }

  .case-yellow-river__solution-overview h3::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -78px;
    width: 68px;
    height: 68px;
    background: url("/assets/images/case/hhslwyh/solution-overview-icon.png") center / cover no-repeat;
  }

  .case-yellow-river__solution-overview p {
    width: 655px;
    margin: 0 0 1px 55px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 18px;
    line-height: 32px;
  }

  .case-yellow-river__solution-overview p:last-child {
    margin-bottom: 0;
  }

  .case-yellow-river__solution-grid {
    width: 1512px;
    max-width: none;
    grid-template-columns: repeat(2, 736px);
    column-gap: 40px;
    row-gap: 24px;
    margin: 0 0 0 7px;
  }

  .case-yellow-river__solution-card {
    position: relative;
    display: block;
    width: 736px;
    height: 322px;
    min-height: 322px;
    overflow: visible;
    border: 3px solid #ffffff;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__solution-card:nth-child(2) {
    border-color: rgba(255, 255, 255, 0.5);
  }

  .case-yellow-river__solution-card:nth-child(3),
  .case-yellow-river__solution-card:nth-child(4) {
    transform: translateY(3px);
  }

  .case-yellow-river__solution-card:nth-child(5) {
    transform: translateX(-3px);
  }

  .case-yellow-river__solution-copy {
    position: static;
    padding: 0;
  }

  .case-yellow-river__step {
    position: absolute;
    top: 36px;
    left: 27px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 20px;
  }

  .case-yellow-river__solution-card h3 {
    position: absolute;
    top: 46px;
    left: 90px;
    width: 294px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    white-space: nowrap;
  }

  .case-yellow-river__solution-card p {
    position: absolute;
    top: 114px;
    left: 31px;
    width: 294px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
    line-height: 24px;
  }

  .case-yellow-river__solution-card:nth-child(2) p,
  .case-yellow-river__solution-card:nth-child(3) p {
    left: 34px;
  }

  .case-yellow-river__solution-card:nth-child(4) p,
  .case-yellow-river__solution-card:nth-child(6) p {
    left: 32px;
  }

  .case-yellow-river__solution-card:nth-child(5) p {
    left: 33px;
  }

  .case-yellow-river__solution-card > img {
    position: absolute;
    top: 88px;
    left: 350px;
    width: 348px;
    height: 194px;
    min-height: 0;
    box-sizing: content-box;
    border: 4px solid #d8dbe9;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.06));
  }

  .case-yellow-river__solution-card:nth-child(1) > img,
  .case-yellow-river__solution-card:nth-child(2) > img {
    object-position: left center;
  }

  .case-yellow-river__solution-card:nth-child(2) > img,
  .case-yellow-river__solution-card:nth-child(4) > img {
    left: 354px;
  }

  .case-yellow-river__solution-card:nth-child(3) > img {
    left: 349px;
  }

  .case-yellow-river__solution-card:nth-child(5) > img,
  .case-yellow-river__solution-card:nth-child(6) > img {
    left: 352px;
  }

  .case-yellow-river__benefits {
    padding-top: 48px;
    padding-bottom: 49px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f1f7ff 100%);
  }

  .case-yellow-river__benefits .case-yellow-river__heading {
    margin-bottom: 32px;
  }

  .case-yellow-river__comparison {
    position: relative;
    display: block;
    height: 487px;
    min-height: 487px;
  }

  .case-yellow-river__comparison-panel {
    position: absolute;
    top: 0;
    left: 2px;
    width: 506px;
    height: 482px;
    min-height: 482px;
    padding: 0;
    border: 1px solid #dbe8fc;
    border-radius: 12px;
    background-origin: border-box;
    background: linear-gradient(180deg, #fffffe 0%, #eff4fd 100%);
    box-shadow: none;
  }

  .case-yellow-river__comparison-panel--after {
    right: 1px;
    left: auto;
    border-color: #dbe8fc;
    background-color: #ffffff;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
      url("/assets/images/case/hhslwyh/benefit-after-bg.png");
    background-position: center, -54px 0;
    background-size: 100% 100%, 647px 494px;
    background-repeat: no-repeat;
  }

  .case-yellow-river__comparison-panel h3 {
    position: absolute;
    top: 24px;
    left: 50%;
    width: 318px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    transform: translateX(-50%);
  }

  .case-yellow-river__comparison-panel:first-child h3 {
    left: 89px;
    transform: none;
  }

  .case-yellow-river__comparison-panel--after h3 {
    left: 93px;
    transform: none;
  }

  .case-yellow-river__comparison-panel h3::before,
  .case-yellow-river__comparison-panel h3::after {
    content: "";
    position: absolute;
    top: 14px;
    width: 102px;
    height: 4px;
    border-radius: 8px;
  }

  .case-yellow-river__comparison-panel h3::before {
    left: 0;
    background: linear-gradient(90deg, #f2f6fd 0%, #0150fb 100%);
  }

  .case-yellow-river__comparison-panel h3::after {
    right: 0;
    background: linear-gradient(90deg, #0150fb 0%, #f2f6fd 100%);
  }

  .case-yellow-river__comparison-panel--after h3 {
    color: #ffffff;
  }

  .case-yellow-river__comparison-panel--after h3::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, #ffffff 100%);
  }

  .case-yellow-river__comparison-panel--after h3::after {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.08) 100%);
  }

  .case-yellow-river__comparison-panel ul {
    position: absolute;
    top: 68px;
    left: 33px;
    display: grid;
    width: 439px;
    height: 388px;
    grid-template-rows: repeat(6, 52px);
    gap: 9px;
    padding: 10px 15px 15px 13px;
    border: 3px solid #ffffff;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__comparison-panel li {
    width: 405px;
    height: 52px;
    min-height: 52px;
    padding: 14px 12px 14px 58px;
    border: 1px solid #dbe8fc;
    border-radius: 12px;
    color: rgba(0, 0, 0, 0.85);
    background: linear-gradient(180deg, #fcfefe 0%, #f4f7fc 100%);
    font-size: 20px;
    line-height: 24px;
    list-style: none;
    white-space: nowrap;
  }

  .case-yellow-river__comparison-panel li::marker {
    content: "";
  }

  .case-yellow-river__comparison-panel li::before {
    top: 14px;
    left: 20px;
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: none;
  }

  .case-yellow-river__comparison-panel li:nth-child(1)::before {
    top: 15px;
    left: 17px;
    background-image:
      url("/assets/images/case/hhslwyh/benefit-before-grid.svg"),
      url("/assets/images/case/hhslwyh/benefit-before-grid-cell.svg");
    background-position: 0 0, 14px 14px;
    background-size: 25px 25px, 11px 11px;
  }

  .case-yellow-river__comparison-panel li:nth-child(2)::before {
    top: 15px;
    left: 16px;
    width: 26px;
    height: 26px;
    background-image: url("/assets/images/case/hhslwyh/benefit-before-document-search.svg");
  }

  .case-yellow-river__comparison-panel li:nth-child(3)::before {
    left: 17px;
    width: 26px;
    height: 26px;
    background-image: url("/assets/images/case/hhslwyh/benefit-before-file-list.svg");
  }

  .case-yellow-river__comparison-panel li:nth-child(4)::before {
    top: 17px;
    left: 17px;
    width: 27px;
    height: 22px;
    background-image: url("/assets/images/case/hhslwyh/benefit-before-answer-path.svg");
  }

  .case-yellow-river__comparison-panel:not(.case-yellow-river__comparison-panel--after) li:nth-child(5)::before {
    top: 11px;
    left: 18px;
    width: 27px;
    height: 27px;
    background-image: url("/assets/images/case/hhslwyh/benefit-before-experience.svg");
  }

  .case-yellow-river__comparison-panel:not(.case-yellow-river__comparison-panel--after) li:nth-child(6)::before {
    top: 13px;
    left: 19px;
    width: 27px;
    height: 27px;
    background-image: url("/assets/images/case/hhslwyh/benefit-before-onboarding.svg");
  }

  .case-yellow-river__comparison-panel--after li:nth-child(1)::before {
    top: 13px;
    left: 22px;
    width: 29px;
    height: 27px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-library-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li:nth-child(2)::before {
    top: 12px;
    left: 22px;
    width: 29px;
    height: 29px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-query-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li:nth-child(3)::before {
    top: 12px;
    left: 22px;
    width: 29px;
    height: 29px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-citations-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li:nth-child(4)::before {
    top: 12px;
    left: 22px;
    width: 28px;
    height: 28px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-consistency-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li:nth-child(5)::before {
    top: 12px;
    left: 23px;
    width: 27px;
    height: 29px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-experience-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li:nth-child(6)::before {
    top: 12px;
    left: 23px;
    width: 28px;
    height: 29px;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-apps-v2.svg");
    background-position: center;
    background-size: contain;
  }

  .case-yellow-river__comparison-panel--after li {
    padding-left: 71px;
  }

  .case-yellow-river__comparison-image {
    position: absolute;
    top: calc(50% + 30px);
    left: 503px;
    width: 520px;
    height: auto;
    aspect-ratio: 1024 / 799;
    object-fit: contain;
    object-position: center;
    transform: translateY(-50%);
  }

  .case-yellow-river__outcome-grid {
    width: 1524px;
    grid-template-columns: repeat(4, 364px);
    gap: 22.6667px;
    margin: 13px 0 0 1px;
  }

  .case-yellow-river__outcome-card {
    position: relative;
    display: block;
    width: 364px;
    height: 188px;
    min-height: 188px;
    padding: 0;
    border: 2px solid #e1ebfb;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__outcome-card img {
    position: absolute;
    top: 26px;
    left: 28px;
    width: 108px;
    height: 128px;
    object-fit: cover;
  }

  .case-yellow-river__outcome-card:nth-child(2) {
    transform: translateX(-0.6667px);
  }

  .case-yellow-river__outcome-card:nth-child(2) img {
    top: 12px;
    left: 23px;
    width: 114px;
    height: 141px;
  }

  .case-yellow-river__outcome-card:nth-child(3) {
    transform: translateX(-2.3334px);
  }

  .case-yellow-river__outcome-card:nth-child(3) img {
    top: 15px;
    left: 17px;
    width: 124px;
    height: 152px;
  }

  .case-yellow-river__outcome-card:nth-child(4) {
    transform: translateX(-2px);
  }

  .case-yellow-river__outcome-card:nth-child(4) img {
    top: 17px;
    left: 23px;
    width: 114px;
    height: 146px;
  }

  .case-yellow-river__outcome-card h3 {
    position: absolute;
    top: 26px;
    left: 152px;
    width: 136px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    white-space: nowrap;
  }

  .case-yellow-river__outcome-card p {
    position: absolute;
    top: 69px;
    left: 153px;
    width: 184px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
    line-height: 24px;
  }

  .case-yellow-river__outcome-card:nth-child(2) h3 {
    left: 147px;
  }

  .case-yellow-river__outcome-card:nth-child(2) p {
    left: 148px;
    width: 186px;
  }

  .case-yellow-river__outcome-card:nth-child(3) h3 {
    left: 148px;
  }

  .case-yellow-river__outcome-card:nth-child(3) p {
    left: 147px;
  }

  .case-yellow-river__outcome-card:nth-child(4) h3 {
    left: 154px;
  }

  .case-yellow-river__outcome-card:nth-child(4) p {
    left: 155px;
  }

  .case-yellow-river__metrics {
    width: 1523px;
    height: 188px;
    margin: 22px 0 0 1px;
    border: 2px solid #e1ebfb;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__metrics > div {
    height: 184px;
    padding: 0;
    text-align: left;
  }

  .case-yellow-river__metrics > div::after {
    content: "";
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .case-yellow-river__metrics > div:nth-child(1)::after {
    top: 28px;
    left: 49px;
    width: 133px;
    height: 139px;
    background-image: url("/assets/images/case/hhslwyh/benefit-metric-scale.png");
  }

  .case-yellow-river__metrics > div:nth-child(2)::after {
    top: 39px;
    left: 48px;
    width: 114px;
    height: 127px;
    background-image: url("/assets/images/case/hhslwyh/benefit-metric-assets.png");
  }

  .case-yellow-river__metrics > div:nth-child(3)::after {
    top: 36px;
    left: 54px;
    width: 124px;
    height: 133px;
    background-image: url("/assets/images/case/hhslwyh/benefit-metric-services.png");
  }

  .case-yellow-river__metrics > div:nth-child(4)::after {
    top: 39px;
    left: 56px;
    width: 125px;
    height: 133px;
    background-image: url("/assets/images/case/hhslwyh/benefit-metric-results.png");
  }

  .case-yellow-river__metrics > div + div::before {
    top: 43px;
    bottom: auto;
    height: 106px;
    background: #dce7f5;
  }

  .case-yellow-river__metrics dt {
    position: absolute;
    top: 55px;
    left: 187px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 24px;
    font-weight: 500;
    line-height: 37px;
    white-space: nowrap;
  }

  .case-yellow-river__metrics dt span {
    color: #0f69e6;
    font-size: 36px;
    font-weight: 500;
  }

  .case-yellow-river__metrics dd {
    position: absolute;
    top: 100px;
    left: 189px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 20px;
    line-height: 24px;
    white-space: nowrap;
  }

  .case-yellow-river__metrics > div:nth-child(2) dt {
    left: 174px;
  }

  .case-yellow-river__metrics > div:nth-child(2) dd {
    left: 176px;
  }

  .case-yellow-river__metrics > div:nth-child(3) dt {
    left: 185px;
  }

  .case-yellow-river__metrics > div:nth-child(3) dd {
    left: 187px;
  }

  .case-yellow-river__metrics > div:nth-child(4) dt {
    left: 187px;
  }

  .case-yellow-river__value {
    min-height: 675px;
    padding: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
      url("/assets/images/case/hhslwyh/value-bg.png");
    background-position: center, left -153px;
    background-size: 100% 100%, 1930px 827px;
    background-repeat: no-repeat;
  }

  .case-yellow-river__value > .site-container {
    position: relative;
    height: 675px;
  }

  .case-yellow-river__value .case-yellow-river__heading {
    position: absolute;
    top: 56px;
    left: 50%;
    width: 647px;
    max-width: none;
    margin: 0;
    opacity: 0.8;
    transform: translateX(-50%);
  }

  .case-yellow-river__value-grid {
    position: absolute;
    top: 142px;
    left: 5px;
    display: block;
    width: 1524px;
    height: 478px;
    margin: 0;
    padding: 0;
  }

  .case-yellow-river__value-card {
    position: absolute;
    width: 350px;
    height: 266px;
    min-height: 266px;
    padding: 0;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 254, 0.8) 0%, rgba(239, 244, 253, 0.8) 100%);
    box-shadow: 0 4px 20px rgba(212, 227, 252, 0.8);
  }

  .case-yellow-river__value-card:nth-child(1) {
    top: 212px;
    left: 0;
  }

  .case-yellow-river__value-card:nth-child(2) {
    top: 180px;
    left: 390px;
  }

  .case-yellow-river__value-card:nth-child(3) {
    top: 143px;
    left: 780px;
  }

  .case-yellow-river__value-card:nth-child(4) {
    top: 101px;
    left: 1170px;
  }

  .case-yellow-river__value-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    background-repeat: no-repeat;
  }

  .case-yellow-river__value-card:nth-child(1)::before {
    top: -123px;
    left: 103px;
    width: 141px;
    height: 176px;
    background-image: url("/assets/images/case/hhslwyh/value-stage-01.png");
    background-position: center;
    background-size: cover;
  }

  .case-yellow-river__value-card:nth-child(2)::before {
    top: -135px;
    left: 94px;
    width: 160px;
    height: 203px;
    background-image: url("/assets/images/case/hhslwyh/value-stage-02.png");
    background-position: center;
    background-size: cover;
  }

  .case-yellow-river__value-card:nth-child(3)::before {
    top: -118px;
    left: 108px;
    width: 147px;
    height: 192px;
    background-image: url("/assets/images/case/hhslwyh/value-stage-03.png");
    background-position: -67.64px -51.2px;
    background-size: 146.0144% 126.6666%;
  }

  .case-yellow-river__value-card:nth-child(4)::before {
    top: -135px;
    left: 87px;
    width: 171px;
    height: 190px;
    background-image: url("/assets/images/case/hhslwyh/value-stage-04.png");
    background-position: center;
    background-size: cover;
  }

  .case-yellow-river__value-card:not(:last-child)::after {
    top: -141px;
    right: auto;
    left: 276px;
    width: 172px;
    height: 130px;
    background-image: url("/assets/images/case/hhslwyh/value-flow-arrow.png");
    transform: scaleY(-1);
  }

  .case-yellow-river__value-card:nth-child(2)::after {
    top: -144px;
    left: 278px;
    width: 173px;
  }

  .case-yellow-river__value-card:nth-child(3)::after {
    top: -137px;
    left: 269px;
  }

  .case-yellow-river__value-card > span {
    top: 42px;
    left: 38px;
    color: rgba(141, 185, 253, 0.8);
    font-size: 42px;
    font-weight: 700;
    line-height: 32px;
  }

  .case-yellow-river__value-card h3 {
    position: absolute;
    top: 91px;
    left: 38px;
    width: 274px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    white-space: nowrap;
  }

  .case-yellow-river__value-card p {
    position: absolute;
    top: 139px;
    left: 38px;
    width: 274px;
    margin: 0;
    color: rgba(0, 0, 0, 0.68);
    font-size: 16px;
    line-height: 24px;
  }

  .case-yellow-river__contact {
    min-height: 633px;
    padding: 0;
    background-position: center;
    background-size: 1945px auto;
  }

  .case-yellow-river__contact > .site-container {
    position: relative;
    height: 633px;
  }

  .case-yellow-river__contact .case-yellow-river__heading {
    position: absolute;
    top: 48px;
    left: 50%;
    width: 851px;
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
  }

  .case-yellow-river__contact-panel {
    position: absolute;
    top: 170px;
    left: 8px;
    display: block;
    width: 1524px;
    height: 402px;
    min-height: 402px;
    overflow: hidden;
    border: 2px solid rgba(176, 201, 253, 0.32);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(176, 201, 253, 0.24);
  }

  .case-yellow-river__contact-panel::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100px;
    left: 817px;
    width: 55px;
    height: 161px;
    background: url("/assets/images/case/hhslwyh/contact-connector.png") center / cover no-repeat;
  }

  .case-yellow-river__contact-services {
    position: absolute;
    z-index: 2;
    top: 49px;
    left: 25px;
    display: block;
    width: 771px;
    height: 303px;
    background: transparent;
  }

  .case-yellow-river__contact-services article {
    position: absolute;
    display: block;
    width: 376px;
    height: 145px;
    min-height: 145px;
    padding: 0;
    border: 1px solid rgba(176, 201, 253, 0.3);
    border-radius: 12px;
    background: #fbfcfd;
    box-shadow: 0 4px 25px #e3ecfd;
  }

  .case-yellow-river__contact-services article:nth-child(1) {
    top: 0;
    left: 0;
  }

  .case-yellow-river__contact-services article:nth-child(2) {
    top: 0;
    left: 395px;
  }

  .case-yellow-river__contact-services article:nth-child(3) {
    top: 158px;
    left: 0;
    width: 384px;
  }

  .case-yellow-river__contact-services article:nth-child(4) {
    top: 158px;
    left: 395px;
  }

  .case-yellow-river__contact-services article > div {
    position: static;
  }

  .case-yellow-river__contact-services img {
    position: absolute;
    object-fit: cover;
  }

  .case-yellow-river__contact-services article:nth-child(1) img {
    top: 19px;
    left: 25px;
    width: 112px;
    height: 126px;
    object-position: center 33%;
  }

  .case-yellow-river__contact-services article:nth-child(2) img {
    top: 18px;
    left: 27px;
    width: 102px;
    height: 120px;
    object-position: center 61%;
  }

  .case-yellow-river__contact-services article:nth-child(3) img {
    top: 19px;
    left: 24px;
    width: 115px;
    height: 116px;
    object-position: center 47%;
  }

  .case-yellow-river__contact-services article:nth-child(4) img {
    top: 19px;
    left: 21px;
    width: 114px;
    height: 114px;
    object-position: center 61%;
  }

  .case-yellow-river__contact-services h3 {
    position: absolute;
    top: 19px;
    left: 159px;
    margin: 0;
    color: rgba(0, 0, 0, 0.85);
    font-size: 26px;
    font-weight: 500;
    line-height: 48px;
    white-space: nowrap;
  }

  .case-yellow-river__contact-services article:nth-child(2) h3,
  .case-yellow-river__contact-services article:nth-child(2) p {
    left: 147px;
  }

  .case-yellow-river__contact-services article:nth-child(3) h3,
  .case-yellow-river__contact-services article:nth-child(3) p {
    left: 159px;
  }

  .case-yellow-river__contact-services article:nth-child(4) h3,
  .case-yellow-river__contact-services article:nth-child(4) p {
    left: 146px;
  }

  .case-yellow-river__contact-services p {
    position: absolute;
    top: 65px;
    left: 159px;
    width: 190px;
    margin: 0;
    color: #313647;
    font-size: 15px;
    line-height: 26px;
  }

  .case-yellow-river__contact-services article:nth-child(2) p {
    width: 194px;
  }

  .case-yellow-river__contact-services article:nth-child(3) p {
    width: 217px;
  }

  .case-yellow-river__contact-services article:nth-child(4) p {
    width: 193px;
  }

  .case-yellow-river__products {
    padding-top: 48px;
    padding-bottom: 61px;
    margin-top: -5px;
  }

  .case-yellow-river__products .case-yellow-river__heading {
    margin-bottom: 32px;
  }

  .case-yellow-river__product-grid {
    width: 1524px;
    grid-template-columns: repeat(4, 357.674px);
    gap: 29.43px;
    justify-content: center;
    margin: 0 auto;
  }

  .case-yellow-river__product-card {
    position: relative;
    display: block;
    width: 357.674px;
    height: 453px;
    min-height: 453px;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #fbfcfd;
    box-shadow: 0 0 0 2px rgba(176, 201, 253, 0.3);
  }

  .case-yellow-river__product-card > img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    object-fit: fill;
  }

  .case-yellow-river__product-card:nth-child(1) > img {
    top: -50.35px;
    width: 100%;
    height: 275.56px;
  }

  .case-yellow-river__product-card:nth-child(2) > img {
    top: -43.47px;
    left: -16.72px;
    width: 393.95px;
    height: 253.53px;
  }

  .case-yellow-river__product-card:nth-child(3) > img {
    top: -40.4px;
    width: 100%;
    height: 264.06px;
  }

  .case-yellow-river__product-card:nth-child(4) > img {
    top: -65.46px;
    width: 100%;
    height: 340.96px;
  }

  .case-yellow-river__product-card > div {
    position: absolute;
    top: 230.5px;
    left: 38.14px;
    width: 295.83px;
    padding: 0;
  }

  .case-yellow-river__product-card h3 {
    margin: 0;
    color: #333333;
    font-size: 26px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
  }

  .case-yellow-river__product-card p {
    width: 295.83px;
    margin: 7px 0 0;
    color: #333333;
    font-size: 16px;
    line-height: 30px;
  }

  .case-yellow-river__product-card > a {
    position: absolute;
    top: 379.65px;
    left: 38.14px;
    display: inline-flex;
    width: 121.63px;
    height: 32.95px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0 0 0 18.8px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(93deg, #0b66ff 0%, #00bbff 100%);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
  }

  .case-yellow-river__product-card > a::after {
    content: "";
    width: 16.2px;
    height: 12.8px;
    flex: 0 0 16.2px;
    background: #ffffff;
    -webkit-mask: url("/assets/images/case/hhslwyh/tag-arrow.svg") center / contain no-repeat;
    mask: url("/assets/images/case/hhslwyh/tag-arrow.svg") center / contain no-repeat;
  }

  .case-yellow-river__more {
    min-height: 794px;
    padding: 0;
    background-color: #f4f9ff;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
      url("/assets/images/case/hhslwyh/case-more-bg.png");
    background-position: center, center;
    background-size: 100% 100%, cover;
  }

  .case-yellow-river__more > .site-container {
    position: relative;
    height: 794px;
  }

  .case-yellow-river__more .case-yellow-river__heading {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 851px;
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
  }

  .case-yellow-river__more-grid {
    position: absolute;
    top: 175px;
    left: 4px;
    width: 1518px;
    grid-template-columns: repeat(3, 490px);
    gap: 24px;
    margin: 0;
  }

  .case-yellow-river__more-card {
    position: relative;
    display: block;
    width: 490px;
    height: 534px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.078);
  }

  .case-yellow-river__more-card > img {
    position: absolute;
    top: 19px;
    left: 20px;
    width: 450px;
    height: 270px;
    aspect-ratio: auto;
    border-radius: 8px;
    object-fit: cover;
    object-position: left center;
  }

  .case-yellow-river__more-card:nth-child(2) > img {
    object-position: center center;
  }

  .case-yellow-river__more-card:nth-child(3) > img {
    left: 22px;
    object-position: center center;
  }

  .case-yellow-river__more-card > div {
    position: static;
    padding: 0;
  }

  .case-yellow-river__more-card > div::before {
    content: none;
  }

  .case-yellow-river__more-card > div::after {
    content: none;
  }

  .case-yellow-river__more-card h3 {
    position: absolute;
    top: auto;
    right: 28.5px;
    bottom: 177px;
    left: auto;
    margin: 0;
    color: #333333;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    white-space: nowrap;
  }

  .case-yellow-river__more-card:first-child h3 {
    letter-spacing: -1px;
  }

  .case-yellow-river__more-card:nth-child(2) h3 {
    right: 57px;
    bottom: 174px;
    font-weight: 400;
  }

  .case-yellow-river__more-card:nth-child(3) h3 {
    right: 84px;
    bottom: 177px;
    width: 371px;
    font-weight: 400;
  }

  .case-yellow-river__more-card p {
    position: absolute;
    left: 40px;
    bottom: 50px;
    width: 416px;
    margin: 0;
    color: #333333;
    font-size: 18px;
    line-height: 36px;
  }

  .case-yellow-river__more-card:first-child p {
    left: 30px;
    bottom: 51px;
  }

  .case-yellow-river__more-card:nth-child(3) p {
    bottom: 55px;
  }

  .case-yellow-river__qr {
    position: absolute;
    z-index: 2;
    top: 29px;
    left: 886px;
    display: block;
    width: 660px;
    height: 389px;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .case-yellow-river__qr::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -20px;
    left: -25px;
    width: 100%;
    height: 389px;
    background: url("/assets/images/case/hhslwyh/contact-qr-panel.png") center / 100% 100% no-repeat;
  }

  .case-yellow-river__qr::after {
    content: "";
    position: absolute;
    top: 71px;
    left: 337px;
    width: 10px;
    height: 133px;
    background: url("/assets/images/case/hhslwyh/contact-divider.png") center / cover no-repeat;
  }

  .case-yellow-river__qr-stage {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 3px;
    width: 361px;
    max-width: none;
    height: 326px;
    margin: 0;
    aspect-ratio: auto;
  }

  .case-yellow-river__qr-frame {
    position: absolute;
    inset: 0;
    width: 361px;
    height: 326px;
    object-fit: cover;
  }

  .case-yellow-river__qr-code {
    position: absolute;
    top: 36px;
    left: 83px;
    width: 171px;
    height: 168px;
    box-sizing: content-box;
    border: 10px solid #ffffff;
    border-radius: 14px;
    object-fit: cover;
    transform: none;
  }

  .case-yellow-river__qr-copy {
    position: absolute;
    z-index: 1;
    top: 41px;
    left: 374px;
    display: block;
    width: 391px;
    height: 217px;
  }

  .case-yellow-river__qr-copy strong {
    position: absolute;
    top: 0;
    left: 0;
    color: #0f69e6;
    font-size: 34px;
    font-weight: 700;
    line-height: 48px;
    white-space: nowrap;
  }

  .case-yellow-river__qr-copy > span {
    position: absolute;
    top: 44px;
    left: 0;
    margin: 0;
    color: #616264;
    font-size: 20px;
    font-weight: 600;
    line-height: 48px;
    white-space: nowrap;
  }

  .case-yellow-river__qr-copy ul {
    position: absolute;
    top: 107px;
    left: 0;
    width: 361px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .case-yellow-river__qr-copy li {
    position: relative;
    height: 36px;
    margin: 0;
    padding: 0 0 0 30px;
    color: #616264;
    font-size: 18px;
    line-height: 36px;
    list-style: none;
  }

  .case-yellow-river__qr-copy li::marker {
    content: "";
  }

  .case-yellow-river__qr-copy li::before {
    top: 9px;
    left: 2px;
    width: 17px;
    height: 17px;
    border-radius: 0;
    background: url("/assets/images/case/hhslwyh/contact-check.svg") center / contain no-repeat;
  }

  .case-yellow-river .home-cta {
    height: 280px;
    min-height: 280px;
    padding: 0 24px;
  }

  .case-yellow-river .cta__title {
    margin: 0 0 10px;
    font-size: 36px;
    font-weight: 500;
    line-height: 47px;
  }

  .case-yellow-river .cta__content {
    width: 1200px;
    max-width: 1200px;
  }

  .case-yellow-river .cta__subtitle {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .case-yellow-river .cta__btn {
    display: inline-flex;
    width: 324.757813px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    padding: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
  }

  .case-yellow-river .cta__features {
    min-height: 28px;
    flex-wrap: nowrap;
    gap: 80px;
  }
}

@media (min-width: 1281px) and (max-width: 1599px) {
  .case-yellow-river__pain-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .case-yellow-river__pain-card,
  .case-yellow-river__pain-card:nth-child(2),
  .case-yellow-river__pain-card:nth-child(3),
  .case-yellow-river__pain-card:nth-child(4) {
    width: 100%;
    height: auto;
    min-height: clamp(408px, 32vw, 512px);
    flex: none;
    margin-left: 0;
    padding: clamp(32px, 2.7vw, 43px) clamp(20px, 2.7vw, 42px) 24px;
    background-size: 100% 100%;
  }

  .case-yellow-river__pain-card > div,
  .case-yellow-river__pain-card p {
    width: 100%;
    max-width: 100%;
  }

  .case-yellow-river__pain-card h3 {
    margin-left: 0;
    font-size: clamp(24px, 1.8vw, 28px);
  }

  .case-yellow-river__pain-card p,
  .case-yellow-river__pain-card:first-child p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 25px;
  }

  .case-yellow-river__capability-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(20px, 2.25vw, 36px);
  }

  .case-yellow-river__capability-card {
    width: 100%;
  }

  .case-yellow-river__capability-card > div,
  .case-yellow-river__capability-card:nth-child(1) > div,
  .case-yellow-river__capability-card:nth-child(4) > div {
    width: calc(100% - 48px);
  }

  .case-yellow-river__capability-card h3 {
    font-size: clamp(24px, 1.8vw, 28px);
  }

  .case-yellow-river__capability-card p {
    font-size: clamp(16px, 1.1vw, 18px);
  }

  .case-yellow-river__solution-overview p {
    width: min(655px, 52%);
  }

  .case-yellow-river__solution-card h3 {
    width: calc(54% - 100px);
    font-size: clamp(21px, 1.5vw, 24px);
  }

  .case-yellow-river__solution-card p,
  .case-yellow-river__solution-card:nth-child(2) p,
  .case-yellow-river__solution-card:nth-child(3) p,
  .case-yellow-river__solution-card:nth-child(4) p,
  .case-yellow-river__solution-card:nth-child(5) p,
  .case-yellow-river__solution-card:nth-child(6) p {
    left: 31px;
    width: calc(54% - 52px);
    font-size: clamp(15px, 1vw, 16px);
  }

  .case-yellow-river__solution-card > img {
    right: 20px;
    left: auto;
    width: 44%;
  }

  .case-yellow-river__comparison-panel {
    width: 33.2%;
  }

  .case-yellow-river__comparison-image {
    left: 32%;
    width: 36.1%;
  }

  .case-yellow-river__comparison-panel h3 {
    width: 70%;
    font-size: clamp(24px, 1.75vw, 28px);
  }

  .case-yellow-river__comparison-panel h3::before,
  .case-yellow-river__comparison-panel h3::after {
    width: 30%;
  }

  .case-yellow-river__comparison-panel ul {
    left: 6.7%;
    width: 86.7%;
    box-sizing: border-box;
    padding-inline: 13px;
  }

  .case-yellow-river__comparison-panel li {
    width: 100%;
    padding-left: clamp(48px, 3.7vw, 60px);
    font-size: clamp(16px, 1.25vw, 20px);
  }

  .case-yellow-river__outcome-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.45vw, 22.6667px);
  }

  .case-yellow-river__outcome-card {
    width: 100%;
  }

  .case-yellow-river__outcome-card img {
    left: clamp(4px, 0.5vw, 8px);
    width: clamp(92px, 7.2vw, 114px);
    height: clamp(98px, 7.7vw, 121px);
  }

  .case-yellow-river__outcome-card h3,
  .case-yellow-river__outcome-card p {
    left: clamp(104px, 8.2vw, 131px);
    width: calc(100% - clamp(116px, 9vw, 143px));
  }

  .case-yellow-river__outcome-card h3 {
    font-size: clamp(20px, 1.5vw, 24px);
  }

  .case-yellow-river__outcome-card p {
    font-size: 15px;
  }

  .case-yellow-river__metrics {
    width: 100%;
  }

  .case-yellow-river__metrics > div:nth-child(1)::after,
  .case-yellow-river__metrics > div:nth-child(2)::after,
  .case-yellow-river__metrics > div:nth-child(3)::after,
  .case-yellow-river__metrics > div:nth-child(4)::after {
    left: clamp(18px, 2.6vw, 42px);
    width: clamp(90px, 7.2vw, 114px);
    height: clamp(96px, 7.7vw, 121px);
    background-size: contain;
  }

  .case-yellow-river__metrics dt,
  .case-yellow-river__metrics dd {
    left: clamp(120px, 10.6vw, 170px);
  }

  .case-yellow-river__metrics dt {
    font-size: clamp(20px, 1.5vw, 24px);
  }

  .case-yellow-river__metrics dt span {
    font-size: clamp(30px, 2.25vw, 36px);
  }

  .case-yellow-river__metrics dd {
    font-size: clamp(16px, 1.25vw, 20px);
  }

  .case-yellow-river__value-grid {
    --case-value-gap: clamp(24px, 2.5vw, 40px);
    --case-value-card-width: calc((100% - var(--case-value-gap) - var(--case-value-gap) - var(--case-value-gap)) / 4);
    width: 100%;
  }

  .case-yellow-river__value-card {
    width: var(--case-value-card-width);
  }

  .case-yellow-river__value-card:nth-child(2) {
    left: calc(var(--case-value-card-width) + var(--case-value-gap));
  }

  .case-yellow-river__value-card:nth-child(3) {
    left: calc(var(--case-value-card-width) + var(--case-value-gap) + var(--case-value-card-width) + var(--case-value-gap));
  }

  .case-yellow-river__value-card:nth-child(4) {
    left: calc(var(--case-value-card-width) + var(--case-value-gap) + var(--case-value-card-width) + var(--case-value-gap) + var(--case-value-card-width) + var(--case-value-gap));
  }

  .case-yellow-river__value-card:nth-child(1)::before,
  .case-yellow-river__value-card:nth-child(2)::before,
  .case-yellow-river__value-card:nth-child(3)::before,
  .case-yellow-river__value-card:nth-child(4)::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .case-yellow-river__value-card:not(:last-child)::after {
    left: calc(100% - 72px);
    width: clamp(132px, 10.8vw, 172px);
  }

  .case-yellow-river__value-card > span,
  .case-yellow-river__value-card h3,
  .case-yellow-river__value-card p {
    left: clamp(24px, 2.4vw, 38px);
    width: calc(100% - clamp(24px, 2.4vw, 38px) - clamp(24px, 2.4vw, 38px));
  }

  .case-yellow-river__value-card h3 {
    font-size: clamp(22px, 1.75vw, 28px);
  }

  .case-yellow-river__contact-panel {
    width: 100%;
  }

  .case-yellow-river__contact-panel::before {
    left: 53.6%;
  }

  .case-yellow-river__contact-services {
    width: 50.6%;
  }

  .case-yellow-river__contact-services article {
    width: 48.8%;
  }

  .case-yellow-river__contact-services article:nth-child(2),
  .case-yellow-river__contact-services article:nth-child(4) {
    left: 51.2%;
  }

  .case-yellow-river__contact-services h3,
  .case-yellow-river__contact-services p,
  .case-yellow-river__contact-services article:nth-child(2) h3,
  .case-yellow-river__contact-services article:nth-child(2) p,
  .case-yellow-river__contact-services article:nth-child(3) h3,
  .case-yellow-river__contact-services article:nth-child(3) p,
  .case-yellow-river__contact-services article:nth-child(4) h3,
  .case-yellow-river__contact-services article:nth-child(4) p {
    left: clamp(122px, 10vw, 159px);
  }

  .case-yellow-river__contact-services h3 {
    font-size: clamp(21px, 1.6vw, 26px);
  }

  .case-yellow-river__contact-services p,
  .case-yellow-river__contact-services article:nth-child(2) p,
  .case-yellow-river__contact-services article:nth-child(3) p,
  .case-yellow-river__contact-services article:nth-child(4) p {
    width: calc(100% - clamp(140px, 11vw, 176px));
    font-size: 14px;
    line-height: 24px;
  }

  .case-yellow-river__qr {
    left: 57.5%;
    width: 42.5%;
  }

  .case-yellow-river__qr::before {
    width: 100%;
  }

  .case-yellow-river__qr::after {
    left: 52%;
  }

  .case-yellow-river__qr-stage {
    width: 55%;
    height: auto;
    aspect-ratio: 361 / 326;
  }

  .case-yellow-river__qr-frame {
    width: 100%;
    height: 100%;
  }

  .case-yellow-river__qr-code {
    top: 11%;
    left: 23%;
    width: 47%;
    height: 51.5%;
  }

  .case-yellow-river__qr-copy {
    left: 57%;
    width: 43%;
  }

  .case-yellow-river__qr-copy strong {
    font-size: clamp(25px, 2.1vw, 34px);
  }

  .case-yellow-river__qr-copy > span {
    font-size: clamp(16px, 1.25vw, 20px);
  }

  .case-yellow-river__qr-copy ul {
    width: 100%;
  }

  .case-yellow-river__qr-copy li {
    font-size: clamp(15px, 1.1vw, 18px);
  }

  .case-yellow-river__product-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.85vw, 29.43px);
  }

  .case-yellow-river__product-card {
    width: 100%;
  }

  .case-yellow-river__product-card:nth-child(2) > img {
    left: -4.7%;
    width: 110%;
  }

  .case-yellow-river__product-card > div {
    left: 10.7%;
    width: 82.7%;
  }

  .case-yellow-river__product-card h3 {
    font-size: clamp(21px, 1.6vw, 26px);
  }

  .case-yellow-river__product-card p {
    width: 100%;
    font-size: 15px;
  }

  .case-yellow-river__product-card > a {
    left: 10.7%;
  }

  .case-yellow-river__more-grid {
    left: 0;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.5vw, 24px);
  }

  .case-yellow-river__more-card {
    width: 100%;
  }

  .case-yellow-river__more-card > img,
  .case-yellow-river__more-card:nth-child(3) > img {
    left: 20px;
    width: calc(100% - 40px);
    height: clamp(215px, 16.9vw, 270px);
  }

  .case-yellow-river__more-card > div::before {
    top: clamp(270px, 19.6vw, 313px);
    left: clamp(32px, 2.5vw, 40px);
  }

  .case-yellow-river__more-card > div::after {
    top: clamp(281px, 20.3vw, 324px);
    left: clamp(41px, 3.1vw, 49px);
  }

  .case-yellow-river__more-card h3,
  .case-yellow-river__more-card:nth-child(2) h3,
  .case-yellow-river__more-card:nth-child(3) h3 {
    top: clamp(276px, 20vw, 319px);
    right: auto;
    bottom: auto;
    left: clamp(92px, 6.7vw, 106px);
    width: auto;
    font-size: clamp(23px, 1.75vw, 28px);
    font-weight: 500;
    letter-spacing: 0;
  }

  .case-yellow-river__more-card p {
    left: clamp(32px, 2.5vw, 40px);
    bottom: clamp(32px, 2.5vw, 40px);
    width: calc(100% - clamp(32px, 2.5vw, 40px) - clamp(32px, 2.5vw, 40px));
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: clamp(30px, 2.25vw, 36px);
  }
}

@media (min-width: 1281px) {
  .case-yellow-river__hero {
    min-height: 488px;
    background-position: calc(50% - 1.5px) -138px;
    background-size: 1927px auto;
  }

  .case-yellow-river__hero-inner {
    min-height: 488px;
    align-items: flex-start;
  }

  .case-yellow-river__hero-copy {
    left: -2px;
    width: 784px;
    padding: 62px 0 0;
  }

  .case-yellow-river__hero h1 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 2px 2px rgba(255, 255, 255, 0.16);
  }

  .case-yellow-river__hero-copy > p {
    width: 816px;
    max-width: none;
    margin: 29px 0 0 2px;
    color: rgba(0, 0, 0, 0.85);
    font-size: 26px;
    line-height: 48px;
  }

  .case-yellow-river__hero-tags {
    flex-wrap: nowrap;
    gap: 20px;
    margin: 26px 0 0 5px;
  }

  .case-yellow-river__hero-tags span {
    position: relative;
    width: 199px;
    height: 37px;
    min-height: 37px;
    flex: 0 0 199px;
    padding: 0 41px 0 24px;
    border: 1px solid rgba(15, 105, 230, 0.08);
    border-radius: 90px;
    color: #0f69e6;
    background: #c8dbfa;
    white-space: nowrap;
  }

  .case-yellow-river__hero-tags span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 23px;
    width: 18px;
    height: 14px;
    background: url("/assets/images/case/hhslwyh/tag-arrow.svg") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .case-yellow-river__hero-actions {
    position: absolute;
    top: 372px;
    left: 6px;
    gap: 18px;
    margin: 0;
  }

}

@media (max-width: 1280px) {
  .case-yellow-river__section > .site-container {
    max-width: 100%;
  }

  .case-yellow-river__pain-card {
    border: 0;
    border-radius: 0;
    background-size: calc(100% + 42px) 100%;
    box-shadow: none;
  }

  .case-yellow-river__pain-card h3,
  .case-yellow-river__capability-card h3,
  .case-yellow-river__solution-card h3,
  .case-yellow-river__outcome-card h3,
  .case-yellow-river__value-card h3,
  .case-yellow-river__contact-services h3,
  .case-yellow-river__product-card h3 {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
  }

  .case-yellow-river__capability-card {
    border: 3px solid #ffffff;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f5fa 0%, #dfeeff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__capability-card:nth-child(2) {
    background: linear-gradient(135deg, #e5e9ff 33%, #eceeff 100%);
  }

  .case-yellow-river__capability-card:nth-child(3) {
    background: linear-gradient(180deg, #e5edfa 36%, #f0f4f9 100%);
  }

  .case-yellow-river__capability-card:nth-child(4) {
    background: linear-gradient(180deg, #cbe3fc 0%, #f0f4f9 100%);
  }

  .case-yellow-river__capability-card:nth-child(5) {
    background: linear-gradient(180deg, #b9e5fa 0%, #eff5fd 100%);
  }

  .case-yellow-river__capability-card:nth-child(6) {
    background: linear-gradient(180deg, #c6d0fe 0%, #eff5fd 100%);
  }

  .case-yellow-river__solution-overview {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .case-yellow-river__solution-overview h3 {
    position: relative;
    padding-left: 64px;
  }

  .case-yellow-river__solution-overview h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 52px;
    height: 52px;
    background: url("/assets/images/case/hhslwyh/solution-overview-icon.png") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .case-yellow-river__solution-card {
    border: 3px solid #ffffff;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__solution-card > img {
    border: 4px solid #d8dbe9;
    border-radius: 16px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.06));
  }

  .case-yellow-river__comparison-panel {
    border-color: #dbe8fc;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffffe 0%, #eff4fd 100%);
    box-shadow: none;
  }

  .case-yellow-river__comparison-panel--after {
    border-color: #dbe8fc;
    background-color: #0b66ff;
    background-image: url("/assets/images/case/hhslwyh/benefit-after-bg.png");
    background-position: center;
    background-size: cover;
  }

  .case-yellow-river__comparison-panel--after h3 {
    color: #ffffff;
  }

  .case-yellow-river__comparison-panel li {
    border: 1px solid #dbe8fc;
    border-radius: 10px;
    background: linear-gradient(180deg, #fcfefe 0%, #f4f7fc 100%);
  }

  .case-yellow-river__outcome-card,
  .case-yellow-river__metrics {
    border: 2px solid #e1ebfb;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .case-yellow-river__metrics dt {
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
  }

  .case-yellow-river__metrics dt span {
    color: #0f69e6;
  }

  .case-yellow-river__value-card {
    border: 2px solid #ffffff;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffffe 0%, #eff4fd 100%);
    box-shadow: 0 4px 20px #d4e3fc;
  }

  .case-yellow-river__value-card::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 16px;
    width: 82px;
    height: 92px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .case-yellow-river__value-card:nth-child(1)::before {
    background-image: url("/assets/images/case/hhslwyh/value-stage-01.png");
  }

  .case-yellow-river__value-card:nth-child(2)::before {
    background-image: url("/assets/images/case/hhslwyh/value-stage-02.png");
  }

  .case-yellow-river__value-card:nth-child(3)::before {
    background-image: url("/assets/images/case/hhslwyh/value-stage-03.png");
  }

  .case-yellow-river__value-card:nth-child(4)::before {
    background-image: url("/assets/images/case/hhslwyh/value-stage-04.png");
  }

  .case-yellow-river__contact-panel {
    border: 2px solid rgba(176, 201, 253, 0.48);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

  .case-yellow-river__contact-services {
    gap: 14px;
    background: transparent;
  }

  .case-yellow-river__contact-services article {
    border: 1px solid rgba(176, 201, 253, 0.3);
    border-radius: 12px;
    background: #fbfcfd;
    box-shadow: 0 4px 25px #e3ecfd;
  }

  .case-yellow-river__qr {
    border-radius: 20px;
    background: rgba(237, 246, 255, 0.86);
  }

  .case-yellow-river__product-card {
    border: 0;
    border-radius: 8px;
    background: #fbfcfd;
    box-shadow: 0 0 0 2px rgba(176, 201, 253, 0.3);
  }

  .case-yellow-river__product-card > a {
    border-radius: 8px;
    background: linear-gradient(93deg, #0b66ff 0%, #00bbff 100%);
    font-weight: 600;
  }

  .case-yellow-river__more-card {
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.078);
  }

  .case-yellow-river__more-card > div {
    position: relative;
  }

  .case-yellow-river__more-card > div::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b66ff 0%, #00bbff 100%);
  }

  .case-yellow-river__more-card > div::after {
    content: "";
    position: absolute;
    top: 31px;
    left: 33px;
    width: 30px;
    height: 26px;
    background: url("/assets/images/case/hhslwyh/case-building-icon.svg") center / contain no-repeat;
  }

  .case-yellow-river__more-card h3 {
    min-height: 48px;
    padding-left: 62px;
    color: #333333;
    font-weight: 600;
    line-height: 1.5;
  }

  .case-yellow-river__hero-copy {
    width: 57%;
  }

  .case-yellow-river__hero h1 {
    font-size: 44px;
  }

  .case-yellow-river__hero-copy > p {
    font-size: 20px;
  }

  .case-yellow-river__pain-grid,
  .case-yellow-river__outcome-grid,
  .case-yellow-river__value-grid,
  .case-yellow-river__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-yellow-river__pain-card {
    height: 470px;
  }

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

  .case-yellow-river__solution-overview {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .case-yellow-river__solution-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .case-yellow-river__solution-card {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  }

  .case-yellow-river__comparison {
    grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  }

  .case-yellow-river__comparison-image {
    height: auto;
  }

  .case-yellow-river__value-card:not(:last-child)::after {
    display: none;
  }

  .case-yellow-river__contact-panel {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .case-yellow-river__qr {
    min-height: 360px;
    grid-template-columns: minmax(250px, 0.7fr) minmax(210px, 0.3fr);
  }
}

@media (max-width: 900px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    min-height: 540px;
  }

  .case-yellow-river__hero {
    background-position: 60% center;
  }

  .case-yellow-river__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.64);
  }

  .case-yellow-river__hero-copy {
    width: 78%;
  }

  .case-yellow-river__section {
    padding: 58px 0 64px;
  }

  .case-yellow-river__heading {
    margin-bottom: 38px;
  }

  .case-yellow-river__heading p {
    font-size: 17px;
  }

  .case-yellow-river__solution-overview {
    width: 100%;
    min-height: 360px;
    grid-template-columns: 1fr;
    padding: 36px;
    background: transparent;
  }

  .case-yellow-river__comparison {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-yellow-river__comparison-panel {
    min-height: 0;
  }

  .case-yellow-river__comparison-image {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1024 / 799;
    margin: 0 auto;
    object-fit: contain;
  }

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

  .case-yellow-river__metrics > div:nth-child(3)::before {
    display: none;
  }

  .case-yellow-river__metrics > div:nth-child(n + 3) {
    border-top: 1px solid #dce7f5;
  }

  .case-yellow-river__more-grid {
    grid-template-columns: 1fr;
  }

  .case-yellow-river__more-card {
    display: grid;
    min-height: 300px;
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  }

  .case-yellow-river__more-card > img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 767px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    min-height: 560px;
  }

  .case-yellow-river__hero {
    background-position: 63% center;
  }

  .case-yellow-river__hero-inner,
  .case-yellow-river__section > .site-container {
    width: calc(100% - 32px);
  }

  .case-yellow-river__hero-copy {
    width: 100%;
    padding: 42px 0 48px;
  }

  .case-yellow-river__hero h1 {
    max-width: 12em;
    font-size: 32px;
    line-height: 1.35;
  }

  .case-yellow-river__hero-copy > p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .case-yellow-river__hero-tags {
    gap: 8px;
    margin-top: 20px;
  }

  .case-yellow-river__hero-tags span {
    max-width: 100%;
    min-height: 34px;
    padding: 5px 11px;
    font-size: 13px;
  }

  .case-yellow-river__hero-actions {
    display: grid;
    width: 100%;
    max-width: 420px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    margin-top: 22px;
  }

  .case-yellow-river__button {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding-inline: 14px;
  }

  .case-yellow-river__section {
    padding: 46px 0 52px;
  }

  .case-yellow-river__heading {
    margin-bottom: 30px;
  }

  .case-yellow-river__heading h2 {
    max-width: 100%;
    gap: 8px;
    font-size: 22px;
    line-height: 1.4;
  }

  .case-yellow-river__heading h2::before {
    width: 46px;
    height: 36px;
    flex-basis: 46px;
  }

  .case-yellow-river__heading h2::after {
    right: -14px;
    width: calc(100% - 42px);
  }

  .case-yellow-river__heading p {
    max-width: 100%;
    margin-top: 8px;
    font-size: 15px;
  }

  .case-yellow-river__pain-grid,
  .case-yellow-river__capability-grid,
  .case-yellow-river__outcome-grid,
  .case-yellow-river__value-grid,
  .case-yellow-river__product-grid {
    grid-template-columns: 1fr;
  }

  .case-yellow-river__pain-card {
    height: auto;
    min-height: 430px;
    padding: 33px 28px;
  }

  .case-yellow-river__pain-card h3 {
    font-size: 22px;
  }

  .case-yellow-river__pain-card p {
    margin-top: 12px;
    font-size: 14px;
  }

  .case-yellow-river__capability-card {
    min-height: 0;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 20px;
  }

  .case-yellow-river__capability-card img {
    width: 72px;
    height: 78px;
  }

  .case-yellow-river__capability-card h3 {
    font-size: 20px;
  }

  .case-yellow-river__capability-card p {
    font-size: 14px;
  }

  .case-yellow-river__solution {
    background-size: auto 900px;
  }

  .case-yellow-river__solution-overview {
    min-height: 0;
    margin-bottom: 16px;
    padding: 28px 22px;
  }

  .case-yellow-river__solution-overview h3 {
    font-size: 24px;
  }

  .case-yellow-river__solution-overview p {
    font-size: 14px;
  }

  .case-yellow-river__solution-grid {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .case-yellow-river__solution-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .case-yellow-river__solution-copy {
    padding: 28px 22px 24px;
  }

  .case-yellow-river__step {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .case-yellow-river__solution-card h3 {
    font-size: 21px;
  }

  .case-yellow-river__solution-card p {
    font-size: 14px;
  }

  .case-yellow-river__solution-card > img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 2 / 1;
  }

  .case-yellow-river__comparison-panel {
    padding: 28px 20px;
  }

  .case-yellow-river__comparison-panel h3 {
    font-size: 24px;
  }

  .case-yellow-river__comparison-panel li {
    padding-left: 38px;
    font-size: 14px;
  }

  .case-yellow-river__outcome-card {
    min-height: 0;
    grid-template-columns: 84px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .case-yellow-river__outcome-card img {
    width: 76px;
    height: 86px;
  }

  .case-yellow-river__outcome-card h3 {
    font-size: 20px;
  }

  .case-yellow-river__metrics dt {
    font-size: 23px;
  }

  .case-yellow-river__metrics dd {
    font-size: 13px;
  }

  .case-yellow-river__value-grid {
    gap: 16px;
    padding-top: 0;
  }

  .case-yellow-river__value-card {
    min-height: 0;
    padding: 74px 24px 28px;
  }

  .case-yellow-river__value-card > span {
    font-size: 35px;
  }

  .case-yellow-river__value-card h3 {
    font-size: 23px;
  }

  .case-yellow-river__value-card p {
    font-size: 14px;
  }

  .case-yellow-river__contact-services,
  .case-yellow-river__qr {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .case-yellow-river__contact-services article {
    min-height: 0;
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 20px 16px;
  }

  .case-yellow-river__contact-services img {
    width: 76px;
    height: 82px;
  }

  .case-yellow-river__contact-services h3 {
    font-size: 19px;
  }

  .case-yellow-river__qr {
    min-height: 0;
    padding: 18px 20px 28px;
  }

  .case-yellow-river__qr-stage {
    max-width: 290px;
  }

  .case-yellow-river__qr-copy {
    align-items: center;
    text-align: center;
  }

  .case-yellow-river__qr-copy ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 14px;
  }

  .case-yellow-river__product-card {
    width: 100%;
    min-height: 0;
  }

  .case-yellow-river__product-card > img {
    height: auto;
    aspect-ratio: 357 / 210;
  }

  .case-yellow-river__product-card h3 {
    font-size: 21px;
  }

  .case-yellow-river__product-card > a {
    margin-top: 18px;
  }

  .case-yellow-river__more-card {
    display: block;
    width: 100%;
    min-height: 0;
  }

  .case-yellow-river__more-card > img {
    height: auto;
    aspect-ratio: 450 / 260;
  }

  .case-yellow-river__more-card h3 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    min-height: 520px;
  }

  .case-yellow-river__hero h1 {
    font-size: 30px;
  }

  .case-yellow-river__hero-copy > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .case-yellow-river__hero-actions {
    gap: 10px;
  }

  .case-yellow-river__button {
    height: 40px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .case-yellow-river__section {
    padding: 42px 0 46px;
  }

  .case-yellow-river__heading h2 {
    gap: 6px;
    font-size: 20px;
  }

  .case-yellow-river__heading h2::before {
    width: 38px;
    height: 30px;
    flex-basis: 38px;
  }

  .case-yellow-river__heading h2::after {
    right: -10px;
    width: calc(100% - 34px);
    height: 22px;
  }

  .case-yellow-river__heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .case-yellow-river__pain-card {
    min-height: 390px;
    padding: 28px 22px;
  }

  .case-yellow-river__capability-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .case-yellow-river__capability-card img {
    width: 60px;
    height: 66px;
  }

  .case-yellow-river__solution-overview {
    padding: 24px 18px;
  }

  .case-yellow-river__solution-copy {
    padding: 24px 18px 20px;
  }

  .case-yellow-river__comparison-panel {
    padding: 24px 16px;
  }

  .case-yellow-river__metrics {
    grid-template-columns: 1fr;
  }

  .case-yellow-river__metrics > div + div::before {
    display: none;
  }

  .case-yellow-river__metrics > div:nth-child(n + 2) {
    border-top: 1px solid #dce7f5;
  }

  .case-yellow-river__contact-services article {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 14px;
  }

  .case-yellow-river__contact-services img {
    width: 64px;
    height: 70px;
  }

  .case-yellow-river__qr {
    padding: 16px 14px 24px;
  }

  .case-yellow-river__qr-stage {
    max-width: 260px;
  }

  .case-yellow-river__qr-copy strong {
    font-size: 24px;
  }

  .case-yellow-river__qr-copy > span {
    font-size: 14px;
  }

  .case-yellow-river__product-card > div,
  .case-yellow-river__more-card > div {
    padding: 20px;
  }

  .case-yellow-river__more-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 380px) {
  .case-yellow-river__hero-inner,
  .case-yellow-river__section > .site-container {
    width: calc(100% - 20px);
  }

  .case-yellow-river__hero h1 {
    font-size: 29px;
  }

  .case-yellow-river__hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1281px) {
  .case-yellow-river__product-card:nth-child(n) > img {
    top: 0;
    left: 0;
    width: 100%;
    height: 210px;
    object-fit: fill;
  }

  .case-yellow-river__product-card:nth-child(4) h3 {
    font-size: 26px;
    letter-spacing: -1px;
  }
}

@media (min-width: 1600px) {
  .case-yellow-river__product-grid {
    position: relative;
    left: 8px;
  }

  .case-yellow-river__product-card:nth-child(2),
  .case-yellow-river__product-card:nth-child(3) {
    left: 4px;
  }

  .case-yellow-river__product-card:nth-child(4) {
    left: 1px;
  }

  .case-yellow-river__product-card:nth-child(4) h3 {
    position: relative;
    left: -14px;
    width: 332px;
    white-space: nowrap;
  }
}

/* Keep every case section heading visually consistent with the homepage. */
.case-yellow-river__heading h2 {
  gap: 8px;
  margin: 0 0 9px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0;
}

.case-yellow-river__heading h2::before,
.case-yellow-river__heading h2::after {
  display: none;
  content: none;
}

.case-yellow-river__heading p {
  width: 100%;
  margin: 0;
  color: #393e4f;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 767px) {
  .case-yellow-river__heading {
    margin-bottom: 24px;
  }

  .case-yellow-river__heading h2 {
    font-size: 22px;
    line-height: 36px;
  }

  .case-yellow-river__heading p {
    margin: 0;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__heading h2 {
    gap: 8px;
    font-size: 22px;
    line-height: 36px;
  }

  .case-yellow-river__heading p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* Small-screen and mobile refinements. Keep the desktop design unchanged. */
@media (max-width: 1280px) {
  .case-yellow-river__section {
    scroll-margin-top: 84px;
  }

  .case-yellow-river__pain-grid,
  .case-yellow-river__capability-grid,
  .case-yellow-river__solution-grid,
  .case-yellow-river__outcome-grid,
  .case-yellow-river__value-grid,
  .case-yellow-river__product-grid,
  .case-yellow-river__more-grid {
    gap: clamp(16px, 2vw, 24px);
  }

  .case-yellow-river__solution-overview {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(32px, 4vw, 48px);
  }

  .case-yellow-river__solution-overview > div {
    max-width: 920px;
  }

  .case-yellow-river__solution-card {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

  .case-yellow-river__product-card {
    min-height: 430px;
  }
}

@media (max-width: 1100px) {
  .case-yellow-river__comparison {
    width: min(100%, 900px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-inline: auto;
  }

  .case-yellow-river__comparison-panel {
    min-height: 0;
  }

  .case-yellow-river__comparison-image {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .case-yellow-river__capability-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 24px;
  }

  .case-yellow-river__capability-card img {
    width: 76px;
    height: 82px;
  }

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

@media (max-width: 900px) {
  .case-yellow-river__hero {
    background-position: 68% center;
  }

  .case-yellow-river__hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 58%,
      rgba(255, 255, 255, 0.66) 100%
    );
  }

  .case-yellow-river__hero-copy {
    width: min(100%, 680px);
  }

  .case-yellow-river__section {
    padding: 52px 0 58px;
  }

  .case-yellow-river__solution-overview {
    padding: 32px;
  }

  .case-yellow-river__solution-card {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .case-yellow-river__comparison {
    gap: 18px;
  }

  .case-yellow-river__comparison-image {
    width: min(100%, 520px);
  }

  .case-yellow-river__qr {
    min-height: 0;
    grid-template-columns: minmax(220px, 0.7fr) minmax(190px, 0.3fr);
  }

  .case-yellow-river__more-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-yellow-river__more-card {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 767px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    min-height: 530px;
  }

  .case-yellow-river__hero {
    background-position: 70% center;
  }

  .case-yellow-river__hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.93) 72%,
      rgba(255, 255, 255, 0.76) 100%
    );
  }

  .case-yellow-river__hero-copy {
    padding: 44px 0 46px;
  }

  .case-yellow-river__hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 7.2vw, 36px);
    line-height: 1.3;
  }

  .case-yellow-river__hero-copy > p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.72;
  }

  .case-yellow-river__hero-actions {
    margin-top: 20px;
  }

  .case-yellow-river__button {
    min-height: 44px;
  }

  .case-yellow-river__section {
    padding: 44px 0 50px;
  }

  .case-yellow-river__heading {
    margin-bottom: 26px;
  }

  .case-yellow-river__heading p {
    padding-inline: 0;
    line-height: 1.65;
  }

  .case-yellow-river__pain-grid,
  .case-yellow-river__capability-grid,
  .case-yellow-river__solution-grid,
  .case-yellow-river__outcome-grid,
  .case-yellow-river__value-grid,
  .case-yellow-river__product-grid,
  .case-yellow-river__more-grid {
    gap: 16px;
  }

  .case-yellow-river__pain-grid {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .case-yellow-river__pain-card {
    min-height: clamp(410px, 112vw, 500px);
    padding: 30px 24px;
    background-position: center bottom;
    background-size: cover;
  }

  .case-yellow-river__pain-card > div,
  .case-yellow-river__pain-card p {
    width: 100%;
    max-width: 100%;
  }

  .case-yellow-river__capability-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 22px 18px;
  }

  .case-yellow-river__capability-card img {
    width: 64px;
    height: 70px;
  }

  .case-yellow-river__capability-card p {
    margin-top: 8px;
    line-height: 1.65;
  }

  .case-yellow-river__solution-overview {
    padding: 26px 20px;
    border-radius: 10px;
  }

  .case-yellow-river__solution-overview h3 {
    padding-left: 58px;
    font-size: 22px;
  }

  .case-yellow-river__solution-overview h3::before {
    width: 46px;
    height: 46px;
  }

  .case-yellow-river__solution-card {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 10px;
  }

  .case-yellow-river__solution-copy {
    padding: 24px 20px 22px;
  }

  .case-yellow-river__solution-card > img {
    border-width: 2px;
    border-radius: 10px;
  }

  .case-yellow-river__comparison {
    gap: 16px;
  }

  .case-yellow-river__comparison-panel {
    padding: 24px 18px;
  }

  .case-yellow-river__comparison-panel h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .case-yellow-river__comparison-panel li {
    min-height: 44px;
    padding: 10px 10px 10px 38px;
    line-height: 1.55;
  }

  .case-yellow-river__comparison-panel li + li {
    margin-top: 8px;
  }

  .case-yellow-river__outcome-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px 16px;
  }

  .case-yellow-river__outcome-card img {
    width: 70px;
    height: 78px;
  }

  .case-yellow-river__outcome-card p {
    margin-top: 7px;
  }

  .case-yellow-river__metrics {
    overflow: hidden;
    border-radius: 10px;
  }

  .case-yellow-river__metrics > div {
    padding: 22px 16px;
  }

  .case-yellow-river__value-card {
    padding: 70px 22px 26px;
  }

  .case-yellow-river__value-card::before {
    top: 12px;
    right: 12px;
    width: 72px;
    height: 80px;
  }

  .case-yellow-river__contact-panel {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .case-yellow-river__contact-services {
    gap: 12px;
  }

  .case-yellow-river__contact-services article {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 18px 14px;
  }

  .case-yellow-river__contact-services img {
    width: 68px;
    height: 74px;
  }

  .case-yellow-river__qr {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 16px 16px 24px;
    border-radius: 14px;
  }

  .case-yellow-river__qr-stage {
    width: min(100%, 270px);
  }

  .case-yellow-river__product-card {
    min-height: 0;
    border-radius: 10px;
  }

  .case-yellow-river__product-card > div {
    padding: 20px 20px 8px;
  }

  .case-yellow-river__product-card > a {
    width: calc(100% - 40px);
    height: 44px;
    margin: auto 20px 20px;
  }

  .case-yellow-river__more-card {
    display: block;
    border-radius: 10px;
  }

  .case-yellow-river__more-card > div {
    padding: 20px 20px 24px;
  }

  .case-yellow-river__more-card h3 {
    padding-left: 58px;
    font-size: 20px;
  }

  .case-yellow-river__more-card p {
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    min-height: 510px;
  }

  .case-yellow-river__hero h1 {
    font-size: clamp(28px, 8.6vw, 32px);
  }

  .case-yellow-river__button {
    height: 44px;
    min-height: 44px;
  }

  .case-yellow-river__section {
    padding: 40px 0 44px;
  }

  .case-yellow-river__pain-card {
    min-height: clamp(390px, 116vw, 470px);
    padding: 26px 20px;
  }

  .case-yellow-river__pain-card h3 {
    font-size: 21px;
  }

  .case-yellow-river__capability-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }

  .case-yellow-river__capability-card img {
    width: 54px;
    height: 60px;
  }

  .case-yellow-river__capability-card h3,
  .case-yellow-river__outcome-card h3,
  .case-yellow-river__contact-services h3 {
    font-size: 18px;
  }

  .case-yellow-river__solution-overview {
    padding: 22px 16px;
  }

  .case-yellow-river__solution-overview h3 {
    padding-left: 52px;
    font-size: 21px;
  }

  .case-yellow-river__solution-overview h3::before {
    width: 40px;
    height: 40px;
  }

  .case-yellow-river__solution-copy {
    padding: 22px 16px 20px;
  }

  .case-yellow-river__comparison-panel {
    padding: 22px 14px;
  }

  .case-yellow-river__comparison-panel li {
    padding-right: 8px;
    font-size: 14px;
  }

  .case-yellow-river__outcome-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 14px;
  }

  .case-yellow-river__outcome-card img {
    width: 60px;
    height: 68px;
  }

  .case-yellow-river__metrics > div {
    padding: 20px 14px;
  }

  .case-yellow-river__value-card {
    padding: 66px 18px 24px;
  }

  .case-yellow-river__contact-panel {
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }

  .case-yellow-river__contact-services article {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 12px;
  }

  .case-yellow-river__contact-services img {
    width: 56px;
    height: 62px;
  }

  .case-yellow-river__qr-stage {
    width: min(100%, 240px);
  }

  .case-yellow-river__product-card h3,
  .case-yellow-river__more-card h3 {
    font-size: 19px;
  }

  .case-yellow-river__more-card > div {
    padding: 18px 16px 22px;
  }

  .case-yellow-river__more-card > div::before {
    top: 16px;
    left: 18px;
    width: 42px;
    height: 42px;
  }

  .case-yellow-river__more-card > div::after {
    top: 25px;
    left: 26px;
    width: 26px;
    height: 23px;
  }

  .case-yellow-river__more-card h3 {
    min-height: 42px;
    padding-left: 54px;
  }
}

/* Prefer complete image content over edge-to-edge cropping. */
.case-yellow-river__capability-card img,
.case-yellow-river__outcome-card img,
.case-yellow-river__contact-services img,
.case-yellow-river__qr-frame,
.case-yellow-river__qr-code,
.case-yellow-river__product-card > img,
.case-yellow-river__more-card > img {
  object-fit: contain;
  object-position: center;
}

.case-yellow-river__product-card > img,
.case-yellow-river__more-card > img {
  background-color: #f7faff;
}

/* Keep every solution artwork as one complete, edge-to-edge canvas. */
.case-yellow-river__solution-card > img {
  display: block;
  height: auto;
  aspect-ratio: 1672 / 941;
  background-color: transparent;
  object-fit: fill;
  object-position: center;
}

.case-yellow-river__value-card::before {
  background-size: contain;
}

@media (min-width: 1281px) and (max-width: 1599px) {
  .case-yellow-river__hero {
    background-position: right center;
    background-size: cover;
  }
}

@media (max-width: 1280px) {
  .case-yellow-river__hero {
    background-position: 62% center;
    background-size: cover;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .case-yellow-river__pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
  }

  .case-yellow-river__pain-card,
  .case-yellow-river__pain-card:nth-child(2),
  .case-yellow-river__pain-card:nth-child(3),
  .case-yellow-river__pain-card:nth-child(4) {
    width: 100%;
    height: clamp(430px, 36.72vw, 470px);
    min-height: 430px;
    margin-left: 0;
    padding: clamp(28px, 3vw, 38px) clamp(24px, 3vw, 34px) 24px;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 10px;
    background-color: #f5f9ff;
    background-position: center -2px;
    background-size: calc(100% + 42px) calc(100% + 4px);
    box-shadow: 0 8px 22px rgba(28, 69, 135, 0.08);
  }

  .case-yellow-river__pain-card > div {
    width: min(100%, 290px);
    max-width: 290px;
  }

  .case-yellow-river__pain-card h3 {
    margin-left: 0;
    font-size: clamp(22px, 2.2vw, 26px);
  }

  .case-yellow-river__pain-card p,
  .case-yellow-river__pain-card:first-child p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .case-yellow-river__pain-card {
    background-color: #eef5ff;
    background-position: center bottom;
    background-size: contain;
  }

  .case-yellow-river__solution-card > img {
    height: auto;
    aspect-ratio: 1672 / 941;
  }

  .case-yellow-river__product-card > img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1281px) and (max-width: 1599px) {
  .case-yellow-river__pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 1.5vw, 24px);
  }

  .case-yellow-river__pain-card,
  .case-yellow-river__pain-card:nth-child(2),
  .case-yellow-river__pain-card:nth-child(3),
  .case-yellow-river__pain-card:nth-child(4) {
    width: 100%;
    height: auto;
    min-height: clamp(408px, 32vw, 512px);
    margin-left: 0;
    padding: clamp(32px, 2.7vw, 43px) clamp(20px, 2.7vw, 42px) 24px;
    background-size: 100% 100%;
  }

  .case-yellow-river__pain-card > div,
  .case-yellow-river__pain-card p {
    width: 100%;
    max-width: 100%;
  }

  .case-yellow-river__pain-card h3 {
    margin-left: 0;
    font-size: clamp(24px, 1.8vw, 28px);
  }

  .case-yellow-river__pain-card p,
  .case-yellow-river__pain-card:first-child p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 25px;
  }
}

@media (min-width: 1281px) and (max-width: 1599px) {
  .case-yellow-river__solution-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
  }

  .case-yellow-river__solution-card,
  .case-yellow-river__solution-card:nth-child(n) {
    position: relative;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 322px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.96fr);
    align-items: stretch;
    overflow: hidden;
    transform: none;
  }

  .case-yellow-river__solution-copy {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-areas:
      'step title'
      'copy copy';
    column-gap: 14px;
    align-content: start;
    padding: 34px 18px 30px 28px;
  }

  .case-yellow-river__step {
    position: static;
    grid-area: step;
  }

  .case-yellow-river__solution-card h3 {
    position: static;
    width: auto;
    align-self: center;
    grid-area: title;
    margin: 0;
    font-size: clamp(21px, 1.55vw, 24px);
    line-height: 1.35;
    white-space: normal;
  }

  .case-yellow-river__solution-card p,
  .case-yellow-river__solution-card:nth-child(2) p,
  .case-yellow-river__solution-card:nth-child(3) p,
  .case-yellow-river__solution-card:nth-child(4) p,
  .case-yellow-river__solution-card:nth-child(5) p,
  .case-yellow-river__solution-card:nth-child(6) p {
    position: static;
    width: auto;
    grid-area: copy;
    margin: 24px 0 0;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.6;
  }

  .case-yellow-river__solution-card:nth-child(n) > img {
    position: static;
    width: calc(100% - 18px);
    height: auto;
    min-height: 0;
    aspect-ratio: 1672 / 941;
    align-self: center;
    box-sizing: border-box;
    margin: 20px 18px 20px 0;
    object-fit: fill;
    object-position: center;
  }
}

/* Keep the customer-benefit comparison and outcome cards fluid below 1600px. */
@media (min-width: 1281px) and (max-width: 1599px) {
  .case-yellow-river__comparison {
    position: relative;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns:
      minmax(0, 1fr)
      clamp(340px, 34vw, 500px)
      minmax(0, 1fr);
    align-items: stretch;
  }

  .case-yellow-river__comparison-panel,
  .case-yellow-river__comparison-panel--after {
    position: static;
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 470px;
    align-self: stretch;
    padding: 24px 20px 20px;
    overflow: hidden;
  }

  .case-yellow-river__comparison-panel--after {
    background-position: center;
    background-size: cover;
  }

  .case-yellow-river__comparison-panel h3,
  .case-yellow-river__comparison-panel:first-child h3,
  .case-yellow-river__comparison-panel--after h3 {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 318px);
    margin: 0 auto 16px;
    font-size: clamp(22px, 1.75vw, 28px);
    transform: none;
  }

  .case-yellow-river__comparison-panel h3::before,
  .case-yellow-river__comparison-panel h3::after {
    width: clamp(70px, 30%, 102px);
  }

  .case-yellow-river__comparison-panel ul {
    position: static;
    display: grid;
    width: 100%;
    height: auto;
    grid-template-rows: none;
    gap: 8px;
    margin: 0;
    padding: 10px 12px 12px;
    box-sizing: border-box;
    list-style: none;
  }

  .case-yellow-river__comparison-panel li {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 52px;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.45;
    white-space: normal;
  }

  .case-yellow-river__comparison-panel:not(.case-yellow-river__comparison-panel--after) li:nth-child(n)::before,
  .case-yellow-river__comparison-panel--after li:nth-child(n)::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .case-yellow-river__comparison-image {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 799;
    align-self: center;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .case-yellow-river__outcome-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.5vw, 24px);
    margin: 18px 0 0;
  }

  .case-yellow-river__outcome-card,
  .case-yellow-river__outcome-card:nth-child(n) {
    position: relative;
    display: grid;
    width: auto;
    height: auto;
    min-height: 188px;
    grid-template-columns: clamp(78px, 7vw, 108px) minmax(0, 1fr);
    gap: clamp(10px, 1vw, 16px);
    align-items: center;
    padding: 22px clamp(12px, 1.25vw, 20px);
    transform: none;
  }

  .case-yellow-river__outcome-card:nth-child(n) img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 132px;
    object-fit: contain;
  }

  .case-yellow-river__outcome-card > div {
    min-width: 0;
  }

  .case-yellow-river__outcome-card h3,
  .case-yellow-river__outcome-card p,
  .case-yellow-river__outcome-card:nth-child(n) h3,
  .case-yellow-river__outcome-card:nth-child(n) p {
    position: static;
    width: auto;
  }

  .case-yellow-river__outcome-card h3,
  .case-yellow-river__outcome-card:nth-child(n) h3 {
    margin: 0;
    font-size: clamp(19px, 1.45vw, 23px);
    line-height: 1.4;
    white-space: normal;
  }

  .case-yellow-river__outcome-card p,
  .case-yellow-river__outcome-card:nth-child(n) p {
    margin: 8px 0 0;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.6;
  }
}

@media (max-width: 1280px) {
  .case-yellow-river__comparison-panel {
    min-width: 0;
    overflow: hidden;
  }

  .case-yellow-river__comparison-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .case-yellow-river__comparison-panel li {
    width: 100%;
    list-style: none;
    white-space: normal;
  }

  .case-yellow-river__comparison-panel li::marker {
    content: "";
  }

  .case-yellow-river__comparison-panel li::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .case-yellow-river__outcome-card > div {
    min-width: 0;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .case-yellow-river__comparison {
    width: 100%;
    min-height: 0;
    grid-template-columns:
      minmax(0, 1fr)
      clamp(260px, 24vw, 300px)
      minmax(0, 1fr);
    align-items: center;
  }

  .case-yellow-river__comparison-panel {
    min-height: 340px;
    padding: 26px 18px;
  }

  .case-yellow-river__comparison-panel h3 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .case-yellow-river__comparison-panel ul {
    display: grid;
    gap: 8px;
  }

  .case-yellow-river__comparison-panel li {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 10px 10px 10px 46px;
    font-size: 15px;
    line-height: 1.5;
  }

  .case-yellow-river__comparison-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1024 / 799;
    object-fit: contain;
    object-position: center;
  }

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

  .case-yellow-river__outcome-card {
    min-height: 180px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 20px;
  }

  .case-yellow-river__outcome-card img {
    width: 90px;
    height: 112px;
  }
}

@media (max-width: 1100px) {
  .case-yellow-river__comparison {
    width: min(100%, 900px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-inline: auto;
  }

  .case-yellow-river__comparison-panel {
    min-height: 0;
    padding: 28px 22px;
  }

  .case-yellow-river__comparison-panel h3 {
    margin-bottom: 20px;
  }

  .case-yellow-river__comparison-panel ul {
    display: grid;
    gap: 8px;
  }

  .case-yellow-river__comparison-panel li {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 11px 12px 11px 46px;
    line-height: 1.55;
  }

  .case-yellow-river__comparison-image {
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1024 / 799;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 767px) {
  .case-yellow-river__comparison {
    gap: 16px;
  }

  .case-yellow-river__comparison-panel {
    padding: 24px 18px;
  }

  .case-yellow-river__comparison-panel h3 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .case-yellow-river__comparison-panel li {
    min-height: 48px;
    padding: 10px 10px 10px 42px;
    font-size: 14px;
  }

  .case-yellow-river__comparison-panel li::before {
    left: 13px;
  }

  .case-yellow-river__outcome-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .case-yellow-river__outcome-card img {
    width: 68px;
    height: 78px;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__comparison-panel {
    padding: 22px 14px;
  }

  .case-yellow-river__comparison-panel li {
    padding-right: 8px;
    padding-left: 40px;
  }

  .case-yellow-river__comparison-panel li::before {
    left: 12px;
  }

  .case-yellow-river__outcome-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 14px;
  }

  .case-yellow-river__outcome-card img {
    width: 58px;
    height: 68px;
  }
}

/* Match the solution-page hero treatment on tablet and mobile. */
@media (max-width: 900px) {
  .case-yellow-river__hero {
    background-position: 82% center;
    background-size: cover;
  }

  .case-yellow-river__hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.8) 68%,
      rgba(255, 255, 255, 0.62) 100%
    );
  }

  .case-yellow-river__hero-inner {
    justify-content: center;
  }

  .case-yellow-river__hero-copy {
    width: min(100%, 680px);
    padding: 0;
    text-align: center;
  }

  .case-yellow-river__hero h1 {
    color: #111111;
    text-shadow: none;
  }

  .case-yellow-river__hero-copy > p {
    color: #313647;
    text-shadow: none;
  }

  .case-yellow-river__hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .case-yellow-river__hero-actions {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .case-yellow-river__hero,
  .case-yellow-river__hero-inner {
    height: clamp(430px, 116vw, 480px);
    min-height: 430px;
  }

  .case-yellow-river__hero h1 {
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.45;
  }

  .case-yellow-river__hero-copy > p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* Follow qData's compact capability-card layout on small screens. */
@media (max-width: 767px) {
  .case-yellow-river__capability-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px 20px;
  }

  .case-yellow-river__capability-card img {
    width: 72px;
    height: 78px;
    transform: scale(1.4);
    transform-origin: center;
  }

  .case-yellow-river__capability-card h3 {
    font-size: 20px;
  }

  .case-yellow-river__capability-card p {
    margin-top: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__capability-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }

  .case-yellow-river__capability-card img {
    width: 60px;
    height: 66px;
  }
}

/* Match the pricing page's contact-card rhythm on phones. */
@media (max-width: 767px) {
  .case-yellow-river__qr {
    width: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding: 18px 14px 22px;
  }

  .case-yellow-river__qr-stage {
    width: min(260px, calc(100vw - 72px));
    max-width: none;
  }

  .case-yellow-river__qr-copy {
    width: 100%;
    align-items: center;
    padding: 0 0 4px;
    text-align: center;
  }

  .case-yellow-river__qr-copy strong {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
  }

  .case-yellow-river__qr-copy > span {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    white-space: normal;
  }

  .case-yellow-river__qr-copy ul {
    display: grid;
    width: fit-content;
    max-width: 100%;
    gap: 0;
    margin: 10px auto 0;
    padding: 0;
    justify-items: start;
    list-style: none;
  }

  .case-yellow-river__qr-copy li {
    width: max-content;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding-left: 27px;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
  }

  .case-yellow-river__qr-copy li::before {
    top: 8px;
    left: 2px;
    width: 17px;
    height: 17px;
    border-radius: 0;
    background: url("/assets/images/case/hhslwyh/contact-check.svg") center / contain no-repeat;
  }

  .case-yellow-river__product-card > img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .case-yellow-river__product-card:nth-child(1) > img {
    aspect-ratio: 369 / 280;
  }

  .case-yellow-river__product-card:nth-child(2) > img {
    aspect-ratio: 668 / 456;
  }

  .case-yellow-river__product-card:nth-child(3) > img {
    aspect-ratio: 673 / 449;
  }

  .case-yellow-river__product-card:nth-child(4) > img {
    aspect-ratio: 680 / 457;
  }
}

@media (max-width: 480px) {
  .case-yellow-river__qr {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* 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-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  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;
  }
}
