.page-faq {
  --faq-schedule-color: var(--color-accent);
  --faq-video-color: var(--color-accent-alt);
  --faq-member-color: var(--color-teal);
  --faq-data-color: var(--color-muted);
  --faq-index-w: 210px;
  --faq-gap: 44px;
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  padding-bottom: calc(var(--space-6) + var(--space-5));
  overflow-x: hidden;
}

.page-faq .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-faq .breadcrumb-link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-faq .breadcrumb-link:hover {
  color: var(--color-accent);
}

.page-faq .breadcrumb-sep {
  color: rgba(138, 151, 168, 0.45);
}

.page-faq .breadcrumb-current {
  color: var(--color-text);
  font-weight: 500;
}

.page-faq .faq-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 56px;
  position: relative;
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 10px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--color-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.page-faq .faq-title {
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 200;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 16px 0 6px;
  color: var(--color-text);
}

.page-faq .faq-subtitle {
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
}

.page-faq .faq-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 56px;
  height: 2px;
  background: var(--color-accent);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-faq .faq-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 0 24px;
}

.page-faq .faq-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-faq .faq-clock-sm {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
}

.page-faq .tag,
.page-faq .tag-orange {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.page-faq .faq-hero-frame {
  background: var(--color-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transform: rotate(0.5deg);
}

.page-faq .faq-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq .faq-hero-coord {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  color: var(--color-accent);
  background: rgba(8, 13, 25, 0.78);
  padding: 4px 10px;
  letter-spacing: 0.08em;
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
}

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

.page-faq .faq-index {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.page-faq .faq-index-inner {
  background: rgba(22, 26, 36, 0.6);
  border: 1px solid var(--color-border);
  padding: 22px 20px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.page-faq .faq-index-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-faq .faq-index-title::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  display: inline-block;
  box-shadow: 0 0 8px var(--color-accent);
}

.page-faq .faq-index-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 18px;
}

.page-faq .faq-index-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.page-faq .faq-index-link::before {
  content: "";
  width: 3px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

.page-faq .idx-schedule::before {
  background: var(--faq-schedule-color);
}

.page-faq .idx-video::before {
  background: var(--faq-video-color);
}

.page-faq .idx-member::before {
  background: var(--faq-member-color);
}

.page-faq .idx-data::before {
  background: var(--faq-data-color);
}

.page-faq .faq-index-link:hover {
  color: var(--color-accent);
}

.page-faq .faq-index-card {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.page-faq .faq-index-contact {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.page-faq .faq-index-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
}

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

.page-faq .faq-section {
  margin-bottom: calc(var(--space-5) + var(--space-2));
  border-left: 3px solid var(--color-border);
  padding-left: 0;
  position: relative;
}

.page-faq .faq-section-schedule {
  border-left-color: var(--faq-schedule-color);
}

.page-faq .faq-section-video {
  border-left-color: var(--faq-video-color);
}

.page-faq .faq-section-member {
  border-left-color: var(--faq-member-color);
}

.page-faq .faq-section-data {
  border-left-color: var(--faq-data-color);
}

.page-faq .faq-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.page-faq .faq-section-line {
  width: 4px;
  height: 38px;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 4px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 0 100%);
}

.page-faq .faq-section-schedule .faq-section-line {
  background: var(--faq-schedule-color);
}

.page-faq .faq-section-video .faq-section-line {
  background: var(--faq-video-color);
}

.page-faq .faq-section-member .faq-section-line {
  background: var(--faq-member-color);
}

.page-faq .faq-section-data .faq-section-line {
  background: var(--faq-data-color);
}

.page-faq .faq-section-head .section-head {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.page-faq .faq-section-desc {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--color-muted);
}

.page-faq .faq-section-count {
  margin-left: auto;
  font-size: 24px;
  line-height: 1;
  color: rgba(138, 151, 168, 0.4);
  font-weight: 500;
  align-self: flex-start;
  padding-top: 2px;
}

.page-faq .faq-item {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  margin-bottom: 14px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.page-faq .faq-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 0;
  transition: height 0.3s ease;
  z-index: 1;
}

.page-faq .faq-item:hover {
  border-color: rgba(245, 247, 250, 0.16);
  transform: translateX(3px);
}

.page-faq .faq-item[open] {
  border-color: rgba(245, 247, 250, 0.14);
}

.page-faq .faq-item-schedule::before {
  background: var(--faq-schedule-color);
}

.page-faq .faq-item-video::before {
  background: var(--faq-video-color);
}

.page-faq .faq-item-member::before {
  background: var(--faq-member-color);
}

.page-faq .faq-item-data::before {
  background: var(--faq-data-color);
}

.page-faq .faq-item[open]::before {
  height: 100%;
}

.page-faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  user-select: none;
}

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

.page-faq .faq-item summary:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: -1px;
}

.page-faq .faq-item-mark {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(245, 247, 250, 0.25);
  border-radius: 50%;
  transition: border-color 0.3s;
}

.page-faq .faq-item-mark::before,
.page-faq .faq-item-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1px;
  background: var(--color-muted);
  top: 50%;
  margin-top: -1px;
  transition: all 0.3s;
}

.page-faq .faq-item-mark::after {
  width: 9px;
  left: auto;
  right: 5px;
}

.page-faq .faq-item[open] .faq-item-mark {
  border-color: var(--color-accent);
}

.page-faq .faq-item[open] .faq-item-mark::before,
.page-faq .faq-item[open] .faq-item-mark::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  top: 50%;
  margin-top: -2.5px;
  left: 3px;
  right: auto;
}

.page-faq .faq-item[open] .faq-item-mark::after {
  left: auto;
  right: 3px;
}

.page-faq .faq-item-q {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

.page-faq .faq-item-no {
  font-size: 12px;
  color: var(--color-muted);
  margin-right: 8px;
  opacity: 0.8;
}

.page-faq .faq-badge {
  flex-shrink: 0;
  font-size: 12px;
  padding: 2px 8px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

.page-faq .faq-item-a {
  padding: 2px 20px 20px 54px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
}

.page-faq .faq-item-a p {
  margin: 0 0 12px;
}

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

.page-faq .faq-item-a a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.page-faq .faq-item-a a:hover {
  text-decoration-thickness: 2px;
}

.page-faq .faq-a-figure {
  margin: 16px 0 16px;
  border: 1px solid var(--color-border);
  background: var(--color-dark);
  padding: 10px;
}

.page-faq .faq-a-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq .faq-a-figure figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

.page-faq .faq-a-note {
  font-size: 13px;
  color: var(--color-muted);
  background: rgba(8, 13, 25, 0.45);
  padding: 10px 14px;
  margin-top: 14px;
}

.page-faq .faq-more-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: calc(var(--space-4) + var(--space-2));
  background: var(--color-dark);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent-alt);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-card);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  position: relative;
}

.page-faq .faq-more-copy {
  flex: 1;
  min-width: 0;
}

.page-faq .faq-more-text {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
}

.page-faq .faq-more-text a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 46, 0.4);
}

.page-faq .faq-more-card .btn-accent {
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
}

@media (min-width: 600px) {
  .page-faq .faq-hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-faq .faq-hero-copy {
    flex: 1.2;
  }

  .page-faq .faq-hero-visual {
    flex: 1;
    min-width: 280px;
  }

  .page-faq .faq-more-card {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .page-faq .faq-layout {
    display: grid;
    grid-template-columns: var(--faq-index-w) 1fr;
    gap: var(--faq-gap);
    align-items: start;
  }

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

  .page-faq .faq-index-list {
    flex-direction: column;
    gap: 4px;
  }

  .page-faq .faq-index-link {
    white-space: normal;
    padding: 6px 0;
  }

  .page-faq .faq-item summary {
    padding: 20px 24px;
  }

  .page-faq .faq-item-a {
    padding: 4px 24px 24px 66px;
  }

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

@media (min-width: 1024px) {
  .page-faq .faq-title {
    font-size: 64px;
  }

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

  .page-faq .faq-section-head {
    padding-left: 24px;
  }

  .page-faq .faq-section-desc {
    font-size: 14px;
  }
}
