/* ============================================
   产品概览页 · page-product.css
   ============================================ */

/* 角色卡片网格 */
.v9-role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .v9-role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v9-role-card {
  background: var(--parchment);
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-2);
  overflow: hidden;
}

.v9-role-card__header {
  padding: var(--space-5);
  background: var(--depth-2);
  color: var(--foam);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.v9-role-card__header svg {
  width: 28px;
  height: 28px;
}

.v9-role-card__header h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin: 0;
}

.v9-role-card__body {
  padding: var(--space-5);
  color: var(--parchment-ink);
}

.v9-role-desc {
  font-size: var(--text-sm);
  color: var(--parchment-ink-muted);
  margin-bottom: var(--space-4);
}

.v9-role-card__body h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.v9-role-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
}

.v9-role-card__body li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  border-bottom: 1px dashed var(--parchment-border);
}

.v9-role-card__body li:last-child {
  border-bottom: none;
}

.v9-role-link {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--gold-6);
  font-weight: 500;
}

.v9-note {
  font-size: var(--text-xs);
  color: var(--parchment-ink-muted);
  font-style: italic;
}

/* 四维体系网格 */
.v9-system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .v9-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v9-system-card {
  background: var(--depth-2);
  border: 1px solid var(--depth-3);
  border-radius: var(--radius-2);
  padding: var(--space-5);
}

.v9-system-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-6);
  border-radius: var(--radius-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.v9-system-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--depth-1);
}

.v9-system-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.v9-system-desc {
  font-size: var(--text-sm);
  color: var(--foam-muted);
  margin-bottom: var(--space-4);
}

.v9-system-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v9-system-card li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--foam);
  border-bottom: 1px dashed var(--depth-3);
}

.v9-system-card li:last-child {
  border-bottom: none;
}

/* 业务流程 */
.v9-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.v9-flow__step {
  flex: 1;
  min-width: 140px;
  background: var(--depth-2);
  border: 1px solid var(--depth-3);
  border-radius: var(--radius-2);
  padding: var(--space-4);
}

.v9-flow__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold-6);
  margin-bottom: var(--space-2);
}

.v9-flow__step h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.v9-flow__step p {
  font-size: var(--text-sm);
  color: var(--foam-muted);
  line-height: 1.6;
}

.v9-flow__arrow {
  display: flex;
  align-items: center;
  font-size: var(--text-xl);
  color: var(--gold-6);
}

@media (max-width: 767px) {
  .v9-flow {
    flex-direction: column;
  }
  
  .v9-flow__arrow {
    transform: rotate(90deg);
    justify-content: center;
  }
}
