
.mainBanner {

   margin-top: 20px;
   display: flex;


}

.mainBanner__content {

   width: 56%;
   margin-top: 60px;
   display: flex;
   flex-direction: column;

}


.mainBanner__title {

  font-weight: 700;
  font-size: 56px;
  color: #0097A7;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.mainBanner__subtitle {

  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  color: #222222;
  letter-spacing: 0;
  line-height: 1.4;
}

.mainBanner__image { 

  display: flex;
  justify-content: flex-end;
  width: 44%;
}

.mainBanner__buttons {

  margin-top: 30px;
}

.mainBanner__btn {

  display: block;
  width: 100%;
  max-width: 290px;
  border-radius: 20px;
  padding: 20px 20px;
  background-color: #f45b67;
  color: white;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.stats__list {

  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.stats {

  text-align: left;
}

.stat {

  width: 100%;
  display: flex;
  justify-content: center;
}

.stat__value {

  padding-right: 40px;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  color: #f54a59;
  order: -1;
}

.stat__label {

  margin-top: 8px;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.4;
  color: #222;
}

.stats ul li {
  margin-bottom: 6px;
}

.stats__feature {

  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
  text-align: left;
}

.stats__features {

  margin-top: 40px;
  list-style: none; 
  padding: 0;
  margin: 16px 0 0;
}

/* 1440px → 900px */
@media (max-width: 1440px) and (min-width: 901px) {
  
  .mainBanner {
    /* остаётся в ряд */
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: 5px;
  }

  .mainBanner__content {

     width: 70%;
  }

  .mainBanner__image {
    flex: 0 0 40%;
    max-width: 400px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mainBanner__image img {

    max-width: 100%;
    height: auto;        /* важное: не растягивать собаку вниз */
    object-fit: contain;
  }
}


@media (max-width: 900px) {
  .mainBanner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mainBanner__content {

    width: 100%;
    flex: unset;
  }

  .mainBanner__image {

    margin-top: 30px;
    width: 60%;
    max-height: none;
    flex: unset;
    display: none;
  }

  .mainBanner__image img {
    width: 100%;
    height: auto;
  }

  .mainBanner__subtitle {

   margin-bottom: 40px;
  }
}

@media (max-width: 480px) {

  .mainBanner {
    padding: 1.5rem 1rem;
  }

  .mainBanner__content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .mainBanner__content p.subtextLong { 
    display: none; /* опционально: скрыть длинный абзац опыта/описания */
  }

  .mainBanner__image {
    max-width: 260px;
  }
}
