/* ============================================================
   企业部署页（enterprise-deployment.html）专属样式
   依赖 assets/ai-agents.css 提供的基础设计系统与组件
   ============================================================ */

/* ---------- 部署要点数据条 ---------- */
.deploy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.deploy-stat {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.deploy-stat-k {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #1B5E20;
  line-height: 1.25;
  margin-bottom: 6px;
}
.deploy-stat-v {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- FDE 部署流程 ---------- */
.fde-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fde-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fde-step:hover {
  border-color: #1B5E20;
  box-shadow: 0 8px 32px rgba(27, 94, 32, 0.10);
}
.fde-step-no {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8BC34A, #1B5E20);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.20);
}
.fde-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 10px;
}
.fde-step p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--fg-2);
}
.fde-note {
  margin-top: 28px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--muted);
}

/* ---------- 场景标签 ---------- */
.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.scene-tags span {
  font-size: 13px;
  color: #33691E;
  background: rgba(139, 195, 74, 0.14);
  border: 1px solid rgba(27, 94, 32, 0.12);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  line-height: 1.5;
}

/* ---------- 部署模式卡 ---------- */
.mode-card .card-icon {
  background: rgba(139, 195, 74, 0.14);
}
.mode-card .mode-for {
  font-size: 13px;
  font-weight: 600;
  color: #558B2F;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.mode-card ul {
  list-style: none;
  margin-top: 14px;
}
.mode-card ul li {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--fg-2);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.mode-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1B5E20;
  font-weight: 700;
}

/* ---------- 响应式 ---------- */
@media (max-width: 833px) {
  .deploy-stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .fde-steps { grid-template-columns: 1fr; }
  .fde-note { margin-top: 20px; }
}
