*{ box-sizing:border-box; }

.steps-page{
  padding: 80px 0 120px;
  background: #FDFDFD;
}

.steps-page__top{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.steps-page__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.steps-page__lead{
  max-width: 1040px;
  margin-top: 36px;
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #1D201F;
}

.steps-page__list{
  margin-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.2);
}

.step-card{
  display:flex;
  align-items: flex-start;
  gap: 86px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.step-card__left{
  flex: 1 1 auto;
  min-width: 0;
}

.step-card__ico{
  width: 24px;
  height: 24px;
  display:block;
}

.step-card__title{
  margin-top: 15px;
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
}

.step-card__sub{
  margin-top: 10px;
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
}

.step-card__text{
  margin-top: 40px;
  font-family: "SF Pro Display", Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: #1D201F;
}

.step-card__right{
  width: 653px;
  height: 400px;
  flex: 0 0 653px;
  border-radius: 20px;
  overflow: hidden;
}

.step-card__right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1);
  transition: transform .55s ease;
  will-change: transform;
}

.step-card:hover .step-card__right img,
.step-card__right:hover img{
  transform: scale(1.08);
}

@media (max-width: 1200px){
  .step-card{
    gap: 40px;
  }

  .step-card__right{
    width: 520px;
    height: 320px;
    flex: 0 0 520px;
  }

  .step-card__title{
    font-size: 42px;
  }

  .step-card__sub,
  .step-card__text,
  .steps-page__lead{
    font-size: 21px;
  }
}

@media (max-width: 980px){
  .steps-page{
    padding: 60px 0 90px;
  }

  .steps-page__top{
    flex-direction: column;
    align-items: flex-start;
  }

  .steps-page__title{
    font-size: 44px;
  }

  .steps-page__lead{
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.3;
  }

  .steps-page__list{
    margin-top: 34px;
  }

  .step-card{
    flex-direction: column;
    gap: 24px;
    padding: 30px 0;
  }

  .step-card__title{
    font-size: 36px;
  }

  .step-card__sub{
    font-size: 18px;
  }

  .step-card__text{
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.3;
  }

  .step-card__right{
    width: 100%;
    height: auto;
    flex: 0 0 auto;
  }

  .step-card__right img{
    aspect-ratio: 653 / 400;
  }
}

@media (max-width: 640px){
  .steps-page{
    padding: 40px 0 70px;
  }

  .steps-page__title{
    font-size: 36px;
  }

  .step-card__title{
    font-size: 30px;
  }
}