.steps{ padding:0 0 160px; }

.steps__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.steps__title{
  color:var(--dark-green);
  font-size:44px;
  font-weight:700;
  line-height:52px;
}
.steps__title .accent{ color:var(--green); }
.steps__subtitle{
  color:var(--green);
  font-size:12px;
  font-weight:500;
  line-height:1.4;
  text-align:right;
  white-space:nowrap;
}

.steps__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:52px;
}

.step-card{
  background:var(--green);
  border-radius:8px;
  padding:24px;
  color:#fff;
  min-height:120px;
  display:grid;
  grid-template-columns:24px 1fr;
  column-gap:12px;
  align-content:start;
}
.step-card__num{
  width:24px; height:24px;
  border:1px solid #fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:500;
  flex:none;
}
.step-card__body{ display:flex; flex-direction:column; }
.step-card__title{ font-size:12px; font-weight:500; line-height:1.3; }
.step-card__desc{ font-size:12px; font-weight:300; line-height:1.35; margin-top:8px; }