/* ============================================================
   PAGE ABOUT — 关于我们
   拓跋云 V4
   ============================================================ */

/* about-hero & sh-* styles now in components.css (unified banner system) */

/* ─── Company Intro Card (shared with service pages) ─── */
.service-intro-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-intro-card .sic-text h3 { font-size: 22px; margin-bottom: 12px; }
.service-intro-card .sic-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.service-intro-card .sic-highlights { display: flex; gap: 32px; margin-top: 20px; }
.service-intro-card .sic-highlight .num { font-size: 28px; font-weight: 700; color: var(--red-500); font-family: var(--font-en); }
.service-intro-card .sic-highlight .label { font-size: 13px; color: var(--text-tertiary); }
.service-intro-card .sic-image { width: 100%; border-radius: var(--radius-lg); }

/* ─── Founder Profile ─── */
.founder-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.founder-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-name { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.founder-title { font-size: 14px; color: var(--red-500); font-weight: 600; margin-bottom: 16px; }
.founder-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.9; }
.founder-bio p { margin-bottom: 12px; }
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red-500), var(--gold-500));
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--red-200);
}
.timeline-item .year { font-size: 20px; font-weight: 700; color: var(--red-500); font-family: var(--font-en); margin-bottom: 4px; }
.timeline-item .event { font-size: 14px; color: var(--text-secondary); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-card .vc-icon { font-size: 32px; margin-bottom: 16px; color: var(--red-500); display: flex; align-items: center; justify-content: center; }
.value-card .vc-icon svg { width: 36px; height: 36px; flex-srink: 0; }
.value-card h4 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* Stats banner in about */
.about-stats {
  background: linear-gradient(135deg, var(--red-700), var(--red-500));
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.about-stats .stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.about-stats .as-item .num { font-size: 36px; font-weight: 700; font-family: var(--font-en); }
.about-stats .as-item .label { font-size: 14px; opacity: 0.9; margin-top: 4px; }

/* responsive rules moved to responsive-mobile.css */
