/* ============================================================
 * about.css
 * 上海禹亮信息科技有限公司 - 关于禹亮 list 汇总页专属样式
 * 设计语言完全对齐 service.css / company.css —— 深色调 + 青蓝高亮
 * ============================================================ */

#about_page {
  --abt-bg: #ffffff;
  --abt-bg-2: #f8fafc;
  --abt-bg-3: #f1f5f9;
  --abt-surface: #ffffff;
  --abt-surface-hover: #f8fafc;
  --abt-border: #e2e8f0;
  --abt-border-strong: rgba(0,212,255,0.4);
  --abt-text: #1e293b;
  --abt-text-2: #334155;
  --abt-text-3: #475569;
  --abt-text-4: #94a3b8;
  --abt-accent: #00d4ff;
  --abt-accent-2: #0ea5e9;
  --abt-accent-soft: rgba(0,212,255,0.08);
  --abt-radius: 12px;
  --abt-radius-lg: 16px;
  --abt-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --abt-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
  --abt-shadow-glow: 0 8px 32px rgba(0, 212, 255, 0.18);

  background: var(--abt-bg);
  color: var(--abt-text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC",
               "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

#about_page .containe {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 通用章节标题（与 service.css / company.css 一致） ============ */
#about_page .svc_head {
  text-align: center;
  margin-bottom: 56px;
}
#about_page .svc_head .svc_eyebrow,
#about_page .svc_eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--abt-accent);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--abt-accent-soft);
  border-radius: 4px;
}
#about_page .svc_eyebrow.on_dark {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}
#about_page .svc_head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--abt-text);
  letter-spacing: -0.01em;
}
#about_page .svc_head p {
  font-size: 16px;
  color: var(--abt-text-3);
  max-width: 720px;
  margin: 0 auto;
}


/* ============ Section 1: 引子简介带 ============ */
#about_page .abt_intro {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--abt-bg) 0%, var(--abt-bg-2) 100%);
  border-bottom: 1px solid var(--abt-border);
}
#about_page .abt_intro_inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
#about_page .abt_intro_inner h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--abt-text);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
#about_page .abt_intro_inner p {
  font-size: 17px;
  color: var(--abt-text-3);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ============ Section 2: 三张子页面导航卡片 ============ */
#about_page .abt_nav {
  padding: 80px 0 80px;
  background: var(--abt-bg);
}
#about_page .abt_nav_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
#about_page .abt_nav_card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px 32px 32px;
  background: var(--abt-surface);
  border: 1px solid var(--abt-border);
  border-radius: var(--abt-radius-lg);
  text-decoration: none;
  color: var(--abt-text);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  overflow: hidden;
}
#about_page .abt_nav_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--abt-accent) 0%, var(--abt-accent-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#about_page .abt_nav_card:hover {
  transform: translateY(-6px);
  border-color: var(--abt-border-strong);
  box-shadow: var(--abt-shadow-glow);
}
#about_page .abt_nav_card:hover::before {
  transform: scaleX(1);
}

#about_page .abt_nav_icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: var(--abt-accent-soft);
  color: var(--abt-accent);
  transition: background 0.3s ease, color 0.3s ease;
}
#about_page .abt_nav_icon svg {
  width: 32px;
  height: 32px;
}
#about_page .abt_nav_card:hover .abt_nav_icon {
  background: linear-gradient(135deg, var(--abt-accent) 0%, var(--abt-accent-2) 100%);
  color: #ffffff;
}

#about_page .abt_nav_eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--abt-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
#about_page .abt_nav_title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--abt-text);
  letter-spacing: -0.01em;
}
#about_page .abt_nav_desc {
  font-size: 14.5px;
  color: var(--abt-text-3);
  line-height: 1.75;
  margin: 0 0 20px;
  flex-grow: 1;
}

#about_page .abt_nav_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
#about_page .abt_nav_meta .meta_item {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--abt-text-3);
  background: var(--abt-bg-2);
  border: 1px solid var(--abt-border);
  border-radius: 999px;
}

#about_page .abt_nav_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--abt-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--abt-accent);
  transition: gap 0.3s ease;
}
#about_page .abt_nav_more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
#about_page .abt_nav_card:hover .abt_nav_more {
  gap: 10px;
}
#about_page .abt_nav_card:hover .abt_nav_more svg {
  transform: translateX(2px);
}


/* ============ Section 3: 数据带 ============ */
#about_page .abt_stats {
  padding: 60px 0 60px;
  background: linear-gradient(180deg, var(--abt-bg-2) 0%, var(--abt-bg-3) 100%);
  border-top: 1px solid var(--abt-border);
  border-bottom: 1px solid var(--abt-border);
}
#about_page .abt_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#about_page .abt_stat_item {
  text-align: center;
  padding: 24px 16px;
  background: var(--abt-surface);
  border-radius: var(--abt-radius);
  border: 1px solid var(--abt-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#about_page .abt_stat_item:hover {
  transform: translateY(-3px);
  border-color: var(--abt-border-strong);
  box-shadow: var(--abt-shadow-md);
}
#about_page .abt_stat_value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--abt-accent) 0%, var(--abt-accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
#about_page .abt_stat_value small {
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
  -webkit-text-fill-color: var(--abt-text-3);
}
#about_page .abt_stat_label {
  font-size: 13.5px;
  color: var(--abt-text-3);
  font-weight: 500;
}





/* ============================================================
 * 响应式适配
 * ============================================================ */

/* 平板 */
@media (max-width: 1024px) {
  #about_page .abt_nav_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about_page .abt_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #about_page .abt_cta_box {
    padding: 48px 40px;
  }
}

/* 移动端 */
@media (max-width: 768px) {
  #about_page .abt_intro {
    padding: 56px 0 44px;
  }
  #about_page .abt_intro_inner h1 {
    font-size: 26px;
  }
  #about_page .abt_intro_inner p {
    font-size: 15px;
  }

  #about_page .abt_nav {
    padding: 56px 0 56px;
  }
  #about_page .svc_head {
    margin-bottom: 40px;
  }
  #about_page .abt_nav_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #about_page .abt_nav_card {
    padding: 32px 24px 24px;
  }
  #about_page .abt_nav_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
  #about_page .abt_nav_icon svg {
    width: 28px;
    height: 28px;
  }
  #about_page .abt_nav_title {
    font-size: 20px;
  }

  #about_page .abt_stats {
    padding: 44px 0 44px;
  }
  #about_page .abt_stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  #about_page .abt_stat_item {
    padding: 20px 12px;
  }

  #about_page .abt_cta {
    padding: 56px 0;
  }
  #about_page .abt_cta_box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 40px 28px;
    gap: 28px;
  }
  #about_page .abt_cta_actions {
    width: 100%;
  }
  #about_page .abt_cta_btn {
    width: 100%;
    min-width: 0;
  }
}

/* 小屏 */
@media (max-width: 480px) {
  #about_page .abt_stats_grid {
    grid-template-columns: 1fr;
  }
  #about_page .abt_intro_inner h1 {
    font-size: 24px;
  }
  #about_page .abt_cta_text h2 {
    font-size: 22px;
  }
}
