.page-faq {
  --faq-sand: #0B0D0F;
  --faq-asphalt: #14181C;
  --faq-ink: #08090A;
  --faq-gold: #FFBB33;
  --faq-neon: #33FF99;
  --faq-off: #EDEDED;
  --faq-muted: #9AA5AD;
  --faq-body: #C7CFD4;
  --faq-line: rgba(255, 255, 255, .08);
  --faq-gold-line: rgba(255, 187, 51, .3);
  background: var(--faq-sand);
  color: var(--faq-off);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-faq .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
}

.page-faq img {
  max-width: 100%;
  height: auto;
}

.page-faq a {
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.page-faq .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.page-faq .btn--gold {
  background: var(--faq-gold);
  color: #0B0D0F;
  border-color: var(--faq-gold);
}

.page-faq .btn--gold:hover,
.page-faq .btn--gold:focus-visible {
  background: transparent;
  color: var(--faq-gold);
  outline: 2px solid rgba(255, 187, 51, .4);
  outline-offset: 2px;
}

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

.page-faq .btn--ghost:hover,
.page-faq .btn--ghost:focus-visible {
  border-color: var(--faq-gold);
  color: var(--faq-gold);
  outline: 2px solid rgba(255, 187, 51, .25);
  outline-offset: 2px;
}

.page-faq .tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.4;
  border: 1px solid var(--faq-line);
  text-decoration: none;
}

.page-faq .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--faq-muted);
  flex-shrink: 0;
}

.page-faq .status-dot--live {
  background: var(--faq-neon);
  box-shadow: 0 0 0 3px rgba(51, 255, 153, .18);
}

.page-faq .crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--faq-muted);
  margin-bottom: 16px;
}

.page-faq .crumb a {
  color: var(--faq-gold);
  text-decoration: none;
}

.page-faq .crumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .crumb__sep {
  color: var(--faq-muted);
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 3vw, 36px);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 187, 51, .1), transparent 46%),
    linear-gradient(180deg, #08090A 0%, #0B0D0F 100%);
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--faq-gold) 0%, rgba(255, 187, 51, .05) 76%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
  z-index: 2;
}

.page-faq .faq-hero__inner {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.page-faq .faq-hero__copy {
  order: 1;
}

.page-faq .faq-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.1;
  margin: 14px 0 14px;
  display: inline-block;
  position: relative;
}

.page-faq .faq-hero__title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 72px;
  height: 4px;
  background: var(--faq-gold);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.page-faq .faq-hero__lead {
  max-width: 580px;
  font-size: 1.0625rem;
  color: var(--faq-body);
  margin: 20px 0 16px;
}

.page-faq .faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.page-faq .faq-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--faq-line);
  border-radius: var(--radius);
  font-size: .8125rem;
  color: var(--faq-muted);
}

.page-faq .faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-faq .faq-hero__media {
  order: 2;
  position: relative;
  margin: 0;
}

.page-faq .faq-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: saturate(1.15) contrast(1.05);
  border-radius: var(--radius);
  border: 1px solid var(--faq-line);
}

.page-faq .faq-hero__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(8, 9, 10, .82);
  border: 1px solid var(--faq-gold-line);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.page-faq .faq-hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--faq-gold);
}

.page-faq .faq-hero__badge-label {
  font-size: .8125rem;
  color: var(--faq-off);
  line-height: 1.4;
}

.page-faq .faq-layout {
  display: grid;
  gap: 28px;
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(20px, 4vw, 48px);
}

.page-faq .faq-toc {
  display: none;
}

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

.page-faq .faq-panel {
  margin-bottom: clamp(32px, 5vw, 56px);
  scroll-margin-top: 28px;
}

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

.page-faq .faq-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--faq-gold-line);
}

.page-faq .faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--faq-off);
}

.page-faq .faq-head__note {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faq-gold);
  white-space: nowrap;
}

.page-faq .faq-items {
  border-top: 1px solid var(--faq-line);
}

.page-faq .faq-item {
  background: var(--faq-asphalt);
  border-left: 3px solid rgba(255, 187, 51, .28);
  margin-bottom: 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  scroll-margin-top: 32px;
}

.page-faq .faq-item:hover {
  border-left-color: var(--faq-gold);
}

.page-faq .faq-item[open] {
  border-left-color: var(--faq-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.page-faq .faq-item:target {
  border-left-color: var(--faq-neon);
  box-shadow: 0 0 0 1px rgba(51, 255, 153, .22);
}

.page-faq .faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--faq-off);
}

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

.page-faq .faq-item__trigger:focus-visible {
  outline: 2px solid rgba(255, 187, 51, .5);
  outline-offset: -2px;
  border-radius: 0 var(--radius) 0 0;
}

.page-faq .faq-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--faq-gold);
  padding-right: 10px;
  border-right: 1px solid var(--faq-line);
  min-width: 34px;
}

.page-faq .faq-item__q {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
}

.page-faq .faq-item__ind {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.page-faq .faq-item__ind::before,
.page-faq .faq-item__ind::after {
  content: "";
  position: absolute;
  background: var(--faq-gold);
  transition: transform .2s ease;
}

.page-faq .faq-item__ind::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.page-faq .faq-item__ind::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.page-faq .faq-item[open] .faq-item__ind::after {
  transform: scaleY(0);
}

.page-faq .faq-item__a {
  padding: 0 16px 18px 56px;
  color: var(--faq-body);
  font-size: .9375rem;
}

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

.page-faq .faq-item__a a {
  color: var(--faq-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .faq-item__link {
  display: inline-block;
  margin-top: 6px;
  font-size: .875rem;
  color: var(--faq-gold) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 187, 51, .35);
}

.page-faq .faq-item__link:hover {
  border-bottom-color: var(--faq-gold);
}

.page-faq .faq-guides__intro {
  font-size: .9375rem;
  color: var(--faq-body);
  margin: 0 0 16px;
}

.page-faq .faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.page-faq .tag--guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--faq-asphalt);
  border: 1px solid var(--faq-line);
  color: var(--faq-off);
  font-size: .875rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.page-faq .tag--guide:hover,
.page-faq .tag--guide:focus-visible {
  border-color: var(--faq-gold);
  color: var(--faq-gold);
  outline: 2px solid rgba(255, 187, 51, .25);
  outline-offset: 2px;
}

.page-faq .tag__count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  color: var(--faq-gold);
  background: rgba(255, 187, 51, .12);
  padding: 2px 8px;
  border-radius: var(--radius);
  line-height: 1.4;
}

.page-faq .faq-guides__groups {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}

.page-faq .guide-group {
  background: var(--faq-asphalt);
  border: 1px solid var(--faq-line);
  padding: 18px 16px 14px;
  position: relative;
  scroll-margin-top: 32px;
  transition: transform .2s ease, border-color .2s ease;
}

.page-faq .guide-group:hover {
  transform: translateY(-3px);
  border-color: var(--faq-gold-line);
}

.page-faq .guide-group__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 12px;
  color: var(--faq-off);
}

.page-faq .guide-group__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 2px 6px;
  border: 1px solid var(--faq-gold-line);
  border-radius: var(--radius);
  color: var(--faq-gold);
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.3;
}

.page-faq .guide-group__list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: guide;
}

.page-faq .guide-group__list li {
  counter-increment: guide;
  position: relative;
  padding: 7px 0 7px 32px;
  font-size: .875rem;
  color: var(--faq-body);
  border-bottom: 1px dashed var(--faq-line);
}

.page-faq .guide-group__list li:last-child {
  border-bottom: none;
}

.page-faq .guide-group__list li::before {
  content: counter(guide, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  color: var(--faq-muted);
  line-height: 1.6;
}

.page-faq .faq-guides__note {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(255, 187, 51, .06);
  border-left: 3px solid var(--faq-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-faq .faq-guides__note p {
  margin: 0;
  font-size: .9375rem;
  color: var(--faq-body);
}

.page-faq .faq-guides__note a {
  color: var(--faq-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .faq-contact__card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--faq-asphalt);
  border: 1px solid var(--faq-line);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 32px;
}

.page-faq .faq-contact__info {
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.page-faq .faq-contact__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--faq-ink);
  border: 1px solid var(--faq-line);
  border-left: 3px solid var(--faq-gold);
  text-decoration: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform .2s ease, border-color .2s ease;
}

.page-faq .faq-contact__channel:hover,
.page-faq .faq-contact__channel:focus-visible {
  transform: translateX(4px);
  border-color: var(--faq-gold-line);
  border-left-color: var(--faq-gold);
  outline: none;
}

.page-faq .faq-contact__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 187, 51, .12);
  border-radius: var(--radius);
  color: var(--faq-gold);
  flex-shrink: 0;
}

.page-faq .faq-contact__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.page-faq .faq-contact__block {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.page-faq .faq-contact__label {
  font-size: .8125rem;
  color: var(--faq-muted);
}

.page-faq .faq-contact__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--faq-off);
  word-break: break-all;
}

.page-faq .faq-contact__address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(11, 13, 15, .5);
  border: 1px dashed var(--faq-line);
  border-radius: var(--radius);
}

.page-faq .faq-contact__note {
  font-size: .875rem;
  color: var(--faq-muted);
  margin: 4px 0 0;
  line-height: 1.7;
}

.page-faq .faq-contact__media {
  position: relative;
  margin: 0;
  min-height: 0;
}

.page-faq .faq-contact__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 187, 51, .08), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.page-faq .faq-contact__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.page-faq .faq-response {
  background: linear-gradient(100deg, rgba(255, 187, 51, .12), transparent 40%), var(--faq-ink);
  border-top: 1px solid var(--faq-gold-line);
  border-bottom: 1px solid var(--faq-line);
  padding: clamp(24px, 4vw, 40px) 0;
  position: relative;
  scroll-margin-top: 32px;
}

.page-faq .faq-response::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 32%;
  background: var(--faq-gold);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.page-faq .faq-response__inner {
  display: grid;
  gap: 18px;
}

.page-faq .faq-response__left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--faq-off);
}

.page-faq .faq-response__left p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--faq-neon);
  font-size: .9375rem;
  font-weight: 500;
}

.page-faq .faq-response__right p {
  margin: 0;
  color: var(--faq-body);
  font-size: .9375rem;
}

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

  .page-faq .faq-guides__groups .guide-group:nth-child(5) {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero {
    padding: clamp(32px, 6vw, 72px) 0 clamp(24px, 4vw, 48px);
  }

  .page-faq .faq-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 32px;
    align-items: center;
  }

  .page-faq .faq-hero__copy {
    order: 1;
  }

  .page-faq .faq-hero__media {
    order: 2;
  }

  .page-faq .faq-hero__img {
    aspect-ratio: 16 / 6;
  }

  .page-faq .faq-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }

  .page-faq .faq-toc {
    display: block;
    position: sticky;
    top: 24px;
  }

  .page-faq .faq-toc__inner {
    padding: 20px 18px;
    background: var(--faq-asphalt);
    border: 1px solid var(--faq-line);
    border-left: 3px solid var(--faq-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  .page-faq .faq-toc__eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--faq-muted);
    margin-bottom: 8px;
  }

  .page-faq .faq-toc__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--faq-off);
    margin: 0 0 16px;
  }

  .page-faq .faq-toc__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 4px;
  }

  .page-faq .faq-toc__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius);
    font-size: .875rem;
    color: var(--faq-body);
    text-decoration: none;
    border: 1px solid transparent;
  }

  .page-faq .faq-toc__link:hover,
  .page-faq .faq-toc__link:focus-visible {
    background: rgba(255, 187, 51, .07);
    border-color: var(--faq-gold-line);
    color: var(--faq-off);
    outline: none;
  }

  .page-faq .faq-toc__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .875rem;
    color: var(--faq-gold);
    min-width: 22px;
  }

  .page-faq .faq-toc__text {
    font-weight: 500;
  }

  .page-faq .faq-toc__actions {
    display: grid;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--faq-line);
  }

  .page-faq .faq-toc__action {
    display: block;
    padding: 8px 10px;
    font-size: .8125rem;
    color: var(--faq-muted);
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
  }

  .page-faq .faq-toc__action:hover,
  .page-faq .faq-toc__action:focus-visible {
    color: var(--faq-gold);
    border-color: var(--faq-line);
    outline: none;
  }

  .page-faq .faq-main {
    padding-top: 4px;
  }

  .page-faq .faq-contact__card {
    grid-template-columns: 1fr 40%;
  }

  .page-faq .faq-contact__media {
    min-height: 420px;
  }

  .page-faq .faq-contact__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .page-faq .faq-response__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  .page-faq .faq-guides__groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-faq .faq-guides__groups .guide-group:nth-child(5) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-faq *,
  .page-faq *::before,
  .page-faq *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
