/* hero секция */

.st-container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.st-hero {
  padding: 90px 0 40px;
}

.st-section-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
  color: var(--text-dark);
  position: relative;
  padding-left: 0;
}

.st-section-title img {
  display: inline-block !important;
  vertical-align: baseline;
  width: 0.6em;
  height: auto;
  margin-right: 0.4em;
  transform: translateY(0.1em);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
}



.step img {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  display: block;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  color: #000000;
  margin: 0 0 10px 0;
}

.step p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 150%;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 колонки на планшетах */
    gap: 30px;
    padding: 30px;
  }

  .st-section-title {
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0.02em;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .steps-container {
    grid-template-columns: 1fr;
    /* Одна колонка — один блок под другим */
    gap: 20px;
    padding: 20px;
  }

  .st-section-title {
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0.02em;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-left: 0;
  }
}