.rf-lead {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.rf-overline {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FA6D21;
}

@media (max-width: 767px) {
  .rf-br {
    display: none;
  }

  .rf-lead {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-note {
  position: relative;
  margin-top: 24px;
  padding: 32px 32px 32px 56px;
  background: #F9F9F9;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.rf-note::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 40px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FA6D21;
}

.rf-note--outline {
  padding: 16px;
  background: #FFF5EF;
  border: 1px solid #FA6D21
}

.rf-note--outline::before {
  display: none;
}

/* По макету peach-плашка — компактная, однострочная и без маркера */
.rf-note--peach {
  padding: 12px 16px;
  background: #FFF5EF;
}

.rf-note--peach::before {
  display: none;
}

@media (max-width: 767px) {
  .rf-note {
    padding: 12px 16px 12px 34px;
    font-size: 14px;
    line-height: 20px;
  }

  .rf-note::before {
    left: 16px;
    top: 19px;
  }

  /* обе модификации без маркера — левый отступ под него не нужен */
  .rf-note--outline,
  .rf-note--peach {
    padding: 12px 16px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ------------------------------------------------------------------------ */
.rf-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(85% 130% at 82% 0%, rgba(250, 109, 33, 0.55) 0%, rgba(250, 109, 33, 0) 55%),
    radial-gradient(70% 110% at 100% 60%, rgba(243, 82, 31, 0.5) 0%, rgba(243, 82, 31, 0) 60%),
    #1B1B1E;
}

.rf-hero .container {
  padding-top: 48px;
  padding-bottom: 128px;
}

.rf-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.rf-hero__content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 660px;
}

.rf-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.rf-hero__tags li {
  padding: 4px 12px;
  background: #5A5A5F;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFF5EF;
}

.rf-hero__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  color: #FFFFFF;
}

.rf-hero__lead {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.rf-hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rf-hero__list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.rf-hero__list li:last-child {
  margin-bottom: 0;
}

.rf-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23FA6D21' stroke-width='2' fill='none'/%3E%3Cpath d='M6 10.2l2.6 2.6L14 7.4' stroke='%23FA6D21' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

.rf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.rf-hero__messengers {
  display: flex;
  gap: 16px;
}

.rf-hero__msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  height: 48px;
  background: transparent;
  border: 1px solid #FA6D21;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  transition: 0.2s;
}

.rf-hero__msg:hover {
  background: rgba(250, 109, 33, 0.12);
  color: #FFFFFF;
}

.rf-hero__msg img {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.rf-hero__media {
  flex: 0 1 480px;
  min-width: 0;
}

@media (max-width: 1199px) {
  .rf-hero__media {
    flex-basis: 420px;
  }
}

@media (max-width: 1023px) {
  .rf-hero__media {
    display: none;
  }

  .rf-hero__title {
    font-size: 40px;
    line-height: 52px;
  }

  .rf-hero__content {
    max-width: none;
  }
}

@media (max-width: 767px) {
  /* По макету на мобиле герой — плоский тёмный, без тегов и лида */
  .rf-hero {
    background:
      radial-gradient(100% 55% at 50% 100%, rgba(250, 109, 33, 0.45) 0%, rgba(250, 109, 33, 0) 65%),
      #0A0A0B;
  }

  .rf-hero .container {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .rf-hero__tags,
  .rf-hero__lead {
    display: none;
  }

  .rf-hero__title {
    font-size: 32px;
    line-height: 44px;
  }

  .rf-hero__list {
    margin-top: 24px;
  }

  .rf-hero__list li {
    font-size: 14px;
    line-height: 20px;
    padding-left: 30px;
  }

  .rf-hero__list li::before {
    top: 0;
  }

  .rf-hero__actions {
    flex-direction: column;
  }

  .rf-hero__btn {
    display: block;
    width: 100%;
  }

  .rf-hero__messengers {
    width: 100%;
  }

  .rf-hero__msg {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-widget {
  padding: 24px;
  background: rgba(30, 30, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.rf-widget__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #B8B8C0;
}

.rf-widget__badge {
  padding: 4px 10px;
  background: rgba(250, 109, 33, 0.16);
  border-radius: 100px;
  font-weight: 700;
  color: #FFB080;
}

.rf-widget__title {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.rf-widget__sub {
  margin-top: 4px;
  color: #B8B8C0;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}

.rf-widget__label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #86868B;
}

.rf-widget__value {
  margin: 8px 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
  color: #FFFFFF;
}

.rf-widget__range {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #B8B8C0;
}

.rf-widget__bar {
  height: 10px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  overflow: hidden;
}

.rf-widget__bar i {
  display: block;
  height: 100%;
  background: #22C55E;
  border-radius: inherit;
}

.rf-widget__ok {
  position: relative;
  display: inline-block;
  padding: 6px 14px 6px 30px;
  background: rgba(47, 158, 98, 0.16);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #7DDBA8;
}

.rf-widget__ok::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2F9E62;
}

.rf-widget__devices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.rf-widget__device {
  padding: 8px 10px;
  border: 1px solid #3E3E43;
  border-radius: 8px;
}

.rf-widget__device b {
  display: block;
  color: #FFFFFF;
  white-space: nowrap;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
}

.rf-widget__device span {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  color: #7DDBA8;
}

/* ------------------------------------------------------------------------ */
.rf-kpi__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.rf-kpi__card {
  flex: 1 1 0;
  min-width: 0;
  padding: 20px 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(56, 82, 122, 0.12);
}

.rf-kpi__value {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 38px;
  line-height: 50px;
  color: #FA6D21;
  white-space: nowrap;
}

.rf-kpi__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

@media (max-width: 1199px) {
  /* «±1% / ±10%» не влезает в плитку 1/4 на узком контейнере */
  .rf-kpi__value {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 1023px) {
  .rf-kpi__grid {
    margin-top: -72px;
  }

  .rf-kpi__card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767px) {
  /* На мобиле по макету KPI-плиток нет */
  .rf-kpi {
    display: none;
  }
}

/* ------------------------------------------------------------------------ */
.rf-duo {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.rf-duo__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  background: #F9F9F9;
  border-radius: 12px;
  border: 1px solid #ECEEF1;
}

.rf-duo__card--dark {
  background: #1D1D1F;
}

/* Высота бейджа совпадает с .rf-badge: 3px + 20px + 3px + 2px рамки = 28px */
.rf-duo__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#1D1D1F, #1D1D1F) padding-box,
    linear-gradient(45deg, #F3521F 2.56%, #F78720 100%) border-box;
  background-clip: padding-box, border-box;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FA6D21;
}

.rf-duo__title {
  margin: 16px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1D1D1F;
}

.rf-duo__card--dark .rf-duo__title {
  color: #FFFFFF;
}

.rf-duo__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.rf-duo__list > li {
  margin-bottom: 8px;
  color: #FFFFFF;
}

@media (max-width: 1023px) {
  .rf-duo {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .rf-duo__card {
    padding: 16px;
  }

  .rf-duo__title {
    font-size: 18px;
    line-height: 26px;
  }

  .rf-duo__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------------------------------------------------------ */
/* Скриншот интерфейса вместо HTML-макета: рамка и фон уже в самой картинке */
.rf-shot {
  display: block;
  width: 100%;
  height: auto;
  margin: 32px 0;
}


@media (max-width: 767px) {
  .rf-shot {
    margin: 24px 0;
  }

}

/* ------------------------------------------------------------------------ */
.rf-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rf-steps__card {
  flex: 0 0 calc((100% - 80px) / 6);
  max-width: calc((100% - 80px) / 6);
  padding: 16px;
  background: #F9F9F9;
  border-radius: 8px;
}

.rf-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
}

.rf-steps__title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #1D1D1F;
}

.rf-steps__text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #74748B;
}

@media (max-width: 1023px) {
  .rf-steps__card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 767px) {
  .rf-steps {
    gap: 8px;
  }

  .rf-steps__card {
    flex: 0 0 calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }

  .rf-steps__title,
  .rf-steps__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-tol {
  display: flex;
  gap: 16px;
}

.rf-tol__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
}

.rf-tol__value {
  margin: 16px 0 8px;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #FA6D21;
}

.rf-tol__bar {
  width: 100%;
  height: 8px;
  margin-bottom: 16px;
  background: #ECEEF1;
  border-radius: 100px;
  overflow: hidden;
}

.rf-tol__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  border-radius: inherit;
}

.rf-tol__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.rf-tol__note {
  padding: 16px;
  background: #FFF5EF;
  border-radius: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .rf-tol {
    flex-direction: column;
    gap: 16px;
  }

  .rf-tol__card {
    padding: 16px;
  }

  .rf-tol__value {
    font-size: 32px;
    line-height: 40px;
  }

  .rf-tol__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-equipment__grid .da-check__card {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}

@media (max-width: 1023px) {
  .rf-equipment__grid .da-check__card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .rf-equipment__grid .da-check__card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ------------------------------------------------------------------------ */
.rf-tech__head {
  display: flex;
  gap: 48px;
}

/* По макету левая колонка уже правой: список фич начинается на 45% ширины */
.rf-tech__intro {
  flex: 0 1 460px;
  min-width: 0;
}

.rf-tech__intro .rf-lead {
  margin-bottom: 0;
}

.rf-tech__features {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rf-tech__feature {
  position: relative;
  display: flex;
  gap: 30px;
}

.rf-tech__num {
  flex: 0 0 44px;
  font-weight: 700;
  font-size: 38px;
  line-height: 50px;
  color: #FA6D21;
}

/* Вертикальный коннектор от номера к следующему — таймлайн из макета */
.rf-tech__feature:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 58px;
  bottom: -30px;
  width: 2px;
  background: #FA6D21;
}

.rf-tech__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1D1D1F;
}

.rf-tech__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #74748B;
}

@media (max-width: 1023px) {
  .rf-tech__head {
    flex-direction: column;
    gap: 32px;
  }

  /* в колонке flex-basis стал бы высотой — сбрасываем */
  .rf-tech__intro {
    flex: 0 1 auto;
  }
}

@media (max-width: 767px) {
  .rf-tech__features {
    gap: 32px;
  }

  .rf-tech__feature {
    gap: 16px;
  }

  .rf-tech__num {
    flex: 0 0 32px;
    font-size: 28px;
    line-height: 36px;
  }

  .rf-tech__feature:not(:last-child)::before {
    left: 15px;
    top: 44px;
    bottom: -24px;
  }

  .rf-tech__title {
    font-size: 18px;
    line-height: 26px;
  }

  .rf-tech__text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-roles__sub {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.rf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rf-chips span {
  padding: 10px 20px;
  background: #F9F9F9;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #3E3E43;
}

.rf-chips span.is-active {
  background: linear-gradient(45deg, #F3521F 2.56%, #F78720 100%);
  color: #FFFFFF;
}

/* ------------------------------------------------------------------------ */
/* По макету подпись стоит отдельной строкой, список — под ней */
.rf-terminal__caption {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.rf-terminal__features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rf-terminal__features li {
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

.rf-terminal__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FA6D21;
}

@media (max-width: 767px) {
  .rf-terminal__features ul {
    gap: 8px 24px;
  }

  .rf-terminal__features li {
    font-size: 14px;
    line-height: 20px;
  }

  .rf-terminal__features li::before {
    top: 6px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-stack__cards {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
}

.rf-stack__cards .da-check__card {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
}

/* По макету у таблицы нет внешней рамки — только разделители строк,
   а колонка названия прижата к краю контейнера */
.rf-stack__row {
  display: flex;
  border-bottom: 1px solid #ECEEF1;
}

.rf-stack__name {
  flex: 0 0 240px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #FA6D21;
}

.rf-stack__techs {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  padding: 10px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #3E3E43;
}

.rf-stack__techs span:not(:last-child)::after {
  content: '·';
  margin: 0 8px;
  color: #B9B9C5;
}

@media (max-width: 767px) {
  .rf-stack__cards {
    flex-direction: column;
    gap: 16px;
  }

  .rf-stack__row {
    flex-direction: column;
  }

  .rf-stack__name {
    flex: 0 0 auto;
    padding: 12px 0 0;
  }

  .rf-stack__techs {
    padding: 4px 0 12px;
  }
}

/* ------------------------------------------------------------------------ */
.rf-results {
  background:
    radial-gradient(80% 150% at 100% 0%, rgba(250, 109, 33, 0.8) 0%, rgba(250, 109, 33, 0) 60%),
    #1D1D1F;
}

.rf-results .section-title {
  color: #FFFFFF;
}

.rf-results__lead {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.rf-results__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rf-results__list li {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 2);
  max-width: calc((100% - 24px) / 2);
  padding-left: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.rf-results__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23FA6D21' stroke-width='2' fill='none'/%3E%3Cpath d='M6 10.2l2.6 2.6L14 7.4' stroke='%23FA6D21' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

.rf-results__pill {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 12px 20px 12px 42px;
  background: rgba(250, 109, 33, 0.15);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FA8B57;
}

.rf-results__pill::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FA6D21;
}

@media (max-width: 767px) {
  .rf-results__lead {
    font-size: 14px;
    line-height: 20px;
  }

  .rf-results__list {
    gap: 12px;
  }

  .rf-results__list li {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding-left: 30px;
  }

  .rf-results__list li::before {
    top: 0;
  }
}

/* ------------------------------------------------------------------------ */
/* По макету продолжение текста и плашка выровнены по тексту пункта списка
   и лежат внутри серой карточки */
.rf-closing__body {
  padding-left: 22px;
}

.rf-closing__text {
  margin: 16px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E3E43;
}

@media (max-width: 767px) {
  .rf-closing__text {
    font-size: 14px;
    line-height: 20px;
  }
}
