.page-title-help{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.page-title-help h2{
  margin:0;
  font-size:22px;
  font-weight:700;
  color:#111827;
}

.page-title-help button{
  background:#2563eb;
  color:white;
  border:none;
  border-radius:12px;
  padding:10px 16px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.mob-help-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.55);
  display:none;
  z-index:99999;
}

.mob-help-panel{
  position:fixed;
  top:0;
  right:0;
  width:460px;
  max-width:100%;
  height:100vh;
  background:#f8fafc;
  box-shadow:-20px 0 50px rgba(0,0,0,.25);
  padding:22px;
  overflow-y:auto;
  animation:mobHelpSlide .2s ease;
}

@keyframes mobHelpSlide{
  from{transform:translateX(100%)}
  to{transform:translateX(0)}
}

.mob-help-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:18px;
}

.mob-help-header h3{
  margin:0;
  font-size:20px;
  color:#0f172a;
}

.mob-help-close{
  background:#e5e7eb;
  color:#111827;
  border:none;
  width:36px;
  height:36px;
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
}

.mob-help-search{
  width:100%;
  background:white;
  border:1px solid #dbe3ee;
  border-radius:16px;
  padding:14px 16px;
  font-size:15px;
  margin-bottom:18px;
}

.mob-help-section-title{
  font-size:13px;
  font-weight:800;
  color:#64748b;
  margin:18px 0 10px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.mob-help-grid{
  display:grid;
  gap:12px;
}

.mob-help-card{
  background:white;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:16px;
  cursor:pointer;
  transition:.18s ease;
}

.mob-help-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.mob-help-card strong{
  display:block;
  color:#0f172a;
  font-size:15px;
  margin-bottom:6px;
}

.mob-help-card p{
  margin:0;
  color:#64748b;
  font-size:13px;
  line-height:1.5;
}

.mob-help-card small{
  display:inline-block;
  margin-top:10px;
  background:#eff6ff;
  color:#1d4ed8;
  padding:5px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

.mob-help-article{
  display:none;
}

.mob-help-back{
  background:#e5e7eb;
  color:#111827;
  border:none;
  border-radius:10px;
  padding:9px 12px;
  margin-bottom:14px;
  cursor:pointer;
  font-weight:700;
}

.mob-help-content{
  background:white;
  border-radius:20px;
  padding:20px;
  border:1px solid #e5e7eb;
}

.mob-help-content h2{
  margin-top:0;
  color:#0f172a;
}

.mob-help-content h4{
  margin-bottom:6px;
  color:#111827;
}

.mob-help-content p,
.mob-help-content li{
  color:#374151;
  line-height:1.7;
  font-size:14px;
}

.mob-help-tip{
  background:#eff6ff;
  border-left:4px solid #2563eb;
  padding:12px;
  border-radius:12px;
  margin:14px 0;
  color:#1e3a8a;
  font-size:14px;
}

@media(max-width:768px){
  .page-title-help{
    flex-direction:column;
    align-items:stretch;
  }

  .page-title-help button{
    width:100%;
  }

  .mob-help-panel{
    width:100%;
  }
}