/* Секция "Ваши преимущества" */
.your-benefits-section {
  width: 100%;
  background: #f8f9fa;
}

/* Баннер с заголовком */
.benefits-banner {
  width: 100%;
  height: 430px;
  background-image: url('/img/products/desktop/benefit.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.benefits-title {
  font-family: 'DINPro', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  max-width: 405px;
  background: linear-gradient(
    90deg,
    #15a6e1 0%,
    #00caf4 15%,
    #00caf4 31%,
    #6789e0 50%,
    #ef786f 71%,
    #eb5c54 81%,
    #e8423b 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Четыре контейнера с предложениями */
.benefits-containers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 55px;
}

.benefit-container {
  display: flex;
  width: 205px;
  height: 125px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  justify-content: center;
}

.benefit-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-text {
  font-family: 'DINPro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #161817;
  margin: 0;
  text-align: center;
}

/* Блок с двумя параграфами */
.benefits-description {
  margin-bottom: 60px;
  text-align: center;
}

.description-paragraph {
  font-family: 'DINPro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161817;
  margin-bottom: 25px;
  max-width: 440px;
  margin: 0px auto;
}

.description-paragraph:last-child {
  margin-bottom: 0;
}

/* Баннер с фоновой картинкой */
.benefits-image-banner {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}
.mob-img {
  display: none;
}

.desk-img {
  display: block;
}

.benefits-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Блок с параграфом */
.benefits-summary {
  text-align: center;
}

.summary-text {
  font-family: 'DINPro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #161817;
  max-width: 440px;
  margin: 0px auto;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
  .your-benefits-section {
    padding: 60px 0;
  }

  .benefits-banner {
    height: 250px;
    margin-bottom: 40px;
  }

  .benefits-title {
    font-size: 36px;
    max-width: 350px;
  }

  .benefits-containers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .benefit-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    width: 205px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .benefits-description {
    margin-bottom: 40px;
  }

  .description-paragraph {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .benefits-image-banner {
    height: 300px;
    margin-bottom: 55px;
  }

  .summary-text {
    font-size: 18px;
  }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .benefits-banner-container,
  .benefits-image-banner-container {
    padding: 0px 16px;
  }

  .banner-content {
    background-image: none;
    justify-content: center;
    height: auto;
    min-height: 300px;
    padding: 0px 16px;
    flex-direction: column;
    gap: 30px;
  }

  .your-benefits-section {
    padding: 40px 0;
  }

  .benefits-banner {
    background-image: url('/img/products/mob/benefit-mob.webp');
    height: 430px;
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 0px 16px;
  }

  .benefits-title {
    font-size: 28px;
    max-width: 280px;
  }

  .benefits-containers {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 16px;
    padding: 0px 16px;
  }

  .benefit-container {
    width: 46%;
    padding: 15px;
    border-radius: 10px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .benefits-description {
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .description-paragraph {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .benefits-image-banner {
    height: 250px;
    margin-bottom: 30px;
    border-radius: 15px;
  }

  .mob-img {
    display: block;
  }

  .desk-img {
    display: none;
  }

  .summary-text {
    font-size: 16px;
    padding: 0 16px;
  }
}
