.help-page {
  overflow: hidden;
}

.help-page h1,
.help-page h2,
.help-page h3,
.help-page p {
  margin-top: 0;
}

.help-hero {
  position: relative;
  padding: calc(var(--landing-header-height) + 72px) 0 48px;
  text-align: center;
  overflow: hidden;
}

.help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(228, 212, 106, 0.05), transparent 70%);
  pointer-events: none;
}

.help-hero::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translateX(-50%);
  background: rgba(228, 212, 106, 0.08);
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.help-hero .landing-shell {
  position: relative;
  z-index: 1;
}

.help-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #e4d46a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.help-hero h1 {
  margin: 0 auto 18px;
  max-width: 16ch;
  color: #f7f4ec;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.help-hero h1 span {
  color: #e4d46a;
}

.help-hero__lead {
  margin: 0 auto;
  max-width: 42rem;
  color: #aaa9a5;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.help-section {
  padding: 48px 0 24px;
}

.help-section__header {
  margin-bottom: 28px;
  text-align: center;
}

.help-section__header h2 {
  margin-bottom: 10px;
  color: #f7f4ec;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.help-section__header p {
  margin: 0;
  color: #aaa9a5;
}

.help-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.help-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #cfcbc0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.help-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.help-tab:hover,
.help-tab:focus-visible {
  color: #f7f4ec;
  border-color: rgba(228, 212, 106, 0.35);
  transform: translateY(-1px);
}

.help-tab.is-active {
  background: #e4d46a;
  border-color: #e4d46a;
  color: #111;
}

.help-panel {
  display: grid;
  gap: 16px;
}

.help-intro,
.help-cta-card,
.help-contact__card,
.help-channel,
.help-more-help {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.help-intro {
  padding: 28px 28px 24px;
}

.help-intro h3 {
  margin-bottom: 12px;
  color: #f7f4ec;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 800;
}

.help-intro p {
  margin-bottom: 12px;
  color: #aaa9a5;
  line-height: 1.7;
}

.help-intro__prompt {
  margin: 18px 0 0;
  color: #e4d46a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.help-accordion {
  display: grid;
  gap: 12px;
}

.help-accordion__item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.help-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #f7f4ec;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.help-accordion__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #e4d46a;
  transition: transform 0.2s ease;
}

.help-accordion__item.is-open .help-accordion__chevron {
  transform: rotate(180deg);
}

.help-accordion__content {
  display: none;
  padding: 0 22px 20px;
  color: #c4c2bb;
  line-height: 1.7;
}

.help-accordion__item.is-open .help-accordion__content {
  display: block;
}

.help-accordion__content p {
  margin-bottom: 12px;
}

.help-accordion__content ul,
.help-accordion__content ol {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.help-accordion__content li {
  margin-bottom: 6px;
}

.help-accordion__content a,
.help-accordion__content button.help-inline-link {
  color: #e4d46a;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.help-more-help {
  padding: 22px 24px;
}

.help-more-help p {
  margin: 0;
  color: #aaa9a5;
  line-height: 1.7;
}

.help-cta-card {
  margin-top: 28px;
  padding: 42px 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 212, 106, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.035);
}

.help-cta-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4d46a;
  color: #111;
}

.help-cta-card__icon svg {
  width: 28px;
  height: 28px;
}

.help-cta-card h2 {
  margin-bottom: 12px;
  color: #f7f4ec;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.help-cta-card p {
  margin: 0 auto 22px;
  max-width: 36rem;
  color: #aaa9a5;
  line-height: 1.7;
}

.help-contact {
  padding: 56px 0 24px;
  text-align: center;
}

.help-contact h2 {
  margin-bottom: 10px;
  color: #f7f4ec;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
}

.help-contact > .landing-shell > p {
  margin: 0 auto 28px;
  color: #aaa9a5;
}

.help-contact__card {
  padding: 28px;
  text-align: left;
}

.help-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.help-field {
  display: grid;
  gap: 8px;
}

.help-field--full {
  grid-column: 1 / -1;
}

.help-field label {
  color: #9f9c94;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.help-field input,
.help-field select,
.help-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  color: #f7f4ec;
  font: inherit;
}

.help-field textarea {
  min-height: 140px;
  resize: vertical;
}

.help-field input::placeholder,
.help-field textarea::placeholder {
  color: #7d7a72;
}

.help-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #e4d46a 50%),
    linear-gradient(135deg, #e4d46a 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.help-contact__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: #e4d46a;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.help-contact__submit:hover,
.help-contact__submit:focus-visible {
  transform: translateY(-1px);
  opacity: 0.95;
}

.help-contact__submit svg {
  width: 18px;
  height: 18px;
}

.help-contact__success {
  padding: 56px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.help-contact__success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: #e4d46a;
}

.help-contact__success-icon svg {
  width: 52px;
  height: 52px;
}

.help-contact__success h3 {
  margin-bottom: 10px;
  color: #f7f4ec;
  font-size: 1.6rem;
  font-weight: 800;
}

.help-contact__success p {
  margin: 0 auto 18px;
  max-width: 22rem;
  color: #aaa9a5;
}

.help-contact__reset {
  border: 0;
  background: none;
  color: #e4d46a;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.help-channels {
  padding: 48px 0 80px;
}

.help-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.help-channel {
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.help-channel__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #111;
}

.help-channel__icon svg {
  width: 22px;
  height: 22px;
}

.help-channel__icon--whatsapp {
  background: #25d366;
}

.help-channel__icon--email {
  background: #e4d46a;
}

.help-channel__icon--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
  color: #fff;
}

.help-channel__icon--youtube {
  background: #ff0000;
  color: #fff;
}

.help-channel__label {
  margin: 8px 0 0;
  color: #9f9c94;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-channel strong {
  color: #f7f4ec;
  font-size: 1.05rem;
}

.help-channel p {
  margin: 0;
  color: #aaa9a5;
  line-height: 1.5;
}

.help-channel a {
  color: #e4d46a;
  text-decoration: none;
  font-weight: 700;
}

.help-channel a:hover,
.help-channel a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .help-channels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .help-hero {
    padding-top: calc(var(--landing-header-height-mobile, 78px) + 36px);
  }

  .help-intro,
  .help-contact__card,
  .help-cta-card,
  .help-more-help {
    padding-left: 18px;
    padding-right: 18px;
  }

  .help-contact__grid {
    grid-template-columns: 1fr;
  }

  .help-channels__grid {
    grid-template-columns: 1fr;
  }

  .help-tab {
    width: 100%;
    justify-content: center;
  }

  .help-accordion__trigger {
    font-size: 1rem;
  }
}
