.page-faq {
  --faq-teal-deep: #00796b;
  --faq-teal-mid: #00a896;
  --faq-pink-hot: #ff2a9d;
  --faq-cream-soft: rgba(245, 240, 230, 0.86);
  --faq-line-soft: rgba(255, 255, 255, 0.16);
}

.page-faq .faq-hero-section {
  background: linear-gradient(140deg, var(--faq-teal-mid) 0%, var(--faq-teal-deep) 60%, var(--c-ink-green) 100%);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
  padding: 40px 0 52px;
}

.page-faq .faq-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 4px
  );
}

.page-faq .faq-hero-section::after {
  content: "FAQ";
  position: absolute;
  right: -20px;
  bottom: -48px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.page-faq .faq-hero-section .page-hero__title {
  color: var(--c-cream);
}

.page-faq .faq-hero-section .page-hero__meta {
  color: var(--c-yellow);
}

.page-faq .faq-hero__lead {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--faq-cream-soft);
}

.page-faq .faq-hero__quick {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  backdrop-filter: blur(6px);
}

.page-faq .faq-hero__quick-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-pink);
  background: var(--c-cream);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.page-faq .faq-hero__quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-faq .faq-hero__quick-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--c-cream);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  border-left: 3px solid transparent;
}

.page-faq .faq-hero__quick-list a:hover,
.page-faq .faq-hero__quick-list a:focus {
  border-left-color: var(--c-yellow);
  background: rgba(255, 255, 255, 0.08);
}

.page-faq .faq-hero__tags {
  margin-top: 20px;
}

.page-faq .faq-access-section {
  background: var(--c-cream);
  color: var(--c-dark);
  padding: 48px 0 56px;
}

.page-faq .faq-access-section .section-head__title {
  color: var(--c-dark);
}

.page-faq .faq-access-section .section-head__count {
  color: var(--faq-teal-deep);
}

.page-faq .faq-access-section .section-head__note {
  color: rgba(34, 34, 34, 0.5);
}

.page-faq .faq-acc__item {
  background: #fff;
  border: 2px solid var(--faq-teal-mid);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
}

.page-faq .faq-acc__item[open] {
  border-color: var(--faq-pink-hot);
}

.page-faq .faq-acc__q {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark);
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.page-faq .faq-acc__q:hover {
  background: rgba(0, 168, 150, 0.06);
}

.page-faq .faq-acc__q::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 1;
  color: var(--faq-pink-hot);
  flex-shrink: 0;
}

.page-faq .faq-acc__item[open] .faq-acc__q::after {
  content: "–";
}

.page-faq .faq-acc__a {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(34, 34, 34, 0.84);
}

.page-faq .faq-acc__a p {
  margin: 0;
}

.page-faq .faq-acc__a a {
  color: var(--c-pink-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

.page-faq .faq-search-section {
  background: var(--c-deep-purple);
  color: var(--c-cream);
  padding: 48px 0 56px;
}

.page-faq .faq-search-section .section-head__title {
  color: var(--c-cream);
}

.page-faq .faq-search-section .section-head__count {
  color: var(--c-coral);
}

.page-faq .faq-search-section .section-head__note {
  color: var(--c-yellow);
}

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

.page-faq .faq-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-faq .faq-steps__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--faq-line-soft);
}

.page-faq .faq-steps__num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-yellow);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
  padding: 8px 0;
  height: fit-content;
  line-height: 1.2;
}

.page-faq .faq-steps__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--c-cream);
}

.page-faq .faq-steps__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--faq-cream-soft);
}

.page-faq .faq-steps__body a {
  color: var(--c-pink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.page-faq .faq-steps__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.page-faq .faq-play-section {
  background: var(--c-ink-green);
  color: var(--c-cream);
  padding: 48px 0 56px;
}

.page-faq .faq-play-section .section-head__title {
  color: var(--c-cream);
}

.page-faq .faq-play-section .section-head__count {
  color: var(--c-coral);
}

.page-faq .faq-play-section .section-head__note {
  color: var(--c-yellow);
}

.page-faq .faq-qa__item {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--c-coral);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.page-faq .faq-qa__item--with-icon {
  position: relative;
  padding-right: 72px;
}

.page-faq .faq-qa__cc {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  object-fit: cover;
  background: var(--c-cream);
}

.page-faq .faq-qa__q {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-yellow);
}

.page-faq .faq-qa__a {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.9);
}

.page-faq .faq-fav-section {
  background: var(--c-yellow);
  color: var(--c-dark);
  padding: 48px 0 56px;
}

.page-faq .faq-fav-section .section-head__title {
  color: var(--c-dark);
}

.page-faq .faq-fav-section .section-head__count {
  color: var(--c-pink-deep);
}

.page-faq .faq-fav-section .section-head__note {
  color: rgba(34, 34, 34, 0.55);
}

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

.page-faq .faq-sync__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-faq .faq-sync__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 2px dashed rgba(34, 34, 34, 0.16);
}

.page-faq .faq-sync__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-pink-deep);
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.page-faq .faq-sync__step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-dark);
}

.page-faq .faq-sync__card {
  background: var(--c-dark);
  color: var(--c-cream);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-hover);
}

.page-faq .faq-sync__card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-yellow);
  margin: 0 0 8px;
}

.page-faq .faq-sync__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.86);
}

.page-faq .faq-contact-section {
  background: var(--c-dark-orange);
  color: var(--c-cream);
  padding: 40px 0;
}

.page-faq .faq-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.page-faq .faq-contact__title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--c-cream);
}

.page-faq .faq-contact p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.9);
}

@media (min-width: 768px) {
  .page-faq .faq-hero-section,
  .page-faq .faq-access-section,
  .page-faq .faq-search-section,
  .page-faq .faq-play-section,
  .page-faq .faq-fav-section {
    padding: 60px 0 68px;
  }

  .page-faq .faq-contact-section {
    padding: 48px 0;
  }

  .page-faq .faq-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
  }

  .page-faq .faq-hero__quick {
    margin-top: 0;
  }

  .page-faq .faq-steps {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }

  .page-faq .faq-qa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }

  .page-faq .faq-qa__item {
    margin-bottom: 0;
  }

  .page-faq .faq-qa__item--with-icon {
    grid-column: 1 / -1;
  }

  .page-faq .faq-sync {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}
