/* ==========================================================================
   关于我们 · 仅本页样式（公共变量、背景/顶栏/页脚复用 styles.css）
   薄荷奶绿柔和
   ========================================================================== */

.about {
  position: relative; z-index: 1; flex: 1;
  width: 100%; max-width: 860px; margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 32px) 52px;
}

/* -------------------------- 页头 -------------------------- */
.about-hero { text-align: center; padding: clamp(16px, 4vh, 40px) 0 10px; }
.about-badge {
  display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 14px; font-size: 40px;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 26px; box-shadow: var(--shadow);
}
.about-title { margin: 0 0 8px; font-size: clamp(26px, 5vw, 38px); line-height: 1.2; color: var(--mint-deep); }
.about-lead { margin: 0 auto; max-width: 30em; color: var(--ink-2); }

/* -------------------------- 分节 -------------------------- */
.about-section { margin-top: 34px; }
.about-stitle { position: relative; margin: 0 0 14px; padding-left: 16px; font-size: 18px; line-height: 1.4; color: var(--ink); }
.about-stitle::before {
  content: ""; position: absolute; left: 0; top: 0.15em; bottom: 0.15em; width: 8px; border-radius: 4px; background: var(--grad);
}
.about-text { margin: 0 0 12px; color: var(--ink-2); }
.about-text:last-child { margin-bottom: 0; }

/* -------------------------- 能力卡片 -------------------------- */
.about-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.about-card {
  padding: 20px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--mint); }
.about-card-icon { display: grid; place-items: center; width: 48px; height: 48px; font-size: 23px; background: var(--bg-soft); border-radius: 14px; }
.about-card h3 { margin: 12px 0 6px; font-size: 15.5px; color: var(--ink); font-family: var(--font-title); }
.about-card p { margin: 0; color: var(--ink-2); font-size: 13.5px; }

/* -------------------------- 合规提示 -------------------------- */
.about-notice {
  margin: 0; padding: 20px 22px; background: #fffaea; border: 1px solid #f2e2b0; border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); color: var(--ink-2); font-size: 13.5px;
}
.about-notice strong { color: var(--mint-deep); }

/* -------------------------- 联系方式 -------------------------- */
.about-contact {
  margin: 0; padding: 0; list-style: none; border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: #fff;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.about-citem { display: flex; align-items: baseline; gap: 16px; padding: 15px 22px; }
.about-citem + .about-citem { border-top: 1px solid var(--line); }
.about-clabel { flex: none; width: 5.2em; color: var(--ink-3); font-size: 13px; font-weight: 700; }
.about-cvalue { color: var(--ink); text-decoration: none; overflow-wrap: anywhere; }
a.about-cvalue { color: var(--mint-deep); }
a.about-cvalue:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .about-cards { grid-template-columns: 1fr; }
  .about-citem { flex-direction: column; gap: 3px; padding: 13px 16px; }
  .about-clabel { width: auto; }
}
