/* 数据驱动内容页共用样式（原 faq / ecosystem / values / sub-solution 内联重复块） */
.dynamic-page-root { min-height: 40vh; }

.dp-breadcrumb { background: #f8f9fa; padding: 16px 0; font-size: 14px; color: #666; }
.dp-breadcrumb a { color: var(--dp-theme, #3498db); text-decoration: none; }
.dp-breadcrumb a:hover { text-decoration: underline; }

.dp-hero {
  background: linear-gradient(135deg, var(--dp-theme, #3498db) 0%, var(--dp-theme-dark, #2980b9) 100%);
  color: #fff; padding: 72px 0; position: relative; overflow: hidden;
}
.dp-hero--mfg { --dp-theme: #2563eb; --dp-theme-dark: #1d4ed8; }
.dp-hero__inner { text-align: center; max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.dp-hero__badge {
  display: inline-block; background: rgba(255,255,255,.15); padding: 6px 20px;
  border-radius: 20px; font-size: 13px; margin-bottom: 20px; backdrop-filter: blur(10px);
}
.dp-hero__title { font-size: 42px; font-weight: 700; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,.1); }
.dp-hero__audience { font-size: 20px; margin-bottom: 12px; opacity: .95; font-weight: 500; }
.dp-hero__summary { font-size: 17px; opacity: .9; line-height: 1.65; }

.dp-section { padding: 60px 0; }
.dp-section--alt { background: #f8f9fa; }
.dp-section__head { text-align: center; margin-bottom: 36px; }
.dp-section__title { font-size: 28px; font-weight: 700; color: #2c3e50; margin-bottom: 10px; }
.dp-section__subtitle { font-size: 15px; color: #7f8c8d; }

.dp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.dp-card {
  background: #fff; border-radius: 12px; padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid #eef1f5;
}
.dp-card__icon { font-size: 32px; margin-bottom: 12px; }
.dp-card__title { font-size: 18px; font-weight: 600; color: #2c3e50; margin-bottom: 12px; }
.dp-card__list { list-style: none; padding: 0; margin: 0; color: #666; line-height: 1.75; font-size: 14px; }
.dp-card__list li { padding-left: 16px; position: relative; margin-bottom: 6px; }
.dp-card__list li::before { content: '•'; position: absolute; left: 0; color: var(--dp-theme, #3498db); }

.dp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.dp-step { text-align: center; padding: 20px 12px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.dp-step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--dp-theme, #3498db); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 12px;
}
.dp-step__title { font-size: 16px; font-weight: 600; color: #2c3e50; margin-bottom: 8px; }
.dp-step__desc { font-size: 13px; color: #666; line-height: 1.6; }

.dp-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.dp-metric {
  padding: 36px 24px; border-radius: 16px; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--dp-theme, #3498db), var(--dp-theme-dark, #2980b9));
}
.dp-metric__value { font-size: 42px; font-weight: 700; margin-bottom: 8px; }
.dp-metric__label { font-size: 14px; opacity: .92; line-height: 1.5; }

.dp-cta { text-align: center; padding: 56px 0; background: #ecf8ff; }
.dp-cta__title { font-size: 28px; font-weight: 700; color: #2c3e50; margin-bottom: 24px; }
.dp-cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.dp-btn {
  display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 600;
  text-decoration: none; font-size: 14px; transition: all .25s;
}
.dp-btn--primary { background: var(--dp-theme, #3498db); color: #fff; }
.dp-btn--secondary { background: #fff; color: var(--dp-theme, #3498db); border: 2px solid var(--dp-theme, #3498db); }
.dp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

.dp-related { padding: 48px 0; background: linear-gradient(180deg, #f8fafc, #fff); border-top: 1px solid #e5e7eb; }
.dp-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.dp-related__card {
  display: flex; flex-direction: column; padding: 20px; background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; text-decoration: none; color: inherit; transition: all .25s;
}
.dp-related__card:hover { border-color: rgba(52,152,219,.4); box-shadow: 0 8px 24px rgba(52,152,219,.12); transform: translateY(-3px); }
.dp-related__icon { font-size: 28px; margin-bottom: 8px; }
.dp-related__title { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.dp-related__desc { font-size: 13px; color: #6b7280; flex: 1; line-height: 1.55; }
.dp-related__arrow { font-size: 13px; color: #3498db; font-weight: 600; margin-top: 10px; }

/* FAQ */
.dp-faq-list { max-width: 900px; margin: 0 auto; }
.dp-faq-item {
  background: #fff; padding: 28px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  margin-bottom: 20px;
}
.dp-faq-q { font-size: 18px; font-weight: 700; color: #3498db; margin-bottom: 12px; }
.dp-faq-a { font-size: 15px; line-height: 1.85; color: #2c3e50; }

/* Ecosystem / Values feature grids */
.dp-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dp-feature-card {
  background: #fff; padding: 32px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.dp-feature-icon { font-size: 44px; margin-bottom: 16px; }
.dp-feature-title { font-size: 20px; font-weight: 600; color: #2c3e50; margin-bottom: 12px; }
.dp-feature-list { list-style: none; padding: 0; margin: 0; color: #555; line-height: 1.8; font-size: 14px; }
.dp-feature-list li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.dp-feature-list li::before { content: '✓'; position: absolute; left: 0; color: #3498db; font-weight: 700; }

.dp-page-nav {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 32px 0; border-top: 2px solid #ecf0f1; margin-top: 20px;
}
.dp-nav-btn {
  display: inline-block; padding: 10px 22px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 14px; background: #ecf0f1; color: #2c3e50;
}
.dp-nav-btn--primary { background: #3498db; color: #fff; }

@media (max-width: 768px) {
  .dp-hero { padding: 48px 0; }
  .dp-hero__title { font-size: 28px; }
  .dp-section { padding: 40px 0; }
}
