.page-faq {
  --faq-radius: 18px;
  --faq-gold-line: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
}

.page-faq .faq-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--paper);
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 28px solid rgba(212, 175, 55, 0.14);
  border-radius: 48px;
  transform: rotate(16deg);
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  left: 32%;
  bottom: -38px;
  width: 260px;
  height: 38px;
  background: rgba(212, 175, 55, 0.25);
  transform: skewX(-24deg);
}

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

.page-faq .faq-breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-faq .faq-breadcrumbs .breadcrumb-link {
  color: var(--gold-light);
  text-decoration: none;
}

.page-faq .faq-breadcrumbs .breadcrumb-link:hover {
  text-decoration: underline;
}

.page-faq .faq-breadcrumbs .breadcrumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.45);
}

.page-faq .faq-breadcrumbs .breadcrumb-current {
  color: rgba(255, 255, 255, 0.85);
}

.page-faq .faq-hero-title {
  max-width: 920px;
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-faq .faq-hero-lede {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.page-faq .faq-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.page-faq .faq-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-faq .faq-hero-meta-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-light);
}

.page-faq .faq-hero-meta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.page-faq .faq-bento {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  margin-bottom: 44px;
}

.page-faq .faq-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(20, 83, 45, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.page-faq .faq-bento-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.16) 50%);
}

.page-faq .faq-bento-card:hover,
.page-faq .faq-bento-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.page-faq .faq-bento-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-faq .faq-bento-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--green-deep);
}

.page-faq .faq-bento-desc {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.page-faq .faq-body {
  padding: 4px 0 60px;
}

.page-faq .faq-layout {
  display: grid;
  gap: 32px;
}

.page-faq .faq-side-card {
  background: var(--green-deep);
  color: var(--paper);
  border-radius: var(--faq-radius);
  padding: 24px;
  position: relative;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.page-faq .faq-side-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--faq-gold-line);
}

.page-faq .faq-side-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-light);
}

.page-faq .faq-side-group {
  margin-bottom: 18px;
}

.page-faq .faq-side-group:last-child {
  margin-bottom: 0;
}

.page-faq .faq-side-cat {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.page-faq .faq-side-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-faq .faq-side-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s;
}

.page-faq .faq-side-link:hover {
  color: var(--gold-light);
}

.page-faq .faq-category {
  margin-bottom: 36px;
  scroll-margin-top: 96px;
}

.page-faq .faq-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-mid);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
  color: var(--paper);
}

.page-faq .faq-category-num {
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 900;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1;
}

.page-faq .faq-category-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.page-faq .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.page-faq .faq-item[open] {
  border-color: rgba(212, 175, 55, 0.35);
}

.page-faq .faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

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

.page-faq .faq-summary:hover {
  color: var(--green-mid);
}

.page-faq .faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-mid);
}

.page-faq .faq-icon::before,
.page-faq .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--paper);
  border-radius: 2px;
}

.page-faq .faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.page-faq .faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

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

.page-faq .faq-answer {
  padding: 4px 18px 18px;
  border-top: 1px solid var(--muted);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

.page-faq .faq-answer p:first-child {
  margin-top: 14px;
}

.page-faq .faq-answer strong {
  color: var(--green-deep);
}

.page-faq .faq-answer a {
  color: var(--green-mid);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.6);
  transition: color 0.2s, border-color 0.2s;
}

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

.page-faq .faq-step-list {
  margin: 14px 0 4px;
  padding: 0;
  list-style: none;
  counter-reset: faq-step;
  display: grid;
  gap: 8px;
}

.page-faq .faq-step-list li {
  counter-increment: faq-step;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.page-faq .faq-step-list li::before {
  content: counter(faq-step);
  background: var(--green-deep);
  color: var(--gold-light);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
}

.page-faq .faq-figure {
  margin: 16px 0 6px;
  padding: 0;
}

.page-faq .faq-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--muted);
}

.page-faq .faq-figure--wide {
  max-width: 100%;
}

.page-faq .faq-figure--narrow {
  max-width: 100%;
}

.page-faq .faq-figure figcaption {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
}

.page-faq .faq-cta {
  background: linear-gradient(90deg, var(--green-deep), var(--green-mid));
  color: var(--paper);
  padding: 44px 0 56px;
  border-top: 3px solid var(--gold);
  text-align: center;
}

.page-faq .faq-cta-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-faq .faq-cta-lede {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

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

.page-faq .faq-cta-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.page-faq .faq-cta-note a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

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

@media (min-width: 820px) {
  .page-faq .faq-layout {
    grid-template-columns: 264px 1fr;
    align-items: start;
    gap: 32px;
  }

  .page-faq .faq-side {
    position: sticky;
    top: 96px;
  }

  .page-faq .faq-hero {
    padding: 64px 0 76px;
  }

  .page-faq .faq-hero-lede {
    font-size: 16px;
  }

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