﻿:root {
  --navy: #0b2f5f;
  --navy-2: #123f78;
  --blue: #1f6fb2;
  --teal: #16816f;
  --amber: #e58a1f;
  --red: #b64236;
  --ink: #172033;
  --muted: #667085;
  --soft: #f5f7fa;
  --soft-2: #eef4f8;
  --line: #e4e9f0;
  --white: #fff;
  --shadow: 0 18px 45px rgba(12, 38, 72, .12);
  --primary: #1f6fb2;
  --accent: #16816f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.68;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  width: 210px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--blue); }
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-has-dropdown > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  min-width: 172px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 42px rgba(12,38,72,.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 7px;
  color: #344054;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #eef7ff;
  color: var(--blue);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.nav-phone .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.nav-agent-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 0 7px 14px;
  border-left: 1px solid rgba(15, 43, 79, .12);
  color: #ea580c;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}

.nav-agent-entry:hover {
  color: #c2410c;
  transform: translateY(-1px);
}

.nav-agent-spark {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  transform-origin: 50% 50%;
}

.nav-phone-icon {
  transform-origin: 50% 50%;
}

.nav-phone-icon.is-shaking {
  animation: phone-icon-shake .52s cubic-bezier(.36, .07, .19, .97) both;
}

.nav-agent-spark.is-flipping {
  animation: agent-icon-flip .56s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes phone-icon-shake {
  0%, 100% { transform: rotate(0); }
  18% { transform: rotate(-20deg); }
  36% { transform: rotate(16deg); }
  54% { transform: rotate(-11deg); }
  72% { transform: rotate(6deg); }
}

@keyframes agent-icon-flip {
  0%, 100% { transform: scaleX(1); }
  40% { transform: scaleX(-1); }
  64% { transform: scaleX(-1); }
}

.nav-partner-btn {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.nav-partner-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.menu-button { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #fff; box-shadow: 0 12px 24px rgba(229,138,31,.2); }
.btn-primary:hover { background: #cf7814; }
.btn-blue { background: var(--navy); color: #fff; }
.btn-blue:hover { background: var(--navy-2); }
.btn-outline { color: var(--navy); border-color: #bfd0e8; background: #fff; }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.1); }

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #061f41;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity .7s ease;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide .container {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 70px 0 86px;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 800;
}

/* 桌面端隐藏语义换行提示，移动端保留 */
br.hide-sm { display: none; }

.hero h1, .page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.trust-bar {
  position: relative;
  z-index: 2;
  border-bottom: 0;
  background: #05080d;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  background: transparent;
}

.trust-stat {
  min-width: 0;
  padding: 32px 18px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  overflow: hidden;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 900;
}

.trust-suffix {
  flex: 0 0 auto;
}

.trust-label {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 19px;
  line-height: 1.08;
  font-weight: 900;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.1);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.panel-header strong { font-size: 16px; }
.status-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: #d8fff4;
  background: rgba(22,129,111,.34);
  font-size: 12px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
}

.metric {
  padding: 18px;
  background: rgba(7,35,72,.42);
}

.metric b {
  display: block;
  font-size: 24px;
}

.metric span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.flow-list {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section.soft { background: var(--soft); }
.section.band { background: linear-gradient(180deg, #f6f8fb, #fff); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-head.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-head.centered > div {
  width: min(100%, 860px);
  margin: 0 auto;
}

.section-head.centered .section-kicker,
.section-head.centered h2 {
  text-align: center;
}

.section-head.centered .section-kicker,
.contact-copy .section-kicker {
  font-size: 16px;
}

.section-head.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.centered .btn {
  margin-top: 18px;
}

.section-head.pill-head {
  width: auto;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-head.pill-head .section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 16px;
  border: 1px solid rgba(9,112,121,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 22px rgba(12,38,72,.06);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.section h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(12,38,72,.05);
  overflow: hidden;
}

.card,
.card *,
.solution-overview-item,
.solution-overview-item *,
.solution-audience-grid article,
.solution-audience-grid article *,
.solution-value-card,
.solution-value-card *,
.solution-module-card,
.solution-module-card *,
.page-guide .list li,
.page-guide .list li *,
.side-cta,
.side-cta * {
  min-width: 0;
}

.card-with-image {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.solution-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.solution-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 102, 255, .28);
  box-shadow: 0 18px 42px rgba(12, 38, 72, .10);
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 30px 28px;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft-2);
}

.settlement-diagram {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 22px auto 28px;
  border-radius: 16px;
  background: var(--soft-2);
  box-shadow: 0 18px 46px rgba(12, 38, 72, .12);
}

.card-with-image h3,
.card-with-image p,
.card-with-image .more {
  margin-left: 0;
  margin-right: 0;
}

.card-with-image h3 {
  margin-top: 0;
}

.card-with-image .more {
  margin-top: auto;
  margin-bottom: 0;
  align-self: flex-start;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.card h3,
.card p,
.solution-overview-item strong,
.solution-overview-item p,
.solution-audience-grid strong,
.solution-value-card h3,
.solution-value-card p,
.solution-module-card h3,
.solution-module-card p,
.page-guide .list li,
.side-cta h3,
.side-cta p,
.scenario-card h3,
.scenario-card .scenario-value,
.scenario-card .scenario-pain,
.product-tile strong,
.preview-card strong,
.preview-card span,
.demo-entry-card h3,
.demo-entry-card p {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
  line-break: strict;
}

.card p + p {
  margin-top: 10px;
}

.scenario-advantages {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.scenario-advantages b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
}

.scenario-advantages ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-advantages li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.scenario-advantages li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.settlement-scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.settlement-scenario-grid .card {
  display: block;
  min-height: 100%;
  padding: 26px 30px;
}

.settlement-scenario-grid .scenario-advantages {
  margin-top: 18px;
  padding-top: 16px;
  padding-left: 0;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.settlement-scenario-grid .card h3 {
  min-height: 0;
  margin-top: 12px;
}

.settlement-scenario-grid .card p,
.settlement-scenario-grid .scenario-advantages li {
  font-size: 14px;
  line-height: 1.75;
}

.scenario-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(12,38,72,.05);
  text-align: center;
}

.scenario-card h3 {
  margin: 10px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.scenario-card .icon-tile {
  margin: 0 auto 12px;
}

.scenario-pain {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.scenario-value {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.scenario-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.scenario-card-cta {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy), #0b3f5b);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.scenario-card-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.media-card {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.media-card p {
  margin-top: 0;
}

.case-stat-line {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12,38,72,.05);
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft-2);
}

.case-card div {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
}

.case-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.case-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.case-card .case-subtitle {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
}

.case-card .case-summary {
  display: -webkit-box;
  flex: 1;
  min-height: calc(1em * 1.75 * 3);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.case-card .case-summary strong {
  color: var(--ink);
  font-weight: 900;
}

.case-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  white-space: nowrap;
}

.case-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px auto 0;
}

.case-pagination button {
  width: 38px;
  height: 38px;
  border: 1px solid #bfd0e8;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.case-pagination button:hover,
.case-pagination button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.case-tabs button {
  border: 1px solid #cfe0ef;
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.case-tabs button.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.success-groups {
  display: grid;
  gap: 24px;
}

.success-group h3 {
  display: none;
  margin: 0 0 14px;
  color: var(--navy);
}

.success-group {
  display: none;
}

.success-group.active {
  display: block;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-tile {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  text-align: center;
}

.partner-tile img,
.partner-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: #eef4f8;
}

.partner-placeholder {
  display: grid;
  place-items: center;
  color: #789;
  font-size: 24px;
  font-weight: 900;
}

.partner-tile span {
  display: block;
  margin-top: 10px;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}

.customer-logo-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}

.customer-logo-marquee > div {
  display: flex;
  width: max-content;
  animation: logo-scroll 60s linear infinite;
}

.customer-logo-marquee img {
  flex: 0 0 auto;
  width: 556px;
  height: auto;
  max-width: none;
  display: block;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #edf5ff;
}

.icon-tile.teal { color: var(--teal); background: #eaf7f4; }
.icon-tile.amber { color: var(--amber); background: #fff3e3; }
.icon-tile.red { color: var(--red); background: #fff0ee; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.stat {
  padding: 24px;
  background: #fff;
}

.stat b {
  display: block;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.1;
}

.stat span { color: var(--muted); font-size: 14px; }

.feature-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.blue-box {
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #145d79);
  padding: 30px;
}

.blue-box h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.blue-box p { color: rgba(255,255,255,.82); margin: 0; }

.demo-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 18px;
  align-items: stretch;
}

.demo-entry-grid .blue-box,
.demo-entry-card {
  min-height: 100%;
}

.demo-entry-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(12,38,72,.05);
}

.demo-entry-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
}

.demo-entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.demo-entry-card .btn {
  width: fit-content;
  margin-top: 4px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344054;
  font-size: 14px;
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--amber);
  flex: 0 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  border: 1px solid #cbd8ea;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  min-height: 38px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.page-hero {
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 92px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a { color: rgba(255,255,255,.9); }

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 17px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.content-layout.no-sidebar {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.not-found-page {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(229, 138, 31, .16), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(22, 129, 111, .12), transparent 30%),
    linear-gradient(180deg, #fbfcfe 0%, #eef4f8 100%);
  color: var(--ink);
}

.not-found-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,47,95,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,47,95,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.12));
  pointer-events: none;
}

.not-found-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.not-found-bg span {
  position: absolute;
  display: block;
  border: 1px solid rgba(31,111,178,.14);
  background: rgba(255,255,255,.68);
  box-shadow: 0 24px 70px rgba(12,38,72,.08);
  transform: rotate(12deg);
}

.not-found-bg span:nth-child(1) {
  top: 18%;
  right: 10%;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 28px;
}

.not-found-bg span:nth-child(2) {
  right: 24%;
  bottom: 14%;
  width: 110px;
  aspect-ratio: 1;
  border-radius: 999px;
}

.not-found-bg span:nth-child(3) {
  left: 8%;
  bottom: 18%;
  width: 220px;
  height: 96px;
  border-radius: 24px;
  transform: rotate(-10deg);
}

.not-found-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 82px);
  align-content: center;
  gap: 28px;
  padding-top: 76px;
  padding-bottom: 76px;
}

.not-found-panel {
  max-width: 780px;
  padding: 44px;
  border: 1px solid rgba(31,111,178,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 28px 90px rgba(12,38,72,.12);
  backdrop-filter: blur(10px);
}

.not-found-code {
  margin: 0 0 10px;
  color: rgba(229,138,31,.18);
  font-size: clamp(104px, 18vw, 220px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: 0;
}

.not-found-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(229,138,31,.24);
  border-radius: 999px;
  background: #fff7ed;
  color: #b45309;
  font-size: 14px;
  font-weight: 700;
}

.not-found-panel h1 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.not-found-panel h1 span,
.not-found-lead span {
  display: inline;
}

.not-found-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: normal;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.not-found-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  white-space: nowrap;
}

.not-found-link:hover {
  color: var(--blue);
}

.not-found-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(31,111,178,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  color: var(--muted);
  box-shadow: 0 16px 45px rgba(12,38,72,.08);
  backdrop-filter: blur(12px);
}

.not-found-note .icon {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.not-found-note strong,
.not-found-note a {
  display: block;
  overflow-wrap: normal;
  word-break: keep-all;
}

.not-found-note strong {
  color: var(--navy);
  font-size: 14px;
}

.not-found-note a {
  margin-top: 2px;
  color: var(--blue);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.industry-detail .content-layout.no-sidebar {
  max-width: 1180px;
}

.article {
  min-width: 0;
}

.article-block,
.article-block *,
.side-cta,
.side-cta *,
.page-hero h1,
.page-hero p {
  min-width: 0;
  overflow-wrap: break-word;
}

.article-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12,38,72,.06);
  margin-bottom: 22px;
}

.article-block:first-child { padding-top: 30px; }
.article-block h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.25;
  max-width: 100%;
  flex-wrap: wrap;
}

.article-block h2::before {
  content: "";
  width: 5px;
  height: 24px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.article-block h3 { margin: 22px 0 8px; font-size: 20px; }
.article-block p {
  max-width: 72ch;
  margin: 0 0 14px;
  color: #475467;
  line-height: 1.85;
}

.article-block .solution-text-panel p,
.article-block .solution-result-panel p,
.article-block .solution-case-panel p,
.article-block .doc-copy .doc-line,
.page-guide .article-block p,
.page-guide .list li {
  max-width: 100%;
}

.about-media {
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

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

.product-landing-intro {
  max-width: 920px;
  color: #344054;
  font-size: 17px;
  line-height: 1.95;
}

.landing-scene-list {
  display: grid;
  gap: 22px;
}

.landing-scene {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7fbff);
}

.landing-scene-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-scene-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  font-weight: 900;
}

.landing-scene-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.landing-scene p {
  margin: 0;
  color: #44556b;
  font-size: 15px;
  line-height: 1.9;
}

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

.advantage-card {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(22, 95, 163, .12);
  border-radius: 8px;
  background: #fff;
}

.advantage-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 17px;
}

.advantage-card span {
  color: #52677f;
  font-size: 14px;
  line-height: 1.7;
}

.core-product-box {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.core-product-box b {
  color: var(--navy);
  font-size: 16px;
}

.core-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #cfe0f2;
  border-radius: 999px;
  background: #fff;
  color: #1f4f82;
  font-size: 14px;
  font-weight: 800;
}

a.product-chip:hover {
  border-color: var(--primary);
  background: #eef7ff;
  color: var(--primary);
}

.product-chip .icon {
  width: 14px;
  height: 14px;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.landing-feature-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(12,38,72,.04);
}

.landing-feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #1d78c8);
}

.landing-feature-icon.teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.landing-feature-icon.amber { background: linear-gradient(135deg, #f59e0b, #f97316); }

.landing-feature-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.landing-feature-card p {
  margin: 0;
  color: #52677f;
  font-size: 15px;
  line-height: 1.85;
}

.doc-copy {
  display: grid;
  gap: 12px;
}

.doc-copy .doc-line {
  margin: 0;
  color: #3f4d5f;
  font-size: 16px;
  line-height: 1.9;
}

.industry-detail .article {
  display: grid;
  gap: 28px;
}

.industry-detail .article-block {
  margin-bottom: 0;
  padding: 32px;
  box-shadow: 0 10px 26px rgba(12,38,72,.04);
}

.solution-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
  align-items: stretch;
}

.solution-overview-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12,38,72,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-overview-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12,38,72,.08);
}

.solution-overview-item .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.solution-overview-item .icon-tile .icon {
  width: 22px;
  height: 22px;
}

.solution-overview-item strong {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.4;
}

.solution-overview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.industry-detail .doc-copy {
  display: grid;
  gap: 14px;
}

.industry-detail .doc-copy .doc-line:first-child {
  padding: 22px 24px;
  border: 1px solid #dbe8f8;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7fbff, #eef7f6);
  color: #163452;
  font-size: 17px;
  line-height: 1.85;
}

.industry-detail .doc-copy .doc-heading,
.industry-detail .doc-copy .doc-key {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 8px;
  background: #eef7f6;
  color: #075b5f;
  font-size: 15px;
  font-weight: 850;
}

.industry-detail .grid.cols-3,
.industry-detail .grid.cols-4 {
  gap: 16px;
}

.industry-detail .card {
  box-shadow: 0 10px 24px rgba(12,38,72,.045);
}

.industry-detail .card-content {
  padding: 22px;
}

.industry-detail .list {
  columns: 2;
  column-gap: 34px;
}

.industry-detail .list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.industry-detail .doc-copy .doc-heading + .doc-line,
.industry-detail .doc-copy .doc-key + .doc-line {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.industry-detail .doc-copy .doc-module {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 56px;
  border: 1px solid #dbe8f8;
  border-radius: 10px;
  background: #f7fbff;
  font-size: 16px;
}

.industry-detail .doc-copy .doc-module::before {
  content: counter(module-counter, decimal-leading-zero);
  counter-increment: module-counter;
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.industry-detail .doc-copy {
  counter-reset: module-counter;
}

.industry-detail .article-block[id="overview"] {
  padding: 14px;
  background: rgba(255,255,255,.94);
  position: sticky;
  top: 76px;
  z-index: 8;
}

.solution-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid #d6e5f4;
  border-radius: 999px;
  background: #f7fbff;
  color: #214969;
  font-size: 14px;
  font-weight: 850;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.solution-anchor-nav a:hover {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
  transform: translateY(-1px);
}

.solution-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solution-audience-grid article {
  display: grid;
  gap: 12px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.solution-audience-grid span,
.solution-value-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf4fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.solution-audience-grid strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
}

.solution-text-panel {
  padding: 24px 26px;
  border: 1px solid #dbe8f8;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7fbff, #f2faf8);
}

.solution-text-panel.compact {
  background: #fff;
}

.solution-text-panel p,
.solution-result-panel p,
.solution-case-panel p {
  margin: 0;
  color: #43536a;
  font-size: 16px;
  line-height: 1.9;
}

.solution-text-panel .doc-copy {
  gap: 10px;
}

.solution-text-panel .doc-copy .doc-line {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #43536a;
  font-size: 16px;
  line-height: 1.85;
}

.solution-text-panel .doc-copy .doc-line:first-child,
.solution-case-panel .doc-copy .doc-line:first-child {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.solution-case-panel .doc-copy .doc-line {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #43536a;
  font-size: 16px;
  line-height: 1.9;
}

.solution-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38%;
  gap: 24px;
  align-items: stretch;
}

.solution-intro-split img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  background: var(--soft-2);
}

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

.solution-value-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 22px;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12,38,72,.045);
  text-align: center;
}

.solution-value-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.solution-value-card p {
  margin: 0;
  color: #536174;
  font-size: 15px;
  line-height: 1.75;
}

.solution-module-children {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.solution-module-child {
  padding: 12px 14px;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #f8fbff;
}

.solution-module-child strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
}

.solution-module-child p {
  margin: 0;
  color: #536174;
  font-size: 14px;
  line-height: 1.65;
}

.solution-module-list {
  display: grid;
  gap: 18px;
}

.solution-module-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dce8f5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12,38,72,.045);
}

.solution-module-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.solution-module-card:nth-child(even) img {
  order: 2;
}

.solution-module-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft-2);
}

.solution-module-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.solution-module-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
}

.solution-module-title-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 38px;
  height: 28px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.solution-module-card p:last-child {
  margin: 0;
  color: #4f6074;
  font-size: 15px;
  line-height: 1.8;
}

.page-guide #steps .solution-module-list {
  gap: 14px;
}

.page-guide #steps .solution-module-card {
  display: block;
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 18px 20px;
  width: 100%;
}

.page-guide #steps .solution-module-card:nth-child(even) {
  grid-template-columns: 1fr;
}

.page-guide #steps .solution-module-card > div {
  display: grid;
  align-content: start;
  gap: 8px;
  width: 100%;
  max-width: none;
}

.page-guide #steps .solution-module-card h3 {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.35;
}

.page-guide #steps .solution-module-card p,
.page-guide #steps .procurement-step-guide {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  line-break: auto;
}

.page-guide #steps .solution-module-card strong {
  color: #1f2937;
}

.page-guide #steps .solution-module-title-index {
  color: #1f2937;
  background: #f2f4f7;
}

.page-guide #steps .procurement-step-task {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

.page-guide #steps .procurement-step-guide {
  color: #1f2937;
  font-weight: 700;
}

.page-guide #steps .procurement-step-items {
  display: block;
  gap: 4px;
  width: 100%;
  max-width: none;
}

.page-guide #steps .procurement-step-items p {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  overflow-wrap: normal;
  word-break: normal;
  line-break: auto;
}

.page-guide #steps .procurement-step-items .procurement-step-sub {
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 18px;
  border-left: 0;
  color: #4b5563;
}

.solution-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-scope-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #f8fbff;
  color: #344054;
  font-size: 15px;
  line-height: 1.7;
}

.solution-scope-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.solution-result-panel,
.solution-case-panel {
  padding: 24px 26px;
  border: 1px solid #dbe8f8;
  border-radius: 10px;
  background: #f7fbff;
}

.solution-case-panel {
  border-color: #e6d7b8;
  background: #fffaf2;
}

.doc-copy .doc-heading,
.doc-copy .doc-module,
.doc-copy .doc-key {
  margin-top: 6px;
  color: #0b2342;
  font-weight: 850;
  line-height: 1.5;
}

.doc-copy .doc-heading {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #eef7f6;
  color: #075b5f;
}

.doc-copy .doc-module {
  padding: 14px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: #f6fbff;
  font-size: 16px;
}

.doc-copy .doc-key {
  color: #17416f;
}

.side-cta {
  position: sticky;
  top: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(12,38,72,.06);
}

.side-cta h3 { margin: 0 0 8px; font-size: 18px; }
.side-cta p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.side-cta .btn {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-capability {
  display: grid;
  gap: 34px;
}

.product-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
}

.product-category-nav a {
  border-radius: 999px;
  background: var(--soft);
  padding: 9px 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.product-category-nav a:hover {
  background: var(--primary);
  color: #fff;
}

.product-category {
  scroll-margin-top: 120px;
}

.product-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.product-category-head::before {
  content: "";
  width: 5px;
  height: 26px;
  border-radius: 99px;
  background: var(--primary);
}

.product-category-head h3 {
  margin: 0;
  font-size: 24px;
}

.product-category-head span {
  color: var(--muted);
  font-size: 14px;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  display: grid;
  grid-template-rows: 152px auto;
  gap: 12px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 10px 24px rgba(12,38,72,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(22,95,163,.35);
  box-shadow: 0 16px 34px rgba(12,38,72,.08);
}

.product-tile.is-disabled {
  cursor: default;
}

.product-tile.is-disabled:hover {
  transform: none;
  border-color: #dbe7f4;
  box-shadow: 0 10px 24px rgba(12,38,72,.05);
}

.product-tile-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 152px;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
  overflow: hidden;
}

.product-tile-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-tile strong {
  min-height: 42px;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1.45;
}

#settlement .product-tile-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transform: none;
}

#settlement .product-tile-media img[alt="移动收银机"],
#settlement .product-tile-media img[alt="库存盘点机"],
#settlement .product-tile-media img[alt="掌上通"] {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 78%;
  max-height: 78%;
  transform: translate(-50%, -50%);
}

#settlement .product-tile-media img[alt="掌上购5.0"] {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 62%;
  max-height: 62%;
  transform: translate(-50%, -50%);
}

#settlement .product-tile-media img[alt="称重收银机"] {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 82%;
  max-height: 82%;
  transform: translate(-50%, -50%);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: #fff;
  table-layout: fixed;
}

th, td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  overflow-wrap: break-word;
}

th { color: var(--navy); background: #f1f6fb; }
tr:last-child td { border-bottom: 0; }

.page-guide .content-layout {
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
}

.page-guide .article {
  display: grid;
  gap: 26px;
}

.page-guide .article-block {
  margin-bottom: 0;
  padding: 34px;
  border-color: #dbe7f4;
  box-shadow: 0 16px 38px rgba(12,38,72,.055);
}

.page-guide .article-block h2 {
  margin-bottom: 22px;
  color: var(--navy);
  letter-spacing: 0;
}

.page-guide .article-block p {
  color: #44556b;
  font-size: 16px;
  line-height: 1.9;
}

.article-block p,
.article-block li,
.article-block summary,
.article-block td,
.article-block th,
.article-block .stat,
.article-block .stat *,
.faq,
.faq *,
.page-guide .article-block p,
.page-guide .article-block li,
.page-guide .article-block td,
.page-guide .article-block th,
.page-guide .article-block summary {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: anywhere;
}

.page-guide .side-cta {
  border-color: #d6e4f2;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 14px 30px rgba(12,38,72,.08);
}

.page-guide .article {
  counter-reset: guide-section;
}

.page-guide .article-block {
  position: relative;
  padding-left: 88px;
}

.page-guide .article-block h2::before {
  content: counter(guide-section, decimal-leading-zero);
  counter-increment: guide-section;
  position: absolute;
  left: 32px;
  top: 32px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.page-guide .article-block h2 {
  display: block;
  font-size: 25px;
}

.page-guide .list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.page-guide .list li {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #f8fbff;
  color: #344054;
  font-size: 15px;
  line-height: 1.65;
}

.page-guide .list li::before {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(30,151,142,.1);
}

.page-guide .table-wrap {
  margin-top: 4px;
  border-color: #d7e5f3;
  box-shadow: 0 10px 24px rgba(12,38,72,.045);
}

.page-guide table {
  min-width: min(760px, 100%);
}

.page-guide th {
  padding: 16px;
  background: #eef5fb;
  color: #0b2f5f;
  font-size: 14px;
  line-height: 1.5;
}

.page-guide td {
  padding: 16px;
  color: #45566d;
  line-height: 1.75;
  vertical-align: top;
}

.page-guide tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.page-guide tbody td:first-child {
  color: var(--navy);
  font-weight: 850;
}

.page-guide .article-block:last-child p {
  padding: 18px 20px;
  border: 1px solid #dbe8f8;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, #f2faf8);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #166d76);
  padding: 62px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: center;
}

.contact-copy {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 26px 0;
  text-align: left;
}

.contact-inner h2 { margin: 0 0 12px; font-size: 34px; line-height: 1.2; }
.contact-inner p { margin: 0; color: rgba(255,255,255,.82); }

.form {
  display: grid;
  gap: 12px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: var(--ink);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: #344054;
}

.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 12px;
  min-height: 42px;
  outline: none;
}

.field textarea { min-height: 82px; resize: vertical; }

.qualification-modal[hidden],
.qualification-downloads[hidden] {
  display: none;
}

.qualification-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 24, 48, .26);
}

.qualification-modal-panel {
  width: min(420px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12,38,72,.24);
  overflow: hidden;
}

.qualification-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.qualification-modal-head strong,
.qualification-modal-head span {
  display: block;
}

.qualification-modal-head strong {
  font-size: 18px;
}

.qualification-modal-head span {
  margin-top: 4px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.qualification-modal-head button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

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

.qualification-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.qualification-form input {
  width: 100%;
  border: 1px solid #cfdae8;
  border-radius: 8px;
  padding: 10px 12px;
  color: #23364f;
  font: inherit;
}

.qualification-downloads {
  display: grid;
  gap: 14px;
  margin: 0 18px 18px;
  padding: 16px;
  border: 1px solid #d6e4f2;
  border-radius: 8px;
  background: #f7fbff;
}

.qualification-downloads-head {
  display: grid;
  gap: 4px;
}

.qualification-downloads-head strong {
  color: var(--navy);
  font-size: 17px;
}

.qualification-downloads-head span {
  color: #526173;
  line-height: 1.7;
}

.qualification-download-btn {
  width: fit-content;
  justify-content: center;
}

.resource-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 8px;
}

.resource-summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(12,38,72,.05);
}

.resource-summary-card b {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.resource-summary-card span {
  color: var(--muted);
  font-size: 14px;
}

.resource-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.resource-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px 18px;
  box-shadow: 0 8px 18px rgba(12,38,72,.04);
}

.resource-item[hidden],
.resource-item[data-hidden] {
  display: none !important;
}

.resource-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

.resource-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease;
}

.resource-download:hover {
  background: #0f4f8f;
  transform: translateY(-1px);
}

.white-paper-preview {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.white-paper-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(12,38,72,.05);
}

.white-paper-card h3 {
  margin-top: 0;
}

.white-paper-gate {
  margin-top: 20px;
  border: 1px solid rgba(22,95,163,.16);
  border-radius: 8px;
  background: #f8fbff;
  padding: 22px;
}

.white-paper-gate .form {
  margin-top: 14px;
}

.white-paper-downloads[hidden] {
  display: none;
}

.white-paper-downloads {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.demo-shell {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.demo-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12,38,72,.08);
}

.demo-controls { padding: 22px; }
.demo-output { padding: 22px; background: linear-gradient(180deg, #fff, #f8fbfe); }

.demo-panel-head h2,
.demo-output-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.22;
}

.demo-panel-head p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.agent-boundary-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid #f4cf97;
  border-radius: 8px;
  color: #694505;
  background: #fff8ea;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

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

.preset-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344054;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.preset-grid button.active {
  color: var(--navy);
  border-color: #90b9df;
  background: #eef6ff;
}

.demo-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.demo-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344054;
  background: #f9fbfd;
  font-size: 13px;
  font-weight: 800;
}

.demo-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.agent-toolbox {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 12px;
  margin: 16px 0;
}

.agent-toolbox h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15px;
}

.tool-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tool-chip-grid span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #344054;
  background: #fff;
  border: 1px solid #e8edf4;
  font-size: 12px;
  font-weight: 800;
}

.demo-output-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.demo-status {
  color: #5f3a05;
  background: #fff1d6;
  white-space: nowrap;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-bottom: 18px;
}

.demo-stats div {
  min-width: 0;
  padding: 16px;
  background: #fff;
}

.demo-stats b {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.demo-stats span {
  color: var(--muted);
  font-size: 13px;
}

.agent-plan {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.plan-step {
  min-width: 0;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.plan-step b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
}

.plan-step span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.plan-step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.demo-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.demo-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 17px;
}

.menu-days,
.procurement-list,
.doc-list,
.review-list,
.summary-list {
  display: grid;
  gap: 10px;
}

.menu-day,
.procurement-row,
.doc-item,
.summary-item {
  min-width: 0;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  background: #fbfdff;
  padding: 12px;
}

.menu-day strong,
.procurement-row strong,
.doc-item strong,
.summary-item strong {
  display: block;
  color: #1d2939;
  font-size: 14px;
}

.menu-day p {
  margin: 4px 0;
  color: #344054;
  font-size: 14px;
}

.menu-day span,
.procurement-row span,
.doc-item span,
.summary-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.summary-item b {
  display: block;
  margin: 3px 0;
  color: var(--teal);
  font-size: 18px;
}

.procurement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.procurement-row b {
  color: var(--teal);
  font-size: 15px;
}

.procurement-row em {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef4fb;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

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

.review-list li {
  border-left: 3px solid var(--amber);
  background: #fff9ef;
  border-radius: 6px;
  padding: 10px 12px;
  color: #475467;
  font-size: 13px;
}

.demo-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.demo-export-actions .btn {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}

.home-demo-preview {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12,38,72,.08);
  overflow: hidden;
}

.home-demo-copy {
  padding: 28px;
  background: #f8fbfe;
}

.home-demo-copy h3 {
  margin: 6px 0 10px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
}

.home-demo-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.home-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.home-demo-board {
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f6fafc);
}

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

.preview-card {
  min-width: 0;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.preview-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.preview-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.preview-flow {
  display: grid;
  place-items: center;
  height: 34px;
  color: var(--teal);
}

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

.comparison-col {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.comparison-col.highlighted {
  border-color: #b8d3ec;
  background: #f4f9ff;
}

.comparison-col h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.data-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.data-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.data-check-item > .icon {
  color: var(--teal);
  margin-top: 2px;
}

.data-check-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.data-check-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.floating-demo-cta {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 18px;
  width: min(720px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #b9d2ec;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(12,38,72,.16);
  backdrop-filter: blur(12px);
  padding: 12px 14px;
}

.floating-demo-cta strong,
.floating-demo-cta span {
  display: block;
}

.floating-demo-cta strong {
  color: var(--navy);
  font-size: 15px;
}

.floating-demo-cta span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: rgba(255,255,255,.78);
  background: #071b33;
  padding: 42px 0 26px;
}

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

.footer-title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.footer-company {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-site-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}

.footer-site-links-spacer {
  flex: 1 1 auto;
  min-width: 24px;
}

.footer-site-links a {
  color: rgba(255,255,255,.86);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.copyright-line,
.footer-record-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.copyright-line {
  margin: 0;
}

.footer-record-links {
  justify-content: flex-end;
  white-space: nowrap;
}

.footer-bottom a {
  color: rgba(255,255,255,.86);
}

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

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

.sitemap-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.sitemap-card h3 {
  margin: 0 0 12px;
  color: #0b2342;
}

.sitemap-card div {
  display: grid;
  gap: 8px;
}

.sitemap-card a {
  color: #475467;
  font-size: 14px;
}

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

@media (max-width: 980px) {
  .nav-links, .nav-actions { display: none; }
  .menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    min-height: 40px;
    padding: 8px 10px;
    color: var(--navy);
  }

  .site-header.open .nav-links {
    display: grid;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-item {
    display: grid;
  }

  .site-header.open .nav-links a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.open .nav-has-dropdown > a::after {
    margin-left: auto;
  }

  .site-header.open .nav-dropdown {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.open .nav-dropdown::before {
    display: none;
  }

  .site-header.open .nav-dropdown a {
    min-height: 34px;
    padding: 8px 12px;
    border: 0;
    color: #526173;
    font-weight: 700;
  }

  .site-header.open .nav-dropdown a:hover {
    background: #eef7ff;
  }

  .site-header.open .nav-links a:last-child { border-bottom: 0; }

  .site-header.open .nav-agent-entry {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
    padding: 12px;
    border-bottom: 1px solid rgba(245, 120, 32, .22);
  }

  .hero-slide .container {
    min-height: auto;
    padding: 54px 0 64px;
  }

  .grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-band, .content-layout, .contact-inner, .demo-shell, .home-demo-preview, .media-card, .benchmark-grid, .demo-entry-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-copy { width: min(100%, 680px); margin: 0 auto; padding: 0; }
  .side-cta { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-site-links { gap: 10px 18px; }
  .footer-site-links-spacer { flex-basis: 100%; min-width: 0; }
  .footer-bottom { display: grid; justify-content: start; gap: 8px; }
  .footer-record-links { justify-content: flex-start; white-space: normal; }
  .sitemap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .industry-detail .doc-copy { grid-template-columns: 1fr; }
  .solution-overview { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .solution-audience-grid,
  .solution-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-intro-split,
  .solution-module-card,
  .solution-module-card:nth-child(even) { grid-template-columns: 1fr; }
  .solution-module-card:nth-child(even) img { order: 0; }
  .industry-detail .list { columns: 1; }
  .page-guide .content-layout { grid-template-columns: 1fr; }
  .page-guide .list { grid-template-columns: 1fr; }
  .demo-stats, .agent-plan { grid-template-columns: repeat(2, 1fr); }
  .preview-grid, .data-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  br.hide-sm { display: inline; }
  .container { width: min(100% - 28px, 1180px); }
  .nav { height: 62px; }
  .brand-logo { width: 168px; max-height: 44px; }
  .site-header.open .nav-links { top: 62px; left: 14px; right: 14px; }
  .section { padding: 54px 0; }
  .section-head { display: block; }
  .section-head.centered {
    display: flex;
    align-items: center;
    text-align: center;
  }
  .section-head.pill-head {
    width: auto;
    padding: 0;
  }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .advantage-grid,
  .landing-feature-grid { grid-template-columns: 1fr; }
  .product-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-category-nav { position: static; }
  .resource-summary-grid { grid-template-columns: 1fr; }
  .resource-item { grid-template-columns: 1fr; }
  .resource-download { width: 100%; }
  .product-tile {
    grid-template-rows: 128px auto;
    padding: 12px;
  }
  .product-tile-media {
    height: 128px;
    padding: 8px;
  }
  #settlement .product-tile-media img {
    max-width: 82%;
    max-height: 82%;
  }
  #settlement .product-tile-media img[alt="移动收银机"],
  #settlement .product-tile-media img[alt="库存盘点机"],
  #settlement .product-tile-media img[alt="掌上通"] {
    left: 50%;
    top: 50%;
    max-width: 78%;
    max-height: 78%;
    transform: translate(-50%, -50%);
  }
  #settlement .product-tile-media img[alt="掌上购5.0"] {
    left: 50%;
    top: 50%;
    max-width: 62%;
    max-height: 62%;
    transform: translate(-50%, -50%);
  }
  #settlement .product-tile-media img[alt="称重收银机"] {
    left: 50%;
    top: 50%;
    max-width: 82%;
    max-height: 82%;
    transform: translate(-50%, -50%);
  }
  .industry-detail .article-block { padding: 22px; }
  .solution-overview { grid-template-columns: 1fr; }
  .solution-overview-item { padding: 18px; gap: 14px; }
  .solution-overview-item .icon-tile { width: 44px; height: 44px; }
  .solution-overview-item .icon-tile .icon { width: 20px; height: 20px; }
  .industry-detail .article-block[id="overview"] {
    position: static;
    padding: 12px;
  }
  .solution-anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-anchor-nav a {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .solution-audience-grid,
  .solution-value-grid,
  .solution-scope-list { grid-template-columns: 1fr; }
  .solution-text-panel,
  .solution-result-panel,
  .solution-case-panel { padding: 18px; }
  .solution-intro-split { gap: 16px; }
  .solution-intro-split img { min-height: 190px; }
  .solution-module-card {
    gap: 16px;
    padding: 14px;
  }
  .solution-module-card h3 { font-size: 19px; }
  .page-guide #steps .solution-module-card {
    padding: 18px;
  }
  .page-guide #steps .procurement-step-items {
    grid-template-columns: 1fr;
  }
  .page-guide #steps .solution-module-card p,
  .page-guide #steps .procurement-step-guide {
    white-space: normal;
  }
  .solution-module-card img,
  .card-content { padding: 22px 24px 26px; }
  .trust-bar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-stat { padding: 18px 6px; }
  .trust-value,
  .trust-label { font-size: 13px; }
  .hero h1, .page-hero h1 { font-size: 36px; }
  .hero p, .page-hero p { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .metric-grid, .stats, .footer-grid, .sitemap-grid, .partner-grid, .demo-form, .demo-checks, .demo-result-grid, .demo-stats, .agent-plan, .tool-chip-grid, .preset-grid, .preview-grid, .comparison-grid, .data-check-grid { grid-template-columns: 1fr; }
  .footer-site-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
  .footer-site-links-spacer { display: none; }
  .article-block { padding: 22px; }
  .article-block:first-child { padding-top: 22px; }
  .article-block h2 { font-size: 23px; }
  .landing-scene { padding: 20px; }
  .landing-scene-head { align-items: flex-start; }
  .landing-scene-head h3 { font-size: 21px; }
  .advantage-card { min-height: auto; }
  .landing-feature-card { padding: 20px; }
  .page-guide .article { gap: 18px; }
  .page-guide .article-block { padding: 24px 20px; }
  .page-guide .article-block {
    padding-left: 20px;
    padding-top: 70px;
  }
  .page-guide .article-block h2::before {
    left: 20px;
    top: 22px;
    width: 34px;
    height: 34px;
  }
  .page-guide .article-block h2 { font-size: 23px; }
  .page-guide .list li { padding: 13px 14px; }
  .page-guide th,
  .page-guide td { padding: 13px; }
  .demo-output-head { display: grid; }
  .contact-inner h2 { font-size: 28px; }
  .home-demo-copy, .home-demo-board { padding: 20px; }
  .home-demo-copy h3 { font-size: 24px; }
  .home-demo-actions { display: grid; }
  .home-demo-actions .btn { width: 100%; }
  .floating-demo-cta {
    left: 14px;
    right: 14px;
    bottom: 12px;
    width: auto;
    transform: none;
    display: grid;
  }
.floating-demo-cta .btn { width: 100%; }
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 80;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.floating-contact-btn {
  position: relative;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 76px;
  min-height: 68px;
  padding: 9px 7px;
  border: 1px solid rgba(22,95,163,.18);
  border-right: 0;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(12,38,72,.14);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.floating-contact-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.floating-contact-btn[hidden] {
  display: none !important;
}

@keyframes consult-signal {
  0%, 100% {
    opacity: .42;
    transform: scaleY(.72);
  }
  45% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes consult-icon-nudge {
  0%, 76%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  80% {
    transform: translateX(-1px) rotate(-8deg);
  }
  84% {
    transform: translateX(2px) rotate(8deg);
  }
  88% {
    transform: translateX(-1px) rotate(-5deg);
  }
  92% {
    transform: translateX(1px) rotate(4deg);
  }
}

.floating-contact-btn[data-float-consult] {
  border-color: rgba(247, 142, 30, .36);
  box-shadow: 0 14px 34px rgba(12,38,72,.16), -4px 0 14px rgba(247,142,30,.12);
}

.floating-contact-btn[data-float-consult]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #ffb04a, var(--orange));
  transform-origin: center;
  animation: consult-signal 2.8s ease-in-out infinite;
}

.floating-contact-btn[data-float-consult] .icon {
  color: var(--orange);
  transform-origin: center;
  animation: consult-icon-nudge 3s ease-in-out infinite;
}

.floating-contact-btn .icon {
  width: 22px;
  height: 22px;
}

.floating-contact-btn span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

.floating-phone b {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  display: none;
  min-width: 138px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(12,38,72,.18);
  transform: translateY(-50%);
  white-space: nowrap;
}

.floating-phone:hover b,
.floating-phone.is-active b {
  display: block;
}

.service-chat[hidden] {
  display: none;
}

.service-chat {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: end;
  padding: 24px 88px 24px 24px;
  background: rgba(7, 24, 48, .18);
}

.service-chat-panel {
  width: min(360px, calc(100vw - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(12,38,72,.24);
  overflow: hidden;
}

.service-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.service-chat-head strong,
.service-chat-head span {
  display: block;
}

.service-chat-head strong {
  font-size: 18px;
}

.service-chat-head span {
  margin-top: 4px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.service-chat-head button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.service-chat-form {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.service-chat-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.service-chat-form input,
.service-chat-form textarea {
  width: 100%;
  border: 1px solid #cfdae8;
  border-radius: 8px;
  padding: 10px 12px;
  color: #23364f;
  font: inherit;
}

.service-chat-form textarea {
  min-height: 92px;
  resize: vertical;
}

.comment-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.comment-status[data-type="success"] {
  color: #138a42;
}

.comment-status[data-type="error"] {
  color: var(--red);
}

.comment-success-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 386px;
  padding: 34px 24px;
  border: 1px solid rgba(19, 138, 66, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,255,248,.98)),
    radial-gradient(circle at 50% 0, rgba(19,138,66,.14), transparent 58%);
  color: #14532d;
  text-align: center;
  align-content: center;
  box-shadow: 0 18px 36px rgba(12, 38, 72, .12);
}

.comment-success-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 6px solid #dcfce7;
  border-radius: 50%;
  background: #138a42;
  color: #fff;
  box-shadow: 0 12px 24px rgba(19, 138, 66, .22);
}

.comment-success-mark .icon {
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.comment-success-copy {
  display: grid;
  gap: 8px;
}

.comment-success-copy strong {
  color: #14532d;
  font-size: 24px;
  line-height: 1.25;
}

.comment-success-copy p {
  max-width: 310px;
  margin: 0;
  color: #2f6b45;
  font-size: 15px;
  line-height: 1.7;
}

.comment-success-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 330px;
}

.comment-success-meta span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #d9f2e3;
  border-radius: 8px;
  background: #fff;
  color: #14532d;
  font-size: 14px;
  line-height: 1.35;
}

.comment-success-meta b {
  color: #5a7b65;
  font-size: 12px;
  font-weight: 800;
}

.comment-success-action {
  width: min(100%, 260px);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .floating-contact {
    right: 0;
    gap: 8px;
  }

  .floating-contact-btn {
    width: 68px;
    min-height: 58px;
    padding: 8px 6px;
  }

  .floating-contact-btn span {
    font-size: 11px;
  }

  .service-chat {
    padding: 16px;
    place-items: end center;
  }
}

/* Shared chrome normalization: keep generated pages and product pages aligned with the homepage. */
.site-header,
.contact-band,
.site-footer,
.floating-contact,
.service-chat {
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

.site-header {
  width: 100%;
}

.site-header .container.nav,
.site-footer .container,
.contact-band .container {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.site-header .container.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0;
}

.site-header .brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-header .brand-logo {
  width: 210px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #344054;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.site-header .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.site-header .btn {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.site-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.site-header .nav-partner-btn {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  white-space: nowrap;
}

.site-header .nav-partner-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.page-guide #steps .solution-module-card p,
.page-guide #steps .procurement-step-guide,
.page-guide #steps .procurement-step-items p {
  max-width: none !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  line-break: auto !important;
}

@media (max-width: 640px) {
  .page-guide #steps .solution-module-card p,
  .page-guide #steps .procurement-step-guide,
  .page-guide #steps .procurement-step-items p {
    white-space: normal !important;
  }
}

.contact-inner h2 {
  font-size: clamp(30px, 3vw, 36px);
}

.contact-inner p {
  font-size: 16px;
  line-height: 1.75;
}

.field label,
.service-chat-form label {
  font-size: 14px;
}

.field input,
.field select,
.field textarea,
.service-chat-form input,
.service-chat-form textarea {
  font-size: 15px;
}

.floating-contact-btn span {
  font-size: 13px;
}

.service-chat-head strong {
  font-size: 19px;
}

.service-chat-head span {
  font-size: 14px;
}

.site-footer,
.footer-company,
.footer-links {
  font-size: 14px;
}

.site-footer {
  width: 100%;
  padding: 42px 0 26px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-title {
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .site-header .nav-links,
  .site-header .nav-phone,
  .site-header .btn {
    font-size: 14px;
  }

  .site-header .container.nav,
  .site-footer .container,
  .contact-band .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header .container.nav {
    height: 62px;
  }

  .site-header .brand-logo {
    width: 168px;
    max-height: 44px;
  }

  .contact-inner h2 {
    font-size: 28px;
  }

  .floating-contact-btn span {
    font-size: 12px;
  }
}

/* ---- 招标参谋页面 ---- */

/* 痛点卡片 */
.tender-pain-card {
  display: grid;
  grid-template-rows: 48px 52px 112px auto;
  gap: 8px;
  min-height: 0;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.tender-pain-card:hover {
  box-shadow: 0 8px 28px rgba(11,47,95,.1);
  transform: translateY(-2px);
}
.tender-pain-card .icon-tile {
  margin-bottom: 4px;
}
.tender-pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
  align-self: start;
}
.tender-pain-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  min-height: 0;
}
.tender-pain-solution {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.tender-pain-solution strong {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--teal);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.tender-pain-solution p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
}

/* 服务卡片 */
.tender-service-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(11,47,95,.06);
  transition: box-shadow .2s, transform .2s;
}
.tender-service-card:hover {
  box-shadow: 0 8px 28px rgba(11,47,95,.12);
  transform: translateY(-2px);
}
.tender-service-card .icon-tile {
  margin-bottom: 4px;
}
.tender-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--navy);
}
.tender-service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}

/* 案例卡片 */
.tender-case-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.tender-case-card:hover {
  box-shadow: 0 8px 28px rgba(11,47,95,.1);
  transform: translateY(-2px);
}
.tender-case-card .icon-tile {
  margin-bottom: 4px;
}
.tender-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 6px;
  color: var(--navy);
}
.tender-case-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}
.tender-case-card p strong {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}
.tender-case-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tender-case-list li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 16px;
}
.tender-case-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.tender-case-list li:last-child {
  border-bottom: none;
}
.tender-case-list li strong {
  color: var(--navy);
}

.page-guide #steps .solution-module-list {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(190px, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.page-guide #steps .solution-module-card,
.page-guide #steps .solution-module-card:nth-child(even) {
  display: block !important;
  width: 100% !important;
  min-height: 420px !important;
  padding: 20px 18px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.page-guide #steps .solution-module-card > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.page-guide #steps .solution-module-card h3 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 52px !important;
  margin: 0 !important;
  color: #1f2937 !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
}

.page-guide #steps .solution-module-title-index {
  min-width: 34px !important;
  height: 26px !important;
  color: #1f2937 !important;
  background: #f2f4f7 !important;
  font-size: 13px !important;
}

.page-guide #steps .procurement-step-task {
  min-height: 82px !important;
  padding: 10px 12px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  background: #f9fafb !important;
}

.page-guide #steps .procurement-step-guide {
  margin: 0 !important;
  color: #1f2937 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.page-guide #steps .procurement-step-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: none !important;
}

.page-guide #steps .solution-module-card p,
.page-guide #steps .procurement-step-items p {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #4b5563 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  line-break: auto !important;
}

.page-guide #steps .solution-module-card strong {
  color: #1f2937 !important;
  font-weight: 700 !important;
}

.page-guide #steps .procurement-step-items .procurement-step-sub {
  padding-left: 12px !important;
  color: #4b5563 !important;
}

@media (max-width: 1180px) {
  .page-guide #steps .solution-module-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.page-guide #steps .procurement-steps-vertical {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

.page-guide #steps .procurement-steps-vertical .procurement-step-card {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
  min-height: 0 !important;
  padding: 24px !important;
  border: 1px solid #d9dee7 !important;
  border-left: 0 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(17,24,39,.05) !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
  position: relative !important;
}

.page-guide #steps .procurement-steps-vertical .procurement-step-card + .procurement-step-card {
  margin-top: 0 !important;
}

.page-guide #steps .procurement-steps-vertical .procurement-step-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 6px !important;
  border-radius: 12px 0 0 12px !important;
  background: #374151 !important;
}

.page-guide #steps .procurement-steps-vertical .procurement-step-card:nth-child(even) {
  background: #f9fafb !important;
}

.page-guide #steps .procurement-steps-vertical .procurement-step-card:hover {
  border-color: #9ca3af !important;
  border-left-color: #111827 !important;
  box-shadow: 0 14px 30px rgba(17,24,39,.08) !important;
  transform: translateY(-1px) !important;
}

.page-guide #steps .procurement-step-no {
  display: grid !important;
  place-items: center !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 8px !important;
  background: #111827 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.page-guide #steps .procurement-step-content {
  display: grid !important;
  gap: 10px !important;
  min-width: 0 !important;
}

.page-guide #steps .procurement-step-content h3 {
  margin: 0 !important;
  color: #1f2937 !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.page-guide #steps .procurement-step-content p {
  max-width: none !important;
  margin: 0 !important;
  color: #4b5563 !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  line-break: auto !important;
}

.page-guide #steps .procurement-step-content strong {
  color: #1f2937 !important;
  font-weight: 700 !important;
}

@media (max-width: 640px) {
  .page-guide #steps .procurement-steps-vertical .procurement-step-card {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 18px !important;
  }
}

.page-guide .side-cta .expert-qr {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.page-guide .side-cta .expert-qr img {
  width: min(100%, 168px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
}

.page-guide .side-cta .expert-qr span {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
}

.nav-has-dropdown .nav-dropdown {
  left: 50%;
  right: auto;
  justify-items: center;
  text-align: center;
  transform: translate(-50%, 8px);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  transform: translate(-50%, 0);
}

.nav-has-dropdown .nav-dropdown a {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header.open .nav-dropdown {
    padding-left: 0;
    padding-right: 0;
    justify-items: center;
    text-align: center;
  }

  .site-header.open .nav-dropdown a {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .page-guide #steps .solution-module-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .page-guide #steps .solution-module-list {
    grid-template-columns: 1fr !important;
  }

  .page-guide #steps .solution-module-card,
  .page-guide #steps .solution-module-card:nth-child(even) {
    min-height: 0 !important;
  }
}
