.page-faq {
  background: var(--c-deep);
  color: var(--c-cloud);
}

.page-faq .faq-hero {
  position: relative;
  padding: 56px 0 0;
  background:
    linear-gradient(125deg, var(--c-night) 0%, var(--c-deep) 62%, #0E2E64 100%);
  overflow: hidden;
}

.page-faq .faq-hero::before {
  display: none;
  content: 'FAQ · 07';
  position: absolute;
  top: 110px;
  right: -10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.14);
}

.page-faq .faq-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 44px;
  background: var(--c-deep);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
  pointer-events: none;
}

.page-faq .faq-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 72px;
}

.page-faq .faq-hero__content {
  max-width: 580px;
}

.page-faq .faq-hero__content .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-faq .faq-hero__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
  animation: faq-pulse 2s infinite;
}

@keyframes faq-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.page-faq .faq-hero h1 {
  margin: 20px 0 16px;
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

.page-faq .faq-hero__sub {
  display: block;
  margin-top: 10px;
  color: var(--c-orange);
  font-size: 0.48em;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-faq .faq-hero__lead {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
}

.page-faq .faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.page-faq .faq-hero__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  line-height: 1;
}

.page-faq .faq-hero__stat strong {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--c-orange);
}

.page-faq .faq-hero__content .btn svg {
  margin-left: 8px;
  vertical-align: -1px;
}

.page-faq .faq-hero__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

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

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  margin: 48px auto 0;
}

.page-faq .faq-sidebar {
  position: sticky;
  top: 88px;
  z-index: 8;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 31, 68, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow-x: auto;
  scrollbar-width: none;
}

.page-faq .faq-sidebar::-webkit-scrollbar {
  display: none;
}

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

.page-faq .faq-sidebar__nav {
  display: flex;
  gap: 10px;
  width: max-content;
}

.page-faq .faq-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-cloud);
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.page-faq .faq-sidebar__link:hover {
  border-color: rgba(255, 107, 53, 0.35);
  background: rgba(255, 107, 53, 0.16);
  color: var(--c-white);
  transform: translateY(-1px);
}

.page-faq .faq-sidebar__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--c-orange);
}

.page-faq .faq-sidebar__icon svg {
  width: 20px;
  height: 20px;
}

.page-faq .faq-sidebar__text strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.page-faq .faq-sidebar__text small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--c-silver);
}

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

.page-faq .faq-section {
  padding: 28px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 100px;
}

.page-faq .faq-section:first-child {
  border-top: none;
  padding-top: 0;
}

.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.page-faq .faq-section__num {
  min-width: 56px;
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  color: var(--c-orange);
  -webkit-text-stroke: 1px var(--c-orange);
}

.page-faq .faq-section__title {
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1.15;
  color: var(--c-white);
}

.page-faq .faq-section__desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-silver);
}

.page-faq .faq-section__count {
  align-self: center;
  margin-left: auto;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.page-faq .faq-list {
  display: grid;
  gap: 10px;
}

.page-faq .faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 61, 122, 0.28);
  transition: border-color 0.3s, background 0.3s;
}

.page-faq .faq-item[open] {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(18, 61, 122, 0.46);
}

.page-faq .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  position: relative;
}

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

.page-faq .faq-item summary:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: -2px;
  border-radius: 16px;
}

.page-faq .faq-item__q {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-white);
}

.page-faq .faq-item__badge {
  display: none;
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.16);
  color: var(--c-orange);
  font-size: 11px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.page-faq .faq-item__plus {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.5);
}

.page-faq .faq-item__plus::before,
.page-faq .faq-item__plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-orange);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s, transform 0.25s;
}

.page-faq .faq-item__plus::before {
  width: 10px;
  height: 2px;
}

.page-faq .faq-item__plus::after {
  width: 2px;
  height: 10px;
}

.page-faq .faq-item[open] .faq-item__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .faq-item__body {
  margin: 0 20px;
  padding: 14px 0 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-cloud);
}

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

.page-faq .faq-item__body ul {
  margin: 8px 0;
  padding-left: 0;
  list-style: none;
}

.page-faq .faq-item__body ul li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
}

.page-faq .faq-item__body ul li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--c-orange);
  transform: rotate(45deg);
}

.page-faq .faq-item__body a {
  color: var(--c-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 53, 0.4);
  transition: border-color 0.3s;
}

.page-faq .faq-item__body a:hover {
  border-bottom-color: var(--c-orange);
}

.page-faq .faq-contact-list {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.page-faq .faq-contact-list li {
  display: flex;
  gap: 12px;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.7;
}

.page-faq .faq-contact-list li::before {
  display: none;
}

.page-faq .faq-contact-list li span:first-child {
  min-width: 72px;
  flex-shrink: 0;
  color: var(--c-silver);
}

.page-faq .faq-contact-list li span:last-child {
  color: var(--c-cloud);
  word-break: break-all;
}

.page-faq .faq-support__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 53, 0.32);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.16) 0%, rgba(18, 61, 122, 0.55) 100%);
}

.page-faq .faq-support__media {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.page-faq .faq-support__note {
  flex: 1;
  min-width: 220px;
  font-size: 14px;
  line-height: 1.7;
}

.page-faq .faq-support__note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--c-white);
  font-size: 16px;
}

.page-faq .faq-support__note p {
  margin-bottom: 12px;
}

.page-faq .faq-cta {
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  background: var(--c-night);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-faq .faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-orange) 0%, transparent 70%);
}

.page-faq .faq-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-faq .faq-cta__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-faq .faq-cta h2 {
  margin: 6px 0 8px;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.2;
  color: var(--c-white);
}

.page-faq .faq-cta p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-silver);
}

@media (min-width: 640px) {
  .page-faq .faq-item__badge {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero {
    padding: 104px 0 0;
  }

  .page-faq .faq-hero::before {
    display: block;
  }

  .page-faq .faq-hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 104px;
  }

  .page-faq .faq-hero__figure {
    flex: 0 0 480px;
  }

  .page-faq .faq-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 56px;
    margin: 72px auto 0;
    align-items: start;
  }

  .page-faq .faq-sidebar {
    position: sticky;
    top: 112px;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .page-faq .faq-sidebar__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 8px 12px;
  }

  .page-faq .faq-sidebar__kicker {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--c-silver);
  }

  .page-faq .faq-sidebar__count {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--c-orange);
  }

  .page-faq .faq-sidebar__nav {
    display: grid;
    width: auto;
    gap: 4px;
  }

  .page-faq .faq-sidebar__link {
    border-radius: 12px;
    padding: 14px 12px;
    background: transparent;
    border-color: transparent;
    white-space: normal;
  }

  .page-faq .faq-sidebar__link:hover {
    background: rgba(255, 107, 53, 0.12);
  }

  .page-faq .faq-section {
    padding: 44px 0 16px;
    scroll-margin-top: 120px;
  }

  .page-faq .faq-section__num {
    font-size: 56px;
  }

  .page-faq .faq-section__title {
    font-size: 32px;
  }

  .page-faq .faq-section__desc {
    font-size: 14px;
  }

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