.page-faq {
  --faq-line: rgba(78, 124, 138, 0.34);
  --faq-line-soft: rgba(78, 124, 138, 0.2);
  --faq-panel: #102c43;
  --faq-well: rgba(7, 26, 43, 0.62);
  --faq-edge: clamp(18px, 3.6vw, 34px);

  background:
    radial-gradient(120% 68% at 86% -8%, rgba(226, 163, 60, 0.13), transparent 62%),
    var(--ink-900);
  color: var(--cyan-200);
  padding-bottom: clamp(56px, 8vw, 104px);
  overflow-x: hidden;
}

.page-faq a {
  color: inherit;
}

.page-faq .faq-hero {
  position: relative;
  padding: clamp(8px, 2vw, 20px) 0 clamp(36px, 5.4vw, 64px);
  overflow: hidden;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(88% 58% at 84% 10%, rgba(226, 163, 60, 0.12), transparent 66%),
    radial-gradient(72% 52% at 8% 92%, rgba(78, 124, 138, 0.24), transparent 70%);
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 163, 60, 0.5), rgba(185, 214, 220, 0.16), transparent);
}

.page-faq .faq-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.page-faq .faq-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.page-faq .faq-hero__text {
  margin: 16px 0 0;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.78;
  color: var(--cyan-200);
}

.page-faq .faq-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-faq .faq-hero__quick a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(185, 214, 220, 0.26);
  border-radius: var(--pill);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cyan-200);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-faq .faq-hero__quick a:hover,
.page-faq .faq-hero__quick a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(226, 163, 60, 0.1);
}

.page-faq .faq-hero__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--faq-line);
  background: var(--faq-panel);
}

.page-faq .faq-hero__media img,
.page-faq .faq-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq .faq-body {
  padding-top: clamp(32px, 5vw, 60px);
}

.page-faq .faq-body__inner {
  display: grid;
  gap: clamp(22px, 3.6vw, 40px);
}

.page-faq .faq-rail__title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.page-faq .faq-rail__list {
  display: flex;
  gap: 8px;
  margin: 12px 0 0;
  padding: 2px 0 10px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.page-faq .faq-rail__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--faq-line);
  border-radius: var(--pill);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--cyan-200);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-faq .faq-rail__link span {
  color: var(--cyan-600);
  font-size: 12px;
}

.page-faq .faq-rail__link:hover,
.page-faq .faq-rail__link:focus-visible {
  border-color: var(--gold);
  color: var(--paper);
}

.page-faq .faq-rail__link[aria-current="true"] {
  border-color: var(--gold);
  background: rgba(226, 163, 60, 0.14);
  color: var(--paper);
}

.page-faq .faq-rail__link[aria-current="true"] span {
  color: var(--gold);
}

.page-faq .faq-panels {
  display: grid;
  gap: clamp(24px, 3.4vw, 38px);
  min-width: 0;
}

.page-faq .faq-topic {
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 44, 67, 0.92), rgba(10, 30, 46, 0.92));
  scroll-margin-top: 104px;
}

.page-faq .faq-topic__head {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--faq-line-soft);
}

.page-faq .faq-topic__num {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.page-faq .faq-topic__title {
  margin: 0;
  font-size: clamp(19px, 2.5vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.page-faq .faq-topic__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-faq .faq-list {
  display: grid;
  gap: 10px;
}

.page-faq .qa {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--faq-well);
  overflow: hidden;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.page-faq .qa[open] {
  border-color: rgba(226, 163, 60, 0.42);
  background: rgba(7, 26, 43, 0.88);
}

.page-faq .qa__q {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
  color: var(--paper);
  font-size: 15px;
  line-height: 1.55;
  transition: color 0.2s ease;
}

.page-faq .qa__q::-webkit-details-marker {
  display: none;
}

.page-faq .qa__q::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.24s ease;
}

.page-faq .qa[open] .qa__q::before {
  transform: scaleY(1);
}

.page-faq .qa__q:hover {
  color: var(--gold);
}

.page-faq .qa__num {
  flex: 0 0 auto;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cyan-600);
}

.page-faq .qa__text {
  flex: 1 1 auto;
}

.page-faq .qa__caret {
  flex: 0 0 auto;
  align-self: center;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 1.5px solid var(--cyan-200);
  border-bottom: 1.5px solid var(--cyan-200);
  transform: rotate(45deg);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.page-faq .qa[open] .qa__caret {
  transform: rotate(-135deg);
  border-color: var(--gold);
}

.page-faq .qa__a {
  padding: 0 18px 16px 44px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--cyan-200);
}

.page-faq .qa__a p {
  margin: 0 0 8px;
}

.page-faq .qa__a p:last-child {
  margin-bottom: 0;
}

.page-faq .qa__a a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 163, 60, 0.42);
}

.page-faq .qa__a a:hover,
.page-faq .qa__a a:focus-visible {
  border-bottom-color: var(--gold);
}

.page-faq .faq-figure {
  margin: 18px auto 0;
  max-width: 320px;
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-md);
  background: var(--faq-panel);
  overflow: hidden;
}

.page-faq .faq-figure .media-frame__caption {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.page-faq .faq-table-wrap {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-md);
  background: var(--faq-well);
}

.page-faq .faq-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
}

.page-faq .faq-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(27, 65, 89, 0.55);
}

.page-faq .faq-table tbody th,
.page-faq .faq-table tbody td {
  padding: 13px 16px;
  text-align: left;
  border-top: 1px solid var(--faq-line-soft);
  color: var(--cyan-200);
  vertical-align: middle;
}

.page-faq .faq-table tbody th {
  font-weight: 600;
  color: var(--paper);
}

.page-faq .faq-table tbody tr:hover {
  background: rgba(78, 124, 138, 0.12);
}

.page-faq .faq-check {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-faq .faq-check__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-md);
  background: var(--faq-well);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-faq .faq-check__item:hover {
  border-color: rgba(226, 163, 60, 0.4);
  background: rgba(16, 44, 67, 0.85);
}

.page-faq .faq-check__num {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 163, 60, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(226, 163, 60, 0.14);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.page-faq .faq-check__body {
  min-width: 0;
}

.page-faq .faq-check__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--paper);
}

.page-faq .faq-check__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: var(--cyan-200);
}

.page-faq .faq-check__text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 163, 60, 0.42);
}

.page-faq .faq-check__text a:hover,
.page-faq .faq-check__text a:focus-visible {
  border-bottom-color: var(--gold);
}

@media (min-width: 640px) {
  .page-faq .faq-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-faq .faq-figure {
    max-width: 360px;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .page-faq .faq-hero__media {
    margin-left: auto;
  }

  .page-faq .qa__q {
    padding: 17px 22px;
    font-size: 15.5px;
  }

  .page-faq .qa__a {
    padding: 0 22px 20px 52px;
  }
}

@media (min-width: 1000px) {
  .page-faq .faq-body__inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    align-items: start;
  }

  .page-faq .faq-rail {
    position: sticky;
    top: 104px;
  }

  .page-faq .faq-rail__title {
    padding-left: 16px;
    border-left: 2px solid var(--faq-line);
  }

  .page-faq .faq-rail__list {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 0;
    overflow: visible;
  }

  .page-faq .faq-rail__link {
    display: flex;
    gap: 12px;
    padding: 10px 14px 10px 16px;
    border: 0;
    border-left: 2px solid transparent;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    white-space: normal;
  }

  .page-faq .faq-rail__link[aria-current="true"] {
    border-left-color: var(--gold);
    background: rgba(226, 163, 60, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-faq *,
  .page-faq *::before,
  .page-faq *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
<<<END>>>
