.page-faq {
  --faq-accent: #ff5e18;
  --faq-deep: #0b1a2e;
  background: #0a0a0a;
  position: relative;
}

.page-faq .faq-hero {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
  border-bottom: 3px solid var(--faq-accent);
}

.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;
  opacity: 0.3;
  filter: grayscale(0.4) contrast(1.15);
}

.page-faq .faq-hero > .container {
  position: relative;
  z-index: 1;
}

.page-faq .faq-hero-content {
  position: relative;
}

.page-faq .faq-hero-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: var(--faq-accent);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-faq .faq-hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.page-faq .faq-hero h1 span {
  display: block;
  color: var(--faq-accent);
  font-size: 0.62em;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.page-faq .faq-hero-desc {
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.page-faq .faq-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 680px;
}

.page-faq .faq-stat {
  background: var(--faq-deep);
  border: 2px solid #2a2a2a;
  padding: 14px 10px;
  text-align: center;
}

.page-faq .faq-stat .data-number-lg {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1.1;
}

.page-faq .faq-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.page-faq .faq-body {
  padding-top: 40px;
  padding-bottom: 64px;
}

.page-faq .faq-cat-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 40px;
  scrollbar-width: thin;
}

.page-faq .faq-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #0f0f0f;
  border: 2px solid #2a2a2a;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-faq .faq-cat-link:hover,
.page-faq .faq-cat-link:focus-visible {
  border-color: var(--faq-accent);
  color: var(--faq-accent);
}

.page-faq .faq-cat-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-yellow);
}

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

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

.page-faq .faq-category {
  scroll-margin-top: 100px;
  margin-bottom: 52px;
}

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

.page-faq .faq-cat-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding-left: 14px;
  border-left: 6px solid var(--faq-accent);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-faq .faq-cat-num {
  font-family: var(--font-mono);
  font-size: 0.75em;
  color: var(--c-yellow);
}

.page-faq .faq-item {
  margin: 0 0 12px;
  background: #0f0f0f;
  border: 2px solid #2a2a2a;
  transition: border-color 0.2s;
}

.page-faq .faq-item[open] {
  border-color: var(--faq-accent);
}

.page-faq .faq-item-title {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  user-select: none;
}

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

.page-faq .faq-item-title:hover {
  background: rgba(255, 94, 24, 0.06);
}

.page-faq .faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--faq-accent);
  background: rgba(255, 94, 24, 0.12);
  border: 1px solid rgba(255, 94, 24, 0.4);
}

.page-faq .faq-question {
  flex: 1;
  line-height: 1.4;
}

.page-faq .faq-item-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 2px solid #2a2a2a;
  color: var(--c-yellow);
  font-weight: 700;
  transition: transform 0.25s, border-color 0.25s, color 0.25s;
}

.page-faq .faq-item[open] .faq-item-toggle {
  transform: rotate(45deg);
  border-color: var(--faq-accent);
  color: var(--faq-accent);
}

.page-faq .faq-item-content {
  padding: 0 20px 20px;
  margin-top: -4px;
  padding-top: 16px;
  border-top: 1px dashed #2a2a2a;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  animation: faq-reveal 0.25s ease;
}

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

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

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

.page-faq .faq-item-content a {
  color: var(--faq-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.page-faq .faq-help-card {
  position: relative;
  padding: 24px;
  background: var(--faq-deep);
  border: 2px solid #2a2a2a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
}

.page-faq .faq-help-media {
  margin: -24px -24px 0;
  border-bottom: 2px solid #2a2a2a;
}

.page-faq .faq-help-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq .faq-help-card h2 {
  margin: 20px 0 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-faq .faq-help-card > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.page-faq .faq-contact-list {
  margin: 0 0 20px;
  padding: 0;
}

.page-faq .faq-contact-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #2a2a2a;
  font-size: 14px;
}

.page-faq .faq-contact-item dt {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.page-faq .faq-contact-item dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
  word-break: break-all;
  color: #ffffff;
}

.page-faq .faq-support-note {
  margin: 0 0 20px;
  padding: 10px 12px;
  background: rgba(255, 212, 0, 0.08);
  border-left: 3px solid var(--c-yellow);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.5;
}

.page-faq .faq-help-btn {
  width: 100%;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .page-faq .faq-hero {
    padding: 72px 0 60px;
  }

  .page-faq .faq-body {
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .page-faq .faq-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
  }

  .page-faq .faq-sidebar {
    position: sticky;
    top: 100px;
  }
}
