.page-faq {
  background: var(--color-cream);
  color: var(--color-dark);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.page-faq .faq-hero {
  position: relative;
  padding: 64px 20px 72px;
  background:
    radial-gradient(circle at 82% 20%, rgba(212, 175, 55, 0.26), transparent 36%),
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark) 80%);
  color: var(--color-cream);
  overflow: hidden;
}
.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 55%, var(--color-cyan) 100%);
}
.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(0, 224, 198, 0.35);
  pointer-events: none;
}
.page-faq .faq-hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.page-faq .faq-hero-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-gold);
}
.page-faq .faq-hero-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
}
.page-faq .faq-hero-title em {
  font-style: normal;
  color: var(--color-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.page-faq .faq-hero-intro {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(247, 243, 235, 0.86);
}
.page-faq .faq-hero-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-faq .faq-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--color-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.page-faq .faq-hero-btn:hover {
  background: #a9261f;
  transform: translateY(-2px);
}
.page-faq .faq-hero-btn.ghost {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.65);
  color: var(--color-gold);
}
.page-faq .faq-hero-btn.ghost:hover {
  background: rgba(212, 175, 55, 0.1);
}
.page-faq .faq-hero-mark {
  display: none;
  justify-content: center;
  align-items: center;
}
.page-faq .faq-hero-ring {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.14), transparent 62%);
}
.page-faq .faq-hero-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.4);
}
.page-faq .faq-hero-ring::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 224, 198, 0.3);
}
.page-faq .faq-hero-ring > span {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-gold);
}

.page-faq .faq-breadcrumb {
  background: var(--color-cream);
  border-bottom: 1px solid rgba(42, 42, 42, 0.08);
}
.page-faq .faq-breadcrumb ol {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 14px;
}
.page-faq .faq-breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--color-gold);
}
.page-faq .faq-breadcrumb a {
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.page-faq .faq-breadcrumb a:hover {
  border-bottom-color: var(--color-gold);
}

.page-faq .faq-steps {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 20px 64px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.page-faq .faq-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.page-faq .faq-section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: #ffffff;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.18);
}
.page-faq .faq-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-red);
  text-transform: uppercase;
}
.page-faq .faq-section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.3;
}
.page-faq .faq-section-head p {
  margin: 8px 0 0;
  font-size: 15px;
  color: rgba(42, 42, 42, 0.72);
}
.page-faq .faq-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.page-faq .faq-step-card {
  position: relative;
  padding: 30px 24px 26px;
  background: #ffffff;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 44% 44% 16px 16px / 30px 30px 16px 16px;
  box-shadow: 0 8px 26px rgba(42, 42, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-faq .faq-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(42, 42, 42, 0.12);
}
.page-faq .faq-step-card-index {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--color-red);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.page-faq .faq-step-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
}
.page-faq .faq-step-card p {
  margin: 0;
  font-size: 15px;
  color: rgba(42, 42, 42, 0.78);
}
.page-faq .faq-steps-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--color-navy);
  text-align: center;
}
.page-faq .faq-steps-figure img,
.page-faq .faq-answer-hero img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.page-faq .faq-steps-figure figcaption {
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(247, 243, 235, 0.82);
}

.page-faq .faq-qna {
  padding: 72px 20px;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-cream) 28%, var(--color-sand) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.page-faq .faq-qna-inner {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
}
.page-faq .faq-qna-inner::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(208, 52, 43, 0.16);
  pointer-events: none;
}
.page-faq .faq-qna-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.page-faq .faq-index {
  position: static;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(42, 42, 42, 0.06);
}
.page-faq .faq-index-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
}
.page-faq .faq-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-faq .faq-index-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.page-faq .faq-index-list a:hover {
  background: var(--color-cream);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--color-red);
}
.page-faq .faq-index-list a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-sand);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}
.page-faq .faq-index-note {
  margin: 16px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--color-gold);
  font-size: 13px;
  color: rgba(42, 42, 42, 0.62);
}
.page-faq .faq-answer-panel {
  display: grid;
  gap: 40px;
}
.page-faq .faq-answer-hero {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--color-dark);
}
.page-faq .faq-answer-hero figcaption {
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(247, 243, 235, 0.8);
  text-align: center;
}
.page-faq .faq-section {
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding: 28px 20px 20px;
  background: #ffffff;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(42, 42, 42, 0.05);
}
.page-faq .faq-section h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 900;
}
.page-faq .faq-section-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.page-faq .faq-section-desc {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(42, 42, 42, 0.62);
}
.page-faq .faq-item {
  margin-bottom: 12px;
  background: #fbf8f2;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px 18px 12px 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.page-faq .faq-item[open] {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 12px 26px rgba(42, 42, 42, 0.08);
}
.page-faq .faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  transition: background-color 0.2s ease;
}
.page-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.page-faq .faq-item summary:hover {
  background: rgba(212, 175, 55, 0.08);
}
.page-faq .faq-item summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
  border-radius: 14px;
}
.page-faq .faq-item-door {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 26px;
  border: 2px solid var(--color-gold);
  border-radius: 11px 11px 4px 4px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.page-faq .faq-item-door::before {
  content: "";
  position: absolute;
  inset: 4px 5px;
  border-radius: 50%;
  background: var(--color-red);
  transition: background-color 0.25s ease;
}
.page-faq .faq-item[open] .faq-item-door {
  transform: translateY(2px) scale(0.94);
  border-color: var(--color-red);
  background: rgba(212, 175, 55, 0.12);
}
.page-faq .faq-item[open] .faq-item-door::before {
  background: var(--color-gold);
}
.page-faq .faq-item-text {
  flex: 1;
}
.page-faq .faq-item-body {
  padding: 0 18px 18px;
  font-size: 15px;
  color: rgba(42, 42, 42, 0.82);
}
.page-faq .faq-item-body p {
  margin: 0 0 10px;
}
.page-faq .faq-item-body p:last-child {
  margin-bottom: 0;
}
.page-faq .faq-item-body a {
  color: var(--color-red);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  transition: color 0.2s ease;
}
.page-faq .faq-item-body a:hover {
  color: var(--color-gold);
}

.page-faq .faq-more {
  padding: 72px 20px 80px;
  background: var(--color-dark);
  color: var(--color-cream);
}
.page-faq .faq-more::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0 auto 32px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.page-faq .faq-more-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}
.page-faq .faq-more h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  color: #ffffff;
}
.page-faq .faq-more-inner > p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(247, 243, 235, 0.72);
}
.page-faq .faq-more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
.page-faq .faq-more-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(247, 243, 235, 0.05);
  color: var(--color-cream);
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.page-faq .faq-more-card:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
}
.page-faq .faq-more-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
}
.page-faq .faq-more-card strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
}
.page-faq .faq-more-card span:last-child {
  font-size: 14px;
  color: rgba(247, 243, 235, 0.7);
}

@media (min-width: 700px) {
  .page-faq .faq-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-faq .faq-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero {
    padding: 88px 24px 96px;
  }
  .page-faq .faq-hero-inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 40px;
  }
  .page-faq .faq-hero-mark {
    display: flex;
  }
  .page-faq .faq-qna-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }
  .page-faq .faq-index {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

@media (min-width: 1000px) {
  .page-faq .faq-more-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 699px) {
  .page-faq .faq-qna-inner::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-faq .faq-hero-btn,
  .page-faq .faq-step-card,
  .page-faq .faq-more-card {
    transition: none;
    transform: none;
  }
  .page-faq .faq-item,
  .page-faq .faq-item-door,
  .page-faq .faq-item[open] .faq-item-door {
    transition: none;
    transform: none;
  }
}
