.page-faq {
  --faq-bg: var(--warm-paper);
  --faq-card: #FFFFFF;
  --faq-dark: var(--deep-blue);
  --faq-ink: var(--ink-blue);
  --faq-orange: var(--orange-accent);
  --faq-gold: var(--gold-accent);
  --faq-line: var(--gray-line);
  --faq-text: var(--text-primary);
  position: relative;
  background: var(--faq-bg);
  color: var(--faq-text);
  min-height: 100vh;
  overflow-x: hidden;
}

.help-section[id],
.help-compare[id] {
  scroll-margin-top: 80px;
}

/* ===== Hero ===== */
.help-hero {
  position: relative;
  background: linear-gradient(140deg, var(--faq-dark) 0%, var(--faq-ink) 60%, var(--faq-dark) 100%);
  color: var(--text-secondary);
  padding: 2.5rem 1.25rem 3rem;
  border-bottom: 4px solid var(--faq-orange);
  overflow: hidden;
}

.help-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--faq-orange) 0%, var(--faq-gold) 30%, transparent 30%);
  pointer-events: none;
  z-index: 3;
}

.help-hero::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 14px;
  height: 14px;
  background: var(--faq-orange);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.help-hero__orb {
  position: absolute;
  right: -70px;
  top: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(232, 163, 61, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.help-hero__orb::after {
  content: "";
  position: absolute;
  right: 46px;
  bottom: 24px;
  width: 8px;
  height: 8px;
  background: var(--faq-gold);
  transform: rotate(45deg);
}

.help-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.help-hero__figure {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 2rem auto 0;
}

.help-hero__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.help-hero__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 163, 61, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--faq-gold);
}

.help-hero__badge strong {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.help-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgba(224, 225, 221, 0.75);
  margin-bottom: 1.5rem;
}

.help-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

.help-breadcrumb__link:hover {
  color: var(--faq-orange);
}

.help-breadcrumb__current {
  color: var(--faq-gold);
}

.help-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faq-gold);
}

.help-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-secondary);
}

.help-hero__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(224, 225, 221, 0.9);
}

.help-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0.9rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(224, 225, 221, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.help-search:focus-within {
  border-color: rgba(252, 163, 17, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.help-search__icon {
  flex-shrink: 0;
  color: var(--faq-gold);
}

.help-search__input {
  flex: 1;
  min-width: 180px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
}

.help-search__input::placeholder {
  color: rgba(224, 225, 221, 0.65);
}

.help-search__hint {
  width: 100%;
  padding-left: 0.25rem;
  font-size: 0.75rem;
  color: rgba(224, 225, 221, 0.7);
}

.help-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.help-tags__link {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.1);
  border: 1px solid rgba(224, 225, 221, 0.3);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.help-tags__link:hover {
  background: var(--faq-orange);
  border-color: var(--faq-orange);
  color: var(--faq-dark);
}

.help-tags__link:focus-visible,
.help-card__link:focus-visible,
.help-search__input:focus-visible,
.help-qa__question:focus-visible {
  outline: 2px solid var(--faq-orange);
  outline-offset: 2px;
}

/* ===== Section Shell ===== */
.help-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.help-section__head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.help-section__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: rgba(252, 163, 17, 0.12);
  color: var(--faq-orange);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.help-section__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
}

.help-section__desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--faq-line);
}

/* ===== Accordion ===== */
.help-accordion {
  display: grid;
  gap: 0.85rem;
  max-width: 880px;
}

.help-qa {
  background: var(--faq-card);
  border: 1px solid rgba(119, 141, 169, 0.25);
  border-left: 4px solid var(--faq-orange);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.help-qa:hover {
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.1);
}

.help-qa[open] {
  border-left-color: var(--faq-gold);
  box-shadow: 0 12px 32px rgba(10, 25, 47, 0.12);
}

.help-qa__question {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1rem 3rem 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--faq-text);
  transition: background var(--transition-base);
}

.help-qa__question::-webkit-details-marker {
  display: none;
}

.help-qa__question:hover {
  background: rgba(252, 163, 17, 0.045);
}

.help-qa__question::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--faq-orange);
  transition: transform var(--transition-base);
}

.help-qa[open] .help-qa__question::after {
  content: "–";
  transform: translateY(-50%);
}

.help-qa__preview {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--faq-line);
  transition: color var(--transition-base);
}

.help-qa__question:hover .help-qa__preview {
  color: var(--faq-orange);
}

.help-qa__answer {
  padding: 0.85rem 1.25rem 1.15rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--faq-text);
  border-top: 1px dashed rgba(119, 141, 169, 0.3);
}

/* ===== Cards ===== */
.help-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.help-card {
  position: relative;
  background: var(--faq-card);
  border: 1px solid rgba(119, 141, 169, 0.2);
  border-top: 3px solid var(--faq-gold);
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 2px 10px rgba(10, 25, 47, 0.04);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(10, 25, 47, 0.1);
}

.help-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  background: var(--faq-dark);
  color: var(--faq-gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
}

.help-card__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
}

.help-card__text {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.help-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--faq-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.help-card__link:hover {
  color: var(--faq-dark);
}

/* ===== Compare Dark Block ===== */
.help-compare {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(145deg, var(--faq-dark) 0%, var(--faq-ink) 100%);
  border: 1px solid rgba(224, 225, 221, 0.08);
  border-radius: 24px;
  color: var(--text-secondary);
  border-top: 2px solid var(--faq-gold);
}

.help-compare .help-section__title {
  color: var(--text-secondary);
}

.help-compare .help-section__desc {
  color: rgba(224, 225, 221, 0.7);
}

.help-compare__body {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.help-compare__figure {
  margin: 0;
}

.help-compare__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.help-compare__figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(224, 225, 221, 0.7);
}

.help-compare__table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(224, 225, 221, 0.1);
}

.help-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.help-table th,
.help-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(224, 225, 221, 0.12);
}

.help-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--faq-gold);
  font-weight: 600;
}

.help-table td {
  color: var(--text-secondary);
}

.help-table tr:last-child th,
.help-table tr:last-child td {
  border-bottom: none;
}

/* ===== CTA ===== */
.help-contact-cta {
  padding-top: 1rem;
}

.help-cta {
  position: relative;
  background: var(--faq-dark);
  border-radius: 24px;
  border-top: 2px solid var(--faq-orange);
  color: var(--text-secondary);
  padding: 2.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.help-cta::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(232, 163, 61, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.help-cta::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--faq-gold);
  transform: rotate(45deg);
  pointer-events: none;
}

.help-cta__title {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.help-cta__text {
  max-width: 560px;
  margin: 0 auto 1.4rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(224, 225, 221, 0.85);
}

.help-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.help-cta__actions .btn {
  text-decoration: none;
}

/* ===== Tablet ===== */
@media (min-width: 720px) {
  .help-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .help-hero {
    padding: 3rem 2rem 3.5rem;
  }

  .help-qa__question {
    padding: 1.1rem 3.5rem 1.1rem 1.5rem;
  }
}

/* ===== Desktop ===== */
@media (min-width: 960px) {
  .help-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem 5.5rem;
  }

  .help-hero__content {
    flex: 1 1 58%;
    max-width: 720px;
    margin: 0 auto;
  }

  .help-hero__figure {
    flex: 1 1 42%;
    max-width: 500px;
    margin: 0 auto 0 0;
  }

  .help-hero__badge {
    position: absolute;
    left: 2rem;
    bottom: 1.5rem;
    margin: 0;
  }

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

  .help-compare__body {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 2rem;
  }

  .help-section {
    padding: 3.5rem 2rem;
  }

  .help-contact-cta {
    padding-top: 1.5rem;
  }
}

/* ===== Wide ===== */
@media (min-width: 1200px) {
  .help-hero {
    padding: 5rem 3rem 6rem;
    gap: 4rem;
  }

  .help-section {
    padding: 4rem 2.5rem;
  }

  .help-cta {
    padding: 3rem 2rem;
  }
}
