/* ==========================================================================
   VPNBu · help.css
   帮助中心页专属:分类分组头(编号槽 + 标题)、分组间距、相关入口卡
   ========================================================================== */

.help-group{
  padding-top:38px;
  padding-bottom:6px;
}
.help-group + .help-group{
  border-top:1px solid var(--border);
  margin-top:26px;
}
.help-group-head{
  display:flex;
  align-items:flex-start;
  gap:18px;
  max-width:900px;
  margin:0 auto 22px;
}
.help-num{
  flex:0 0 52px;
  width:52px;height:52px;
  border-radius:16px;
  background:var(--bg-panel);
  border:1px solid var(--border);
  box-shadow:inset 0 1px 0 var(--hi-line),0 14px 28px -22px var(--accent-shadow);
  color:var(--accent-dark);
  font-family:var(--font-mono);
  font-size:15px;
  font-weight:700;
  letter-spacing:.02em;
  display:flex;
  align-items:center;
  justify-content:center;
}
.help-group-head > div{min-width:0}
.help-group-head h2{margin:2px 0 6px}
.help-group-head p{
  margin:0;
  font-size:14.5px;
  color:var(--text-muted);
  line-height:1.6;
}
.help-group .faq-list{margin-top:0}

/* 相关入口卡 */
.help-links{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.help-link-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:var(--r-card);
  padding:22px 20px 18px;
  box-shadow:inset 0 1px 0 var(--hi-line),0 22px 44px -28px var(--accent-shadow);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s;
}
.help-link-card:hover{
  transform:translateY(-3px);
  box-shadow:inset 0 1px 0 var(--hi-line),0 28px 50px -26px var(--accent-shadow);
}
.help-link-ic{
  width:44px;height:44px;
  border-radius:14px;
  background:var(--mist);
  color:var(--accent-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.help-link-ic svg{width:23px;height:23px}
.help-link-t{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:700;
  letter-spacing:-.01em;
  color:var(--text);
}
.help-link-n{
  font-size:13.5px;
  line-height:1.6;
  color:var(--text-muted);
}
.help-link-card .card-foot{margin-top:auto}

@media (max-width:980px){
  .help-links{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:640px){
  .help-links{grid-template-columns:1fr}
  .help-group-head{gap:14px;margin-bottom:18px}
  .help-num{flex-basis:44px;width:44px;height:44px;border-radius:13px;font-size:13.5px}
  .help-group{padding-top:30px}
}