.page-faq {
  --faq-gold: #D4AF37;
  --faq-gold-light: #E5C94B;
  --faq-green: #0A3D2C;
  --faq-green-deep: #061F15;
  --faq-red: #8B0000;
  --faq-cream: #F5F0E6;
  --faq-ink: #1A1A1A;
  --faq-mute: #7A7A7A;
  --faq-line: #E8E8E8;
  --faq-text: #424242;
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--faq-cream) 820px);
}

.page-faq .faq-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.10) 0, transparent 200px),
    radial-gradient(circle at 4% 42%, rgba(10, 61, 44, 0.05) 0, transparent 220px);
}

.page-faq .faq-decor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(10, 61, 44, 0.025) 0,
    rgba(10, 61, 44, 0.025) 1px,
    transparent 1px,
    transparent 14px
  );
}

.page-faq .container {
  position: relative;
  z-index: 1;
}

.page-faq .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--faq-mute);
}

.page-faq .breadcrumbs a {
  color: var(--faq-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-faq .breadcrumbs a:hover {
  border-color: var(--faq-gold);
}

.page-faq .faq-hero {
  position: relative;
  padding: 40px 0 44px;
  border-bottom: 2px solid var(--faq-green);
  margin-bottom: 48px;
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 120px;
  height: 6px;
  background: var(--faq-gold);
  transform: skewX(-20deg);
}

.page-faq .faq-hero-mark {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--faq-gold) 0%, var(--faq-gold-light) 100%);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
}

.page-faq .faq-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faq-gold);
}

.page-faq .faq-hero h1 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--faq-green);
}

.page-faq .faq-lead {
  max-width: 680px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--faq-text);
}

.page-faq .faq-layout {
  display: block;
}

.page-faq .faq-index {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 20px 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, transparent 55%), var(--faq-green);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(6, 31, 21, 0.18);
}

.page-faq .faq-index::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(212, 175, 55, 0.35);
  transform: rotate(45deg);
  pointer-events: none;
}

.page-faq .faq-index-title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-faq .faq-index nav {
  position: relative;
  z-index: 1;
  display: block;
}

.page-faq .faq-index-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-faq .faq-index-link:last-child {
  border-bottom: none;
}

.page-faq .faq-index-link:hover,
.page-faq .faq-index-link.is-active {
  padding-left: 8px;
  color: var(--faq-gold-light);
}

.page-faq .faq-index-num {
  min-width: 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--faq-gold);
}

.page-faq .faq-index-label {
  line-height: 1.4;
}

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

.page-faq .faq-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin-bottom: 56px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.page-faq .faq-section:target {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  border-radius: 6px;
}

.page-faq .faq-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--faq-green);
  transition: border-color 0.3s ease;
}

.page-faq .faq-section:target .faq-section-head {
  border-color: var(--faq-gold);
}

.page-faq .faq-section-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--faq-gold);
}

.page-faq .faq-section-head h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--faq-green);
}

.page-faq .faq-item {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 18px 18px 24px;
  background: #FFFFFF;
  border: 1px solid var(--faq-line);
  border-left: 3px solid var(--faq-gold);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-faq .faq-item:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(2px);
}

.page-faq .faq-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--faq-ink);
}

.page-faq .faq-item h3::before {
  content: "Q";
  margin-right: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--faq-gold);
}

.page-faq .faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--faq-text);
}

.page-faq .faq-item p + p {
  margin-top: 8px;
}

.page-faq .faq-item a {
  color: var(--faq-green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.55);
  text-underline-offset: 2px;
}

.page-faq .faq-figure {
  margin: 24px 0 8px;
  padding: 12px;
  background: var(--faq-cream);
  border: 1px solid var(--faq-line);
  border-radius: 8px;
}

.page-faq .faq-figure img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.page-faq .faq-figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--faq-mute);
}

.page-faq .faq-more {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 50%), var(--faq-green-deep);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(6, 31, 21, 0.24);
  overflow: hidden;
}

.page-faq .faq-more::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border: 4px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
}

.page-faq .faq-more-body {
  position: relative;
  z-index: 1;
}

.page-faq .faq-more h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  color: var(--faq-gold);
}

.page-faq .faq-more p {
  max-width: 560px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.page-faq .faq-more p a {
  color: var(--faq-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-faq .faq-more .btn-gold {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin-top: 4px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-faq .faq-more .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.36);
}

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

  .page-faq .faq-hero h1 {
    font-size: 40px;
  }

  .page-faq .faq-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }

  .page-faq .faq-index {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    margin-bottom: 0;
  }

  .page-faq .faq-section-head h2 {
    font-size: 28px;
  }

  .page-faq .faq-item {
    margin-bottom: 20px;
    padding: 26px 26px 22px 30px;
  }

  .page-faq .faq-item h3 {
    font-size: 18px;
  }

  .page-faq .faq-figure img {
    max-width: 600px;
  }
}

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