.stepsv2 { padding: 24px 16px; background: transparent; color: #0f172a;margin: 25px 0px 25px 0px; }
.stepsv2__container { max-width: 1200px; margin: 0 auto; }

.stepsv2__top { text-align: center; margin-bottom: 18px; }
.stepsv2__title {
  margin: 0 0 6px; font-weight: 800; font-size: 26px; line-height: 1.2;
}
.stepsv2__subtitle {
  margin: 0; font-size: 15px; color: #667085;
}

/* Обёртка шагов */
.stepsv2__wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Карточка шага */
.stepsv2__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
  padding: 14px;
  background: #f9fafb;
}

/* Крупный номер */
.stepsv2__num {
  width: 44px; height: 44px;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; line-height: 1;
  flex: 0 0 44px;
}

/* Текст */
.stepsv2__content { display: block; }
.stepsv2__heading { margin: 0 0 6px; font-size: 16px; font-weight: 700; line-height: 1.25; }
.stepsv2__text { margin: 0; font-size: 14px; color: #667085; line-height: 1.45; }

/* Стрелка-разделитель (показывается только на больших экранах) */
.stepsv2__sep {
  display: none;
  align-items: center; justify-content: center;
  color: #1d4ed8; font-size: 28px; line-height: 1;
}

/* ===== Responsive ===== */
@media (min-width: 992px) {
  .stepsv2__wrap {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }
  .stepsv2__item {
    flex: 1 1 0;
    background: #ffffff;
  }
  .stepsv2__sep {
    display: inline-flex;
    flex: 0 0 28px;
  }
}

/* Небольшая «hover»-подсветка только на десктопе */
@media (hover:hover) and (pointer:fine) {
  .stepsv2__item { transition: box-shadow .2s ease, transform .2s ease; }
  .stepsv2__item:hover { box-shadow: 0 8px 20px rgba(2,6,23,.08); transform: translateY(-2px); }
}