/* ===== Service Page ===== */

/* Trust */
.service-trust {
  padding: 0 0 60px 0;
}
.service-trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
}
.service-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.service-trust__item:hover {
  opacity: 1;
}
.service-trust__item img {
  height: 36px;
  width: auto;
}
.service-trust__item span {
  font-weight: 600;
  font-size: 14px;
  color: #1a89f9;
}

/* Problems */
.service-problems {
  padding: 80px 0;
}
.service-problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-problem__card {
  background: #f8fafc;
  border: 2px solid #f2f7fd;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.2s ease;
}
.service-problem__card:hover {
  border-color: #1a89f9;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 137, 249, 0.08);
}
.service-problem__icon {
  width: 48px;
  height: 48px;
  background: #f2f7fd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-problem__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 12px;
}
.service-problem__card p {
  font-size: 14px;
  line-height: 160%;
  color: #64748b;
}

/* Includes */
.service-includes {
  padding: 0 0 80px 0;
}
.service-includes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f2f7fd;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.service-includes__item:hover {
  background: #e8f3fe;
}
.service-includes__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(26, 137, 249, 0.6) 0%, #1a89f9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-includes__item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 6px;
}
.service-includes__item p {
  font-size: 14px;
  line-height: 155%;
  color: #64748b;
}

/* Advantages */
.service-advantages {
  padding: 0 0 80px 0;
}
.service-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-advantage__card {
  background: #fff;
  border: 2px solid #f2f7fd;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.service-advantage__card:hover {
  border-color: #1a89f9;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 137, 249, 0.08);
}
.service-advantage__num {
  font-weight: 700;
  font-size: 40px;
  color: #e2e8f0;
  line-height: 100%;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}
.service-advantage__card:hover .service-advantage__num {
  color: #1a89f9;
}
.service-advantage__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 12px;
}
.service-advantage__card p {
  font-size: 14px;
  line-height: 160%;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-problems__grid {
    grid-template-columns: 1fr;
  }
  .service-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-trust__grid {
    gap: 24px;
    padding: 20px 24px;
  }
  .service-trust__item img {
    height: 28px;
  }
  .service-includes__grid {
    grid-template-columns: 1fr;
  }
  .service-advantages__grid {
    grid-template-columns: 1fr;
  }
  .service-problems {
    padding: 40px 0;
  }
  .service-includes {
    padding: 0 0 40px 0;
  }
  .service-advantages {
    padding: 0 0 40px 0;
  }
}

@media (max-width: 480px) {
  .service-problem__card {
    padding: 24px;
  }
  .service-includes__item {
    padding: 16px;
  }
  .service-advantage__card {
    padding: 24px 20px;
  }
  .service-advantage__num {
    font-size: 32px;
  }
}