/* Секции обновлённого лендинга (redesign-blocks-v1).
   Разметка перенесена из артбордов «Лендинг · часть 1/2» и MobileA–D.
   Палитра — токены src/styles.css; производные оттенки взяты из артбордов
   и записаны литералами, чтобы не расширять набор токенов. */

/* ── общие примитивы ─────────────────────────────────────────── */
.rs h2,
.rs h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.rs p { margin: 0; }
.rs a { color: var(--gold-dark); }
.rs a:hover { color: #9d7426; }
.rs h2 { font-size: 44px; line-height: 1.08; letter-spacing: -0.035em; }
.rs .lead,
.rs-muted { color: var(--muted); }

.rs-eyebrow {
  margin: 0;
  color: #9d7426;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.rs-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.rs-head h2 { max-width: 900px; }
.rs-head .rs-lead { max-width: 640px; font-size: 17px; line-height: 1.5; color: var(--muted); }

.rs-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.rs-dark {
  position: relative;
  overflow: hidden;
  color: #eae6ed;
  background:
    radial-gradient(circle at 8% 0%, rgb(248 179 51 / 55%), transparent 32%),
    radial-gradient(circle at 72% 20%, rgb(96 59 113 / 40%), transparent 38%),
    #181621;
  box-shadow: 0 25px 70px rgb(31 22 37 / 17%);
}
.rs-dark > *:not(.rs-ring) { position: relative; z-index: 2; }
.rs-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(242 183 42 / 22%);
  border-radius: 50%;
  pointer-events: none;
}
.rs-ring-return { width: 620px; height: 620px; left: -260px; top: -260px; }
.rs-ring-quality { width: 460px; height: 460px; right: -200px; top: -220px; }
.rs-ring-monitor { width: 720px; height: 720px; left: -320px; top: -130px; }
.rs-dcard {
  border: 1px solid rgb(242 183 42 / 35%);
  border-radius: var(--radius);
  background: rgb(23 22 31 / 96%);
}
.rs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.rs-chip-ok { background: #e6f1ea; color: var(--sage); }
.rs-tag {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #644827;
  border-radius: 5px;
  color: #eaa845;
  font-size: 11px;
  font-weight: 600;
}
.rs-ltag {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #e0d2bd;
  border-radius: 5px;
  background: #fff9ec;
  color: #9d7426;
  font-size: 11px;
  font-weight: 500;
}
.rs-ic {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.rs-ic-sm { width: 32px; height: 32px; }
.rs-ic-34 { width: 34px; height: 34px; }
.rs-ic-lg { width: 40px; height: 40px; }
.rs-ic-violet { background: var(--violet); }
.rs-ic-sage { background: var(--sage); }
.rs-ic-orange { background: var(--orange); }
.rs-ic-gold { background: var(--gold-dark); }
.rs-ic-olive { background: #8b8a22; }
.rs-ic-graphite { background: #3a3742; }
.rs-ic-amo { background: #3f8ac4; }
.rs-label {
  display: block;
  color: #a8a2ad;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.rs-num { font-family: Georgia, serif; color: var(--gold-dark); }
.rs-divider { height: 1px; background: var(--line); }
.rs-dark .rs-divider { background: rgb(255 255 255 / 10%); }

/* кнопки внутри тёмных панелей */
.rs-dark .button-secondary,
.rs-dcard .button-secondary {
  border-color: rgb(242 183 42 / 45%);
  color: var(--gold);
  background: transparent;
}
.rs-dark .button-secondary:hover,
.rs-dcard .button-secondary:hover { background: rgb(242 183 42 / 10%); }
.button-block { width: 100%; }

/* ── 02. Первый экран: лента сигналов ────────────────────────── */
.rs-stage-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgb(36 25 42 / 10%);
}
.rs-stage-frame img { display: block; width: 100%; height: auto; }
.rs-stage-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(transparent, rgb(255 255 255 / 95%));
}
.rs-stage-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -40px;
  padding: 0 40px;
}
.rs-stage-steps > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgb(36 25 42 / 6%);
}
.rs-stage-steps .rs-num { font-size: 20px; }
.rs-stage-steps div div { display: flex; flex-direction: column; gap: 3px; }
.rs-stage-steps strong { font-size: 15px; }
.rs-stage-steps span span { font-size: 13px; line-height: 1.4; }

/* ── 03. Три карточки проблемы ───────────────────────────────── */
.rs-problem h2 { text-align: center; max-width: 900px; margin: 0 auto 36px; }
.rs-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rs-problem-grid > article {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: 18px;
  background: #fbf8f3;
}
.rs-problem-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.rs-problem-grid h3 { font-size: 26px; line-height: 1.1; margin-top: 4px; }
.rs-problem-grid > article > p { font-size: 15px; line-height: 1.5; min-height: 46px; color: var(--muted); }
.rs-scene { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.rs-bubble {
  max-width: 88%;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.4;
}
.rs-bubble span { display: block; font-size: 10px; margin-bottom: 3px; }
.rs-bubble-in {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: #fff;
}
.rs-bubble-in span { color: var(--muted); }
.rs-bubble-out {
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
  background: var(--ink);
  color: #eae6ed;
}
.rs-bubble-out span { color: #a8a2ad; }
.rs-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
}
.rs-contact em { font-size: 12px; font-style: normal; color: var(--muted); }
.rs-contact b + span { font-weight: 600; font-size: 13px; }
.rs-status-left { color: var(--orange); }
.rs-status-silent { color: var(--gold-dark); }
.rs-problem-footer {
  margin: 28px 0 0;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 22px;
  color: #3d3742;
}

/* ── 04. Сейлзы тратят время ─────────────────────────────────── */
.rs-pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 48px;
  align-items: start;
}
.rs-pain-copy { display: flex; flex-direction: column; gap: 20px; }
.rs-pain-copy > p:first-of-type { font-size: 16px; line-height: 1.55; color: var(--muted); }
.rs-pain-summary { margin-top: 4px; font-size: 18px; line-height: 1.55; color: var(--ink); }
.rs-mark {
  padding: 0 3px;
  font-weight: 700;
  font-size: 1.15em;
  background: linear-gradient(transparent 62%, rgb(242 183 42 / 55%) 62%);
}
.rs-pain-list { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }
.rs-pain-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}
.rs-pain-list ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rs-pain-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── 05. Типы сигналов ───────────────────────────────────────── */
.rs-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.rs-types-grid > article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
}
.rs-types-head { display: flex; gap: 10px; align-items: center; }
.rs-types-head .rs-ic { width: 34px; height: 34px; }
.rs-types-grid strong { font-size: 16px; }
.rs-types-grid p { font-size: 13px; line-height: 1.45; min-height: 38px; color: var(--muted); }
.rs-types-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rs-sources {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  background: #fff;
}
.rs-sources-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.rs-sources-top strong { font-size: 15px; }
.rs-sources-top span { font-size: 12px; color: var(--muted); }
.rs-sources-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.rs-sources-list li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #3d3742;
  font-size: 13px;
  font-weight: 500;
}

/* ── 06. Скоринг ─────────────────────────────────────────────── */
.rs-score-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 64px;
  align-items: center;
}
.rs-score-copy { display: flex; flex-direction: column; gap: 22px; }
.rs-score-copy > p { font-size: 17px; line-height: 1.5; color: var(--muted); }
.rs-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; list-style: none; padding: 0; }
.rs-checks li { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.rs-score-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.rs-score-top { display: flex; gap: 12px; align-items: center; }
.rs-avatar {
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #9d3e40;
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
}
.rs-score-top > div { display: flex; flex-direction: column; gap: 2px; }
.rs-score-top strong { font-size: 17px; }
.rs-score-top div span { font-size: 12px; color: var(--muted); }
.rs-score-total {
  margin-left: auto;
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1;
}
.rs-score-total b { font-weight: 400; }
.rs-score-total span { font-size: 13px; color: var(--muted); }
.rs-bars { display: flex; flex-direction: column; gap: 12px; }
.rs-bar { display: flex; flex-direction: column; gap: 6px; }
.rs-bar-top { display: flex; justify-content: space-between; font-size: 14px; }
.rs-bar-top b { color: var(--gold-dark); font-weight: 700; }
.rs-bar-track { height: 6px; border-radius: 3px; background: #eee6d8; }
.rs-bar-track i { display: block; height: 6px; border-radius: 3px; }
.rs-fill-gold { background: var(--gold); }
.rs-fill-orange { background: var(--orange); }
.rs-fill-sage { background: var(--sage); }
.rs-fill-violet { background: var(--violet); }
.rs-w22 { width: 22%; }
.rs-w26 { width: 26%; }
.rs-w28 { width: 28%; }
.rs-w36 { width: 36%; }
.rs-w44 { width: 44%; }
.rs-w50 { width: 50%; }
.rs-w68 { width: 68%; }
.rs-w100 { width: 100%; }
.rs-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid #e0d2bd;
  border-radius: 10px;
  background: #fff9ec;
}
.rs-note .rs-label { color: #9d7426; }
.rs-note p { font-size: 14px; line-height: 1.45; }

/* ── 07. Как это работает ────────────────────────────────────── */
.rs-how-steps { display: flex; flex-direction: column; gap: 44px; }
.rs-how-row {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.rs-how-row-flip { grid-template-columns: minmax(0, 1fr) 360px; }
.rs-how-row-flip .rs-how-txt { order: 2; }
.rs-how-txt { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.rs-how-txt .rs-num { font-size: 22px; }
.rs-how-txt h3 { font-size: 28px; line-height: 1.1; }
.rs-how-txt p { font-size: 15px; line-height: 1.5; color: var(--muted); }
.rs-browser {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgb(54 40 24 / 8%);
}
.rs-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f4f0e8;
}
.rs-browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #e0d2bd; }
.rs-browser-bar span {
  margin-left: 14px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  color: var(--muted);
}
.rs-browser img { display: block; width: 100%; height: auto; }

/* ── 08. Закрытая сделка — не конец ──────────────────────────── */
.rs-return-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
  border-radius: 18px;
}
.rs-return-copy { display: flex; flex-direction: column; gap: 22px; }
.rs-return-copy .rs-eyebrow { color: var(--gold); }
.rs-return-copy h2 { font-size: 34px; line-height: 1.12; color: #fff; }
.rs-tl {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}
.rs-tl-line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 9px;
  height: 1px;
  border-top: 1px dashed rgb(242 183 42 / 50%);
}
.rs-tl-item { position: relative; display: flex; flex-direction: column; gap: 10px; }
.rs-tl-dot {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgb(242 183 42 / 60%);
  border-radius: 50%;
  background: #181621;
}
.rs-tl-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); }
.rs-tl-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a8a2ad;
}
.rs-tl-item p { font-size: 14px; line-height: 1.4; color: #cfc9d3; }
.rs-tl-now .rs-tl-dot i { background: var(--gold); }
.rs-tl-now span,
.rs-tl-done span { color: var(--gold); }
.rs-tl-now p,
.rs-tl-done p { color: #fff; }
.rs-tl-done .rs-tl-dot { background: var(--gold); border-color: var(--gold); }
.rs-return-card { display: flex; flex-direction: column; gap: 14px; padding: 22px; }
.rs-return-card .rs-avatar { flex: 0 0 40px; width: 40px; height: 40px; }
.rs-return-card-top { display: flex; gap: 12px; align-items: center; }
.rs-return-card-top > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rs-return-card-top strong { font-size: 16px; color: #fff; }
.rs-return-card-top span { font-size: 12px; color: #a8a2ad; }
.rs-return-card-top .rs-tag { margin-left: auto; }
.rs-return-change { display: flex; flex-direction: column; gap: 6px; }
.rs-return-change p { font-size: 13px; line-height: 1.5; color: #eae6ed; }
.rs-return-actions { display: flex; flex-direction: column; gap: 8px; }

/* ── 09. Отрасли ─────────────────────────────────────────────── */
.rs-badge {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  margin-left: 8px;
  position: relative;
  top: -3px;
  padding: 4px 9px;
  border-radius: 20px;
  font: 700 11px/1 "Avenir Next", Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rs-badge-live { background: #e6f1ea; color: var(--sage); }
.rs-badge-soon { background: var(--gold); color: var(--ink); }

/* ── 11. Качество данных ─────────────────────────────────────── */
.rs-quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 28px;
  align-items: stretch;
}
.rs-quality-steps { display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 14px; }
.rs-quality-steps li { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; list-style: none; }
.rs-quality-steps ol { list-style: none; margin: 0; padding: 0; display: contents; }
.rs-quality-steps .rs-num { flex: 0 0 auto; width: 36px; font-size: 22px; }
.rs-quality-steps div { display: flex; flex-direction: column; gap: 6px; }
.rs-quality-steps strong { font-size: 17px; }
.rs-quality-steps p { font-size: 14px; line-height: 1.5; color: var(--muted); }
.rs-check-panel { display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: 16px; }
.rs-check-head { display: flex; gap: 12px; align-items: center; }
.rs-check-head > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rs-check-head strong {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
.rs-check-head span { font-size: 12px; color: #a8a2ad; }
.rs-check-list { display: flex; flex-direction: column; gap: 8px; list-style: none; margin: 0; padding: 0; }
.rs-check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  background: rgb(255 255 255 / 3%);
}
.rs-check-list div { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rs-check-list strong { font-size: 13px; color: #fff; }
.rs-check-list span { font-size: 11px; color: #a8a2ad; }
.rs-check-yes {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
}
.rs-check-no {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
}
.rs-verdict {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgb(77 114 94 / 60%);
  border-radius: 10px;
  background: rgb(77 114 94 / 25%);
}
.rs-verdict div { display: flex; flex-direction: column; gap: 1px; }
.rs-verdict strong { font-size: 13px; color: #fff; }
.rs-verdict span { font-size: 11px; color: #a8a2ad; }

/* ── 13. Роли ────────────────────────────────────────────────── */
.rs-roles-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.rs-roles-grid > article { display: flex; flex-direction: column; gap: 14px; padding: 26px 22px; }
.rs-roles-grid h3 { font-size: 19px; }
.rs-roles-grid p { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ── 14. Быстрый старт ───────────────────────────────────────── */
.rs-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rs-quick-grid > article { display: flex; flex-direction: column; gap: 8px; padding: 24px 22px; }
.rs-quick-grid > article > span:first-child { color: var(--gold-dark); font-weight: 700; font-size: 14px; }
.rs-quick-grid h3 { font-size: 22px; line-height: 1.15; }
.rs-quick-grid > article > p { font-size: 13px; line-height: 1.45; min-height: 40px; color: var(--muted); }
.rs-quick-body { margin-top: 10px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.rs-field { display: flex; flex-direction: column; gap: 6px; }
.rs-field > span { font-size: 11px; color: var(--muted); }
.rs-field-box {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
}
.rs-field-add {
  margin-left: auto;
  padding: 2px 8px;
  border: 1px solid #e0d2bd;
  border-radius: 6px;
  background: #fff9ec;
  font-size: 11px;
  color: #9d7426;
}
.rs-or { display: flex; align-items: center; gap: 8px; }
.rs-or i { flex: 1; border-top: 1px solid var(--line); }
.rs-or span { font-size: 11px; color: var(--muted); }
.rs-upload {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background: #f3ead8;
}
.rs-upload strong { font-size: 13px; }
.rs-upload > span { font-size: 11px; color: var(--muted); }
.rs-upload .rs-bar-track { background: #e0d2bd; height: 5px; }
.rs-upload .rs-bar-track i { height: 5px; background: var(--gold); }
.rs-upload-done { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.rs-signal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.rs-signal-row.is-on { border-color: #e0d2bd; background: #fbf6e6; }
.rs-signal-row > span:first-child {
  display: grid;
  place-items: center;
  width: 60px;
  height: 34px;
  border-radius: 8px;
  background: #e8e2d6;
}
.rs-signal-row-name { flex: 1; font-size: 13px; }
.rs-signal-on {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--sage);
  border-radius: 50%;
}
.rs-signal-off { width: 18px; height: 18px; border: 1px solid #cdbdaa; border-radius: 4px; }
.rs-event-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: none;
}
.rs-event-head { display: flex; gap: 10px; align-items: center; }
.rs-event-head > div { display: flex; flex-direction: column; min-width: 0; }
.rs-event-head strong { font-size: 13px; color: #fff; }
.rs-event-head span { font-size: 11px; color: #a8a2ad; }
.rs-event-chip { align-self: flex-start; background: rgb(77 114 94 / 30%); color: #9fd3b4; }
.rs-event-meta { display: flex; flex-direction: column; gap: 1px; }
.rs-event-meta dt { font-size: 11px; color: #a8a2ad; }
.rs-event-meta dd { margin: 0; font-size: 13px; color: #fff; }
.rs-event-link { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--gold); }
.rs-message { display: flex; flex-direction: column; gap: 6px; padding: 14px; background: #fff; }
.rs-message-top { display: flex; gap: 8px; align-items: center; }
.rs-message-top strong { font-size: 13px; }
.rs-message > span { font-size: 11px; color: var(--muted); }
.rs-message p { font-size: 13px; line-height: 1.45; }
.rs-meeting { display: flex; gap: 10px; align-items: center; padding: 14px; background: #fff; }
.rs-meeting div { display: flex; flex-direction: column; }
.rs-meeting strong { font-size: 13px; }
.rs-meeting span { font-size: 11px; color: var(--muted); }

/* ── 15. Интеграции ──────────────────────────────────────────── */
.rs-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rs-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 22px 24px;
  background: #fff;
}
.rs-channel strong { display: block; font-size: 16px; margin-bottom: 4px; }
.rs-channel p { font-size: 14px; line-height: 1.5; color: var(--muted); }
.rs-channel-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.rs-channel-logo img { width: 100%; height: 100%; object-fit: contain; }
.rs-soon-grid .rs-channel-logo { width: 34px; height: 34px; }

.rs-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.rs-soon-grid > article {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: rgb(252 250 246 / 60%);
  border-style: dashed;
}
.rs-soon-grid strong { font-size: 15px; color: var(--muted); }
.rs-soon-grid p { font-size: 13px; line-height: 1.45; color: var(--muted); }
/* «Скоро» читается как недоступное: приглушённые логотипы и текст */
.rs-soon .rs-channel-logo,
.rs-soon .rs-ic { filter: grayscale(1); opacity: .5; }
.rs-soon-flag {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgb(23 19 27 / 70%);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── 17. База компаний ───────────────────────────────────────── */
.rs-builder-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #faf7f1;
  box-shadow: 0 22px 60px rgb(54 40 24 / 8%);
}
.rs-builder-preview {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  filter: blur(1.5px);
  opacity: .55;
  pointer-events: none;
}
.rs-builder-filters { display: flex; flex-direction: column; gap: 12px; }
.rs-builder-filters .rs-field-box { min-height: 36px; padding: 8px 10px; border-radius: 8px; font-size: 12px; justify-content: space-between; }
.rs-builder-table { padding: 6px 16px; background: #fff; }
.rs-builder-table > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .8fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee6d8;
  font-size: 12px;
}
.rs-builder-total {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 6px !important;
  border-bottom: 0 !important;
}
.rs-builder-overlay { position: absolute; inset: 0; display: grid; place-items: center; }
.rs-builder-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  max-width: 420px;
  padding: 28px 32px;
  border-radius: 16px;
}
.rs-builder-card .rs-chip {
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.rs-builder-card strong { font-family: Georgia, serif; font-weight: 400; font-size: 22px; color: #fff; }
.rs-builder-card p { font-size: 13px; line-height: 1.45; color: #cfc9d3; }
.rs-builder-card .button { margin-top: 6px; }

/* ── 18. Финальный CTA ───────────────────────────────────────── */
.rs-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 56px;
  align-items: center;
}
.rs-final-copy { display: flex; flex-direction: column; gap: 22px; }
.rs-final-copy > p { font-size: 17px; line-height: 1.5; color: var(--muted); }
.rs-final-actions { display: flex; gap: 14px; }
.rs-stats {
  display: flex;
  gap: 32px;
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.rs-stat { display: flex; flex-direction: column; gap: 2px; }
.rs-stat-n { font-family: Georgia, serif; font-size: 30px; white-space: nowrap; }
.rs-stat span:last-child { font-size: 12px; color: var(--muted); }
.rs-demo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.rs-demo-form .rs-eyebrow { font-size: 11px; }
.rs-demo-form > strong { font-family: Georgia, serif; font-weight: 400; font-size: 22px; }
.rs-demo-form label.rs-field { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.rs-demo-form label.rs-field span { font-size: 12px; color: var(--muted); }
.rs-demo-form label.rs-field input { margin-top: 0; }
.rs-demo-form input[type="text"],
.rs-demo-form input[type="tel"],
.rs-demo-form input[type="email"] {
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: var(--ink);
}
.rs-demo-form input::placeholder { color: #a8a2ad; }
.rs-consents { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 2px; }
.rs-consents label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  color: #3d3742;
}
.rs-consents input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--gold-dark);
}
.rs-demo-form .button { min-height: 50px; }
.rs-demo-form .form-status { margin: 0; font-size: 13px; }

/* ── планшет и узкий десктоп (между артбордами) ──────────────── */
@media (max-width: 1050px) {
  .rs h2,
  .rs-head h2 { font-size: 36px; }
  .rs .section-shell { padding: 40px 28px; }
  .rs-types-grid,
  .rs-roles-grid,
  .rs-quick-grid,
  .rs-soon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rs-pain-grid,
  .rs-score-grid,
  .rs-quality-grid,
  .rs-final-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .rs-return-panel { grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 28px; }
  .rs-how-row { grid-template-columns: 300px minmax(0, 1fr); }
  .rs-how-row-flip { grid-template-columns: minmax(0, 1fr) 300px; }
  .rs-stage-steps { padding: 0; }
}

/* ── мобильная версия (артборды MobileA–D) ───────────────────── */
@media (max-width: 760px) {
  .rs h2,
  .rs-head h2 { font-size: 30px !important; line-height: 1.1; }
  .rs h3 { font-size: 22px; }
  .rs .section-shell { padding: 28px 16px; }
  .rs-head { margin-bottom: 28px; }

  .rs-stage-steps { grid-template-columns: minmax(0, 1fr); margin-top: 16px; padding: 0; }
  .rs-problem-grid,
  .rs-types-grid,
  .rs-roles-grid,
  .rs-quick-grid,
  .rs-channels,
  .rs-soon-grid { grid-template-columns: minmax(0, 1fr); }
  .rs-problem-grid > article > p,
  .rs-quick-grid > article > p,
  .rs-types-grid p { min-height: 0; }
  .rs-pain-grid,
  .rs-score-grid,
  .rs-quality-grid,
  .rs-final-grid,
  .rs-return-panel,
  .rs-how-row,
  .rs-how-row-flip { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .rs-score-grid,
  .rs-final-grid,
  .rs-quality-grid,
  .rs-pain-grid { gap: 24px; }
  .rs-how-steps { gap: 28px; }
  .rs-how-row-flip .rs-how-txt { order: 0; }
  .rs-return-panel { padding: 20px; }
  .rs-check-panel,
  .rs-builder-card { padding: 20px; }
  .rs-check-head strong { white-space: normal; }
  .rs-builder-preview { grid-template-columns: minmax(0, 1fr); }
  .rs-final-actions { flex-direction: column; align-items: stretch; }
  .rs-final-actions .button { width: 100%; }

  .rs-tl { display: flex; flex-direction: column; }
  .rs-tl-line { display: none; }
  .rs-tl-item {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 2px 14px;
    padding-bottom: 22px;
    align-items: start;
  }
  .rs-tl-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 19px;
    bottom: 0;
    border-left: 1px dashed rgb(242 183 42 / 50%);
  }
  .rs-tl-item:last-child { padding-bottom: 0; }
  .rs-tl-item > .rs-tl-dot { grid-row: 1 / 3; grid-column: 1; }
  .rs-tl-item > span { grid-column: 2; align-self: center; line-height: 19px; }
  .rs-tl-item > p { grid-column: 2; }

  .rs-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 6px; }
  .rs-stat-n { font-size: 22px; }
  .rs-stat span:last-child { font-size: 11px; }
  .rs-score-total { margin-left: 0; }

  /* «Почему эта компания может купить именно сейчас?»: маркер-подсветка
     на двух строках выглядит рвано — на узком экране это отдельная плашка. */
  .rs-pain-summary { display: flex; flex-direction: column; gap: 12px; }
  .rs-mark {
    padding: 12px 14px;
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    background: rgb(242 183 42 / 14%);
    font-size: 1.02em;
    line-height: 1.4;
  }

  /* «Откуда берём сигналы»: подпись уходит под заголовок, а не в тот же ряд */
  .rs-sources { padding: 20px 16px; }
  .rs-sources-top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .rs-sources-top strong { font-size: 16px; }
  .rs-sources-list { gap: 6px; }
  .rs-sources-list li { padding: 6px 10px; font-size: 12px; }

  /* Отрасли: плашка статуса отдельной строкой над заголовком */
  .reference-industries-grid article { padding: 22px 18px; }
  .reference-industries-grid h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px;
    font-size: 1.5rem;
  }
  .rs-badge { order: -1; display: block; margin: 0; top: 0; }
  .reference-industries-grid article > p { margin: 0; }
  .reference-industries-grid ul { margin: 16px 0 20px; gap: 10px; }
  .reference-industries-grid .button { width: 100%; }
  .reference-next-industries { margin: 32px 0 0; }

  /* Проверка фактов. Заголовок карточки держится в одну строку за счёт
     размера, а не nowrap: с nowrap на 360px он вылезал за свою колонку и
     весь блок читался как съехавший вправо. Если места всё же не хватит —
     перенос, а не выход за край. */
  .rs-check-panel { padding: 16px 12px; }
  .rs-check-head { gap: 10px; }
  .rs-check-head strong {
    font-size: clamp(13px, 3.85vw, 16px);
    white-space: normal;
    overflow-wrap: anywhere;
  }
  /* Иконка строки меньше и ближе к краю — текст источников встаёт
     на одну левую линию с подписью «Источники подтверждения». */
  .rs-check-list li { padding: 10px; gap: 10px; }
  .rs-check-list .rs-ic-sm { width: 28px; height: 28px; }
  .rs-check-list .rs-ic-sm svg { width: 14px; height: 14px; }
  .rs-check-yes,
  .rs-check-no { width: 20px; height: 20px; }
  .rs-verdict { align-items: flex-start; padding: 12px 10px; }

  /* Интеграции: логотип и подпись в столбик, «Скоро» — приглушённо */
  .rs-channel { grid-template-columns: auto minmax(0, 1fr); gap: 12px; padding: 18px 16px; }
  .rs-channel .rs-chip { grid-column: 2; justify-self: start; }
  .rs-badge { white-space: normal; }
}
