.page-faq {
  --faq-gold-line: rgba(212, 175, 55, 0.5);
  --faq-border: rgba(11, 61, 46, 0.12);
  --faq-tint: rgba(11, 61, 46, 0.04);
  background: var(--light-gray);
  padding: 28px 0 64px;
}

.page-faq .breadcrumb {
  margin-bottom: 16px;
  padding: 0 2px;
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 36%),
    var(--primary-green);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 24px 42px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.page-faq .faq-hero__kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
}

.page-faq .faq-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.15rem;
  line-height: 1.18;
  letter-spacing: 0.01em;
  max-width: 16em;
}

.page-faq .faq-hero__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62em;
}

.page-faq .faq-hero__tip {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.page-faq .faq-hero__tip kbd {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 0.8rem;
}

.page-faq .faq-hero__stats {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-faq .faq-hero__stats li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.page-faq .faq-hero__stats strong {
  font-family: var(--heading-font);
  font-size: 1.28rem;
  line-height: 1;
  color: var(--gold);
}

.page-faq .faq-hero__stats span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.page-faq .faq-hero__rotate-note {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 34px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.45);
}

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

.page-faq .faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 22px 18px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-sidebar__label {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

.page-faq .faq-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.page-faq .filter-btn {
  flex: 0 0 auto;
  border-radius: var(--radius-pill);
}

.page-faq .faq-sidebar .filter-btn {
  width: 100%;
  justify-content: flex-start;
}

.page-faq .faq-toc {
  padding-top: 2px;
}

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

.page-faq .faq-toc__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--dark-gray);
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-faq .faq-toc__link:hover {
  background: var(--light-gray);
  color: var(--primary-green);
  transform: translateX(4px);
}

.page-faq .faq-toc__link i {
  display: inline-flex;
  flex: 0 0 26px;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 0.78rem;
  font-style: normal;
  color: var(--gold);
}

.page-faq .faq-sidebar__note {
  padding: 20px 16px;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
}

.page-faq .faq-sidebar__note-title {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--primary-green);
}

.page-faq .faq-sidebar__note p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--dark-gray);
}

.page-faq .faq-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.page-faq .faq-section {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-section__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-gray);
}

.page-faq .faq-section__num {
  display: inline-flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary-green);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.6);
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.22rem;
}

.page-faq .faq-section__head h2 {
  margin: 0 0 3px;
  font-family: var(--heading-font);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--primary-green);
}

.page-faq .faq-section__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--mid-gray);
}

.page-faq .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-faq .faq-item {
  border: 1px solid var(--faq-border);
  border-radius: var(--radius-md);
  background: var(--light-gray);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-faq .faq-item[open] {
  background: var(--white);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

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

.page-faq .faq-item__summary:hover .faq-item__q {
  color: var(--primary-green);
}

.page-faq .faq-item__q {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--dark-gray);
  transition: color 0.2s ease;
}

.page-faq .faq-item[open] .faq-item__q {
  color: var(--primary-green);
}

.page-faq .faq-item__icon {
  flex: 0 0 auto;
  color: var(--mid-gray);
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-faq .faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.page-faq .faq-item__answer {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-faq .faq-item__answer::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 4px 0 12px;
  border-radius: 4px;
  background: var(--gold);
}

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

.page-faq .faq-item__answer p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-infographic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-md);
}

.page-faq .faq-infographic__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-infographic__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--dark-gray);
}

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

.page-faq .faq-pdf {
  position: relative;
  max-width: 520px;
  margin-top: 16px;
}

.page-faq .faq-pdf img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--faq-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-pdf__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--dark-red);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.3);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.page-faq .faq-cta {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: var(--primary-green);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-faq .faq-cta::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.page-faq .faq-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.page-faq .faq-cta h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.6rem;
}

.page-faq .faq-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  line-height: 1.7;
}

.page-faq .faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 640px) {
  .page-faq .faq-hero {
    padding: 44px 32px 48px;
  }

  .page-faq .faq-hero h1 {
    font-size: 2.6rem;
  }

  .page-faq .faq-hero__rotate-note {
    display: block;
  }

  .page-faq .faq-filter {
    flex-wrap: wrap;
  }

  .page-faq .faq-sidebar .filter-btn {
    flex: 1 1 auto;
  }

  .page-faq .faq-infographic {
    grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
    align-items: center;
  }

  .page-faq .faq-section {
    padding: 28px 26px;
  }

  .page-faq .faq-item__summary {
    padding: 17px 20px;
  }

  .page-faq .faq-item__answer {
    padding: 0 20px 20px;
  }
}

@media (min-width: 1024px) {
  .page-faq .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }

  .page-faq .faq-sidebar {
    position: sticky;
    top: 118px;
  }

  .page-faq .faq-content {
    gap: 28px;
  }

  .page-faq .faq-section {
    padding: 32px 34px;
  }

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

  .page-faq .faq-cta__text {
    max-width: 60%;
  }
}
