.service-body {
  background: #fff;
}
.service-nav {
  height: 78px;
  border-bottom: 1px solid #dce3e7;
  display: flex;
  align-items: center;
}
.service-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.service-nav-links a {
  color: #10283a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.service-hero {
  padding: 95px 0;
  background: #061723;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-hero:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid #16b8d433;
  border-radius: 50%;
  right: -100px;
  top: -220px;
  box-shadow:
    0 0 0 70px #16b8d40a,
    0 0 0 140px #16b8d407;
}
.service-breadcrumb {
  color: #7cecf4;
  text-decoration: none;
  font-size: 12px;
}
.service-hero h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
  max-width: 900px;
  margin-top: 30px;
}
.service-hero .lead {
  color: #b7c9d2;
  max-width: 760px;
}
.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.service-content {
  padding: 95px 0;
}
.service-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  margin-bottom: 80px;
}
.service-intro h2,
.service-result h2 {
  font-size: clamp(36px, 4.5vw, 58px);
}
.service-intro p {
  font-size: 18px;
  color: #536875;
  margin-top: 0;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dce3e7;
  margin-bottom: 80px;
}
.deliverable {
  padding: 27px;
  background: #f7f9fa;
  min-height: 150px;
}
.deliverable span {
  font: 700 10px "Space Grotesk";
  color: #0b5bd3;
}
.deliverable h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-top: 18px;
}
.service-result {
  background: #eaf4f7;
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.service-result p {
  color: #536875;
  font-size: 17px;
}
.service-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 80px;
}
.service-reasons article {
  border-top: 3px solid #0b5bd3;
  padding: 24px 0;
}
.service-reasons h3 {
  font-size: 19px;
}
.service-reasons p {
  font-size: 14px;
  color: #61717e;
}
.service-cta {
  padding: 75px 0;
  background: #0b5bd3;
  color: #fff;
}
.service-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.service-cta h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}
.service-cta p {
  color: #dce8fc;
}
.service-footer {
  background: #04131e;
  color: #91a5b2;
  padding: 35px 0;
  font-size: 12px;
}
.service-footer .container {
  display: flex;
  justify-content: space-between;
}
.service-footer a {
  color: #fff;
}
@media (max-width: 800px) {
  .service-intro,
  .service-result {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .deliverables,
  .service-reasons {
    grid-template-columns: 1fr;
  }
  .service-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-nav-links > a:not(.button) {
    display: none;
  }
  .service-result {
    padding: 32px;
  }
  .service-footer .container {
    flex-direction: column;
    gap: 12px;
  }
}
