.page-faq {
  display: block;
  background: var(--color-panel);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: clip;
}

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

.page-faq .faq-hero {
  position: relative;
  padding: 72px 0 64px;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-deep) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.page-faq .faq-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--color-ink) 0%, rgba(11,27,58,0.72) 48%, rgba(11,27,58,0.3) 100%),
    linear-gradient(180deg, rgba(11,27,58,0.2), rgba(11,27,58,0.45));
}

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

.page-faq .faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(245,247,250,0.78);
  margin-bottom: 22px;
}

.page-faq .faq-breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--ease);
}

.page-faq .faq-breadcrumb a:hover {
  color: var(--color-accent);
}

.page-faq .faq-breadcrumb-sep {
  color: rgba(245,247,250,0.4);
}

.page-faq .faq-hero-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 34px;
}

.page-faq .faq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-faq .faq-hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-accent);
}

.page-faq .faq-hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-white);
  max-width: 820px;
}

.page-faq .faq-hero-lead {
  margin: 18px 0 0;
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(245,247,250,0.84);
}

.page-faq .faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-faq .faq-hero .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.page-faq .faq-hero .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

.page-faq .faq-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 560px;
}

.page-faq .faq-hero-stat {
  position: relative;
  flex: 0 0 auto;
  min-width: 118px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px 16px 16px 4px;
  backdrop-filter: blur(8px);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-faq .faq-stat-num {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-accent);
}

.page-faq .faq-stat-label {
  font-size: 0.86rem;
  color: rgba(245,247,250,0.78);
}

.page-faq .faq-toc {
  padding: 44px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.page-faq .faq-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-faq .faq-toc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 44px 20px 22px;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: 16px 16px 16px 4px;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.page-faq .faq-toc-item::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: transparent;
  transition: background var(--ease);
}

.page-faq .faq-toc-item:hover,
.page-faq .faq-toc-item:focus-visible {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,27,58,0.12);
}

.page-faq .faq-toc-item:hover::after,
.page-faq .faq-toc-item:focus-visible::after {
  background: var(--color-accent);
}

.page-faq .faq-toc-index {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--color-accent);
}

.page-faq .faq-toc-name {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--color-ink);
}

.page-faq .faq-toc-count {
  font-size: 0.86rem;
  color: var(--color-muted);
}

.page-faq .faq-chapter {
  padding: 64px 0 72px;
  background: var(--color-white);
  scroll-margin-top: 92px;
}

.page-faq .faq-chapter-alt {
  background: var(--color-panel);
}

.page-faq .faq-chapter-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  margin-bottom: 34px;
  padding-top: 18px;
}

.page-faq .faq-chapter-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 3px;
}

.page-faq .faq-chapter-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 16px 16px 16px 4px;
  background: var(--color-ink);
  color: var(--color-accent);
  font-family: var(--font-data);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

.page-faq .faq-chapter-eyebrow {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-faq .faq-chapter-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--color-ink);
}

.page-faq .faq-chapter-desc {
  margin: 0;
  max-width: 520px;
  color: var(--color-muted);
}

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

.page-faq .faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-panel);
  box-shadow: 0 6px 18px rgba(3,10,30,0.06);
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.page-faq .faq-item[open] {
  border-color: rgba(11,27,58,0.2);
  box-shadow: 0 18px 42px rgba(3,10,30,0.14);
}

.page-faq .faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 22px;
  background: var(--color-ink);
  color: var(--color-white);
  cursor: pointer;
  user-select: none;
  transition: background var(--ease);
}

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

.page-faq .faq-q:hover,
.page-faq .faq-item[open] > .faq-q {
  background: #132a52;
}

.page-faq .faq-q-mark {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.9rem;
}

.page-faq .faq-q-text {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.5;
}

.page-faq .faq-q-icon {
  flex: 0 0 auto;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  transition: background var(--ease), transform var(--ease);
}

.page-faq .faq-q-icon::before,
.page-faq .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 180ms ease;
}

.page-faq .faq-q-icon::before {
  width: 10px;
  height: 2px;
  top: 11px;
  left: 7px;
}

.page-faq .faq-q-icon::after {
  width: 2px;
  height: 10px;
  top: 7px;
  left: 11px;
}

.page-faq .faq-item[open] > .faq-q .faq-q-icon {
  background: var(--color-accent);
}

.page-faq .faq-item[open] > .faq-q .faq-q-icon::after {
  transform: rotate(90deg);
}

.page-faq .faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 28px;
  background: var(--color-white);
  color: var(--color-text);
}

.page-faq .faq-a-badge {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.9rem;
}

.page-faq .faq-a-content {
  flex: 1 1 auto;
  min-width: 0;
}

.page-faq .faq-a-content p {
  margin: 0;
}

.page-faq .faq-a-content p + p {
  margin-top: 10px;
}

.page-faq .faq-a-data {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--color-panel);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-data);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-ink);
  word-break: break-word;
}

.page-faq .faq-link {
  color: var(--color-accent);
  text-underline-offset: 4px;
}

.page-faq .faq-link:hover {
  color: var(--color-accent-soft);
}

.page-faq .faq-support {
  scroll-margin-top: 92px;
  padding: 72px 0 80px;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-deep) 100%);
  color: var(--color-white);
}

.page-faq .faq-support .faq-chapter-title {
  color: var(--color-white);
}

.page-faq .faq-support .faq-chapter-desc {
  color: rgba(245,247,250,0.72);
}

.page-faq .faq-support .faq-chapter-num {
  background: rgba(255,255,255,0.1);
}

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

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

.page-faq .faq-support-img-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.34);
}

.page-faq .faq-support-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-faq .faq-contact-card {
  width: 100%;
  max-width: 420px;
  margin-top: 24px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.page-faq .faq-contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-faq .faq-contact-label {
  font-size: 0.82rem;
  color: rgba(245,247,250,0.6);
  letter-spacing: 0.02em;
}

.page-faq .faq-contact-value {
  font-family: var(--font-data);
  font-size: 0.98rem;
  color: var(--color-white);
  word-break: break-word;
}

.page-faq .faq-support-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--color-teal);
}

.page-faq .faq-support-cta {
  margin-top: 24px;
}

.page-faq .faq-support .faq-item {
  background: var(--color-white);
  border-color: rgba(255,255,255,0.18);
}

.page-faq .faq-support .faq-q {
  background: #16294d;
}

.page-faq .faq-support .faq-q:hover,
.page-faq .faq-support .faq-item[open] > .faq-q {
  background: #1c3a66;
}

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

  .page-faq .faq-hero-stats {
    max-width: none;
  }

  .page-faq .faq-chapter {
    padding: 76px 0 84px;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
  }

  .page-faq .faq-hero-copy {
    flex: 1 1 auto;
    max-width: 760px;
  }

  .page-faq .faq-hero-stats {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
  }

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

  .page-faq .faq-chapter-head {
    grid-template-columns: 74px 360px 1fr;
    align-items: end;
    gap: 24px;
    margin-bottom: 42px;
  }

  .page-faq .faq-support-grid {
    grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
    gap: 64px;
    align-items: start;
  }

  .page-faq .faq-support {
    padding: 92px 0 100px;
  }
}
