.page-faq {
  --faq-radius: 18px;
  background-color: var(--paper);
  color: var(--ink);
  padding-bottom: 72px;
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 44px;
}
.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 44px solid rgba(29, 78, 216, 0.07);
  pointer-events: none;
}
.page-faq .faq-hero__grid {
  display: grid;
  gap: 28px;
  align-items: start;
  position: relative;
}
.page-faq .faq-hero__content .breadcrumb {
  margin-bottom: 24px;
}
.page-faq .faq-hero__content .section-label {
  margin-bottom: 12px;
}
.page-faq .faq-hero h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 12em;
}
.page-faq .lead-paragraph {
  font-size: 16px;
  line-height: 1.7;
  max-width: 36em;
  color: #3a4453;
}
.page-faq .faq-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--slate);
}
.page-faq .faq-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}
.page-faq .faq-availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5);
  animation: faqPulse 1.6s infinite;
}
.page-faq .faq-hero__meta .data-number {
  font-size: 18px;
  color: var(--ink);
  margin: 0 4px;
}
@keyframes faqPulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(57, 255, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.page-faq .faq-index {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-faq .faq-index a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(19, 21, 26, 0.08);
  border-radius: var(--faq-radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.page-faq .faq-index a:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.page-faq .faq-index a .data-number {
  font-size: 13px;
  color: var(--slate);
}

.page-faq .faq-online-panel {
  padding: 20px;
  border-radius: var(--faq-radius);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-faq .faq-online-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-faq .faq-online-panel__live {
  font-family: var(--font-number);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-faq .faq-online-panel__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: faqPulse 1.4s infinite;
}
.page-faq .faq-online-panel__status {
  font-size: 12px;
  color: rgba(245, 240, 230, 0.72);
}
.page-faq .faq-online-panel__img,
.page-faq .faq-online-panel img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.page-faq .faq-online-panel__note {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.page-faq .faq-online-panel .btn {
  align-self: flex-start;
}

.page-faq .faq-filter-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  padding: 12px 0 16px;
  margin-bottom: 6px;
  background: rgba(245, 240, 230, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-faq .faq-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-faq .filter-chip {
  appearance: none;
  border: 1px solid rgba(19, 21, 26, 0.18);
  background: var(--white);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-faq .filter-chip:hover {
  border-color: var(--orange);
}
.page-faq .filter-chip.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.page-faq .faq-section {
  background: var(--white);
  border-radius: var(--faq-radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  margin-bottom: 24px;
  scroll-margin-top: calc(var(--header-h) + 70px);
  border-left: 4px solid transparent;
  transition: border-color 0.3s;
}
.page-faq .faq-section:hover {
  border-left-color: var(--orange);
}
.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.page-faq .faq-section__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
}
.page-faq .faq-section__title h2 {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.page-faq .faq-section__title p {
  margin: 0;
  font-size: 14px;
  color: var(--slate);
}
.page-faq .faq-section__num {
  margin-left: auto;
  font-family: var(--font-number);
  font-size: 13px;
  color: var(--slate);
  padding: 4px 8px;
  background: var(--paper);
  border-radius: 8px;
  white-space: nowrap;
}

.page-faq .faq-sync__grid {
  display: grid;
  gap: 16px;
  align-items: start;
}
.page-faq .faq-section__media {
  background: var(--paper);
  border-radius: 14px;
  padding: 12px;
  margin-top: 8px;
}
.page-faq .faq-section__media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.page-faq .faq-section__media figcaption {
  font-size: 13px;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.5;
}

.page-faq .faq-item {
  border-top: 1px solid rgba(19, 21, 26, 0.08);
}
.page-faq .faq-item:first-of-type {
  border-top: 0;
}
.page-faq .faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 4px;
  cursor: pointer;
  transition: color 0.2s;
}
.page-faq .faq-item__summary::-webkit-details-marker {
  display: none;
}
.page-faq .faq-item__summary:hover {
  color: var(--orange);
}
.page-faq .faq-item__q {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--slate);
  background: var(--paper);
  border-radius: 6px;
  padding: 4px 6px;
  flex: 0 0 auto;
}
.page-faq .faq-item__title {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}
.page-faq .faq-item__title a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-faq .faq-item__indicator {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(19, 21, 26, 0.2);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  color: var(--ink);
}
.page-faq .faq-item__indicator::before,
.page-faq .faq-item__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.page-faq .faq-item__indicator::before {
  width: 10px;
  height: 2px;
}
.page-faq .faq-item__indicator::after {
  width: 2px;
  height: 10px;
}
.page-faq .faq-item[open] .faq-item__indicator {
  transform: rotate(45deg);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.page-faq .faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.32s ease;
}
.page-faq .faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.page-faq .faq-item__answer-inner {
  overflow: hidden;
  padding: 0 4px 16px;
}
.page-faq .faq-item__answer-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #3a4453;
  max-width: 60em;
}

.page-faq .faq-contact-cta {
  margin-top: 32px;
  background: var(--deep-blue);
  border-radius: var(--faq-radius);
  padding: 28px 22px;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-faq .faq-contact-cta__copy h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.page-faq .faq-contact-cta__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.82;
}
.page-faq .faq-contact-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-faq .faq-contact-cta .btn--primary {
  --btn-bg: var(--orange);
}

@media (min-width: 760px) {
  .page-faq .faq-hero {
    padding: 56px 0 64px;
  }
  .page-faq .faq-hero__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }
  .page-faq .faq-hero h1 {
    font-size: 60px;
  }
  .page-faq .faq-index {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-faq .faq-section {
    padding: 28px 26px;
  }
  .page-faq .faq-section__title h2 {
    font-size: 26px;
  }
  .page-faq .faq-section--sync .faq-sync__grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .page-faq .faq-contact-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
  }
  .page-faq .faq-contact-cta__actions {
    flex-shrink: 0;
  }
}

@media (min-width: 1080px) {
  .page-faq .faq-hero h1 {
    font-size: 72px;
  }
  .page-faq .faq-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) 360px;
  }
  .page-faq .faq-online-panel {
    padding: 24px;
  }
  .page-faq .faq-section__items {
    padding-right: 8px;
  }
}
