.page-faq {
  --faq-gold-glow: rgba(212, 175, 55, .14);
  --faq-blue-glow: rgba(0, 200, 255, .12);
  background: var(--bg-obsidian);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.75;
}

.page-faq .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 28px 0 6px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}

.page-faq .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}

.page-faq .breadcrumb a:hover {
  color: var(--blue);
}

.page-faq .breadcrumb .breadcrumb-sep {
  color: var(--line);
}

.page-faq .breadcrumb [aria-current="page"] {
  color: var(--gold);
}

.page-faq .faq-hero {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 120px;
  height: 3px;
  background: var(--gold);
  transform: skewX(-24deg);
  transform-origin: left;
}

.page-faq .faq-kicker {
  font-family: var(--headline-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.page-faq .faq-hero-title {
  font-family: var(--headline-font);
  font-size: clamp(28px, 6vw, 52px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 0 0 16px;
}

.page-faq .faq-hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}

.page-faq .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  padding: 44px 0 0;
}

.page-faq .faq-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.page-faq .faq-toc {
  border: 1px solid var(--line);
  background: var(--bg-graphite);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

.page-faq .faq-toc-label {
  font-family: var(--headline-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}

.page-faq .faq-toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
  color: var(--text);
  text-decoration: none;
  position: relative;
  font-size: 15px;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}

.page-faq .faq-toc-link:last-child {
  border-bottom: 0;
}

.page-faq .faq-toc-link:hover,
.page-faq .faq-toc-link:focus-visible {
  color: var(--gold);
  background: var(--faq-gold-glow);
  padding-left: 8px;
  outline: none;
}

.page-faq .faq-toc-index {
  font-family: var(--headline-font);
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  width: 28px;
  flex: 0 0 28px;
}

.page-faq .faq-side-note {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.page-faq .faq-side-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
}

.page-faq .faq-side-note-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--bg-graphite);
  border: 1px solid var(--line);
  padding: 4px 10px;
  margin: 0 0 16px;
}

.page-faq .faq-side-note-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

.page-faq .faq-side-note-title {
  font-family: var(--headline-font);
  font-size: 15px;
  color: var(--white);
  margin: 0 0 8px;
}

.page-faq .faq-side-note-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}

.page-faq .faq-red-num {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.page-faq .faq-side-img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.page-faq .faq-side-note-link {
  margin: 12px 0 0;
}

.page-faq .faq-side-note-link a {
  color: var(--blue);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 255, .4);
  transition: color .2s ease, border-color .2s ease;
}

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

.page-faq .faq-group {
  scroll-margin-top: 32px;
  margin-bottom: 56px;
}

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

.page-faq .faq-group-head {
  margin-bottom: 22px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-faq .faq-group-head::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--gold);
  transform: skewX(-24deg);
  margin-bottom: 18px;
}

.page-faq .faq-group-kicker {
  font-family: var(--headline-font);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}

.page-faq .faq-group-title {
  font-family: var(--headline-font);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 6px;
}

.page-faq .faq-group-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.page-faq .faq-item {
  margin-bottom: 12px;
  background: var(--bg-graphite);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.page-faq .faq-item:hover {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.page-faq .faq-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.page-faq .faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  cursor: pointer;
  position: relative;
  transition: background .25s ease;
}

.page-faq .faq-question::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}

.page-faq .faq-question:hover::before {
  transform: scaleY(1);
}

.page-faq .faq-q-index {
  font-family: var(--headline-font);
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
  flex: 0 0 38px;
}

.page-faq .faq-q-text {
  flex: 1;
  font-family: var(--headline-font);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  transition: color .25s ease;
}

.page-faq .faq-q-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  position: relative;
}

.page-faq .faq-q-icon::before,
.page-faq .faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}

.page-faq .faq-q-icon::before {
  left: 0;
  right: 0;
  top: 8px;
  height: 2px;
}

.page-faq .faq-q-icon::after {
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.page-faq .faq-toggle:focus-visible + .faq-question {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.page-faq .faq-toggle:checked + .faq-question {
  background: linear-gradient(90deg, var(--faq-gold-glow), transparent 70%);
}

.page-faq .faq-toggle:checked + .faq-question::before {
  transform: scaleY(1);
}

.page-faq .faq-toggle:checked + .faq-question .faq-q-text {
  color: var(--gold);
}

.page-faq .faq-toggle:checked + .faq-question .faq-q-icon::before {
  transform: rotate(45deg);
}

.page-faq .faq-toggle:checked + .faq-question .faq-q-icon::after {
  transform: rotate(-45deg);
}

.page-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.page-faq .faq-toggle:checked ~ .faq-answer {
  max-height: 360px;
}

.page-faq .faq-answer-inner {
  padding: 0 18px 22px 70px;
  border-top: 0 solid var(--line);
  transition: border-top-width .25s ease, padding-top .25s ease;
}

.page-faq .faq-toggle:checked ~ .faq-answer .faq-answer-inner {
  border-top-width: 1px;
  padding-top: 18px;
}

.page-faq .faq-answer p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}

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

.page-faq .faq-answer a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 255, .4);
  transition: color .2s ease, border-color .2s ease;
}

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

.page-faq .faq-contact-card {
  margin-top: 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--bg-graphite) 0%, var(--bg-raised) 100%);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.page-faq .faq-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
}

.page-faq .faq-contact-card-text {
  padding-left: 12px;
}

.page-faq .faq-contact-card-label {
  font-family: var(--headline-font);
  font-size: 18px;
  color: var(--white);
  margin: 0 0 8px;
}

.page-faq .faq-contact-card-text p:not(.faq-contact-card-label) {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.page-faq .faq-contact-img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

@media (min-width: 540px) {
  .page-faq .faq-contact-card {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }
}

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

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

  .page-faq .faq-answer-inner {
    padding-left: 88px;
  }

  .page-faq .faq-q-index {
    font-size: 30px;
    flex-basis: 44px;
  }
}

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

  .page-faq .faq-question {
    padding: 22px 24px;
  }

  .page-faq .faq-q-index {
    font-size: 34px;
    flex-basis: 50px;
  }

  .page-faq .faq-q-text {
    font-size: 16px;
  }

  .page-faq .faq-side-note {
    padding: 24px;
  }
}
