.faq {
  background: #ffffff;
  padding: 96px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.faq__inner {
  width: var(--site-content-width);
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a1a1aa;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 28px;
}

.faq__list {
  list-style: none;
}

.faq__item {
  border-bottom: 1px solid #e8e8ec;
}

.faq__item:first-child {
  border-top: 1px solid #e8e8ec;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 26px 6px;
  color: #3f3f46;
  transition: color 0.2s;
}

.faq__num {
  font-size: 12px;
  font-weight: 600;
  color: #a1a1aa;
  letter-spacing: 0.05em;
  flex: none;
  width: 20px;
}

.faq__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
  letter-spacing: -0.01em;
}

.faq__chev {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.faq__q:hover .faq__text {
  color: #18181b;
}

.faq__item.is-active .faq__q {
  color: var(--color-accent);
}

.faq__item.is-active .faq__num {
  color: var(--color-accent);
}

.faq__item.is-active .faq__chev {
  opacity: 1;
  transform: translateX(0);
}

.faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  background: var(--color-accent);
  color: #fff;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 28px -10px rgba(124, 58, 237, 0.5);
  transition: background 0.2s, transform 0.15s;
}

.faq__cta:hover {
  background: var(--color-accent-hover);
}

.faq__cta:active {
  transform: scale(0.97);
}

.faq__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.faq__cta:hover svg {
  transform: translateX(4px);
}

.faq__inline-answer {
  display: none;
  padding: 0 6px 24px 44px;
  color: #52525b;
  font-size: 16px;
  line-height: 1.6;
}

.faq__inline-answer b {
  color: #18181b;
  font-weight: 600;
}

.faq__right {
  position: sticky;
  top: calc(var(--nav-h, 76px) + 16px);
}

.faq__eyebrow-r {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.faq__title {
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.faq__title span {
  color: var(--color-accent);
}

.faq__card {
  background: #f4f5f7;
  border-radius: 26px;
  padding: 34px 38px;
  margin-top: 32px;
}

.faq__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.faq__answer {
  font-size: 18px;
  line-height: 1.62;
  color: #52525b;
}

.faq__answer b {
  color: #18181b;
  font-weight: 600;
}

.faq__contact {
  margin-top: 28px;
}

.faq__contact-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #71717a;
  margin-bottom: 20px;
  max-width: 36ch;
}

.faq__contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.faq__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #18181b;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s;
}

.faq__contact-link:hover {
  color: var(--color-accent);
}

.faq__contact-icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0f0f3;
  color: #18181b;
  transition: background 0.18s, color 0.18s;
}

.faq__contact-link:hover .faq__contact-icon {
  background: #ebe4ff;
  color: var(--color-accent);
}

.faq__contact-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  .faq {
    padding: 56px 0;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .faq__right {
    position: static;
    order: -1;
    margin-bottom: 8px;
  }

  .faq__title {
    font-size: clamp(32px, 9vw, 44px);
  }

  .faq__card {
    display: none;
  }

  .faq__contact {
    margin-top: 22px;
    margin-bottom: 8px;
  }

  .faq__contact-lead {
    font-size: 15px;
    max-width: none;
  }

  .faq__contact-link {
    font-size: 16px;
  }

  .faq__eyebrow {
    margin-top: 28px;
    margin-bottom: 12px;
    max-width: none;
  }

  .faq__q {
    padding: 22px 4px;
    gap: 14px;
    min-height: 64px;
  }

  .faq__item.is-active .faq__inline-answer {
    display: block;
  }

  .faq__inline-answer {
    padding: 0 4px 22px 38px;
    font-size: 15px;
  }

  .faq__text {
    font-size: 16px;
  }

  .faq__chev {
    opacity: 1;
    transform: none;
    color: #a1a1aa;
    transition: transform 0.25s, color 0.2s;
  }

  .faq__item.is-active .faq__chev {
    transform: rotate(90deg);
    color: var(--color-accent);
  }

  .faq__cta {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    margin-top: 28px;
    padding: 15px 24px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 48px 0;
  }

  .faq__inner {
    padding: 0;
  }

  .faq__q {
    padding: 20px 2px;
    min-height: 60px;
  }

  .faq__text {
    font-size: 15px;
  }

  .faq__inline-answer {
    padding-left: 34px;
  }
}
