/* ─── STATS ─── */
.rst-stats {
  padding: 0 0 40px;
}

.rst-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rst-stat {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

.rst-stat__num {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.rst-stat__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── PROMO ─── */
.rst-promo {
  background: var(--surface);
  padding: 25px 0 40px;
}

.rst-promo__card {
  display: grid;
  grid-template-columns: 1fr 34%;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  align-items: stretch;
}

.rst-promo__photo {
  position: relative;
}

.rst-promo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rst-promo__body {
  padding: 52px 56px 52px 48px;
  display: flex;
  flex-direction: column;
}

.rst-promo__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 6px;
}

.rst-promo__sub {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 12px;
}

.rst-promo__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.rst-promo__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0 18px;
}

.rst-promo__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.rst-promo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  column-count: 2;
  column-gap: 24px;
}

.rst-promo__list-item {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
  break-inside: avoid;
  margin-bottom: 7px;
}

.rst-promo__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}

.rst-promo__logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.rst-promo__logos img {
  height: 32px;
  object-fit: contain;
}

.rst-promo__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── STEPS ─── */
.dsc-steps {
  padding: 0 0 40px;
}

.dsc-steps__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}

.dsc-steps__flow {
  display: flex;
  align-items: stretch;
}

.dsc-steps__arr {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  color: var(--muted);
}

.dsc-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dsc-step__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.dsc-step__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 5px;
}

.dsc-step__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── PRICING ─── */
.dsc-price {
  padding: 0 0 40px;
}

.dsc-price__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.dsc-price__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}

.dsc-price__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.dsc-price__factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dsc-price__factor {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 18px 20px;
}

.dsc-price__factor-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.dsc-price__factor-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── TIMELINE ─── */
.dsc-time {
  padding: 0 0 40px;
}

.dsc-time__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.dsc-time__icon {
  width: 64px;
  height: 64px;
  background: var(--red-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.dsc-time__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}

.dsc-time__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .rst-promo__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rst-promo__photo {
    height: 280px;
  }

  .rst-promo__body {
    padding: 36px 32px;
  }

  .rst-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dsc-price__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 32px;
  }

  .dsc-time__card {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 36px 32px;
  }

  .dsc-time__card .btn {
    grid-column: 1 / -1;
  }

}

@media (max-width: 860px) {
  .dsc-steps__flow {
    flex-direction: column;
    gap: 0;
  }

  .dsc-steps__arr {
    align-self: center;
    width: auto;
    padding: 4px 0;
    transform: rotate(90deg);
  }

  .dsc-step__icon {
    flex-shrink: 0;
  }
}

@media (max-width: 560px) {
  .rst-promo__body {
    padding: 28px 24px;
  }

  .rst-promo__list {
    grid-template-columns: 1fr;
  }

  .rst-stats__grid {
    grid-template-columns: 1fr;
  }

  .rst-promo__list {
    column-count: 1;
  }

  .rst-promo__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .dsc-price__card {
    padding: 28px 24px;
  }

  .dsc-price__factors {
    grid-template-columns: 1fr;
  }

  .dsc-time__card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .dsc-time__card .btn {
    width: 100%;
    justify-content: center;
  }
}
