/* ═══ Help & Tutorial Page ═══ */
.help-container { max-width: 800px; }

.help-section {
  background: #181a24;
  border: 1px solid #2a2d40;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.help-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: background 0.15s;
}
.help-section-header:hover { background: #1e2030; }
.help-section-header h3 {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.help-section-header .toggle-icon {
  color: #555;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.help-section.open .toggle-icon { transform: rotate(180deg); }
.help-section-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.7;
}
.help-section.open .help-section-body { display: block; }
.help-section-body h4 {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin: 1.25rem 0 0.5rem;
}
.help-section-body p { margin-bottom: 0.6rem; }
.help-section-body ul { margin: 0.4rem 0 0.8rem 1.5rem; }
.help-section-body li { margin-bottom: 0.3rem; }

/* Step cards */
.help-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.help-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}
.help-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5b6abf;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.help-step-text { flex: 1; }

/* Tip callouts */
.help-tip {
  background: #1a1d2e;
  border-left: 3px solid #5b6abf;
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: #b8bedd;
}

/* Workflow card */
.help-workflow {
  background: #12141c;
  border: 1px solid #2a2d40;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 0.75rem 0;
}
.help-workflow-title {
  color: #7c8cf5;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Pricing table */
.help-pricing {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
}
.help-pricing th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  color: #888;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 1px solid #2a2d40;
}
.help-pricing td {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #1e2030;
}
.help-pricing .price { color: #7c8cf5; font-weight: 600; }
