.page-faq {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

.page-faq .page-hero {
  position: relative;
  isolation: isolate;
  padding: 48px 0 56px;
}

.page-faq .page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -48px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.page-faq .page-hero .breadcrumb + .eyebrow {
  margin-top: 28px;
}

.page-faq .page-hero__headline {
  max-width: 16em;
  margin: 16px 0 20px;
  font-family: var(--font-headline);
  font-size: clamp(2.1rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-faq .page-hero__intro {
  max-width: 42em;
  margin: 0;
  color: var(--color-text-dim);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.page-faq .page-hero__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.page-faq .page-hero__hint {
  color: var(--color-text-dim);
  font-family: var(--font-data);
  font-size: 0.875rem;
}

.page-faq .page-hero__data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.page-faq .page-hero__data .metric {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.page-faq .page-hero__data .metric__value {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-accent);
}

.page-faq .page-hero__data .metric__label {
  display: block;
  margin-top: 8px;
  color: var(--color-text-dim);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
}

.page-faq .faq-path {
  padding: 0 0 48px;
}

.page-faq .faq-path__frame {
  position: relative;
  padding: 10px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-faq .faq-path__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(0, 212, 255, 0.14), transparent 32%, rgba(0, 212, 255, 0.06));
  pointer-events: none;
}

.page-faq .faq-path__frame img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 12 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}

.page-faq .faq-index {
  padding: 32px 0 56px;
}

.page-faq .faq-index h2 {
  margin: 8px 0 20px;
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-faq .faq-index__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-faq .faq-index__questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 28px;
  margin-top: 28px;
}

.page-faq .faq-index__questions a {
  display: block;
  padding: 10px 2px;
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-text-dim);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-faq .faq-index__questions a:hover {
  color: var(--color-accent);
  border-color: rgba(0, 212, 255, 0.4);
}

.page-faq .faq-board {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.page-faq .faq-section {
  position: relative;
  margin-bottom: 72px;
  scroll-margin-top: 96px;
}

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

.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.page-faq .faq-section__num {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(0, 212, 255, 0.08);
  color: var(--color-accent);
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.page-faq .faq-section__head h2 {
  margin: 2px 0 6px;
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-faq .faq-section__head p {
  margin: 0;
  color: var(--color-text-dim);
  font-size: 0.9375rem;
}

.page-faq .faq-section__items {
  border-top: 1px solid var(--color-border);
}

.page-faq .faq-section--search::before,
.page-faq .faq-section--mobile::after,
.page-faq .faq-section--data::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.page-faq .faq-section--search::before {
  top: 8%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07), transparent 70%);
}

.page-faq .faq-section--mobile::after {
  top: 12%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(57, 255, 136, 0.05), transparent 70%);
}

.page-faq .faq-section--data::after {
  bottom: -24px;
  left: 22%;
  width: 420px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(255, 201, 77, 0.05), transparent 70%);
}

.page-faq .faq-section__head,
.page-faq .faq-section__items,
.page-faq .faq-mobile {
  position: relative;
  z-index: 1;
}

.page-faq .sheet {
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  transition: background 0.25s ease;
  scroll-margin-top: 96px;
}

.page-faq .sheet.is-open {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.04), transparent 60%);
}

.page-faq .sheet__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px 20px 0;
  border: 0;
  background: none;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.page-faq .sheet__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 8px;
}

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

.page-faq .sheet__icon {
  flex: 0 0 auto;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-accent);
  font-family: var(--font-data);
  font-size: 1.125rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.page-faq .sheet.is-open .sheet__icon {
  border-color: var(--color-accent);
  transform: rotate(45deg);
}

.page-faq .sheet__content {
  padding: 0;
}

.page-faq .sheet__inner {
  max-width: 48em;
  padding: 0 8px 24px 0;
  color: var(--color-text-dim);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

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

.page-faq .sheet__inner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-faq .faq-steps {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.page-faq .faq-steps__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
}

.page-faq .faq-steps__num {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 201, 77, 0.1);
  color: var(--color-gold);
  font-family: var(--font-data);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.page-faq .faq-steps__step p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.page-faq .faq-mobile {
  display: grid;
  gap: 24px;
}

.page-faq .faq-mobile__figure {
  position: relative;
}

.page-faq .faq-mobile__figure img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-faq .faq-mobile__figure::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: calc(var(--radius-lg) - 4px);
  pointer-events: none;
}

.page-faq .faq-contact {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
  background: var(--color-bg-alt);
  scroll-margin-top: 96px;
}

.page-faq .faq-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-accent-alt), transparent);
}

.page-faq .faq-contact__inner {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: start;
}

.page-faq .faq-contact h2 {
  margin: 12px 0 10px;
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-faq .faq-contact__text > p {
  max-width: 36em;
  margin: 0;
  color: var(--color-text-dim);
}

.page-faq .faq-contact__list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
}

.page-faq .faq-contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.9375rem;
}

.page-faq .faq-contact__label {
  color: var(--color-text-dim);
  font-family: var(--font-data);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.page-faq .faq-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-faq .faq-contact__note {
  padding: 24px;
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  color: var(--color-text-dim);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-faq .faq-contact__note p {
  margin: 0 0 10px;
}

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

@media (min-width: 768px) {
  .page-faq .page-hero {
    padding: 72px 0 88px;
  }

  .page-faq .page-hero::after {
    right: 10%;
    width: 520px;
    height: 520px;
  }

  .page-faq .page-hero__intro {
    font-size: 1.125rem;
  }

  .page-faq .page-hero__data {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .page-faq .faq-path {
    padding-bottom: 72px;
  }

  .page-faq .faq-index__questions {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-faq .faq-board {
    padding: 72px 0 96px;
  }

  .page-faq .faq-section {
    margin-bottom: 96px;
  }

  .page-faq .faq-section__head {
    gap: 24px;
    margin-bottom: 32px;
  }

  .page-faq .faq-section__num {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .page-faq .sheet__trigger {
    padding: 24px 8px 24px 0;
    font-size: 1.0625rem;
  }

  .page-faq .sheet__inner {
    font-size: 1rem;
  }

  .page-faq .faq-mobile {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
  }

  .page-faq .faq-mobile__figure img {
    width: 100%;
    max-width: none;
  }

  .page-faq .faq-mobile__figure::after {
    inset: 20px;
  }

  .page-faq .faq-contact {
    padding: 80px 0 104px;
  }

  .page-faq .faq-contact__inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }

  .page-faq .faq-contact__note {
    padding: 32px;
  }
}
