.page-faq {
  --faq-neon: #35E8C8;
  --faq-violet: #A48CFF;
  --faq-rose: #FF6E8E;
  --faq-amber: #FFD24A;
  --faq-blue: #7FB2FF;
  --faq-mist: #9AA6C4;
  --faq-tone: var(--faq-neon);
  --faq-tone-soft: rgba(53, 232, 200, .14);
  position: relative;
  overflow-x: hidden;
}

/* ---------- Hero ---------- */

.page-faq .faq-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(104px, 15vh, 156px) 0 clamp(40px, 6vw, 68px);
  background: var(--ink);
  overflow: hidden;
}

.page-faq .faq-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-faq .faq-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .42;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(110% 82% at 6% 0%, rgba(53, 232, 200, .22), transparent 58%),
    radial-gradient(88% 68% at 102% 18%, rgba(43, 31, 88, .62), transparent 62%),
    linear-gradient(180deg, rgba(7, 13, 34, .62) 0%, rgba(7, 13, 34, .9) 56%, var(--ink) 100%);
}

.page-faq .faq-hero__inner {
  position: relative;
  z-index: 2;
}

.page-faq .faq-hero__title {
  margin: 10px 0 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: .01em;
}

.page-faq .faq-hero__lede {
  margin-top: 18px;
  max-width: 62ch;
  color: var(--mist);
}

.page-faq .faq-tools {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 38px);
}

.page-faq .faq-search-wrap {
  width: 100%;
}

.page-faq .faq-search {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid var(--glass-line);
  background: var(--glass);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: border-color .22s ease, box-shadow .22s ease;
}

.page-faq .faq-search::placeholder {
  color: var(--mist);
  opacity: .85;
}

.page-faq .faq-search:focus {
  outline: none;
  border-color: var(--faq-neon);
  box-shadow: 0 0 0 4px var(--neon-soft);
}

.page-faq .faq-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.page-faq .faq-tabs::-webkit-scrollbar {
  display: none;
}

.page-faq .faq-tab {
  flex: 0 0 auto;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--mist);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}

.page-faq .faq-tab:hover,
.page-faq .faq-tab:focus-visible {
  color: var(--paper);
  border-color: var(--faq-neon);
  background: var(--neon-soft);
}

@media (min-width: 760px) {
  .page-faq .faq-tools {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .page-faq .faq-search-wrap {
    flex: 0 0 330px;
  }

  .page-faq .faq-tabs {
    flex: 1 1 auto;
    padding-bottom: 0;
  }
}

/* ---------- Blocks ---------- */

.page-faq .faq-block {
  position: relative;
  padding: clamp(42px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.page-faq .faq-block::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(58%, 680px);
  height: 1px;
  background: linear-gradient(90deg, var(--faq-tone), transparent 92%);
  opacity: .7;
}

.page-faq .faq-block--neon {
  --faq-tone: var(--faq-neon);
  --faq-tone-soft: rgba(53, 232, 200, .14);
}

.page-faq .faq-block--violet {
  --faq-tone: var(--faq-violet);
  --faq-tone-soft: rgba(164, 140, 255, .14);
}

.page-faq .faq-block--rose {
  --faq-tone: var(--faq-rose);
  --faq-tone-soft: rgba(255, 110, 142, .13);
}

.page-faq .faq-block--amber {
  --faq-tone: var(--faq-amber);
  --faq-tone-soft: rgba(255, 210, 74, .13);
}

.page-faq .faq-block--blue {
  --faq-tone: var(--faq-blue);
  --faq-tone-soft: rgba(127, 178, 255, .13);
}

.page-faq .faq-block--mist {
  --faq-tone: var(--faq-mist);
  --faq-tone-soft: rgba(154, 166, 196, .12);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.page-faq .faq-block__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  align-items: start;
  margin-bottom: 16px;
}

.page-faq .faq-block__index {
  font-family: var(--font-mono);
  font-size: clamp(34px, 6vw, 60px);
  line-height: .92;
  font-weight: 600;
  color: var(--faq-tone);
  opacity: .42;
  letter-spacing: -.02em;
}

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

.page-faq .faq-block__title {
  margin: 6px 0 0;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.2;
}

.page-faq .faq-block__note {
  max-width: 68ch;
  margin: 0 0 clamp(22px, 3vw, 34px);
  color: var(--mist);
  line-height: 1.75;
}

@media (min-width: 880px) {
  .page-faq .faq-block__head {
    grid-template-columns: 104px 1fr;
    align-items: center;
    gap: 24px;
  }

  .page-faq .faq-block__note {
    margin-left: 128px;
  }
}

/* ---------- Q&A items ---------- */

.page-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-faq .qa {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.page-faq .qa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--faq-tone);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s ease;
}

.page-faq .qa[open] {
  border-color: var(--faq-tone);
  background:
    linear-gradient(180deg, var(--faq-tone-soft), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow-card);
}

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

.page-faq .qa__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 14px;
  padding: 18px 18px 18px 20px;
  cursor: pointer;
  list-style: none;
}

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

.page-faq .qa__head:focus-visible {
  outline: 2px solid var(--faq-tone);
  outline-offset: -3px;
}

.page-faq .qa__no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--faq-tone);
  opacity: .85;
}

.page-faq .qa__q {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--paper);
}

.page-faq .qa__chev {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: border-color .25s ease, background .25s ease;
}

.page-faq .qa[open] .qa__chev {
  border-color: var(--faq-tone);
  background: var(--faq-tone-soft);
}

.page-faq .qa__chev::before,
.page-faq .qa__chev::after {
  content: "";
  position: absolute;
  background: var(--mist);
  border-radius: 2px;
  transition: transform .24s ease, opacity .24s ease, background .24s ease;
}

.page-faq .qa__chev::before {
  width: 11px;
  height: 2px;
  left: 7px;
  top: 11.5px;
}

.page-faq .qa__chev::after {
  width: 2px;
  height: 11px;
  left: 11.5px;
  top: 7px;
}

.page-faq .qa[open] .qa__chev::before,
.page-faq .qa[open] .qa__chev::after {
  background: var(--faq-tone);
}

.page-faq .qa[open] .qa__chev::after {
  transform: scaleY(0);
  opacity: 0;
}

.page-faq .qa__body {
  display: grid;
  gap: 16px;
  padding: 0 18px 20px 20px;
}

.page-faq .qa[open] .qa__body {
  animation: faq-drop .26s ease both;
}

@keyframes faq-drop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-faq .qa__a {
  margin: 0;
  color: var(--mist);
  line-height: 1.78;
  max-width: 66ch;
}

.page-faq .qa__route {
  padding: 12px 16px;
  border-left: 2px solid var(--faq-tone);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--faq-tone-soft);
}

.page-faq .qa__route-label {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faq-tone);
}

.page-faq .qa__route-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.page-faq .qa__route-links a {
  color: var(--paper);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.page-faq .qa__route-links a:hover,
.page-faq .qa__route-links a:focus-visible {
  color: var(--faq-tone);
  border-color: var(--faq-tone);
}

@media (min-width: 900px) {
  .page-faq .qa__body {
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: start;
    gap: 26px;
    padding: 0 24px 24px 48px;
  }

  .page-faq .qa__head {
    padding: 20px 24px 20px 22px;
  }
}

/* ---------- Split layout for troubleshooting paths ---------- */

.page-faq .faq-split {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

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

.page-faq .faq-split__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.page-faq .faq-split__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 940px) {
  .page-faq .faq-split {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: start;
  }
}

/* ---------- Contact ---------- */

.page-faq .faq-contact {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-line);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(53, 232, 200, .13), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow-card);
}

.page-faq .faq-contact__text p {
  margin: 0 0 18px;
  color: var(--mist);
  line-height: 1.78;
  max-width: 52ch;
}

.page-faq .faq-contact__meta {
  margin: 0;
  display: grid;
  gap: 12px;
}

.page-faq .faq-contact__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.page-faq .faq-contact__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.page-faq .faq-contact__row dt {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--mist);
}

.page-faq .faq-contact__row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  word-break: break-word;
}

@media (min-width: 960px) {
  .page-faq .faq-contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 40px;
  }

  .page-faq .faq-contact__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .page-faq .qa[open] .qa__body {
    animation: none;
  }

  .page-faq .qa::before {
    transition: none;
  }
}
<<<END>>>
