:root {
  --design-width: 1941;
  --page-scale: 1;
  --scaled-width: 1941px;
  --shell-left: 0px;
  --bleed-offset: 0px;
  --bleed-width: 100%;
  --shell-height: auto;
  --viewport-height: 1080px;
  --page-bg: #edf1f7;
  --surface: #ffffff;
  --text: #1d2232;
  --muted: #5d6478;
  --line: #d7dff0;
  --blue: #1449b7;
  --blue-deep: #103fa4;
  --mint: #87efb7;
  --shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 16px 30px rgba(15, 23, 42, 0.08);

  /* ===== 字号体系 =====
     设计画布 1941px 会被整体缩放到视口宽度（1600px 视口下 scale≈0.75），
     以下数值均为「设计稿字号」，实际渲染尺寸 = 设计稿值 × --page-scale。
     调整字号请优先修改这里的变量，各处已统一引用。 */
  --fs-body: 18px;        /* 正文型描述文字：页面主体、各区块说明段落、页脚正文 */
  --fs-label: 15px;       /* 辅助说明小字：能力项副标题、按钮旁说明、二维码图注等 */
  --fs-eyebrow: 15px;     /* 区块眉标题（英文小标题） */
  --fs-nav: 18px;         /* 顶部导航项 */
  --fs-card-title: 29px;  /* 卡片标题 */
  --fs-section-title: 52px; /* 区块主标题（section-heading） */
  --fs-hero-title: 70px;  /* 首屏主标题 */
  --fs-quote-title: 58px; /* 行业/下载区大标题 */
  /* 咨询浮窗（position: fixed，不参与缩放，按 1:1 渲染），单独一套 */
  --fs-widget-body: 14px;
  --fs-widget-label: 13px;
  --fs-widget-micro: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #8aa2c6 #eef3fb;
}

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

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #eef3fb;
}

body::-webkit-scrollbar-thumb {
  border: 2px solid #eef3fb;
  border-radius: 999px;
  background: linear-gradient(180deg, #9fb4d4 0%, #6f8fbd 100%);
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #88a3cc 0%, #5579ae 100%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-stage {
  position: relative;
  width: 100%;
  height: var(--shell-height);
  min-height: 0;
  margin: 0;
  background: var(--surface);
  overflow-x: hidden;
  overflow-y: visible;
}

.page-shell {
  position: absolute;
  left: var(--shell-left);
  top: 0;
  width: calc(var(--design-width) * 1px);
  margin: 0;
  padding-top: 0;
  background: var(--surface);
  box-shadow: none;
  transform: scale(var(--page-scale));
  transform-origin: top left;
}

.topbar {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 22px;
  position: fixed;
  top: 0;
  left: var(--shell-left);
  right: auto;
  width: calc(var(--design-width) * 1px);
  min-height: 92px;
  padding: 0 30px;
  background: transparent;
  transform: scale(var(--page-scale));
  transform-origin: top left;
  z-index: 1000;
}

.topbar::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(var(--bleed-offset) * -1);
  width: var(--bleed-width);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3e8f2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.topbar-spacer {
  height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 52px;
}

.brand__logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(20, 73, 183, 0.16);
}

.brand__name {
  display: inline-flex;
  align-items: center;
  height: 52px;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-2px);
}

.brand__divider {
  width: 2px;
  height: 32px;
  flex-shrink: 0;
  background: #d1d8e8;
}

.brand__tagline {
  color: #565d6f;
  font-size: var(--fs-nav);
  line-height: 1;
  font-weight: 700;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  min-width: 0;
  min-height: 42px;
  padding-right: 26px;
  border-right: 1px solid #d9e0ed;
}

.topnav__link {
  position: relative;
  color: #42495c;
  font-size: var(--fs-nav);
  font-weight: 800;
  transition: color 0.2s ease;
}

.topnav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.topnav__link.is-active,
.topnav__link:hover {
  color: #1c3f92;
}

.topnav__link.is-active::after,
.topnav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.topbar__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: 6px;
}

.homeii-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  color: #1449b7;
  font-size: var(--fs-label);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.homeii-brand:hover {
  color: #103fa4;
  opacity: 0.82;
}

.homeii-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 8px 18px rgba(20, 73, 183, 0.12);
}

.management-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border: 2px solid #2460d4;
  border-radius: 4px;
  background: #ffffff;
  color: #1449b7;
  font-size: var(--fs-nav);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.management-entry:hover {
  border-color: #1449b7;
  background: #f3f7ff;
  color: #103fa4;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 768px 1fr;
  align-items: stretch;
  gap: 48px;
  padding: 58px 34px 62px;
  background: #ffffff;
  overflow: hidden;
  min-height: max(790px, calc(var(--viewport-height) - 92px));
}

.hero::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -76px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 73, 183, 0.08) 0%, rgba(20, 73, 183, 0) 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
  height: min(820px, 100%);
  min-height: 720px;
  padding: 14px 0;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8af0b9 0%, #74e6a8 100%);
  color: #0d6250;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  font-weight: 800;
}

.hero__title {
  margin: 34px 0 0;
  color: #111c36;
  font-size: var(--fs-hero-title);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero__title > span {
  display: block;
}

.hero__title > span:last-child {
  margin-top: 30px;
}

.hero__title em {
  color: #1758d1;
  font-style: normal;
}

.hero__title .hero__title-latin {
  display: inline-block;
  font-size: 1.07em;
  line-height: 1;
  vertical-align: -0.015em;
  letter-spacing: 0;
  transform: scaleY(1.14);
  transform-origin: center center;
}

.hero__desc {
  width: 100%;
  margin: 34px 0 0;
  color: rgba(26, 35, 61, 0.68);
  font-size: var(--fs-body);
  line-height: 2;
  white-space: nowrap;
}

.hero__capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 32px;
  padding: 0;
  border: 0;
}

.hero__capabilities > div {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 11px;
  align-items: center;
  min-height: 84px;
  padding: 0 18px;
}

.hero__capabilities > div:first-child {
  padding-left: 0;
}

.hero__capabilities > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: #e1e7f2;
}

.hero__capabilities span {
  grid-row: 1 / span 2;
  color: #8aa0c9;
  font-size: 16px;
  font-weight: 800;
}

.hero__capabilities strong {
  color: #293249;
  font-size: 19px;
  line-height: 1.35;
}

.hero__capabilities small {
  margin-top: 7px;
  color: #7a8497;
  font-size: var(--fs-label);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hero__action-note {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid #dce4f1;
}

.hero__action-note strong {
  color: #2b344a;
  font-size: var(--fs-body);
  line-height: 1.35;
}

.hero__action-note span {
  color: #7b8496;
  font-size: var(--fs-label);
  line-height: 1.45;
}

.button {
  min-width: 186px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-body);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(1px);
  opacity: 0.7;
}

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

.button--ghost {
  background: linear-gradient(180deg, #1d5ce0 0%, #1449b7 100%);
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(20, 73, 183, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--light {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid #e1e7f4;
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #e1e7f2;
  color: rgba(29, 34, 50, 0.62);
}

.hero__overview {
  display: flex;
  flex-direction: column;
  width: 720px;
  margin-top: 62px;
  padding: 58px 0 76px;
  border-top: 1px solid #e1e7f2;
  border-bottom: 1px solid #e1e7f2;
}

.hero__overview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.hero__overview-heading span,
.hero__stats-intro span {
  flex-shrink: 0;
  color: #1758d1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.hero__overview-heading p {
  margin: 0;
  color: #667086;
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.hero__stats-intro {
  display: grid;
  gap: 5px;
  width: 270px;
  margin-right: auto;
}

.hero__stats-intro strong {
  color: #2c354b;
  font-size: 15px;
  line-height: 1.4;
}

.hero__stat {
  position: relative;
  min-width: 102px;
}

.hero__stat--divider::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -2px;
  width: 2px;
  height: 42px;
  background: rgba(29, 34, 50, 0.14);
}

.hero__stat-value {
  display: block;
  margin-bottom: 6px;
  color: #1758d1;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 14px;
  font-weight: 700;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero__visual::before {
  content: none;
}

.hero__visual-frame {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  max-width: 880px;
  height: min(820px, 100%);
  min-height: 720px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero__visual-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px;
  border-radius: 24px;
  background: linear-gradient(145deg, #eff5ff 0%, #e1ecff 100%);
  box-shadow: 0 12px 22px rgba(44, 87, 155, 0.12);
  pointer-events: none;
}

.hero__visual-frame img,
.hero__visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 4%;
  transform: none;
  border-radius: 0;
  image-rendering: auto;
  backface-visibility: hidden;
}

.hero__visual-image {
  object-position: 50% 50%;
  transform: none;
}

.hero__floating-card {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 42px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 316px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 244, 0.95);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.1);
}

.hero__floating-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #1666f5;
  flex-shrink: 0;
}

.hero__floating-card h2 {
  margin: 0 0 5px;
  color: #2a3140;
  font-size: var(--fs-body);
  line-height: 1.2;
}

.hero__floating-card p {
  margin: 2px 0;
  color: #666f82;
  font-size: var(--fs-label);
  line-height: 1.35;
}

.section-heading {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 112px 24px 46px;
  background: #f4f7fc;
}

.section-heading::before,
.capability-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(var(--bleed-offset) * -1);
  width: var(--bleed-width);
  background: #f4f7fc;
}

.section-heading > *,
.capability-grid > * {
  position: relative;
  z-index: 1;
}

.section-heading__eyebrow {
  color: var(--blue);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.34em;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  color: #202635;
  font-size: var(--fs-section-title);
  font-weight: 800;
}

.section-heading__line {
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.capability-grid {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 0 30px 126px;
  background: #f4f7fc;
}

.card--compatibility { grid-column: 1 / -1; min-height: 340px; padding: 28px 30px; }
.card--erp,
.card--integration {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 30px;
}

.card {
  border: 2px solid rgba(215, 223, 240, 0.95);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.05);
}

.card--feature {
  min-height: 612px;
  padding: 28px 30px 22px;
}

.card--locator {
  min-height: 448px;
  padding: 28px 30px 28px;
  background: linear-gradient(180deg, #1450ba 0%, #1146ab 100%);
  border-color: transparent;
  box-shadow:
    0 24px 44px rgba(20, 73, 183, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.card__header h3 {
  margin: 0;
  color: #262c3c;
  font-size: var(--fs-card-title);
  line-height: 1.18;
}

.card__header--light h3 {
  color: #ffffff;
}

.card > p,
.card__desc {
  margin: 12px 0 0;
  color: #6a7284;
  font-size: var(--fs-body);
  line-height: 1.78;
}

.card__desc--light {
  color: #ffffff;
}

.card--locator .card__desc.card__desc--light {
  color: #ffffff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 0 0 #ffffff;
}

.card__media {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f8fc 0%, #eef3fb 100%);
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    inset 0 -24px 40px rgba(14, 35, 84, 0.05);
}

.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -42px 56px rgba(7, 19, 43, 0.08);
  pointer-events: none;
}

.card__media img,
.card__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.card__media-image--closet {
  object-position: center 43%;
  transform: scale(1.03);
}

.card__media .card__media-image--exploded {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.card--feature .card__media {
  height: 430px;
}

.card--feature:nth-child(2) .card__media {
  height: 482px;
}

.card__icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  opacity: 0.65;
}

.card__icon::before,
.card__icon::after {
  content: "";
  position: absolute;
}

.card__icon--cube::before {
  inset: 8px;
  border: 4px solid #d4dcf1;
  border-radius: 8px;
}

.card__icon--explode::before,
.card__icon--explode::after {
  inset: 8px;
  border: 4px solid #d4dcf1;
  border-radius: 8px;
  transform: rotate(45deg);
}

.card__icon--explode::after {
  inset: 14px;
}

.card__icon--sync::before,
.card__icon--sync::after {
  width: 22px;
  height: 4px;
  top: 12px;
  border-radius: 999px;
  background: #d1daf0;
}

.card__icon--upload::before { left: 9px; top: 9px; width: 24px; height: 27px; border: 3px solid #d1daf0; border-radius: 5px; }
.card__icon--upload::after { left: 17px; top: 2px; width: 9px; height: 16px; border-left: 3px solid #d1daf0; border-top: 3px solid #d1daf0; transform: rotate(45deg); }
.card__icon--layers::before, .card__icon--layers::after { left: 7px; width: 28px; height: 18px; border: 3px solid #d1daf0; border-radius: 5px; transform: skewY(-18deg); }
.card__icon--layers::before { top: 8px; }
.card__icon--layers::after { top: 18px; left: 13px; }

.integration-visual {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) 90px minmax(205px, 0.72fr);
  align-items: center;
  gap: 18px;
  min-height: 170px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #dce6f7;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6f9ff 0%, #eaf2ff 100%);
}

.integration-file {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 126px;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 73, 183, 0.1);
}

.integration-file__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, #e8f8f0 0%, #d6f2e4 100%);
  color: #178259;
  font-size: var(--fs-label);
  font-weight: 900;
}

.integration-file__icon--erp {
  background: linear-gradient(180deg, #eaf1ff 0%, #dbe8ff 100%);
  color: #1758d1;
}

.integration-file strong,
.integration-result strong,
.integration-result small {
  display: block;
}

.integration-file strong { color: #293b64; font-size: var(--fs-body); }

.integration-source-details {
  display: grid;
  gap: 8px;
  margin-top: 13px;
}

.integration-source-details span {
  position: relative;
  padding-left: 14px;
  color: #6d7d98;
  font-size: var(--fs-label);
  line-height: 1.45;
}

.integration-source-details span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4d7cd8;
}

.integration-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 7px;
  color: #1758d1;
}

.integration-process span {
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 88, 209, 0.18), #1758d1);
}

.integration-process span:last-child { transform: rotate(180deg); }
.integration-process b { font-size: var(--fs-label); white-space: nowrap; }

.integration-result {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 73, 183, 0.1);
}

.integration-result header {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid #e7edf7;
}

.integration-result header strong { color: #293b64; font-size: var(--fs-body); }
.integration-result > div { display: grid; grid-template-columns: 1fr; }
.integration-result > div > span { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 9px 14px; text-align: left; }
.integration-result > div > span + span { border-top: 1px solid #e7edf7; }
.integration-result b { color: #1758d1; font-size: var(--fs-body); }
.integration-result small { margin-top: 0; color: #7a879d; font-size: var(--fs-label); white-space: nowrap; }
.compatibility-overview {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e1e7f2;
}

.compatibility-supported {
  display: grid;
  align-content: center;
  gap: 10px;
  padding-right: 34px;
  border-right: 1px solid #e1e7f2;
}

.compatibility-supported > span {
  color: #278461;
  font-size: var(--fs-body);
  font-weight: 800;
}

.compatibility-supported > strong {
  display: flex;
  align-items: center;
  gap: 14px;
}

.compatibility-supported b {
  color: #1758d1;
  font-size: 24px;
}

.compatibility-supported i {
  color: #93a3bf;
  font-size: 18px;
  font-style: normal;
}

.compatibility-supported small {
  color: #6f7f9e;
  font-size: var(--fs-label);
}

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

.compatibility-roadmap__heading strong { color: #293b64; font-size: var(--fs-body); }
.compatibility-roadmap__heading span { color: #7b8ba5; font-size: var(--fs-label); }

.compatibility-roadmap ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compatibility-roadmap li {
  position: relative;
  min-height: 40px;
  padding: 10px 10px 10px 24px;
  border-bottom: 1px solid #e6ebf4;
  color: #4f607c;
  font-size: var(--fs-body);
  font-weight: 700;
}

.compatibility-roadmap li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ea6ce;
}

.card__icon--sync::before {
  left: 6px;
  transform: rotate(-35deg);
}

.card__icon--sync::after {
  right: 6px;
  top: 27px;
  transform: rotate(-35deg);
}

.card__icon--target::before {
  inset: 5px;
  border: 4px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
}

.card__icon--target::after {
  left: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.info-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-box {
  padding: 18px 22px;
  border: 2px solid #d4ddf0;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.info-box--highlight {
  background: linear-gradient(180deg, #fcfffd 0%, #f4fff9 100%);
}

.info-box__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.info-box__label {
  color: #35517d;
  font-size: 15px;
  font-weight: 800;
}

.info-box__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(150, 156, 180, 0.14);
  color: #9098aa;
  font-size: var(--fs-widget-micro);
  font-weight: 700;
}

.info-box__badge--green {
  background: rgba(66, 175, 126, 0.16);
  color: #35a06c;
}

.info-box strong {
  display: block;
  margin-top: 9px;
  color: #1d3140;
  font-size: 22px;
  line-height: 1.28;
}

.locator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.locator-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 164px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 18px 28px rgba(255, 255, 255, 0.03);
}

.locator-tile__icon {
  position: relative;
  width: 48px;
  height: 48px;
}

.locator-tile__icon::before,
.locator-tile__icon::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.92);
}

.locator-tile__icon::before {
  inset: 7px;
  border-radius: 4px;
}

.locator-tile__icon::after {
  left: 19px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.locator-tile__icon--focus::before {
  inset: 5px;
  border-radius: 50%;
}

.locator-tile__icon--focus::after {
  left: 15px;
  top: 22px;
  width: 18px;
  height: 4px;
  border: 0;
  background: #ffffff;
  border-radius: 999px;
}

.industry-section {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 48px;
  align-items: center;
  min-height: max(840px, calc(var(--viewport-height) - 92px));
  padding: 96px 30px 104px;
  background: var(--surface);
}

.industry-section__content h2 {
  margin: 0 0 56px;
  color: #24293a;
  font-size: 58px;
  line-height: 1.08;
}

.industry-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 14px 0;
}

.industry-item + .industry-item {
  margin-top: 12px;
  border-top: 1px solid #e8edf6;
}

.industry-item__icon {
  width: 56px;
  height: 56px;
  margin-top: 2px;
  border-radius: 8px;
  background: #1f62df;
  position: relative;
}

.industry-item__icon::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 4px;
}

.industry-item__icon--installer {
  background: #79efb8;
}

.industry-item__icon--installer::before {
  inset: 12px 18px;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  border-radius: 0;
}

.industry-item h3 {
  margin: 0;
  color: #29303d;
  font-size: 22px;
}

.industry-item p {
  margin: 8px 0 0;
  color: #4f5768;
  font-size: var(--fs-body);
  line-height: 1.72;
}

.industry-section__visual {
  position: relative;
  height: 640px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.industry-section__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.industry-section__visual img,
.industry-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 44%;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: scale(1.03);
}

.industry-section__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 52%;
  background: linear-gradient(180deg, rgba(9, 18, 38, 0) 0%, rgba(9, 18, 38, 0.2) 36%, rgba(9, 18, 38, 0.84) 100%);
}

.industry-quote {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
  padding: 22px 24px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 20, 44, 0.2) 0%, rgba(10, 20, 44, 0.42) 100%);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 20px 44px rgba(7, 17, 38, 0.22);
}

.industry-quote::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 10px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
}

.industry-quote p {
  margin: 0;
  padding-left: 24px;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.industry-quote span {
  display: block;
  margin-top: 12px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-label);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.download-section {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
  align-content: stretch;
  min-height: max(780px, calc(var(--viewport-height) - 160px));
  padding: 58px 56px;
  background: var(--blue);
}

.download-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(var(--bleed-offset) * -1);
  width: var(--bleed-width);
  background: var(--blue);
}

.download-section > * {
  position: relative;
  z-index: 1;
}

.download-section__header {
  color: #ffffff;
}

.download-section__header > div,
.download-section__body {
  display: grid;
  grid-template-columns: 570px minmax(0, 1fr);
  gap: 76px;
}

.download-section__header > div {
  align-items: end;
}

.download-section__header h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.16;
}

.download-section__header p {
  max-width: none;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--fs-body);
  line-height: 1.85;
  white-space: nowrap;
}

.download-section__body {
  align-items: center;
}

.download-section__intro {
  color: #ffffff;
}

.download-section__subheading {
  color: #8ff0bc;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
}

.download-section__intro h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.35;
}

.download-section__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #8ff0bc;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.22em;
}

.download-section__intro h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.16;
}

.download-section__intro > p {
  width: 540px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--fs-body);
  line-height: 1.85;
}

.download-benefits {
  display: grid;
  gap: 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.download-benefits li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.download-benefits i {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  border: 1px solid rgba(143, 240, 188, 0.34);
  border-radius: 50%;
  background: rgba(135, 239, 183, 0.1);
}

.download-benefits i::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #8ff0bc;
  border-bottom: 2px solid #8ff0bc;
  transform: rotate(-45deg);
}

.download-benefits strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: var(--fs-body);
}

.download-section__platforms {
  min-width: 0;
}

.download-section__platforms-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
  color: #ffffff;
}

.download-section__platforms-heading span {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--fs-label);
}

.download-section__platforms-heading h3 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: 1.25;
}

.download-section__platforms-heading > p {
  margin: 0 0 3px;
  color: #8ff0bc;
  font-size: var(--fs-label);
  font-weight: 700;
}

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

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 42px rgba(5, 28, 83, 0.16);
}

.download-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
  color: #ffffff;
}

.download-card__platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: var(--fs-label);
  font-style: normal;
  font-weight: 800;
}

.download-card__heading strong,
.download-card__heading small {
  display: block;
}

.download-card__heading strong {
  font-size: var(--fs-body);
  line-height: 1.25;
}

.download-card__heading small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-label);
  font-weight: 500;
}

.download-card__qr {
  flex-shrink: 0;
  width: 176px;
  height: 176px;
  padding: 7px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 18px 30px rgba(6, 28, 81, 0.2);
}

.download-card__placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  width: 176px;
  height: 176px;
  overflow: hidden;
  border: 1px solid rgba(20, 73, 183, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 73, 183, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(20, 73, 183, 0.055) 1px, transparent 1px),
    #ffffff;
  background-size: 14px 14px;
  color: #1749a8;
  box-shadow: 0 18px 30px rgba(6, 28, 81, 0.2);
}

.download-card__placeholder::before,
.download-card__placeholder::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: rgba(20, 73, 183, 0.3);
  border-style: solid;
}

.download-card__placeholder::before {
  top: 16px;
  left: 16px;
  border-width: 3px 0 0 3px;
}

.download-card__placeholder::after {
  right: 16px;
  bottom: 16px;
  border-width: 0 3px 3px 0;
}

.download-card__placeholder strong {
  font-size: var(--fs-body);
  line-height: 1;
}

.download-card__placeholder small {
  color: #7182a4;
  font-size: var(--fs-label);
  font-weight: 700;
}

.download-card > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-label);
  line-height: 1.5;
  text-align: center;
}

.download-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-label);
  font-weight: 700;
}

.download-card__status i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.download-card__status.is-available {
  color: #9af2c2;
}

.download-card__status.is-available i {
  background: #87efb7;
  box-shadow: 0 0 0 4px rgba(135, 239, 183, 0.12);
}

.footer {
  position: relative;
  z-index: 0;
  background: #31343f;
  color: rgba(255, 255, 255, 0.92);
}

.footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(var(--bleed-offset) * -1);
  width: var(--bleed-width);
  background: #31343f;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.12fr 0.58fr 0.78fr auto;
  align-items: start;
  gap: 48px;
  padding: 64px 30px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col h3,
.footer__col h4 {
  display: flex;
  align-items: flex-end;
  min-height: 44px;
  margin: 0 0 18px;
  font-size: 22px;
}

.footer__col h3 {
  max-width: 520px;
  font-size: 38px;
  line-height: 1.15;
}

.footer__col p,
.footer__col li {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
  line-height: 1.72;
}

.footer__col > p {
  max-width: 530px;
  margin: 0;
}

.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__col a,
.footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer__col a:hover,
.footer__links a:hover {
  color: #ffffff;
  opacity: 1;
}

.footer__col li + li {
  margin-top: 10px;
}

.footer__contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 28px;
}

.footer__contact-list > :last-child {
  grid-column: 1 / -1;
}

.footer__contact-list > * {
  display: grid;
  gap: 6px;
}

.footer__contact-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--fs-widget-micro);
}

.footer__contact-list strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.footer__contact-list a:hover strong {
  color: #87efb7;
}

.footer__consult-qr {
  display: inline-grid;
  justify-items: start;
  gap: 10px;
  margin: 22px 0 0;
}

.footer__consult-qr img {
  width: 128px;
  height: 128px;
  padding: 6px;
  border-radius: 7px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.footer__consult-qr figcaption {
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--fs-label);
  font-weight: 400;
  line-height: 1.5;
}

.footer__col--sites {
  align-self: start;
}

.footer__col--solutions {
  align-self: start;
}

.footer__col--qrs > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-label);
}

.footer__qr-list {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 22px;
}

.footer__qr-card {
  margin: 0;
}

.footer__qr-card img {
  width: 160px;
  height: 160px;
  padding: 7px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.footer__qr-card figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--fs-label);
  line-height: 1.5;
  text-align: center;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  padding: 18px 30px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-label);
}

.consult-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.consult-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #1449b7;
  color: #ffffff;
  font-size: var(--fs-widget-body);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(20, 73, 183, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consult-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(20, 73, 183, 0.36);
}

.consult-trigger__icon {
  position: relative;
  width: 21px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.consult-trigger__icon::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -5px;
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  transform: skewY(-35deg);
}

.consult-trigger > i {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: #87efb7;
  box-shadow: 0 0 0 4px rgba(135, 239, 183, 0.16);
}

.consult-panel[hidden] {
  display: none;
}

.consult-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 410px;
  height: min(820px, calc(100vh - 122px));
  max-height: calc(100vh - 122px);
  overflow: hidden;
  border: 1px solid #dce4f1;
  border-radius: 8px;
  background: #ffffff;
  color: #202635;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  animation: consult-panel-in 0.2s ease-out;
}

@keyframes consult-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.consult-panel__header {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 32px;
  gap: 13px;
  align-items: center;
  padding: 20px 18px;
  background: #1449b7;
  color: #ffffff;
}

.consult-panel__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: var(--fs-widget-body);
  font-weight: 800;
  overflow: hidden;
}

.consult-panel__avatar img,
.consult-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-panel__header h2 {
  margin: 0;
  font-size: var(--fs-widget-body);
  line-height: 1.3;
}

.consult-panel__header p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-widget-label);
  line-height: 1.5;
}

.consult-panel__header p i {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #87efb7;
}

.consult-panel__close {
  align-self: start;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.consult-chat {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 18px 18px 16px;
  overscroll-behavior: contain;
  overflow-x: hidden;
  overflow-y: auto;
  background: #f3f6fb;
  border-bottom: 1px solid #e5eaf2;
  scrollbar-width: thin;
  scrollbar-color: #c7d2e4 transparent;
}

.consult-chat__message {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.consult-chat__message--user {
  justify-content: flex-end;
}

.consult-chat__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 6px;
  background: #1449b7;
  color: #ffffff;
  font-size: var(--fs-widget-body);
  font-weight: 800;
  overflow: hidden;
}

.consult-chat__bubble {
  max-width: 295px;
  padding: 10px 12px;
  border: 1px solid #dde5f1;
  border-radius: 4px 8px 8px;
  background: #ffffff;
  color: #394253;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
}

.consult-chat__message--user .consult-chat__bubble {
  border-color: #1449b7;
  border-radius: 8px 4px 8px 8px;
  background: #1449b7;
  color: #ffffff;
  box-shadow: 0 7px 16px rgba(20, 73, 183, 0.16);
}

.consult-chat__bubble p {
  margin: 0;
  font-size: var(--fs-widget-body);
  line-height: 1.65;
}

.consult-chat__bubble p + p {
  margin-top: 4px;
}

.consult-form {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
}

.consult-form__contact-fields {
  display: grid;
  gap: 12px;
}

.consult-form__contact-fields[hidden],
.consult-form__consent[hidden] {
  display: none;
}

.consult-form label:not(.consult-form__consent):not(.consult-form__honeypot) {
  display: grid;
  gap: 7px;
}

.consult-form label > span {
  color: #3b4354;
  font-size: var(--fs-widget-body);
  font-weight: 700;
}

.consult-form label > span em {
  color: #e34d59;
  font-style: normal;
}

.consult-form label > span small {
  margin-left: 5px;
  color: #929aaa;
  font-size: var(--fs-widget-micro);
  font-weight: 500;
}

.consult-form input[type="text"],
.consult-form input[type="tel"],
.consult-form textarea {
  width: 100%;
  border: 1px solid #d9e1ed;
  border-radius: 6px;
  background: #f8faff;
  color: #222a39;
  font: inherit;
  font-size: var(--fs-widget-body);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.consult-form input[type="text"],
.consult-form input[type="tel"] {
  height: 42px;
  padding: 0 12px;
}

.consult-form textarea {
  min-height: 72px;
  padding: 11px 12px 26px;
  line-height: 1.6;
  resize: vertical;
}

.consult-form input.has-error {
  border-color: #dc5662;
  background: #fffafb;
}

.consult-form__field-error {
  display: block;
  min-height: 0;
  color: #c83f4b;
  font-size: var(--fs-widget-micro);
  line-height: 1.35;
}

.consult-form__field-error:empty {
  display: none;
}

.consult-form input[type="text"]:focus,
.consult-form input[type="tel"]:focus,
.consult-form textarea:focus {
  border-color: #4d7cd8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 73, 183, 0.09);
}

.consult-form label:has(textarea) {
  position: relative;
}

.consult-form__counter {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #99a2b2;
  font-size: var(--fs-widget-micro);
}

.consult-form__counter b {
  font-weight: 500;
}

.consult-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consult-form__consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #727b8d;
  font-size: var(--fs-widget-label);
  line-height: 1.55;
  cursor: pointer;
}

.consult-form__consent input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  accent-color: #1449b7;
}

.consult-form__consent span {
  color: #727b8d !important;
  font-weight: 500 !important;
}

.consult-form__consent a {
  color: #1449b7;
  font-weight: 700;
}

.consult-form__feedback {
  display: none;
  margin: -4px 0 0;
  padding: 9px 11px;
  border-radius: 6px;
  font-size: var(--fs-widget-label);
  line-height: 1.5;
}

.consult-form__feedback.is-visible {
  display: block;
}

.consult-form__feedback.is-error {
  background: #fff2f3;
  color: #bc3945;
}

.consult-form__feedback.is-success {
  background: #edf9f3;
  color: #25825a;
}

.consult-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #1449b7;
  color: #ffffff;
  font-size: var(--fs-widget-body);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease;
}

.consult-form__submit:hover {
  background: #103fa4;
}

.consult-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.consult-form__submit i {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.consult-form__submit.is-loading i {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: consult-spin 0.7s linear infinite;
  transform: none;
}

@keyframes consult-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .consult-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .consult-trigger {
    min-width: 140px;
  }

  .consult-panel {
    width: 100%;
    height: calc(100vh - 92px);
    max-height: calc(100vh - 92px);
  }

  .compatibility-overview {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .compatibility-supported {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #e1e7f2;
  }

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

}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.is-legal-modal-open {
  overflow: hidden;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 27, 43, 0.42);
  backdrop-filter: blur(6px);
}

.legal-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 64px));
  overflow: auto;
  border-radius: 8px;
  background: rgba(30, 39, 56, 0.9);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(13, 22, 38, 0.34);
  outline: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.legal-modal__panel::-webkit-scrollbar {
  display: none;
}

.legal-modal__close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0 8px 0 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.legal-content {
  padding: 44px 52px 48px;
}

.legal-content h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-widget-body);
  line-height: 1.45;
}

.legal-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-widget-body);
  line-height: 1.85;
}

@media (max-width: 720px) {
  .legal-modal {
    padding: 18px;
  }

  .legal-modal__panel {
    max-height: calc(100vh - 36px);
  }

  .legal-content {
    padding: 36px 24px 34px;
  }
}

/* ===== 字号收敛层 =====
   设计画布会被整体缩放（1600px 视口下 scale≈0.75），原先散落在各处的
   小字号容易互相矛盾。这里按「显示层级」分组收敛到 --fs-* 变量上：
     正文型描述文字 → --fs-body（18px）
     辅助说明小字   → --fs-label（15px）
     眉标题         → --fs-eyebrow（15px）
   调整字号只需改 :root 中的变量，勿在此层写死具体像素。 */
.info-box__badge,
.download-card > p,
.download-card__status,
.footer__contact-list span {
  font-size: var(--fs-label);
}

.download-section__subheading {
  font-size: var(--fs-eyebrow);
}

.download-card__heading small,
.consult-panel__header p,
.consult-chat__avatar,
.consult-form__consent,
.consult-form__feedback,
.consult-chat__bubble p {
  font-size: var(--fs-label);
}

.consult-form label > span {
  font-size: var(--fs-widget-body);
}

.footer__bottom,
.consult-form label > span small,
.consult-form__field-error,
.consult-form__counter {
  font-size: var(--fs-label);
}

@media (min-width: 1941px) {
  .page-stage {
    width: 100%;
  }
}
