.services-page {
  --service-blue: #1f5f8b;
  --service-navy: #173753;
  --service-cyan: #41b7c4;
  --service-ice: #eef8fb;
  --service-text: #607382;
}

.services-hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  background: #e9f5f8 url("../imgs/128.jpg") center center/cover no-repeat;
  overflow: hidden;
}

.services-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 43, 67, .93) 0%, rgba(20, 72, 105, .82) 37%, rgba(20, 72, 105, .2) 66%, rgba(20, 72, 105, .04) 100%);
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-hero__content {
  max-width: 610px;
  padding: 90px 0;
  color: #fff;
}

.services-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #bfeef2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.services-hero__eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: #62d2dc;
}

.services-hero h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.08;
}

.services-hero p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.8;
}

.services-hero .btn {
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(3, 25, 39, .18);
}

.services-intro {
  padding: 95px 0 48px;
}

.services-intro .subheading {
  color: var(--service-cyan);
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.services-intro h2 {
  color: var(--service-navy);
  font-size: 38px;
  font-weight: 600;
}

.services-intro p {
  color: var(--service-text);
  font-size: 16px;
  line-height: 1.85;
}

.services-grid-section {
  padding: 22px 0 100px;
}

.service-card {
  height: 100%;
  position: relative;
  padding: 34px 30px 30px;
  border: 1px solid #e4eef2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 35px rgba(27, 76, 103, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}

.service-card:after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -58px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--service-ice);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #c7e6ea;
  box-shadow: 0 18px 42px rgba(27, 76, 103, .13);
}

.service-card:hover:after {
  transform: scale(1.18);
}

.service-card__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px 18px 18px 4px;
  color: var(--service-blue);
  background: var(--service-ice);
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3 {
  min-height: 52px;
  margin-bottom: 13px;
  color: var(--service-navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--service-text);
  font-size: 14px;
  line-height: 1.75;
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #d7e8ed;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.services-promise {
  padding: 0 0 100px;
}

.services-promise__box {
  padding: 42px 50px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(115deg, #173753 0%, #1f668b 60%, #39aeb9 100%);
  box-shadow: 0 18px 45px rgba(23, 55, 83, .18);
}

.services-promise__box h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.services-promise__box p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.services-promise__box .btn {
  white-space: nowrap;
  background: #fff;
  color: var(--service-blue);
  border-color: #fff;
}

@media (max-width: 991.98px) {
  .services-hero {
    min-height: 460px;
    background-position: 62% center;
  }
  .services-hero:before {
    background: linear-gradient(90deg, rgba(11, 43, 67, .94), rgba(20, 72, 105, .68));
  }
  .services-hero__content {
    max-width: 560px;
  }
}

@media (max-width: 767.98px) {
  .services-hero {
    min-height: 430px;
    background-position: 68% center;
  }
  .services-hero:before {
    background: rgba(11, 43, 67, .8);
  }
  .services-hero__content {
    padding: 68px 0;
  }
  .services-hero h1 {
    font-size: 42px;
  }
  .services-hero p {
    font-size: 16px;
  }
  .services-intro {
    padding: 70px 0 34px;
  }
  .services-intro h2 {
    font-size: 31px;
  }
  .services-grid-section {
    padding-bottom: 70px;
  }
  .service-card h3 {
    min-height: 0;
  }
  .services-promise {
    padding-bottom: 70px;
  }
  .services-promise__box {
    padding: 34px 28px;
    text-align: center;
  }
  .services-promise__box .btn {
    margin-top: 22px;
  }
}
