@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "SourceHanSansSC";
  src: url("../fonts/SourceHanSansSC-Medium.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --surface-strong: #040915;
  --text: #0f172a;
  --text-strong: #000000;
  --text-body: #333333;
  --text-muted: #666666;
  --text-soft: #4b5565;
  --muted: var(--text-body);
  --primary: #1f59ff;
  --secondary: #00a6ff;
  --dark: #040915;
  --line-soft: rgba(15, 23, 42, 0.06);
  --line: rgba(15, 23, 42, 0.08);
  --container: min(1580px, calc(100vw - 120px));
  --header-height: 140px;
  --header-height-scrolled: 112px;
  --toolbar-offset: 112px;
  --toolbar-height: 90px;
  --nav-hover-buffer: 22px;
  --site-subnav-top: calc(100% - var(--nav-hover-buffer) - 10px);
  --site-subnav-top-scrolled: calc(100% - var(--nav-hover-buffer) + 6px);
  --hero-height: 520px;
  --hero-padding-top: 92px;
  --hero-padding-bottom: 80px;
  --section-space: 100px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-100: 100px;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-32: 32px;
  --fs-40: 40px;
  --fs-48: 48px;
  --fs-60: 60px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px rgba(20, 39, 84, 0.12);
  --shadow-soft: 0 16px 40px rgba(14, 37, 96, 0.08);
  --arrow-size-x: 41px;
  --arrow-size-y: 58px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "MiSans", "SourceHanSansSC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}
body.has-menu-open {
  overflow: hidden;
}
body.has-table-preview-open {
  overflow: hidden;
  touch-action: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--text-body); line-height: 1.75; }
h1, h2, h3, h4 { margin: 0; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.page-shell { min-height: 100vh; }
.spacer-14 { height: 14px; }
.spacer-18 { height: 18px; }
.spacer-24 { height: 24px; }
.spacer-28 { height: 28px; }
.display-heading { font-size: var(--fs-48); margin-top: var(--space-12); }
.lead-copy { margin-top: var(--space-16); max-width: 620px; }
.article-title { font-size: var(--fs-40); line-height: 1.16; }
.aside-title { font-size: var(--fs-24); margin-bottom: var(--space-20); }
.note-space { margin-top: var(--space-12); }
.job-actions { margin-top: var(--space-16); }
.info-intro { margin-top: var(--space-12); }
.form-actions--spread,
.hero-actions--spread {
  justify-content: space-between;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; }
.button--ghost { background: rgba(31,89,255,0.05); color: var(--primary); border-color: rgba(31,89,255,0.14); }
.button--light { background: #fff; color: var(--primary); }
.button--sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31,89,255,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.chip--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.page-shell--home {
  background: linear-gradient(180deg, #f9fbff 0%, #f3f5f9 38%, #ffffff 100%);
}
.page-shell--home .home-news-feature {
  padding: 0;
}
/* .page-shell--home .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.page-shell--home .header-inner {
  min-height: 76px;
}
.page-shell--home .brand img {
  content: url("../images/logo-light.png");
  width: clamp(110px, 10.5vw, 136px);
}
.page-shell--home .nav-link {
  color: rgba(255,255,255,0.86);
}
.page-shell--home .nav-link.is-active {
  color: #fff;
}
.page-shell--home .nav-link::after {
  background: rgba(255,255,255,0.92);
}
.page-shell--home .header-action {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.page-shell--home .header-action--solid {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
} */
.page-shell--home .menu-toggle {
  background: rgba(255,255,255,0.12);
}
.page-shell--home .menu-toggle span {
  background: #fff;
}
.page-shell--home .page-hero {
  min-height: 650px;
}
.page-shell--home .page-hero::before {
  transform: scale(1);
}
.page-shell--home .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 65, 167, 0.92) 0%, rgba(18, 65, 167, 0.58) 38%, rgba(18, 65, 167, 0.12) 68%, rgba(18, 65, 167, 0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(7, 20, 49, 0.24) 100%);
}
.page-shell--home .page-hero__content {
  padding: 156px 0 112px;
}
.page-shell--home .page-hero h1 {
  max-width: 520px;
  font-size: clamp(42px, 4.8vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.page-shell--home .page-hero p:not(.eyebrow) {
  max-width: 420px;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.page-shell--home .hero-actions {
  margin-top: 24px;
}
.page-shell--home .button--light {
  min-height: 42px;
  padding: 0 22px;
  font-size: 14px;
}
.page-shell--home .eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.24em;
}
.home-section {
  position: relative;
  padding: 76px 0;
}
.home-section .section-head {
  margin-bottom: 28px;
}
.home-section .section-head h2 {
  font-size: clamp(30px, 3vw, 38px);
}
.home-section__more {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-size: 15px;
  box-shadow: 0 12px 22px rgba(31,89,255,0.2);
}
.home-section--products {
  background:
    radial-gradient(circle at left bottom, rgba(31,89,255,0.22), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
.home-section--soft {
  background: linear-gradient(180deg, #f3f5f8 0%, #f8fafc 100%);
}
.home-section--about {
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(31,89,255,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.home-section--clients {
  text-align: center;
  padding-top: 68px;
  padding-bottom: 72px;
}
.home-section--clients .section-head {
  display: block;
  margin-bottom: 34px;
}
.home-section--clients .section-head p {
  margin: 14px auto 0;
}
.home-intro {
  display: grid;
  gap: 24px;
  margin-top: -44px;
  position: relative;
  z-index: 4;
}
.home-intro__copy {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
}
.home-intro__copy h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}
.home-intro__copy p {
  margin-top: 14px;
  max-width: 720px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.home-product-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 252px;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.05);
  box-shadow: 0 12px 34px rgba(17, 34, 78, 0.07);
  text-align: center;
}
.home-product-card__media {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 138px;
}
.home-product-card__media img {
  max-height: 118px;
  width: auto;
  object-fit: contain;
}
.home-product-card h3 {
  font-size: 18px;
  line-height: 1.45;
  color: #24324a;
}
.home-product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.home-solution-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.solution-menu {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 18px;
}
.solution-menu__item {
  position: relative;
  min-height: 52px;
  padding: 0 18px 0 26px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  text-align: left;
  color: rgba(15, 23, 42, 0.56);
}
.solution-menu__item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(15,23,42,0.26);
}
.solution-menu__item.is-active {
  background: rgba(255,255,255,0.86);
  border-color: rgba(31,89,255,0.08);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(17, 34, 78, 0.08);
}
.solution-menu__item.is-active::before {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: var(--primary);
}
.solution-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(15, 30, 72, 0.1);
}
.solution-feature img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.solution-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px 34px 30px;
}
.solution-feature__body h3 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.25;
}
.solution-feature__body p {
  margin-top: 16px;
  max-width: 340px;
}
.about-hero {
  display: grid;
  gap: 34px;
  align-items: center;
}
.about-hero__brand {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 286px;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.98) 22%, rgba(244,247,251,0.98) 23%, rgba(244,247,251,1) 34%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at center, rgba(31,89,255,0.08), rgba(255,255,255,0) 62%);
  color: var(--primary);
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.about-hero__brand::before {
  content: "";
  position: absolute;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.98), rgba(244,247,251,0.96) 46%, rgba(221,228,242,0.88) 72%, rgba(255,255,255,0) 100%);
  box-shadow:
    inset -28px -20px 44px rgba(226,232,244,0.9),
    inset 20px 14px 26px rgba(255,255,255,0.94),
    0 18px 42px rgba(31,89,255,0.08);
  z-index: -1;
}
.home-section--about .facts-grid {
  max-width: 900px;
  margin: 0 auto;
}
.home-section--about .stat-tile {
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}
.home-section--about .stat-tile strong {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 44px);
}
.home-section--about .stat-tile p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.42);
}
.home-news-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.82fr 0.96fr;
  gap: 20px;
}
.home-news-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.05);
  box-shadow: 0 16px 38px rgba(17,34,78,0.08);
}
.home-news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.home-news-card--wide img {
  height: 248px;
}
.home-news-card__body {
  padding: 24px 24px 26px;
}
.home-news-card__body h3 {
  font-size: 20px;
  line-height: 1.45;
  color: #1f2b41;
}
.home-news-card__body p {
  margin-top: 14px;
  font-size: 14px;
}
.home-news-card--highlight {
  display: flex;
  min-height: 100%;
  background:
    radial-gradient(circle at left top, rgba(255,255,255,0.16), transparent 32%),
    linear-gradient(180deg, #2461ff 0%, #0b3fc6 100%);
  color: #fff;
}
.home-news-card--highlight .home-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
}
.home-news-card--highlight h3,
.home-news-card--highlight p {
  color: #fff;
}
.home-news-card--highlight .button {
  display: none;
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
}
.client-logo {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(15, 23, 42, 0.52);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: none;
}
.design-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 999px;
  background: rgba(4, 9, 21, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(5, 10, 26, 0.22);
}
.design-toggle__link,
.design-toggle__ghost {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.design-toggle__link.is-active {
  background: #fff;
  color: var(--primary);
}
.design-toggle__ghost {
  background: rgba(255,255,255,0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: var(--space-24);
  transition: min-height .24s ease, gap .24s ease;
}
.brand {
  position: relative;
  z-index: 34;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(150px, 18vw, 186px);
  transition: width .24s ease, height .24s ease, filter .24s ease;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-48);
  flex: 1;
  justify-content: center;
  padding-bottom: var(--nav-hover-buffer);
  margin-bottom: calc(var(--nav-hover-buffer) * -1);
}
.site-nav-item {
  position: relative;
}
.site-nav-item--has-children {
  position: static;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding-bottom: var(--nav-hover-buffer);
  margin-bottom: calc(var(--nav-hover-buffer) * -1);
}
.nav-link {
  position: relative;
  padding: 10px 0;
  font-size: var(--fs-18);
  color: #fff;
}
.nav-link__label {
  display: inline-block;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: #fff; font-weight: 700; }
.site-subnav {
  position: absolute;
  top: var(--site-subnav-top);
  left: 50%;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  padding: 12px clamp(24px, 4vw, 48px) 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 0 0 18px 18px;
  background: rgba(255,255,255,0.72);
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.06),
    0 24px 52px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.site-subnav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 168px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.site-subnav__link:hover,
.site-subnav__link:focus-visible {
  color: var(--primary);
  transform: translateX(2px);
  box-shadow: none;
}
.site-nav-item:hover > .site-subnav,
.site-nav-item:focus-within > .site-subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header-tools { display: flex; align-items: center; gap: 12px; }
.header-action {
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--primary);
  font-weight: 700;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.header-search-toggle,
.home-header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
}

.header-lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 72px;
  height: 38px;
  padding: 0 12px;
  text-decoration: none;
}

.header-action:hover,
.header-action:focus-visible {
  background: rgba(31, 89, 255, 0.08);
  border-color: rgba(31, 89, 255, 0.12);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.header-lang-toggle__icon,
.header-search-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.header-lang-toggle__icon svg,
.header-search-toggle__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-lang-toggle__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.header-action--solid {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.96);
  border-bottom-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled .header-inner {
  min-height: var(--header-height-scrolled);
}

.site-header.is-scrolled .site-subnav {
  top: var(--site-subnav-top-scrolled);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(31,89,255,0.06);
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--primary);
}
.page-hero {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center/cover no-repeat;
  transform: scale(1.04);
}
.page-hero__overlay {
  height: var(--hero-height);
  position: absolute;
  inset: 0;
}
.page-hero__content {
  position: relative;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  z-index: 1;
}
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: var(--space-16);
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-16);
}
.hero-tabs { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-tab {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
}
.hero-tab.is-active { background: #fff; color: var(--primary); }
main section { padding: var(--section-space) 0; background-color: #f5f5f5; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-48);
}
.section-head h2 { font-size: clamp(28px, 3.2vw, var(--fs-48)); line-height: 1.1; }
.section-head p { margin-top: var(--space-8); max-width: 680px; color: var(--text-body); }
.surface,
.hero-panel,
.story-card,
.value-card,
.product-card,
.solution-card,
.news-card,
.office-card,
.download-card,
.download-row,
.spec-table,
.quote-card,
.pain-card,
.adv-card,
.job-item,
.info-card,
.form-card,
.article-layout__main,
.article-layout__aside {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 32px;
  align-items: stretch;
  margin-top: -86px;
  position: relative;
  z-index: 3;
}
.hero-panel { padding: 34px; }
.hero-panel h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.04; }
.hero-panel p { margin-top: 16px; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta,
.metric-strip,
.facts-grid,
.stat-grid,
.reason-grid,
.tile-grid,
.solution-grid,
.product-grid,
.news-grid,
.download-grid,
.office-grid,
.honor-grid,
.cert-grid,
.adv-grid,
.quote-grid,
.pain-grid,
.thumb-grid,
.form-grid,
.article-suggest,
.culture-grid,
.story-grid,
.spec-wrap,
.side-layout,
.article-layout,
.footer-top,
.footer-bottom,
.info-card__list {
  display: grid;
  gap: 20px;
}
.hero-meta,
.metric-strip,
.facts-grid,
.stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solution-grid,
.product-grid,
.news-grid,
.download-grid,
.reason-grid,
.tile-grid,
.quote-grid,
.adv-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.office-grid,
.honor-grid,
.cert-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pain-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.thumb-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.culture-grid { grid-template-columns: 1.3fr repeat(3, .7fr); }
.story-grid,
.spec-wrap,
.article-layout { grid-template-columns: 1fr 1fr; }
.side-layout { grid-template-columns: 280px minmax(0, 1fr); }
.article-layout { grid-template-columns: minmax(0, 1.3fr) 320px; }
.form-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.42), transparent 32%), linear-gradient(180deg, rgba(17,54,166,.92), rgba(4,9,21,.95));
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: calc(var(--radius-lg) - 10px);
}
.stat-tile,
.metric,
.filter-bar,
.download-filter,
.side-menu {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(10px);
}
.stat-tile strong,
.metric strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--primary);
  margin-bottom: 8px;
}
.product-card,
.solution-card,
.news-card,
.office-card,
.story-card,
.value-card { overflow: hidden; }
.product-card__media {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 20px;
  background: radial-gradient(circle at 50% 18%, rgba(31,89,255,0.12), transparent 34%), linear-gradient(180deg, #fdfefe, #eef3fb);
}
.product-card__media img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}
.product-card__body,
.solution-card__body,
.news-card__body,
.office-card__body,
.story-card__body,
.value-card__body,
.info-card,
.form-card,
.download-card,
.article-layout__main,
.article-layout__aside,
.spec-table,
.quote-card,
.pain-card,
.adv-card { padding: 24px; }
.product-card h3,
.solution-card h3,
.news-card h3,
.office-card h3,
.story-card h3,
.value-card h3,
.download-card h3 { font-size: 22px; line-height: 1.3; }
.product-card p,
.solution-card p,
.news-card p,
.office-card p,
.story-card p,
.value-card p,
.download-card p,
.info-card p { margin-top: 12px; }
.download-library {
  display: grid;
  gap: 60px;
}
.downloads-shell__content {
  background-color: #f5f5f5;
}
.application-list-shell--cases {
  .download-library__filters {
    margin-top: -40px;
  }
}


.download-library__filters {
  display: grid;
  gap: 20px;
  padding: 0 200px;
}

.download-library__filters-row:last-child {
  grid-template-columns: minmax(0, 1fr) 122px;
}

.download-library__filters-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.download-library__filters-row.download-library__filters-row--triple {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 122px;
}

.download-library__select,
.download-library__search {
  position: relative;
  display: block;
}

.download-library__select::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid #9aa3b1;
  border-bottom: 1.8px solid #9aa3b1;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.download-library__select-clear {
  position: absolute;
  top: 50%;
  right: 44px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.58);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.download-library__select-clear:hover,
.download-library__select-clear:focus-visible {
  background: rgba(31, 89, 255, 0.14);
  color: var(--primary);
  outline: none;
}

.download-library__select-clear[hidden] {
  display: none;
}

.download-library-section {
  padding: 80px 0;
}

.download-library__filters select,
.download-library__filters input,
.download-software-search input {
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #E9EAEB;
  color: #666;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.95);
  transition: box-shadow .22s ease, background-color .22s ease;
}

.download-library__filters select {
  padding-right: 78px;
  appearance: none;
}

.download-library__filters select:focus,
.download-library__filters input:focus,
.download-software-search input:focus {
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(31, 97, 255, 0.22), 0 0 0 4px rgba(31, 97, 255, 0.06);
}

.download-library__filters input::placeholder,
.download-software-search input::placeholder {
  color: #666;
}

.download-library__button {
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E9EAEB;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.download-library__button.is-primary {
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 80, 223, 0.16);
}

.download-library__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.download-library__button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-library__list {
  display: grid;
  gap: 14px;
}

.download-library-row[hidden] {
  display: none !important;
}

.download-library-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.download-library-row:hover {
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.98) 0%, rgba(36, 78, 202, 0.98) 72%, rgba(20, 80, 223, 0.94) 100%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 24%);
}

.download-library-row:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 97, 255, 0.14);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
}

.download-library-row__main {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.download-library-row__icon {
  width: 24px;
  height: 28px;
  flex: 0 0 auto;
  color: #20242b;
}

.download-library-row__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.download-library-row__icon text {
  fill: #fff;
  font-size: 5.6px;
  font-weight: 700;
  letter-spacing: .08em;
  font-family: "Arial Black", Arial, sans-serif;
}

.download-library-row__body {
  min-width: 0;
}

.download-library-row__body h3 {
  margin: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 600;
  color: #1f2937;
}

.download-library-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.download-library-row__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #98a1b2;
}

.download-library-row__meta em,
.download-library-row__meta strong {
  font-style: normal;
  font-weight: 400;
}

.download-library-row__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7b8498;
  font-size: 15px;
  font-weight: 600;
  transition: color .22s ease;
}

.download-library-row__action-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #fff;
  color: #98a1b2;
  transition: border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.download-library-row__action-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-library-row:hover .download-library-row__icon,
.download-library-row:hover .download-library-row__body h3,
.download-library-row:hover .download-library-row__meta span,
.download-library-row:hover .download-library-row__action {
  color: #fff;
}

.download-library-row:hover .download-library-row__action-icon {
  border-color: rgba(255, 255, 255, 0.2);
}

.download-library-row:hover .download-library-row__action {
  color: #fff;
}

.product-card .text-link,
.solution-card .text-link,
.news-card .text-link { margin-top: 18px; }
.solution-card img,
.news-card img,
.office-card img,
.story-card img,
.article-suggest img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-card--featured {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-column: span 3;
}
.news-card--featured img { height: 100%; min-height: 280px; }
.story-card { display: grid; grid-template-columns: .94fr 1.06fr; }
.story-card img { min-height: 320px; height: 100%; object-fit: cover; }
.value-card { min-height: 240px; position: relative; }
.value-card::after {
  content: attr(data-mark);
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 48px;
  line-height: 1;
  color: rgba(31,89,255,0.08);
  font-weight: 800;
}
.value-card--featured {
  background: linear-gradient(135deg, rgba(17,54,166,.98), rgba(0,166,255,.88));
  color: #fff;
}
.value-card--featured p { color: rgba(255,255,255,0.78); }
.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(31,89,255,0.25), rgba(31,89,255,0.02));
}
.timeline-item { position: relative; padding-left: 64px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 10px rgba(31,89,255,0.08);
}
.timeline-item strong { display: block; font-size: 26px; color: var(--primary); }
.side-menu h3 { font-size: 16px; margin-bottom: 16px; }
.side-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  color: rgba(15, 23, 42, 0.78);
}
.side-menu a.is-active,
.side-menu a:hover { background: linear-gradient(135deg, rgba(31,89,255,0.08), rgba(0,166,255,0.08)); color: var(--primary); }
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #fff;
  display: inline-flex;
  align-items: center;
  color: rgba(15,23,42,0.7);
}
.filter-pill.is-active { background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; border-color: transparent; }
.product-stage {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 25% 20%, rgba(31,89,255,0.16), transparent 28%), linear-gradient(180deg, #fff, #eef3fb);
  overflow: hidden;
}
.product-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 38px;
}
.page-shell--product-detail {
  background:
    radial-gradient(circle at top center, rgba(31,89,255,0.08), transparent 28%),
    linear-gradient(180deg, #fbfbfc 0%, #f1f3f6 42%, #ffffff 100%);
}

.page-shell--product-detail .header-inner {
  min-height: var(--header-height-scrolled);
}

.page-shell--product-detail > main {
  display: block;
}

.page-shell--product-detail main section {
  padding: 0;
}

.product-detail-page {
  /* padding-bottom: 92px; */
}

.product-detail-cta {
  height: 400px;
  background-image: url(/assets/images/product/contact2.png), url(/assets/images/product/contact1.png);
  background-size: cover, 500% 100%;
  background-position: center, left center;
}

.product-detail-tabs {
  position: sticky;
  top: var(--toolbar-offset);
  z-index: 12;
  background: #f5f5f5;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.product-detail-tabs__list {
  display: flex;
  align-items: center;
  gap: var(--space-48);
  overflow-x: auto;
  scrollbar-width: none;
}

.product-detail-tabs__list::-webkit-scrollbar {
  display: none;
}

.product-detail-tabs__link {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: var(--toolbar-height);
  color: var(--text-strong);
  font-size: var(--fs-18);
  font-weight: 500;
  transition: color .2s ease;
}

.product-detail-tabs__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

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

.product-detail-tabs__link:hover::after,
.product-detail-tabs__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-detail-hero {
  padding: 112px 0 60px !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.58) 28%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(135deg, #fafafa 0%, #f3f3f3 44%, #dadada 100%);
}

.product-detail-hero .products-crumb {
  margin-top: 25px;
  margin-bottom: 34px;
  color: rgba(15, 23, 42, 0.34);
}

.product-detail-hero .products-crumb a:not(.products-crumb__home) {
  color: inherit;
}

.product-detail-hero .products-crumb a:not(.products-crumb__home):hover {
  color: var(--primary);
}

.page-shell--product-detail .products-crumb--detail strong {
  color: #444;
  font-weight: 500;
}

.page-shell--product-detail .products-crumb--detail strong:hover {
  color: #333;
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 760px);
  justify-content: space-between;
  gap: var(--space-64);
  align-items: center;
}

.product-detail-copy {
  padding-top: var(--space-16);
}

.product-detail-copy__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31,89,255,0.08);
  color: var(--primary);
  font-size: var(--fs-12);
  font-weight: 700;
}

.product-detail-copy__title {
  margin-top: var(--space-20);
  font-size: var(--fs-48);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.product-detail-copy__subtitle {
  margin-top: var(--space-16);
  font-size: var(--fs-16);
  line-height: 1.8;
  color: var(--text-soft);
}

.product-detail-copy__summary {
  margin-top: var(--space-32);
  max-width: 560px;
  font-size: var(--fs-16);
  line-height: 30px;
  color: var(--text-body);
}

.product-detail-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-32);
}

.button--consult {
  min-height: 50px;
  padding: 0 16px 0 26px;
  gap: 14px;
  border: 0;
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
  font-size: var(--fs-16);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(20, 80, 223, 0.2);
  cursor: pointer;
  width: fit-content;
}

.button--consult:hover {
  color: #fff;
}

.button--consult__arrow {
  font-size: 30px;
}

.button--consult__arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-visual {
  min-width: 0;
}

.product-detail-stage {
  position: relative;
  height: 370px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-detail-gallery-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
}

.product-detail-gallery__thumb {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-detail-gallery__thumb.is-active,
.product-detail-gallery__thumb:hover {
  border-color: rgba(31,89,255,0.28);
  box-shadow: 0 18px 28px rgba(31,89,255,0.12);
  transform: translateY(-2px);
}

.product-detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-gallery-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  padding-bottom: 2px;
}

.product-detail-gallery-nav__count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
}

.product-detail-gallery-nav__count span:nth-child(1) {
  color: #000;
}

.product-detail-gallery-nav__divider {
  color: rgba(21, 21, 21, 0.24);
}

.product-detail-gallery-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.product-detail-gallery-nav__button {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, opacity .2s ease;
}

.product-detail-gallery-nav__button svg {
  width: 26px;
  height: 26px;
}

.product-detail-gallery-nav__button--prev {
  background: #0f58e8;
  color: #fff;
  box-shadow: 0 18px 32px rgba(15, 88, 232, 0.24);
}

.product-detail-gallery-nav__button--next {
  background: #fff;
  color: #1f2937;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.product-detail-gallery-nav__button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.product-detail-gallery-nav__button--prev:hover:not(:disabled) {
  background: #0a4ed2;
  box-shadow: 0 22px 36px rgba(15, 88, 232, 0.28);
}

.product-detail-gallery-nav__button--next:hover:not(:disabled) {
  background: #f7f8fb;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.product-detail-gallery-nav__button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.product-detail-section {
  padding-top: 34px;
  scroll-margin-top: 170px;
  background-color: #f5f5f5;
}

.product-detail-section--related {
  /* padding-bottom: 100px !important; */
}

.product-detail-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.product-detail-section__head h2 {
  margin-top: 60px;
  font-size: 48px;
  line-height: 1.2;
  color: #121826;
  font-weight: normal;
}

.product-detail-section__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(31, 89, 255, 0.66);
  text-transform: uppercase;
}

.product-detail-section__eyebrow--light {
  color: rgba(255,255,255,0.72);
}

.product-tech-card {
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.product-tech-card + .product-tech-card {
  margin-top: 30px;
}

.product-tech-card__title {
  padding: 20px 28px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.product-tech-card__table-wrap {
  overflow-x: auto;
}

.product-tech-card__image-preview,
.product-table-preview-modal {
  display: none;
}

.product-tech-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0 0;
  table-layout: fixed;
}

.product-tech-table thead th {
  padding: 25px 22px;
  background: #e7e7e7;
  color: #000;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}

.product-tech-table thead th:first-child {
  width: 170px;
  border-radius: 10px 0 0 10px;
}

.product-tech-table thead th:last-child {
  border-radius: 0 10px 10px 0;
}

.product-tech-table tbody th,
.product-tech-table tbody td {
  padding: 20px 22px;
  border: 0;
  font-size: 14px;
  line-height: 1.45;
  vertical-align: middle;
}

.product-tech-table__group {
  width: 170px;
  padding-top: 18px !important;
  background: #f5f5f5 !important;
  border-radius: 10px;
  color: #222;
  font-weight: 700;
  vertical-align: top;
}

.product-tech-table__label {
  /* background: #fff; */
  border-radius: 10px 0 0 10px;
  color: #333;
  font-weight: 500;
}

.product-tech-table__value {
  /* background: #fff; */
  border-radius: 0 10px 10px 0;
  color: #666;
}

.product-tech-card--matrix .product-tech-table {
  min-width: 1120px;
  border-spacing: 0 0;
}

.product-tech-card--matrix .product-tech-table thead th {
  padding: 25px 24px;
  background: #1450df;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.product-tech-card--matrix .product-tech-table thead th:first-child {
  width: 260px;
  border-radius: 10px 0 0 10px;
}

.product-tech-card--matrix .product-tech-table thead th:last-child {
  border-radius: 0 10px 10px 0;
}

.product-tech-table tbody tr:nth-child(2n) {
  background-color: #fff;
}

.product-tech-card--matrix .product-tech-table tbody th,
.product-tech-card--matrix .product-tech-table tbody td {
  padding: 25px 24px;
  /* background: #fff; */
  color: #555;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.product-tech-card--matrix .product-tech-table tbody th {
  border-radius: 10px 0 0 10px;
  color: #4a4a4a;
  font-weight: 500;
}

.product-tech-card--matrix .product-tech-table tbody td:last-child {
  border-radius: 0 10px 10px 0;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

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

.product-drawing-card {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.product-drawing-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

.product-feature-card {
  min-height: 170px;
  padding: 24px 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.product-feature-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31,89,255,0.08), rgba(31,89,255,0.02));
}

.product-feature-card__icon img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.product-feature-card__icon span {
  font-size: 40px;
  line-height: 1;
  color: var(--primary);
}

.product-feature-card h3 {
  font-size: 18px;
  line-height: 1.45;
  color: #111827;
}

.product-feature-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.75;
  color: #6b7280;
}

.product-downloads__tabs {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: -84px 0 36px;
}

.product-detail-section__action {
  flex: 0 0 auto;
}

.product-download-tabs__button {
  min-width: 128px;
  height: 40px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.product-download-tabs__button.is-active {
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
}

.product-download-tabs__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.product-download-tabs__button.is-disabled,
.product-download-tabs__button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.product-download-list {
  display: grid;
  gap: 18px;
}

.product-download-list[hidden] {
  display: none !important;
}

.product-download-list.is-switching {
  animation: product-download-fade-in .32s ease;
}

.product-download-list.is-switching .product-download-item {
  animation: product-download-item-rise .32s ease both;
}

.product-download-list.is-switching .product-download-item:nth-child(2) {
  animation-delay: .04s;
}

.product-download-list.is-switching .product-download-item:nth-child(3) {
  animation-delay: .08s;
}

@keyframes product-download-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes product-download-item-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.product-download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 24px 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.product-download-item__main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
}

.product-download-item__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #4b5565;
}

.product-download-item__icon svg {
  width: 100%;
  height: 100%;
}

.product-download-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-download-item__body h3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #111;
}

.product-download-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.product-download-item__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #9ca3af;
}

.product-download-item__meta-item em {
  font-style: normal;
  color: #777;
}

.product-download-item__meta-item strong {
  font-weight: 400;
  color: #8f8f8f;
}

.product-download-item__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3f3f46;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
}

.product-download-item__action-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.product-download-item__action-icon svg {
  width: 18px;
  height: 18px;
}

.product-download-item__action:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.product-download-item__action:hover .product-download-item__action-icon {
  border-color: rgba(31, 89, 255, 0.22);
  color: var(--primary);
  box-shadow: 0 10px 18px rgba(31, 89, 255, 0.1);
}

.product-related-grid,
.related-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.product-related-carousel-wrap {
  margin-top: 4px;
}

.product-related-carousel__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.product-related-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #1854df;
  background: #1854df;
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 84, 223, 0.22);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease, border-color .24s ease;
  cursor: pointer;
}

.product-related-carousel__arrow .button--consult__arrow {
  display: inline-grid;
  place-items: center;
}

.product-related-carousel__arrow .home-product-item__icon {
  width: 100%;
  height: 100%;
  color: inherit;
  border: 0;
  background: transparent;
  transform: none;
}

.product-related-carousel__arrow .home-product-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-related-carousel__arrow:hover {
  transform: translateY(-1px);
  background: #1146c2;
  border-color: #1146c2;
  box-shadow: 0 18px 34px rgba(17, 70, 194, 0.3);
}

.product-related-carousel__arrow:disabled {
  opacity: .55;
  cursor: default;
  transform: none;
  background: #9bb6f7;
  border-color: #9bb6f7;
  box-shadow: none;
}

.product-related-carousel {
  position: relative;
  overflow: hidden;
}

.product-related-carousel__track {
  display: flex;
  gap: 22px;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.product-related-carousel__track .related-case-card {
  flex: 0 0 calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  min-width: 0;
}

.product-related-carousel__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.product-related-carousel__pager[hidden] {
  display: none;
}

.product-related-carousel__pager-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-related-carousel__pager-dot span {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(24, 84, 223, 0.22);
  transition: background .24s ease, transform .24s ease;
}

.product-related-carousel__pager-dot.is-active span,
.product-related-carousel__pager-dot:hover span {
  background: #1854df;
  transform: scaleX(1.08);
}

.product-related-card,
.related-case-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.05);
}

.product-related-card__media,
.related-case-card__media {
  display: block;
}

.product-related-card__media img,
.related-case-card__media img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
}

.product-related-card__body,
.related-case-card__body {
  padding: 20px 20px 22px;
}

.product-related-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31,89,255,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.product-related-card__body h3,
.related-case-card__body h3 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.35;
  color: #111827;
}

.product-related-card__body p,
.related-case-card__body p {
  margin-top: 10px;
  min-height: 50px;
  font-size: 14px;
  color: #6b7280;
}

.product-related-card__body .product-catalog-card__link,
.related-case-card__body .product-catalog-card__link {
  justify-content: flex-start;
  margin-top: 28px;
  font-size: 15px;
  color: #666;
}

.product-related-card__body .product-catalog-card__dot,
.related-case-card__body .product-catalog-card__dot {
  flex: 0 0 auto;
}

.product-related-card__body .product-catalog-card__link:hover,
.related-case-card__body .product-catalog-card__link:hover {
  color: var(--primary);
}

.product-detail-cta {
  padding: 0;
}

.product-detail-cta__panel {
  position: relative;
  color: #fff;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-cta__panel::before,
.product-detail-cta__panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.product-detail-cta__panel::before {
  right: -56px;
  top: -48px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-detail-cta__panel::after {
  right: 70px;
  bottom: -86px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.product-detail-cta__copy,
.product-detail-cta__aside {
  position: relative;
  z-index: 1;
}

.product-detail-cta__copy {
  flex: 1 1 auto;
  max-width: 760px;
}

.product-detail-cta__panel h2 {
  font-size: var(--fs-60);
  line-height: 1.18;
  margin-bottom: var(--space-48);
}

.product-detail-cta__panel p {
  font-size: var(--fs-24);
  line-height: 1;
  margin-bottom: var(--space-24);
  color: rgba(255,255,255,1);
}

.product-detail-cta__aside {
  flex: 0 0 auto;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-24);
}

.product-detail-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  min-height: 42px;
  padding: 0 var(--space-16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-12);
  letter-spacing: 0.06em;
}

.product-detail-cta__badge-line {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.58);
}

.product-detail-cta__button {
  min-width: 156px;
  height: 50px;
  padding: 0 12px 0 28px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.14);
  transition: transform .2s ease, box-shadow .2s ease;
  width: fit-content;
  cursor: pointer;
}

.product-detail-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 38px rgba(0, 0, 0, 0.18);
}

.product-detail-cta__button-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(15, 87, 232, 0.1); */
}

.product-detail-cta__button-icon svg {
  /* width: 18px;
  height: 18px; */
}

.page-shell--application-detail {
  background:
    radial-gradient(circle at top center, rgba(31, 89, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfbfc 0%, #f2f4f7 42%, #ffffff 100%);
}

.page-shell--application-detail .header-inner {
  /* min-height: 82px; */
}

.page-shell--application-detail > main {
  display: block;
}

.page-shell--application-detail main section {
  padding: 0;
}

.application-detail-page {
  /* padding-bottom: 96px; */
}

.application-detail-hero {
  position: relative;
  overflow: hidden;
  height: 665px;
  padding: 112px 0 40px !important;
  background:
    linear-gradient(90deg, rgba(7, 74, 219, 0.96) 0%, rgba(10, 86, 232, 0.92) 18%, rgba(8, 79, 227, 0.72) 32%, rgba(6, 55, 159, 0.12) 54%, rgba(5, 18, 52, 0) 70%),
    linear-gradient(180deg, rgba(4, 10, 28, 0.14), rgba(4, 10, 28, 0.14)),
    var(--application-hero-image) center/cover no-repeat;
}

.application-detail-hero .products-crumb {
  margin-top: 25px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.application-detail-hero .products-crumb a:not(.products-crumb__home), strong {
  color: inherit;
}

.application-detail-hero .products-crumb a:not(.products-crumb__home):hover, strong:hover {
  color: #fff;
}

.application-detail-hero .products-crumb__home {
  color: rgba(255, 255, 255, 0.92);
}

.application-detail-hero__inner {
  display: flex;
  align-items: center;
  height: 460px;
}

.application-detail-hero__copy {
  width: min(100%, 520px);
  padding: 0;
}

.application-detail-hero__copy h1 {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.application-detail-hero__copy p {
  margin-top: 37px;
  max-width: 800px;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}

.application-detail-hero__button {
  margin-top: 140px;
  min-width: 144px;
  justify-content: space-between;
  background: #fff;
  color: #101828;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(8, 27, 84, 0.18);
}

.application-detail-hero__button:hover {
  background: #fff;
  box-shadow: 0 22px 32px rgba(8, 27, 84, 0.24);
  color: #111827;
}

.application-detail-hero__button .button--consult__arrow {
  color: #111827;
}

.application-scenario-tabs {
  position: sticky;
  top: var(--toolbar-offset);
  z-index: 12;
  background: #f5f5f5;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.application-scenario-tabs__list {
  display: flex;
  align-items: center;
  gap: var(--space-48);
  overflow-x: auto;
  scrollbar-width: none;
}

.application-scenario-tabs__list::-webkit-scrollbar {
  display: none;
}

.application-scenario-tabs__button {
  position: relative;
  flex: 0 0 auto;
  min-height: var(--toolbar-height);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  font-size: var(--fs-18);
  font-weight: 500;
  transition: color .2s ease;
}

.application-scenario-tabs__button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.application-scenario-tabs__button:hover {
  color: var(--primary);
}

.application-scenario-tabs__button.is-active {
  color: var(--primary);
}

.application-scenario-tabs__button:hover::after,
.application-scenario-tabs__button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.application-scenario-panel[hidden] {
  display: none !important;
}

.application-scene-intro {
  background-color: #fff;
}

.application-scene-intro,
.application-scene-section,
.application-scene-cta {
  padding-top: 34px;
}

.application-scene-intro__copy,
.application-scene-point,
.application-value-card,
.product-catalog-card--related {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.application-scene-intro__copy {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 150px 72px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.application-scene-section__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(31, 89, 255, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.application-scene-section__eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
}

.application-scene-intro__copy h2,
.application-scene-section__head h2 {
  padding: 110px 0 50px;
  font-size: 48px;
  line-height: 1;
  color: #000;
  font-weight: normal;
}

.application-scene-intro__copy p {
  max-width: 860px;
  margin: 0 auto 0;
  font-size: 16px;
  line-height: 2.05;
  color: #606b80;
}

.application-scene-section__energy {
  padding-bottom: 150px !important;
  background-image: url('/assets/images/solution/energy.png');
  background-size: cover;
  background-position: center;
}

.application-scene-section__head {
  /* max-width: 720px; */
  /* margin-bottom: 22px; */
}

.application-scene-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.application-scene-point {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 30px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, color .28s ease;
}

.application-scene-point::before,
.application-scene-point::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.application-scene-point::before {
  width: 344px;
  height: 344px;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate3d(10px, 10px, 0) scale(.88);
  z-index: 2;
}

.application-scene-point::after {
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 10px 22px rgba(255, 255, 255, 0.24));
  transform: translate3d(10px, 10px, 0) scale(.72) rotate(8deg);
}

.application-scene-point::before {
  background: radial-gradient(circle, rgb(255 255 255) 0%, rgb(255 255 255 / 47%) 42%, rgb(206 30 30 / 0%) 72%);
  opacity: 1;
  top: -150px;
  left: -20px;
}

.application-scene-point:hover::before,
.application-scene-point:focus-within::before  {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 72%);
  right: -12px;
  bottom: -12px;
  top: auto;
  left: auto;
}

.application-scene-point:hover,
.application-scene-point:focus-within {
  background: linear-gradient(180deg, #1a51ce 0%, #1350db 100%);
  box-shadow: 0 28px 46px rgba(20, 80, 223, 0.18);
  transform: translateY(-4px);
}

.application-scene-point:hover::before,
.application-scene-point:hover::after,
.application-scene-point:focus-within::before,
.application-scene-point:focus-within::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.application-scene-point__index {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 72px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: #d0dcfb;
  text-shadow: none;
  opacity: 1;
  filter: none;
  -webkit-text-fill-color: #d0dcfb;
}

.application-scene-point h3 {
  position: relative;
  z-index: 1;
  padding-top: 82px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}

.application-scene-point p {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #666;
  min-height: 80px;
}

.application-scene-point:hover .application-scene-point__index,
.application-scene-point:focus-within .application-scene-point__index {
  color: rgba(255, 255, 255, 0.96);
}

.application-scene-point:hover h3,
.application-scene-point:hover p,
.application-scene-point:focus-within h3,
.application-scene-point:focus-within p {
  color: #fff;
}

.application-solution-stack {
  display: grid;
  gap: 28px;
}
.application-scene-section--value {
  padding-bottom: 150px !important;
  background-image: url('/assets/images/solution/bg.png');
  background-size: cover;
  background-position: center;
}

.application-scene-section--value .application-scene-section__head h2 {
  color: #fff;
}

.application-scene-section--solution {
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
}

.application-solution-card {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(700px, 1fr);
  align-items: center;
  gap: 100px;
  padding: 100px 0;
}

.application-solution-card.is-text-only {
  grid-template-columns: 1fr;
  padding: 54px 60px;
}

.application-solution-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 0;
}

.application-solution-card__copy h3 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #000;
  font-weight: 700;
}

.application-solution-card__body {
  margin-top: 45px;
  max-width: 660px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}

.application-solution-card__body > :first-child {
  margin-top: 0;
}

.application-solution-card__body > :last-child {
  margin-bottom: 0;
}

.application-solution-card__body p,
.application-solution-card__body div,
.application-solution-card__body ul,
.application-solution-card__body ol {
  margin: 0 0 18px;
}

.application-solution-card__body ul,
.application-solution-card__body ol {
  padding-left: 1.2em;
}

.application-solution-card__body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.application-solution-card__media {
  max-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #edf2fb 0%, #e2ebf8 100%);
}

.application-solution-card__media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.application-solution-card__media video {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #000;
}

.application-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 36px;
}

.application-value-grid.is-single {
  grid-template-columns: 1fr;
}

.application-value-card {
  position: relative;
  display: flex;
  min-height: 262px;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  padding: 34px 52px 38px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #fff 100%);
  box-shadow: 0 24px 48px rgba(10, 23, 64, 0.12);
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease, color .28s ease;
}

.application-value-card::before,
.application-value-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.application-value-card::before {
  right: -24px;
  bottom: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0) 74%);
  transform: translate3d(12px, 12px, 0) scale(.86);
}

.application-value-card::after {
  right: -56px;
  bottom: -42px;
  width: 418px;
  height: 418px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 18px 26px rgba(255, 255, 255, 0.2));
  transform: translate3d(10px, 10px, 0) scale(.75) rotate(10deg);
}

.application-value-card:hover,
.application-value-card:focus-within {
  background: linear-gradient(180deg, #1a51ce 0%, #1350db 100%);
  box-shadow: 0 28px 46px rgba(20, 80, 223, 0.18);
  transform: translateY(-4px);
}

.application-value-card:hover::before,
.application-value-card:hover::after,
.application-value-card:focus-within::before,
.application-value-card:focus-within::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.application-value-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.application-value-card__icon img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  transition: filter .28s ease, opacity .28s ease;
}

.application-value-card__body {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.application-value-card__body h3 {
  font-size: 24px;
  line-height: 1;
  color: #000;
  font-weight: 600;
}

.application-value-card__body p {
  margin-top: 28px;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}

.application-value-card:hover .application-value-card__icon img,
.application-value-card:focus-within .application-value-card__icon img {
  filter: brightness(0) invert(1);
}

.application-value-card:hover .application-value-card__body h3,
.application-value-card:hover .application-value-card__body p,
.application-value-card:focus-within .application-value-card__body h3,
.application-value-card:focus-within .application-value-card__body p {
  color: #fff;
}

.application-scene-section--products {
  /* padding-bottom: 150px !important; */
}

.application-related-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.thumb-grid button {
  min-height: 76px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.thumb-grid img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.spec-table table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  text-align: left;
}
.spec-table th { color: var(--muted); font-weight: 500; width: 34%; }
.adv-card span,
.info-card__icon,
.job-item__toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,89,255,0.12), rgba(0,166,255,0.1));
  color: var(--primary);
  font-weight: 800;
}
.adv-card span { margin-bottom: 16px; }
.pain-card.is-highlight,
.download-card--featured,
.download-row--featured {
  background: linear-gradient(135deg, rgba(17,54,166,.98), rgba(0,166,255,.88));
  color: #fff;
}
.pain-card.is-highlight p,
.download-card--featured p,
.download-row--featured p,
.download-row--featured h3 { color: rgba(255,255,255,0.76); }
.download-card,
.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.download-row { margin-bottom: 14px; }

.download-report-list {
  display: grid;
  gap: 14px;
}

.download-report-row,
.download-library-row,
.product-download-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
  padding: 22px 26px 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}

.download-report-row::before,
.download-library-row::before,
.product-download-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(21, 84, 227, 0.98) 0%, rgba(18, 74, 214, 0.96) 72%, rgba(57, 125, 255, 0.98) 100%);
  opacity: 0;
  transition: opacity .24s ease;
}

.download-report-row::after,
.download-library-row::after,
.product-download-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 240px;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  clip-path: polygon(40% 0, 100% 0, 72% 100%, 12% 100%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.download-report-row:hover,
.download-report-row:focus-within,
.download-library-row:hover,
.download-library-row:focus-within,
.product-download-item:hover,
.product-download-item:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(19, 62, 172, 0.16);
}

.download-report-row:hover::before,
.download-report-row:hover::after,
.download-report-row:focus-within::before,
.download-report-row:focus-within::after,
.download-library-row:hover::before,
.download-library-row:hover::after,
.download-library-row:focus-within::before,
.download-library-row:focus-within::after,
.product-download-item:hover::before,
.product-download-item:hover::after,
.product-download-item:focus-within::before,
.product-download-item:focus-within::after {
  opacity: 1;
}

.download-report-row__main,
.download-report-row__action,
.download-library-row__main,
.download-library-row__action,
.product-download-item__main,
.product-download-item__action {
  position: relative;
  z-index: 1;
}

.download-report-row__main,
.download-library-row__main,
.product-download-item__main {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.download-report-row__icon,
.download-library-row__icon,
.product-download-item__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  color: #667085;
  transition: color .24s ease;
}

.download-report-row__icon svg,
.download-library-row__icon svg,
.product-download-item__icon svg {
  width: 28px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-report-row__icon text,
.download-library-row__icon text,
.product-download-item__icon text {
  fill: currentColor;
  stroke: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  font-family: Arial, sans-serif;
}

.download-report-row__body,
.download-library-row__body,
.product-download-item__body {
  display: block;
  min-width: 0;
}

.download-report-row__body h3,
.download-library-row__body h3,
.product-download-item__body h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2937;
  transition: color .24s ease;
}

.download-report-row__body h3 > span:last-child,
.download-library-row__body h3 > span:last-child,
.product-download-item__body h3 > span:last-child {
  min-width: 0;
}

.download-report-row__meta,
.download-library-row__meta,
.product-download-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  margin-top: 8px;
}

.download-report-row__meta span,
.download-library-row__meta span,
.product-download-item__meta-item {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.4;
  color: #98a2b3;
  transition: color .24s ease;
}

.download-report-row__meta em,
.download-report-row__meta strong,
.download-library-row__meta em,
.download-library-row__meta strong,
.product-download-item__meta-item em,
.product-download-item__meta-item strong {
  font-style: normal;
}

.product-download-item__meta-item em {
  color: inherit;
}

.download-report-row__meta strong,
.download-library-row__meta strong,
.product-download-item__meta-item strong {
  font-weight: 500;
  color: #7b8798;
  transition: color .24s ease;
}

.download-report-row__action,
.download-library-row__action,
.product-download-item__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #7b8798;
  font-size: 14px;
  font-weight: 500;
}

.download-report-row__action-icon,
.download-library-row__action-icon,
.product-download-item__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.96);
  color: #7b8798;
  transition: background .24s ease, border-color .24s ease, color .24s ease;
}

.download-report-row__action-icon svg,
.download-library-row__action-icon svg,
.product-download-item__action-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-report-row:hover .download-report-row__icon,
.download-report-row:hover .download-report-row__body h3,
.download-report-row:hover .download-report-row__meta span,
.download-report-row:hover .download-report-row__meta strong,
.download-report-row:hover .download-report-row__action,
.download-library-row:hover .download-library-row__icon,
.download-library-row:hover .download-library-row__body h3,
.download-library-row:hover .download-library-row__meta span,
.download-library-row:hover .download-library-row__meta strong,
.download-library-row:hover .download-library-row__action,
.product-download-item:hover .product-download-item__icon,
.product-download-item:hover .product-download-item__body h3,
.product-download-item:hover .product-download-item__meta-item,
.product-download-item:hover .product-download-item__meta-item strong,
.product-download-item:hover .product-download-item__action,
.download-report-row:focus-within .download-report-row__icon,
.download-report-row:focus-within .download-report-row__body h3,
.download-report-row:focus-within .download-report-row__meta span,
.download-report-row:focus-within .download-report-row__meta strong,
.download-report-row:focus-within .download-report-row__action,
.download-library-row:focus-within .download-library-row__icon,
.download-library-row:focus-within .download-library-row__body h3,
.download-library-row:focus-within .download-library-row__meta span,
.download-library-row:focus-within .download-library-row__meta strong,
.download-library-row:focus-within .download-library-row__action,
.product-download-item:focus-within .product-download-item__icon,
.product-download-item:focus-within .product-download-item__body h3,
.product-download-item:focus-within .product-download-item__meta-item,
.product-download-item:focus-within .product-download-item__meta-item strong,
.product-download-item:focus-within .product-download-item__action {
  color: rgba(255, 255, 255, 0.94);
}

.download-report-row:hover .download-report-row__action-icon,
.download-report-row:focus-within .download-report-row__action-icon,
.download-library-row:hover .download-library-row__action-icon,
.download-library-row:focus-within .download-library-row__action-icon,
.product-download-item:hover .product-download-item__action-icon,
.product-download-item:focus-within .product-download-item__action-icon {
  background: rgba(255, 255, 255, 0.94);
  border-color: transparent;
  color: #1950da;
}
.solution-list {
  display: grid;
  gap: 22px;
}
.solution-list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--shadow-soft);
}
.solution-list__item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.solution-list__body {
  padding: 32px;
}
.solution-list__body h3 {
  margin-top: 16px;
  font-size: 34px;
}
.solution-list__body p {
  margin-top: 14px;
}
.solution-list__body .button {
  margin-top: 26px;
}
.article-layout__main img { border-radius: 22px; margin: 28px 0; }
.article-layout__main p + p { margin-top: 18px; }
.article-layout__main .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.article-suggest article { display: grid; gap: 12px; }
.article-suggest img { height: 140px; border-radius: 18px; }
.office-card__body ul,
.list-check {
  padding-left: 18px;
  color: var(--muted);
}
.list-check { list-style: none; margin: 18px 0 0; display: grid; gap: 10px; padding-left: 0; }
.list-check li { position: relative; padding-left: 26px; }
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid textarea { grid-column: 1 / -1; min-height: 150px; }
.form-grid input,
.form-grid select,
.form-grid textarea,
.search-input {
  width: 100%;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.download-software-section {
  padding: 80px 0;
}

.download-software-shell {
  display: grid;
  gap: 80px;
}

.download-software-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 18px;
  align-items: center;
  padding: 0 200px;
}

.download-software-search .download-library__button {
  display: inline-flex;
  width: 100%;
}

.download-software-search .download-library__button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

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

.download-software-card {
  position: relative;
  display: flex;
  min-height: 222px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px 24px;
  overflow: hidden;
  border-radius: 22px;
  background:
    url('/assets/images/download/app.png') right center / cover no-repeat,
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
  transition: transform .26s ease, box-shadow .26s ease, color .26s ease, background-image .26s ease;
}

.download-software-card:hover {
  transform: translateY(-4px);
  background:
    url('/assets/images/download/app_active.png') right center / cover no-repeat,
    linear-gradient(135deg, #1d5cf8 0%, #114bde 100%);
  box-shadow: 0 18px 36px rgba(31, 89, 255, 0.18);
}

.download-software-card__copy,
.download-software-card__action {
  position: relative;
  z-index: 1;
}

.download-software-card h3 {
  margin: 0;
  max-width: 86%;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #202737;
  transition: color .26s ease;
}

.download-software-card__meta {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.download-software-card__meta li {
  display: flex;
  gap: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: #8a93a4;
  transition: color .26s ease;
}

.download-software-card__meta strong {
  color: inherit;
  font-weight: 500;
}

.download-software-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  transition: color .26s ease;
}

.download-software-card__action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #9aa3b2;
  transition: background .26s ease, border-color .26s ease, color .26s ease;
}

.download-software-card__action-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.download-software-card:hover h3,
.download-software-card:hover .download-software-card__action {
  color: rgba(255, 255, 255, 0.94);
}

.download-software-card:hover .download-software-card__meta li {
  color: rgba(255, 255, 255, 0.82);
}

.download-software-card:hover .download-software-card__action-icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.95);
  color: #1f59ff;
}

.download-software-card[hidden] {
  display: none !important;
}

.download-software-empty[hidden] {
  display: none;
}

.page-shell--search {
  background: #f5f7fb;
}

.page-shell--search main {
  padding-top: 112px;
}

.page-shell--search .site-header,
.page-shell--search .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.page-shell--search .brand img {
  filter: none;
}

.page-shell--search .nav-link,
.page-shell--search .header-action {
  color: rgba(15, 23, 42, 0.72);
}

.page-shell--search .nav-link.is-active {
  color: var(--primary);
}

.page-shell--search .nav-link::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.site-search-page {
  padding: 46px 0 84px;
}

.site-search-page__head {
  display: grid;
  gap: 18px;
}

.site-search-page__intro h1 {
  margin: 18px 0 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.site-search-page__intro p {
  margin-top: 16px;
  color: #667085;
}

.site-search-page__intro strong {
  color: #1f59ff;
}

.site-search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.site-search-toolbar__field input,
.site-search-toolbar__select select {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(148, 163, 184, 0.14);
  color: #111827;
}

.site-search-toolbar__field input:focus,
.site-search-toolbar__select select:focus {
  outline: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04), inset 0 0 0 1px rgba(31, 89, 255, 0.24);
}

.site-search-toolbar__submit {
  min-width: 138px;
  height: 56px;
  padding: 0 22px 0 18px;
  gap: 12px;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(20, 80, 223, 0.24);
}

.site-search-toolbar__submit:hover {
  box-shadow: 0 22px 40px rgba(20, 80, 223, 0.28);
}

.site-search-toolbar__submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.18); */
  flex-shrink: 0;
}

.site-search-toolbar__submit-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.site-search-tabs__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14);
  color: #475467;
  font-size: 14px;
  font-weight: 600;
}

.site-search-tabs__item strong {
  color: #98a2b3;
  font-size: 13px;
}

.site-search-tabs__item.is-active {
  background: linear-gradient(135deg, #1f61ff, #1450df);
  color: #fff;
  box-shadow: 0 16px 34px rgba(20, 80, 223, 0.18);
}

.site-search-tabs__item.is-active strong {
  color: rgba(255, 255, 255, 0.78);
}

.site-search-results {
  margin-top: 28px;
}
.site-search-group {
  padding: 60px 0 0;
}

.site-search-group + .site-search-group {
  margin-top: 38px;
}

.site-search-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.site-search-group__head h2 {
  font-size: 28px;
  line-height: 1.18;
}

.site-search-group__head span {
  color: #98a2b3;
  font-size: 14px;
}

.site-search-group__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-search-group__rows {
  display: grid;
  gap: 18px;
}

.search-result-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.search-result-card__link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 208px;
}

.search-result-card__media {
  position: relative;
  background: linear-gradient(180deg, #eef4ff 0%, #f7faff 100%);
}

.search-result-card__media img,
.search-result-card__placeholder {
  width: 100%;
  height: 100%;
}

.search-result-card__media img {
  object-fit: cover;
}

.search-result-card__placeholder {
  display: grid;
  place-items: center;
  color: rgba(31, 89, 255, 0.74);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background:
    radial-gradient(circle at 24% 20%, rgba(31, 89, 255, 0.18), rgba(31, 89, 255, 0) 38%),
    linear-gradient(180deg, #eef4ff 0%, #f7faff 100%);
}

.search-result-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 24px 22px;
}

.search-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-result-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f6fa;
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.search-result-card h3 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.search-result-card__subtitle {
  margin-top: 10px;
  color: #475467;
  font-size: 15px;
  font-weight: 600;
}

.search-result-card__summary {
  margin-top: 12px;
  color: #667085;
  font-size: 14px;
  line-height: 1.8;
}

.search-result-card__action {
  margin-top: auto;
  padding-top: 20px;
  color: #1f59ff;
  font-size: 14px;
  font-weight: 700;
}
.form-actions { display: flex; justify-content: flex-end; margin-top: 16px; }
.form-showcase {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, rgba(17,54,166,0.92), rgba(4,9,21,0.92)), url('../images/hero-robot.jpeg') center/cover no-repeat;
}
.form-showcase__board {
  width: min(1120px, 100%);
  padding: 32px;
  border-radius: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}
.form-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  opacity: 0.35;
}
.form-showcase__grid img { width: 100%; height: 160px; object-fit: cover; border-radius: 24px; }
.modal-card {
  width: min(560px, calc(100vw - 32px));
  margin: -120px auto 0;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  position: relative;
}
.modal-card h1 { font-size: 34px; margin-bottom: 10px; text-align: center; }
.modal-card .form-grid { margin-top: 26px; }
body.has-modal-open {
  overflow: hidden;
}

.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.site-search-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 32, 0.52);
  backdrop-filter: blur(8px);
}

.site-search-modal__dialog {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
}

.site-search-modal__panel {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  padding: 42px 42px 36px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 34px 84px rgba(7, 14, 32, 0.24);
}

.site-search-modal__close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.site-search-modal__close span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 18px;
  height: 2px;
  border-radius: 999px;
  background: #64748b;
}

.site-search-modal__close span:first-child {
  transform: rotate(45deg);
}

.site-search-modal__close span:last-child {
  transform: rotate(-45deg);
}

.site-search-modal__head p {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #98a2b3;
}

.site-search-modal__head h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.site-search-form {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.site-search-form__field {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f3f6fa;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.site-search-form__field input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: #111827;
}

.site-search-form__field input:focus {
  outline: none;
}

.site-search-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #64748b;
}

.site-search-form__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.site-search-form__types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-search-form__type {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #f3f6fa;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.site-search-form__type:hover {
  transform: translateY(-1px);
  color: #1f59ff;
}

.site-search-form__type.is-active {
  background: linear-gradient(135deg, #1f61ff, #1450df);
  color: #fff;
}

.site-search-form__submit {
  justify-self: flex-start;
}

.product-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.product-inquiry-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.product-inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(3px);
}

.product-inquiry-modal__dialog {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.product-inquiry-modal__panel.modal-card {
  width: min(920px, calc(100vw - 32px));
  margin: 0;
  padding: 44px 70px 36px;
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.2);
}

.product-inquiry-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-inquiry-modal__close span {
  position: absolute;
  top: 16px;
  left: 4px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.8);
}

.product-inquiry-modal__close span:first-child {
  transform: rotate(45deg);
}

.product-inquiry-modal__close span:last-child {
  transform: rotate(-45deg);
}

.product-inquiry-modal__panel h1 {
  margin-bottom: 32px;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
}

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

.product-inquiry-form__full {
  grid-column: 1 / -1;
}

.product-inquiry-form__field {
  position: relative;
  display: block;
}

.product-inquiry-form__field--required::after {
  content: '*必填';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #d14343;
  pointer-events: none;
}

html[lang="en"] .product-inquiry-form__field--required::after {
  content: '*Required';
}

.product-inquiry-form__field--required:not(.product-inquiry-form__captcha-row) input {
  padding-right: 70px;
}

html[lang="en"] .product-inquiry-form__field--required:not(.product-inquiry-form__captcha-row) input {
  padding-right: 104px;
}

.product-inquiry-form input,
.product-inquiry-form select,
.product-inquiry-form textarea {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  background: #f6f6f6;
  color: #1f2937;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .2s ease, background .2s ease;
}

.product-inquiry-form input,
.product-inquiry-form select {
  height: 54px;
}

.product-inquiry-form textarea {
  min-height: 124px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.product-inquiry-form input::placeholder,
.product-inquiry-form textarea::placeholder {
  color: #a3a3a3;
}

.product-inquiry-form select {
  appearance: none;
  color: #666;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 27px) 24px,
    calc(100% - 20px) 24px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.product-inquiry-form input:focus,
.product-inquiry-form select:focus,
.product-inquiry-form textarea:focus {
  outline: none;
  background: #f3f6fb;
  box-shadow: inset 0 0 0 1px rgba(31, 89, 255, 0.24);
}

.product-inquiry-form__captcha-row {
  position: relative;
}

.product-inquiry-form__captcha-row input {
  padding-right: 176px;
}

.product-inquiry-form__captcha-row.product-inquiry-form__field--required::after {
  right: 164px;
}

.product-inquiry-form__captcha {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 142px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,247,247,0.94)),
    repeating-linear-gradient(90deg, rgba(31,89,255,0.08) 0, rgba(31,89,255,0.08) 1px, transparent 1px, transparent 12px);
  color: #2f2f2f;
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: .18em;
  cursor: pointer;
  transform: skewX(-8deg);
}

.product-inquiry-form__feedback {
  min-height: 24px;
  margin: 16px 0 8px;
  font-size: 14px;
  color: #7b8498;
  text-align: center;
}

.product-inquiry-form__feedback.is-error {
  color: #d14343;
}

.product-inquiry-form__feedback.is-success {
  color: #177245;
}

.product-inquiry-form__submit {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  min-width: 220px;
}

.product-inquiry-form__submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-inquiry-form.is-submitting .product-inquiry-form__submit {
  opacity: 0.72;
  cursor: progress;
}

.channel-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.channel-guide-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.channel-guide-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(3px);
}

.channel-guide-modal__dialog {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.channel-guide-modal__panel.modal-card {
  width: min(720px, calc(100vw - 32px));
  margin: 0;
  padding: 44px 42px 36px;
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.2);
}

.channel-guide-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.channel-guide-modal__close span {
  position: absolute;
  top: 16px;
  left: 4px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.8);
}

.channel-guide-modal__close span:first-child {
  transform: rotate(45deg);
}

.channel-guide-modal__close span:last-child {
  transform: rotate(-45deg);
}

.channel-guide-modal__panel h1 {
  margin-bottom: 16px;
  font-size: 30px;
  color: #111827;
}

.channel-guide-modal__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #667085;
  text-align: center;
}

.channel-guide-modal__file {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(31, 97, 255, 0.08);
}

.channel-guide-modal__file strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.channel-guide-modal__file a {
  display: inline-block;
  margin-top: 8px;
  color: #1f61ff;
  font-size: 16px;
  font-weight: 600;
  word-break: break-all;
}

.channel-guide-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.channel-guide-modal__mail {
  min-height: 48px;
  padding: 0 22px;
}

@media (max-width: 767px) {
  .product-inquiry-modal {
    padding: 16px;
  }

  .product-inquiry-modal__panel.modal-card {
    width: min(100%, calc(100vw - 16px));
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .product-inquiry-modal__close {
    top: 14px;
    right: 14px;
  }

  .product-inquiry-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-inquiry-form__captcha-row input {
    padding-right: 20px;
  }

  .product-inquiry-form__captcha {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .channel-guide-modal {
    padding: 16px;
  }

  .channel-guide-modal__panel.modal-card {
    width: min(100%, calc(100vw - 16px));
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .channel-guide-modal__close {
    top: 14px;
    right: 14px;
  }

  .channel-guide-modal__panel h1 {
    font-size: 24px;
  }

  .channel-guide-modal__lead {
    font-size: 14px;
  }

  .channel-guide-modal__file {
    padding: 16px;
  }

  .channel-guide-modal__file a {
    font-size: 15px;
  }

  .channel-guide-modal__actions {
    flex-direction: column;
  }
}
.map-surface {
  position: relative;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 10%, rgba(31,89,255,0.12), transparent 26%),
    radial-gradient(circle at 85% 40%, rgba(0,166,255,0.18), transparent 18%),
    linear-gradient(180deg, #f8fbff, #edf3fb);
  overflow: hidden;
}
.map-surface::before,
.map-surface::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px dashed rgba(31,89,255,0.12);
  right: -10%;
  bottom: -10%;
}
.map-surface::after {
  left: -12%;
  right: auto;
  bottom: -18%;
  width: 380px;
  height: 380px;
}
.info-card--map { max-width: 520px; position: relative; z-index: 2; }
.info-card__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.cta-band {
  background: radial-gradient(circle at 15% 0%, rgba(0,166,255,0.4), transparent 26%), linear-gradient(135deg, #0a1a44, #081124 72%);
  color: #fff;
}
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.cta-band__inner p { color: rgba(255,255,255,0.72); max-width: 560px; }
.site-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-image: url('/assets/images/footer.png');
  background-size: 100% 120%;
  background-position: right bottom;
}

.site-footer__shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.78;
}

.site-footer__shape--one {
  top: -120px;
  right: 140px;
  width: 520px;
  height: 1180px;
  background: rgba(255, 255, 255, 0.035);
  clip-path: polygon(42% 0, 58% 0, 78% 45%, 100% 50%, 78% 55%, 58% 100%, 42% 100%, 22% 55%, 0 50%, 22% 45%);
}

.site-footer__shape--two {
  top: -220px;
  right: -140px;
  width: 420px;
  height: 1280px;
  background: rgba(255, 255, 255, 0.025);
  transform: rotate(7deg);
  clip-path: polygon(42% 0, 58% 0, 78% 45%, 100% 50%, 78% 55%, 58% 100%, 42% 100%, 22% 55%, 0 50%, 22% 45%);
}

.footer-top {
  position: relative;
  z-index: 1;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  padding: 66px 0 48px;
}

.footer-brand img {
  width: 160px;
}

.footer-follow {
  margin-top: 170px;
}

.footer-follow strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-item {
  position: relative;
}

.footer-social-item summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  transition: background .2s ease, transform .2s ease, color .2s ease;
  cursor: pointer;
  list-style: none;
}

.footer-social-item summary::-webkit-details-marker {
  display: none;
}

.footer-social-item summary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-item summary img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.footer-social-item summary:hover,
.footer-social-item[open] summary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-item__qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 168px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(7, 18, 42, 0.24);
  transform: translateX(-50%);
}

.footer-social-item__qr::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer-social-item__qr img {
  width: 148px;
  height: 148px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.footer-social-item__qr span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.2;
  color: #111827;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.footer-columns h4 {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.96);
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.footer-columns a {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.4;
  transition: color .2s ease;
}

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

.footer-bottom {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  padding: 26px 0 34px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  min-width: 0;
  padding: var(--space-20);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer-contact-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 14px 28px rgba(0,0,0,0.16);
}

.footer-contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, rgba(31,89,255,0.9) 0%, rgba(0,166,255,0.82) 100%);
  box-shadow: 0 10px 22px rgba(31,89,255,0.22);
  flex: 0 0 auto;
}

.footer-contact-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.footer-contact-item__body {
  min-width: 0;
}

.footer-contact-item__body strong {
  display: block;
  margin-bottom: var(--space-8);
  color: rgba(255,255,255,0.68);
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-item__body p {
  color: #fff;
  font-size: var(--fs-16);
  line-height: 1.6;
  word-break: break-word;
  margin: 0;
}

.footer-legal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal p,
.footer-legal a,
.footer-legal span {
  color: rgba(255,255,255,0.34);
  font-size: 14px;
}

.footer-legal__links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.72);
}

.footer-backtop {
  position: absolute;
  right: 28px;
  bottom: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}

.footer-backtop svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pagination-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.pagination-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(31,89,255,0.15); }
.pagination-dots span.is-active { width: 30px; border-radius: 999px; background: linear-gradient(90deg, var(--secondary), var(--primary)); }
.job-item {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.job-item + .job-item {
  margin-top: 16px;
}

.job-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .24s ease, color .24s ease;
  border-radius: 22px;
}

.job-item__head-main {
  min-width: 0;
  flex: 1 1 auto;
}

.job-item__head strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
  color: #1f2937;
  transition: color .24s ease;
}

.job-item__section {
  padding: 0;
  background-color: #fff;
}

.job-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.job-item__meta span {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #8d98ab;
  transition: color .24s ease;
}

.job-item__meta span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(148, 163, 184, 0.36);
  transform: translateY(-50%);
}

.job-item__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7b8498;
  white-space: nowrap;
  transition: color .24s ease;
}

.job-item__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #fff;
  color: #98a1b2;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: transform .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.job-item__toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.job-item__action-label {
  font-size: 14px;
  font-weight: 600;
}

.job-item__content {
  display: block;
  height: 0;
  padding: 0 24px;
  border-top: 1px solid transparent;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  will-change: height, opacity, transform;
  transition:
    height .52s cubic-bezier(.22, 1, .36, 1),
    padding .4s cubic-bezier(.22, 1, .36, 1),
    border-color .32s ease,
    opacity .34s ease,
    transform .4s cubic-bezier(.22, 1, .36, 1);
}

.job-item.is-open .job-item__head {
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.98) 0%, rgba(36, 78, 202, 0.98) 72%, rgba(20, 80, 223, 0.94) 100%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 24%);
}

.job-item.is-open .job-item__head strong,
.job-item.is-open .job-item__action,
.job-item.is-open .job-item__meta span {
  color: #fff;
}

.job-item.is-open .job-item__meta span + span::before {
  background: rgba(255, 255, 255, 0.24);
}

.job-item.is-open .job-item__toggle {
  background: #fff;
  color: #1f61ff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: rotate(0deg);
}

.job-item:not(.is-open) .job-item__toggle {
  transform: rotate(180deg);
}

.job-item.is-open .job-item__content {
  padding: 26px 24px 30px;
  border-top-color: rgba(226, 232, 240, 0.8);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.job-item__section + .job-item__section {
  margin-top: 28px;
}

.job-item__section h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  color: #111827;
}

.job-item__list {
  margin: 18px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.job-item__list li {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5565;
}

.job-actions {
  margin-top: 34px;
}

.job-item__resume-email {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5565;
}

.job-item__resume-email a {
  color: #1f61ff;
  font-weight: 600;
}

.job-item__cta {
  min-height: 46px;
  padding-right: 14px;
}
.design-viewer {
  position: relative;
  min-height: 100vh;
  background: #000;
}
.design-stage {
  width: min(100%, 1920px);
  margin: 0 auto;
}
.design-shot { display: block; }
.design-shot img {
  width: 100%;
  height: auto;
}
.design-arrow {
  position: fixed;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: var(--arrow-size-x);
  height: var(--arrow-size-y);
  margin-top: calc(var(--arrow-size-y) / -2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  transition: opacity 0.2s ease;
}
.design-arrow:hover { opacity: 0.5; }
.design-arrow--prev {
  left: 0;
  background-image: url("../design/prev01.png");
}
.design-arrow--next {
  right: 0;
  background-image: url("../design/next01.png");
}
.design-arrow span { display: none; }
.site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
/* .site-header--home .header-inner {
  min-height: 96px;
  gap: 34px;
}
.site-header--home .brand img {
  width: 138px;
}
.site-header--home .site-nav {
  gap: 40px;
}
.site-header--home .nav-link {
  padding: 8px 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}
.site-header--home .nav-link.is-active {
  color: #fff;
}
.site-header--home .nav-link::after {
  bottom: -8px;
  height: 2px;
  background: rgba(255,255,255,0.96);
}
.site-header--home.is-scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.site-header--home.is-scrolled .header-inner {
  min-height: 72px;
}

.site-header--home.is-scrolled .brand img {
  content: url("../images/logo-dark.png");
}

.site-header--home.is-scrolled .nav-link {
  color: rgba(15, 23, 42, 0.72);
}

.site-header--home.is-scrolled .nav-link.is-active {
  color: var(--primary);
}

.site-header--home.is-scrolled .nav-link::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.site-header--home.is-scrolled .home-header-tool {
  color: rgba(15, 23, 42, 0.72);
  background: rgba(31,89,255,0.06);
} */
.header-tools--home {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-header-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
}
.home-header-tool svg,
.home-pill-button svg,
.home-product-item__icon svg,
.home-news-item__icon svg,
.home-news-side-card__icon svg,
.home-hero__scroll svg,
.home-solution-nav-item__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-header-tool--lang {
  width: auto;
  padding: 0 12px;
  font-size: 13px;
}
.home-main {
  background: #fff;
}
.home-pill-button {
  text-decoration: none;
}
.home-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}
.home-hero__slides {
  position: absolute;
  inset: 0;
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06) translate3d(0, 18px, 0);
  filter: saturate(.88);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.2,.72,.18,1), filter .8s ease;
}
.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  filter: saturate(1);
}
.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.home-hero__slide.is-active img {
  transform: scale(1);
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 76, 216, 0.9) 0%, rgba(19, 76, 216, 0.68) 31%, rgba(10, 33, 66, 0.16) 70%, rgba(10, 33, 66, 0.22) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(7,18,42,0.2));
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38vh 0 34px;
}
.home-hero__copy .button span {
  letter-spacing: 0.2em;
}
.home-hero__copy h1 {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: normal;
}
.home-hero__copy p {
  margin-top: 26px;
  font-size: 36px;
  line-height: 1;
  color: rgba(255,255,255,0.94);
}
.home-hero__copy .button--consult {
  margin-top: 75px;
  min-height: 50px;
  padding: 0 28px;
  background: #fff;
  color: #000;
}
.home-hero__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
}
.home-hero__ticker-shell {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  max-width: 44vw;
}
.home-hero__ticker {
  position: relative;
  height: 22px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.home-hero__ticker-track {
  display: grid;
  gap: 10px;
  transition: transform .42s cubic-bezier(.22,.7,.18,1);
}
.home-hero__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 22px;
  min-width: 0;
  color: rgba(255,255,255,0.88);
}
.home-hero__ticker-item span {
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}
.home-hero__ticker-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 22px;
}
.home-hero__ticker-controls {
  display: none;
  /* display: inline-flex; */
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.home-hero__ticker-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color .24s ease, transform .24s ease, opacity .24s ease;
}
.home-hero__ticker-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.home-hero__ticker-arrow-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
}
.home-hero__ticker-arrow:hover,
.home-hero__ticker-arrow:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}
.home-hero__pager {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-hero__pager-dot {
  width: 52px;
  height: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.home-hero__pager-dot span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  transition: background-color .28s ease, transform .28s ease;
}
.home-hero__pager-dot.is-active,
.home-hero__pager-dot:hover {
  background: transparent;
}
.home-hero__pager-dot.is-active span,
.home-hero__pager-dot:hover span {
  background: rgba(255,255,255,0.94);
  transform: scaleY(1.12);
}
.home-hero__scroll {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: rgba(255,255,255,0.96);
}
.home-hero__scroll-ring,
.home-hero__scroll-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero__scroll-ring-track,
.home-hero__scroll-ring-progress {
  fill: none;
  stroke-width: 1.5;
}
.home-hero__scroll-ring-track {
  stroke: rgba(255,255,255,0.18);
}
.home-hero__scroll-ring-progress {
  stroke: rgba(255,255,255,0.94);
  stroke-linecap: round;
  stroke-dasharray: 68 138.2;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  animation: homeHeroScrollProgress 3s linear infinite;
}
.home-hero__scroll-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.home-hero__scroll-icon svg {
  width: 14px;
  height: 14px;
}
@keyframes homeHeroScrollProgress {
  0% {
    stroke-dasharray: 22 138.2;
    stroke-dashoffset: 0;
    transform: rotate(-90deg);
  }
  100% {
    stroke-dasharray: 82 138.2;
    stroke-dashoffset: -138.2;
    transform: rotate(270deg);
  }
}
.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-24);
  /* margin-bottom: 34px; */
}
.home-section-head h2 {
  font-size: var(--fs-60);
  line-height: 1.12;
  color: var(--text-strong);
}
.home-section-head p {
  margin-top: var(--space-32);
  font-size: var(--fs-24);
  color: var(--text-muted);
}
.home-section-head--stack,
.home-section-head--center {
  display: block;
}
.home-section-head--center {
  text-align: center;
}
.home-section-head--center .button {
  margin-top: 50px;
}
.home-products {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 18% 102%, rgba(24,84,223,0.88), rgba(24,84,223,0.3) 18%, rgba(24,84,223,0) 40%),
    linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
}
.home-product-carousel__nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.home-product-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #1854df;
  background: #1854df;
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 84, 223, 0.24);
  transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease, border-color .24s ease;
  cursor: pointer;
}
.home-product-carousel__arrow .button--consult__arrow {
  display: inline-grid;
  place-items: center;
}
.home-product-carousel__arrow .home-product-item__icon {
  order: initial;
  width: 100%;
  height: 100%;
  border-color: transparent;
  background: transparent;
  color: inherit;
  transform: none;
  border: 0;
}
.home-product-carousel__arrow .home-product-item__icon svg {
  width: 20px;
  height: 20px;
}
.home-product-carousel__arrow:hover {
  transform: translateY(-1px);
  background: #1146c2;
  color: #fff;
  border-color: #1146c2;
  box-shadow: 0 18px 34px rgba(17, 70, 194, 0.32);
}
.home-product-carousel__arrow.is-active,
.home-product-carousel__arrow:not(:disabled):active {
  background: #0f3ea9;
  color: #fff;
  border-color: #0f3ea9;
  box-shadow: 0 12px 24px rgba(15, 62, 169, 0.28);
}
.home-product-carousel__arrow:disabled {
  opacity: .55;
  cursor: default;
  transform: none;
  background: #9bb6f7;
  border-color: #9bb6f7;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}
.home-product-carousel {
  position: relative;
  overflow: visible;
  margin-top: 50px;
}
.home-product-carousel__track {
  display: flex;
  gap: 22px;
  overflow: visible;
  padding: 12px 4px 18px 0;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.home-product-carousel__track::-webkit-scrollbar {
  display: none;
}
.home-product-carousel__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}
.home-product-carousel__pager[hidden] {
  display: none;
}
.home-product-carousel__pager-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.home-product-carousel__pager-dot span {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(24, 84, 223, 0.22);
  transition: background .24s ease, transform .24s ease;
}
.home-product-carousel__pager-dot.is-active span,
.home-product-carousel__pager-dot:hover span {
  background: #1854df;
  transform: scaleX(1.08);
}
.home-product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 44px) / 4);
  max-width: calc((100% - 44px) / 4);
  min-width: 0;
  min-height: 366px;
  padding: 24px 24px 24px;
  border-radius: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.8); */
  background: linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(245,248,253,0.98) 100%);
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-product-item:hover,
.home-product-item:focus-within {
  transform: translateY(-8px);
  /* background: #fff;
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 46px rgba(15, 23, 42, 0.1); */
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  background-image: url('/assets/images/home/bgm.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.home-product-item__copy {
  min-height: 88px;
}
.home-product-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.45;
}
.home-product-item p {
  margin-top: 8px;
  min-height: 44px;
  font-size: 13px;
  line-height: 1.7;
  color: #7b8498;
}
.home-product-item__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-top: 20px;
}
.home-product-item__media img {
  position: relative;
  z-index: 2;
  max-height: 144px;
  width: auto;
  object-fit: contain;
  transition: transform .28s ease;
}
.home-product-item__media::before {
  content: "";
  position: absolute;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,248,255,1) 0%, rgba(245,248,255,0.9) 52%, rgba(245,248,255,0) 68%);
  opacity: 0;
  z-index: 1;
  transform: scale(.88);
  transition: opacity .28s ease, transform .28s ease;
}
.home-product-item__media::after {
  /* content: ""; */
  position: absolute;
  inset: 42px 0 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(241,245,251,0.96) 0%, rgba(235,241,248,0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}
.home-product-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 16px;
  margin-top: auto;
  min-height: 44px;
  padding: 18px 0 0;
  border: 0;
  /* border-top: 1px solid rgba(15,23,42,0.08); */
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition:
    padding .3s ease,
    gap .3s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    border-radius .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}
.home-product-item__link > span:first-child {
  order: 2;
  transition: transform .3s ease;
}
.home-product-item__icon {
  display: inline-grid;
  place-items: center;
  order: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.12);
  color: #7b8498;
  background: transparent;
  transition:
    width .3s ease,
    height .3s ease,
    border-color .3s ease,
    border-radius .3s ease,
    color .3s ease,
    background .3s ease,
    transform .3s ease;
}
.home-product-item__icon svg {
  width: 24px;
  height: 24px;
}
.home-product-item:hover .home-product-item__media::before,
.home-product-item:focus-within .home-product-item__media::before {
  opacity: 1;
  transform: scale(1);
}
.home-product-item:hover .home-product-item__media::after,
.home-product-item:focus-within .home-product-item__media::after {
  background: #fff;
  box-shadow: 0 18px 38px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.home-product-item:hover .home-product-item__media img,
.home-product-item:focus-within .home-product-item__media img {
  transform: scale(1.02);
}
.home-product-item:hover .home-product-item__link,
.home-product-item:focus-within .home-product-item__link {
  align-self: center;
  justify-content: center;
  padding: 0 16px 0 26px;
  border-top-color: transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
  box-shadow: 0 18px 30px rgba(24, 84, 223, 0.24);
  transform: translateY(-1px);
}
.home-product-item:hover .home-product-item__link > span:first-child,
.home-product-item:focus-within .home-product-item__link > span:first-child {
  order: 1;
}
.home-product-item:hover .home-product-item__icon,
.home-product-item:focus-within .home-product-item__icon {
  order: 2;
  width: 24px;
  height: 24px;
  border-radius: 0;
  border-color: transparent;
  background: transparent;
  color: #fff;
  transform: translateX(2px);
}
.home-solutions-panel {
  position: relative;
  padding: 100px 0;
  background: #fff;
}
.product-detail-cta__button:hover {
  color: #000;
}
.home-solutions {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 120px;
  align-items: start;
  margin-top: 50px;
}
.home-solutions__nav {
  display: grid;
  gap: 0;
  /* padding-top: 24px; */
}
.home-solution-nav-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  color: #c6c9d1;
  cursor: pointer;
  transition: color .24s ease, transform .24s ease;
}
.home-solution-nav-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 2px;
}
.home-solution-nav-item__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(83%) sepia(8%) saturate(206%) hue-rotate(186deg) brightness(92%) contrast(88%);
  transition: transform .24s ease, filter .24s ease;
}
.home-solution-nav-item__copy {
  min-width: 0;
}
.home-solution-nav-item h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: currentColor;
  transition: color .24s ease, font-size .24s ease, font-weight .24s ease;
}
.home-solution-nav-item p,
.home-solution-nav-item .button {
  display: none;
}
.home-solution-nav-item:hover,
.home-solution-nav-item:focus-visible,
.home-solution-nav-item.is-active {
  color: #1854df;
}
.home-solution-nav-item:hover,
.home-solution-nav-item:focus-visible {
  transform: translateX(3px);
}
.home-solution-nav-item:hover .home-solution-nav-item__icon img,
.home-solution-nav-item:focus-visible .home-solution-nav-item__icon img,
.home-solution-nav-item.is-active .home-solution-nav-item__icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3664%) hue-rotate(222deg) brightness(99%) contrast(100%);
  transform: scale(1.04);
}
.home-solution-nav-item:hover h3,
.home-solution-nav-item:focus-visible h3,
.home-solution-nav-item.is-active h3 {
  font-size: 24px;
  font-weight: 700;
}
.home-solution-nav-item:hover p,
.home-solution-nav-item:focus-visible p,
.home-solution-nav-item.is-active p {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: #3d4657;
}
.home-solution-nav-item:hover .button,
.home-solution-nav-item:focus-visible .button,
.home-solution-nav-item.is-active .button {
  display: inline-flex;
  margin-top: 18px;
}
.home-solutions__stage {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 570px;
}
.home-solutions__stage-card {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.home-solutions__stage-card.is-active {
  opacity: 1;
  pointer-events: auto;
}
.home-solutions__stage img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 30px;
}
.home-about-panel {
}
.home-about-panel .container {
  position: relative;
}
.home-about-stage {
  position: relative;
  margin-top: 40px;
  min-height: 500px;
  overflow: visible;
}
.home-about-stage__logo,
.home-about-stage__globe,
.home-about-stage__glass {
  position: absolute;
  inset: 0;
}
.home-about-stage__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.home-about-stage__logo img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}
.home-about-stage__globe {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* inset: auto 0 -18px; */
}
.home-about-stage__globe img {
  width: 500px;
  transform: translate3d(0, 0, 0) scale(1);
  filter:
    drop-shadow(0 48px 40px rgba(38, 92, 235, 0.18))
    drop-shadow(0 92px 48px rgba(31, 89, 255, 0.18));
  transition: transform .6s cubic-bezier(.22, .61, .36, 1), filter .6s ease;
  transform-origin: 50% 52%;
}
.home-about-stage__globe:hover img {
  transform: translate3d(0, -10px, 0) scale(1.04) rotate(-4deg);
  filter:
    drop-shadow(0 56px 44px rgba(38, 92, 235, 0.24))
    drop-shadow(0 102px 56px rgba(31, 89, 255, 0.24));
  animation: home-about-globe-float 2.8s ease-in-out infinite;
}
.home-about-stage__glass {
  z-index: 3;
  top: auto;
  left: 50%;
  bottom: -68px;
  width: min(100vw, 1480px);
  height: 214px;
  transform: translateX(-50%);
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.8) 36%, rgba(255,255,255,0.36) 68%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.9) inset,
    0 -18px 42px rgba(255,255,255,0.5) inset,
    0 24px 60px rgba(132, 161, 230, 0.12);
  pointer-events: none;
}
.home-about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 120px;
  position: relative;
  z-index: 4;
  margin-top: -220px;
  padding-top: 60px;
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

@keyframes home-about-globe-float {
  0%, 100% {
    transform: translate3d(0, -10px, 0) scale(1.04) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06) rotate(4deg);
  }
}
.home-about-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.home-about-stat__value {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-size: clamp(54px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1450df;
  font-variant-numeric: tabular-nums;
}
.home-about-stat__value-roll {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.02em;
}
.home-about-stat__digit {
  position: relative;
  height: 1em;
  overflow: hidden;
  width: 0.6em;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
.home-about-stat__digit-track {
  display: grid;
  transform: translateY(0);
  will-change: transform;
  transition: transform 1.8s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--digit-index, 0) * 70ms);
}
.home-about-stat__digit-track span {
  display: block;
  height: 1em;
  line-height: 1;
}
.home-about-stat__symbol {
  display: inline-flex;
  align-items: flex-end;
  opacity: .24;
  transform: translate3d(0, 12px, 0);
  transition: opacity .45s ease, transform .45s ease;
}
.home-about-stat__unit {
  margin-left: 4px;
  font-size: 0.38em;
  line-height: 1.2;
  letter-spacing: 0;
  padding-bottom: 0.18em;
  opacity: .24;
  transform: translate3d(0, 12px, 0);
  transition: opacity .45s ease, transform .45s ease;
}
.home-about-stat__value.is-animated .home-about-stat__symbol,
.home-about-stat__value.is-animated .home-about-stat__unit {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.home-about-stat p {
  color: #000;
  font-size: 24px;
}

.home-news-panel {
  padding: 100px 0;
  background: #fff;
}
.home-section-head--news {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.home-section-head--news p {
  margin-top: 12px;
}

.home-news-panel__action {
  /* min-height: 44px;
  padding-right: 16px; */
}

.home-news-panel__action-icon {
  /* width: 20px;
  height: 20px;
  font-size: 18px; */
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, .86fr) minmax(320px, .86fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 50px;
}

.home-news-feature {
  min-width: 0;
  position: relative;
}

.home-news-feature__viewport {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #dde7fb;
}

.home-news-feature__dots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-news-feature__dot {
  width: 22px;
  height: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.home-news-feature__dot span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  transition: background-color .22s ease, transform .22s ease;
}

.home-news-feature__dot.is-active span,
.home-news-feature__dot:hover span {
  background: #fff;
  transform: scaleY(1.15);
}

.home-news-feature-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(28px, 0, 0) scale(.985);
  transition:
    opacity .68s cubic-bezier(.22,1,.36,1),
    transform .68s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .68s;
  will-change: opacity, transform;
}

.home-news-feature-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.home-news-feature-slide.is-leaving {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-20px, 0, 0) scale(1.01);
  transition-delay: 0s;
}

.home-news-feature-slide__media,
.home-news-feature-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-news-feature-slide__media img {
  object-fit: cover;
}

.home-news-feature-slide__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(17,24,39,0) 0%, rgba(16,52,132,0.72) 72%, rgba(16,52,132,0.92) 100%);
  color: #fff;
}

.home-news-feature-slide__overlay time {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}

.home-news-feature-slide__overlay h3 {
  margin-top: 12px;
  max-width: 560px;
  font-size: 22px;
  line-height: 1.45;
  color: #fff;
}

.home-news-side-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 500px;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.04);
  transition: background .32s ease, box-shadow .32s ease, transform .32s ease;
}

.home-news-side-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  z-index: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.3));
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 10px 22px rgba(255,255,255,0.24));
  pointer-events: none;
  opacity: 0;
  transform: translate3d(10px, 10px, 0) scale(.72) rotate(8deg);
  transition: opacity .32s ease, transform .32s ease;
}

.home-news-side-card .home-news-item__media {
  position: relative;
  z-index: 1;
  max-height: 232px;
  overflow: hidden;
  transition: max-height .32s ease, opacity .32s ease, transform .32s ease;
}

.home-news-side-card .home-news-item__media img {
  display: block;
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.home-news-side-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 34px 30px;
}

.home-news-side-card__body time {
  font-size: 16px;
  color: #8a94a7;
  transition: color .32s ease;
}

.home-news-side-card__body h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  transition: color .32s ease;
}

.home-news-side-card__body p {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  transition: max-height .32s ease, margin-top .32s ease, opacity .32s ease, color .32s ease;
}

.home-news-side-card__link {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: normal;
  color: #666;
  text-decoration: none;
  border-top: 1px solid rgba(15,23,42,0.08);
  transition: color .32s ease, border-color .32s ease;
}

.home-news-side-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid rgba(15,23,42,0.12);
  color: #7b8498;
  transition: color .32s ease, background-color .32s ease, border-color .32s ease;
}

.home-news-side-card:focus-within {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #2b4ec5 0%, #2247c7 100%);
  box-shadow: 0 18px 36px rgba(27, 67, 190, 0.18);
}

.home-news-side-card:focus-within::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-news-side-card:focus-within .home-news-item__media {
  max-height: 0;
  opacity: 0;
  transform: translateY(-14px);
}

.home-news-side-card:focus-within .home-news-side-card__body time,
.home-news-side-card:focus-within .home-news-side-card__body h3,
.home-news-side-card:focus-within .home-news-side-card__body p,
.home-news-side-card:focus-within .home-news-side-card__link {
  color: #fff;
}

.home-news-side-card:focus-within .home-news-side-card__body p {
  max-height: 160px;
  margin-top: 18px;
  opacity: 1;
}

.home-news-side-card:focus-within .home-news-side-card__link {
  border-top-color: rgba(255,255,255,0.18);
}

.home-news-side-card:focus-within .home-news-side-card__icon {
  background: #fff;
  border-color: #fff;
  color: #1450df;
}

@media (hover: hover) {
  .home-news-side-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #2b4ec5 0%, #2247c7 100%);
    box-shadow: 0 18px 36px rgba(27, 67, 190, 0.18);
  }

  .home-news-side-card:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .home-news-side-card:hover .home-news-item__media {
    max-height: 0;
    opacity: 0;
    transform: translateY(-14px);
  }

  .home-news-side-card:hover .home-news-side-card__body time,
  .home-news-side-card:hover .home-news-side-card__body h3,
  .home-news-side-card:hover .home-news-side-card__body p,
  .home-news-side-card:hover .home-news-side-card__link {
    color: #fff;
  }

  .home-news-side-card:hover .home-news-side-card__body p {
    max-height: 160px;
    margin-top: 18px;
    opacity: 1;
  }

  .home-news-side-card:hover .home-news-side-card__link {
    border-top-color: rgba(255,255,255,0.18);
  }

  .home-news-side-card:hover .home-news-side-card__icon {
    background: #fff;
    border-color: #fff;
    color: #1450df;
  }
}
.home-clients-panel {
  padding: 0 0 100px;
  background: #fff;
}

.home-clients-panel .home-section-head {
  margin-bottom: 0;
}

.home-clients-panel .home-section-head h2 {
  font-size: 60px;
  line-height: 1.12;
  color: #000;
}

.home-clients-panel .home-section-head p {
  margin-top: 30px;
  font-size: 24px;
  color: #666;
}

.home-clients {
  margin-top: 50px;
}

.home-clients__pages {
  position: relative;
}

.home-clients__page {
  display: none;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 8px 18px;
  align-items: start;
}

.home-clients__page.is-active {
  display: grid;
}

.home-clients__pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.home-clients__pager.is-hidden {
  display: none;
}

.home-clients__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 80, 223, 0.18);
  transition: width .24s ease, background .24s ease, transform .24s ease;
  cursor: pointer;
}

.home-clients__dot.is-active,
.home-clients__dot:hover {
  width: 28px;
  background: linear-gradient(90deg, #1f61ff 0%, #1450df 100%);
  transform: translateY(-1px);
}

.home-client-chip {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .24s ease, filter .24s ease;
}

.home-client-chip:nth-child(1) { grid-column: 1 / span 2; }
.home-client-chip:nth-child(2) { grid-column: 3 / span 2; }
.home-client-chip:nth-child(3) { grid-column: 5 / span 2; }
.home-client-chip:nth-child(4) { grid-column: 7 / span 2; }
.home-client-chip:nth-child(5) { grid-column: 9 / span 2; }
.home-client-chip:nth-child(6) { grid-column: 11 / span 2; }
.home-client-chip:nth-child(7) { grid-column: 13 / span 2; }
.home-client-chip:nth-child(8) { grid-column: 2 / span 2; }
.home-client-chip:nth-child(9) { grid-column: 4 / span 2; }
.home-client-chip:nth-child(10) { grid-column: 6 / span 2; }
.home-client-chip:nth-child(11) { grid-column: 8 / span 2; }
.home-client-chip:nth-child(12) { grid-column: 10 / span 2; }
.home-client-chip:nth-child(13) { grid-column: 12 / span 2; }
.home-client-chip:nth-child(21) { grid-column: 5 / span 2; }
.home-client-chip:nth-child(22) { grid-column: 7 / span 2; }
.home-client-chip:nth-child(23) { grid-column: 9 / span 2; }

.home-client-chip__shutter {
  display: flex;
  width: 100%;
  max-width: 168px;
  aspect-ratio: 166 / 186;
  perspective: 1400px;
  overflow: hidden;
  isolation: isolate;
}

.home-client-chip__slat {
  display: block;
  flex: 1 1 0;
  height: 100%;
  background-image: var(--client-image);
  background-repeat: no-repeat;
  background-size: calc(var(--slat-count, 5) * 100%) 100%;
  background-position: var(--slat-offset) 50%;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  outline: 1px solid transparent;
}

.home-client-chip:hover {
  transform: translateY(-4px);
}

.home-clients__page.is-active .home-client-chip__slat {
  animation: home-client-shutter-flip 2.15s cubic-bezier(.2, .82, .2, 1) both;
  animation-delay: var(--slat-delay, 0ms);
}

.home-client-chip:hover .home-client-chip__slat {
  filter: saturate(1.04) contrast(1.02);
}

@keyframes home-client-shutter-flip {
  0% {
    opacity: 0;
    transform: rotateY(180deg);
    filter: brightness(.92);
  }
  62% {
    opacity: 1;
    transform: rotateY(-18deg);
    filter: brightness(1.04);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
    filter: brightness(1);
  }
}
.home-cta {
  position: relative;
  color: #fff;
  background-image: url("../images/hero-tech.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,76,216,0.92) 0%, rgba(19,76,216,0.72) 32%, rgba(5,17,42,0.84) 100%);
}
.home-cta__inner {
  position: relative;
  z-index: 1;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-cta__inner p {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
}
.home-cta__inner h2 {
  margin-top: 10px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.14;
}
.home-cta__inner .home-pill-button {
  margin-top: 28px;
}
.home-footer__main {
  position: relative;
  background: #050505;
  color: #fff;
  overflow: hidden;
}
.home-footer__main::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0) 68%);
}
.home-footer__top {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  padding: 72px 0 54px;
}
.home-footer__brand img {
  width: 162px;
}
.home-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 112px;
}

.home-footer__socials .footer-social-item {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background .2s ease, transform .2s ease;
}

.home-footer__socials .footer-social-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.home-footer__socials .footer-social-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}
.home-footer__columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}
.home-footer__column h4 {
  margin-bottom: 20px;
  font-size: 16px;
}
.home-footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.home-footer__column a {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}
.home-footer__bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.home-footer__bottom strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}
.home-footer__bottom p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
@media (max-width: 1080px) {
  .site-nav,
  .header-tools { display: none; }
  .menu-toggle { display: inline-block; }
  .site-header.is-open .site-nav {
    display: grid;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 170px);
    padding: 18px 16px;
    gap: 10px;
    justify-content: stretch;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header.is-open .header-tools {
    display: flex;
    position: absolute;
    top: calc(92px + var(--mobile-nav-panel-height, 264px));
    left: 16px;
    right: 16px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .page-shell--home .site-header.is-open .site-nav,
  .page-shell--home .site-header.is-open .header-tools {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,23,42,0.06);
  }
  .page-shell--home .site-header.is-open .nav-link {
    color: rgba(15,23,42,0.78);
  }
  .page-shell--home .site-header.is-open .nav-link.is-active {
    color: var(--primary);
  }
  .page-shell--home .site-header.is-open .nav-link::after {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
  }
  .site-nav {
    gap: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .site-nav-item {
    min-width: 0;
  }
  .site-nav-item--has-children {
    display: block;
    align-self: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
    color: rgba(15, 23, 42, 0.78);
    font-size: 17px;
  }
  .site-header.is-open .nav-link {
    color: rgba(15, 23, 42, 0.78);
  }
  .site-header.is-open .nav-link.is-active {
    color: var(--primary);
  }
  .site-header.is-open .nav-link::after {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
  }
  .site-subnav {
    position: static;
    left: auto;
    display: grid;
    width: auto;
    max-width: none;
    min-width: 0;
    gap: 6px;
    margin-left: 0;
    padding: 4px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .site-subnav::before {
    display: none;
  }
  .site-subnav__link {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    min-width: 0;
    padding: 8px 14px;
    border-radius: 14px;
    color: rgba(15, 23, 42, 0.66);
    font-size: 14px;
    white-space: normal;
  }
  .site-subnav__link:hover,
  .site-subnav__link:focus-visible {
    background: transparent;
    color: var(--primary);
    transform: none;
  }
  .nav-link {
    justify-content: space-between;
  }
  .site-header.is-open .header-tools {
    align-items: stretch;
  }
  .site-header.is-open .header-action {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 16px;
  }
  .site-header.is-open .header-search-toggle,
  .site-header.is-open .home-header-search {
    width: 100%;
    min-width: 0;
  }
  .site-header.is-open .header-search-toggle::after,
  .site-header.is-open .home-header-search::after {
    content: "站内搜索";
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .page-shell--home .site-header.is-open .header-action {
    background: rgba(31,89,255,0.06);
    border-color: transparent;
    color: var(--primary);
  }
  .page-shell--home .site-header.is-open .header-action--solid {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
  }
  .hero-grid,
  .story-grid,
  .spec-wrap,
  .side-layout,
  .article-layout,
  .home-solution-layout,
  .solution-feature,
  .solution-list__item,
  .footer-top,
  .footer-bottom,
  .cta-band__inner,
  .news-card--featured,
  .story-card { grid-template-columns: 1fr; }
  .hero-meta,
  .metric-strip,
  .facts-grid,
  .stat-grid,
  .home-news-grid,
  .home-product-grid,
  .solution-grid,
  .product-grid,
  .news-grid,
  .download-grid,
  .office-grid,
  .honor-grid,
  .cert-grid,
  .adv-grid,
  .quote-grid,
  .pain-grid,
  .reason-grid,
  .tile-grid,
  .thumb-grid,
  .culture-grid,
  .form-grid,
  .footer-columns,
  .client-logo-grid,
  .info-card__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .download-software-card {
    min-height: 204px;
  }

  .download-software-card h3 {
    max-width: 82%;
  }

  .site-search-page__head,
  .site-search-group__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-search-toolbar {
    grid-template-columns: minmax(0, 1fr) 160px auto;
  }

  .site-search-group__grid {
    grid-template-columns: 1fr;
  }

  .job-item__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-item__action {
    align-self: flex-end;
  }
  .home-solutions {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
  }
  .home-solutions__nav {
    gap: 18px;
    padding-top: 12px;
  }
  .home-solution-nav-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }
  .home-solution-nav-item__icon {
    width: 30px;
    height: 30px;
  }
  .home-solution-nav-item__icon img {
    width: 26px;
    height: 26px;
  }
  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 22px;
  }
  .home-solutions__stage {
    min-height: 360px;
  }
  .home-solutions__stage img {
    height: 360px;
  }
  .footer-follow {
    margin-top: 36px;
  }
  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header--home .site-header.is-open,
  .site-header--home.is-open {
    background: rgba(8, 15, 31, 0.76);
    backdrop-filter: blur(20px);
  }
  .site-header--home .site-nav,
  .site-header--home .header-tools { display: none; }
  .site-header--home.is-open .site-nav {
    display: grid;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    padding: 18px 16px;
    gap: 10px;
    background: rgba(6,16,38,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.26);
  }
  .site-header--home.is-open .header-tools {
    display: flex;
    position: absolute;
    top: calc(96px + var(--mobile-nav-panel-height, 258px));
    left: 16px;
    right: 16px;
    padding: 12px 16px;
    background: rgba(6,16,38,0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
  }
  .site-header--home.is-open .nav-link {
    color: rgba(255,255,255,0.88);
  }
  .site-header--home.is-open .site-subnav__link {
    color: rgba(255,255,255,0.68);
  }
  .site-header--home.is-open .site-subnav__link:hover,
  .site-header--home.is-open .site-subnav__link:focus-visible {
    color: #fff;
  }
  .site-header--home.is-open .header-search-toggle::after,
  .site-header--home.is-open .home-header-search::after {
    color: #fff;
  }
  .site-header--home .menu-toggle {
    background: rgba(255,255,255,0.1);
  }
  .site-header--home .menu-toggle span {
    background: #fff;
  }
  .home-hero {
    min-height: 100vh;
  }
  .home-hero__inner {
    min-height: 100vh;
    padding-top: 180px;
  }
  .home-product-carousel {
    overflow: visible;
  }
  .home-product-carousel__track {
    gap: 18px;
    padding-bottom: 16px;
  }
  .home-product-item {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    min-height: 344px;
  }
  .home-solutions,
  .home-footer__top {
    grid-template-columns: 1fr;
  }
  .home-about-stage {
    min-height: 390px;
  }
  .home-about-stage__logo img {
    width: min(100%, 940px);
  }
  .home-about-stage__globe img {
    width: min(48vw, 330px);
  }
  .home-about-stage__glass {
    bottom: -52px;
    height: 160px;
  }
  .home-about-stats,
  .home-footer__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
  }
  .home-section-head--news {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-news-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-news-feature__viewport {
    height: 380px;
  }
  .home-news-feature__dots {
    right: 18px;
    bottom: 18px;
  }
  .home-clients__page {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px 14px;
  }
  .home-client-chip:nth-child(n) {
    grid-column: auto / span 2;
  }
  .home-client-chip:nth-child(21) {
    grid-column: 2 / span 2;
  }
  .home-client-chip:nth-child(22) {
    grid-column: 4 / span 2;
  }
  .home-client-chip:nth-child(23) {
    grid-column: 6 / span 2;
  }
  .home-client-chip__shutter {
    max-width: 138px;
  }
  .home-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .page-shell--home .page-hero {
    min-height: 560px;
  }
  .page-shell--home .page-hero__content {
    padding: 150px 0 110px;
  }
  .home-section--about .section-head,
  .home-section--about .section-head p {
    text-align: center;
  }
}
@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --header-height: 84px;
    --header-height-scrolled: 74px;
    --toolbar-offset: 74px;
    --toolbar-height: 52px;
    --hero-height: 420px;
    --hero-padding-top: 72px;
    --hero-padding-bottom: 54px;
    --section-space: 70px;
    --space-24: 20px;
    --space-32: 24px;
    --space-40: 28px;
    --space-48: 32px;
    --space-64: 40px;
    --space-80: 48px;
    --fs-24: 20px;
    --fs-32: 28px;
    --fs-40: 30px;
    --fs-48: 32px;
    --fs-60: 34px;
  }
  .design-toggle {
    top: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .hero-meta,
  .metric-strip,
  .facts-grid,
  .stat-grid,
  .home-news-grid,
  .home-product-grid,
  .solution-grid,
  .product-grid,
  .news-grid,
  .download-grid,
  .office-grid,
  .honor-grid,
  .cert-grid,
  .adv-grid,
  .quote-grid,
  .pain-grid,
  .reason-grid,
  .tile-grid,
  .thumb-grid,
  .culture-grid,
  .form-grid,
  .footer-columns,
  .footer-bottom,
  .form-showcase__grid,
  .info-card__list,
  .form-grid--three,
  .client-logo-grid { grid-template-columns: 1fr; }

  .download-software-search {
    grid-template-columns: 1fr;
  }

  .download-software-search .download-library__button {
    width: 100%;
  }

  .download-software-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .download-software-card {
    min-height: 188px;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .download-software-card h3 {
    max-width: 78%;
    font-size: 16px;
  }

  .download-software-card__meta li {
    font-size: 12px;
  }

  .header-search-toggle,
  .home-header-search {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  .site-search-modal {
    padding: 18px;
  }

  .site-search-modal__panel {
    width: min(100vw - 24px, 760px);
    padding: 34px 18px 24px;
    border-radius: 26px;
  }

  .site-search-modal__head h2 {
    font-size: 30px;
  }

  .site-search-form__types {
    gap: 10px;
  }

  .site-search-form__type {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .site-search-page {
    padding: 32px 0 64px;
  }

  .page-shell--search main {
    padding-top: 128px;
  }

  .site-search-page__intro h1 {
    font-size: 34px;
  }

  .site-search-toolbar {
    grid-template-columns: 1fr;
  }

  .site-search-tabs {
    gap: 10px;
  }

  .site-search-tabs__item {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .search-result-card__link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .search-result-card__media {
    min-height: 180px;
  }

  .search-result-card h3 {
    font-size: 20px;
  }

  .page-hero__content { padding: 72px 0 62px; }
  .page-hero h1 { font-size: clamp(34px, 12vw, 56px); }
  .site-footer__shape {
    display: none;
  }
  .footer-top {
    gap: 28px;
    padding: 44px 0 30px;
  }
  .footer-brand img {
    width: 148px;
  }
  .footer-follow {
    margin-top: 24px;
  }
  .footer-legal__links {
    flex-wrap: wrap;
  }
  .footer-backtop {
    right: 16px;
    bottom: 16px;
  }
  .page-shell--home .page-hero {
    min-height: 460px;
  }
  .page-shell--home .page-hero__content {
    padding: 132px 0 84px;
  }
  .page-shell--home .page-hero h1 {
    max-width: 320px;
    font-size: clamp(34px, 11vw, 48px);
  }
  .page-shell--home .page-hero p:not(.eyebrow) {
    max-width: 220px;
    font-size: 13px;
  }
  .home-section {
    padding: 58px 0;
  }
  .home-product-card,
  .home-news-card__body,
  .solution-feature__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-product-card {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .about-hero__brand {
    min-height: 220px;
    font-size: clamp(38px, 18vw, 74px);
    letter-spacing: 0.04em;
  }
  .home-section--about .stat-tile strong {
    font-size: 30px;
  }
  .client-logo {
    min-height: 42px;
  }
  .site-header--home .header-inner {
    min-height: 112px;
  }
  .site-header--home .brand img {
    width: 118px;
  }
  .site-header--home.is-open .site-nav {
    top: 78px;
    left: 14px;
    right: 14px;
  }
  .site-header--home.is-open .header-tools {
    top: calc(84px + var(--mobile-nav-panel-height, 258px));
    left: 14px;
    right: 14px;
  }
  .home-hero {
    min-height: 100vh;
  }
  .home-hero__inner {
    min-height: 100vh;
    padding: 136px 0 22px;
  }
  .home-hero__copy {
    max-width: min(80vw, 320px);
  }
  .home-hero__copy h1 {
    max-width: 7ch;
    font-size: clamp(34px, 9.6vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .home-hero__copy p {
    max-width: 11ch;
    margin-top: 14px;
    font-size: clamp(15px, 4.6vw, 17px);
    line-height: 1.18;
  }
  .home-hero__copy .button--consult {
    margin-top: 26px;
    min-height: 46px;
    padding: 0 22px;
    font-size: 15px;
  }
  .home-hero__copy .home-pill-button {
    margin-top: 26px;
  }
  .home-hero__footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    min-height: 0;
  }
  .home-hero__ticker-shell {
    width: 100%;
    max-width: none;
    gap: 12px;
  }
  .home-hero__ticker {
    height: 18px;
  }
  .home-hero__ticker-item {
    gap: 10px;
    min-height: 18px;
  }
  .home-hero__ticker-item span,
  .home-hero__ticker-item p {
    font-size: 12px;
    line-height: 18px;
  }
  .home-hero__ticker-controls {
    gap: 8px;
  }
  .home-hero__pager {
    position: static;
    transform: none;
    gap: 10px;
  }
  .home-hero__pager-dot {
    width: 34px;
  }
  .home-hero__scroll {
    justify-self: end;
  }
  .page-shell--home {
    overflow-x: clip;
  }
  .home-section-head {
    display: block;
    margin-bottom: 28px;
  }
  .home-product-carousel__nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }
  .home-product-carousel {
    margin-top: 34px;
    overflow: hidden;
  }
  .home-product-carousel__track {
    gap: 14px;
    padding-right: 0;
  }
  .home-product-carousel__arrow {
    width: 44px;
    height: 44px;
  }
  .home-section-head h2 {
    font-size: 34px;
  }
  .home-section-head p {
    font-size: 16px;
  }
  .home-products,
  .home-solutions-panel,
  .home-about-panel,
  .home-news-panel,
  .home-clients-panel {
    padding-top: 72px;
    padding-bottom: 78px;
  }
  .home-product-item {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 320px;
    padding: 22px 20px 22px;
  }
  .home-product-item__copy {
    min-height: 78px;
  }
  .home-product-item h3 {
    font-size: 17px;
  }
  .home-product-item p {
    min-height: 40px;
    font-size: 12px;
  }
  .home-product-item__media {
    min-height: 170px;
  }
  .home-product-item__media::after {
    inset: 36px 0 0;
    border-radius: 20px;
  }
  .home-product-item__media img {
    max-height: 128px;
  }
  .home-product-item__link {
    margin-top: 12px;
  }
  .home-solutions__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 0;
  }
  .home-solutions {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-solution-nav-item {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 14px;
    min-height: 112px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(20, 80, 223, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  }
  .home-solution-nav-item.is-active {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 20px;
    box-shadow: 0 18px 34px rgba(20, 80, 223, 0.12);
  }
  .home-solution-nav-item:hover,
  .home-solution-nav-item:focus-visible {
    transform: none;
  }
  .home-solution-nav-item__icon {
    width: 26px;
    height: 26px;
    margin-top: 0;
  }
  .home-solution-nav-item__icon img {
    width: 22px;
    height: 22px;
  }
  .home-solution-nav-item h3 {
    font-size: 17px;
    line-height: 1.45;
  }
  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 18px;
  }
  .home-solution-nav-item:hover p,
  .home-solution-nav-item:focus-visible p,
  .home-solution-nav-item.is-active p {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.75;
  }
  .home-solution-nav-item:hover .button,
  .home-solution-nav-item:focus-visible .button,
  .home-solution-nav-item.is-active .button {
    margin-top: 0;
  }
  .home-solutions__stage img {
    min-height: 220px;
    height: 220px;
  }
  .home-solutions__stage {
    min-height: 220px;
    border-radius: 24px;
  }
  .home-about-stage {
    margin-top: 24px;
    min-height: 280px;
  }
  .home-about-stage__logo img {
    width: min(100%, 760px);
  }
  .home-about-stage__globe img {
    width: min(58vw, 230px);
  }
  .home-about-stage__glass {
    bottom: -40px;
    height: 128px;
  }
  .home-about-stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: -4px;
    padding-top: 44px;
  }
  .home-about-stat {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 22px 0;
  }
  .home-about-stat__value {
    font-size: clamp(42px, 15vw, 56px);
  }
  .home-about-stat p {
    max-width: 14ch;
    font-size: 18px;
    line-height: 1.5;
  }
  .home-news-layout,
  .home-footer__bottom,
  .home-footer__columns {
    grid-template-columns: 1fr;
  }
  .home-clients__page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-client-chip:nth-child(n) {
    grid-column: auto / span 1;
    justify-self: stretch;
    width: auto;
  }
  .home-client-chip:nth-child(23) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
    min-width: 128px;
  }
  .home-news-feature__viewport {
    height: 250px;
    border-radius: 20px;
  }
  .home-news-feature__dots {
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }
  .home-news-feature__dot {
    width: 18px;
  }
  .home-news-feature-slide__overlay {
    padding: 0 20px 22px;
  }
  .home-news-feature-slide__overlay time {
    font-size: 14px;
  }
  .home-news-feature-slide__overlay h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.55;
  }
  .home-news-side-card {
    min-height: 0;
    height: auto;
    border-radius: 20px;
  }
  .home-news-side-card .home-news-item__media img {
    min-height: 220px;
    height: 220px;
  }
  .home-news-side-card__body {
    padding: 22px 20px 22px;
  }
  .home-news-side-card__body time {
    font-size: 14px;
  }
  .home-news-side-card__body h3 {
    margin-top: 12px;
    font-size: 18px;
  }
  .home-news-side-card__body p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }
  .home-news-side-card__link {
    padding-top: 20px;
    font-size: 14px;
  }
  .home-clients__page {
    gap: 14px 10px;
  }
  .home-client-chip__shutter {
    max-width: 128px;
    aspect-ratio: 1 / 1.08;
  }
  .home-client-chip {
    min-height: 0;
  }
  .home-cta__inner {
    min-height: 240px;
  }
  .home-cta__inner h2 {
    font-size: 36px;
  }
  .home-footer__top {
    gap: 32px;
    padding-top: 56px;
  }
  .home-footer__socials {
    margin-top: 28px;
  }
  .hero-panel,
  .product-card__body,
  .solution-card__body,
  .news-card__body,
  .office-card__body,
  .story-card__body,
  .value-card__body,
  .spec-table,
  .form-card,
  .article-layout__main,
  .article-layout__aside,
  .download-card,
  .download-row,
  .job-item__content,
  .modal-card,
  .info-card { padding-left: 20px; padding-right: 20px; }
  .map-surface { padding: 28px 20px; }
.design-arrow {
    width: 34px;
    height: 44px;
    margin-top: -22px;
  }
}

.page-shell--products {
  background: #f5f5f5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  z-index: 18;
}

.brand img {
  filter: brightness(0) invert(1);
}

.page-shell--products .nav-link,
.page-shell--products .header-action {
  color: rgba(255,255,255,0.78);
}

.page-shell--products .nav-link.is-active {
  color: #fff;
}

.page-shell--products .nav-link::after {
  background: rgba(255,255,255,0.88);
}

.header-action {
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
}

.header-action {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}

.header-action:hover,
.header-action:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}

.header-action--solid {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  position: fixed;
}

.site-header.is-scrolled .header-inner {
  min-height: var(--header-height-scrolled);
}

.site-header.is-scrolled .brand img {
  filter: none;
  /* width: clamp(132px, 14vw, 170px); */
  height: auto;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .header-action {
  color: rgba(15, 23, 42, 0.72);
}

.site-header.is-scrolled .nav-link.is-active {
  color: var(--primary);
}

.site-header.is-scrolled .nav-link::after {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.site-header.is-scrolled .header-action {
  background: rgba(31,89,255,0.06);
  border-color: rgba(31,89,255,0.14);
}

.site-header.is-scrolled .header-action--solid {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
}

.page-shell--products .page-hero::before {
  transform: none;
  background-position: center 28%;
}

.page-shell--products .page-hero__overlay {
}

.page-shell--products .page-hero__content {
}

.page-shell--products .page-hero .eyebrow:empty,
.page-shell--products .page-hero p:not(.eyebrow):empty {
  display: none;
}

.page-hero h1 {
  font-size: var(--fs-60);
  font-weight: 700;
  letter-spacing: 0;
}

.page-shell--products main section {
  padding: 0;
}

.products-catalog {
  padding: 34px 0 76px;
}

.products-catalog.is-loading {
  cursor: progress;
}

.products-catalog.is-loading .products-sidebar__nav,
.products-catalog.is-loading .products-catalog__main {
  pointer-events: none;
}

.products-catalog__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1104px);
  align-items: start;
  gap: 70px;
  margin-bottom: 100px;
}

.products-sidebar {
  padding-top: 10px;
  margin-bottom: 0;
}

.products-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 0 2px;
  font-size: 16px;
  color: rgba(15, 23, 42, 0.36);
}

.products-crumb__home {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.products-crumb__home svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* .products-crumb strong {
  color: #999;
} */

.application-list-toolbar {
  border-bottom: 1px solid var(--line);
  padding: 0;
  position: sticky;
  top: var(--toolbar-offset);
  z-index: 10;
}

.application-list-toolbar__inner {
  min-height: var(--toolbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
}

.application-list-tabs {
  display: inline-flex;
  align-items: center;
  gap: var(--space-48);
}

.application-list-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--toolbar-height);
  color: var(--text);
  font-size: var(--fs-18);
  font-weight: 500;
  transition: color .2s ease;
}

.application-list-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.application-list-tab.is-active {
  color: var(--primary);
  font-weight: 700;
}

.application-list-tab.is-active::after,
.application-list-tab:hover::after {
  transform: scaleX(1);
}

.application-list-toolbar .products-crumb {
  margin: 0;
  min-height: auto;
  font-size: var(--fs-14);
}

.application-list-toolbar .products-crumb span:last-child {
  color: #999;
}

.application-list {
  display: grid;
  gap: var(--space-40);
  padding: 0 0 0;
}

.application-list-quicknav {
  margin-bottom: var(--space-40);
  padding: 0;
  margin-top: -40px;
}

.application-list-quicknav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.application-list-quicknav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 var(--space-16);
  border-radius: 999px;
  border: 1px solid rgba(20, 80, 223, 0.12);
  background: #fff;
  color: var(--text-soft);
  font-size: var(--fs-14);
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.application-list-quicknav__link:hover,
.application-list-quicknav__link:focus-visible {
  color: var(--primary);
  border-color: rgba(20, 80, 223, 0.28);
  background: rgba(20, 80, 223, 0.04);
  box-shadow: 0 10px 22px rgba(20, 80, 223, 0.08);
  transform: translateY(-1px);
}

.application-list-shell--cases {
  background: #f5f5f5;
}

.application-list.related-case-grid {
  gap: 45px;
}

.contact-page {
  background: #f5f5f5;
}

.contact-toolbar {
  top: 112px;
}

.about-toolbar {
  top: 112px;
}

.about-intro-section {
  padding: 100px 0;
  background: #fff;
}

.about-intro-section__head {
  text-align: center;
  padding: 0 200px;
}

.about-intro-section__head h2 {
  margin: 0 auto;
  font-size: 48px;
  line-height: 60px;
  font-weight: normal;
  letter-spacing: -0.03em;
  color: #000;
}

.about-intro-section__head p {
  margin: 60px auto 0;
  font-size: 18px;
  line-height: 32px;
  color: #333;
  text-align: left;
}

.about-intro-section__media {
  position: relative;
  margin-top: 54px;
  overflow: hidden;
  border-radius: 26px;
  background: #eef3fa;
  box-shadow: 0 22px 52px rgba(16, 25, 43, 0.08);
}

.about-intro-section__media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro-section__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.about-intro-section__play svg {
  width: 100%;
  height: 100%;
}

.about-intro-section__play circle {
  fill: rgba(17, 24, 39, 0.34);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.5;
}

.about-intro-section__play path {
  fill: #fff;
}

.about-intro-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 80px;
}

.about-intro-stat p {
  margin: 0 0 20px;
  min-height: 20px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}

.about-intro-stat strong {
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 84px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 300;
  color: #0047CA;
  font-variant-numeric: tabular-nums lining-nums;
}

.about-intro-stat__value,
.about-intro-stat__suffix {
  display: inline-block;
}

.about-intro-stat__value {
  min-width: 1ch;
}

.about-intro-stat__suffix {
  margin-left: 2px;
}

.about-intro-stat strong small {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.about-culture-grid {
  display: flex;
  gap: 18px;
  min-height: 474px;
}

.about-culture-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.06);
  transition: flex-grow .36s ease, transform .28s ease, box-shadow .28s ease;
}

.about-culture-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.1);
}

.about-culture-card.is-active {
  flex-grow: 3.1;
}

.about-culture-grid:hover .about-culture-card {
  flex-grow: 1;
}

.about-culture-grid:hover .about-culture-card:hover {
  flex-grow: 3.1;
}

.about-culture-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(62, 144, 255, 0.32) 0%, rgba(29, 87, 220, 0.66) 100%),
    url('/assets/images/aboutus/culture-card-bg.png') center / cover no-repeat;
  transition: opacity .28s ease, transform .36s ease;
  transform: scale(1.04);
}

.about-culture-card.is-active .about-culture-card__bg,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__bg {
  opacity: 1;
  transform: scale(1);
}

.about-culture-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 474px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 14px;
}

.about-culture-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
}

.about-culture-card__icon-shape {
  display: block;
  max-width: 52px;
  max-height: 52px;
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
  transition: background-color .24s ease, opacity .24s ease;
}

.about-culture-card__icon-shape.is-light-icon {
  background-color: var(--primary);
}

.about-culture-card__copy {
  margin-top: 24px;
  text-align: center;
}

.about-culture-card__copy h3 {
  margin: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  color: #111827;
  white-space: normal;
  transition: color .24s ease;
}

.about-culture-card__copy p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease, color .24s ease;
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__inner,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__inner {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 54px 28px 38px;
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy {
  margin-top: auto;
  text-align: left;
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy h3,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy p,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy p {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__bg,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__bg {
  opacity: 1;
  transform: scale(1);
}

.about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__icon-shape,
.about-culture-grid:hover .about-culture-card:hover .about-culture-card__icon-shape {
  background-color: #fff;
}

.about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__bg {
  opacity: 0;
}

.about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__icon-shape {
  background-color: var(--primary);
}

.about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__icon-shape.is-light-icon {
  background-color: var(--primary);
}

.about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__copy h3 {
  color: #111827;
}

.about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__copy p {
  opacity: 0;
  transform: translateY(10px);
}

.about-milestone-section {
  padding: 0 0 0;
  background:
    url('/assets/images/aboutus/history.png') center / cover no-repeat;
}

.about-milestone-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1fr);
  gap: 72px;
  min-height: 760px;
  padding: 100px 0;
  overflow: hidden;
}

.about-milestone-panel::before {
  /* content: ''; */
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 32%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(6, 18, 48, 0.04) 0%, rgba(6, 18, 48, 0.18) 100%);
  pointer-events: none;
}

.about-milestone-panel__visual,
.about-milestone-list {
  position: relative;
  z-index: 1;
}

.about-milestone-panel__visual {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.about-milestone-panel__heading p {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: normal;
  color: #fff;
  letter-spacing: -0.03em;
}

.about-milestone-year-stage {
  position: relative;
  flex: 1;
  min-height: 470px;
}

.about-milestone-year-stage__ring {
  position: absolute;
  left: 124px;
  top: 134px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-milestone-year-stage__active,
.about-milestone-year-stage__shadow {
  position: absolute;
  left: 0;
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.about-milestone-year-stage__text {
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  white-space: nowrap;
  will-change: transform, opacity;
}

.about-milestone-year-stage__active {
  left: 0;
  top: 238px;
  width: min(100%, 480px);
  min-height: 146px;
  font-size: clamp(112px, 9vw, 148px);
  line-height: 0.92;
  color: #fff;
}

.about-milestone-year-stage__shadow {
  width: 190px;
  min-height: 112px;
  font-size: clamp(86px, 7.4vw, 118px);
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.24);
}

.about-milestone-year-stage__shadow--prev {
  left: 164px;
  top: 82px;
}

.about-milestone-year-stage__shadow--next {
  left: 150px;
  top: 406px;
}

.about-milestone-list {
  display: flex;
  min-width: 0;
  max-height: 606px;
  flex-direction: column;
  overflow: auto;
  padding-right: 10px;
}

.about-milestone-list::-webkit-scrollbar {
  width: 6px;
}

.about-milestone-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.about-milestone-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.about-milestone-item {
  width: 100%;
  padding: 28px 0 32px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  text-align: left;
  opacity: 0.52;
  cursor: pointer;
  transition: opacity .24s ease, transform .24s ease;
}

.about-milestone-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-milestone-item:hover,
.about-milestone-item:focus-visible,
.about-milestone-item.is-active {
  opacity: 1;
}

.about-milestone-item:hover,
.about-milestone-item:focus-visible {
  transform: translateX(6px);
}

.about-milestone-item:focus-visible {
  outline: none;
}

.about-milestone-item__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-milestone-item__date {
  font-size: 42px;
  line-height: 1;
  font-weight: normal;
  color: #fff;
  letter-spacing: -0.04em;
}

.about-milestone-item__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.about-milestone-item__title {
  display: block;
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.9;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.82) !important;
}

.about-milestone-item.is-active .about-milestone-item__title,
.about-milestone-item:hover .about-milestone-item__title,
.about-milestone-item:focus-visible .about-milestone-item__title {
  color: #fff;
}

.careers-partner-section {
  padding: 100px 0 0;
}

.careers-partner-section ~ section {
  padding: 100px 0 0;
}

.careers-partner-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
  min-height: 502px;
  /* padding: 34px 42px 34px 34px; */
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.06);
}

.careers-partner-card__media {
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
  background: #dfe8f8;
}

.careers-partner-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-partner-card__body {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 14px 10px 14px 0;
}

.careers-partner-card__copy h2 {
  margin: 0;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
  font-weight: normal;
  color: #000;
  letter-spacing: -0.04em;
}

.careers-partner-card__copy p {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1;
  color: #333;
}

.careers-partner-card__contacts {
  display: grid;
  gap: 20px;
  margin-top: 38px;
  margin-bottom: 30px;
}

.careers-partner-card__contact {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.careers-partner-card__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f59ff 0%, #0f49e1 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 89, 255, 0.22);
}

.careers-partner-card__contact-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.careers-partner-card__contact-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.careers-partner-card__contact div > span {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

.careers-partner-card__contact strong {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  color: #000;
}

.careers-partner-card__button {
  width: 164px;
  height: 56px;
  margin-top: 80px;
}

.careers-partner-card__button:hover {
  box-shadow: 0 20px 38px rgba(31, 89, 255, 0.28);
}

.careers-partner-card__button-icon {
  width: 18px;
  height: 18px;
}

.careers-partner-card__button-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.careers-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
}

.careers-reason-card {
  position: relative;
  display: block;
  min-height: 552px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #060d1f;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.careers-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.16);
}

.careers-reason-card:focus-visible {
  outline: 3px solid rgba(31, 89, 255, 0.38);
  outline-offset: 4px;
}

.careers-reason-card__media,
.careers-reason-card__shade,
.careers-reason-card__content {
  position: absolute;
  inset: 0;
}

.careers-reason-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-reason-card__shade {
  background:
    linear-gradient(180deg, rgba(8, 15, 31, 0.08) 0%, rgba(8, 15, 31, 0.36) 38%, rgba(3, 8, 18, 0.88) 100%);
  transition: background .28s ease, opacity .28s ease;
}

.careers-reason-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 30px;
  color: #fff;
  z-index: 1;
}

.careers-reason-card__content::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.careers-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.careers-reason-card__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.careers-reason-card__copy {
  position: relative;
  display: flex;
  max-width: 320px;
  flex-direction: column;
}

.careers-reason-card__copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.careers-reason-card__copy span {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(16px);
  transition: max-height .3s ease, margin-top .3s ease, opacity .28s ease, transform .28s ease;
}

.careers-reason-card.is-active .careers-reason-card__shade {
  background:
    linear-gradient(180deg, rgba(13, 69, 201, 0.08) 0%, rgba(16, 84, 236, 0.42) 36%, rgba(17, 74, 224, 0.94) 100%);
}

.careers-reason-card.is-active .careers-reason-card__copy span {
  max-height: 220px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.about-honors-section {
  padding: 100px 0;
}

.about-honors-shell {
  --about-honor-gap: 32px;
  --about-honor-columns: 4;
  margin-top: 60px;
}

.about-honors-stage {
  position: relative;
}

.about-honors-viewport {
  padding: 10px 4px;
}

.about-honors-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--about-honor-gap) * (var(--about-honor-columns) - 1))) / var(--about-honor-columns));
  gap: var(--about-honor-gap);
  align-items: stretch;
  transition: transform .42s cubic-bezier(.2, .78, .22, 1);
  will-change: transform;
}

.about-honor-card {
  min-width: 0;
  padding: 26px 26px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.06);
  opacity: 0.76;
  transform: translateY(0) scale(.985);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, opacity .28s ease;
}

.about-honor-card.is-active {
  opacity: 1;
  border-color: rgba(31, 97, 255, 0.14);
  box-shadow: 0 28px 52px rgba(31, 97, 255, 0.12);
  transform: translateY(-4px) scale(1);
}

.about-honor-card__media {
  aspect-ratio: 1.05 / 1;
  border-radius: 22px;
  /* background: linear-gradient(180deg, #fafafa 0%, #f4f5f7 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-honor-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-honor-card__media.is-placeholder {
  background:
    radial-gradient(circle at top, rgba(31, 97, 255, 0.18), rgba(31, 97, 255, 0) 52%),
    linear-gradient(155deg, #12285f 0%, #214ebd 55%, #1f61ff 100%);
}

.about-honor-card__fallback {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 26px 24px;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.about-honor-card__fallback span {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about-honor-card__fallback strong {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.about-honor-card__body {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.about-honor-card__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9ca3af;
}

.about-honor-card__body h3 {
  margin: 12px 0 0;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
  color: #0f172a;
}

.about-honors-nav {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 24px;
  align-items: start;
  margin-top: 36px;
}

.about-honors-nav__arrow {
  margin-top: -12px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform .22s ease, background-color .22s ease, color .22s ease, opacity .22s ease;
}

.about-honors-nav__arrow.is-prev {
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
}

.about-honors-nav__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-honors-nav__arrow:hover:not(:disabled) {
  transform: translateY(-2px);
}

.about-honors-nav__arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.about-honors-timeline {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 0;
  padding-top: 2px;
}

.about-honors-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.38);
}

.about-honors-timeline__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.about-honors-timeline__dot {
  margin-top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9ca3af;
  box-shadow: 0 0 0 6px #f7f7f7;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.about-honors-timeline__label {
  font-size: 15px;
  line-height: 1.4;
  color: #9ca3af;
  transition: color .22s ease, font-weight .22s ease;
}

.about-honors-timeline__item.is-active .about-honors-timeline__dot {
  background: #1f61ff;
  transform: scale(1.18);
  box-shadow: 0 0 0 7px rgba(31, 97, 255, 0.08);
}

.about-honors-timeline__item.is-active .about-honors-timeline__label {
  color: #1f3fad;
  font-weight: 500;
}

.about-certs-section {
  padding: 0 0 100px 0 !important;
}

.about-certs-shell {
  margin-top: 34px;
}

.about-certs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.about-cert-card {
  padding: 26px 26px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.06);
}

.about-cert-card__media {
  aspect-ratio: 1.02 / 1;
  border-radius: 22px;
  /* background: linear-gradient(180deg, #fbfbfc 0%, #f4f5f7 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-cert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-cert-card__body {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.about-cert-card__body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  color: #111827;
  text-align: center;
}

.contact-company-section,
.contact-recruitment-section,
.contact-partner-section,
.contact-dealers-section,
.contact-message-section {
  scroll-margin-top: 210px;
}


.contact-company-section {
  padding: 100px 0;
  background-image: url('/assets/images/contact/area.png');
  background-size: cover;
  background-position: center;
}

.contact-recruitment-section,
.contact-partner-section {
  padding: 100px 0;
}

.contact-message-section {
  padding: 100px 0 100px;
}

.contact-section-stack {
  display: grid;
  gap: 100px;
}

.contact-section-block .section-head {
  margin-bottom: 32px;
}

.contact-company-panel {
  min-height: 560px;
  padding: 48px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(249,250,252,0.96)),
    url('/assets/images/contact/area.png') right bottom / cover no-repeat;
  border-radius: 32px;
  overflow: hidden;
}

.contact-company-card {
  width: fit-content;
  padding: 50px 60px;
  border-radius: 24px;
  background: rgba(255,255,255,1);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.08);
}

.contact-company-card h2 {
  margin: 0 0 50px;
  font-size: 36px;
  line-height: 1;
  color: #000;
  font-weight: normal;
}

.contact-company-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.contact-info-item:not(.is-inline) {
  grid-column: 1 / -1;
}

.contact-info-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(20, 80, 223, 0.2);
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.contact-info-item__body strong {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #666;
}

.contact-info-item__body p {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

.contact-dealers-section {
  padding: 0;
}

.contact-section-head {
  margin-bottom: 32px;
}

.contact-section-head h2 {
  margin: 100px 0 60px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 400;
  color: #111;
}

.contact-dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact-dealer-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.contact-dealer-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-dealer-card__body {
  padding: 50px 40px;
}

.contact-dealer-card__body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: #000;
}

.contact-dealer-card__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-dealer-card__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
}

.contact-dealer-card__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #1f59ff;
}

.contact-dealer-card__list-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-dealer-card__list-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(29%) sepia(99%) saturate(4085%) hue-rotate(223deg) brightness(103%) contrast(103%);
}

.contact-message-card {
  padding: 40px 42px 42px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.06);
}

.contact-message-card__intro {
  margin-bottom: 28px;
}

.contact-message-card__intro h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  color: #121826;
}

.contact-message-card__intro p {
  margin-top: 12px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
}

.contact-inquiry-form__submit {
  max-width: 240px;
}

.application-list-shell.is-loading {
  cursor: progress;
}

.application-list-shell.is-loading .application-list-tabs,
.application-list-shell.is-loading .application-list {
  pointer-events: none;
}

.application-list-card {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-80);
  scroll-margin-top: 220px;
  padding: var(--space-48);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.application-list-card__media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.application-list-card__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .3s ease;
}

.application-list-card:hover .application-list-card__media img {
  transform: scale(1.03);
}

.application-list-card__body {
  padding-right: var(--space-20);
}

.application-list-card__body h3 {
  margin: 0;
  font-size: var(--fs-48);
  line-height: 1.16;
  color: var(--text-strong);
}

.application-list-card__body p {
  margin: var(--space-40) 0 0;
  max-width: 560px;
  font-size: var(--fs-16);
  line-height: 30px;
  color: var(--text-body);
}

.application-list-card__link {
  margin-top: var(--space-80);
  font-size: var(--fs-14);
  font-weight: 700;
}

.products-sidebar__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 12px;
  color: rgba(30, 41, 59, 0.52);
  text-transform: uppercase;
  letter-spacing: .18em;
}

.products-sidebar__eyebrow span {
  font-size: 13px;
  color: rgba(17, 24, 39, 0.74);
}

.products-sidebar__eyebrow p {
  margin: 0;
}

.products-sidebar__nav {
  width: 340px;
  border-top: 3px solid var(--primary);
}

.products-sidebar__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 4px 0 0;
  border-bottom: 1px solid #dfe5ef;
  color: #333;
  font-size: 18px;
  transition: color .2s ease;
}

.products-sidebar__nav-label {
  font-weight: 500;
}

.products-sidebar__nav-icon {
  font-size: 32px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.28);
  transition: color .2s ease, transform .2s ease;
}

.products-sidebar__nav-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-sidebar__nav a.is-active {
  color: var(--primary);
  font-weight: 700;
}

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

.products-sidebar__nav a.is-active .products-sidebar__nav-icon,
.products-sidebar__nav a:hover .products-sidebar__nav-icon {
  color: var(--primary);
  transform: translateX(4px);
}

.products-catalog__main {
  width: auto;
  min-width: 0;
}

.products-catalog__header {
  margin-bottom: 30px;
}

.products-search {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.products-search__field {
  display: block;
  flex: 1;
  width: auto;
}

.products-search__input {
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 34px rgba(20, 41, 77, 0.06);
  font-size: 18px;
  color: #1c2434;
}

.products-search__input::placeholder {
  color: rgba(15, 23, 42, 0.28);
}

.products-search__button {
  min-width: 150px;
  height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(31, 89, 255, 0.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.products-search__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(31, 89, 255, 0.24);
}

.products-search__button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-catalog__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(15, 23, 42, 0.34);
}

.products-catalog__header h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: normal;
  color: #111;
}

.products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 485px;
  gap: 33px;
}

.product-catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 485px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
  box-sizing: border-box;
  transition: transform .28s ease, box-shadow .28s ease;
}

.product-catalog-card:hover,
.product-catalog-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(17, 24, 39, 0.12);
}

.product-catalog-card__media {
  display: grid;
  place-items: center;
  height: 280px;
  overflow: hidden;
  border-radius: 14px;
}

.product-catalog-card__media img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  transition: transform .32s ease;
}

.product-catalog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  text-align: center;
}

.product-catalog-card__body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  transition: color .2s ease;
}

.product-catalog-card__body p {
  margin: 20px 0 0;
  min-height: 18px;
  font-size: 14px;
  color: #8b8f97;
}

.product-catalog-card__body p.is-empty {
  visibility: hidden;
}

.product-catalog-card__link {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  color: #666;
  transition: color .2s ease;
}

.product-catalog-card__link:hover {
  color: var(--primary);
}

.product-catalog-card:hover .product-catalog-card__media img,
.product-catalog-card:focus-within .product-catalog-card__media img {
  transform: scale(1.04);
}

.product-catalog-card:hover .product-catalog-card__body h3,
.product-catalog-card:focus-within .product-catalog-card__body h3,
.product-catalog-card:hover .product-catalog-card__link,
.product-catalog-card:focus-within .product-catalog-card__link {
  color: var(--primary);
}

.product-catalog-card--catalog {
  width: 100%;
}

.product-catalog-card--related {
  width: 100%;
}

.product-catalog-card__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.54);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.product-catalog-card__dot svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-catalog-card__link:hover .product-catalog-card__dot {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.product-catalog-card:hover .product-catalog-card__dot,
.product-catalog-card:focus-within .product-catalog-card__dot {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.products-catalog__pager {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.products-catalog__pager .pagination-dots {
  gap: 12px;
}

.products-catalog__pager .pagination-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
}

.products-catalog__pager .pagination-dots .is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 1500px) {
  :root {
    --container: min(100vw - 104px, 1200px);
    --header-height: 116px;
    --header-height-scrolled: 92px;
    --toolbar-offset: 92px;
    --toolbar-height: 74px;
    --nav-hover-buffer: 18px;
    --hero-height: 360px;
    --hero-padding-top: 76px;
    --hero-padding-bottom: 60px;
    --section-space: 76px;
    --space-40: 36px;
    --space-48: 40px;
    --space-64: 52px;
    --space-80: 64px;
    --fs-18: 16px;
    --fs-24: 18px;
    --fs-40: 36px;
    --fs-48: 40px;
    --fs-60: 46px;
  }

  .about-intro-section__head {
    padding: 0 36px;
  }


  .header-inner { gap: 18px; }

  .brand img {
    width: clamp(132px, 14vw, 170px);
  }

  .site-nav { gap: 34px; }

  .site-subnav {
    gap: 10px;
    padding: 12px clamp(18px, 3vw, 28px) 14px;
  }

  .site-subnav__link {
    min-width: 150px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .header-search-toggle,
  .home-header-search {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .application-list-toolbar,
  .contact-toolbar,
  .about-toolbar {
    top: var(--toolbar-offset);
  }

  .application-list-toolbar__inner {
    gap: 20px;
  }

  .application-list-tabs {
    gap: 36px;
  }

  .product-detail-tabs {
    top: var(--toolbar-offset);
  }

  .product-detail-tabs__list {
    gap: 40px;
  }

  .product-detail-tabs__link { min-height: var(--toolbar-height); font-size: var(--fs-16); }

  .application-scenario-tabs {
    top: var(--toolbar-offset);
  }

  .application-scenario-tabs__list {
    gap: 36px;
  }

  .application-scenario-tabs__button { min-height: var(--toolbar-height); font-size: var(--fs-16); }

  .page-hero h1 {
    font-size: clamp(40px, 3.5vw, 50px);
  }

  .page-hero p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 14px;
    font-size: 16px;
  }

  .contact-section-stack {
    gap: 76px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .home-section-head h2,
  .home-clients-panel .home-section-head h2 {
    font-size: var(--fs-60);
    line-height: 1.12;
  }

  .home-section-head p,
  .home-clients-panel .home-section-head p {
    margin-top: 18px;
    font-size: var(--fs-24);
  }

  .home-solutions-panel {
    padding: 72px 0 76px;
  }

  .home-solutions {
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 52px;
    margin-top: 28px;
    align-items: center;
  }

  .home-solution-nav-item {
    gap: 14px;
    padding: 14px 0;
  }

  .home-solution-nav-item h3 {
    font-size: 18px;
    line-height: 1.8;
  }

  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 21px;
  }

  .home-solution-nav-item:hover p,
  .home-solution-nav-item:focus-visible p,
  .home-solution-nav-item.is-active p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }

  .products-catalog__layout {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 28px;
    margin-bottom: 56px;
  }

  .products-sidebar {
    position: sticky;
    top: 132px;
    padding-top: 0;
  }

  .products-sidebar__nav {
    width: 100%;
  }

  .products-sidebar__nav a {
    min-height: 62px;
    font-size: 16px;
  }

  .products-sidebar__nav-icon {
    font-size: 24px;
  }

  .products-catalog__main {
    width: auto;
    z-index: 1;
    background-color: #f5f5f5;
    padding-top: 10px;
  }

  .products-catalog {
    padding: 24px 0 60px;
  }

  .products-crumb {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 14px;
  }

  .products-search {
    margin-top: 24px;
    gap: 14px;
  }

  .products-search__input {
    height: 52px;
    padding: 0 24px;
    font-size: 16px;
  }

  .products-search__button {
    min-width: 132px;
    height: 52px;
    padding: 0 22px;
  }

  .products-catalog__header h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .products-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 392px;
    gap: 20px;
  }

  .product-catalog-card,
  .product-catalog-card--catalog {
    width: 100%;
    height: 392px;
    padding: 8px;
    border-radius: 16px;
  }

  .product-catalog-card__media,
  .product-catalog-card__media img {
    height: 218px;
  }

  .product-catalog-card__body {
    padding: 12px 10px 8px;
  }

  .product-catalog-card__body h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .product-catalog-card__body p {
    margin-top: 14px;
    font-size: 13px;
  }

  .product-catalog-card__link {
    margin-top: 18px;
    gap: 12px;
    font-size: 15px;
  }

  .product-catalog-card__dot {
    width: 42px;
    height: 42px;
  }

  .product-catalog-card__dot svg {
    width: 20px;
    height: 20px;
  }

  .product-detail-hero {
    padding: 84px 0 40px !important;
  }

  .product-detail-hero .products-crumb {
    margin-top: 18px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .product-detail-hero__grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 24px;
    align-items: start;
  }

  .product-detail-copy {
    padding-top: 8px;
  }

  .product-detail-copy__title {
    margin-top: 12px;
    font-size: 32px;
    line-height: 1.18;
  }

  .product-detail-copy__summary {
    margin-top: 20px;
    font-size: 15px;
    line-height: 26px;
  }

  .product-detail-copy__actions {
    margin-top: 22px;
  }

  .product-detail-stage {
    height: 300px;
  }

  .product-detail-gallery-bar {
    gap: 18px;
    margin-top: 20px;
  }

  .product-detail-gallery {
    gap: 10px;
  }

  .product-detail-gallery__thumb {
    width: 78px;
    height: 78px;
  }

  .product-detail-cta {
    /* padding-top: 18px; */
    height: auto;
  }

  .product-detail-cta__panel {
    height: 320px;
  }

  .product-detail-cta__panel::before {
    right: -42px;
    top: -34px;
    width: 210px;
    height: 210px;
  }

  .product-detail-cta__panel::after {
    right: 54px;
    bottom: -68px;
    width: 240px;
    height: 240px;
  }

  .product-detail-cta__panel h2 {
    font-size: 42px;
    margin-bottom: 34px;
  }

  .product-detail-cta__panel p {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .product-detail-cta__aside {
    min-width: 210px;
    gap: 16px;
  }

  .product-detail-cta__badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .product-detail-cta__button {
    min-width: 138px;
    height: 44px;
    padding: 0 10px 0 22px;
    gap: 14px;
    font-size: 14px;
  }

  .product-detail-cta__button-icon {
    width: 32px;
    height: 32px;
  }

  .application-detail-hero {
    height: 490px;
    padding: 96px 0 32px !important;
  }

  .application-detail-hero__inner {
    height: 290px;
  }

  .application-scene-section__energy,
  .application-scene-section--value {
    padding-bottom: 76px !important;
  }

  .application-solution-card {
    gap: 76px;
    padding: 76px 0;
  }


  .contact-recruitment-section, .contact-partner-section {
    padding: 76px;
  }

  .application-detail-hero__copy h1 {
    font-size: 38px;
  }

  .application-detail-hero__copy p {
    margin-top: 22px;
    line-height: 1.75;
  }

  .application-detail-hero__button {
    margin-top: 72px;
  }

  .application-list-toolbar .products-crumb {
    font-size: 14px;
  }

  .application-list {
    gap: 28px;
  }

  .application-list-quicknav {
    margin-bottom: 28px;
  }

  .application-list-quicknav__list {
    gap: 10px;
  }

  .application-list-quicknav__link {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }

  .application-list-card {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 32px;
    padding: 28px;
  }

  .application-list-card__media img {
    height: 320px;
  }

  .application-list-card__body {
    padding-right: 0;
  }

  .application-list-card__body h3 {
    font-size: 32px;
  }

  .application-list-card__body p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 26px;
  }

  .application-list-card__link {
    margin-top: 36px;
  }

  .application-scene-intro__copy {
    padding: 0 100px 60px;
  }

  .application-scene-intro__copy h2,
  .application-scene-section__head h2 {
    padding: 76px 0 36px;
    font-size: 36px;
  }

  .home-hero__inner {
    padding: 32vh 0 28px;
  }

  .home-hero__copy h1 {
    font-size: 52px;
  }

  .home-hero__copy p {
    margin-top: 14px;
    font-size: 24px;
  }

  .home-hero__copy .button--consult {
    margin-top: 40px;
  }

  .home-hero__ticker-shell {
    max-width: 52vw;
  }

  .home-solutions__stage {
    min-height: 460px;
  }

  .home-solutions__stage img {
    height: 460px;
  }

  .home-about-panel {
    min-height: calc(100vh - 92px);
    padding: 42px 0 34px;
  }

  .home-about-panel .container {
    min-height: calc(100vh - 92px - 88px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
  }

  .home-about-panel .home-section-head {
    flex: 0 0 auto;
  }

  /* .home-about-panel .home-section-head h2 {
    font-size: 42px;
    line-height: 1.08;
  } */

  .home-about-panel .home-section-head p {
    margin-top: 14px;
    font-size: 17px;
  }

  .home-about-panel .home-section-head--center .button {
    margin-top: 24px;
  }

  .home-about-stage {
    flex: 1 1 auto;
    margin-top: 18px;
    min-height: 290px;
  }

  .home-about-stage__logo img {
    height: 118px;
  }

  .home-about-stage__globe img {
    width: min(28vw, 300px);
  }

  .home-about-stage__glass {
    bottom: -34px;
    height: 136px;
  }

  .home-about-stats {
    flex: 0 0 auto;
    gap: 0 52px;
    margin-top: -102px;
    padding-top: 24px;
  }

  .home-about-stat {
    gap: 18px;
    padding: 16px 0;
  }

  .home-about-stat__value {
    font-size: clamp(38px, 4vw, 58px);
  }

  .home-about-stat p {
    font-size: 17px;
  }

  .home-news-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .82fr) minmax(260px, .82fr);
    gap: 18px;
  }

  .home-news-feature__viewport {
    height: 380px;
  }

  .home-news-feature-slide__overlay {
    padding: 0 24px 24px;
  }

  .home-news-feature-slide__overlay time {
    font-size: 14px;
  }

  .home-news-feature-slide__overlay h3 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.4;
  }

  .home-news-side-card {
    height: 380px;
    border-radius: 18px;
  }

  .home-news-side-card .home-news-item__media {
    max-height: 176px;
  }

  .home-news-side-card .home-news-item__media img {
    height: 176px;
  }

  .home-news-side-card__body {
    padding: 24px 22px 22px;
  }

  .home-news-side-card__body time {
    font-size: 14px;
  }

  .home-news-side-card__body h3 {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.45;
  }

  .home-news-side-card__body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .home-news-side-card__link {
    padding-top: 18px;
    gap: 12px;
    font-size: 14px;
  }

  .home-news-side-card__icon {
    width: 34px;
    height: 34px;
  }

  .news-list-section__inner .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .news-list-section__inner .news-list-card__media img {
    height: 196px;
  }

  .news-list-section__inner .news-list-card__body {
    padding: 20px 18px 22px;
  }

  .news-list-section__inner .news-list-card__body time {
    font-size: 12px;
  }

  .news-list-section__inner .news-list-card__body h3 {
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.4;
  }

  .news-list-section__inner .news-list-card__body p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
  }

  .news-list-section__inner .news-list-card__link {
    padding-top: 16px;
    font-size: 13px;
  }

  .home-clients__page {
    gap: 8px 14px;
  }
}

@media (max-width: 1024px) {
  .about-intro-section {
    padding: 54px 0 64px;
  }

  .about-intro-section__head h2 {
    font-size: 40px;
  }

  .about-intro-section__head p {
    font-size: 14px;
  }

  .about-intro-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .about-intro-stat strong {
    font-size: 54px;
  }

  .about-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .about-culture-card,
  .about-culture-card.is-active,
  .about-culture-grid:hover .about-culture-card,
  .about-culture-grid:hover .about-culture-card:hover {
    flex-basis: auto;
  }

  .about-culture-card {
    min-height: 320px;
  }

  .about-culture-card__inner {
    min-height: 320px;
    padding: 38px 24px 30px;
  }

  .careers-partner-section {
    padding-top: 28px;
  }

  .careers-partner-card {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    padding: 28px;
  }

  .careers-partner-card__body {
    padding: 0;
  }

  .careers-partner-card__copy h2 {
    font-size: 44px;
  }

  .careers-partner-card__copy p {
    font-size: 16px;
  }

  .careers-partner-card__contacts {
    margin-top: 34px;
  }

  .careers-partner-card__contact strong {
    font-size: 22px;
  }

  .careers-partner-card__button {
    margin-top: 40px;
  }

  .careers-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .careers-reason-card {
    min-height: 400px;
  }

  .careers-reason-card__content {
    padding: 28px 24px 24px;
  }

  .careers-reason-card__copy strong {
    font-size: 20px;
  }

  .careers-reason-card__copy span {
    font-size: 14px;
  }

  .about-milestone-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 56px 36px 42px;
  }

  .about-milestone-panel__heading p {
    font-size: 42px;
  }

  .about-milestone-year-stage {
    min-height: 340px;
  }

  .about-milestone-year-stage__ring {
    left: 92px;
    top: 84px;
    width: 220px;
    height: 220px;
  }

  .about-milestone-year-stage__active {
    top: 170px;
    font-size: 122px;
  }

  .about-milestone-year-stage__shadow {
    font-size: 90px;
  }

  .about-milestone-year-stage__shadow--prev {
    left: 126px;
    top: 38px;
  }

  .about-milestone-year-stage__shadow--next {
    left: 118px;
    top: 270px;
  }

  .about-milestone-list {
    max-height: 500px;
    padding-right: 4px;
  }

  .about-milestone-item__date {
    font-size: 34px;
  }

  .about-milestone-item__title {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }

  .about-honors-shell {
    --about-honor-gap: 24px;
    --about-honor-columns: 2;
  }

  .about-honor-card {
    padding: 22px 22px 20px;
  }

  .about-honor-card__body h3 {
    font-size: 18px;
  }

  .about-honors-nav {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 16px;
  }

  .about-honors-nav__arrow {
    width: 44px;
    height: 44px;
  }

  .about-honors-timeline {
    gap: 0;
  }

  .about-honors-timeline__label {
    font-size: 13px;
  }

  .about-certs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-cert-card {
    padding: 22px 22px 20px;
  }

  .about-cert-card__body h3 {
    font-size: 18px;
  }

  .download-library__filters-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .download-library__filters-row.download-library__filters-row--triple {
    grid-template-columns: 1fr 1fr 110px;
  }

  .download-library__filters-row:last-child {
    grid-template-columns: minmax(0, 1fr) 110px;
  }

  .download-library-row {
    padding: 22px 20px;
  }

  .download-library-row__body h3 {
    font-size: 18px;
  }

  .contact-company-panel {
    min-height: 0;
    padding: 32px 24px;
    background-size: cover;
  }

  .contact-section-stack {
    gap: 40px;
  }

  .contact-company-card {
    margin-left: 0;
  }

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

  .application-list-toolbar__inner {
    min-height: 0;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .application-list-tabs {
    gap: 28px;
  }

  .application-list-tab {
    min-height: 48px;
    font-size: 16px;
  }

  .application-list-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .application-list-card__body {
    padding-right: 0;
  }

  .application-list-card__body h3 {
    font-size: 32px;
  }

  .application-list-quicknav {
    margin-bottom: 22px;
    padding-top: 12px;
  }

  .application-list-quicknav__list {
    gap: 10px;
  }

  .application-scenario-tabs {
    top: 74px;
  }

  .application-solution-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .application-detail-hero {
    min-height: 480px;
  }

  .application-detail-hero__inner {
    min-height: 300px;
  }

  .application-scenario-tabs__list {
    gap: 12px;
  }

  .application-scene-points,
  .application-related-products {
    grid-template-columns: 1fr;
  }

  .application-value-card,
  .application-scene-cta .product-detail-cta__panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .application-value-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .application-scene-cta .product-detail-cta__button {
    min-width: 0;
  }

  .product-detail-tabs {
    top: 74px;
  }

  .product-detail-tabs__list {
    gap: 34px;
  }

  .product-detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-stage {
    min-height: 380px;
  }

  .product-detail-gallery-bar {
    align-items: center;
    flex-wrap: wrap;
  }

  .product-detail-gallery-nav {
    margin-left: 0;
  }

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

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

  .product-downloads__tabs {
    margin-top: -72px;
  }

  .download-report-row,
  .download-library-row,
  .product-download-item {
    padding: 20px 22px;
  }

  .download-report-row__meta,
  .download-library-row__meta,
  .product-download-item__meta {
    gap: 14px 24px;
  }

  .product-related-grid,
  .related-case-grid {
    grid-template-columns: 1fr;
  }

  .product-related-carousel__track .related-case-card {
    flex-basis: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .product-detail-cta__panel {
    padding: 38px 32px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-cta__aside {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
  }

  .products-catalog__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .products-sidebar {
    width: auto;
    padding-top: 0;
  }

  .products-crumb {
    margin-bottom: 16px;
  }

  .products-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border-top: 0;
  }

  .products-sidebar__nav a {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    background: #fff;
  }

  .products-catalog__header h2 {
    font-size: 44px;
  }

  .products-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .products-catalog__main,
  .product-catalog-card--catalog {
    width: auto;
  }

  .product-catalog-card {
    height: auto;
  }
}

@media (max-width: 767px) {
  .about-intro-section {
    padding: 40px 0 54px;
  }

  .about-intro-section__head h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.42;
  }

  .about-intro-section__head p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.95;
    text-align: left;
  }

  .about-intro-section__media {
    margin-top: 30px;
    border-radius: 18px;
  }

  .about-intro-section__play {
    width: 54px;
    height: 54px;
  }

  .about-intro-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    margin-top: 30px;
  }

  .about-intro-stat p {
    min-height: 0;
    font-size: 12px;
  }

  .about-intro-stat strong {
    margin-top: 10px;
    font-size: 42px;
  }

  .about-intro-stat strong small {
    font-size: 18px;
  }

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

  .about-culture-card,
  .about-culture-card.is-active {
    min-height: 150px;
    border-radius: 18px;
  }

  .about-culture-card__inner,
  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__inner,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__inner,
  .about-culture-card:not(.is-active) .about-culture-card__inner {
    min-height: 150px;
    padding: 18px 14px 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-culture-card__icon {
    width: 42px;
    height: 42px;
  }

  .about-culture-card__icon-shape {
    max-width: 30px;
    max-height: 30px;
    width: 30px;
    height: 30px;
  }

  .about-culture-card__copy,
  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy,
  .about-culture-card:not(.is-active) .about-culture-card__copy {
    margin-top: 14px;
    text-align: left;
  }

  .about-culture-card__copy h3,
  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy h3,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy h3,
  .about-culture-card:not(.is-active) .about-culture-card__copy h3 {
    font-size: 17px;
    line-height: 1.28;
    white-space: normal;
  }

  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy h3,
  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__copy h3,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy h3 {
    color: #fff;
  }

  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy p,
  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__copy p,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy p,
  .about-culture-card:not(.is-active) .about-culture-card__copy p {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.55;
    color: #5b6575;
  }

  .about-culture-grid:not(:hover) .about-culture-card.is-active .about-culture-card__copy p,
  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__copy p,
  .about-culture-grid:hover .about-culture-card:hover .about-culture-card__copy p {
    color: rgba(255, 255, 255, 0.9);
  }

  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__bg {
    opacity: 1;
    transform: scale(1);
  }

  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__icon-shape,
  .about-culture-grid:hover .about-culture-card.is-active:not(:hover) .about-culture-card__icon-shape.is-light-icon {
    background-color: #fff;
  }

  .about-culture-card:not(.is-active) .about-culture-card__bg {
    opacity: 0;
  }

  .careers-partner-section {
    padding-top: 18px;
  }

  .careers-partner-card {
    gap: 22px;
    padding: 18px;
    border-radius: 24px;
  }

  .careers-partner-card__media {
    border-radius: 18px;
  }

  .careers-partner-card__copy h2 {
    font-size: 28px;
  }

  .careers-partner-card__copy p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .careers-partner-card__contacts {
    gap: 16px;
    margin-top: 24px;
  }

  .careers-partner-card__contact {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .careers-partner-card__contact-icon {
    width: 46px;
    height: 46px;
  }

  .careers-partner-card__contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .careers-partner-card__contact-icon img {
    width: 18px;
    height: 18px;
  }

  .careers-partner-card__contact div > span {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .careers-partner-card__contact strong {
    font-size: 18px;
    line-height: 1.45;
    word-break: break-all;
  }

  .careers-partner-card__button {
    width: 144px;
    height: 50px;
    margin-top: 28px;
    font-size: 15px;
  }

  .careers-reasons-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .careers-reason-card {
    min-height: 340px;
    border-radius: 24px;
  }

  .careers-reason-card__content {
    padding: 24px 18px 20px;
  }

  .careers-reason-card__content::after {
    border-radius: 23px;
  }

  .careers-reason-card__icon {
    width: 46px;
    height: 46px;
  }

  .careers-reason-card__copy {
    max-width: 280px;
  }

  .careers-reason-card__copy strong {
    font-size: 18px;
  }

  .careers-reason-card.is-active .careers-reason-card__copy span {
    margin-top: 14px;
  }

  .about-milestone-section {
    padding-top: 18px;
  }

  .about-milestone-panel {
    gap: 28px;
    padding: 34px 18px 24px;
    border-radius: 24px;
  }

  .about-milestone-panel__heading p {
    font-size: 30px;
  }

  .about-milestone-year-stage {
    min-height: 208px;
  }

  .about-milestone-year-stage__ring {
    left: 58px;
    top: 30px;
    width: 132px;
    height: 132px;
  }

  .about-milestone-year-stage__active {
    top: 98px;
    font-size: 74px;
  }

  .about-milestone-year-stage__shadow {
    font-size: 46px;
    min-width: 90px;
  }

  .about-milestone-year-stage__shadow--prev {
    left: 90px;
    top: 12px;
  }

  .about-milestone-year-stage__shadow--next {
    left: 84px;
    top: 148px;
  }

  .about-milestone-list {
    max-height: 420px;
  }

  .about-milestone-item {
    padding: 18px 0 20px;
  }

  .about-milestone-item__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .about-milestone-item__date {
    font-size: 26px;
  }

  .about-milestone-item__tag {
    min-height: 24px;
    padding: 0 10px;
    font-size: 12px;
  }

  .about-milestone-item__title {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
  }

  .about-honors-shell {
    --about-honor-gap: 10px;
    --about-honor-columns: 2;
    margin-top: 20px;
  }

  .about-honors-viewport {
    padding: 6px 2px 8px;
  }

  .about-honor-card {
    padding: 10px 10px 12px;
    border-radius: 16px;
  }

  .about-honor-card.is-active {
    transform: translateY(-2px) scale(1);
  }

  .about-honor-card__media {
    aspect-ratio: 1.18 / 1;
    border-radius: 14px;
  }

  .about-honor-card__fallback {
    padding: 16px 14px;
  }

  .about-honor-card__fallback span {
    font-size: 10px;
    letter-spacing: .14em;
  }

  .about-honor-card__fallback strong {
    font-size: 16px;
    letter-spacing: 0;
  }

  .about-honor-card__body {
    margin-top: 10px;
    padding-top: 10px;
  }

  .about-honor-card__body p {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .about-honor-card__body h3 {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .about-honors-nav {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
  }

  .about-honors-nav__arrow {
    width: 40px;
    height: 40px;
    margin-top: 8px;
  }

  .about-honors-timeline {
    gap: 0;
  }

  .about-honors-timeline__item {
    gap: 12px;
  }

  .about-honors-timeline__label {
    font-size: 11px;
  }

  .about-certs-shell {
    margin-top: 18px;
  }

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

  .about-cert-card {
    padding: 10px 10px 12px;
    border-radius: 16px;
  }

  .about-cert-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 10px) / 2);
    justify-self: center;
  }

  .about-cert-card__media {
    aspect-ratio: 1.08 / 1;
    border-radius: 14px;
  }

  .about-cert-card__body {
    margin-top: 10px;
    padding-top: 10px;
  }

  .about-cert-card__body h3 {
    font-size: 13px;
    line-height: 1.45;
  }

  .download-library {
    gap: 24px;
  }

  .download-library__filters-row {
    grid-template-columns: 1fr;
  }

  .download-library__filters-row:last-child {
    grid-template-columns: 1fr;
  }

  .application-list.related-case-grid {
    gap: 22px;
  }

  .download-library__button {
    width: 100%;
  }

  .download-library-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .download-library-row__main {
    width: 100%;
    align-items: flex-start;
  }

  .download-library-row__body h3 {
    gap: 10px;
    font-size: 16px;
  }

  .download-library-row__meta {
    gap: 8px 14px;
  }

  .download-library-row__action {
    align-self: flex-end;
  }

  .job-item {
    border-radius: 18px;
  }

  .job-item__head {
    padding: 18px 18px 16px;
    gap: 12px;
  }

  .job-item__head strong {
    font-size: 18px;
  }

  .job-item__meta {
    gap: 10px 16px;
    margin-top: 10px;
  }

  .job-item__meta span {
    font-size: 13px;
  }

  .job-item__action {
    align-self: flex-start;
  }

  .job-item__action-label {
    font-size: 13px;
  }

  .job-item__content {
    padding: 20px 18px 24px;
  }

  .job-item__section h4 {
    font-size: 22px;
  }

  .job-item__list li {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-company-section {
    padding: 22px 0 34px;
  }

  .contact-recruitment-section,
  .contact-partner-section,
  .contact-message-section {
    padding-bottom: 64px;
  }

  .contact-company-panel {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .contact-company-card {
    width: 100%;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .contact-company-card h2 {
    font-size: 26px;
  }

  .contact-company-card__list {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-info-item:not(.is-inline) {
    grid-column: auto;
  }

  .contact-info-item__icon {
    width: 44px;
    height: 44px;
  }

  .contact-info-item__body p {
    font-size: 14px;
  }

  .contact-section-head {
    margin-bottom: 22px;
  }

  .contact-section-head h2 {
    font-size: 34px;
  }

  .contact-dealers-section {
    padding-bottom: 40px;
  }

  .contact-dealer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-dealer-card__image {
    height: 190px;
  }

  .contact-dealer-card__body {
    padding: 20px 18px 22px;
  }

  .contact-dealer-card__body h3 {
    font-size: 20px;
  }

  .contact-section-stack {
    gap: 28px;
  }

  .contact-message-card {
    padding: 26px 20px 24px;
    border-radius: 24px;
  }

  .contact-message-card__intro h3 {
    font-size: 24px;
  }

  .contact-message-card__intro p {
    font-size: 14px;
    line-height: 1.85;
  }

  .contact-inquiry-form__submit {
    max-width: none;
  }

  .application-list-tabs {
    gap: 18px;
    width: 100%;
    justify-content: space-between;
  }

  .contact-toolbar .application-list-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
    -webkit-overflow-scrolling: touch;
  }

  .contact-toolbar .application-list-tabs::-webkit-scrollbar {
    display: none;
  }

  .application-list-tab {
    min-height: 42px;
    font-size: 15px;
  }

  .contact-toolbar .application-list-tab {
    display: flex;
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .application-list-toolbar .products-crumb {
    font-size: 14px;
  }

  .application-list {
    gap: 18px;
    padding-top: 24px;
  }

  .application-list-quicknav {
    margin-bottom: 18px;
    padding-top: 8px;
  }

  .application-list-quicknav__list {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .application-list-quicknav__list::-webkit-scrollbar {
    display: none;
  }

  .application-list-quicknav__link {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .application-list-card {
    padding: 14px;
    gap: 18px;
  }

  .application-list-card__media img {
    height: 190px;
  }

  .application-list-card__body h3 {
    font-size: 28px;
  }

  .application-list-card__body p {
    line-height: 1.8;
  }

  .application-list-card__link {
    margin-top: 22px;
  }

  .application-scenario-tabs {
    top: 68px;
  }

  .application-detail-page {
    padding-bottom: 72px;
  }

  .application-detail-hero {
    min-height: 360px;
    padding-bottom: 26px;
  }

  .application-detail-hero__copy h1 {
    font-size: 36px;
  }

  .application-detail-hero__copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .application-detail-hero__inner {
    min-height: 210px;
  }

  .application-detail-hero__button {
    margin-top: 34px;
    min-width: 132px;
    font-size: 14px;
  }

  .application-scenario-tabs__button {
    min-height: 54px;
    padding: 0;
    font-size: 14px;
  }

  .application-scene-intro,
  .application-scene-section,
  .application-scene-cta {
    padding-top: 26px;
  }

  .application-scene-intro__copy,
  .application-scene-point,
  .application-value-card,
  .application-scene-cta .product-detail-cta__panel {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .application-solution-card__copy {
    padding: 0;
    border-radius: 0;
  }

  .application-scene-intro__copy h2,
  .application-scene-section__head h2 {
    font-size: 28px;
  }

  .application-scene-intro__copy p,
  .application-scene-point p,
  .application-solution-card__body,
  .application-value-card__body p,
  .application-scene-cta .product-detail-cta__panel p {
    font-size: 14px;
    line-height: 1.85;
  }

  .application-solution-card__media {
    min-height: 220px;
    border-radius: 22px;
  }

  .application-scene-point h3,
  .application-solution-card__copy h3,
  .application-value-card__body h3 {
    font-size: 20px;
  }

  .application-scene-point {
    min-height: 360px;
    padding: 28px 22px 24px;
  }

  .application-scene-point__index {
    font-size: 56px;
  }

  .application-scene-point h3 {
    padding-top: 116px;
    font-size: 20px;
  }

  .application-scene-point p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .application-value-card {
    gap: 18px;
    min-height: 0;
    padding: 28px 24px;
  }

  .application-value-card__icon {
    width: 48px;
    height: 48px;
  }

  .application-value-card__icon img {
    max-width: 48px;
    max-height: 48px;
  }

  .product-catalog-card__media img {
    height: 220px;
    padding: 24px;
  }

  .product-catalog-card__body {
    align-items: center;
    padding: 24px 18px 0;
    border-radius: 0;
  }

  .product-catalog-card__link,
  .application-scene-cta .product-detail-cta__button {
    width: auto;
  }

  .product-catalog-card__link {
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 22px;
  }

  .page-shell--product-detail .site-header,
  .page-shell--application-detail .site-header {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
  }

  .product-detail-tabs {
    top: 68px;
  }

  .product-detail-tabs__list {
    gap: 26px;
  }

  .product-detail-tabs__link {
    min-height: 54px;
    font-size: 14px;
  }

  .product-detail-page {
    /* padding-bottom: 64px; */
  }

  .product-detail-hero {
    padding: 28px 0 20px;
  }

  .product-detail-copy {
    padding-top: 0;
  }

  .product-detail-copy__title {
    font-size: 30px;
  }

  .product-detail-copy__subtitle,
  .product-detail-copy__summary {
    font-size: 14px;
  }

  .product-detail-copy__actions,
  .product-detail-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-section__action {
    width: auto;
  }

  .product-detail-stage {
    min-height: 260px;
    border-radius: 20px;
  }

  .product-detail-stage img {
    padding: 28px 30px 42px;
  }

  .product-detail-gallery {
    flex: 1 1 auto;
    gap: 10px;
  }

  .product-detail-gallery-bar {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-gallery__thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .product-detail-gallery-nav {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }

  .product-detail-gallery-nav__count {
    gap: 8px;
    font-size: 16px;
  }

  .product-detail-gallery-nav__actions {
    gap: 10px;
  }

  .product-detail-gallery-nav__button {
    width: 48px;
    height: 48px;
  }

  .product-detail-gallery-nav__button svg {
    width: 18px;
    height: 18px;
  }

  .product-detail-section {
    padding-top: 26px;
    scroll-margin-top: 142px;
  }

  .product-detail-section__head h2 {
    font-size: 24px;
  }

  .product-downloads__tabs {
    justify-content: flex-start;
    margin: 8px 0 20px;
  }

  .product-download-tabs__button {
    min-width: 112px;
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
  }

  .product-tech-card__title {
    padding: 18px 18px 0;
  }

  .product-tech-card__image-preview {
    display: none;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    text-align: left;
  }

  .product-tech-card.is-table-image-ready .product-tech-card__table-wrap {
    display: none;
  }

  .product-tech-card.is-table-image-ready .product-tech-card__image-preview {
    display: block;
  }

  .product-tech-card__image-preview img {
    width: 100%;
    max-width: none;
    height: auto;
    background: #f5f5f5;
    object-fit: contain;
    -webkit-touch-callout: default;
    user-select: auto;
  }

  .product-tech-card__image-preview span {
    display: block;
    padding: 14px 16px;
    color: rgba(15, 23, 42, 0.58);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .product-tech-card__image-preview .product-tech-card__image-hint {
    color: rgba(15, 23, 42, 0.64);
    background: #fff;
  }

  .product-table-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: rgba(3, 8, 22, 0.9);
    touch-action: none;
  }

  .product-table-preview-modal[hidden] {
    display: none;
  }

  .product-table-preview-modal__toolbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding:
      max(env(safe-area-inset-top, 0px), 12px)
      14px
      10px;
    pointer-events: none;
  }

  .product-table-preview-modal__stage {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    height: calc(100dvh - max(env(safe-area-inset-top, 0px), 12px) - 62px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0 8px max(env(safe-area-inset-bottom, 0px), 8px);
    touch-action: none;
  }

  .product-table-preview-modal__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transform-origin: center center;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
    touch-action: none;
    user-select: none;
    cursor: grab;
  }

  .product-table-preview-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    pointer-events: auto;
    flex: 0 0 auto;
  }

  .product-table-preview-modal__save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    pointer-events: auto;
    flex: 0 0 auto;
  }

  .product-tech-table {
    min-width: 680px;
  }

  .product-tech-table thead th,
  .product-tech-table tbody th,
  .product-tech-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }

  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .product-feature-card {
    min-height: 150px;
    padding: 18px 14px;
  }

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

  .product-drawing-card img {
    padding: 20px;
  }

  .product-feature-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }

  .product-feature-card h3 {
    font-size: 16px;
  }

  .download-report-row,
  .download-library-row,
  .product-download-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .download-report-row__main,
  .download-library-row__main,
  .product-download-item__main {
    width: 100%;
    align-items: flex-start;
  }

  .download-report-row__meta,
  .download-library-row__meta,
  .product-download-item__meta {
    gap: 8px 18px;
    flex-direction: column;
  }

  .download-report-row__action,
  .download-library-row__action,
  .product-download-item__action {
    width: 100%;
    justify-content: flex-end;
  }

  .product-related-card__media img,
  .related-case-card__media img {
    height: 200px;
  }

  .product-related-carousel__nav {
    justify-content: center;
    margin-bottom: 14px;
  }

  .product-related-carousel__track .related-case-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .product-detail-cta {
    padding-top: 34px;
  }

  .product-detail-cta__panel {
    gap: 24px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .product-detail-cta__panel h2 {
    font-size: 26px;
  }

  .product-detail-cta__panel p {
    font-size: 14px;
    line-height: 1.8;
  }

  .product-detail-cta__badge {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .product-detail-cta__button {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding-left: 22px;
  }

  .product-detail-cta__button-icon {
    width: 32px;
    height: 32px;
  }

  /* .page-shell--products .site-header {
    background: rgba(10, 17, 32, 0.82);
    backdrop-filter: blur(10px);
  } */

  .page-shell--products .menu-toggle {
    background: rgba(255,255,255,0.12);
  }

  .page-shell--products .menu-toggle span {
    background: #fff;
  }

  .page-shell--products .page-hero {
    min-height: 300px;
  }

  .page-shell--products .page-hero__content {
    padding: 118px 0 58px;
  }

  .page-shell--products .page-hero h1 {
    font-size: 34px;
  }

  .products-catalog {
    padding: 24px 0 56px;
  }

  .products-catalog__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-search {
    width: 100%;
    margin-top: 24px;
    gap: 12px;
  }

  .products-search__field {
    flex: 1;
    width: auto;
  }

  .products-search__button {
    min-width: 120px;
    height: 52px;
    padding: 0 20px;
    font-size: 18px;
  }

  .products-catalog__header h2 {
    font-size: 34px;
  }

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

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

  .product-catalog-card {
    min-height: 0;
    height: auto;
  }
}

.news-list-section {
  padding: 100px 0 !important;
}

.news-list-section__inner {
  display: grid;
}

.news-list-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.news-list-main {
  min-width: 0;
}

.news-hot-panel {
  position: sticky;
  top: 144px;
  min-width: 0;
  padding: 32px 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.news-hot-panel__header p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
}

.news-hot-panel__header h2 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.25;
  color: #111827;
}

.news-hot-panel__list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.news-hot-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.news-hot-item:first-child {
  padding-top: 0;
}

.news-hot-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-hot-item__media {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #eef2f8;
}

.news-hot-item__media img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
  transition: transform .28s ease;
}

.news-hot-item__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-hot-item__body time {
  font-size: 14px;
  color: #98a2b3;
}

.news-hot-item__body strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.7;
  color: #111827;
  transition: color .22s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-hot-item:hover .news-hot-item__media img,
.news-hot-item:focus-visible .news-hot-item__media img {
  transform: scale(1.05);
}

.news-hot-item:hover .news-hot-item__body strong,
.news-hot-item:focus-visible .news-hot-item__body strong {
  color: var(--primary);
}

.news-hot-panel__empty {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #667085;
}

.news-featured {
  display: grid;
  gap: 20px;
  padding: 0 !important;
}

.news-featured__viewport {
  position: relative;
}

.news-featured-slide {
  display: none;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.news-featured-slide.is-active {
  display: grid;
  animation: news-featured-fade .5s ease;
}

.news-featured-slide__media {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: #eef2f8;
}

.news-featured-slide__media img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.news-featured-slide__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.news-featured-slide__body time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(31, 97, 255, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-featured-slide__body h2 {
  margin-top: 22px;
  font-size: 42px;
  line-height: 1.22;
  color: #111827;
}

.news-featured-slide__body p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 32px;
  color: #667085;
}

.news-featured-slide__body p.is-empty {
  display: none;
}

.news-featured-slide__link {
  margin-top: 34px;
}

.news-featured__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.news-featured__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.news-featured__dot span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  transition: background-color .22s ease, transform .22s ease;
}

.news-featured__dot.is-active span,
.news-featured__dot:hover span {
  background: var(--primary);
  transform: scaleY(1.2);
}

.news-featured.is-static .news-featured__dots {
  display: none;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-32) var(--space-24);
}

.news-list-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.news-list-card:hover,
.news-list-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(31, 97, 255, 0.18);
  box-shadow: 0 24px 46px rgba(31, 97, 255, 0.12);
}

.news-list-card__media {
  display: block;
  background: #eef2f8;
  overflow: hidden;
}

.news-list-card__media img {
  display: block;
  width: 100%;
  height: 262px;
  object-fit: cover;
  transition: transform .28s ease;
}

.news-list-card:hover .news-list-card__media img,
.news-list-card:focus-within .news-list-card__media img {
  transform: scale(1.04);
}

.news-list-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: var(--space-24) var(--space-24) 28px;
}

.news-list-card__body time {
  font-size: var(--fs-14);
  color: #98a2b3;
}

.news-list-card__body h3 {
  margin-top: var(--space-16);
  font-size: var(--fs-24);
  line-height: 1.5;
  color: #111827;
  transition: color .22s ease;
}

.news-list-card__body p {
  margin-top: var(--space-16);
  font-size: var(--fs-14);
  line-height: 28px;
  color: #667085;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news-list-card__body p.is-empty {
  display: none;
}

.news-list-card__link {
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  transition: color .22s ease;
}

.news-list-card__link-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.54);
  transition: color .22s ease, border-color .22s ease, background-color .22s ease;
}

.news-list-card:hover .news-list-card__body h3,
.news-list-card:hover .news-list-card__link,
.news-list-card:focus-within .news-list-card__body h3,
.news-list-card:focus-within .news-list-card__link {
  color: var(--primary);
}

.news-list-card:hover .news-list-card__link-arrow,
.news-list-card:focus-within .news-list-card__link-arrow {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.page-shell--news-detail {
  background: linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}

.page-shell--news-detail main {
  padding-top: 112px;
}

.page-shell--news-detail .site-header {
  z-index: 40;
}

.news-detail-page {
  padding: 0 0 100px;
}

.news-detail-page section {
  padding: 0;
}

.news-detail-breadcrumb {
  margin-top: 30px;
  margin-bottom: 50px;
}

.news-detail-breadcrumb a {
  color: inherit;
  transition: color .22s ease;
}

.news-detail-breadcrumb a:hover {
  color: var(--primary);
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 120px;
  align-items: start;
}

.news-detail-article,
.news-detail-recommend {
  /* border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08); */
}

.news-detail-article {
  min-width: 0;
  padding: 0;
}

.news-detail-article h1 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #101828;
}

.news-detail-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 14px;
  color: #98a2b3;
}

.news-detail-article__date {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-detail-article__divider {
  width: 1px;
  height: 14px;
  background: rgba(148, 163, 184, 0.42);
}

.news-detail-article__share-label {
  color: #667085;
}

.news-detail-article__share {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-detail-article__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(31, 89, 255, 0.1);
  border-radius: 50%;
  background: rgba(31, 89, 255, 0.04);
  color: #5c6b88;
  cursor: pointer;
  transition: transform .22s ease, color .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.news-detail-article__share-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-detail-article__share-link:hover,
.news-detail-article__share-link:focus-visible {
  transform: translateY(-2px);
  color: var(--primary);
  background: rgba(31, 89, 255, 0.1);
  border-color: rgba(31, 89, 255, 0.2);
  box-shadow: 0 10px 24px rgba(31, 89, 255, 0.12);
}

.news-detail-article__content {
  margin-top: 34px;
  color: #475467;
}

.news-detail-article__content > * + * {
  margin-top: 24px;
}

.news-detail-article__summary {
  margin-bottom: 4px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 89, 255, 0.07), rgba(0, 166, 255, 0.04));
  border: 1px solid rgba(31, 89, 255, 0.08);
}

.news-detail-article__summary p {
  font-size: 17px;
  line-height: 1.95;
  color: #344054;
}

.news-detail-article__image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #eef3fb;
}

.news-detail-article__image img,
.news-detail-article__content img {
  display: block;
  width: 100%;
  height: auto;
  /* border-radius: 28px; */
}

.news-detail-article__content p,
.news-detail-article__content li {
  font-size: 16px;
  line-height: 1.95;
  color: #475467;
}

.news-detail-article__content h2,
.news-detail-article__content h3,
.news-detail-article__content h4 {
  color: #101828;
  line-height: 1.45;
}

.news-detail-article__content h2 {
  font-size: 28px;
}

.news-detail-article__content h3 {
  font-size: 22px;
}

.news-detail-article__content h4 {
  font-size: 18px;
}

.news-detail-article__content ul,
.news-detail-article__content ol {
  margin: 0;
  padding-left: 22px;
}

.news-detail-article__content figure {
  margin: 0;
}

.news-detail-article__content li + li {
  margin-top: 10px;
}

.news-detail-article__content blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  border-radius: 0 20px 20px 0;
  background: rgba(31, 89, 255, 0.04);
}

.news-detail-article__content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.news-detail-article__content th,
.news-detail-article__content td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 15px;
}

.news-detail-article__content tr:last-child td {
  border-bottom: 0;
}

.news-detail-article__content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(31, 89, 255, 0.28);
  text-underline-offset: 4px;
}

.news-detail-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 78px;
  padding-top: 58px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.news-detail-pager__nav,
.news-detail-pager__back {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.news-detail-pager__nav {
  gap: 20px;
  min-width: 0;
  font-size: 18px;
  color: #8f96a3;
  transition: color .22s ease, transform .22s ease;
}

.news-detail-pager__nav--prev {
  justify-self: start;
}

.news-detail-pager__nav--next {
  justify-self: end;
}

.news-detail-pager__nav-label {
  white-space: nowrap;
}

.news-detail-pager__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #8f96a3;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  transition: color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.news-detail-pager__nav-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-detail-pager__nav:hover {
  color: #3c4555;
}

.news-detail-pager__nav:hover .news-detail-pager__nav-icon {
  color: var(--primary);
  border-color: rgba(31, 89, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 89, 255, 0.12);
}

.news-detail-pager__nav.is-disabled {
  color: #c1c7d0;
  pointer-events: none;
}

.news-detail-pager__nav.is-disabled .news-detail-pager__nav-icon {
  color: #c1c7d0;
  border-color: rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: none;
}

.news-detail-pager__back {
  justify-self: center;
  gap: 18px;
  min-height: 55px;
  padding: 0 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(20, 80, 223, 0.24);
  transition: transform .22s ease, box-shadow .22s ease;
}

.news-detail-pager__back:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(20, 80, 223, 0.28);
}

.news-detail-pager__back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-detail-pager__back-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-detail-recommend {
  position: sticky;
  top: 144px;
  padding: 4px 0 0;
}

.news-detail-recommend h2 {
  font-size: 32px;
  line-height: 1.25;
  color: #111827;
}

.news-detail-recommend__list {
  margin-top: 26px;
  display: grid;
  gap: 40px;
}

.news-detail-recommend__item {
  display: block;
  padding: 0;
  transition: transform .22s ease;
}

.news-detail-recommend__item:hover {
  transform: translateY(-4px);
}

.news-detail-recommend__thumb {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #eef3fb;
}

.news-detail-recommend__thumb img {
  width: 100%;
  height: 212px;
  object-fit: cover;
  transition: transform .28s ease;
}

.news-detail-recommend__item:hover .news-detail-recommend__thumb img {
  transform: scale(1.04);
}

.news-detail-recommend__meta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  min-width: 0;
  font-size: 15px;
  color: #8b95a7;
}

.news-detail-recommend__item strong {
  display: block;
  margin-top: 10px;
  min-width: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #111827;
  transition: color .22s ease;
}

.news-detail-recommend__item:hover strong {
  color: var(--primary);
}

@keyframes news-featured-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 1180px) {
  .news-list-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
  }

  .news-featured-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-featured-slide__media img {
    height: 360px;
  }

  .news-featured-slide__body h2 {
    font-size: 34px;
  }

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

  .news-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
  }

  .news-detail-article {
    padding: 40px 36px 44px;
  }

  .news-detail-recommend {
    padding: 4px 0 0;
  }
}

@media (max-width: 980px) {
  .news-list-layout,
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-hot-panel,
  .news-detail-recommend {
    position: static;
    top: auto;
  }
}

@media (max-width: 767px) {
  .news-list-section {
    padding: 34px 0 72px !important;
  }

  .news-list-section__inner {
    gap: 0;
  }

  .news-list-layout {
    gap: 24px;
  }

  .news-hot-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

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

  .news-hot-item {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
  }

  .news-hot-item__media {
    border-radius: 12px;
  }

  .news-hot-item__media img {
    height: 76px;
  }

  .news-hot-item__body strong {
    font-size: 16px;
  }

  .news-featured-slide {
    padding: 20px;
    border-radius: 22px;
  }

  .news-featured-slide__media {
    border-radius: 18px;
  }

  .news-featured-slide__media img {
    height: 240px;
  }

  .news-featured-slide__body h2 {
    margin-top: 18px;
    font-size: 26px;
  }

  .news-featured-slide__body p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 26px;
  }

  .news-featured-slide__link {
    margin-top: 24px;
  }

  .news-featured__dot {
    width: 34px;
  }

  .news-list-grid,
  .news-list-section__inner .news-list-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-list-card__media img {
    height: 220px;
  }

  .news-list-card__body {
    padding: 22px 20px 24px;
  }

  .news-list-card__body h3 {
    font-size: 20px;
  }

  .news-list-card__body p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 24px;
  }

  .news-list-card__link {
    padding-top: 22px;
    font-size: 15px;
  }

  .page-shell--news-detail main {
    padding-top: 118px;
  }

  .news-detail-page {
    padding: 26px 0 72px;
  }

  .news-detail-breadcrumb {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-detail-article,
  .news-detail-recommend {
    border-radius: 24px;
  }

  .news-detail-article {
    padding: 28px 20px 32px;
  }

  .news-detail-article h1 {
    font-size: 26px;
  }

  .news-detail-article__meta {
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .news-detail-article__divider {
    display: none;
  }

  .news-detail-article__share-link {
    width: 38px;
    height: 38px;
  }

  .news-detail-article__content {
    margin-top: 26px;
  }

  .news-detail-article__content > * + * {
    margin-top: 18px;
  }

  .news-detail-article__summary {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .news-detail-article__summary p,
  .news-detail-article__content p,
  .news-detail-article__content li {
    font-size: 15px;
  }

  .news-detail-article__content h2 {
    font-size: 22px;
  }

  .news-detail-article__content h3 {
    font-size: 19px;
  }

  .news-detail-article__image,
  .news-detail-article__image img,
  .news-detail-article__content img {
    border-radius: 20px;
  }

  .news-detail-pager {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
    padding-top: 30px;
  }

  .news-detail-pager__nav--prev,
  .news-detail-pager__nav--next,
  .news-detail-pager__back {
    justify-self: stretch;
  }

  .news-detail-pager__nav {
    justify-content: space-between;
    font-size: 16px;
  }

  .news-detail-pager__nav--next {
    order: 3;
  }

  .news-detail-pager__back {
    order: 2;
    min-height: 55px;
    padding: 0 28px;
    font-size: 18px;
  }

  .news-detail-pager__nav-icon {
    width: 55px;
    height: 55px;
  }

  .news-detail-recommend {
    position: static;
    top: auto;
    padding: 0;
  }

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

  .news-detail-recommend__item {
    border-radius: 0;
  }

  .news-detail-recommend__thumb {
    border-radius: 14px;
  }

  .news-detail-recommend__thumb img {
    height: 180px;
  }

  .news-detail-recommend__item strong {
    font-size: 16px;
  }
}

/* Mobile overrides placed after broad tablet rules to prevent home/about regressions. */
@media (max-width: 767px) {
  .page-shell--home {
    overflow-x: clip;
  }

  .home-about-panel {
    min-height: auto;
    padding: 72px 0 78px;
  }

  .home-about-panel .container {
    min-height: auto;
    display: block;
  }

  .home-about-stage {
    margin-top: 24px;
    min-height: 280px;
  }

  .home-about-stage__logo img {
    width: min(100%, 760px);
    height: auto;
  }

  .home-about-stage__globe img {
    width: min(58vw, 230px);
  }

  .home-about-stage__glass {
    bottom: -40px;
    height: 128px;
  }

  .home-about-stats {
    gap: 0;
    margin-top: -4px;
    padding-top: 44px;
  }

  .home-about-stat {
    gap: 14px;
    padding: 22px 0;
  }

  .home-about-stat__value {
    font-size: clamp(42px, 15vw, 56px);
  }

  .home-about-stat p {
    max-width: 14ch;
    font-size: 18px;
    line-height: 1.5;
  }

  .home-news-layout,
  .home-footer__bottom,
  .home-footer__columns {
    grid-template-columns: 1fr;
  }

  .home-news-layout {
    gap: 22px;
  }

  .home-news-feature {
    min-width: 0;
  }

  .home-news-feature__viewport {
    height: 250px;
    border-radius: 20px;
  }

  .home-news-feature__dots {
    right: 14px;
    bottom: 14px;
    gap: 6px;
  }

  .home-news-feature__dot {
    width: 18px;
  }

  .home-news-feature-slide__overlay {
    padding: 0 20px 22px;
  }

  .home-news-feature-slide__overlay time {
    font-size: 14px;
  }

  .home-news-feature-slide__overlay h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.55;
  }

  .home-news-side-card {
    min-height: 0;
    height: auto;
    border-radius: 20px;
  }

  .home-news-side-card .home-news-item__media {
    max-height: none;
  }

  .home-news-side-card .home-news-item__media img {
    min-height: 220px;
    height: 220px;
  }

  .home-news-side-card__body {
    padding: 22px 20px 22px;
  }

  .home-news-side-card__body time {
    font-size: 14px;
  }

  .home-news-side-card__body h3 {
    margin-top: 12px;
    font-size: 18px;
  }

  .home-news-side-card__body p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .home-news-side-card__link {
    padding-top: 20px;
    font-size: 14px;
  }

  .home-news-side-card__icon {
    width: 34px;
    height: 34px;
  }

  .about-milestone-year-stage {
    overflow: hidden;
  }

  .about-milestone-year-stage__active {
    width: min(100%, 360px);
  }

  .about-milestone-year-stage__shadow {
    width: 92px;
    min-width: 92px;
  }

  .about-honors-shell,
  .about-honors-stage,
  .about-honors-viewport {
    overflow: hidden;
  }

  .about-honors-track {
    grid-auto-columns: calc((100% - (var(--about-honor-gap) * (var(--about-honor-columns) - 1))) / var(--about-honor-columns));
  }
}

/* Final mobile polish pass: tighten spacing, normalize type, and make nav/footer readable on phones. */
@media (max-width: 767px) {
  :root {
    --container: min(100vw - 24px, 1180px);
    --section-space: 52px;
    --space-16: 14px;
    --space-20: 16px;
    --space-24: 18px;
    --space-32: 22px;
    --space-40: 24px;
    --space-48: 28px;
    --space-64: 34px;
    --space-80: 40px;
    --fs-16: 15px;
    --fs-18: 16px;
    --fs-24: 20px;
    --fs-32: 28px;
    --fs-40: 30px;
    --fs-48: 34px;
    --fs-60: 38px;
  }

  body {
    font-size: 15px;
  }

  p {
    line-height: 1.72;
  }

  main section {
    padding: 52px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8.8vw, 38px);
  }

  .section-head p {
    max-width: none;
    font-size: 14px;
    line-height: 1.78;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero__content {
    padding: 104px 0 46px;
  }

  .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(32px, 10.8vw, 42px);
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 26ch;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .site-header.is-scrolled .brand img {
    width: 102px;
  }

  .site-header.is-open .site-nav,
  .site-header--home.is-open .site-nav {
    top: 76px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 146px);
    padding: 14px;
    gap: 12px;
    border-radius: 22px;
    align-content: start;
    background-color: #fff;
  }

  .site-header.is-open .header-tools,
  .site-header--home.is-open .header-tools {
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .page-shell--home .site-header.is-open .site-nav,
  .page-shell--home .site-header.is-open .header-tools {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 44px rgba(6, 16, 38, 0.18);
  }

  .site-nav-item {
    display: grid;
    gap: 8px;
  }

  .site-nav-item + .site-nav-item {
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }

  .site-nav-item--has-children {
    display: grid;
    gap: 8px;
  }

  .nav-link {
    min-height: 0;
    padding: 4px 0;
    color: rgba(15, 23, 42, 0.82);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
  }

  .site-header.is-open .nav-link,
  .site-header--home.is-open .nav-link {
    color: rgba(15, 23, 42, 0.82);
  }

  .site-header.is-open .nav-link.is-active,
  .site-header--home.is-open .nav-link.is-active {
    color: var(--primary);
  }

  .site-header.is-open .nav-link::after,
  .site-header--home.is-open .nav-link::after {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
  }

  .site-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 2px 0 0;
  }

  .site-subnav__link {
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: rgba(15, 23, 42, 0.72);
    font-size: 13px;
    line-height: 1.35;
  }

  .page-shell--home .site-header.is-open .site-subnav__link {
    background: rgba(31, 89, 255, 0.08);
    color: rgba(15, 23, 42, 0.74);
  }

  .page-shell--home .site-header.is-open .site-subnav__link:hover,
  .page-shell--home .site-header.is-open .site-subnav__link:focus-visible {
    color: var(--primary);
  }

  .site-header.is-open .header-action,
  .site-header--home.is-open .header-action {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .site-header.is-open .header-search-toggle::after,
  .site-header.is-open .home-header-search::after,
  .page-shell--home .site-header.is-open .header-search-toggle::after,
  .page-shell--home .site-header.is-open .home-header-search::after {
    font-size: 14px;
    color: var(--primary);
  }

  .page-shell--home .page-hero {
    min-height: 500px;
  }

  .page-shell--home .page-hero__content {
    padding: 122px 0 72px;
  }

  .page-shell--home .page-hero h1,
  .home-hero__copy h1 {
    max-width: 7ch;
    font-size: clamp(32px, 10.2vw, 42px);
    line-height: 1.06;
  }

  .page-shell--home .page-hero p:not(.eyebrow),
  .home-hero__copy p {
    max-width: 12ch;
    font-size: 14px;
    line-height: 1.28;
  }

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

  .home-section-head,
  .home-section .section-head {
    margin-bottom: 20px;
  }

  .home-section-head h2,
  .home-clients-panel .home-section-head h2 {
    font-size: clamp(28px, 10vw, 40px);
    line-height: 1.08;
  }

  .home-section-head p,
  .home-clients-panel .home-section-head p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.72;
  }

  .home-product-carousel {
    margin-top: 24px;
  }

  .home-product-item {
    min-height: 304px;
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .home-product-item__copy {
    min-height: 72px;
  }

  .home-product-item h3 {
    font-size: 16px;
    line-height: 1.45;
  }

  .home-product-item p {
    min-height: 0;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.65;
  }

  .home-product-item__media {
    min-height: 146px;
    margin-top: 12px;
  }

  .home-product-item__media img {
    max-height: 112px;
  }

  .home-product-item__link {
    gap: 10px;
    padding-top: 12px;
    font-size: 14px;
  }

  .home-product-item__icon {
    width: 34px;
    height: 34px;
  }

  .home-solutions__nav {
    gap: 10px;
    padding-top: 0;
  }

  .home-solution-nav-item {
    padding: 10px 0;
  }

  .home-solution-nav-item h3 {
    font-size: 15px;
    line-height: 1.55;
  }

  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 17px;
  }

  .home-solution-nav-item p {
    font-size: 12px;
    line-height: 1.65;
  }

  .home-about-stage {
    min-height: 280px;
  }

  .home-about-stage__globe img {
    width: min(58vw, 220px);
  }

  .home-about-stats,
  .home-footer__bottom {
    gap: 0 18px;
  }

  .home-news-feature__viewport {
    height: 300px;
  }

  .home-news-side-card {
    border-radius: 18px;
  }

  .home-news-side-card .home-news-item__media img {
    min-height: 184px;
    height: 184px;
  }

  .home-news-side-card__body {
    padding: 18px 16px 18px;
  }

  .home-news-side-card__body h3 {
    font-size: 17px;
    line-height: 1.55;
  }

  .home-news-side-card__body p {
    font-size: 13px;
    line-height: 1.72;
  }

  .home-news-side-card__link {
    padding-top: 16px;
    font-size: 13px;
  }

  .home-clients__page {
    gap: 12px;
  }

  .products-catalog {
    padding: 20px 0 44px;
  }

  .products-crumb {
    margin: 16px 0 22px;
    font-size: 13px;
  }

  .products-sidebar__nav {
    gap: 10px;
  }

  .products-sidebar__nav a {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    font-size: 16px;
  }

  .products-catalog__header h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .products-search {
    margin-top: 18px;
    gap: 10px;
  }

  .products-search__input {
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }

  .products-search__button {
    min-width: 110px;
    height: 48px;
    padding: 0 18px;
    font-size: 16px;
  }

  .products-catalog__grid {
    gap: 16px;
  }

  .product-catalog-card,
  .product-catalog-card--catalog {
    height: auto;
    min-height: 0;
    padding: 8px;
    border-radius: 18px;
  }

  .product-catalog-card__media,
  .product-catalog-card__media img {
    height: 184px;
  }

  .product-catalog-card__body {
    padding: 8px 8px 6px;
  }

  .product-catalog-card__body h3 {
    font-size: 18px;
    line-height: 1.25;
  }

  .product-catalog-card__body p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .product-catalog-card__link {
    margin-top: 16px;
    gap: 10px;
    font-size: 14px;
  }

  .product-catalog-card__dot {
    width: 38px;
    height: 38px;
  }

  .product-catalog-card__dot svg {
    width: 18px;
    height: 18px;
  }

  .application-list-card {
    gap: 18px;
    padding: 16px;
    border-radius: 20px;
  }

  .application-list-card__media img {
    height: 190px;
  }

  .application-list-card__body {
    padding-right: 0;
  }

  .application-list-card__body h3 {
    font-size: 24px;
  }

  .application-list-card__body p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .application-list-card__link {
    margin-top: 18px;
    font-size: 14px;
  }

  .contact-company-panel {
    padding: 16px 12px;
    border-radius: 20px;
  }

  .contact-company-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-company-card h2 {
    font-size: 22px;
    line-height: 1.15;
  }

  .contact-info-item__body p {
    font-size: 15px;
    line-height: 1.6;
  }

  .contact-message-card {
    padding: 22px 16px 20px;
    border-radius: 20px;
  }

  .contact-message-card__intro {
    margin-bottom: 18px;
  }

  .contact-message-card__intro h3 {
    font-size: 20px;
  }

  .contact-message-card__intro p {
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-inquiry-form__submit {
    min-height: 48px;
    font-size: 16px;
  }

  .news-list-section {
    padding: 52px 0 !important;
  }

  .news-hot-panel,
  .news-detail-recommend,
  .news-detail-article {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .news-featured-slide__body,
  .news-list-card__body {
    padding: 18px 16px 20px;
  }

  .news-featured-slide__body h2,
  .news-detail-article h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .news-list-card__body h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .news-list-card__body p,
  .news-featured-slide__body p {
    font-size: 13px;
    line-height: 1.72;
  }

  .footer-top {
    gap: 24px;
    padding: 36px 0 24px;
  }

  .footer-brand img {
    width: 136px;
  }

  .footer-follow {
    margin-top: 18px;
  }

  .footer-socials {
    margin-top: 12px;
    gap: 10px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .footer-columns h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-columns ul {
    gap: 10px;
  }

  .footer-columns a {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 22px;
  }

  .footer-contact-item {
    padding: 16px 14px;
    gap: 12px;
    border-radius: 16px;
  }

  .footer-contact-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .footer-contact-item__body strong {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .footer-contact-item__body p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-legal {
    gap: 10px;
    padding: 16px 0 24px;
  }

  .footer-legal p,
  .footer-legal a,
  .footer-legal span {
    font-size: 13px;
    line-height: 1.7;
  }

  .application-list-toolbar,
  .product-detail-tabs,
  .application-scenario-tabs {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  .application-list-toolbar__inner {
    padding: 10px 0 12px;
    gap: 10px;
  }

  .application-list-tabs {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .downloads-toolbar .application-list-tabs,
  .news-toolbar .application-list-tabs,
  .about-toolbar .application-list-tabs {
    justify-content: flex-start;
    gap: 18px;
  }

  .application-list-tab {
    min-height: 38px;
    font-size: 14px;
  }

  .application-list-toolbar .products-crumb {
    width: 100%;
    font-size: 13px;
  }

  .download-library {
    gap: 22px;
  }

  .application-list-shell--cases .download-library {
    gap: 18px;
  }

  .download-library__filters {
    padding: 0;
    gap: 12px;
  }

  .download-library__filters-row,
  .download-library__filters-row.download-library__filters-row--triple,
  .download-library__filters-row:last-child {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-library__select,
  .download-library__search {
    width: 100%;
  }

  .download-library__select::after {
    right: 18px;
    width: 8px;
    height: 8px;
  }

  .download-library__filters select,
  .download-library__filters input,
  .download-software-search input {
    height: 50px;
    padding: 0 18px;
    font-size: 14px;
  }

  .download-library__filters select {
    padding-right: 42px;
  }

  .download-library__button,
  .download-software-search .download-library__button {
    width: 100%;
    min-width: 0;
    height: 48px;
    justify-content: center;
    font-size: 15px;
  }

  .download-library__button svg {
    width: 16px;
    height: 16px;
  }

  .product-detail-tabs__list,
  .application-scenario-tabs__list {
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-detail-tabs__list::-webkit-scrollbar,
  .application-scenario-tabs__list::-webkit-scrollbar {
    display: none;
  }

  .product-detail-tabs__link,
  .application-scenario-tabs__button {
    min-height: 44px;
    padding: 0 2px;
    font-size: 13px;
    white-space: nowrap;
  }

  .contact-toolbar {
    position: static;
    border-bottom-color: rgba(15, 23, 42, 0.06);
  }

  .contact-toolbar .application-list-tabs {
    gap: 6px 10px;
  }

  .contact-toolbar .application-list-tab {
    min-height: 40px;
    padding: 0 8px;
    font-size: 13px;
  }

  .contact-toolbar .products-crumb {
    font-size: 12px;
  }

  .contact-recruitment-section,
  .contact-partner-section {
    padding: 18px 0 44px;
  }

  .contact-section-stack {
    gap: 22px;
  }

  .job-item + .job-item {
    margin-top: 12px;
  }

  .job-item__head {
    padding: 16px 16px 14px;
  }

  .job-item__head strong {
    font-size: 17px;
    line-height: 1.4;
  }

  .job-item__meta {
    gap: 8px 12px;
    margin-top: 8px;
  }

  .job-item__meta span {
    font-size: 12px;
    line-height: 1.55;
  }

  .job-item__meta span + span::before {
    left: -7px;
    height: 10px;
  }

  .job-item__toggle {
    width: 32px;
    height: 32px;
  }

  .job-item__action-label {
    font-size: 12px;
  }

  .job-item.is-open .job-item__content,
  .job-item__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .job-item.is-open .job-item__content {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .job-item__section + .job-item__section {
    margin-top: 20px;
  }

  .job-item__section h4 {
    font-size: 20px;
  }

  .job-item__list {
    margin-top: 12px;
    padding-left: 18px;
    gap: 8px;
  }

  .job-item__list li,
  .job-item__resume-email {
    font-size: 13px;
    line-height: 1.75;
  }

  .job-actions {
    margin-top: 22px;
  }

  .job-item__cta {
    min-height: 44px;
  }

  .careers-partner-card {
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
  }

  .careers-partner-card__media {
    min-height: 180px;
    border-radius: 16px;
  }

  .careers-partner-card__body {
    padding: 0 4px 4px;
  }

  .careers-partner-card__copy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .careers-partner-card__copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.72;
  }

  .careers-partner-card__contacts {
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 0;
  }

  .careers-partner-card__contact {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .careers-partner-card__contact-icon {
    width: 42px;
    height: 42px;
  }

  .careers-partner-card__contact div > span {
    font-size: 12px;
  }

  .careers-partner-card__contact strong {
    font-size: 16px;
    line-height: 1.45;
  }

  .careers-partner-card__button {
    width: 100%;
    height: 46px;
    margin-top: 20px;
    font-size: 14px;
  }

  .careers-reasons-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .careers-reason-card {
    min-height: 300px;
    border-radius: 20px;
  }

  .careers-reason-card__content {
    padding: 18px 16px 16px;
  }

  .careers-reason-card__content::after {
    border-radius: 19px;
  }

  .careers-reason-card__icon {
    width: 40px;
    height: 40px;
  }

  .careers-reason-card__copy {
    max-width: 100%;
  }

  .careers-reason-card__copy strong {
    font-size: 17px;
    line-height: 1.4;
  }

  .careers-reason-card__copy span,
  .careers-reason-card.is-active .careers-reason-card__copy span {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .site-header {
    z-index: 40;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled .menu-toggle {
    background: rgba(31, 89, 255, 0.06);
  }

  .site-header.is-scrolled .menu-toggle span {
    background: var(--primary);
  }

  .page-shell--products .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
  }

  .page-shell--products .site-header.is-scrolled .menu-toggle {
    background: rgba(31, 89, 255, 0.06);
  }

  .page-shell--products .site-header.is-scrolled .menu-toggle span {
    background: var(--primary);
  }

  .page-shell--application-detail .site-header:not(.is-scrolled) {
    background:
      linear-gradient(180deg, rgba(6, 16, 38, 0.72) 0%, rgba(6, 16, 38, 0.34) 72%, rgba(6, 16, 38, 0) 100%);
    border-bottom: 0;
    backdrop-filter: none;
  }

  .page-shell--application-detail .site-header:not(.is-scrolled) .menu-toggle {
    background: rgba(255, 255, 255, 0.14);
  }

  .page-shell--application-detail .site-header:not(.is-scrolled) .menu-toggle span {
    background: #fff;
  }

  .page-shell--application-detail .site-header:not(.is-scrolled) .header-action {
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .page-shell--product-detail,
  .page-shell--product-detail > main,
  .product-detail-page {
    overflow-x: clip;
  }

  .product-tech-card__table-wrap {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .job-item__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    margin-top: 8px;
  }

  .job-item__meta span {
    display: flex;
    align-items: flex-start;
    min-height: 0;
    padding: 10px 11px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    white-space: normal;
  }

  .job-item__meta span:first-child {
    grid-column: 1 / -1;
  }

  .job-item__meta span + span::before {
    display: none;
  }

  .job-item.is-open .job-item__meta span {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .job-item__action {
    width: 100%;
    align-self: stretch;
    justify-content: space-between;
    margin-top: 2px;
  }

  .job-item__action-label {
    font-weight: 700;
  }

  .careers-reason-card__shade,
  .careers-reason-card.is-active .careers-reason-card__shade {
    background:
      linear-gradient(180deg, rgba(8, 15, 31, 0.14) 0%, rgba(8, 15, 31, 0.42) 36%, rgba(17, 74, 224, 0.94) 100%);
  }

  .careers-reason-card__copy span,
  .careers-reason-card.is-active .careers-reason-card__copy span {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .download-library-section,
  .download-software-section {
    padding: 22px 0 44px;
  }

  .download-library,
  .download-software-shell {
    gap: 24px;
  }

  .download-library__filters,
  .download-software-search {
    position: relative;
    margin-top: 0;
    padding: 16px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.98)),
      radial-gradient(circle at top right, rgba(31, 97, 255, 0.08), rgba(31, 97, 255, 0) 38%);
    border: 1px solid rgba(31, 97, 255, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  }

  .download-library__filters::before,
  .download-software-search::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 42%);
  }

  .download-library__filters {
    gap: 12px;
  }

  .download-library__filters-row,
  .download-library__filters-row.download-library__filters-row--triple,
  .download-library__filters-row:last-child,
  .download-software-search {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-library__filters select,
  .download-library__filters input,
  .download-software-search input {
    height: 50px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #425067;
    font-size: 14px;
    box-shadow:
      inset 0 0 0 1px rgba(207, 216, 230, 0.92),
      0 10px 26px rgba(148, 163, 184, 0.06);
  }

  .download-library__filters select {
    padding-right: 42px;
  }

  .download-library__filters input::placeholder,
  .download-software-search input::placeholder {
    color: #94a0b3;
  }

  .download-library__button,
  .download-software-search .download-library__button {
    width: 100%;
    min-width: 0;
    height: 48px;
    border-radius: 16px;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
  }

  .download-library__button {
    background: rgba(239, 244, 255, 0.96);
    color: #2553c7;
    box-shadow: inset 0 0 0 1px rgba(31, 97, 255, 0.1);
  }

  .download-library__button.is-primary {
    background: linear-gradient(135deg, #1f61ff 0%, #1450df 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(20, 80, 223, 0.2);
  }

  .download-software-search .download-library__button {
    flex-direction: row;
    white-space: nowrap;
  }

  .download-library__filters select:focus,
  .download-library__filters input:focus,
  .download-software-search input:focus {
    background: #fff;
    box-shadow:
      inset 0 0 0 1px rgba(31, 97, 255, 0.24),
      0 0 0 4px rgba(31, 97, 255, 0.08);
  }

  .contact-inquiry-form .product-inquiry-form__captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
    align-items: start;
  }

  .contact-inquiry-form .product-inquiry-form__captcha-row input {
    padding-right: 64px;
  }

  .contact-inquiry-form .product-inquiry-form__captcha-row.product-inquiry-form__field--required::after {
    top: 18px;
    right: 136px;
    transform: none;
  }

  .contact-inquiry-form .product-inquiry-form__captcha {
    position: static;
    width: 100%;
    height: 54px;
    margin-top: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(31, 89, 255, 0.12);
    font-size: 24px;
    letter-spacing: 0.14em;
  }

  .product-inquiry-modal .product-inquiry-form__captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
    align-items: start;
  }

  .product-inquiry-modal .product-inquiry-form__captcha-row input {
    padding-right: 64px;
  }

  .product-inquiry-modal .product-inquiry-form__captcha-row.product-inquiry-form__field--required::after {
    top: 18px;
    right: 136px;
    transform: none;
  }

  .product-inquiry-modal .product-inquiry-form__captcha {
    position: static;
    width: 100%;
    height: 54px;
    margin-top: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(31, 89, 255, 0.12);
    font-size: 24px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 520px) {
  .job-item__meta span {
    font-size: 12px;
  }

  .careers-partner-card__button {
    justify-content: space-between;
  }

  .download-library__filters,
  .download-software-search {
    padding: 14px;
    border-radius: 22px;
  }

  .contact-inquiry-form .product-inquiry-form__captcha-row {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 8px;
  }

  .contact-inquiry-form .product-inquiry-form__captcha-row.product-inquiry-form__field--required::after {
    right: 124px;
  }

  .contact-inquiry-form .product-inquiry-form__captcha {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .product-inquiry-modal .product-inquiry-form__captcha-row {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 8px;
  }

  .product-inquiry-modal .product-inquiry-form__captcha-row.product-inquiry-form__field--required::after {
    right: 124px;
  }

  .product-inquiry-modal .product-inquiry-form__captcha {
    font-size: 22px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 767px) {
  .home-solutions-panel {
    padding: 56px 0 60px;
  }

  .home-solutions {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .home-solutions__stage {
    order: 1;
    width: 100%;
    min-height: 220px;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  }

  .home-solutions__stage img {
    min-height: 220px;
    height: 220px;
    border-radius: 24px;
  }

  .home-solutions__nav {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .home-solution-nav-item {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(20, 80, 223, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    color: #7d8798;
  }

  .home-solution-nav-item.is-active {
    grid-column: auto;
    padding: 18px;
    color: #1854df;
    box-shadow: 0 18px 34px rgba(20, 80, 223, 0.12);
  }

  .home-solution-nav-item:hover,
  .home-solution-nav-item:focus-visible {
    transform: none;
  }

  .home-solution-nav-item__icon {
    width: 30px;
    height: 30px;
    margin-top: 0;
  }

  .home-solution-nav-item__icon img {
    width: 24px;
    height: 24px;
  }

  .home-solution-nav-item h3 {
    font-size: 17px;
    line-height: 1.45;
  }

  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 18px;
  }

  .home-solution-nav-item:hover p,
  .home-solution-nav-item:focus-visible p,
  .home-solution-nav-item.is-active p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.75;
  }

  .home-solution-nav-item:hover .button,
  .home-solution-nav-item:focus-visible .button,
  .home-solution-nav-item.is-active .button {
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .home-solutions-panel {
    padding: 48px 0 52px;
  }

  .home-solutions {
    gap: 16px;
    margin-top: 20px;
  }

  .home-solutions__stage {
    min-height: 196px;
    border-radius: 22px;
  }

  .home-solutions__stage img {
    min-height: 196px;
    height: 196px;
    border-radius: 22px;
  }

  .home-solutions__nav {
    gap: 10px;
  }

  .home-solution-nav-item,
  .home-solution-nav-item.is-active {
    padding: 14px;
    border-radius: 18px;
  }

  .home-solution-nav-item {
    gap: 10px;
  }

  .home-solution-nav-item h3 {
    font-size: 16px;
  }

  .home-solution-nav-item:hover h3,
  .home-solution-nav-item:focus-visible h3,
  .home-solution-nav-item.is-active h3 {
    font-size: 17px;
  }

  .home-solution-nav-item:hover p,
  .home-solution-nav-item:focus-visible p,
  .home-solution-nav-item.is-active p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
  }
}
