.page-faq {
  --faq-dot: radial-gradient(rgba(0, 216, 255, 0.14) 1px, transparent 1px);
  position: relative;
}

.page-faq .faq-page-inner {
  position: relative;
  overflow: hidden;
}

.page-faq .faq-page-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px;
  background-image: var(--faq-dot);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

.page-faq .faq-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.page-faq .faq-hero__row {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.page-faq .faq-hero__copy {
  max-width: 540px;
}

.page-faq .faq-hero__title {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

.page-faq .faq-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-faq .faq-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-faq .faq-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.page-faq .faq-chip--blue:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 216, 255, 0.08);
}

.page-faq .faq-chip--orange:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
}

.page-faq .faq-chip--violet:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: rgba(138, 43, 226, 0.1);
}

.page-faq .faq-chip--cyan:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 216, 255, 0.08);
}

.page-faq .faq-hero__media {
  position: relative;
  margin: 0;
  min-width: 0;
  border: 1px solid var(--border-glow);
  background: var(--bg-raise);
  border-radius: var(--radius);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 36px 100%, 0 calc(100% - 36px));
}

.page-faq .faq-hero__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), transparent 70%);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}

.page-faq .faq-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.1), transparent 40%, rgba(138, 43, 226, 0.12));
  pointer-events: none;
  z-index: 1;
}

.page-faq .faq-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
}

.page-faq .faq-hero__caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 4px 12px;
  background: rgba(11, 15, 25, 0.72);
  border: 1px solid rgba(0, 216, 255, 0.35);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-main);
  letter-spacing: 0.04em;
  z-index: 2;
}

.page-faq .faq-sections {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 20px 64px;
}

.page-faq .faq-qa-group {
  --qa-accent: var(--blue);
  --qa-glass: rgba(0, 216, 255, 0.1);
  padding-bottom: 44px;
}

.page-faq .faq-qa-group--blue {
  --qa-accent: var(--blue);
  --qa-glass: rgba(0, 216, 255, 0.09);
}

.page-faq .faq-qa-group--orange {
  --qa-accent: var(--orange);
  --qa-glass: rgba(255, 106, 0, 0.12);
}

.page-faq .faq-qa-group--violet {
  --qa-accent: var(--violet);
  --qa-glass: rgba(138, 43, 226, 0.16);
}

.page-faq .faq-qa-group--contact {
  --qa-accent: var(--blue);
  --qa-glass: rgba(0, 216, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.05), rgba(138, 43, 226, 0.05));
  border: 1px solid rgba(0, 216, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
}

.page-faq .faq-qa-group + .faq-qa-group {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 44px;
}

.page-faq .faq-qa-group--contact + .faq-qa-group--contact {
  border-top-style: solid;
}

.page-faq .faq-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--qa-accent, var(--blue));
}

.page-faq .faq-section__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border: 1px solid var(--qa-accent, var(--blue));
  border-radius: 10px;
  background: var(--qa-glass, var(--glass));
  color: var(--qa-accent, var(--blue));
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.page-faq .faq-section__heading {
  min-width: 0;
  flex: 1 1 auto;
}

.page-faq .faq-section__heading h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

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

.page-faq .faq-section__tag {
  margin-left: auto;
  flex-shrink: 0;
}

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

.page-faq .faq-accordion .accordion__item {
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.page-faq .faq-accordion .accordion__item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.page-faq .faq-accordion .accordion__item[data-open] {
  border-color: var(--qa-accent, var(--blue));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--qa-glass, rgba(0, 216, 255, 0.08));
  background: linear-gradient(135deg, var(--qa-glass, rgba(0, 216, 255, 0.06)), rgba(255, 255, 255, 0.02));
}

.page-faq .faq-accordion .accordion__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.page-faq .faq-accordion .accordion__trigger:hover {
  color: #ffffff;
}

.page-faq .faq-accordion .accordion__trigger:focus-visible {
  outline: 2px solid var(--qa-accent, var(--blue));
  outline-offset: -2px;
  border-radius: var(--radius);
}

.page-faq .faq-accordion .accordion__mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--qa-accent, var(--blue));
  background: var(--qa-glass, rgba(0, 216, 255, 0.1));
}

.page-faq .faq-accordion .accordion__mark::before,
.page-faq .faq-accordion .accordion__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--qa-accent, var(--blue));
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-faq .faq-accordion .accordion__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .faq-accordion .accordion__item[data-open] .accordion__mark::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.page-faq .faq-accordion .accordion__panel-inner {
  padding: 0 18px 18px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}

.page-faq .faq-data-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-faq .faq-data-note::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px rgba(138, 43, 226, 0.7);
}

.page-faq .faq-data-note p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.page-faq .faq-data-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.page-faq .faq-data-note a:hover {
  text-decoration: underline;
}

.page-faq .faq-contact-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.08), rgba(138, 43, 226, 0.08));
  border: 1px solid rgba(0, 216, 255, 0.2);
}

.page-faq .faq-contact-card__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0, 216, 255, 0.3);
}

.page-faq .faq-contact-card__info {
  flex: 1;
  min-width: 0;
}

.page-faq .faq-contact-card__info h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.page-faq .faq-contact-card__info p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.page-faq .faq-contact-card__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.page-faq .faq-contact-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
}

.page-faq .faq-contact-card__list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.page-faq .faq-help-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
  padding: 28px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.page-faq .faq-help-cta__copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.page-faq .faq-help-cta__copy p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

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

  .page-faq .faq-contact-card__icon {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 700px) {
  .page-faq .faq-hero__inner {
    padding: 32px 28px 48px;
  }

  .page-faq .faq-hero__title {
    font-size: 48px;
  }

  .page-faq .faq-accordion .accordion__trigger {
    padding: 20px 22px;
    font-size: 17px;
  }

  .page-faq .faq-accordion .accordion__panel-inner {
    padding: 0 22px 22px;
    font-size: 16px;
  }

  .page-faq .faq-section__heading h2 {
    font-size: 24px;
  }

  .page-faq .faq-help-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-faq .faq-help-cta__copy {
    max-width: 640px;
  }
}

@media (min-width: 900px) {
  .page-faq .faq-hero__inner {
    padding: 44px 32px 56px;
  }

  .page-faq .faq-hero__row {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
    margin-top: 36px;
  }

  .page-faq .faq-hero__title {
    font-size: 56px;
  }

  .page-faq .faq-sections {
    padding: 24px 32px 96px;
  }

  .page-faq .faq-qa-group {
    padding-bottom: 56px;
  }

  .page-faq .faq-qa-group + .faq-qa-group {
    padding-top: 56px;
  }

  .page-faq .faq-qa-group--contact {
    padding: 32px;
  }

  .page-faq .faq-section__head {
    position: sticky;
    top: 32px;
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .page-faq .faq-section__tag {
    margin-left: 0;
    align-self: flex-start;
  }

  .page-faq .faq-qa-group--contact .faq-section__head {
    position: sticky;
    top: 32px;
  }

  .page-faq .faq-qa-group {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 40px;
  }
}

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

  .page-faq .faq-qa-group {
    grid-template-columns: 230px 1fr;
    gap: 56px;
  }
}
