*,
*::before,
*::after {
  box-sizing: border-box;
}

.the-why-services-elton {
  padding: 90px 20px;
  background: #f4f6f8;
}

.the-why-services-elton__container {
  max-width: 1280px;
  margin: 0 auto;
}

.the-why-services-elton__heading-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.the-why-services-elton__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.1;
  font-weight: 800;
  color: #061a33;
}

.the-why-services-elton__subtitle {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #5f7188;
}

.the-why-services-elton__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.the-why-services-elton__card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 16px 35px rgba(4, 24, 47, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 1;
  transform: none;
  visibility: visible;
}

.the-why-services-elton__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(4, 24, 47, 0.13);
}

.the-why-services-elton__icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e7f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.the-why-services-elton__icon {
  font-size: 2rem;
  line-height: 1;
  color: #20cbd1;
  font-weight: 800;
}

.the-why-services-elton__card-title {
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 800;
  color: #061a33;
}

.the-why-services-elton__card-text {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #5f7188;
}

@media (max-width: 1100px) {
  .the-why-services-elton__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .the-why-services-elton {
    padding: 70px 16px;
  }

  .the-why-services-elton__grid {
    grid-template-columns: 1fr;
  }

  .the-why-services-elton__card {
    padding: 28px 22px;
  }

  .the-why-services-elton__card-title {
    font-size: 1.55rem;
  }

  .the-why-services-elton__card-text,
  .the-why-services-elton__subtitle {
    font-size: 1rem;
  }
}