:root {
  --help-bg: #141915;
  --help-card-bg: #1c211f;
  --help-card-border: rgba(122, 241, 130, 0.15);
  --help-green: #7af182;
  --help-text-primary: #e0e8dd;
  --help-text-secondary: #cdd0d5;
  --help-text-muted: #656864;
  --help-heading-font: 'Orbitron', sans-serif;
  --help-body-font: 'Inter', sans-serif;
  --help-radius: 16px;
  --help-radius-sm: 8px;
  --help-border: 1px solid rgba(122, 241, 130, 0.12);
  --help-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* =============================
   BASE PAGE STYLES
   ============================= */

.help-page,
.project-page {
  background-color: var(--help-bg);
  color: var(--help-text-primary);
  font-family: var(--help-body-font);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================
   HEADER / NAV BAR
   ============================= */

.help-nav,
.project-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: #1c211f;
  border-bottom: 1px solid rgba(18, 18, 18, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
}

.help-nav__logo,
.project-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--help-text-primary);
  font-family: var(--help-heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.help-nav__logo img,
.project-nav__logo img {
  height: 28px;
  width: auto;
}

.help-nav__links,
.project-nav__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-nav__links a,
.project-nav__links a {
  color: var(--help-text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}

.help-nav__links a:hover,
.project-nav__links a:hover {
  border-color: var(--help-green);
  color: var(--help-green);
  text-decoration: none;
}

.help-nav__links a.active,
.project-nav__links a.active {
  border-color: var(--help-green);
  color: var(--help-green);
}

/* =============================
   HERO / PAGE HEADER SECTION
   ============================= */

.help-hero,
.project-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
}

.help-hero__tag,
.project-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--help-green);
  background: rgba(122, 241, 130, 0.1);
  border: 1px solid rgba(122, 241, 130, 0.25);
  border-radius: 9999px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 1.2rem;
}

.help-hero__h1,
.project-hero__h1 {
  font-family: var(--help-heading-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--help-text-primary);
  margin: 0 0 1rem;
}

.help-hero__subtitle,
.project-hero__subtitle {
  font-size: 1.1rem;
  color: var(--help-text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================
   MAIN CONTENT CONTAINER
   ============================= */

.help-main,
.project-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  width: 100%;
  box-sizing: border-box;
}

/* =============================
   SECTION HEADINGS
   ============================= */

.help-section-title,
.project-section-title {
  font-family: var(--help-heading-font);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--help-text-primary);
  margin: 3.5rem 0 1.5rem;
  line-height: 1.25;
}

.help-section-title span,
.project-section-title span {
  color: var(--help-green);
}

.help-section-divider,
.project-section-divider {
  width: 48px;
  height: 3px;
  background: var(--help-green);
  border-radius: 9999px;
  margin: 0 0 2rem;
  opacity: 0.7;
}

/* =============================
   Q&A / FAQ LAYOUT
   ============================= */

.help-qa-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.help-qa-item {
  background: var(--help-card-bg);
  border: var(--help-border);
  border-radius: var(--help-radius);
  padding: 1.75rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
}

.help-qa-item:hover {
  border-color: rgba(122, 241, 130, 0.35);
  box-shadow: 0 0 0 1px rgba(122, 241, 130, 0.1), var(--help-shadow);
}

.help-qa-item__q {
  font-family: var(--help-heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--help-text-primary);
  margin: 0 0 0.85rem;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.help-qa-item__q::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: rgba(122, 241, 130, 0.12);
  border: 1px solid rgba(122, 241, 130, 0.3);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--help-green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 1px;
}

.help-qa-item__a {
  color: var(--help-text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 1.75rem;
}

.help-qa-item__a a {
  color: var(--help-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.help-qa-item__a a:hover {
  opacity: 0.8;
}

/* =============================
   PROJECT PAGE SECTIONS
   ============================= */

.project-section {
  margin-bottom: 3.5rem;
}

.project-section__h2 {
  font-family: var(--help-heading-font);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--help-text-primary);
  margin: 0 0 1.2rem;
  line-height: 1.3;
}

.project-section__h2 span {
  color: var(--help-green);
}

.project-section__body {
  color: var(--help-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.project-section__body p {
  margin: 0 0 1rem;
}

.project-section__body p:last-child {
  margin-bottom: 0;
}

.project-section__body a {
  color: var(--help-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.project-section__body a:hover {
  opacity: 0.8;
}

/* Project card grid */

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.project-card {
  background: var(--help-card-bg);
  border: var(--help-border);
  border-radius: var(--help-radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  border-color: rgba(122, 241, 130, 0.3);
  box-shadow: var(--help-shadow);
}

.project-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(122, 241, 130, 0.08);
  border: 1px solid rgba(122, 241, 130, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-card__title {
  font-family: var(--help-heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--help-text-primary);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-card__text {
  color: var(--help-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats / metric row */

.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 2rem 0;
}

.project-stat {
  background: var(--help-card-bg);
  border: var(--help-border);
  border-radius: var(--help-radius);
  padding: 1.25rem 1.75rem;
  flex: 1 1 160px;
  min-width: 140px;
  text-align: center;
}

.project-stat__value {
  font-family: var(--help-heading-font);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--help-text-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.project-stat__label {
  font-size: 0.8rem;
  color: var(--help-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================
   INLINE CONTENT LINKS
   ============================= */

.help-inline-link,
.project-inline-link {
  color: var(--help-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.help-inline-link:hover,
.project-inline-link:hover {
  opacity: 0.78;
  text-decoration: underline;
}

/* =============================
   NAVIGATION / CTA BUTTONS
   ============================= */

.help-btn,
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--help-body-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.help-btn--primary,
.project-btn--primary {
  background: rgba(122, 241, 130, 0.12);
  color: #e0e8dd;
  border-color: var(--help-green);
}

.help-btn--primary:hover,
.project-btn--primary:hover {
  background: var(--help-green);
  color: #121212;
  border-color: var(--help-green);
  text-decoration: none;
}

.help-btn--secondary,
.project-btn--secondary {
  background: transparent;
  color: var(--help-text-secondary);
  border-color: rgba(122, 241, 130, 0.25);
}

.help-btn--secondary:hover,
.project-btn--secondary:hover {
  border-color: var(--help-green);
  color: var(--help-green);
  background: rgba(122, 241, 130, 0.07);
  text-decoration: none;
}

.help-btn--ghost,
.project-btn--ghost {
  background: transparent;
  color: var(--help-text-secondary);
  border-color: transparent;
}

.help-btn--ghost:hover,
.project-btn--ghost:hover {
  color: var(--help-green);
  border-color: rgba(122, 241, 130, 0.2);
  text-decoration: none;
}

/* Button group */

.help-btn-group,
.project-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* =============================
   BREADCRUMB
   ============================= */

.help-breadcrumb,
.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--help-text-muted);
  padding: 1.25rem 1.5rem 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.help-breadcrumb a,
.project-breadcrumb a {
  color: var(--help-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.help-breadcrumb a:hover,
.project-breadcrumb a:hover {
  color: var(--help-green);
}

.help-breadcrumb__sep,
.project-breadcrumb__sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

.help-breadcrumb__current,
.project-breadcrumb__current {
  color: var(--help-text-secondary);
  font-weight: 600;
}

/* =============================
   FOOTER
   ============================= */

.help-footer,
.project-footer {
  border-top: 1px solid rgba(18, 18, 18, 0.5);
  background: #1c211f;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}

.help-footer__inner,
.project-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.help-footer__copy,
.project-footer__copy {
  color: var(--help-text-muted);
  font-size: 0.82rem;
}

.help-footer__links,
.project-footer__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.help-footer__links a,
.project-footer__links a {
  color: var(--help-text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.help-footer__links a:hover,
.project-footer__links a:hover {
  color: var(--help-green);
  border-color: rgba(122, 241, 130, 0.2);
}

/* =============================
   HOME RETURN BUTTON SECTION
   ============================= */

.help-return,
.project-return {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 1rem;
}

.help-return__btn,
.project-return__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--help-body-font);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--help-green);
  background: rgba(122, 241, 130, 0.1);
  color: #e0e8dd;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.help-return__btn:hover,
.project-return__btn:hover {
  background: var(--help-green);
  color: #121212;
  text-decoration: none;
}

.help-return__btn svg,
.project-return__btn svg {
  width: 14px;
  height: auto;
  flex-shrink: 0;
}

/* =============================
   HIGHLIGHT / CALLOUT BOX
   ============================= */

.help-callout,
.project-callout {
  background: rgba(122, 241, 130, 0.05);
  border: 1px solid rgba(122, 241, 130, 0.2);
  border-left: 3px solid var(--help-green);
  border-radius: 0 var(--help-radius-sm) var(--help-radius-sm) 0;
  padding: 1.1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--help-text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

.help-callout strong,
.project-callout strong {
  color: var(--help-text-primary);
}

/* =============================
   LIST STYLES
   ============================= */

.help-list,
.project-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.help-list li,
.project-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--help-text-secondary);
  font-size: 0.97rem;
  line-height: 1.6;
}

.help-list li::before,
.project-list li::before {
  content: "→";
  color: var(--help-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
}

/* =============================
   SECTION SEPARATOR
   ============================= */

.help-hr,
.project-hr {
  border: none;
  border-top: 1px solid rgba(18, 18, 18, 0.5);
  margin: 3rem 0;
  width: 100%;
}

/* =============================
   SECTION COUNT BADGE
   ============================= */

.help-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.5rem;
  background: rgba(122, 241, 130, 0.08);
  border: 1px solid rgba(122, 241, 130, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--help-green);
  letter-spacing: 0.02em;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* =============================
   TECH TAGS / CHIPS
   ============================= */

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(122, 241, 130, 0.07);
  border: 1px solid rgba(122, 241, 130, 0.2);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--help-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =============================
   RESPONSIVE
   ============================= */

@media (max-width: 768px) {
  .help-hero,
  .project-hero {
    padding: 2.5rem 1.25rem 1.5rem;
  }

  .help-main,
  .project-main {
    padding: 0 1rem 4rem;
  }

  .help-qa-item {
    padding: 1.25rem 1.1rem;
  }

  .help-qa-item__a {
    padding-left: 1.1rem;
  }

  .project-cards {
    grid-template-columns: 1fr;
  }

  .project-stats {
    flex-direction: column;
  }

  .project-stat {
    text-align: left;
    padding: 1rem 1.25rem;
  }

  .help-nav,
  .project-nav {
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .help-nav__links,
  .project-nav__links {
    gap: 0.25rem;
  }

  .help-nav__links a,
  .project-nav__links a {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }

  .help-btn-group,
  .project-btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .help-footer__inner,
  .project-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .help-section-title,
  .project-section-title {
    margin-top: 2.5rem;
  }

  .project-section__h2 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .help-hero__h1,
  .project-hero__h1 {
    font-size: 1.5rem;
  }

  .help-qa-item__q {
    font-size: 0.92rem;
  }

  .help-qa-item__a {
    font-size: 0.9rem;
  }

  .project-stat__value {
    font-size: 1.5rem;
  }

  .help-return__btn,
  .project-return__btn {
    width: 100%;
    justify-content: center;
  }

  .help-btn,
  .project-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .help-hero,
  .project-hero {
    padding: 3rem 2rem 2rem;
  }

  .help-main,
  .project-main {
    padding: 0 2rem 5rem;
  }

  .project-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .help-qa-item {
    padding: 2rem 2.25rem;
  }

  .project-section__body {
    font-size: 1.03rem;
  }
}