/* =============================================
   site-group.css - 站群页面专用样式
   对应页面：site_group_list、site_group_detail
   设计风格：简约 · 大气 · 现代
   ============================================= */

/* ===== Hero 区域 ===== */
.page-hero {
  position:relative;
  padding:160px 0 100px;
  color:#fff;
  overflow:hidden;
}
.page-hero .hero-inner,
.svc-hero-inner {
  position:relative;
  z-index:2;
  text-align:center;
}
.page-hero .hero-breadcrumb,
.svc-hero .hero-breadcrumb {
  font-size:13px;
  color:rgba(255,255,255,.5);
  margin-bottom:14px;
  letter-spacing:.5px;
}
.page-hero .hero-breadcrumb a,
.svc-hero .hero-breadcrumb a {
  color:rgba(255,255,255,.65);
  transition:color .25s;
}
.page-hero .hero-breadcrumb a:hover,
.svc-hero .hero-breadcrumb a:hover { color:#fff; }
.page-hero h1 {
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:800;
  margin-bottom:14px;
  line-height:1.2;
  letter-spacing:-.3px;
}
.page-hero h1 span {
  background:linear-gradient(135deg,#60a5fa,#a78bfa);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.page-hero p {
  font-size:clamp(.95rem,1.3vw,1.08rem);
  color:rgba(255,255,255,.6);
  max-width:680px;
  margin:0 auto;
  line-height:1.7;
}

/* ===== 通用 Section ===== */
.section { padding:80px 0; }
.section-alt { background:#f8fafc; }
.section-header { text-align:center; margin-bottom:50px; }
.section-title {
  font-size:clamp(1.5rem,2.4vw,2rem);
  font-weight:800;
  color:#1e293b;
  margin-bottom:12px;
  line-height:1.25;
}
.section-subtitle {
  font-size:clamp(.9rem,1.1vw,1.05rem);
  color:#64748b;
  line-height:1.7;
  max-width:600px;
  margin:0 auto;
}

/* ===== 内容正文 ===== */
.content-body {
  font-size:1rem;
  line-height:2;
  color:#334155;
}
.content-body p { margin-bottom:18px; }
.content-body img {
  max-width:100%;
  border-radius:12px;
  margin:24px 0;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.content-body video {
  max-width:100%;
  height:auto;
  display:block;
  margin:24px 0;
  border-radius:12px;
  background:#000;
}
.content-body h2 { font-size:1.4rem; font-weight:700; margin:32px 0 14px; color:#1e293b; }
.content-body h3 { font-size:1.15rem; font-weight:700; margin:28px 0 12px; color:#1e293b; }
.content-body ul,
.content-body ol { padding-left:24px; margin-bottom:18px; }
.content-body li { margin-bottom:8px; }
.content-body a { color:#2563eb; text-decoration:underline; }

/* ===== 站群列表网格 ===== */
.sg-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(110px,1fr));
  gap:14px;
}
@media(max-width:768px) {
  .sg-grid { grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); gap:10px; }
}
.sg-card {
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding:16px 10px; min-height:82px;
  background:#fff;
  border:1px solid #eef2f6;
  border-radius:10px;
  font-size:.88rem;
  font-weight:500;
  line-height:1.35;
  color:#334155;
  text-decoration:none;
  transition:all .3s ease;
  word-break:break-all;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
}
.sg-card:hover {
  border-color:#93c5fd;
  background:#f8faff;
  color:#1d4ed8;
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(37,99,235,.1);
}

/* ===== 列表空状态 ===== */
.list-empty {
  text-align:center;
  padding:80px 20px;
  color:#94a3b8;
}
.list-empty .empty-icon { font-size:2.8rem; margin-bottom:14px; opacity:.4; }
.list-empty p { font-size:1rem; }

/* ===== 分页 ===== */
.pagination-bar {
  display:flex;
  justify-content:center;
  gap:8px;
  margin:50px 0 20px;
  flex-wrap:wrap;
}
.pagination-bar a,
.pagination-bar span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px; height:40px;
  padding:0 14px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  font-size:.9rem;
  font-weight:500;
  color:#475569;
  text-decoration:none;
  background:#fff;
  transition:all .2s;
}
.pagination-bar a:hover {
  border-color:#93c5fd;
  color:#2563eb;
  background:#f0f7ff;
}
.pagination-bar a.active {
  background:#2563eb;
  color:#fff;
  border-color:#2563eb;
  font-weight:600;
}
.pagination-bar a.disabled { opacity:.3; pointer-events:none; }
.pagination-bar .page-dots { border:none; background:transparent; color:#94a3b8; letter-spacing:2px; }

/* ===== CTA 区域 ===== */
.cta-section {
  padding:80px 0;
  background:linear-gradient(135deg,#1e3a5f,#2563eb);
  text-align:center;
  color:#fff;
}
.cta-section h2 {
  font-size:clamp(1.3rem,2.2vw,1.8rem);
  font-weight:800;
  margin-bottom:10px;
}
.cta-section p {
  color:rgba(255,255,255,.7);
  margin-bottom:28px;
  font-size:1rem;
}
.cta-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 38px;
  font-size:1rem;
  font-weight:600;
  color:#1e293b;
  background:#fff;
  border-radius:8px;
  text-decoration:none;
  transition:all .3s;
}
.cta-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(0,0,0,.18);
  color:#1e293b;
}

/* ===== 响应式 ===== */
@media(max-width:768px) {
  .page-hero { padding:110px 0 60px; }
  .section { padding:50px 0; }
  .section-header { margin-bottom:36px; }
  .cta-section { padding:56px 0; }
  .pagination-bar { margin:36px 0 10px; }
  .list-empty { padding:50px 20px; }
}

.sgd-wrap{overflow:hidden}
.sgd-hero{position:relative;padding:120px 0 76px;background:linear-gradient(135deg,#0f2418 0%,#14532d 45%,#00b050 100%);background-size:cover;background-position:center;color:#fff}
.sgd-hero--plain{background:linear-gradient(135deg,#0f2418 0%,#14532d 50%,#00b050 100%)}
.sgd-hero-mask{position:absolute;inset:0;background:linear-gradient(90deg,rgba(9,30,20,.55) 0%,rgba(9,30,20,.25) 60%,rgba(9,30,20,.15) 100%)}
.sgd-hero-pattern{position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(133,206,3,.25) 0,transparent 45%)}
.sgd-hero-inner{position:relative;z-index:2}
.sgd-hero-main{width:100%}
.sgd-hero-eyebrow{display:inline-flex;align-items:center;gap:8px;margin:0 0 18px;padding:6px 14px;border:1px solid rgba(255,255,255,.35);border-radius:999px;font-size:14px;letter-spacing:.5px;color:rgba(255,255,255,.92)}
.sgd-hero-title{margin:0 0 18px;font-size:44px;line-height:1.22;font-weight:700;color:#fff}
.sgd-h1-key{color:#c7f99a}
.sgd-hero-desc{margin:0 0 30px;width:100%;font-size:17px;line-height:1.8;color:rgba(255,255,255,.88)}
.sgd-hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.sgd-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 30px;border-radius:8px;font-size:16px;font-weight:600;line-height:1;text-decoration:none;transition:all .25s ease;cursor:pointer;border:1px solid transparent}
.sgd-btn--primary{background:#00b050;color:#fff;box-shadow:0 6px 18px rgba(0,176,80,.28)}
.sgd-btn--primary:hover{background:#009047;transform:translateY(-2px)}
.sgd-btn--ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.45)}
.sgd-btn--ghost:hover{background:rgba(255,255,255,.22)}
.sgd-btn--light{background:#fff;color:#14532d;box-shadow:0 8px 24px rgba(9,30,20,.18)}
.sgd-btn--light:hover{transform:translateY(-2px)}
.sgd-btn--outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.sgd-btn--outline-light:hover{background:rgba(255,255,255,.14)}
.sgd-icon{width:20px;height:20px;flex:none}
.sgd-breadcrumb{display:flex;align-items:center;gap:8px;margin-top:34px;font-size:14px;color:rgba(255,255,255,.8)}
.sgd-breadcrumb a{color:rgba(255,255,255,.8);text-decoration:none}
.sgd-breadcrumb a:hover{color:#fff}
.sgd-bc-sep{color:rgba(255,255,255,.5)}
.sgd-bc-current{color:#c7f99a}
.sgd-section{padding:84px 0}
.sgd-section-head{max-width:760px;margin:0 auto 52px;text-align:center}
.sgd-section-title{margin:0 0 14px;font-size:32px;line-height:1.3;font-weight:700;color:#0f2418}
.sgd-section-sub{margin:0;font-size:16px;line-height:1.7;color:#5b7266}
.sgd-intro{background:#f2faf3}
.sgd-intro-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.sgd-intro-card{padding:30px;border-radius:14px;background:#fff;border:1px solid #e4f0e6;box-shadow:0 4px 16px rgba(15,36,24,.05);transition:transform .25s ease,box-shadow .25s ease}
.sgd-intro-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,36,24,.10)}
.sgd-intro-top{display:flex;align-items:flex-start;gap:14px;margin-bottom:14px}
.sgd-intro-num{font-size:15px;font-weight:700;color:#fff;background:#00b050;padding:4px 10px;border-radius:6px;line-height:1.4}
.sgd-intro-title{margin:0;font-size:18px;line-height:1.5;font-weight:600;color:#0f2418}
.sgd-intro-text{margin:0;font-size:14px;line-height:1.9;color:#4a6158}
.sgd-about{background:#fff}
.sgd-about-inner{display:grid;grid-template-columns:1.05fr 1fr;gap:56px;align-items:center}
.sgd-about-media{position:relative}
.sgd-about-img{width:100%;height:400px;object-fit:cover;border-radius:16px;display:block}
.sgd-about-badge{position:absolute;right:-14px;bottom:26px;display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:128px;padding:16px;border-radius:14px;background:#00b050;color:#fff;box-shadow:0 10px 26px rgba(0,176,80,.35)}
.sgd-about-badge strong{font-size:30px;line-height:1;font-weight:800}
.sgd-about-badge span{margin-top:6px;font-size:13px;text-align:center}
.sgd-about-title{margin:0 0 18px;text-align:left}
.sgd-about-lead{margin:0 0 20px;font-size:16px;line-height:1.9;color:#3d544b}
.sgd-about-list{margin:0 0 28px;padding:0;list-style:none}
.sgd-about-list li{position:relative;padding:9px 0 9px 30px;font-size:15px;line-height:1.7;color:#2c4238}
.sgd-about-list li::before{content:"";position:absolute;left:4px;top:15px;width:9px;height:9px;border-radius:50%;background:#85ce03}
.sgd-about-btn{margin-top:4px}
.sgd-advantage{background:#f2faf3}
.sgd-adv-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.sgd-adv-card{padding:32px 26px;border-radius:14px;background:#fff;border:1px solid #e4f0e6;text-align:center;transition:transform .25s ease,box-shadow .25s ease}
.sgd-adv-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,36,24,.10)}
.sgd-adv-card .sgd-icon{width:44px;height:44px;color:#00b050;margin-bottom:16px}
.sgd-adv-title{margin:0 0 10px;font-size:18px;font-weight:600;color:#0f2418}
.sgd-adv-text{margin:0;font-size:14px;line-height:1.8;color:#4a6158}
.sgd-products{background:#fff}
.sgd-prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.sgd-prod-card{display:flex;flex-direction:column;border-radius:14px;background:#fff;border:1px solid #e4f0e6;overflow:hidden;text-decoration:none;transition:transform .25s ease,box-shadow .25s ease}
.sgd-prod-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,36,24,.10)}
.sgd-prod-media{position:relative;padding-top:72%;overflow:hidden;background:#eef6ef}
.sgd-prod-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.sgd-prod-card:hover .sgd-prod-img{transform:scale(1.06)}
.sgd-prod-title{margin:0;padding:18px 18px 6px;font-size:16px;line-height:1.5;font-weight:600;color:#0f2418}
.sgd-prod-text{margin:0;padding:0 18px;font-size:13px;line-height:1.7;color:#5b7266;flex:1}
.sgd-prod-link{display:flex;align-items:center;gap:6px;margin:14px 18px 18px;font-size:14px;font-weight:600;color:#00b050}
.sgd-arrow{font-style:normal;transition:transform .2s ease}
.sgd-prod-card:hover .sgd-arrow{transform:translateX(4px)}
.sgd-cases{background:#f2faf3}
.sgd-case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.sgd-case-card{display:flex;flex-direction:column;border-radius:14px;background:#fff;border:1px solid #e4f0e6;overflow:hidden;text-decoration:none;transition:transform .25s ease,box-shadow .25s ease}
.sgd-case-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(15,36,24,.10)}
.sgd-case-img{width:100%;height:220px;object-fit:cover;display:block;transition:transform .4s ease}
.sgd-case-card:hover .sgd-case-img{transform:scale(1.04)}
.sgd-case-title{margin:0;padding:18px 18px 8px;font-size:17px;line-height:1.5;font-weight:600;color:#0f2418}
.sgd-case-text{margin:0;padding:0 18px 20px;font-size:14px;line-height:1.8;color:#4a6158}
.sgd-flow{background:#fff}
.sgd-flow-steps{display:grid;grid-template-columns:repeat(6,1fr);gap:20px}
.sgd-step{position:relative;padding:28px 18px;border-radius:14px;background:#f2faf3;text-align:center;transition:transform .25s ease}
.sgd-step:hover{transform:translateY(-4px)}
.sgd-step-num{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;margin-bottom:14px;border-radius:50%;background:#00b050;color:#fff;font-size:15px;font-weight:700}
.sgd-step-title{margin:0 0 8px;font-size:16px;font-weight:600;color:#0f2418}
.sgd-step-text{margin:0;font-size:13px;line-height:1.7;color:#5b7266}
.sgd-faq{background:#f2faf3}
.sgd-faq-list{max-width:880px;margin:0 auto}
.sgd-faq-item{border-radius:12px;background:#fff;border:1px solid #e4f0e6;margin-bottom:14px;overflow:hidden}
.sgd-faq-q{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:20px 24px;font-size:16px;font-weight:600;color:#0f2418;cursor:pointer;list-style:none;transition:background .2s ease}
.sgd-faq-q::-webkit-details-marker{display:none}
.sgd-faq-q:hover{background:#f7fcf8}
.sgd-faq-toggle{position:relative;width:12px;height:12px;flex:none}
.sgd-faq-toggle::before,.sgd-faq-toggle::after{content:"";position:absolute;inset:0;margin:auto;background:#00b050;transition:transform .2s ease}
.sgd-faq-toggle::before{width:12px;height:2px}
.sgd-faq-toggle::after{width:2px;height:12px}
.sgd-faq-item[open] .sgd-faq-toggle::after{transform:rotate(90deg)}
.sgd-faq-item[open] .sgd-faq-toggle::before{transform:rotate(180deg)}
.sgd-faq-a{padding:0 24px 22px;font-size:14px;line-height:1.9;color:#4a6158}
.sgd-faq-a p{margin:0 0 10px}
.sgd-faq-a p:last-child{margin-bottom:0}
.sgd-articles{background:#fff}
.sgd-article-list{max-width:960px;margin:0 auto}
.sgd-article-item{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px 24px;border-radius:12px;background:#f2faf3;border:1px solid #e4f0e6;text-decoration:none;margin-bottom:14px;transition:transform .25s ease,box-shadow .25s ease}
.sgd-article-item:hover{transform:translateY(-3px);box-shadow:0 10px 24px rgba(15,36,24,.08)}
.sgd-article-title{margin:0 0 8px;font-size:17px;font-weight:600;color:#0f2418}
.sgd-article-text{margin:0;font-size:14px;line-height:1.8;color:#4a6158}
.sgd-article-more{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:#00b050;white-space:nowrap}
.sgd-cta{position:relative;padding:0;background:linear-gradient(135deg,#14532d 0%,#00b050 60%,#009047 100%)}
.sgd-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:64px 0}
.sgd-cta-title{margin:0 0 12px;font-size:28px;line-height:1.4;font-weight:700;color:#fff}
.sgd-cta-text{margin:0;font-size:15px;line-height:1.8;color:rgba(255,255,255,.9)}
.sgd-cta-actions{display:flex;gap:14px;flex-wrap:wrap;flex:none}
.sgd-sites{background:#f2faf3}
.sgd-sites-list{margin:0;padding:0;list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.sgd-sites-item a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:16px 20px;border-radius:10px;background:#fff;border:1px solid #e4f0e6;font-size:15px;font-weight:500;color:#2c4238;text-decoration:none;transition:transform .2s ease,border-color .2s ease}
.sgd-sites-item a:hover{transform:translateY(-2px);border-color:#00b050;color:#00b050}
.sgd-sites-item .sgd-arrow{color:#00b050}
.sgd-empty{padding:40px 0;text-align:center;font-size:15px;color:#8aa296;grid-column:1/-1}
@media (max-width:992px){
.sgd-prod-grid{grid-template-columns:repeat(2,1fr)}
.sgd-flow-steps{grid-template-columns:repeat(3,1fr)}
.sgd-sites-list{grid-template-columns:repeat(2,1fr)}
.sgd-about-inner{grid-template-columns:1fr;gap:36px}
.sgd-about-badge{right:10px}
}
@media (max-width:768px){
.sgd-hero{padding:90px 0 60px}
.sgd-hero-title{font-size:32px}
.sgd-hero-desc{font-size:15px}
.sgd-section{padding:60px 0}
.sgd-section-title{font-size:26px}
.sgd-intro-grid{grid-template-columns:1fr}
.sgd-adv-grid{grid-template-columns:repeat(2,1fr);gap:16px}
.sgd-prod-grid{grid-template-columns:repeat(2,1fr);gap:14px}
.sgd-case-grid{grid-template-columns:1fr}
.sgd-flow-steps{grid-template-columns:repeat(2,1fr);gap:14px}
.sgd-cta-inner{flex-direction:column;align-items:flex-start;padding:48px 0}
.sgd-cta-actions{width:100%}
.sgd-sites-list{grid-template-columns:1fr}
.sgd-about-img{height:280px}
.sgd-article-item{flex-direction:column;align-items:flex-start;gap:10px}
.sgd-btn{padding:12px 22px;font-size:15px}
}


/* =============================================
   服务版图页面 (group.html) 专用样式
   配色：亮绿 #85ce03 · 工业灰 #4A5456 · 浅雾白 #F5F9F8 · 科技蓝 #2563eb
   ============================================= */
.svc-page { overflow: hidden; }

/* ---- Hero ---- */
.svc-hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #1a2e05 0%, #2a4f0a 40%, #85ce03 70%, #00b050 100%);
  overflow: hidden; color: #fff;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(133,206,3,.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(74,84,86,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(245,249,248,.06) 0%, transparent 40%);
  pointer-events: none;
}
.svc-hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.svc-hero-inner {
  position: relative; z-index: 2; text-align: center;
}
.svc-hero-inner h1 {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.svc-hero-inner h1 span {
  color: #2563eb;
}
.svc-hero-inner p {
  font-size: clamp(.95rem,1.3vw,1.08rem);
  color: rgba(255,255,255,.65);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.svc-hero-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.svc-hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px; font-size: .95rem; font-weight: 600;
  border-radius: 50px; text-decoration: none;
  transition: all .3s ease; line-height: 1;
}
.svc-hero-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.svc-hero-btn-primary {
  background: #2563eb; color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.svc-hero-btn-primary:hover {
  background: #1d4ed8; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,.45);
}

/* ---- Sections ---- */
.svc-section { padding: 90px 0; }
.svc-section-alt { background: #F5F9F8; }

.svc-header { text-align: center; margin-bottom: 56px; }
.svc-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800;
  color: #1e293b; margin: 0 0 10px; line-height: 1.2;
}
.svc-header p {
  font-size: 1.05rem; color: #64748b;
  margin: 0; line-height: 1.6;
}

/* ---- Service Card Grid ---- */
.svc-group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .svc-group-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-group-grid { grid-template-columns: 1fr; }
}

.svc-group-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}
.svc-group-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  border-color: #a3d5cb;
}
.svc-group-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-group-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f5d0, #c8e8a0);
  border-radius: 12px;
  color: #85ce03;
  flex-shrink: 0;
}
.svc-group-icon svg { width: 22px; height: 22px; }
.svc-group-card-header h3 {
  font-size: 1rem; font-weight: 700;
  color: #1e293b; margin: 0; line-height: 1.3;
}
.svc-group-features {
  list-style: none; padding: 0;
  margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.svc-group-features li {
  position: relative;
  padding-left: 20px;
  font-size: .88rem;
  color: #4A5456;
  line-height: 1.5;
}
.svc-group-features li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  background: #85ce03;
  border-radius: 50%;
  opacity: .2;
}
.svc-group-actions {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #eef2f0;
}
.svc-group-price-btn {
  font-size: 1.05rem; font-weight: 800;
  color: #2563eb; line-height: 1;
}
.svc-group-btn {
  display: inline-flex; align-items: center;
  padding: 8px 20px;
  font-size: .82rem; font-weight: 600;
  color: #85ce03;
  background: #e8f5d0;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}
.svc-group-btn:hover {
  background: #85ce03;
  color: #fff;
}

/* ---- Cloud Grid (服务版图标签) ---- */
.sg-cloud-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sg-cloud-item {
  display: inline-block;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: #4A5456;
  background: #fff;
  border: 1px solid #dce6e4;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}
.sg-cloud-item:hover {
  color: #85ce03;
  border-color: #a3d5cb;
  background: #e8f5d0;
  transform: translateY(-2px);
}
.sg-cloud-empty {
  color: #94a3b8;
  font-size: .9rem;
}
.sg-cloud-hidden { display: none; }
.sg-cloud-pager {
  text-align: center;
  margin-top: 32px;
}
.sg-cloud-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 30px;
  font-size: .9rem;
  font-weight: 600;
  color: #4A5456;
  background: #fff;
  border: 1px solid #dce6e4;
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s ease;
  line-height: 1;
}
.sg-cloud-btn:hover {
  color: #85ce03;
  border-color: #a3d5cb;
  background: #e8f5d0;
  transform: translateY(-2px);
}
.sg-cloud-btn-icon {
  width: 16px; height: 16px;
  transition: transform .3s;
}

/* ---- 分页导航 ---- */
.sg-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.sg-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 14px;
  font-size: .85rem;
  font-weight: 500;
  color: #4A5456;
  background: #fff;
  border: 1px solid #dce6e4;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s ease;
  line-height: 1;
}
.sg-pager-btn:hover {
  color: #85ce03;
  border-color: #a3d5cb;
  background: #e8f5d0;
}
.sg-pager-active {
  color: #fff;
  background: #85ce03;
  border-color: #85ce03;
  font-weight: 700;
}
.sg-pager-active:hover {
  color: #fff;
  background: #76b902;
  border-color: #76b902;
}
.sg-pager-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  color: #94a3b8;
  font-size: .85rem;
  letter-spacing: 2px;
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .svc-hero { padding: 150px 0 90px; }
}
@media (max-width: 768px) {
  .svc-hero { padding: 120px 0 70px; }
  .svc-section { padding: 60px 0; }
  .svc-header { margin-bottom: 40px; }
  .sg-pager { gap: 4px; margin-top: 28px; }
  .sg-pager-btn { min-width: 34px; height: 34px; padding: 0 10px; font-size: .8rem; }
}
@media (max-width: 480px) {
  .svc-hero { padding: 100px 0 50px; }
  .svc-hero-btn { padding: 12px 24px; font-size: .88rem; }
}
.sgd-about-body{min-width:0}
.sgd-article-body{flex:1;min-width:0}
.sgd-cta-body{flex:1;min-width:0}
