/* 流程成熟度评估页面样式 - 浅色主题 */

/* Banner区域 - 浅色背景 */
.solution-hero {
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 50%, #E0E7FF 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 !important;
  margin-top: 80px;
}

.solution-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

/* 价值卡片网格 */
.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1D47BE, #00D4FF);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.value-icon {
  display: inline-block;
  font-size: 36px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
  color: #2563eb;
  border-radius: 14px;
  font-size: 26px;
}

.value-card:hover .value-icon {
  background: #0d6efd;
  color: #fff

}

.value-card strong {
  display: block;
  color: #0A1221;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  color: #5E6C84;
  font-size: 0.85rem;
  margin: 0;
}

/* 标题样式 */
#process-evaluate-hero-title {
  background: linear-gradient(90deg, #1D47BE, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  line-height: 1.2;
}

/* 描述文字 */
.solution-hero p {
  color: #5E6C84;
  font-size: 1rem;
  line-height: 1.7;
}

/* 统计数据容器 */
.stats-container {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #1D47BE, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #8F99A8;
  margin-top: 4px;
}
.cust-btn{
  display: inline-block;
  border-radius: 25px;
  padding:15px 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #1b5adb 0%, #6f9bf1 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 90, 219, 0.28);
  cursor: pointer;
  margin-top: 20px;
}

.cust-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}
.cust-btn img{
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  animation: floatDomIcon 1.6s ease-in-out infinite;
}
@keyframes floatDomIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

/* 评估方法轮模块 */
#methodology {
  padding: 80px 0;
  background: #FFFFFF;
}

.methodology-container {
  max-width: 1200px;
  margin: 0 auto;
}

.methodology-header {
  text-align: center;
  margin-bottom: 60px;
}

.methodology-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0A1221;
  margin-bottom: 16px;
}

.methodology-header p {
  color: #5E6C84;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.methodology-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.methodology-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(29, 71, 190, 0.3);
}

.methodology-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(29, 71, 190, 0.4);
}

.methodology-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.methodology-step p {
  color: #5E6C84;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* 评估维度展示 */
#assessment-dimensions {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dimension-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.dimension-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
}

.dimension-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(29, 71, 190, 0.1), rgba(0, 212, 255, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1D47BE;
  margin-bottom: 16px;
}

.dimension-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.dimension-card p {
  color: #5E6C84;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.dimension-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dimension-features li {
  font-size: 0.85rem;
  color: #5E6C84;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.dimension-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D47BE;
  font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .value-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dimensions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #process-evaluate-hero-title {
    font-size: 36px;
  }
  
  .stats-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .solution-hero {
    padding: 60px 0;
  }
  
  .methodology-steps {
    grid-template-columns: 1fr;
  }
  
  .dimensions-grid {
    grid-template-columns: 1fr;
  }
  
  #process-evaluate-hero-title {
    font-size: 28px;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 16px;
  }
}
/* 流程管理的迷雾 - 挑战模块样式 */
.challenges-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.challenge-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #EF4444, #F97316);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.challenge-card:hover::before {
  transform: scaleX(1);
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.challenge-icon {
  font-size: 40px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 14px;
  color: #EF4444;
  font-size: 26px;
  text-align: center;
}

.challenge-card:hover .challenge-icon {
  background: #EF4444;
  color: #fff;
}

.challenge-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.challenge-card p {
  color: #5E6C84;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.challenge-impact {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.impact-tag {
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.08);
  border-radius: 12px;
  font-size: 11px;
  color: #EF4444;
  font-weight: 500;
}

.challenge-stats {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 16px;
}

.challenge-stats .stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: #EF4444;
}

.stat-text {
  font-size: 0.85rem;
  color: #8F99A8;
}

/* 挑战总结 */
.challenges-summary {
    margin: 48px auto 0;
    background: linear-gradient(135deg, var(--bs-link-color) 0%, var(--bs-primary-bg-subtle) 100%);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bs-white);
}

.summary-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.summary-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  max-width: 500px;
}

.summary-stats {
  text-align: right;
}

.summary-stat .summary-num {
  display: block;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--bs-primary-text-emphasis), var(--bs-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-stat .summary-text {
  display: block;
  font-size: 0.9rem;
  color: #052c65;
  margin-top: 8px;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .challenges-summary {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .summary-stats {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }
  
  .challenges-section {
    padding: 60px 0;
  }
  
  .challenge-card {
    padding: 24px;
  }
}
/* ========== FAQ问答模块样式 ========== */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #EEF2FF 0%, #F8FAFC 100%);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: rgba(37, 99, 235, 0.03);
}

.faq-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1221;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  line-height: 1.5;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D47BE;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  color: #fff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 24px 24px;
}

.faq-content p {
  font-size: 0.95rem;
  color: #5E6C84;
  line-height: 1.7;
  margin: 0;
}

/* FAQ底部CTA */
.faq-cta {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  margin: 0 auto;
}

/* FAQ响应式 */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header h4 {
    font-size: 0.95rem;
  }
}
/* GPMS流程体系管理页面样式 */

/* Hero区域 */
.gpms-hero, .apo-hero {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #F8FAFC 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.gpms-hero::before, .apo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
}

.gpms-hero-container, .apo-hero-container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 22px 60px rgba(15, 37, 95, 0.08);
  position: relative;
  z-index: 1;
}

#gpms-hero-title, #apo-hero-title {
  background: linear-gradient(90deg, #1D47BE, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  line-height: 1.2;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-tag {
  padding: 8px 20px;
  background: rgba(29, 71, 190, 0.08);
  border-radius: 20px;
  font-size: 13px;
  color: #1D47BE;
  font-weight: 500;
}

.stats-card {
  background: linear-gradient(135deg, rgba(29, 71, 190, 0.08), rgba(0, 212, 255, 0.04));
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1D47BE;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #8F99A8;
  margin-top: 4px;
}
/* GPMS流程管理体系模块样式 */
.gpms-intro-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
}

.gpms-section {
  margin-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #0A1221;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-title .icon {
  font-size: 28px;
}

.section-desc {
  text-align: center;
  color: #5E6C84;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* 环形流程体系图 */
.process-ring-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.center-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.ring-center h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1221;
}

.ring-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ring-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.item-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.item-circle.blue {
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  box-shadow: 0 8px 20px rgba(29, 71, 190, 0.3);
}

.item-circle.orange {
  background: linear-gradient(135deg, #F97316, #FB923C);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.item-circle.gray {
  background: linear-gradient(135deg, #6B7B8C, #8F99A8);
  box-shadow: 0 8px 20px rgba(107, 123, 140, 0.3);
}

.item-label {
  font-size: 0.85rem;
  color: #0A1221;
  font-weight: 500;
  white-space: nowrap;
}

/* 环形项目定位 */
.item-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.item-2 {
  bottom: 100px;
  left: 20px;
}

.item-3 {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.item-4 {
  bottom: 100px;
  right: 0px;
}

.item-5 {
  top: 100px;
  right: -10px;
}

/* 悬停效果 */
.ring-item:hover .item-circle {
  transform: scale(1.1);
}

/* GPMS训战课程 */
.gpms-training-section {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.training-content {
  display: flex;
  gap: 48px;
  align-items: center;
}

.training-list {
  flex: 1;
}

.training-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #F8FAFC;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.training-item:hover {
  background: #EEF2FF;
  transform: translateX(5px);
}

.item-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.training-item span {
  color: #0A1221;
  font-size: 0.9rem;
}

/* 课程目的环形图 */
.training-ring {
  flex-shrink: 0;
}

.ring-bg {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #F8FAFC;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1D47BE 270deg, transparent 270deg);
  opacity: 0.8;
}

.ring-center-content {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ring-center-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1D47BE;
  text-align: center;
  line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .training-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .process-ring-container {
    width: 350px;
    height: 350px;
  }
  
  .item-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .gpms-intro-section {
    padding: 60px 0;
  }
  
  .gpms-training-section {
    padding: 24px;
  }
  
  .process-ring-container {
    width: 300px;
    height: 300px;
  }
  
  .item-circle {
    width: 48px;
    height: 48px;
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: 20px;
  }
}
/* ========== 流程进阶输出模块 - 新版样式 ========== */

/* 整体背景 */
.process-output-section.v2 {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
}

.section-header {
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0A1221;
  margin-bottom: 12px;
}

.title-icon {
  font-size: 24px;
  margin-right: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: #5E6C84;
}


/* ========== 知识与工具转化体系 - 新版样式 ========== */

.knowledge-section.v2 {
  margin-top: 80px;
}

.knowledge-flow {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
}

/* 左右列卡片 */
.flow-column {
  display: flex;
  align-items: center;
}

.column-card {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.column-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.column-header {
  text-align: center;
  margin-bottom: 20px;
}

.column-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.expert-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag.orange {
  background: linear-gradient(135deg, #9ec5fe, #9ec5fe);
  color: #fff;
}

.knowledge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.knowledge-item {
  padding: 14px 18px;
  background: #F8FAFC;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #0A1221;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.knowledge-item:hover {
  background: var(--bs-primary-border-subtle);
  color: #fff;
  transform: translateX(5px);
}

.knowledge-item:hover::before {
  transform: scaleY(1);
}

/* 中间转化区域 */
.center-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform-card {
  width: 100%;
}

.transform-arrow {
  position: relative;
  display: flex;
  align-items: center;
}

.arrow-body {
  flex: 1;
  background:linear-gradient(135deg, var(--bs-primary-border-subtle) 0%, var(--bs-primary-border-subtle) 50%, var(--bs-link-color) 100%);
  border-radius: 20px 0 0 20px;
  padding: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.arrow-head {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #0d6efd;
  flex-shrink: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .steps-container {
    flex-direction: column;
  }
  
  .stage-connector {
    transform: rotate(90deg);
    padding: 16px 0;
  }
  
  .knowledge-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .transform-arrow {
    flex-direction: column;
  }
  
  .arrow-body {
    border-radius: 20px 20px 0 0;
    width: 100%;
  }
  
  .arrow-head {
    transform: rotate(90deg);
    border-left-color: #3B82F6;
    margin-top: -1px;
  }
}

@media (max-width: 768px) {
  .process-output-section.v2 {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .step-card {
    padding: 16px;
  }
  
  .stage-steps {
    gap: 12px;
  }
}
/* ========== 流程可视化模块 ========== */
.visual-section {
  padding: 100px 0;
  background: #EEF2FF;
}

.visual-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
}

.visual-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.visual-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.visual-card p {
  font-size: 0.9rem;
  color: #5E6C84;
  line-height: 1.6;
}

.visual-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matrix-chart {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.matrix-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.matrix-header span {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1D47BE;
}

.matrix-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.matrix-row {
  display: flex;
  gap: 8px;
}

.cell {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.cell.blue {
  background: rgba(29, 71, 190, 0.1);
  color: #1D47BE;
}

.cell.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #F97316;
}

.flow-diagram {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  /* height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagram-placeholder {
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.diagram-placeholder span {
  font-size: 0.95rem;
  color: #5E6C84;
}

/* 核心功能模块 */
.features-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #F8FAFC;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
}

/* * 图标容器 */
.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(29, 71, 190, 0.08), rgba(0, 212, 255, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1D47BE, #9ec5fe);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 1;
}

.feature-icon-wrapper i {
  font-size: 28px;
  color: #1D47BE;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper i {
  color: #fff;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0A1221;
  margin-bottom: 12px;
}

.feature-card p {
  color: #5E6C84;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 0.85rem;
  color: #5E6C84;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D47BE;
  font-weight: 600;
}

/* 核心价值模块 */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-gradient-light) 0%, #fff 100%);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color:#9ec5fe;
}

.benefit-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.1);
  line-height: 1;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.benefit-stat {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.benefit-stat strong {
  font-size: 16px;
}


/* FAQ模块 */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-header:hover {
  background: rgba(37, 99, 235, 0.03);
}

.faq-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1221;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D47BE;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #1D47BE, #3B82F6);
  color: #fff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 24px 24px;
}

.faq-content p {
  font-size: 0.95rem;
  color: #5E6C84;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  margin: 0 auto;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #gpms-hero-title, #apo-hero-title {
    font-size: 36px;
  }
  
  .gpms-hero-container, .apo-hero-container {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
  
  #gpms-hero-title {
    font-size: 28px;
  }
  
  .benefit-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-card {
    flex-direction: column;
    gap: 16px;
  }
}

/* 过程评估模块apo */
/* 产品矩阵样式 */
    .product-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(158, 197, 254, 0.2);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(158, 197, 254, 0.2);
    }
    .product-icon-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto;
    }
    .product-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      background: linear-gradient(135deg, #e8f0fe 0%, #c7d9fe 100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    .product-card:hover .product-icon {
      opacity: 1;
      transform: scale(1.05);
    }
    .product-icon-glow {
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      background: linear-gradient(135deg, rgba(158, 197, 254, 0.4) 0%, rgba(107, 163, 252, 0.4) 100%);
      border-radius: 25px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .product-card:hover .product-icon-glow {
      opacity: 1;
    }

     /* 渐变背景 */
    .bg-gradient-to-br {
      background: linear-gradient(135deg, var(--tw-gradient-stops));
    }
    .from-blue-50 {
      --tw-gradient-from: #eff6ff;
    }
    .to-indigo-50 {
      --tw-gradient-to: #eef2ff;
    }
    .from-blue-600 {
      --tw-gradient-from: #2563eb;
    }
    .to-indigo-600 {
      --tw-gradient-to: #4f46e5;
    }
    .from-blue-900 {
      --tw-gradient-from: #1e40af;
    }
    .to-indigo-900 {
      --tw-gradient-to: #312e81;
    }
    .to-purple-900 {
      --tw-gradient-to: #4c1d95;
    }
    .from-purple-500 {
      --tw-gradient-from: #a855f7;
    }
    .to-pink-500 {
      --tw-gradient-to: #ec4899;
    }
    /* 响应式布局 */
    .grid {
      display: grid;
    }
    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gap-6 {
      gap: 1.5rem;
    }
    .gap-8 {
      gap: 2rem;
    }
    .gap-12 {
      gap: 3rem;
    }
    @media (max-width: 768px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }

          /* 现状分析模块完整样式 */
      #problem-analysis {
        position: relative;
        overflow: hidden;
        /* background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f8fafc 100%); */
        padding: 60px 0;
      }

      #problem-analysis::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25%;
        width: 256px;
        height: 256px;
        border-radius: 50%;
        opacity: 0.2;
        background: radial-gradient(circle, #9ec5fe 0%, transparent 70%);
      }

      #problem-analysis::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 25%;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        opacity: 0.15;
        background: radial-gradient(circle, #6ba3fc 0%, transparent 70%);
      }

      #problem-analysis .container {
        position: relative;
        z-index: 1;
      }

      /* 主标题区域 */
      #problem-analysis .text-center {
        margin-bottom: 48px;
      }

      #problem-analysis .inline-flex {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      #problem-analysis .w-8 {
        width: 32px;
        height: 1px;
        background: linear-gradient(to right, transparent, #9ec5fe);
      }

      #problem-analysis .text-lg {
        font-size: 18px;
        font-weight: 600;
        color: #3b82f6;
      }

      #problem-analysis h2 {
        font-size: 28px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 0;
      }
      #problem-analysis .bg-gradient-to-r {
        background: linear-gradient(to right, #3b82f6, #6366f1);
        -webkit-text-fill-color: transparent;
      }

      /* 痛点卡片区域 */
      #problem-analysis .grid {
        display: grid;
        gap: 32px;
        margin-bottom: 48px;
      }

      @media (min-width: 1024px) {
        #problem-analysis .lg\:grid-cols-2 {
          grid-template-columns: repeat(2, 1fr);
        }
      }
       #problem-analysis .quote-item{
        margin-bottom: 10px !important;
      }

      #problem-analysis .bg-white {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        border: 1px solid #e2e8f0;
        padding: 24px;
        transition: all 0.3s ease;
      }

      #problem-analysis .bg-white:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(158, 197, 254, 0.15);
      }

      /* 卡片头部 */
      #problem-analysis .flex {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
      }

      #problem-analysis .w-10 {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      #problem-analysis .text-white {
        color: #fff;
      }

      #problem-analysis .text-gray-800 {
        color: #1e293b;
        font-size: 18px;
        font-weight: 600;
      }

      /* 痛点列表 */
      #problem-analysis .space-y-4 {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .problem-card {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: #f8fafc;
      }

      .problem-card:hover {
        background: rgba(158, 197, 254, 0.1);
        transform: translateX(8px);
      }

      .problem-card .flex-start {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }

      .problem-card .w-6 {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .problem-card .bg-blue-100 {
        background: #dbeafe;
      }

      .problem-card .bg-orange-100 {
        background: #ffedd5;
      }

      .problem-card .text-blue-600 {
        color: #2563eb;
      }

      .problem-card .text-orange-600 {
        color: #ea580c;
      }

      .problem-card .text-xs {
        font-size: 12px;
      }

      .problem-card h4 {
        font-weight: 600;
        color: #1e293b;
        margin: 0;
      }

      .problem-card .text-gray-500 {
        color: #64748b;
        font-size: 14px;
        margin: 0;
        line-height: 1.6;
      }

      /* 核心结论 */
      #problem-analysis .inline-block {
        display: inline-block;
      }

      #problem-analysis .bg-gradient-to-r {
        background: linear-gradient(to right, #2563eb, #4f46e5);
      }

      #problem-analysis .px-8 {
        padding-left: 32px;
        padding-right: 32px;
      }

      #problem-analysis .py-4 {
        padding-top: 16px;
        padding-bottom: 16px;
      }

      #problem-analysis .rounded-2xl {
        border-radius: 20px;
      }

      #problem-analysis .shadow-lg {
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
      }
      /* 吐槽列表 */
      #problem-analysis .mt-8 {
        margin-top: 32px;
      }

      @media (min-width: 768px) {
        #problem-analysis .md\:grid-cols-2 {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      #problem-analysis .gap-4 {
        gap: 16px;
      }

      #problem-analysis .bg-white\/60 {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
      }

      #problem-analysis .p-4 {
        padding: 16px;
      }

      #problem-analysis .text-gray-300 {
        color: #cbd5e1;
      }

      #problem-analysis .text-xl {
        font-size: 20px;
      }

      #problem-analysis .text-gray-600 {
        color: #64748b;
      }

      /* Bootstrap图标样式 */
      #problem-analysis .bi {
        display: inline-block;
        font-size: inherit;
        line-height: 1;
      }
          <style>
      /* ======= 产品矩阵模块专属样式 ======= */
      /* 使用 #apo-products 作为父容器，确保样式隔离 */
      #apo-products {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 30%, #f0f5ff 60%, #f8fafc 100%);
        padding: 60px 0;
      }
      
      /* 背景装饰 */
      #apo-products::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 10px;
        width: 256px;
        height: 256px;
        border-radius: 50%;
        opacity: 0.1;
        background: radial-gradient(circle, #9ec5fe 0%, transparent 70%);
      }
      
      #apo-products::after {
        content: '';
        position: absolute;
        bottom: 20px;
        right: 10px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        opacity: 0.1;
        background: radial-gradient(circle, #6366f1 0%, transparent 70%);
      }
      
      #apo-products .container {
        position: relative;
        z-index: 1;
      }
      
      /* 标题区域 */
      #apo-products .text-center {
        margin-bottom: 56px;
      }
      
      #apo-products .inline-block {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        margin-bottom: 16px;
      }
      
      #apo-products h2 {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
      }
      
      #apo-products .text-gray-600 {
        color: #64748b;
        font-size: 16px;
      }
      
      /* 产品关系流程图 */
      #apo-products .product-flow-wrapper {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        padding: 24px;
        margin-bottom: 48px;
      }
      
      #apo-products .product-flow {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px;
      }
      
      #apo-products .product-flow-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
      }
      
      #apo-products .product-flow-node:hover {
        transform: translateY(-5px);
      }
      
      #apo-products .node-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        margin-bottom: 8px;
      }
      
      #apo-products .node-icon.doa {
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
      }
      
      #apo-products .node-icon.bpm {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      }
      
      #apo-products .node-icon.bpi {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
      }
      
      #apo-products .node-icon.bpa {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      }
      
      #apo-products .node-label {
        text-align: center;
      }
      
      #apo-products .node-label .name {
        font-weight: 600;
        color: #1e293b;
        font-size: 14px;
        display: block;
      }
      
      #apo-products .node-label .desc {
        color: #64748b;
        font-size: 12px;
      }
      
      #apo-products .flow-arrow {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      #apo-products .flow-arrow i {
        color: #9ec5fe;
      }
      
      #apo-products .flow-arrow span {
        color: #9ca3af;
        font-size: 12px;
      }
      
      #apo-products .flow-loop {
        text-align: center;
        margin-top: 16px;
        color: #9ca3af;
        font-size: 12px;
      }
      
      /* 产品卡片网格 */
      #apo-products .product-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        margin-bottom: 56px;
      }
      
      @media (min-width: 768px) {
        #apo-products .product-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      
      @media (min-width: 1024px) {
        #apo-products .product-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      
      /* 产品卡片 */
      #apo-products .product-card {
        background: #fff;
        border-radius: 24px;
        padding: 28px;
        box-shadow: 0 4px 20px rgba(158, 197, 254, 0.08);
        border: 1px solid rgba(158, 197, 254, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
      }
      
      #apo-products .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        transform-origin: left;
      }
      
      #apo-products .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(158, 197, 254, 0.2);
        border-color: rgba(158, 197, 254, 0.3);
      }
      
      #apo-products .product-card:hover::before {
        transform: scaleX(1);
      }
      
      /* 产品图标 */
      #apo-products .product-icon-wrapper {
        width: 72px;
        height: 72px;
        margin: 0 auto 20px;
      }
      
      #apo-products .product-icon-inner {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      }
      
      #apo-products .product-card:hover .product-icon-inner {
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }
      
      #apo-products .product-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
        text-align: center;
      }
      
      #apo-products .product-card p {
        color: #64748b;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
      }
      
      /* 产品标签 */
      #apo-products .product-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 16px;
      }
      
      #apo-products .product-tag {
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
      }
      
      #apo-products .product-tag.primary {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
      }
      
      #apo-products .product-tag.success {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
      }
      
      #apo-products .product-tag.purple {
        background: rgba(139, 92, 246, 0.1);
        color: #8b5cf6;
      }
      
      #apo-products .product-tag.warning {
        background: rgba(245, 158, 11, 0.1);
        color: #f59e0b;
      }
      
      #apo-products .product-tag.gray {
        background: rgba(107, 114, 128, 0.1);
        color: #6b7280;
      }
      
      /* 产品链接 */
      #apo-products .product-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #3b82f6;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
      }
      
      #apo-products .product-link:hover {
        color: #2563eb;
      }
      
      #apo-products .product-link i {
        transition: transform 0.3s ease;
      }
      
      #apo-products .product-card:hover .product-link i {
        transform: translateX(4px);
      }
      
      /* 产品联动说明 */
      #apo-products .product-linkage {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        padding: 32px;
      }
      
      #apo-products .linkage-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      
      @media (min-width: 1024px) {
        #apo-products .linkage-content {
          flex-direction: row;
          align-items: flex-start;
        }
      }
      
      #apo-products .linkage-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        flex-shrink: 0;
      }
      
      #apo-products .linkage-text {
        flex: 1;
      }
      
      #apo-products .linkage-text h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 12px;
      }
      
      #apo-products .linkage-text p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 8px;
      }
      
      #apo-products .linkage-text strong {
        color: #3b82f6;
      }
      
      #apo-products .linkage-stat {
        text-align: center;
        flex-shrink: 0;
      }
      
      #apo-products .linkage-stat .number {
        font-size: 48px;
        font-weight: 700;
        background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
      }
      
      #apo-products .linkage-stat .label {
        color: #64748b;
        font-size: 14px;
      }
      
      /* 响应式调整 */
      @media (max-width: 768px) {
        #apo-products h2 {
          font-size: 24px;
        }
        
        #apo-products .flow-arrow {
          display: none;
        }
        
        #apo-products .product-flow {
          flex-direction: column;
          gap: 20px;
        }
        
        #apo-products .flow-loop {
          display: none;
        }
      }
    </style>