.help-body {
  background: #f7f9fc;
}

.help-header .nav-wrap {
  justify-content: flex-start;
}

.help-header .help-nav {
  margin-left: auto;
}

.help-brand-divider {
  width: 1px;
  height: 22px;
  background: #dce1e8;
}

.help-brand-title {
  color: #4c5562;
  font-size: 15px;
  font-weight: 620;
  text-decoration: none;
}

.help-hero {
  padding: 148px 0 82px;
  background:
    radial-gradient(circle at 86% 8%, rgba(23, 105, 224, 0.15), transparent 28rem),
    linear-gradient(180deg, #fff, #f4f8ff);
}

.help-hero-inner {
  max-width: 860px;
  text-align: center;
}

.help-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.help-hero-inner > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.help-search {
  display: grid;
  max-width: 760px;
  min-height: 66px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  margin: 36px auto 0;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(23, 105, 224, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 55px rgba(31, 76, 138, 0.11);
}

.help-search > span {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
  transform: rotate(-20deg);
}

.help-search input {
  width: 100%;
  height: 64px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 15px;
}

.help-search input::placeholder {
  color: #9aa1ab;
}

.help-search button {
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.popular-searches span,
.popular-searches button {
  color: #747d89;
  font-size: 11px;
}

.popular-searches button {
  padding: 3px 7px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.popular-searches button:hover {
  color: var(--blue);
  background: rgba(23, 105, 224, 0.07);
}

.help-content-section {
  padding: 82px 0 100px;
}

.help-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.help-toolbar h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.045em;
}

.help-toolbar > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.category-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  color: #4d5662;
  background: #fff;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.category-chip strong {
  font-size: 11px;
}

.category-chip span {
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  color: #7c8490;
  background: #f0f2f5;
  font-size: 9px;
}

.category-chip:hover,
.category-chip[aria-pressed="true"] {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.category-chip[aria-pressed="true"] span,
.category-chip:hover span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.help-results-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  margin-top: 34px;
}

.help-guide-card {
  position: sticky;
  top: 94px;
  padding: 28px;
  border: 1px solid rgba(23, 105, 224, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(65, 142, 255, 0.18), transparent 12rem),
    #eef5ff;
}

.help-guide-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 740;
}

.help-guide-card h2 {
  margin: 20px 0 10px;
  font-size: 23px;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.help-guide-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.help-guide-card .button {
  min-height: 44px;
  font-size: 12px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.help-article-card {
  display: grid;
  min-height: 230px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 32, 51, 0.045);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.help-article-card:hover {
  border-color: rgba(23, 105, 224, 0.30);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.help-article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.help-article-top span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 720;
}

.help-article-top small {
  color: #8a929d;
  font-size: 9px;
}

.help-article-card h3 {
  margin: 34px 0 8px;
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.help-article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.help-article-card > strong {
  align-self: end;
  margin-top: 24px;
  color: var(--blue);
  font-size: 11px;
}

.no-results {
  max-width: 650px;
  margin: 60px auto 0;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.no-results > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 730;
}

.no-results h2 {
  margin: 14px 0 8px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.no-results p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.help-support {
  padding: 0 0 90px;
}

.help-support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 48px 54px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0, rgba(104, 173, 255, 0.34), transparent 23rem),
    #0f4fae;
}

.help-support-card h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.045em;
}

.help-support-card p:not(.eyebrow) {
  max-width: 670px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.help-support-card .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.help-support-actions {
  display: flex;
  gap: 10px;
}

.help-support-actions .button {
  white-space: nowrap;
}

.help-support-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.help-support-actions .button-primary {
  color: var(--blue);
  background: #fff;
  box-shadow: none;
}

.help-footer {
  background: #f7f9fc;
}

/* Article */
.article-main {
  min-height: 70vh;
  padding: 112px 0 90px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  color: #87909c;
  font-size: 11px;
}

.breadcrumb a {
  color: #65707d;
  text-decoration: none;
}

.breadcrumb span:last-child {
  max-width: 520px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  align-items: start;
  justify-content: space-between;
  gap: 80px;
}

.article-header {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.article-category {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.article-header h1 {
  max-width: 720px;
  margin: 24px 0 16px;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1.13;
}

.article-header > p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  color: #939ba5;
  font-size: 10px;
}

.article-sections {
  counter-reset: article-section;
}

.article-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: article-section;
}

.article-section h2 {
  position: relative;
  margin: 0 0 22px;
  padding-left: 42px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.article-section h2::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 10px;
  font-weight: 750;
  content: counter(article-section, decimal-leading-zero);
}

.article-section > p {
  margin: 0 0 15px;
  color: #4e5865;
  font-size: 15px;
  line-height: 1.85;
}

.article-steps,
.article-bullets {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-steps {
  counter-reset: steps;
}

.article-steps li,
.article-bullets li {
  position: relative;
  min-height: 42px;
  padding: 9px 12px 9px 52px;
  border-radius: 13px;
  color: #46505d;
  background: #f6f8fb;
  font-size: 13px;
  line-height: 1.75;
}

.article-steps li {
  counter-increment: steps;
}

.article-steps li::before,
.article-bullets li::before {
  position: absolute;
  top: 9px;
  left: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #e5f0ff;
  font-size: 9px;
  font-weight: 760;
}

.article-steps li::before {
  content: counter(steps, decimal-leading-zero);
}

.article-bullets li::before {
  content: "✓";
}

.article-callout {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(23, 105, 224, 0.15);
  border-radius: 15px;
  background: #f1f7ff;
}

.article-callout strong {
  color: var(--blue);
  font-size: 11px;
}

.article-callout p {
  margin: 0;
  color: #4e5966;
  font-size: 12px;
}

.article-callout.warning {
  border-color: rgba(214, 139, 25, 0.22);
  background: #fff8eb;
}

.article-callout.warning strong {
  color: #b06d08;
}

.article-callout.note {
  border-color: #dfe3e9;
  background: #f5f6f8;
}

.article-callout.note strong {
  color: #5e6874;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.article-side-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-side-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 720;
}

.article-side-card h2 {
  margin: 14px 0 7px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.article-side-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
}

.article-side-card .button {
  min-height: 42px;
  font-size: 11px;
}

.support-side-card {
  border-color: rgba(23, 105, 224, 0.17);
  background: linear-gradient(150deg, #eff6ff, #fff);
}

.related-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.related-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.related-card {
  display: grid;
  min-height: 175px;
  align-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.related-card:hover {
  border-color: rgba(23, 105, 224, 0.30);
  transform: translateY(-2px);
}

.related-card span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 720;
}

.related-card strong {
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.related-card small {
  color: var(--blue);
  font-size: 10px;
}

.article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.article-pagination a {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
}

.article-pagination a:last-child {
  text-align: right;
}

.article-pagination small {
  color: #8a929d;
  font-size: 9px;
}

.article-pagination strong {
  color: #3e4854;
  font-size: 12px;
}

.article-not-found {
  min-height: 72vh;
  padding: 150px 24px 90px;
  background: #fff;
  text-align: center;
}

.article-not-found > div {
  max-width: 620px;
  margin: 0 auto;
}

.article-not-found h1 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.05em;
}

.article-not-found p:not(.eyebrow) {
  margin: 12px 0 24px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .help-results-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .article-list {
    grid-template-columns: 1fr;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 45px;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
