.page-faq {
  --faq-bg: #EAF0F7;
  --faq-card: #FFFFFF;
  --faq-rail-w: 240px;
  --faq-orient-w: 52px;
  background: var(--paper);
}

/* ===== 页面 Hero ===== */
.page-faq .page-hero {
  position: relative;
  background: var(--night);
  overflow: hidden;
  padding: 90px 0 0;
}

.page-faq .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 76%, rgba(255, 90, 31, 0.12) 76%),
    linear-gradient(45deg, rgba(124, 92, 255, 0.10) 0%, transparent 42%),
    repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.page-faq .page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(20, 200, 204, 0.16);
  box-shadow: 0 0 0 32px rgba(20, 200, 204, 0.05), 0 0 0 64px rgba(20, 200, 204, 0.03);
  pointer-events: none;
}

.page-faq .page-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 58px;
}

.page-faq .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 0;
  font-size: 0.8rem;
  color: rgba(245, 247, 251, 0.66);
}

.page-faq .breadcrumbs a {
  color: rgba(245, 247, 251, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-faq .breadcrumbs a:hover {
  color: var(--orange);
}

.page-faq .breadcrumbs__sep {
  color: rgba(245, 247, 251, 0.42);
}

.page-faq .page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
}

.page-faq .page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.04;
  color: var(--card);
  letter-spacing: -0.02em;
}

.page-faq .page-hero__title span {
  display: block;
  margin-top: 6px;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: var(--orange);
  letter-spacing: 0.04em;
}

.page-faq .page-hero__sub {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(245, 247, 251, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.page-faq .page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-faq .page-hero__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 90, 31, 0.72);
  position: relative;
  user-select: none;
}

.page-faq .page-hero__line {
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, var(--orange), transparent);
  transform: rotate(38deg);
  transform-origin: top center;
}

.page-faq .page-hero__art {
  position: relative;
  display: none;
  justify-content: flex-end;
  align-items: center;
  min-height: 230px;
}

/* ===== 快速帮助区 ===== */
.page-faq .faq-section {
  background: var(--faq-bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-faq .section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.page-faq .section-title {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-faq .faq-section .section-intro {
  margin-bottom: 34px;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.7;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-faq .faq-orient {
  display: none;
  writing-mode: vertical-rl;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: rgba(31, 41, 55, 0.32);
  text-transform: uppercase;
  border-left: 2px solid var(--line);
  padding-left: 12px;
  height: 100%;
  min-height: 220px;
}

.page-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: transparent;
  min-width: 0;
}

.page-faq .faq-item {
  background: var(--faq-card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 1px 2px rgba(10, 26, 51, 0.03);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-faq .faq-item + .faq-item {
  margin-top: 10px;
}

.page-faq .faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 90, 31, 0.35);
  transform: translateY(-1px);
}

.page-faq .faq-item__head {
  margin: 0;
}

.page-faq .faq-item__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 18px 18px 16px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  min-height: 44px;
  transition: color 0.2s ease;
}

.page-faq .faq-item__toggle:hover {
  color: var(--orange);
}

.page-faq .faq-item__num {
  font-family: var(--font-num);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  min-width: 30px;
}

.page-faq .faq-item__q {
  flex: 1;
  font-weight: 700;
  font-size: 0.98rem;
}

.page-faq .faq-item__icon {
  width: 20px;
  height: 20px;
  flex: none;
  border: 2px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-faq .faq-item__icon::before,
.page-faq .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: background 0.2s ease;
}

.page-faq .faq-item__icon::before {
  width: 9px;
  height: 2px;
  top: 7px;
  left: 4px;
}

.page-faq .faq-item__icon::after {
  width: 2px;
  height: 9px;
  top: 4px;
  left: 7px;
  transition: opacity 0.2s ease;
}

.page-faq .faq-item__toggle:hover .faq-item__icon {
  border-color: var(--orange);
}

.page-faq .faq-item__toggle:hover .faq-item__icon::before,
.page-faq .faq-item__toggle:hover .faq-item__icon::after {
  background: var(--orange);
}

.page-faq .faq-item__toggle[aria-expanded="true"] .faq-item__icon::after {
  opacity: 0;
}

.page-faq .faq-item__toggle[aria-expanded="true"] .faq-item__icon {
  background: var(--orange);
  border-color: var(--orange);
}

.page-faq .faq-item__toggle[aria-expanded="true"] .faq-item__icon::before {
  background: #fff;
}

.page-faq .faq-item__toggle[aria-expanded="true"] .faq-item__icon::after {
  background: #fff;
}

.page-faq .faq-item__panel {
  padding: 0 16px 18px 60px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.page-faq .faq-item__panel p {
  margin: 0 0 10px;
  max-width: 720px;
}

.page-faq .faq-item__panel a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.88rem;
  display: inline-block;
  padding: 6px 0;
}

.page-faq .faq-item__panel a:hover {
  color: var(--orange);
}

/* ===== 快速帮助右侧导轨 ===== */
.page-faq .faq-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.page-faq .faq-visual {
  background: var(--night);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.page-faq .faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 51, 0.10) 0%, rgba(10, 26, 51, 0.64) 100%);
  pointer-events: none;
}

.page-faq .faq-visual__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 160px;
}

.page-faq .faq-visual__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--card);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background: rgba(255, 90, 31, 0.82);
  border-radius: 3px;
  backdrop-filter: blur(2px);
}

.page-faq .faq-rail__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-faq .faq-rail__link:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.page-faq .faq-rail__link .status-dot {
  flex: none;
}

/* ===== 三秒路径区 ===== */
.page-faq .path-section {
  padding: 78px 0 90px;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.page-faq .path-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px),
    linear-gradient(130deg, rgba(124, 92, 255, 0.22) 0%, rgba(10, 26, 51, 0.92) 38%, rgba(10, 26, 51, 1) 68%, rgba(20, 200, 204, 0.10) 100%);
  pointer-events: none;
}

.page-faq .path-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-faq .path-copy {
  min-width: 0;
}

.page-faq .path-copy .section-head {
  margin-bottom: 14px;
}

.page-faq .path-copy .section-eyebrow {
  color: var(--cyan);
}

.page-faq .path-copy .section-title {
  color: var(--card);
}

.page-faq .path-intro {
  color: rgba(245, 247, 251, 0.78);
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 560px;
  font-size: 0.96rem;
}

.page-faq .path-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(245, 247, 251, 0.14);
  margin-left: 6px;
  padding-left: 0;
}

.page-faq .path-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0 22px 20px;
  position: relative;
}

.page-faq .path-step::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 34px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--night);
  box-shadow: 0 0 0 1px rgba(255, 90, 31, 0.48);
}

.page-faq .path-step + .path-step {
  border-top: 1px solid rgba(245, 247, 251, 0.07);
}

.page-faq .path-step__num {
  flex: none;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 90, 31, 0.88);
  min-width: 44px;
}

.page-faq .path-step__body {
  min-width: 0;
}

.page-faq .path-step__title {
  margin: 0 0 6px;
  color: var(--card);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-faq .path-step__body p {
  margin: 0;
  color: rgba(245, 247, 251, 0.64);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-faq .path-figure {
  background: rgba(245, 247, 251, 0.05);
  border: 1px solid rgba(245, 247, 251, 0.12);
  border-radius: 6px;
  padding: 16px;
  align-self: center;
  max-width: 600px;
  width: 100%;
}

.page-faq .path-figure__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
}

.page-faq .path-figure__caption {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: rgba(245, 247, 251, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ===== 版本与设备区 ===== */
.page-faq .version-section {
  background: var(--paper);
  padding: 78px 0 90px;
}

.page-faq .version-section .section-intro {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.page-faq .version-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-faq .version-card {
  position: relative;
  border-radius: 6px;
  padding: 30px 26px;
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-faq .version-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.06) 54%, transparent 54%);
  pointer-events: none;
}

.page-faq .version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-faq .version-card--mobile {
  background: linear-gradient(150deg, #0A1A33 20%, #142A52 78%, #0A1A33 100%);
}

.page-faq .version-card--desktop {
  background: linear-gradient(150deg, #0A1A33 10%, #1B3060 82%, #0A1A33 100%);
}

.page-faq .version-card--data {
  background: linear-gradient(150deg, #0A1A33 14%, #3A2A6A 82%, #0A1A33 100%);
}

.page-faq .version-card__label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(20, 200, 204, 0.9);
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(20, 200, 204, 0.36);
  padding-bottom: 4px;
}

.page-faq .version-card__title {
  margin: 0 0 12px;
  color: var(--card);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-faq .version-card__desc {
  margin: 0 0 24px;
  color: rgba(245, 247, 251, 0.72);
  font-size: 0.92rem;
  line-height: 1.78;
}

.page-faq .version-card__stats {
  display: flex;
  gap: 28px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.page-faq .version-card .display-stat__value {
  color: var(--orange);
  font-size: 1.9rem;
}

.page-faq .version-card .display-stat__label {
  color: rgba(245, 247, 251, 0.56);
  font-size: 0.78rem;
}

.page-faq .version-card .btn {
  min-width: 148px;
}

.page-faq .version-card .btn--ghost {
  color: var(--card);
  border-color: rgba(255, 255, 255, 0.26);
}

.page-faq .version-card .btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===== 数据边界区 ===== */
.page-faq .boundary-section {
  background: var(--faq-bg);
  padding: 78px 0 90px;
  position: relative;
  border-top: 1px solid var(--line);
}

.page-faq .boundary-section .section-head {
  margin-bottom: 34px;
}

.page-faq .boundary-section .section-title {
  color: var(--ink);
}

.page-faq .boundary-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0 6px 6px 0;
  border-left: 4px solid var(--violet);
  box-shadow: var(--shadow-sm);
}

.page-faq .boundary-panel__titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px 0;
}

.page-faq .boundary-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
}

.page-faq .boundary-panel__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.page-faq .boundary-panel__body {
  padding: 18px 26px 28px;
}

.page-faq .boundary-panel__body p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
  margin: 0 0 18px;
}

.page-faq .boundary-panel .tick-list {
  margin: 0 0 18px;
  padding: 16px 0 16px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-faq .boundary-panel .tick-list__item {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 8px 0;
  list-style: none;
}

.page-faq .boundary-panel .tick-list__item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  width: 7px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.page-faq .boundary-panel__notice {
  font-size: 0.84rem !important;
  color: var(--muted) !important;
  background: rgba(124, 92, 255, 0.06);
  border-left: 3px solid var(--violet);
  padding: 12px 16px !important;
  border-radius: 0 4px 4px 0;
}

.page-faq .boundary-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.page-faq .boundary-panel .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-faq .boundary-panel .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.page-faq .boundary-panel .btn--ghost:hover {
  border-color: var(--violet);
  color: var(--violet);
}

/* ===== 最终联系 CTA ===== */
.page-faq .help-cta {
  background: var(--night);
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
}

.page-faq .help-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 90, 31, 0.14) 0%, transparent 42%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px);
  pointer-events: none;
}

.page-faq .help-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.page-faq .section-eyebrow--center {
  color: var(--cyan) !important;
  text-align: center;
  letter-spacing: 0.3em !important;
}

.page-faq .help-cta__title {
  margin: 0;
  color: var(--card);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-faq .help-cta__text {
  margin: 14px 0 24px;
  color: rgba(245, 247, 251, 0.7);
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 480px;
}

.page-faq .help-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-faq .btn--white {
  background: var(--card);
  color: var(--night);
  border: 2px solid var(--card);
}

.page-faq .btn--white:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.page-faq .btn--ghost-light {
  color: rgba(245, 247, 251, 0.92);
  border-color: rgba(245, 247, 251, 0.36);
  background: transparent;
}

.page-faq .btn--ghost-light:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ===== 全局组件微调 ===== */
.page-faq .badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.page-faq .badge--orange {
  background: var(--orange);
  color: #fff;
}

.page-faq .badge--outline {
  border: 1px solid rgba(245, 247, 251, 0.38);
  color: rgba(245, 247, 251, 0.86);
}

.page-faq .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(15, 153, 96, 0.20);
}

.page-faq .orient-note {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.44em;
  color: rgba(31, 41, 55, 0.34);
  font-size: 0.76rem;
  text-transform: uppercase;
  padding: 6px 0;
}

.page-faq .orient-note::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 32px;
  background: var(--orange);
  margin-left: 6px;
}

/* ===== 动画显现 ===== */
.page-faq .reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-faq .is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 媒体查询 ===== */
@media (min-width: 640px) {
  .page-faq .page-hero__grid {
    grid-template-columns: 1fr 280px;
  }

  .page-faq .page-hero__art {
    display: flex;
  }

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

  .page-faq .faq-rail {
    flex-direction: row;
    align-items: stretch;
  }

  .page-faq .faq-visual {
    width: 240px;
    flex: none;
  }

  .page-faq .faq-rail__link {
    flex: 1;
  }

  .page-faq .path-wrap {
    grid-template-columns: 1fr;
  }

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

  .page-faq .version-card--data {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .page-faq .page-hero__grid {
    grid-template-columns: 1fr 340px;
  }

  .page-faq .faq-layout {
    grid-template-columns: var(--faq-orient-w) minmax(0, 1fr) var(--faq-rail-w);
    gap: 18px;
    align-items: start;
  }

  .page-faq .faq-orient {
    display: flex;
  }

  .page-faq .faq-rail {
    flex-direction: column;
  }

  .page-faq .faq-rail__link {
    min-height: 54px;
  }

  .page-faq .path-wrap {
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 24px;
    align-items: center;
  }

  .page-faq .version-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-faq .version-card--data {
    grid-column: span 1;
  }

  .page-faq .faq-item__panel {
    padding-right: 44px;
  }
}

@media (min-width: 1120px) {
  .page-faq .faq-layout {
    grid-template-columns: var(--faq-orient-w) minmax(0, 1fr) 260px;
    gap: 24px;
  }

  .page-faq .path-wrap {
    grid-template-columns: minmax(0, 1fr) 600px;
  }
}

/* ===== 减少动效偏好 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-faq .reveal-pending {
    opacity: 1;
    transform: none;
  }

  .page-faq .faq-item,
  .page-faq .version-card,
  .page-faq .faq-item__toggle,
  .page-faq .btn,
  .page-faq .faq-rail__link {
    transition: none;
  }

  .page-faq * {
    animation: none !important;
  }
}
