/* ===== Full Width Services Framework ===== */ 
.services-fw{
  width:100%;
  font-family:Inter,Arial,sans-serif;
  line-height:1.75;
  color:var(--jm-color-text);
}

/* 全宽 section */ 
.services-fw section{
  width:100%;
  padding:80px 0;
}

/* 内容可读宽度（关键） */ 
.services-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 20px;
}

/* 标题层级 */ 
.services-fw h1{
  font-size:48px;
  margin-bottom:30px;
  color:var(--jm-color-primary);
  font-weight:700;
  line-height:1.2;
}
.services-fw h2,
.printing-page h2{
  font-size:36px;
  margin-bottom:24px;
  color:var(--jm-color-primary);
  font-weight:700;
  line-height:1.3;
  position:relative;
  display:inline-block;
}

.services-fw h2::after,
.printing-page h2::after {
  content:'';
  position:absolute;
  bottom:-8px;
  left:0;
  width:60px;
  height:3px;
  background:var(--jm-color-accent);
}
.services-fw h3{
  font-size:20px;
  margin:28px 0 12px;
  color:var(--jm-color-primary);
  font-weight:600;
}
.services-fw p{
  color:var(--jm-color-text);
  margin-bottom:20px;
  font-size:16px;
}

/* 分割节奏 */ 
.services-divider{
  height:1px;
  background:#e5e7eb;
  margin:40px 0 0;
}

/* Who We Are 部分 */
.services-who-we-are p {
  max-width:800px;
  font-size:17px;
  line-height:1.8;
}

/* 服务能力卡片式布局 */ 
.services-capabilities .services-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin-top:40px;
}
.services-capabilities article{
  padding:30px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 1px 3px 0 rgba(0,0,0,0.05);
  transition:all 0.3s ease;
}
.services-capabilities article:hover{
  transform:translateY(-2px);
  box-shadow:0 4px 12px 0 rgba(0,0,0,0.1);
}
.services-capabilities article + article{
  border-top:none;
}
.service-scope{
  font-size:14px;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:12px;
}

.service-more{
  display:inline-block;
  margin-top:15px;
  color:var(--jm-color-primary);
  font-weight:600;
  text-decoration:none;
  font-size:14px;
  transition:color 0.3s ease;
}

.service-more:hover{
  color:var(--jm-color-accent);
}

/* 决策区（全宽底色） */ 
.services-decision{
  background:var(--jm-color-bg-light);
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
  padding:80px 0;
}
.services-decision ul{
  margin:25px 0 0 30px;
  padding:0;
}
.services-decision li{
  margin-bottom:15px;
  padding-left:15px;
  position:relative;
  font-size:16px;
}
.services-decision li:before{
  content:"●";
  color:var(--jm-color-primary);
  position:absolute;
  left:-15px;
  font-size:10px;
  line-height:1.8;
}
.services-decision li strong{
  color:var(--jm-color-primary);
  font-weight:600;
}

/* FAQ 折叠式设计 */ 
.services-faq .services-list{
  margin-top:40px;
}
.services-faq article{
  padding:25px 0;
  border-bottom:1px solid #e2e8f0;
  transition:all 0.3s ease;
}
.services-faq article + article{
  border-top:none;
}
.services-faq h3{
  font-size:19px;
  margin:0 0 12px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:color 0.3s ease;
}
.services-faq h3:hover{
  color:var(--jm-color-accent);
}
.services-faq h3:after{
  content:"+";
  font-size:20px;
  font-weight:300;
  transition:transform 0.3s ease;
}
.services-faq article.active h3:after{
  transform:rotate(45deg);
}
.services-faq p{
  margin-bottom:0;
  color:#64748b;
  line-height:1.7;
}

/* CTA（强对比，全宽） */ 
.services-cta{
  background:var(--jm-color-primary);
  color:#fff;
  text-align:center;
  padding:100px 0;
}
.services-cta h2{
  color:#ffffff;
  font-size:40px;
  margin-bottom:20px;
}
.services-cta p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
  margin:0 auto 35px;
}
.services-cta a{
  display:inline-block;
  margin-top:0;
  padding:16px 40px;
  border:2px solid #fff;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  border-radius:6px;
  background:var(--jm-color-accent);
  border-color:var(--jm-color-accent);
  transition:all 0.3s ease;
  font-size:16px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.services-cta a:hover{
  background:transparent;
  border-color:#fff;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
}

/* 响应式设计优化 */ 
@media(max-width:900px){
  .services-fw h1{font-size:36px}
  .services-fw h2{font-size:28px}
  .services-fw section{
    padding:60px 0;
  }
  .services-capabilities .services-list{
    grid-template-columns:1fr;
    gap:20px;
  }
  .services-cta{
    padding:80px 0;
  }
  .services-cta h2{
    font-size:32px;
  }
}

@media(max-width:600px){
  .services-fw h1{font-size:30px}
  .services-fw h2{font-size:24px}
  .services-fw h3{font-size:18px}
  .services-fw p{
    font-size:15px;
  }
  .services-fw section{
    padding:50px 0;
  }
  .services-capabilities article{
    padding:20px;
  }
  .services-cta h2{
    font-size:28px;
  }
  .services-cta a{
    padding:14px 32px;
    font-size:15px;
  }
}

/* 平滑滚动效果 */
html{
  scroll-behavior:smooth;
}

/* 增强的视觉反馈，仅桌面端生效 */
@media (min-width: 901px) {
  .services-cta a:focus,
  .services-cta a:active{
    outline:2px solid rgba(255,255,255,0.5);
    outline-offset:4px;
  }
}

/* 加载动画 */
.services-fw section{
  animation:fadeInUp 0.6s ease-out;
}

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

/* 延迟动画 */
.services-capabilities article{
  animation:fadeInUp 0.6s ease-out;
}
.services-capabilities article:nth-child(2){
  animation-delay:0.1s;
}
.services-capabilities article:nth-child(3){
  animation-delay:0.2s;
}
.services-capabilities article:nth-child(4){
  animation-delay:0.3s;
}