.help-lead {
  margin-bottom: 1.5rem;
  font-size: 1.15em;
  line-height: 1.65;
}

.help-header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.help-summary {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-left: 4px solid var(--green-primary);
  border-radius: 0.75rem;
  background: var(--green-light);
}

.help-summary p:last-child { margin-bottom: 0; }

.help-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin: 1.5rem 0 0;
}

.help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75em 1.25em;
  border-radius: 0.85em;
  background: var(--purple-primary);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.help-button:hover { filter: brightness(1.08); }
.help-button:focus-visible {
  outline: 3px solid var(--green-primary);
  outline-offset: 3px;
}

.help-action-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9em;
}

.help-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.help-list li {
  margin: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--bg-color-accent);
}

.help-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.help-steps li {
  margin: 0;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--color) 12%, transparent);
  border-radius: 0.85rem;
}

.help-step-number {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: var(--purple-primary);
  color: #fff;
  font-weight: 800;
}

.help-contact {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.85rem;
  background: var(--bg-color-accent);
}

.help-contact p { margin-bottom: 0.5rem; }
.help-contact p:last-child { margin-bottom: 0; }

@media (max-width: 650px) {
  .help-steps { grid-template-columns: 1fr; }
  .help-button { width: 100%; }
  .help-action-note { width: 100%; text-align: center; }
}
