.page-faq {
  --faq-gold: #D4AF37;
  --faq-red: #E62E3D;
  --faq-deep-red: #8B0000;
  --faq-ink: #0A0A0A;
  --faq-paper: #F5F0E6;
  --faq-line: rgba(212, 175, 55, 0.18);
  --faq-grid-line: rgba(212, 175, 55, 0.06);
  --faq-muted: rgba(245, 240, 230, 0.55);
  position: relative;
  background: var(--faq-ink);
  color: var(--faq-paper);
  z-index: 1;
}
.page-faq::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--faq-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--faq-grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-faq img {
  max-width: 100%;
  height: auto;
}
.page-faq .faq-hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
}
.page-faq .faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: center;
}
.page-faq .faq-hero-main {
  position: relative;
}
.page-faq .faq-hero-kicker {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faq-gold);
  margin: 28px 0 8px;
}
.page-faq .faq-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  color: var(--faq-paper);
}
.page-faq .faq-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--faq-muted);
  max-width: 520px;
  margin: 0 0 28px;
}
.page-faq .faq-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  max-width: 520px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.page-faq .faq-search-box:focus-within {
  border-color: var(--faq-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.page-faq .faq-search-icon {
  color: var(--faq-gold);
  flex-shrink: 0;
}
.page-faq .faq-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--faq-paper);
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 0;
}
.page-faq .faq-search-input::placeholder {
  color: rgba(245, 240, 230, 0.38);
}
.page-faq .faq-search-hint {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 230, 0.32);
  margin: 10px 0 0 4px;
}
.page-faq .faq-stat-row {
  display: flex;
  gap: 36px;
  margin-top: 32px;
}
.page-faq .faq-stat-item {
  position: relative;
}
.page-faq .faq-stat-item + .faq-stat-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--faq-line), transparent);
}
.page-faq .faq-stat-num {
  font-family: var(--font-data);
  font-size: 30px;
  font-weight: 700;
  color: var(--faq-gold);
  line-height: 1.2;
}
.page-faq .faq-stat-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.5);
  margin-top: 4px;
}
.page-faq .faq-hero-media {
  position: relative;
}
.page-faq .faq-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--faq-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.page-faq .faq-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: rotate(2deg);
}
.page-faq .faq-hero-media::after {
  content: "";
  position: absolute;
  right: -14px;
  top: -14px;
  width: 72px;
  height: 72px;
  border-top: 2px solid var(--faq-gold);
  border-right: 2px solid var(--faq-gold);
  border-radius: 0 var(--radius-md) 0 0;
  opacity: 0.8;
}
.page-faq .faq-tabs {
  position: sticky;
  top: var(--header-height);
  z-index: 30;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--faq-line);
  border-bottom: 1px solid var(--faq-line);
}
.page-faq .faq-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-faq .faq-tabs-inner::-webkit-scrollbar {
  display: none;
}
.page-faq .faq-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--faq-paper);
  border-bottom: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-faq .faq-tab:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--faq-gold);
  border-bottom-color: var(--faq-gold);
}
.page-faq .faq-tab-index {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: var(--faq-gold);
  opacity: 0.85;
}
.page-faq .faq-tab-label {
  font-weight: 700;
  font-size: 15px;
}
.page-faq .faq-tab-count {
  font-family: var(--font-data);
  font-size: 11px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--faq-gold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.page-faq .faq-body {
  position: relative;
  z-index: 1;
  padding: 56px 0 72px;
}
.page-faq .faq-body-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}
.page-faq .faq-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 96px);
}
.page-faq .faq-sidebar-title {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.4);
  margin: 0 0 14px;
}
.page-faq .faq-sidebar-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.page-faq .faq-sidebar-list li {
  margin: 0;
}
.page-faq .faq-sidebar-list a {
  display: block;
  padding: 10px 0 10px 16px;
  border-left: 2px solid var(--faq-line);
  color: rgba(245, 240, 230, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.page-faq .faq-sidebar-list a:hover {
  border-left-color: var(--faq-gold);
  color: var(--faq-gold);
  padding-left: 22px;
}
.page-faq .faq-sidebar-card {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(10, 10, 10, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
}
.page-faq .faq-sidebar-card-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--faq-paper);
  margin-bottom: 8px;
}
.page-faq .faq-sidebar-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.6);
  margin: 0 0 16px;
}
.page-faq .faq-sections {
  min-width: 0;
}
.page-faq .faq-category {
  position: relative;
  padding-bottom: 48px;
}
.page-faq .faq-category + .faq-category {
  border-top: 1px solid var(--faq-line);
  padding-top: 48px;
}
.page-faq .faq-category-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.page-faq .faq-category-head::after {
  content: "";
  position: absolute;
  left: 88px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--faq-gold), rgba(212, 175, 55, 0.08) 70%, transparent);
}
.page-faq .faq-category-index {
  font-family: var(--font-data);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--faq-deep-red);
  -webkit-text-stroke: 1px var(--faq-gold);
  flex-shrink: 0;
  min-width: 68px;
}
.page-faq .faq-category-head h2 {
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--faq-paper);
  letter-spacing: 0.02em;
}
.page-faq .faq-category-head p {
  margin: 0;
  font-size: 13px;
  color: var(--faq-muted);
}
.page-faq .faq-list {
  display: grid;
  gap: 12px;
}
.page-faq .faq-item {
  border: 1px solid var(--faq-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.page-faq .faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.03);
}
.page-faq .faq-item[open] {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.page-faq .faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.page-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.page-faq .faq-item summary:focus-visible {
  outline: 2px solid var(--faq-gold);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}
.page-faq .faq-item-num {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: var(--faq-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.page-faq .faq-item-question {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: var(--faq-paper);
}
.page-faq .faq-item-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.page-faq .faq-item-toggle::before,
.page-faq .faq-item-toggle::after {
  content: "";
  position: absolute;
  background: var(--faq-gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.page-faq .faq-item-toggle::before {
  width: 14px;
  height: 2px;
  top: 10px;
  left: 4px;
}
.page-faq .faq-item-toggle::after {
  width: 2px;
  height: 14px;
  top: 4px;
  left: 10px;
}
.page-faq .faq-item[open] .faq-item-toggle::after {
  transform: scaleY(0);
  opacity: 0;
}
.page-faq .faq-item-answer {
  padding: 0 20px 22px 50px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.72);
  border-top: 1px dashed rgba(212, 175, 55, 0.12);
  margin-top: -2px;
}
.page-faq .faq-item-answer p {
  margin: 0;
}
.page-faq .faq-media-block {
  margin-top: 24px;
}
.page-faq .faq-media-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--faq-line);
  object-fit: cover;
}
.page-faq .faq-contact-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(115deg, var(--faq-deep-red) 0%, rgba(198, 40, 40, 0.85) 45%, rgba(10, 10, 10, 0.95) 100%);
  padding: 64px 0;
  overflow: hidden;
}
.page-faq .faq-contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--speed-line);
  opacity: 0.5;
  pointer-events: none;
}
.page-faq .faq-contact-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.page-faq .faq-contact-kicker {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.85);
}
.page-faq .faq-contact-copy h2 {
  font-family: var(--font-headline);
  font-size: 30px;
  color: var(--faq-paper);
  margin: 10px 0 8px;
  letter-spacing: 0.02em;
}
.page-faq .faq-contact-copy p {
  margin: 0;
  font-size: 14px;
  color: rgba(245, 240, 230, 0.75);
  line-height: 1.6;
}
.page-faq .faq-contact-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}
@media (max-width: 992px) {
  .page-faq .faq-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-faq .faq-hero-media {
    max-width: 560px;
  }
  .page-faq .faq-body-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-faq .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
  }
  .page-faq .faq-sidebar-title {
    width: 100%;
  }
  .page-faq .faq-sidebar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
  }
  .page-faq .faq-sidebar-list li {
    margin: 0;
  }
  .page-faq .faq-sidebar-list a {
    padding: 8px 14px;
    border-left: none;
    border-bottom: 2px solid var(--faq-line);
    border-radius: var(--radius-sm);
  }
  .page-faq .faq-sidebar-list a:hover {
    border-bottom-color: var(--faq-gold);
    padding-left: 14px;
  }
  .page-faq .faq-sidebar-card {
    margin-left: auto;
  }
  .page-faq .faq-contact-inner {
    flex-direction: column;
    text-align: center;
  }
  .page-faq .faq-contact-actions {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .page-faq .faq-hero {
    padding: 48px 0 40px;
  }
  .page-faq .faq-hero h1 {
    font-size: 40px;
  }
  .page-faq .faq-stat-row {
    gap: 20px;
    flex-wrap: wrap;
  }
  .page-faq .faq-stat-item + .faq-stat-item::before {
    left: -10px;
  }
  .page-faq .faq-tab {
    padding: 14px 18px;
  }
  .page-faq .faq-body {
    padding: 40px 0 56px;
  }
  .page-faq .faq-category-index {
    font-size: 34px;
    min-width: 52px;
  }
  .page-faq .faq-category-head h2 {
    font-size: 22px;
  }
  .page-faq .faq-category-head::after {
    left: 68px;
  }
  .page-faq .faq-item summary {
    padding: 16px 14px;
    gap: 10px;
  }
  .page-faq .faq-item-question {
    font-size: 14px;
  }
  .page-faq .faq-item-answer {
    padding: 0 16px 18px 16px;
  }
  .page-faq .faq-sidebar {
    display: block;
  }
  .page-faq .faq-sidebar-card {
    margin-left: 0;
    margin-top: 16px;
  }
  .page-faq .faq-contact-band {
    padding: 48px 0;
  }
  .page-faq .faq-contact-copy h2 {
    font-size: 24px;
  }
  .page-faq .faq-contact-actions {
    flex-direction: column;
    width: 100%;
  }
  .page-faq .faq-contact-actions .btn {
    width: 100%;
  }
}
