.vz__text { color: rgba(245, 240, 232, .82); }

   ПОЧЕМУ НЕ display:grid/flex: заголовок+лид — это ДВА разных элемента
   (в макете — один <div>, но в разметке сайта обёртки нет, а её трогать
   нельзя). Grid с grid-row:1/3 у правого списка отдаёт ЛИШНИЙ рост высокого
   правого элемента первой строке ЦЕЛИКОМ (проверено эмпирически: даже
   grid-template-rows:min-content auto не помогает — Chromium всё равно
   считает min-content «растяжимым» треком для этой цели) — лид проваливался
   на ~150px. Flex/float с двумя разнонаправленными элементами даёт тот же
   провал по другой причине (float не может встать выше уровня, на который
   его отодвинул предыдущий float слева). Рабочий вариант — левую колонку
   вынести из потока через position:absolute (без него никак не получить
   независимую высоту колонки, потому что список вопросов должен управлять
   высотой секции). Плата: sticky на заголовке из макета отсюда не сделать
   (absolute и sticky несовместимы) — см. итоговый отчёт. */

#faq .section__title.section__title--lg { margin-bottom: 22px; }
#faq .faq__lead { max-width: 380px; margin: 0; }

@media (min-width: 768px) {
  #faq .container { display: flex; align-items: flex-start; gap: clamp(32px, 5vw, 72px); }
  #faq .faq-head {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: calc(var(--header-h) + 32px);
  }
  #faq .faq-list { flex: 1.4; min-width: min(100%, 340px); margin: 0; }
}

#faq .faq-list { display: block; }
#faq .faq-item {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border-bottom: 1px solid var(--bg-concrete);
}

#faq .faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px) 2px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-text);
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  font-weight: 600;
  color: var(--text);
}

#faq .faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  background: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all .35s cubic-bezier(.22, .61, .36, 1);
}
#faq .faq-item.is-open .faq-item__icon {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-inverse);
  transform: rotate(45deg);
}

#faq .faq-item__body {
  display: grid;

  grid-template-rows: minmax(0, 0fr);
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows .5s cubic-bezier(.22, .61, .36, 1), opacity .5s var(--ease);
}
#faq .faq-item__body > * { min-height: 0; }
#faq .faq-item.is-open .faq-item__body { grid-template-rows: minmax(0, 1fr); opacity: 1; }

#faq .faq-item__answer {
  margin: 0;
  padding: 0 36px 22px 2px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);

  max-width: calc(640px + 36px + 2px);
}

@media (prefers-reduced-motion: reduce) {
  #faq .faq-item__body,
  #faq .faq-more-wrap,
  #faq .faq-item__icon { transition: none; }
}

.final-cta { padding: clamp(80px, 11vw, 160px) 0; }

.final-cta__kicker::before { content: '( '; }
.final-cta__kicker::after { content: ' )'; }

.final-cta__title {
  font-size: clamp(38px, 7vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0;
}

.final-cta__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, .6);
  max-width: 420px;
  margin: 26px auto 34px;
}

.final-cta__actions {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta .btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
.final-cta .btn--outline-inverse {
  color: var(--text-inverse);
  border-color: var(--accent-gold);
}
.final-cta .btn--outline-inverse:hover {
  background: rgba(196, 168, 130, .15);
  color: var(--text-inverse);
}
@media (prefers-reduced-motion: reduce) {
  .final-cta .btn--light:hover { transform: none; }
}

html #docs a, html #docs button, html #docs svg { visibility: visible !important; }

.footer {
  max-width: none;
  margin: 0;
  padding: clamp(48px, 6vw, 72px) 0 36px;
}

.footer__logo {
  font-size: 44px;

  line-height: normal;
  color: var(--text-inverse);
  margin-bottom: 14px;
}

.footer__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(245, 240, 232, .55);
  margin-bottom: 0;
  max-width: none;
}

.footer__col { gap: 12px; }

.footer__label {
  font-size: 11px;
  line-height: normal;
  letter-spacing: .18em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.footer__links { gap: 12px; margin-bottom: 0; font-size: 13.5px; line-height: normal; }
.footer__links a { color: rgba(245, 240, 232, .75); }
.footer__links a:hover { color: var(--text-inverse); }

.footer__links span { color: rgba(245, 240, 232, .55); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 0;
  padding-top: 24px;
  font-size: 12.5px;
  line-height: normal;
  color: rgba(245, 240, 232, .4);
}
.footer__bottom span { display: inline; }

@media (min-width: 768px) and (max-width: 1023px) {
  .vz__wrap { height: 180vh; }

  .vz__eyebrow { font-size: 11.5px; line-height: normal; color: var(--accent-gold); }
  .vz__title { font-size: 44px; }
  .vz__text { font-size: 14.5px; }
  .vz__cap { gap: 18px; padding: 0 48px; }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
  .vz__frame {
    width: 100%;
    height: 100%;
    transform: scale(.6);
    transform-origin: 50% 50%;
    will-change: transform;
  }
}

@media (max-width: 767px) {
  .vz__label {
    left: 12px;
    bottom: 13px;
    padding: 7px 16px;
    font-size: 9px;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .final-cta { padding: 72px 0; text-align: left; }
  .final-cta__inner { display: flex; flex-direction: column; align-items: flex-start; }
  .final-cta__mark { top: 50%; font-size: 190px; color: rgba(196, 168, 130, .055); }

  .final-cta__kicker { margin: 0; font-size: 10px; line-height: normal; }
  .final-cta__title {
    margin: 22px 0 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.08;
    text-transform: none;
  }

  .final-cta__stroke { color: var(--text-inverse); -webkit-text-stroke: 0; }
  .final-cta__text {
    margin: 18px 0 0;
    max-width: none;
    font-size: 14.5px;
    line-height: 1.7;
  }
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }

  .final-cta__actions .btn {
    border-radius: var(--radius-pill);
    min-height: 0;
    padding: 17px;
    font-size: 14.5px;
    line-height: normal;
    letter-spacing: 0;
  }
  .final-cta__actions .btn--pill-outline { padding: 15.5px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .final-cta { padding: 96px 0; text-align: left; }
  .final-cta__inner { display: flex; flex-direction: column; align-items: flex-start; }
  .final-cta__mark {
    top: 50%;
    font-size: 300px;
    line-height: normal;
    color: rgba(196, 168, 130, .055);
  }

  .final-cta__kicker { margin: 0; font-size: 10px; line-height: normal; }
  .final-cta__title {
    margin: 24px 0 0;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -.02em;
    text-transform: none;
  }
  .final-cta__stroke { color: var(--text-inverse); -webkit-text-stroke: 0; }
  .final-cta__text {
    margin: 20px 0 0;
    max-width: 460px;
    font-size: 15px;
    line-height: 1.7;
  }
  .final-cta__actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 48px;
  }

  .final-cta__actions .btn {
    border-radius: var(--radius-pill);
    min-height: 0;
    padding: 17px 36px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0;
  }
}

.faq-more { display: none; }

@media (max-width: 767px) {
  #faq { padding: 64px 0; }
  #faq .section__eyebrow { margin: 0; font-size: 11px; line-height: normal; }
  #faq .section__title.section__title--lg { margin: 18px 0 0; font-size: 30px; line-height: 1.1; }
  #faq .faq__lead { margin: 14px 0 0; font-size: 14px; line-height: 1.7; }
  #faq .faq-list { margin-top: 26px; }

  #faq .faq-item__q { padding: 18px 2px; font-size: 14.5px; line-height: normal; }
  #faq .faq-item__answer { padding: 0 36px 20px 2px; font-size: 14px; line-height: 1.7; }

  #faq .faq-item__icon { width: 34px; height: 34px; }

  #faq .faq-more-wrap {
    display: grid;
    grid-template-rows: minmax(0, 0fr);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
      grid-template-rows .42s cubic-bezier(.22, .61, .36, 1),
      opacity .3s var(--ease),
      visibility 0s linear .42s;
  }
  #faq .faq-more-wrap > .faq-more-inner { min-height: 0; }
  #faq .faq-list.is-expanded .faq-more-wrap {
    grid-template-rows: minmax(0, 1fr);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  #faq .faq-more-inner .faq-item:last-child { border-bottom: 0; }

  .faq-more {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14.5px;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-pill);
    background: none;
    font-family: var(--font-text);
    font-size: 13.5px;
    font-weight: 600;
    line-height: normal;
    color: var(--text);
    cursor: pointer;
    transition: background .25s, border-color .25s;
  }
  .faq-more:hover { background: rgba(250, 247, 243, .6); }

  .faq-more [data-faq-more-icon] { font-size: 10px; color: var(--accent); }
  .faq-more[hidden] { display: none; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #faq { padding: 72px 0; }
  #faq .section__eyebrow { font-size: 11.5px; line-height: normal; }
  #faq .section__title.section__title--lg { margin: 20px 0 22px; font-size: 38px; line-height: 1.1; }
  #faq .faq__lead { margin-top: 22px; font-size: 14.5px; line-height: 1.7; }
  #faq .container { gap: 47px; }

  #faq .faq-item__q { padding: 20px 2px; font-size: 15.5px; line-height: normal; }
  #faq .faq-item__icon { width: 34px; height: 34px; }
}
