.page-faq {
  --faq-glow-green: rgba(57, 255, 20, 0.08);
  --faq-glow-gold: rgba(255, 215, 0, 0.08);
  padding: 24px 0 80px;
  overflow-x: clip;
}

.page-faq .faq-hero {
  padding: 12px 0 28px;
}

.page-faq .faq-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.page-faq .faq-hero__kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
}

.page-faq .faq-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 800px;
}

.page-faq .faq-hero__lead {
  margin: 0;
  max-width: 660px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}

.page-faq .faq-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 0;
  padding: 28px 0 4px;
  border-top: 1px solid var(--line-soft);
}

.page-faq .faq-index__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px 9px 12px;
  transition: border-color .2s ease, background-color .2s ease;
}

.page-faq .faq-index__item:hover,
.page-faq .faq-index__item:focus-visible {
  border-color: var(--accent-green);
  background: var(--faq-glow-green);
}

.page-faq .faq-index__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  color: #0B0F14;
  background: var(--accent-green);
}

.page-faq .faq-index__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.page-faq .faq-chapter {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line-soft);
}

.page-faq .faq-chapter--wide .faq-chapter__box {
  max-width: 1080px;
}

.page-faq .faq-chapter--tight .faq-chapter__box {
  max-width: 880px;
}

.page-faq .faq-chapter__box {
  width: 100%;
  margin: 0 auto;
}

.page-faq .faq-chapter__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}

.page-faq .faq-chapter__heading-text {
  flex: 1;
  min-width: 0;
}

.page-faq .faq-chapter__num {
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0B0F14;
  background: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  flex-shrink: 0;
}

.page-faq .faq-chapter__num--blue {
  background: var(--accent-blue);
}

.page-faq .faq-chapter__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

.page-faq .faq-list {
  width: 100%;
}

.page-faq .faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease, background-color .25s ease;
}

.page-faq .faq-item:hover {
  border-color: var(--accent-green);
}

.page-faq .faq-item[open] {
  border-color: rgba(57, 255, 20, 0.45);
  background: var(--bg-float);
}

.page-faq .faq-item__q {
  list-style: none;
  margin: 0;
  padding: 20px 56px 20px 22px;
  position: relative;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  transition: color .2s ease;
  user-select: none;
}

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

.page-faq .faq-item__q::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-float);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 18px;
  line-height: 1;
  color: var(--accent-green);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.page-faq .faq-item[open] .faq-item__q::after {
  content: "−";
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #0B0F14;
}

.page-faq .faq-item__q:hover {
  color: var(--accent-green);
}

.page-faq .faq-item__q:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: -2px;
}

.page-faq .faq-item__a {
  padding: 0 22px 20px;
  animation: page-faq-fade-in .3s ease;
}

.page-faq .faq-item__a p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}

.page-faq .faq-item__a a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color .2s ease, color .2s ease;
}

.page-faq .faq-item__a a:hover,
.page-faq .faq-item__a a:focus-visible {
  border-bottom-color: var(--accent-blue);
  color: var(--text-main);
}

.page-faq .faq-cert {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 6px;
  background: var(--faq-glow-gold);
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

.page-faq .faq-contact-inline {
  font-family: var(--font-data);
  color: var(--text-main);
}

.page-faq .faq-figure {
  margin: 20px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-panel);
}

.page-faq .faq-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-faq .faq-figure figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.page-faq .faq-timeline {
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-panel);
}

.page-faq .faq-timeline img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-faq .faq-timeline figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.page-faq .faq-contact-card {
  position: relative;
  margin-top: 44px;
  padding: 32px 24px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--bg-float), var(--bg-deep) 72%);
}

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

.page-faq .faq-contact-card__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.page-faq .faq-contact-card__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.page-faq .faq-contact-card__text {
  margin: 0 0 20px;
  max-width: 560px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.page-faq .faq-contact-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.page-faq .faq-contact-card__phone,
.page-faq .faq-contact-card__email {
  padding: 8px 16px;
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 999px;
  background: var(--faq-glow-green);
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

@keyframes page-faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .page-faq {
    padding: 48px 0 96px;
  }

  .page-faq .faq-hero {
    padding: 16px 0 44px;
  }

  .page-faq .faq-index {
    margin-top: 16px;
  }

  .page-faq .faq-chapter {
    padding: 80px 0 56px;
  }

  .page-faq .faq-chapter__head {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
  }

  .page-faq .faq-chapter__title {
    margin-bottom: 6px;
  }

  .page-faq .faq-timeline img {
    aspect-ratio: 3 / 1;
  }

  .page-faq .faq-contact-card {
    padding: 40px 36px 32px;
  }

  .page-faq .faq-contact-card__meta {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}

@media (min-width: 920px) {
  .page-faq .faq-device-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
  }

  .page-faq .faq-figure {
    margin-top: 0;
  }

  .page-faq .faq-list--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-faq .faq-list--two .faq-item:nth-child(3) {
    grid-column: 1 / -1;
  }
}
