.services {
  padding-bottom: 40px;
}

.services .services-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  min-height: 640px;
}

.services .services-showcase__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 0;
}

.services .services-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 30px;
  color: #2A2A2A;
  font-family: "Prompt", sans-serif;
}

.services .services-counter__current {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.services .services-counter__separator,
.services .services-counter__total {
  font-size: 24px;
  color: #6b7c8d;
  line-height: 1;
}

.services .services-copy {
  max-width: 320px;
}

.services .services-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a59a8;
  font-weight: 600;
}

.services h2 {
  font-family: "Prompt", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  color: #2A2A2A;
  margin-bottom: 24px;
}

.services .services-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2A2A2A;
}

.services .services-nav {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.services .services-nav__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(42, 42, 42, 0.35);
  background: #fff;
  color: #2A2A2A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services .services-nav__btn:hover {
  color: #1a59a8;
  border-color: #1a59a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(69, 186, 233, 0.18);
}

.services .services-showcase__carousel-wrap {
  min-width: 0;
  height: 100%;
}

.services .services-carousel,
.services .services-carousel .owl-stage-outer,
.services .services-carousel .owl-stage,
.services .services-carousel .owl-item {
  height: 100%;
}

.services .services-carousel .owl-stage {
  display: flex;
}

.services .services-carousel .owl-item {
  display: flex;
  height: auto;
}

.services .services-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 34px 40px;
  background: #e8f4fb;
  border: 1px solid rgba(69, 186, 233, 0.14);
  border-radius: 28px;
}

.services .services-slide__icon {
  margin-bottom: 42px;
}

.services .services-slide__content {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.services .services-slide__title {
  font-family: "Prompt", sans-serif;
  font-size: 37px;
  line-height: 1.08;
  font-weight: 600;
  color: #2A2A2A;
  margin-bottom: 22px;
  margin-top: 0;
}

.services .services-slide__description {
  margin: 0;
  color: #2A2A2A;
  font-size: 15px;
  line-height: 1.85;
  width: 100%;
  max-width: none;
}

.services .services-slide__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border: 3px solid #2A2A2A;
  border-radius: 999px;
  color: #2A2A2A;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.services .services-slide__cta:hover {
  background: #2A2A2A;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 42, 42, 0.12);
}

.services-slide__cta--light {
  color: #fff !important;
  border-color: #fff !important;
  background: transparent !important;
}

.services-slide__cta--light:hover {
  background: #fff !important;
  color: #2A2A2A !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}

.services .custom-services-icon {
  padding: 0;
  width: 126px;
  height: 126px;
  display: block;
  background: transparent;
  border-radius: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  overflow: visible;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(0%);
}

.services .services-slide:hover .custom-services-icon {
  transform: translateY(-4px);
}

.services .services-slide:hover {
  box-shadow: 0 14px 34px rgba(69, 186, 233, 0.14);
}

@media (max-width: 1200px) {
  .services .services-showcase {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .services .services-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .services .services-showcase__intro {
    padding: 0;
    justify-content: flex-start;
  }

  .services .services-copy {
    max-width: 100%;
  }

  .services .services-nav {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .services .services-counter {
    margin-bottom: 22px;
  }

  .services .services-counter__current {
    font-size: 34px;
  }

  .services .services-counter__separator,
  .services .services-counter__total {
    font-size: 20px;
  }

  .services h2 {
    font-size: 2.5rem;
  }

  .services .services-slide {
    padding: 28px 24px 30px;
  }

  .services .services-slide__title {
    font-size: 31px;
  }

  .services .custom-services-icon {
    width: 110px;
    height: 110px;
  }
}
