.help-section { background: var(--bg); padding: 56px 5vw 80px; }
.help-layout  { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }

.help-toc { position: sticky; top: 82px; background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 4px 16px rgba(0,80,140,0.08); flex-direction: column; align-items: stretch; justify-content: flex-start; }
.toc-title { font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }
.toc-link  { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,120,180,0.08); color: var(--muted); font-size: 13.5px; font-weight: 700; text-decoration: none; transition: color 0.15s; }
.toc-link:last-of-type { border-bottom: none; }
.toc-link:hover { color: var(--teal); }
.toc-cta { margin-top: 18px; }

.help-group { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 16px rgba(0,80,140,0.07); margin-bottom: 24px; }
.help-group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 2px solid rgba(0,120,180,0.08); }
.help-group-icon   { font-size: 28px; }
.help-group-header h2 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: clamp(18px, 2.5vw, 24px); color: var(--navy); }

.help-step  { margin-bottom: 20px; padding-left: 16px; border-left: 3px solid rgba(0,150,200,0.2); }
.help-step:last-child { margin-bottom: 0; }
.step-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.step-body  { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.75; }

@media (max-width: 768px) {
  .help-layout { grid-template-columns: 1fr; }
  .help-toc    { position: static; }
}
