.help-page {
  background: #f7f2e8;
}

.help-page .help-hero {
  padding: 56px 0 36px;
}

.help-page .help-hero h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.help-page .help-hero__eyebrow {
  margin: 0;
  color: #9a5c26;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-page .help-hero__lead {
  max-width: 860px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.help-page .help-options {
  padding: 18px 0 72px;
}

.help-page .help-content { padding: 0 0 72px; }
.help-page .help-main { display: grid; gap: 22px; }
.help-page .help-section { padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(80, 55, 35, .12); border-radius: 26px; background: #f3ebde; line-height: 1.7; }
.help-page .help-section h2 { margin-top: 0; }
.help-page .faq-list { display: grid; gap: 12px; }
.help-page .faq-list details { padding: 16px 18px; border-radius: 18px; background: #fff4e2; }
.help-page .faq-list summary { cursor: pointer; font-weight: 700; }
.help-page .help-urgent { background: #fff4e2; }
.help-page .help-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.help-page .help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.help-page .help-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.help-page .help-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid rgba(80, 55, 35, .14);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(80, 55, 35, .07);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.help-page .help-tabs__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(80, 55, 35, .11);
}

.help-page .help-tabs__tab:hover,
.help-page .help-tabs__tab:focus-visible {
  border-color: #b16b2c;
  outline: none;
}

.help-page .help-tabs__tab.is-active {
  border-color: #b16b2c;
  background: #b16b2c;
  color: #fff;
}

.help-page .help-tabs__tab-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.help-page .help-tabs__tab.is-active .help-tabs__tab-icon {
  filter: brightness(0) invert(1);
}

.help-page .help-tab-panel[hidden] {
  display: none;
}

.help-page .help-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid rgba(80, 55, 35, .1);
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 12px 28px rgba(80, 55, 35, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.help-page .help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(80, 55, 35, .12);
}

.help-page .help-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f3ebde;
}

.help-page .help-card__icon img {
  width: 30px;
  height: 30px;
}

.help-page .help-card h2 {
  margin: 0 0 12px;
}

.help-page .help-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 20px;
  color: #655c54;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.help-page .help-card .button {
  margin-top: auto;
  min-width: 190px;
}

@media (max-width: 640px) {
  .help-page .help-hero {
    padding: 36px 0 24px;
  }

  .help-page .help-hero__lead {
    font-size: 17px;
  }

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

  .help-page .help-tabs__tab {
    flex: 1 1 150px;
    justify-content: center;
  }

  .help-page .help-card {
    min-height: 300px;
    padding: 28px;
  }

  .help-page .help-card .button {
    width: 100%;
    min-width: 0;
  }

  .help-page .help-actions, .help-page .help-actions .button { width: 100%; }
}
