.page-faq {
  --faq-rail-width: 220px;
  --faq-console-radius: 18px;
  background: var(--paper-white);
}

.page-faq .faq-hero {
  padding: 132px 0 48px;
  position: relative;
  background: linear-gradient(180deg, rgba(10,27,58,0.05) 0%, transparent 100%), var(--paper-white);
  border-bottom: 1px solid rgba(184,194,204,0.4);
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,53,94,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,53,94,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.page-faq .breadcrumb {
  margin-bottom: 28px;
}

.page-faq .faq-hero__grid {
  display: grid;
  gap: 32px;
}

.page-faq .faq-hero__title {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.15;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.page-faq .faq-hero__desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(30,42,58,0.82);
  max-width: 640px;
  margin: 0;
}

.page-faq .faq-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-gray);
}

.page-faq .faq-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.page-faq .faq-label--light {
  color: rgba(244,247,251,0.7);
}

.page-faq .faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--deep-blue);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  max-width: 420px;
  box-shadow: var(--shadow-floating);
  border: 1px solid rgba(184,194,204,0.3);
}

.page-faq .faq-search__icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--silver-line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.page-faq .faq-search__icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--silver-line);
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.page-faq .faq-search__placeholder {
  font-size: 15px;
  color: rgba(244,247,251,0.65);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-faq .faq-search__key {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(244,247,251,0.8);
  background: rgba(184,194,204,0.15);
  border: 1px solid rgba(184,194,204,0.25);
  border-radius: 6px;
  padding: 4px 8px;
}

.page-faq .faq-console {
  padding: 40px 0 80px;
}

.page-faq .faq-console__panel {
  background: var(--deep-blue);
  border-radius: var(--faq-console-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.page-faq .faq-console__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,194,204,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,194,204,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-faq .faq-console__panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange) 0 120px, rgba(184,194,204,0.2) 120px 100%);
  border-radius: 3px 3px 0 0;
  pointer-events: none;
}

.page-faq .faq-console__panel > * {
  position: relative;
  z-index: 1;
}

.page-faq .faq-console__grid {
  display: grid;
  gap: 24px;
}

.page-faq .faq-console__rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-faq .faq-console__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-faq .faq-console__code {
  color: var(--orange-glow);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-faq .faq-console__coord {
  color: rgba(184,194,204,0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184,194,204,0.15);
}

.page-faq .faq-console__stats {
  font-size: 14px;
  color: rgba(244,247,251,0.65);
  line-height: 1.9;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184,194,204,0.15);
}

.page-faq .faq-console__stats .mono {
  color: var(--orange-glow);
  font-size: 15px;
  margin-right: 4px;
}

.page-faq .faq-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.page-faq .faq-tags__label {
  display: block;
  width: 100%;
  font-size: 12px;
  color: rgba(184,194,204,0.7);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.page-faq .faq-tags .tag {
  background: rgba(184,194,204,0.1);
  border: 1px solid rgba(184,194,204,0.25);
  color: rgba(244,247,251,0.82);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-faq .faq-tags .tag:hover {
  background: rgba(255,92,53,0.25);
  border-color: var(--accent-orange);
  color: #fff;
}

.page-faq .faq-tags .tag--active {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  font-weight: 600;
}

.page-faq .faq-console__figure {
  margin: 8px 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184,194,204,0.2);
  background: rgba(244,247,251,0.06);
}

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

.page-faq .faq-console__figcap {
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(244,247,251,0.55);
  letter-spacing: 0.08em;
}

.page-faq .faq-console__main {
  background: rgba(244,247,251,0.04);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(184,194,204,0.12);
}

.page-faq .faq-console__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.page-faq .faq-console__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--paper-white);
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}

.page-faq .faq-console__meta {
  font-size: 13px;
  color: rgba(184,194,204,0.7);
  letter-spacing: 0.06em;
}

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

.page-faq .faq-item {
  background: var(--paper-white);
  border: 1px solid var(--silver-line);
  border-radius: 10px;
  padding: 18px 20px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-faq .faq-item[open] {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 24px rgba(10,27,58,0.24);
}

.page-faq .faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-gray);
}

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

.page-faq .faq-item__summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--silver-line);
  transition: transform var(--transition-fast);
}

.page-faq .faq-item[open] .faq-item__summary::after {
  content: "−";
  color: var(--accent-orange);
}

.page-faq .faq-item__num {
  font-size: 14px;
  color: var(--accent-orange);
  font-weight: 700;
}

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

.page-faq .faq-item__badge {
  font-size: 12px;
  background: rgba(255,92,53,0.12);
  color: var(--accent-orange);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-weight: 600;
  white-space: nowrap;
}

.page-faq .faq-item__a {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(184,194,204,0.6);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(30,42,58,0.8);
}

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

.page-faq .faq-item__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--bright-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,107,255,0.3);
  padding-bottom: 2px;
}

.page-faq .faq-item__link:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-faq .faq-guide {
  padding: 80px 0;
  background: var(--paper-white);
}

.page-faq .faq-guide__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.page-faq .faq-guide__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.page-faq .faq-guide__lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(30,42,58,0.8);
  margin: 0 0 36px;
  max-width: 680px;
}

.page-faq .faq-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-faq .faq-step {
  display: flex;
  gap: 18px;
  background: #EDF3FC;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--deep-blue);
}

.page-faq .faq-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: var(--paper-white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-faq .faq-step__body {
  flex: 1;
}

.page-faq .faq-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 0 0 8px;
}

.page-faq .faq-step__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(30,42,58,0.78);
  margin: 0 0 10px;
}

.page-faq .faq-step__link {
  color: var(--bright-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,107,255,0.3);
}

.page-faq .faq-step__link:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-faq .faq-step__tip {
  background: rgba(255,178,140,0.18);
  border-left: 3px solid var(--accent-orange);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(30,42,58,0.85);
  margin: 0;
}

.page-faq .faq-step__tip strong {
  color: var(--accent-orange);
}

.page-faq .faq-guide__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-faq .faq-guide__figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  background: var(--deep-blue);
  box-shadow: 8px 8px 0 rgba(10,27,58,0.08);
}

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

.page-faq .faq-guide__aside-note {
  border: 1px dashed var(--silver-line);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  color: var(--ink-gray);
  background: #fff;
  line-height: 1.7;
  margin: 0;
}

.page-faq .faq-guide__aside-note span {
  display: block;
  font-size: 12px;
  color: var(--bright-blue);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.page-faq .faq-guide__aside-note p {
  margin: 0;
}

.page-faq .faq-topics {
  padding: 80px 0;
  background: #EDF3FC;
  border-top: 1px solid rgba(184,194,204,0.4);
  border-bottom: 1px solid rgba(184,194,204,0.4);
}

.page-faq .faq-topics__head {
  margin-bottom: 40px;
}

.page-faq .faq-topics__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 12px 0 12px;
}

.page-faq .faq-topics__lead {
  font-size: 16px;
  color: rgba(30,42,58,0.75);
  max-width: 640px;
  line-height: 1.75;
  margin: 0;
}

.page-faq .faq-topics__grid {
  display: grid;
  gap: 20px;
}

.page-faq .faq-category {
  background: var(--paper-white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--silver-line);
  border-top: 4px solid var(--deep-blue);
  box-shadow: 0 6px 20px rgba(10,27,58,0.06);
}

.page-faq .faq-category__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,194,204,0.5);
}

.page-faq .faq-category__title .mono {
  font-size: 14px;
  color: var(--accent-orange);
}

.page-faq .faq-mini {
  border: 1px solid var(--silver-line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 10px;
  transition: border-color var(--transition-fast);
}

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

.page-faq .faq-mini__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-gray);
}

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

.page-faq .faq-mini__summary::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver-line);
  transition: background var(--transition-fast);
}

.page-faq .faq-mini[open] .faq-mini__summary::before {
  background: var(--accent-orange);
}

.page-faq .faq-mini__summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--silver-line);
}

.page-faq .faq-mini[open] .faq-mini__summary::after {
  content: "−";
  color: var(--accent-orange);
}

.page-faq .faq-mini__a {
  padding: 0 16px 14px 34px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(30,42,58,0.78);
}

.page-faq .faq-mini__link {
  color: var(--bright-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,107,255,0.3);
}

.page-faq .faq-mini__link:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-faq .faq-support {
  padding: 80px 0;
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}

.page-faq .faq-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,194,204,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,194,204,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-faq .faq-support__panel {
  position: relative;
  z-index: 1;
}

.page-faq .faq-support__head {
  margin-bottom: 32px;
}

.page-faq .faq-support__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--paper-white);
  margin: 12px 0 12px;
}

.page-faq .faq-support__desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244,247,251,0.75);
  max-width: 640px;
  margin: 0 0 24px;
}

.page-faq .faq-support__cards {
  display: grid;
  gap: 16px;
}

.page-faq .faq-support__card {
  background: rgba(244,247,251,0.06);
  border: 1px solid rgba(184,194,204,0.2);
  border-radius: 12px;
  padding: 22px 24px;
}

.page-faq .faq-support__card-idx {
  font-size: 12px;
  color: var(--orange-glow);
  letter-spacing: 0.1em;
}

.page-faq .faq-support__card-label {
  font-size: 14px;
  color: rgba(244,247,251,0.6);
  margin: 10px 0 4px;
}

.page-faq .faq-support__card-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--paper-white);
  margin: 0 0 6px;
  line-height: 1.4;
  word-break: break-all;
}

.page-faq .faq-support__card-note {
  font-size: 13px;
  color: rgba(184,194,204,0.8);
  margin: 0;
}

.page-faq .faq-support__link {
  color: var(--orange-glow);
  text-decoration: none;
}

.page-faq .faq-support__link:hover {
  color: #fff;
  text-decoration: underline;
}

.page-faq .faq-support__cta {
  margin-top: 28px;
}

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

.page-faq .faq-item[open] .faq-item__a,
.page-faq .faq-mini[open] .faq-mini__a {
  animation: faqFadeIn 0.25s ease;
}

@media (min-width: 960px) {
  .page-faq .faq-hero {
    padding: 160px 0 64px;
  }

  .page-faq .faq-hero__grid {
    grid-template-columns: 1fr 360px;
    align-items: end;
  }

  .page-faq .faq-hero__title {
    font-size: 52px;
  }

  .page-faq .faq-console {
    padding: 48px 0 100px;
  }

  .page-faq .faq-console__panel {
    padding: 36px;
  }

  .page-faq .faq-console__panel::after {
    left: 36px;
    right: 36px;
  }

  .page-faq .faq-console__grid {
    grid-template-columns: var(--faq-rail-width) 1fr;
    gap: 32px;
  }

  .page-faq .faq-console__rail {
    border-right: 1px solid rgba(184,194,204,0.15);
    padding-right: 28px;
  }

  .page-faq .faq-tags {
    flex-direction: column;
  }

  .page-faq .faq-tags .tag {
    text-align: center;
  }

  .page-faq .faq-console__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-faq .faq-guide__grid {
    grid-template-columns: 1fr 420px;
    gap: 56px;
  }

  .page-faq .faq-guide__aside {
    position: sticky;
    top: 120px;
  }

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

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