/* 高校智慧监督产品 - 产品介绍专题页样式 */
/* 所有样式均限定在 .gaoxiao-product-page 下，避免影响站点头尾 */

.gaoxiao-product-page {
  --gx-primary: #0f3a6d;
  --gx-primary-dark: #0a2749;
  --gx-accent: #1677ff;
  --gx-accent-light: #4096ff;
  --gx-text: #333333;
  --gx-text-secondary: #666666;
  --gx-text-light: #999999;
  --gx-bg: #f5f7fa;
  --gx-bg-light: #ffffff;
  --gx-border: #e6e9ef;
  --gx-radius: 12px;
  --gx-shadow: 0 4px 20px rgba(15, 58, 109, 0.08);
  --gx-shadow-hover: 0 12px 32px rgba(15, 58, 109, 0.14);
  --gx-transition: all 0.3s ease;

  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  color: var(--gx-text);
  line-height: 1.7;
  background: var(--gx-bg);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.gaoxiao-product-page *,
.gaoxiao-product-page *::before,
.gaoxiao-product-page *::after {
  box-sizing: border-box;
}

.gaoxiao-product-page img {
  max-width: 100%;
  display: block;
}

.gaoxiao-product-page a {
  text-decoration: none;
  color: inherit;
}

.gaoxiao-product-page ul,
.gaoxiao-product-page ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gaoxiao-product-page h1,
.gaoxiao-product-page h2,
.gaoxiao-product-page h3,
.gaoxiao-product-page h4,
.gaoxiao-product-page h5,
.gaoxiao-product-page h6,
.gaoxiao-product-page p {
  margin: 0;
}

.gaoxiao-product-page .gx-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(24px, 8vw, 120px);
}

.gaoxiao-product-page .gx-section {
  padding: clamp(48px, 5vw, 72px) 0;
}

.gaoxiao-product-page .gx-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.gaoxiao-product-page .gx-section-title h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--gx-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.gaoxiao-product-page .gx-section-title p {
  font-size: 17px;
  color: var(--gx-text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.gaoxiao-product-page .gx-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(22, 119, 255, 0.08);
  color: var(--gx-accent);
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ===== Hero ===== */
.gaoxiao-product-page .gx-hero {
  position: relative;
  background: url('../images/hero-bg.png') no-repeat center center / cover;
  color: var(--gx-text);
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

.gaoxiao-product-page .gx-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--gx-bg), transparent);
  pointer-events: none;
}

.gaoxiao-product-page .gx-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.gaoxiao-product-page .gx-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gx-text);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 58, 109, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.gaoxiao-product-page .gx-hero-label svg {
  width: 18px;
  height: 18px;
  fill: var(--gx-accent);
}

.gaoxiao-product-page .gx-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--gx-primary);
}

.gaoxiao-product-page .gx-hero h1 span {
  color: var(--gx-accent);
  position: relative;
}

.gaoxiao-product-page .gx-hero-desc {
  font-size: 19px;
  line-height: 1.8;
  color: var(--gx-text-secondary);
  margin-bottom: 36px;
  max-width: 640px;
}

.gaoxiao-product-page .gx-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.gaoxiao-product-page .gx-hero-badges span {
  padding: 6px 14px;
  background: rgba(15, 58, 109, 0.06);
  border: 1px solid rgba(15, 58, 109, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: var(--gx-text);
}

.gaoxiao-product-page .gx-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gaoxiao-product-page .gx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--gx-transition);
  border: none;
}

.gaoxiao-product-page .gx-btn-primary {
  background: var(--gx-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(22, 119, 255, 0.35);
}

.gaoxiao-product-page .gx-btn-primary:hover {
  background: var(--gx-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 119, 255, 0.45);
}

.gaoxiao-product-page .gx-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.gaoxiao-product-page .gx-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ===== Pain Points ===== */
.gaoxiao-product-page .gx-painpoints {
  background: var(--gx-bg-light);
}

.gaoxiao-product-page .gx-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gaoxiao-product-page .gx-pain-card {
  background: var(--gx-bg-light);
  border: 1px solid var(--gx-border);
  border-radius: var(--gx-radius);
  padding: 24px;
  transition: var(--gx-transition);
  position: relative;
  overflow: hidden;
}

.gaoxiao-product-page .gx-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gx-shadow-hover);
  border-color: rgba(22, 119, 255, 0.2);
}

.gaoxiao-product-page .gx-pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gx-accent);
  opacity: 0;
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-pain-card:hover::before {
  opacity: 1;
}

.gaoxiao-product-page .gx-pain-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gaoxiao-product-page .gx-pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(22, 119, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gaoxiao-product-page .gx-pain-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gx-accent);
}

.gaoxiao-product-page .gx-pain-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: var(--gx-primary);
}

.gaoxiao-product-page .gx-pain-card p {
  font-size: 15px;
  color: var(--gx-text-secondary);
  line-height: 1.7;
}

/* ===== Values ===== */
.gaoxiao-product-page .gx-values {
  background: linear-gradient(180deg, var(--gx-bg-light) 0%, var(--gx-bg) 100%);
}

.gaoxiao-product-page .gx-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gaoxiao-product-page .gx-value-card {
  background: var(--gx-bg-light);
  border-radius: var(--gx-radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--gx-shadow);
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gx-shadow-hover);
}

.gaoxiao-product-page .gx-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gx-accent) 0%, var(--gx-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gaoxiao-product-page .gx-value-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.gaoxiao-product-page .gx-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 8px;
}

.gaoxiao-product-page .gx-value-card p {
  font-size: 14px;
  color: var(--gx-text-secondary);
}

/* ===== Architecture ===== */
.gaoxiao-product-page .gx-architecture {
  background: var(--gx-bg-light);
}

.gaoxiao-product-page .gx-arch-diagram {
  background: #fff;
  border: 1px solid var(--gx-border);
  border-radius: var(--gx-radius);
  box-shadow: var(--gx-shadow);
  overflow: hidden;
  padding: 8px;
}

.gaoxiao-product-page .gx-arch-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

/* ===== Scenarios ===== */
.gaoxiao-product-page .gx-scenarios {
  background: var(--gx-bg);
}

/* 隐藏场景切换用的 radio 与 FAQ 用的 checkbox（纯 CSS 驱动，无 JS） */
html {
  scroll-behavior: smooth;
}

.gaoxiao-product-page .gx-scenario-radio,
.gaoxiao-product-page .gx-faq-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  opacity: 0;
  pointer-events: none;
}

.gaoxiao-product-page .gx-scenario-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gaoxiao-product-page .gx-scenario-tab {
  padding: 12px 24px;
  border-radius: 24px;
  background: var(--gx-bg-light);
  border: 1px solid var(--gx-border);
  color: var(--gx-text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-scenario-tab:hover {
  border-color: var(--gx-primary);
  color: var(--gx-primary);
}

.gaoxiao-product-page #gx-s1:checked ~ .gx-scenario-tabs label[for="gx-s1"],
.gaoxiao-product-page #gx-s2:checked ~ .gx-scenario-tabs label[for="gx-s2"],
.gaoxiao-product-page #gx-s3:checked ~ .gx-scenario-tabs label[for="gx-s3"],
.gaoxiao-product-page #gx-s4:checked ~ .gx-scenario-tabs label[for="gx-s4"],
.gaoxiao-product-page #gx-s5:checked ~ .gx-scenario-tabs label[for="gx-s5"],
.gaoxiao-product-page #gx-s6:checked ~ .gx-scenario-tabs label[for="gx-s6"] {
  background: var(--gx-accent);
  color: #fff;
  border-color: var(--gx-accent);
  box-shadow: 0 6px 16px rgba(22, 119, 255, 0.25);
}

.gaoxiao-product-page .gx-scenario-panels {
  position: relative;
}

.gaoxiao-product-page .gx-scenario-panel {
  display: none;
  background: var(--gx-bg-light);
  border-radius: var(--gx-radius);
  padding: 48px;
  box-shadow: var(--gx-shadow);
  animation: gxFadeIn 0.4s ease;
}

/* 面板显隐由 radio :checked 控制（纯 CSS 切换，无 JS） */
#gx-s1:checked ~ .gx-scenario-panels #sc-zhongdian,
#gx-s2:checked ~ .gx-scenario-panels #sc-dang-an,
#gx-s3:checked ~ .gx-scenario-panels #sc-jubao,
#gx-s4:checked ~ .gx-scenario-panels #sc-shengtai,
#gx-s5:checked ~ .gx-scenario-panels #sc-yizhangbiao,
#gx-s6:checked ~ .gx-scenario-panels #sc-dizuo {
  display: block;
}

@keyframes gxFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gaoxiao-product-page .gx-scenario-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}

.gaoxiao-product-page .gx-scenario-head h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 16px;
}

.gaoxiao-product-page .gx-scenario-head p {
  font-size: 16px;
  color: var(--gx-text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.gaoxiao-product-page .gx-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gaoxiao-product-page .gx-scenario-tags span {
  padding: 6px 14px;
  background: rgba(15, 58, 109, 0.06);
  color: var(--gx-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.gaoxiao-product-page .gx-scenario-visual {
  background: linear-gradient(135deg, rgba(15, 58, 109, 0.04) 0%, rgba(22, 119, 255, 0.04) 100%);
  border-radius: var(--gx-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gaoxiao-product-page .gx-scenario-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.gaoxiao-product-page .gx-scenario-visual img {
  width: 100%;
  height: auto;
  max-width: 680px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(15, 58, 109, 0.1);
}

.gaoxiao-product-page .gx-scenario-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gaoxiao-product-page .gx-scenario-feature {
  padding: 24px;
  background: var(--gx-bg);
  border-radius: 10px;
  border-left: 3px solid var(--gx-accent);
}

.gaoxiao-product-page .gx-scenario-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 8px;
}

.gaoxiao-product-page .gx-scenario-feature p {
  font-size: 14px;
  color: var(--gx-text-secondary);
  line-height: 1.6;
}

/* ===== Integration ===== */
.gaoxiao-product-page .gx-integration {
  background: var(--gx-bg-light);
}

.gaoxiao-product-page .gx-integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gaoxiao-product-page .gx-integration-card {
  background: var(--gx-bg-light);
  border-radius: var(--gx-radius);
  border: 1px solid var(--gx-border);
  padding: 24px;
  transition: var(--gx-transition);
  position: relative;
}

.gaoxiao-product-page .gx-integration-card:hover {
  box-shadow: var(--gx-shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(15, 58, 109, 0.2);
}

.gaoxiao-product-page .gx-integration-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gx-primary) 0%, #1e4d8a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  margin-bottom: 0;
  vertical-align: middle;
}

.gaoxiao-product-page .gx-integration-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.gaoxiao-product-page .gx-integration-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 12px;
  display: inline-block;
  vertical-align: middle;
}

.gaoxiao-product-page .gx-integration-card p {
  font-size: 14px;
  color: var(--gx-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gaoxiao-product-page .gx-integration-card ul li {
  font-size: 14px;
  color: var(--gx-text-secondary);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}

.gaoxiao-product-page .gx-integration-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gx-accent);
}

/* ===== Platform Tech ===== */
.gaoxiao-product-page .gx-platform {
  background: var(--gx-bg);
}

.gaoxiao-product-page .gx-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gaoxiao-product-page .gx-platform-card {
  display: flex;
  gap: 20px;
  background: var(--gx-bg-light);
  border-radius: var(--gx-radius);
  padding: 28px;
  box-shadow: var(--gx-shadow);
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gx-shadow-hover);
}

.gaoxiao-product-page .gx-platform-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(15, 58, 109, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gaoxiao-product-page .gx-platform-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gx-primary);
}

.gaoxiao-product-page .gx-platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 8px;
}

.gaoxiao-product-page .gx-platform-card p {
  font-size: 14px;
  color: var(--gx-text-secondary);
  line-height: 1.7;
}

/* ===== Benefits / Stats ===== */
.gaoxiao-product-page .gx-benefits {
  background: linear-gradient(135deg, #0a2749 0%, #0f3a6d 100%);
  color: #fff;
}

.gaoxiao-product-page .gx-benefits .gx-section-title h2,
.gaoxiao-product-page .gx-benefits .gx-section-title p {
  color: #fff;
}

.gaoxiao-product-page .gx-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.gaoxiao-product-page .gx-benefit-item {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--gx-radius);
  backdrop-filter: blur(4px);
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-benefit-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.gaoxiao-product-page .gx-benefit-num {
  font-size: 42px;
  font-weight: 800;
  color: #5eead4;
  line-height: 1;
  margin-bottom: 8px;
}

.gaoxiao-product-page .gx-benefit-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gaoxiao-product-page .gx-benefit-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== Case ===== */
.gaoxiao-product-page .gx-case {
  background: var(--gx-bg-light);
}

.gaoxiao-product-page .gx-case-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background: var(--gx-bg);
  border-radius: var(--gx-radius);
  overflow: hidden;
  align-items: start;
}

.gaoxiao-product-page .gx-case-info {
  padding: 48px;
}

.gaoxiao-product-page .gx-case-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 16px;
}

.gaoxiao-product-page .gx-case-info p {
  font-size: 15px;
  color: var(--gx-text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.gaoxiao-product-page .gx-case-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gaoxiao-product-page .gx-case-highlight {
  background: var(--gx-bg-light);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--gx-accent);
}

.gaoxiao-product-page .gx-case-highlight h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gx-primary);
  margin-bottom: 6px;
}

.gaoxiao-product-page .gx-case-highlight p {
  font-size: 13px;
  color: var(--gx-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.gaoxiao-product-page .gx-case-visual {
  background: linear-gradient(135deg, rgba(15, 58, 109, 0.05) 0%, rgba(22, 119, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  align-self: stretch;
}

.gaoxiao-product-page .gx-case-visual svg,
.gaoxiao-product-page .gx-case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* ===== FAQ ===== */
.gaoxiao-product-page .gx-faq {
  background: var(--gx-bg);
}

.gaoxiao-product-page .gx-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.gaoxiao-product-page .gx-faq-item {
  background: var(--gx-bg-light);
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: var(--gx-shadow);
  overflow: hidden;
}

.gaoxiao-product-page .gx-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  transition: var(--gx-transition);
}

.gaoxiao-product-page .gx-faq-q:hover {
  background: rgba(15, 58, 109, 0.02);
}

.gaoxiao-product-page .gx-faq-q h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gx-primary);
  padding-right: 20px;
}

.gaoxiao-product-page .gx-faq-q svg {
  width: 20px;
  height: 20px;
  fill: var(--gx-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gaoxiao-product-page .gx-faq-toggle:checked ~ .gx-faq-q svg {
  transform: rotate(180deg);
}

.gaoxiao-product-page .gx-faq-toggle:checked ~ .gx-faq-a {
  max-height: 600px;
}

.gaoxiao-product-page .gx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gaoxiao-product-page .gx-faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gx-text-secondary);
  line-height: 1.8;
}

/* ===== CTA ===== */
.gaoxiao-product-page .gx-cta {
  background: linear-gradient(135deg, var(--gx-primary-dark) 0%, var(--gx-primary) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 5vw, 72px) 0;
}

.gaoxiao-product-page .gx-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.gaoxiao-product-page .gx-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.gaoxiao-product-page .gx-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Footer note ===== */
.gaoxiao-product-page .gx-footer-note {
  background: var(--gx-bg-light);
  border-top: 1px solid var(--gx-border);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gx-text-light);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .gaoxiao-product-page .gx-hero h1 {
    font-size: 40px;
  }

  .gaoxiao-product-page .gx-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gaoxiao-product-page .gx-integration-grid,
  .gaoxiao-product-page .gx-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gaoxiao-product-page .gx-scenario-head {
    grid-template-columns: 1fr;
  }

  .gaoxiao-product-page .gx-case-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gaoxiao-product-page .gx-section {
    padding: clamp(40px, 8vw, 56px) 0;
  }

  .gaoxiao-product-page .gx-section-title h2 {
    font-size: 28px;
  }

  .gaoxiao-product-page .gx-hero {
    padding: clamp(40px, 8vw, 64px) 0;
  }

  .gaoxiao-product-page .gx-hero h1 {
    font-size: 32px;
  }

  .gaoxiao-product-page .gx-hero-desc {
    font-size: 16px;
  }

  .gaoxiao-product-page .gx-value-grid {
    grid-template-columns: 1fr;
  }

  .gaoxiao-product-page .gx-integration-grid,
  .gaoxiao-product-page .gx-platform-grid {
    grid-template-columns: 1fr;
  }

  .gaoxiao-product-page .gx-scenario-panel {
    padding: 28px;
  }

  .gaoxiao-product-page .gx-scenario-head h3 {
    font-size: 22px;
  }

  .gaoxiao-product-page .gx-case-info {
    padding: 32px;
  }

  .gaoxiao-product-page .gx-case-highlights {
    grid-template-columns: 1fr;
  }

  .gaoxiao-product-page .gx-benefit-num {
    font-size: 34px;
  }

  .gaoxiao-product-page .gx-arch-diagram {
    padding: 4px;
  }
}
