/* [project]/app/dashboard/help/help.module.css [app-client] (css) */
.help-module__nXAYjW__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.help-module__nXAYjW__header {
  margin-bottom: 2rem;
}

.help-module__nXAYjW__title {
  color: var(--text-main);
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
}

.help-module__nXAYjW__subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.help-module__nXAYjW__section {
  margin-bottom: 3rem;
}

.help-module__nXAYjW__sectionTitle {
  color: var(--text-main);
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.help-module__nXAYjW__flowCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  overflow-x: auto;
}

.help-module__nXAYjW__flowDiagram {
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  display: flex;
}

.help-module__nXAYjW__flowStep {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 150px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.help-module__nXAYjW__stepNumber {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto .75rem;
  font-weight: 700;
  display: flex;
}

.help-module__nXAYjW__flowStep h3 {
  color: var(--text-main);
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.help-module__nXAYjW__flowStep p {
  color: var(--text-secondary);
  font-size: .875rem;
}

.help-module__nXAYjW__flowArrow {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.help-module__nXAYjW__codeCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.help-module__nXAYjW__explanation {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.help-module__nXAYjW__explanation strong {
  color: var(--primary);
}

.help-module__nXAYjW__codeBlock {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #e2e8f0;
  background: #1e293b;
  margin-bottom: 1rem;
  padding: 1.5rem;
  font-family: Courier New, monospace;
  font-size: .875rem;
  line-height: 1.6;
  overflow-x: auto;
}

.help-module__nXAYjW__techDetails {
  background: var(--bg-subtle);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  line-height: 1.8;
}

.help-module__nXAYjW__exampleBox {
  background: var(--success-bg);
  border: 1px solid var(--success-bg);
  border-radius: var(--radius-md);
  margin-top: 1rem;
  padding: 1.5rem;
}

.help-module__nXAYjW__exampleBox h4 {
  color: var(--success);
  margin-bottom: .75rem;
  font-size: 1rem;
  font-weight: 600;
}

.help-module__nXAYjW__exampleBox p {
  color: var(--text-main);
  margin-bottom: .5rem;
  font-size: .9rem;
}

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

.help-module__nXAYjW__faqList {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.help-module__nXAYjW__faqItem {
  border-bottom: 1px solid var(--border-subtle);
}

.help-module__nXAYjW__faqItem:last-child {
  border-bottom: none;
}

.help-module__nXAYjW__faqQuestion {
  width: 100%;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s;
  display: flex;
}

.help-module__nXAYjW__faqQuestion:hover {
  background: var(--bg-subtle);
}

.help-module__nXAYjW__faqAnswer {
  color: var(--text-secondary);
  padding: 0 1.5rem 1.25rem;
  line-height: 1.6;
}

.help-module__nXAYjW__contactCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.help-module__nXAYjW__contactCard h3 {
  color: var(--text-main);
  margin-bottom: .75rem;
  font-size: 1.25rem;
}

.help-module__nXAYjW__contactCard p {
  color: var(--text-secondary);
  margin-bottom: .5rem;
}

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

.help-module__nXAYjW__contactCard strong {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .help-module__nXAYjW__container {
    padding: 16px;
  }

  .help-module__nXAYjW__title {
    font-size: 1.5rem;
  }

  .help-module__nXAYjW__flowDiagram {
    flex-direction: column;
  }

  .help-module__nXAYjW__flowArrow {
    margin: .5rem 0;
    transform: rotate(90deg);
  }

  .help-module__nXAYjW__codeBlock {
    padding: 1rem;
    font-size: .75rem;
  }
}

/*# sourceMappingURL=app_dashboard_help_help_module_13530529.css.map*/