.services-page-body {
  background: #f4f9fc;
  color: #16384b;
}
.services-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.services-page svg,
.services-header svg,
.services-footer svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-header nav > a.active {
  color: #176d9d;
}
.services-header nav > a.active:after {
  right: 0;
}
.services-page {
  overflow: hidden;
}
.service-card-icon img {
  width: 54%;
  height: 54%;
  object-fit: contain;
}
.services-hero {
  position: relative;
  min-height: 720px;
  margin: 18px max(1.5vw, 12px) 0;
  padding: clamp(70px, 9vw, 120px) max(6vw, 38px);
  border-radius: 36px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 6vw;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(56, 190, 215, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 6% 95%,
      rgba(38, 118, 255, 0.25),
      transparent 28%
    ),
    linear-gradient(135deg, #071b2a, #0d3348 55%, #0e4850);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 34px 85px rgba(8, 35, 51, 0.2);
}
.services-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
  z-index: -1;
}
.services-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.45;
  pointer-events: none;
}
.glow-one {
  width: 330px;
  height: 330px;
  right: -120px;
  top: -150px;
  background: #28b7c7;
}
.glow-two {
  width: 250px;
  height: 250px;
  left: 38%;
  bottom: -180px;
  background: #176fff;
}
.services-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.sp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8ddde0;
  font-size: 0.64rem;
  font-weight: 800;
}
.sp-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9a67;
  box-shadow: 0 0 0 7px rgba(255, 154, 103, 0.12);
}
.services-hero h1 {
  margin: 26px 0 24px;
  font-size: clamp(4rem, 6.7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 680;
}
.services-hero h1 em,
.sp-section-head h2 em,
.included-intro h2 em,
.engagement-head h2 em,
.delivery-copy h2 em,
.services-final-cta h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #7edbe5;
}
.services-hero-copy > p {
  max-width: 650px;
  color: #b8d0d9;
  line-height: 1.78;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
}
.services-hero-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 31px;
}
.sp-button {
  height: 55px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 780;
  transition: 0.3s;
}
.sp-button:hover {
  transform: translateY(-4px);
}
.sp-button.primary {
  color: #fff;
  background: linear-gradient(135deg, #2477ff, #24a8be 60%, #44c49d);
  box-shadow: 0 16px 38px rgba(26, 117, 202, 0.3);
}
.sp-button.ghost {
  color: #e2f4f6;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(12px);
}
.services-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 47px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.services-trust span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #8eb0bc;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.services-trust b {
  color: #fff;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
}
.services-hero-system {
  position: relative;
  min-height: 500px;
}
.services-hero-system.has-uploaded-image {
  display: grid;
  place-items: center;
}
.services-hero-uploaded-picture {
  display: block;
  width: min(560px, 100%);
  max-width: 100%;
}
.services-hero-uploaded-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 36px 90px rgba(2, 20, 35, 0.38);
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float {
  50% {
    transform: translateY(-10px);
  }
}
.system-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(139, 219, 228, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  animation: systemFloat 7s ease-in-out infinite;
}
.system-orbit:before,
.system-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(139, 219, 228, 0.15);
  border-radius: 50%;
  inset: 38px;
}
.system-orbit:after {
  inset: 92px;
  background: radial-gradient(
    circle,
    rgba(53, 182, 193, 0.18),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: inset 0 0 60px rgba(92, 207, 216, 0.08);
}
.system-orbit > span {
  z-index: 1;
  text-align: center;
  letter-spacing: 0.18em;
  color: #e6fbfb;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 2;
}
.system-orbit > i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #52d3ca;
  box-shadow:
    0 0 0 7px rgba(82, 211, 202, 0.1),
    0 0 25px rgba(82, 211, 202, 0.65);
}
.system-orbit > i:nth-child(1) {
  left: 35px;
  top: 68px;
}
.system-orbit > i:nth-child(2) {
  right: 24px;
  top: 170px;
  background: #69a4ff;
}
.system-orbit > i:nth-child(3) {
  left: 105px;
  bottom: 11px;
  background: #ff9a67;
}
.system-card {
  position: absolute;
  width: 235px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 21px;
  background: rgba(8, 35, 49, 0.69);
  backdrop-filter: blur(17px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  animation: cardDrift 6s ease-in-out infinite;
}
.system-card small {
  color: #71cbd2;
  font-size: 0.51rem;
  letter-spacing: 0.15em;
}
.system-card b {
  display: block;
  margin: 10px 0 6px;
  font-size: 0.9rem;
}
.system-card p {
  margin: 0;
  color: #92afba;
  font-size: 0.66rem;
  line-height: 1.55;
}
.card-one {
  left: 0;
  top: 38px;
}
.card-two {
  right: -4px;
  top: 180px;
  animation-delay: -2s;
}
.card-three {
  left: 52px;
  bottom: 7px;
  animation-delay: -4s;
}
@keyframes systemFloat {
  50% {
    transform: translate(-50%, -53%) rotate(2deg);
  }
}
@keyframes cardDrift {
  50% {
    transform: translateY(-9px);
  }
}
.service-explorer {
  padding: 120px max(5vw, 24px);
  background: linear-gradient(180deg, #f6fbfe, #edf7fc);
}
.sp-section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 8vw;
  align-items: end;
}
.sp-section-head span,
.included-intro > span,
.engagement-head > span,
.delivery-copy > span,
.technology-section > div > span,
.services-final-cta > span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2381ad;
  font-size: 0.63rem;
  font-weight: 800;
}
.sp-section-head h2,
.included-intro h2,
.engagement-head h2,
.delivery-copy h2,
.services-final-cta h2 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 5.3vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.064em;
  font-weight: 650;
}
.sp-section-head h2 em,
.included-intro h2 em,
.engagement-head h2 em,
.delivery-copy h2 em,
.services-final-cta h2 em {
  color: #3e87aa;
}
.sp-section-head p {
  margin: 0;
  color: #6d8795;
  line-height: 1.8;
}
.service-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 55px 0 30px;
  padding: 8px;
  border: 1px solid #d6e5ec;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  width: max-content;
  max-width: 100%;
  box-shadow: 0 14px 38px rgba(32, 82, 106, 0.06);
}
.service-filters button {
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 12px 16px;
  color: #64808f;
  font-size: 0.69rem;
  font-weight: 750;
  cursor: pointer;
  transition: 0.25s;
}
.service-filters button:hover {
  color: #176d9d;
  background: #edf7fb;
}
.service-filters button.active {
  color: #fff;
  background: #153f58;
  box-shadow: 0 9px 22px rgba(21, 63, 88, 0.2);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-detail-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(181, 211, 223, 0.85);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    opacity 0.35s,
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}
.service-detail-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -95px;
  top: -100px;
  background: linear-gradient(
    135deg,
    rgba(52, 156, 211, 0.16),
    rgba(62, 202, 170, 0.12)
  );
  transition: 0.45s;
}
.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: #8dc7dc;
  box-shadow: 0 28px 70px rgba(31, 82, 108, 0.13);
}
.service-detail-card.filtered-out {
  display: none;
}
.service-card-number {
  position: absolute;
  right: 28px;
  top: 25px;
  color: #a1b9c5;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}
.service-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #176bc6, #28a9b8);
  box-shadow: 0 15px 34px rgba(31, 119, 168, 0.25);
}
.service-card-icon svg {
  width: 29px;
  height: 29px;
}
.service-detail-card:nth-child(4n + 2) .service-card-icon {
  background: linear-gradient(145deg, #725ad3, #9b7ee7);
}
.service-detail-card:nth-child(4n + 3) .service-card-icon {
  background: linear-gradient(145deg, #15946e, #39b98e);
}
.service-detail-card:nth-child(4n) .service-card-icon {
  background: linear-gradient(145deg, #e06e42, #f39a62);
}
.service-detail-card h3 {
  margin: 34px 0 10px;
  font-size: 1.42rem;
  letter-spacing: -0.035em;
}
.service-detail-card > p {
  margin: 0;
  max-width: 570px;
  color: #6d8794;
  font-size: 0.82rem;
  line-height: 1.7;
}
.service-detail-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #e2edf1;
  list-style: none;
}
.service-detail-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #587789;
  font-size: 0.67rem;
}
.service-detail-card li svg {
  width: 16px;
  height: 16px;
  color: #27a37e;
}
.service-detail-card > a {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #176e9e;
  font-size: 0.72rem;
  font-weight: 780;
}
.service-detail-card > a svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #e4f2f7;
}
.included-section {
  padding: 115px max(5vw, 24px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  background: #fff;
}
.included-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.included-intro p,
.delivery-copy p {
  max-width: 520px;
  color: #6c8795;
  line-height: 1.8;
}
.included-list {
  border-top: 1px solid #dce8ee;
}
.included-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 30px 8px;
  border-bottom: 1px solid #dce8ee;
  transition: 0.3s;
}
.included-list article:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, #f0f9fd, transparent);
}
.included-list article > span {
  color: #42a2c4;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
}
.included-list h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}
.included-list p {
  margin: 0;
  color: #718a97;
  line-height: 1.65;
  font-size: 0.78rem;
}
.engagement-section {
  padding: 115px max(5vw, 24px);
  background: linear-gradient(145deg, #edf7ff, #f6f3ff 52%, #effaf5);
}
.engagement-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 58px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: stretch;
}
.engagement-grid article {
  position: relative;
  padding: 34px 28px;
  border: 1px solid #d8e6ed;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  transition: 0.35s;
}
.engagement-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 27px 65px rgba(31, 75, 102, 0.12);
}
.engagement-grid article.featured {
  color: #fff;
  background: linear-gradient(145deg, #10364d, #176377);
  border-color: #176377;
  box-shadow: 0 24px 60px rgba(20, 77, 92, 0.2);
}
.engagement-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 30px;
  background: #74ded1;
  color: #0a4b4d;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.engagement-grid small {
  color: #3387aa;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}
.engagement-grid .featured small {
  color: #8fdddf;
}
.engagement-grid h3 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}
.engagement-grid p {
  margin: 0;
  color: #6d8592;
  font-size: 0.78rem;
  line-height: 1.7;
}
.engagement-grid .featured p {
  color: #b7d1d7;
}
.engagement-grid ul {
  margin: 28px 0;
  padding: 21px 0 0;
  border-top: 1px solid #dce8ed;
  list-style: none;
}
.engagement-grid .featured ul {
  border-color: rgba(255, 255, 255, 0.14);
}
.engagement-grid li {
  margin: 10px 0;
  color: #567586;
  font-size: 0.7rem;
}
.engagement-grid .featured li {
  color: #cde4e8;
}
.engagement-grid li:before {
  content: "✓";
  margin-right: 9px;
  color: #30ac82;
}
.engagement-grid a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #176d9b;
  font-size: 0.72rem;
  font-weight: 780;
}
.engagement-grid .featured a {
  color: #83e2d8;
}
.delivery-section {
  padding: 120px max(5vw, 24px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  background: #0c2a3b;
  color: #fff;
}
.delivery-copy p {
  color: #9db9c3;
}
.delivery-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.delivery-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  padding: 28px 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.delivery-steps > li > b {
  color: #61c9ce;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
.delivery-steps h3 {
  margin: 0 0 7px;
  font-size: 1.12rem;
}
.delivery-steps p {
  margin: 0;
  color: #94b2bd;
  font-size: 0.75rem;
  line-height: 1.65;
}
.technology-section {
  padding: 80px max(5vw, 24px);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: center;
  background: #fff;
}
.technology-section h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 15px 0 0;
}
.technology-cloud {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.technology-cloud span {
  padding: 13px 16px;
  border: 1px solid #d5e5ec;
  border-radius: 13px;
  background: #f4fafc;
  color: #416b80;
  font-size: 0.68rem;
  font-weight: 720;
  transition: 0.25s;
}
.technology-cloud span:hover {
  color: #fff;
  background: #176b90;
  border-color: #176b90;
  transform: translateY(-3px);
}
.services-final-cta {
  margin: 25px max(2vw, 14px) clamp(58px, 7vw, 100px);
  padding: 105px max(6vw, 30px);
  border-radius: 35px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(55, 153, 236, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(62, 201, 166, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #092234, #113f56);
  overflow: hidden;
}
.services-final-cta h2 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.services-final-cta h2 em {
  color: #82e1df;
}
.services-final-cta p {
  max-width: 650px;
  margin: 24px auto 0;
  color: #adc6d0;
  line-height: 1.75;
}
.services-final-cta > div {
  display: flex;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 31px;
}
.services-footer {
  margin-top: 24px;
  background: #edf7fb;
  padding-top: 60px;
}
.services-footer-grid {
  padding: 65px max(5vw, 24px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 7vw;
}
.services-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.services-footer-grid p {
  max-width: 390px;
  color: #688391;
  line-height: 1.7;
}
.services-footer-grid h4 {
  margin: 0 0 10px;
  color: #2477a4;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.services-footer-grid a,
.services-footer-grid > div > span {
  color: #698493;
  font-size: 0.75rem;
}
.services-footer-bottom {
  border-top: 1px solid #d4e6ed;
  padding: 22px max(5vw, 24px);
  display: flex;
  justify-content: space-between;
  color: #78919e;
  font-size: 0.66rem;
}
[data-sp-reveal] {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
[data-sp-reveal].sp-revealed {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .services-hero {
    grid-template-columns: 1fr;
    min-height: 980px;
  }
  .services-hero-copy {
    max-width: 800px;
  }
  .services-hero-system {
    min-height: 430px;
  }
  .system-orbit {
    width: 310px;
    height: 310px;
  }
  .sp-section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .engagement-grid {
    grid-template-columns: 1fr 1fr;
  }
  .engagement-grid article:last-child {
    grid-column: 1/-1;
  }
  .technology-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 800px) {
  body.services-menu-open {
    overflow: hidden;
  }
  .services-hero {
    min-height: 920px;
    margin: 9px;
    border-radius: 27px;
    padding: 70px 22px;
  }
  .services-hero h1 {
    font-size: clamp(3.7rem, 15vw, 5.8rem);
  }
  .services-hero-system {
    min-height: 390px;
  }
  .services-hero-uploaded-picture {
    width: 100%;
  }
  .services-hero-uploaded-image {
    width: 100%;
    max-height: 470px;
    padding: 5px;
    border-radius: 24px;
  }
  .system-orbit {
    width: 260px;
    height: 260px;
  }
  .system-card {
    width: 195px;
    padding: 15px;
  }
  .card-one {
    left: -5px;
    top: 8px;
  }
  .card-two {
    right: -5px;
    top: 145px;
  }
  .card-three {
    left: 22px;
    bottom: 0;
  }
  .services-trust {
    gap: 18px;
  }
  .service-explorer,
  .included-section,
  .engagement-section,
  .delivery-section {
    padding: 85px 20px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-card {
    min-height: 410px;
  }
  .included-section,
  .delivery-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .included-intro {
    position: static;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  .engagement-grid article:last-child {
    grid-column: auto;
  }
  .technology-section {
    padding: 70px 20px;
  }
  .services-final-cta {
    margin: 14px 9px 58px;
    padding: 75px 20px;
  }
  .services-final-cta .sp-button {
    width: 100%;
  }
  .services-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
  .services-footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .services-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .service-filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .service-filters button {
    white-space: nowrap;
  }
  .services-header nav > a.active {
    color: #176d9d;
    background: #eef8fc;
  }
}
@media (max-width: 520px) {
  .services-hero {
    min-height: 880px;
  }
  .services-hero-actions .sp-button {
    width: 100%;
  }
  .services-hero-system {
    min-height: 350px;
  }
  .system-orbit {
    width: 225px;
    height: 225px;
  }
  .system-orbit:before {
    inset: 28px;
  }
  .system-orbit:after {
    inset: 65px;
  }
  .system-card {
    width: 170px;
  }
  .card-one {
    left: -10px;
  }
  .card-two {
    right: -12px;
  }
  .card-three {
    left: 7px;
  }
  .service-detail-card {
    padding: 25px 21px;
  }
  .service-detail-card ul {
    grid-template-columns: 1fr;
  }
  .included-list article {
    grid-template-columns: 38px 1fr;
  }
  .services-footer-grid {
    grid-template-columns: 1fr;
  }
  .services-footer-grid > div:first-child {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .system-orbit,
  .system-card {
    animation: none;
  }
  [data-sp-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   SERVICES — HEADER + HERO PADDING FIX
   Gives the fixed top bar proper breathing room and prevents
   the hero from sitting underneath it.
   ========================================================= */
.services-page-body .services-page {
  box-sizing: border-box;
  padding-top: 96px;
}

.services-page-body .site-header,
.services-page-body .site-header.scrolled,
.services-page-body .site-header:not(.scrolled) {
  padding-left: clamp(26px, 4.6vw, 76px) !important;
  padding-right: clamp(26px, 4.6vw, 76px) !important;
}

.services-page-body .services-hero {
  margin:
    14px
    clamp(14px, 2vw, 30px)
    0;
  padding:
    clamp(62px, 7vw, 96px)
    clamp(34px, 5.2vw, 82px);
}

@media (max-width: 1120px) {
  .services-page-body .services-page {
    padding-top: 84px;
  }

  .services-page-body .site-header,
  .services-page-body .site-header.scrolled,
  .services-page-body .site-header:not(.scrolled) {
    padding-left: clamp(18px, 3vw, 28px) !important;
    padding-right: clamp(18px, 3vw, 28px) !important;
  }

  .services-page-body .services-hero {
    margin: 10px clamp(12px, 2vw, 20px) 0;
    padding:
      clamp(56px, 7vw, 76px)
      clamp(24px, 5vw, 46px);
  }
}

@media (max-width: 680px) {
  .services-page-body .services-page {
    padding-top: 76px;
  }

  .services-page-body .site-header,
  .services-page-body .site-header.scrolled,
  .services-page-body .site-header:not(.scrolled) {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .services-page-body .services-hero {
    margin: 8px 10px 0;
    padding: 48px 18px 54px;
    border-radius: 24px;
  }
}


/* =========================================================
   SERVICES — USE HOME "USEFUL TECHNOLOGY" LOGOS
   Uploaded logos show directly without the coloured icon tile.
   ========================================================= */
.services-page-body .service-card-icon.has-uploaded-logo {
  width: 82px;
  height: 82px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent !important;
  box-shadow: none !important;
}

.services-page-body .service-detail-card:nth-child(4n + 2) .service-card-icon.has-uploaded-logo,
.services-page-body .service-detail-card:nth-child(4n + 3) .service-card-icon.has-uploaded-logo,
.services-page-body .service-detail-card:nth-child(4n) .service-card-icon.has-uploaded-logo {
  background: transparent !important;
  box-shadow: none !important;
}

.services-page-body .service-card-icon.has-uploaded-logo img {
  display: block;
  width: 74px !important;
  max-width: 74px !important;
  height: 74px !important;
  max-height: 74px !important;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none;
}

.services-page-body .service-detail-card:hover .service-card-icon.has-uploaded-logo img {
  transform: translateY(-2px) scale(1.035);
  transition: transform .28s ease;
}

@media (max-width: 680px) {
  .services-page-body .service-card-icon.has-uploaded-logo {
    width: 72px;
    height: 72px;
  }

  .services-page-body .service-card-icon.has-uploaded-logo img {
    width: 66px !important;
    max-width: 66px !important;
    height: 66px !important;
    max-height: 66px !important;
  }
}


/* =========================================================
   SERVICES V2 — PREMIUM ICONS, READABLE NUMBERS & SCROLL MOTION
   ========================================================= */
.services-page-body .services-page .bi {
  display:inline-block;
  line-height:1;
  vertical-align:-.08em;
}

.services-page-body .service-card-number {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:31px;
  padding:0 10px;
  border:1px solid #d8e6ed;
  border-radius:999px;
  color:#607d8d !important;
  background:#f7fbfd;
  font-size:.74rem !important;
  font-weight:850;
  letter-spacing:.08em !important;
}
.services-page-body .service-card-number .bi{color:#348db5;font-size:.76rem}

.services-page-body .service-card-icon.has-uploaded-logo{
  width:88px !important;height:88px !important;padding:0 !important;
  border:0 !important;border-radius:0 !important;background:transparent !important;
  box-shadow:none !important;
}
.services-page-body .service-card-icon.has-uploaded-logo img{
  width:82px !important;max-width:82px !important;height:82px !important;max-height:82px !important;
  object-fit:contain !important;background:transparent !important;border-radius:0 !important;box-shadow:none !important;
}

.services-page-body .service-detail-card li .bi,
.services-page-body .engagement-grid li .bi{
  flex:0 0 auto;color:#1b9b73;font-size:.9rem;
}
.services-page-body .service-detail-card>a,
.services-page-body .engagement-grid article>a{
  display:inline-flex;align-items:center;gap:8px;
}

.services-page-body .included-list article{grid-template-columns:76px minmax(0,1fr) !important}
.services-page-body .included-step{
  display:grid !important;grid-template-columns:34px 1fr;align-items:center;gap:8px;
  color:#527889 !important;font-size:inherit !important;letter-spacing:0 !important;
}
.services-page-body .included-step>i{
  display:grid;place-items:center;width:34px;height:34px;border:1px solid #d6e6ed;
  border-radius:11px;color:#2088b3;background:#f2f9fc;font-size:.92rem;
}
.services-page-body .included-step>b{
  color:#496b7c;font-size:.78rem;font-weight:900;letter-spacing:.1em;
}

.services-page-body .engagement-icon{
  display:grid;place-items:center;width:45px;height:45px;margin-bottom:19px;
  border:1px solid #d9e6ec;border-radius:14px;color:#287fa8;background:#f4fafc;
}
.services-page-body .engagement-icon .bi{font-size:1.08rem}
.services-page-body .engagement-grid article>small{
  font-size:.72rem !important;font-weight:850 !important;letter-spacing:.13em;
}

.services-page-body .delivery-steps li{grid-template-columns:82px minmax(0,1fr) !important}
.services-page-body .delivery-step-mark{display:grid;grid-template-columns:38px 1fr;align-items:center;gap:8px}
.services-page-body .delivery-step-mark>i{
  display:grid;place-items:center;width:38px;height:38px;border:1px solid #d7e6ed;
  border-radius:12px;color:#287fa8;background:#f4fafc;font-size:.95rem;
}
.services-page-body .delivery-step-mark>b{
  color:#4c7183 !important;font-size:.8rem !important;font-weight:900;letter-spacing:.09em;
}

.services-page-body .technology-cloud span{display:inline-flex;align-items:center;gap:8px}
.services-page-body .technology-cloud span .bi{color:#2e86ac;font-size:.82rem}
.services-page-body .services-final-cta .sp-button{display:inline-flex;align-items:center;gap:8px}

/* Staggered reveal */
.services-page-body [data-sp-reveal]{
  opacity:0;transform:translate3d(0,28px,0);
  transition:opacity .72s cubic-bezier(.2,.7,.2,1),transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay:var(--sp-delay,0ms);will-change:opacity,transform;
}
.services-page-body [data-sp-reveal].sp-revealed{opacity:1;transform:translate3d(0,0,0)}
.services-page-body .service-detail-card[data-sp-reveal]{transform:translate3d(0,32px,0) scale(.985)}
.services-page-body .service-detail-card[data-sp-reveal].sp-revealed{transform:translate3d(0,0,0) scale(1)}
.services-page-body .included-list article[data-sp-reveal]:nth-child(odd),
.services-page-body .delivery-steps li[data-sp-reveal]:nth-child(odd){transform:translate3d(-34px,0,0)}
.services-page-body .included-list article[data-sp-reveal]:nth-child(even),
.services-page-body .delivery-steps li[data-sp-reveal]:nth-child(even){transform:translate3d(34px,0,0)}
.services-page-body .included-list article[data-sp-reveal].sp-revealed,
.services-page-body .delivery-steps li[data-sp-reveal].sp-revealed{transform:translate3d(0,0,0)}
.services-page-body .engagement-grid article[data-sp-reveal]{transform:translate3d(0,34px,0) scale(.98)}
.services-page-body .engagement-grid article[data-sp-reveal].sp-revealed{transform:translate3d(0,0,0) scale(1)}

@media(max-width:700px){
  .services-page-body .service-card-number{min-height:29px;padding:0 9px;font-size:.7rem !important}
  .services-page-body .service-card-icon.has-uploaded-logo{width:76px !important;height:76px !important}
  .services-page-body .service-card-icon.has-uploaded-logo img{
    width:72px !important;max-width:72px !important;height:72px !important;max-height:72px !important;
  }
  .services-page-body .included-list article,.services-page-body .delivery-steps li{
    grid-template-columns:68px minmax(0,1fr) !important;
  }
  .services-page-body .included-step{grid-template-columns:32px 1fr;gap:5px}
  .services-page-body .included-step>i{width:32px;height:32px}
  .services-page-body .delivery-step-mark{grid-template-columns:34px 1fr;gap:5px}
  .services-page-body .delivery-step-mark>i{width:34px;height:34px}
  .services-page-body .included-list article[data-sp-reveal],
  .services-page-body .delivery-steps li[data-sp-reveal]{transform:translate3d(0,24px,0)}
  .services-page-body .included-list article[data-sp-reveal].sp-revealed,
  .services-page-body .delivery-steps li[data-sp-reveal].sp-revealed{transform:translate3d(0,0,0)}
}
@media(prefers-reduced-motion:reduce){
  .services-page-body [data-sp-reveal]{opacity:1 !important;transform:none !important;transition:none !important}
}


/* =========================================================
   SERVICES — INCLUDED + DELIVERY ICON BACKGROUND REMOVE
   Keep only the Bootstrap icon. No tile/background/border.
   ========================================================= */
.services-page-body .included-step > i,
.services-page-body .delivery-step-mark > i {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: #287fa8 !important;
}

.services-page-body .included-step > i {
  font-size: 1.15rem !important;
}

.services-page-body .delivery-step-mark > i {
  font-size: 1.18rem !important;
}

@media (max-width: 700px) {
  .services-page-body .included-step > i,
  .services-page-body .delivery-step-mark > i {
    width: auto !important;
    height: auto !important;
  }
}


/* =========================================================
   SERVICES HERO V3 — FULL IMAGE / NO OVERLAY
   Home-style full-bleed hero. Only text shadow is used.
   ========================================================= */
.services-page-body .services-hero.has-full-hero-image {
  min-height: clamp(650px, calc(100svh - 132px), 790px) !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  background: transparent !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.services-page-body .services-hero.has-full-hero-image::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-glow {
  display: none !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-system.has-uploaded-image {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  display: block !important;
  min-height: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-uploaded-picture {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-uploaded-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  background: transparent !important;
  object-fit: cover !important;
  object-position: center center !important;
  box-shadow: none !important;
  animation: none !important;
  transform: none !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(790px, 68%) !important;
  max-width: 790px !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-eyebrow,
.services-page-body .services-hero.has-full-hero-image h1,
.services-page-body .services-hero.has-full-hero-image h1 em,
.services-page-body .services-hero.has-full-hero-image .services-hero-copy > p,
.services-page-body .services-hero.has-full-hero-image .services-trust span {
  color: #ffffff !important;
  text-shadow:
    0 2px 3px rgba(0,0,0,.88),
    0 7px 20px rgba(0,0,0,.66),
    0 15px 36px rgba(0,0,0,.38) !important;
}

.services-page-body .services-hero.has-full-hero-image h1 {
  font-weight: 720 !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-copy > p {
  max-width: 650px;
  font-weight: 560;
}

.services-page-body .services-hero.has-full-hero-image .services-trust {
  border-top-color: rgba(255,255,255,.48) !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-button {
  text-shadow: none !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-button.ghost {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.72) !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

@media (max-width: 900px) {
  .services-page-body .services-hero.has-full-hero-image {
    min-height: 690px !important;
  }

  .services-page-body .services-hero.has-full-hero-image .services-hero-copy {
    width: min(100%, 700px) !important;
  }
}

@media (max-width: 680px) {
  .services-page-body .services-page {
    padding-top: 76px !important;
  }

  .services-page-body .services-hero.has-full-hero-image {
    min-height: 640px !important;
    align-items: flex-end !important;
    margin: 8px 10px 0 !important;
    padding: 46px 20px 48px !important;
    border-radius: 24px !important;
  }

  .services-page-body .services-hero.has-full-hero-image h1 {
    font-size: clamp(3rem, 14vw, 4.7rem) !important;
    line-height: .91 !important;
  }

  .services-page-body .services-hero.has-full-hero-image .services-hero-copy > p {
    font-size: .94rem !important;
    line-height: 1.62 !important;
  }

  .services-page-body .services-hero.has-full-hero-image .services-trust {
    gap: 12px 18px !important;
    margin-top: 30px !important;
    padding-top: 18px !important;
  }
}


/* =========================================================
   SERVICES HERO V3.1 — ADD PREMIUM OVERLAY
   ========================================================= */
.services-page-body .services-hero.has-full-hero-image::before {
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  content: "" !important;
  border-radius: inherit !important;
  background:
    linear-gradient(
      90deg,
      rgba(4, 21, 37, .68) 0%,
      rgba(4, 21, 37, .52) 34%,
      rgba(4, 21, 37, .26) 62%,
      rgba(4, 21, 37, .20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 12, 24, .16) 0%,
      rgba(2, 12, 24, .04) 36%,
      rgba(2, 12, 24, .30) 100%
    ) !important;
  pointer-events: none !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-copy {
  z-index: 2 !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-button.ghost {
  background: rgba(255,255,255,.10) !important;
  backdrop-filter: blur(4px) !important;
}


/* =========================================================
   SERVICES HERO V3.2 — HOME PAGE OVERLAY / NO TEXT SHADOW
   ========================================================= */
.services-page-body .services-hero.has-full-hero-image::before {
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  content: "" !important;
  border-radius: inherit !important;
  background: linear-gradient(
      90deg,
      #fcfefffa 0%,
      #f9fdffed 36%,
      #f8fdff5c 66%,
      #ffffff0d 100%
    ) !important;
  pointer-events: none !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-eyebrow,
.services-page-body .services-hero.has-full-hero-image h1,
.services-page-body .services-hero.has-full-hero-image h1 em,
.services-page-body .services-hero.has-full-hero-image .services-hero-copy > p,
.services-page-body .services-hero.has-full-hero-image .services-trust span {
  text-shadow: none !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-eyebrow {
  color: #287492 !important;
}

.services-page-body .services-hero.has-full-hero-image h1 {
  color: #12354a !important;
}

.services-page-body .services-hero.has-full-hero-image h1 em {
  color: #318eaf !important;
}

.services-page-body .services-hero.has-full-hero-image .services-hero-copy > p {
  color: #5b7686 !important;
}

.services-page-body .services-hero.has-full-hero-image .services-trust span {
  color: #708b99 !important;
}

.services-page-body .services-hero.has-full-hero-image .services-trust {
  border-top-color: rgba(65, 110, 134, .22) !important;
}

.services-page-body .services-hero.has-full-hero-image .sp-button.ghost {
  color: #234d64 !important;
  border-color: rgba(54, 101, 126, .30) !important;
  background: rgba(255,255,255,.42) !important;
  backdrop-filter: none !important;
  text-shadow: none !important;
}

@media (max-width: 680px) {
  .services-page-body .services-hero.has-full-hero-image::before {
    background: linear-gradient(#ffffff21 16%, #fbfeffed 55%, #fcfefffc 100%) !important;
  }
}
