/* ===============================
   SERVICES DETAILS — HEADER
   Figma node: 101:6121
================================ */

/* ---- Header shell (sticky) ---- */
.services-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background-color: var(--color-white);
  border-block-end: 1px solid var(--color-border);
}

.services-header .container {
  position: relative;
}

/* WP admin bar offset when logged in */
body.admin-bar .services-header {
  inset-block-start: 3.2rem;
}

.services-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 14.9rem 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 10rem; /* Figma 100px */
}

/* ---- Logo (ACF Options: header_logo) ---- */
.services-header__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 14.9rem; /* Figma ~149px */
  grid-column: 1;
}

.services-header__logo-img {
  width: 14.9rem;
  height: auto;
}

/* ---- Desktop navigation (WP menu: header_menu) ---- */
.services-header__nav {
  position: static;
  transform: none;
  justify-self: center;
  grid-column: 2;
  z-index: 3;
}

.services-header__menu {
  display: flex;
  align-items: center;
  gap: 0.4rem; /* Figma 4px */
}

.services-header__menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-block: 0.8rem; /* Figma 8px */
  padding-inline: 1.4rem; /* Figma 14px */
  border-radius: 1rem; /* Figma 10px */
  font-family: var(--font-poppins);
  font-size: 2rem; /* Figma 20px */
  line-height: 2rem;
  font-weight: var(--weight-medium);
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.services-header__menu > li.is-mega-menu:hover > a,
.services-header__menu > li.is-mega-menu:focus-within > a,
.services-header__menu > li.is-mega-menu.is-mega-open > a {
  color: var(--color-primary);
}

.services-header__menu > li > a:hover,
.services-header__menu > li.current-menu-item > a,
.services-header__menu > li.active > a
 {
  color: var(--color-primary);
}

/* Dropdown chevron for parent menu items */
.services-header__menu > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 1.4rem; /* Figma 14px */
  height: 1.4rem;
  background-image: var(--sd-url-img-chevron-down);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-header__menu > li.is-mega-menu:hover > a::after,
.services-header__menu > li.is-mega-menu:focus-within > a::after,
.services-header__menu > li.is-mega-menu.is-mega-open > a::after {
  transform: rotate(180deg);
}

/* Desktop sub-menu (standard dropdown) */
.services-header__menu .sub-menu {
  position: absolute;
  inset-block-start: 100%;
  inset-inline-start: 0;
  min-width: 22rem;
  padding-block: 0.8rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.services-header__menu > li {
  position: relative;
}

.services-header__menu > li.is-mega-menu {
  position: static;
}

.services-header__menu > li:hover > .sub-menu,
.services-header__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-header__menu .sub-menu a {
  display: block;
  padding-block: 0.8rem;
  padding-inline: 1.6rem;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-medium);
  color: var(--color-text);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.services-header__menu .sub-menu a:hover {
  color: var(--color-primary);
  background-color: rgba(21, 93, 252, 0.06);
}

/* ---- Mega menu dropdown — Figma node 224:2 / 144:82 ---- */
.services-mega-menu {
  position: absolute;
  inset-block-start: calc(100% - 2.4rem);
  inset-inline-start: 50%;
  z-index: 90;
  box-sizing: border-box;
  width: min(158.5rem, calc(100vw - 6.7rem));
  padding-block-start: 2.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-header__menu > li.is-mega-menu:hover > .services-mega-menu,
.services-header__menu > li.is-mega-menu:focus-within > .services-mega-menu,
.services-header__menu > li.is-mega-menu:has(.services-mega-menu:hover) > .services-mega-menu,
.services-header__menu > li.is-mega-menu.is-mega-open > .services-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.services-header__menu > li.is-mega-menu:not(:hover):not(:focus-within):not(.is-mega-open) > .services-mega-menu {
  transition-delay: 0.12s;
}

.services-mega-menu__panel {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 1rem 1rem rgba(208, 209, 212, 0.2);
  padding: 10rem;
  min-height: auto;
  opacity: 0;
  transform: translateY(-0.6rem);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-header__menu > li.is-mega-menu:hover > .services-mega-menu .services-mega-menu__panel,
.services-header__menu > li.is-mega-menu:focus-within > .services-mega-menu .services-mega-menu__panel,
.services-header__menu > li.is-mega-menu:has(.services-mega-menu:hover) > .services-mega-menu .services-mega-menu__panel,
.services-header__menu > li.is-mega-menu.is-mega-open > .services-mega-menu .services-mega-menu__panel {
  opacity: 1;
  transform: translateY(0);
}

.services-mega-menu__content {
  display: flex;
  align-items: flex-start;
  gap: 3.3rem;
}

.services-mega-menu__column {
  flex: 1 1 0;
  min-width: 0;
  padding-inline-end: 3.3rem;
  border-inline-end: 1px solid #c6c8ca;
}

.services-mega-menu__column:last-child {
  padding-inline-end: 0;
  border-inline-end: none;
}

.services-mega-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 3;
  gap: 8rem;
  position: relative;
}
.services-mega-menu__list::before {content: ""; position: absolute; top: 0; left: 41rem; width: 0.1rem; height: 100%; background-color: #C6C8CA;}
.services-mega-menu__list::after {content: ""; position: absolute; top: 0; left: 90rem; width: 0.1rem; height: 100%; background-color: #C6C8CA;}

.services-mega-menu__list > li {
  margin: 0;
}

.services-mega-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 4.9rem;
  font-weight: var(--weight-medium);
  color: var(--color-heading);
  text-decoration: none;
  padding-inline-start: 0;
  transition:
    color 0.25s ease,
    padding-inline-start 0.25s ease,
    font-weight 0.25s ease;
}

.services-mega-menu__link::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  width: 0.663rem;
  height: 1.2rem;
  background-image: var(--sd-url-img-mega-menu-arrow);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateY(-50%) translateX(-0.4rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.services-mega-menu__link::after {
  content: '';
  position: absolute;
  inset-inline-start: 2.1rem;
  inset-block-end: 1.2rem;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-mega-menu__link:hover {
  padding-inline-start: 2.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.services-mega-menu__link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.services-mega-menu__link:hover::after {
  width: min(29rem, calc(100% - 2.1rem));
}

.services-mega-menu__list > li.active > .services-mega-menu__link,
.services-mega-menu__link.active {
  padding-inline-start: 2.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}
 
.services-mega-menu__list > li.active > .services-mega-menu__link::before,
.services-mega-menu__link.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
 
.services-mega-menu__list > li.active > .services-mega-menu__link::after,
.services-mega-menu__link.active::after {
  width: min(29rem, calc(100% - 2.1rem));
}

.ai-development-company-for-startups .specialize_section {padding-block-start: 0;}
.ai-development-company-for-startups .services-why-ai__inner {min-height: 104rem;}
.ai-development-company-for-startups .services-why-ai__media {height: 104rem;}
.ai-development-company-for-startups .services-ai-dev__card:last-of-type::after {display: none;}
.ai-development-company-for-startups .services-why-ai__item:last-of-type::before {display: none;}
/* ---- CTA button (ACF Options: header_button) ---- */
.services-header__cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem; /* Figma 40px */
  padding-block: 1rem; /* Figma 10px */
  padding-inline: 2rem; /* Figma 20px */
  border-radius: 0.5rem; /* Figma 5px */
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 1.8rem; /* Figma 18px */
  line-height: 2rem;
  font-weight: var(--weight-semibold);
  text-align: center;
  white-space: nowrap;
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.services-header__cta:hover {
  background-color: #0f4ed4;
}

/* ---- Mobile menu toggle (hidden on desktop) ---- */
.services-header__toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
}

.services-header__toggle-icon,
.services-header__toggle-icon::before,
.services-header__toggle-icon::after {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--color-text);
  border-radius: 0.1rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.services-header__toggle-icon {
  position: relative;
}

.services-header__toggle-icon::before,
.services-header__toggle-icon::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
}

.services-header__toggle-icon::before {
  inset-block-start: -0.7rem;
}

.services-header__toggle-icon::after {
  inset-block-start: 0.7rem;
}

.services-header__toggle[aria-expanded='true'] .services-header__toggle-icon {
  background-color: transparent;
}

.services-header__toggle[aria-expanded='true'] .services-header__toggle-icon::before {
  transform: translateY(0.7rem) rotate(45deg);
}

.services-header__toggle[aria-expanded='true'] .services-header__toggle-icon::after {
  transform: translateY(-0.7rem) rotate(-45deg);
}

/* ---- Mobile menu panel ---- */
.services-mobile-menu__nav{
  flex: 1;
    position: relative;
    overflow: hidden;
}
.services-mobile-menu {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.services-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.services-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.services-mobile-menu.is-open .services-mobile-menu__overlay {
  opacity: 1;
}

.services-mobile-menu__panel {
  position: fixed;
  z-index: 9999;
  inset-block: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-block: 2rem;
  padding-inline: 2rem;
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.35s ease-in-out;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.services-mobile-menu.is-open .services-mobile-menu__panel {
  transform: translateX(0);
}

.services-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 2.4rem;
}

.services-mobile-menu__close {
  width: 4rem;
  height: 4rem;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-text);
}

.services-mobile-menu__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: var(--weight-medium);
  border-block-end: 1px solid var(--color-border);
}

.services-mobile-menu__list .sub-menu {
  display: none;
  padding-inline-start: 1.6rem;
}

.services-mobile-menu__list .sub-menu.is-open {
  display: block;
}

.services-mobile-menu__list .sub-menu a {
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  font-weight: var(--weight-medium);
  padding-block: 1.2rem;
}

.services-mobile-menu__submenu-arrow {
  width: 2.4rem;
  height: 2.4rem;
  background-image: var(--sd-url-img-chevron-down);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.25s ease;
}

.services-mobile-menu__submenu-arrow.is-open {
  transform: rotate(180deg);
}

.services-mobile-menu__footer {
  margin-block-start: 2.4rem;
}

.services-mobile-menu__footer .services-header__cta {
  width: 100%; display: block;
}

/* Form Style Start */
.services-consultation-form .dscf7-captcha-container {width: 100%; background: transparent; padding: 0; border-radius: 0;}
.services-consultation-form  .dscf7-question-container {margin-top: 2.8rem;}
.services-consultation-form .dscf7-captcha-container span.wpcf7-form-control-wrap input {min-height: 5rem; padding: 1.2rem 1.6rem; border-radius: 0.8rem; background: var(--color-white); box-shadow: 0.4rem 0.4rem 1rem 0 rgba(0, 0, 0, 0.3) inset; font-family: var(--font-poppins); font-size: 1.6rem; line-height: 2.4rem; font-weight: var(--weight-regular); color: var(--color-text); outline: none; transition: box-shadow 0.2s ease; border: none;}
.services-consultation-form .dscf7-captcha-container span.dscf7_lt {font-family: var(--font-poppins); font-size: 1.4rem; line-height: 2rem; font-weight: var(--weight-medium); color: rgba(255, 255, 255, 0.92);}
.services-consultation-form .dscf7-captcha-container span.dscf7_lt .dscf7_refresh_captcha {width: 1.6rem; color: var(--color-white);}
.services-consultation-form .dscf7-captcha-container span.dscf7_lt .dscf7_refresh_captcha img {filter: brightness(0) invert(1);}

/* ===============================
   SERVICES DETAILS — HERO
   Figma node: 114:53935
================================ */

.services-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-white) 100%);
  padding-block: 8.7rem;
}

.services-hero__glow {
  position: absolute;
  width: 83.4rem;
  height: 83.4rem;
  inset-block-start: 14.8rem;
  inset-inline-end: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 93, 252, 0.12) 0%, rgba(21, 93, 252, 0.04) 45%, transparent 70%);
  pointer-events: none;
}

.services-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* ---- Content (left) ---- */
.services-hero__content {
  flex: 0 1 82rem;
  max-width: 82rem;
}

.services-hero__eyebrow {
  display: block;
  margin: 0 0 1.2rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-hero__title {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 6.8rem; /* Figma 78px — Inter Bold */
  line-height: 7.6rem; /* Figma 84px */
  font-weight: var(--weight-extrabold);
  color: var(--color-heading);
}


.services-hero__title-accent {
  color: var(--color-primary);
}

.services-hero__title .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-hero__title .title-word {
  display: inline-block;
}

.services-hero__subtitle {
  margin: 0 0 3rem;
  font-family: var(--font-inter);
  font-size: 2.4rem; /* Figma 24px — Inter Bold */
  line-height: 4rem; /* Figma 40px */
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-hero__text {
  margin-bottom: 3rem;
}

.services-hero__text p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  margin-bottom: 2.4rem;
}

/* ---- Feature tags ---- */
.services-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 3rem;
}

.services-hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding-block: 0.2rem;
  padding-inline: 0.8rem;
  border: 0.1rem solid var(--color-tag-border);
  border-radius: 0.2rem;
  background-color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.05rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ---- CTA buttons ---- */
.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.services-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding-block: 1.2rem;
  padding-inline: 2.4rem;
  border-radius: 0.6rem;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.services-hero__btn--primary {
  min-width: 27rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.services-hero__btn--primary:hover {
  background-color: #0f4ed4;
}

.services-hero__btn--secondary {
  border: 0.1rem solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text-secondary);
}

.services-hero__btn--secondary:hover {
  border-color: #cbd5e1;
}

/* ---- Hero image (right) ---- */
.services-hero__media {
  flex: 0 0 84.7rem;
  max-width: 84.7rem;
  margin: 0;
}

.services-hero__image {
  width: 100%;
  height: auto;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  box-shadow: 0.4rem 0.4rem 2.4rem 0.8rem rgba(21, 93, 252, 0.2);
}

/* GSAP initial state — desktop only, prevents flash before JS loads (js.mdc) */
@media (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
  .services-hero .js-fade-up {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-hero .js-title-flip,
  .services-hero .js-title-flip .title-word {
    opacity: 0;
  }

  .services-hero__media {
    opacity: 0;
    transform: translateX(6rem);
  }

  .services-what-ai .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-what-ai .js-title-flip-on-scroll,
  .services-what-ai .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-why-ai .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-why-ai .js-title-flip-on-scroll,
  .services-why-ai .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-ai-dev .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-ai-dev .js-title-flip-on-scroll,
  .services-ai-dev .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-view-ai .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-view-ai .js-title-flip-on-scroll,
  .services-view-ai .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-industries .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-industries .js-title-flip-on-scroll,
  .services-industries .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-agent-dev .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-agent-dev .js-title-flip-on-scroll,
  .services-agent-dev .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-why-choose .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-why-choose .js-title-flip-on-scroll,
  .services-why-choose .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-ai-process .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-ai-process .js-title-flip-on-scroll,
  .services-ai-process .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-tech .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-tech .js-title-flip-on-scroll,
  .services-tech .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-success-stories .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-success-stories .js-title-flip-on-scroll,
  .services-success-stories .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-ai-cost .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-ai-cost .js-title-flip-on-scroll,
  .services-ai-cost .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-faq .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-faq .js-title-flip-on-scroll,
  .services-faq .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-explore .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-explore .js-title-flip-on-scroll,
  .services-explore .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }

  .services-cta .js-fade-up-on-scroll {
    opacity: 0;
    transform: translateY(4rem);
  }

  .services-cta .js-title-flip-on-scroll,
  .services-cta .js-title-flip-on-scroll .title-word {
    opacity: 0;
  }
}

/* ===============================
   SERVICES DETAILS — WHAT IS AI DEVELOPMENT
   Figma node: 114:53942
================================ */

.services-what-ai {
  background-color: var(--color-what-ai-top-bg);
}

/* ---- Content top ---- */
.services-what-ai__top {
  border-bottom: 0.1rem solid #c6c8ca;
  padding-block-start: 10.8rem; /* Figma Content Top: container y=108 */
}

.services-what-ai__top-inner {
  padding-block: 0;
}

.services-what-ai__rail {
  position: relative;
  padding-inline: 5.6rem;
  padding-block-end: 8rem; /* Figma rail 513px − content group 433px */
  border-inline: 0.1rem solid #c6c8ca;
}

.services-what-ai__logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0 0 5rem; /* Figma: logos y=0 → eyebrow y=115, logo h=65 → gap 50px */
  padding: 0;
}

.services-what-ai__logo {
  flex: 0 0 auto;
}

.services-what-ai__logo + .services-what-ai__logo {
  margin-inline-start: -1rem; /* Figma: 55px step on 65px circles ≈ 10px overlap */
}

.services-what-ai__logo:nth-child(1) {
  z-index: 1;
}

.services-what-ai__logo:nth-child(2) {
  z-index: 2;
}

.services-what-ai__logo:nth-child(3) {
  z-index: 3;
}

.services-what-ai__logo:nth-child(4) {
  z-index: 4;
}

.services-what-ai__logo-img {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
}

.services-what-ai__eyebrow {
  display: block;
  margin: 0 0 2.5rem; /* Figma: eyebrow y=115 → heading y=158 */
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-what-ai__heading {
  margin: 0 0 4rem;
  max-width: 143.8rem;
  font-family: var(--font-inter);
  font-size: 5.6rem; /* Figma 56px — Inter SemiBold */
  line-height: 6.6rem; /* Figma 69px */
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-what-ai__heading-part {
  display: inline;
}

.services-what-ai__heading-accent {
  color: var(--color-primary);
}

.services-what-ai__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-what-ai__heading .title-word {
  display: inline-block;
}

.services-what-ai__text {
  max-width: 140.4rem;
  width: 100%;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-what-ai__text p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-what-ai__text p:last-child {
  margin-bottom: 0;
}

.services-what-ai__text ul,
.services-what-ai__text ol {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.services-what-ai__text ul:last-child,
.services-what-ai__text ol:last-child {
  margin-bottom: 0;
}

.services-what-ai__text ul li,
.services-what-ai__text ol li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.2rem;
  padding-left: 2.4rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-what-ai__text ul li:last-child,
.services-what-ai__text ol li:last-child {
  margin-bottom: 0;
}

.services-what-ai__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-what-ai__text ol {
  counter-reset: services-what-ai-counter;
}

.services-what-ai__text ol li {
  counter-increment: services-what-ai-counter;
  padding-left: 3rem;
}

.services-what-ai__text ol li::before {
  content: counter(services-what-ai-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-inter);
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-what-ai__text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-what-ai__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-what-ai__text a:hover {
  color: #1249d4;
}

.services-what-ai__cta {
  margin-block-start: 3rem;
}

.services-ai-dev__cta,
.services-industries__cta,
.services-why-choose__cta,
.services-faq__cta,
.services-explore__cta,
.services-ai-process__cta,
.services-view-ai__cta,
.services-tech__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 5rem;
}
.services-industries__cta, .services-ai-process__cta {padding-block-end: 6rem;}

/* ===============================
   Rich text — section body (2rem)
================================ */

.services-agent-dev__text,
.services-tech__text,
.services-success-stories__text,
.services-faq__answer,
.services-ai-cost__text,
.services-cta__text {
  width: 100%;
  max-width: 100%;
}

.services-agent-dev__text p,
.services-tech__text p,
.services-success-stories__text p,
.services-faq__answer p,
.services-ai-cost__text p,
.services-cta__text p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-agent-dev__text p:last-child,
.services-tech__text p:last-child,
.services-success-stories__text p:last-child,
.services-faq__answer p:last-child,
.services-ai-cost__text p:last-child,
.services-cta__text p:last-child {
  margin-bottom: 0;
}

.services-agent-dev__text ul,
.services-agent-dev__text ol,
.services-tech__text ul,
.services-tech__text ol,
.services-success-stories__text ul,
.services-success-stories__text ol,
.services-faq__answer ul,
.services-faq__answer ol,
.services-ai-cost__text ul,
.services-ai-cost__text ol,
.services-cta__text ul,
.services-cta__text ol {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.services-agent-dev__text ul:last-child,
.services-agent-dev__text ol:last-child,
.services-tech__text ul:last-child,
.services-tech__text ol:last-child,
.services-success-stories__text ul:last-child,
.services-success-stories__text ol:last-child,
.services-faq__answer ul:last-child,
.services-faq__answer ol:last-child,
.services-ai-cost__text ul:last-child,
.services-ai-cost__text ol:last-child,
.services-cta__text ul:last-child,
.services-cta__text ol:last-child {
  margin-bottom: 0;
}

.services-agent-dev__text ul li,
.services-agent-dev__text ol li,
.services-tech__text ul li,
.services-tech__text ol li,
.services-success-stories__text ul li,
.services-success-stories__text ol li,
.services-faq__answer ul li,
.services-faq__answer ol li,
.services-ai-cost__text ul li,
.services-ai-cost__text ol li,
.services-cta__text ul li,
.services-cta__text ol li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.2rem;
  padding-left: 2.4rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-agent-dev__text ul li:last-child,
.services-agent-dev__text ol li:last-child,
.services-tech__text ul li:last-child,
.services-tech__text ol li:last-child,
.services-success-stories__text ul li:last-child,
.services-success-stories__text ol li:last-child,
.services-faq__answer ul li:last-child,
.services-faq__answer ol li:last-child,
.services-ai-cost__text ul li:last-child,
.services-ai-cost__text ol li:last-child,
.services-cta__text ul li:last-child,
.services-cta__text ol li:last-child {
  margin-bottom: 0;
}

.services-agent-dev__text ul li::before,
.services-tech__text ul li::before,
.services-success-stories__text ul li::before,
.services-faq__answer ul li::before,
.services-ai-cost__text ul li::before,
.services-cta__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-cta__text ul li::before {
  background-color: var(--color-white);
}

.services-agent-dev__text ol,
.services-tech__text ol,
.services-success-stories__text ol,
.services-faq__answer ol,
.services-ai-cost__text ol,
.services-cta__text ol {
  counter-reset: sd-section-rich-text-counter;
}

.services-agent-dev__text ol li,
.services-tech__text ol li,
.services-success-stories__text ol li,
.services-faq__answer ol li,
.services-ai-cost__text ol li,
.services-cta__text ol li {
  counter-increment: sd-section-rich-text-counter;
  padding-left: 3rem;
}

.services-agent-dev__text ol li::before,
.services-tech__text ol li::before,
.services-success-stories__text ol li::before,
.services-faq__answer ol li::before,
.services-ai-cost__text ol li::before,
.services-cta__text ol li::before {
  content: counter(sd-section-rich-text-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: var(--font-inter);
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-cta__text ol li::before {
  color: var(--color-white);
}

.services-agent-dev__text strong,
.services-tech__text strong,
.services-success-stories__text strong,
.services-faq__answer strong,
.services-ai-cost__text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-cta__text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.services-agent-dev__text a,
.services-tech__text a,
.services-success-stories__text a,
.services-faq__answer a,
.services-ai-cost__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-agent-dev__text a:hover,
.services-tech__text a:hover,
.services-success-stories__text a:hover,
.services-faq__answer a:hover,
.services-ai-cost__text a:hover {
  color: #1249d4;
}

.services-cta__text a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-cta__text a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Stats ---- */
.services-what-ai__stats-wrap {
  position: relative;
  padding-block: 1.5rem 10.9rem; /* Figma stats frame: 15px top, ~109px bottom */
}

.services-what-ai__stats-dots {
  position: absolute;
  inset-block-start: 1.5rem;
  inset-inline: 0;
  height: 18.3rem;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(198, 200, 202, 0.55) 0.15rem, transparent 0.15rem);
  background-size: 2rem 2rem;
  background-position: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.services-what-ai__stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin: 0;
  padding-block-start: 3.8rem;
}

.services-what-ai__stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.services-what-ai__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 10.8rem;
  margin-bottom: 6.2rem;
}

.services-what-ai__stat-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 10.8rem;
}

.services-what-ai__stat-value {
  display: block;
  margin: 0 0 1.6rem;
  font-family: var(--font-inter);
  font-size: 6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.services-what-ai__stat-label {
  display: block;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 2rem; /* Figma 20px — Inter Medium */
  line-height: 2rem; /* Figma 20px */
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
}

/* ===============================
   SERVICES DETAILS — WHY AI? BUSINESS CHALLENGES
   Figma node: 114:53944
================================ */

.services-why-ai {
  background-color: var(--color-white);
  padding-block: 12rem;
}

.services-why-ai__inner {
  display: flex;
  align-items: stretch;
  gap: 8.6rem;
  min-height: 93.5rem;
}

.services-why-ai__media {
  position: relative;
  flex: 0 0 89.2rem;
  max-width: 46.5%;
  margin: 0;
  height: 93.5rem; /* Figma Container left 892×935 */
  overflow: hidden;
}

.services-why-ai__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-why-ai__overlay {
  position: absolute;
  inset-block-start: 45.24%;
  inset-inline-start: 31.61%;
  inset-inline-end: 0;
  inset-block-end: 0;
  pointer-events: none;
}

.services-why-ai__overlay-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.services-why-ai__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 84.9rem;
  max-width: 84.9rem;
  min-width: 0;
  height: 93.5rem; /* Match .services-why-ai__media image height */
  min-height: 93.5rem;
}

.services-why-ai__eyebrow {
  display: block;
  margin: 0 0 1.2rem; /* Figma: eyebrow → heading y=43 */
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-why-ai__heading {
  margin: 0;
  max-width: 80.6rem;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-why-ai__heading-part {
  display: inline;
}

.services-why-ai__heading-accent {
  color: var(--color-primary);
}

.services-why-ai__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-why-ai__heading .title-word {
  display: inline-block;
}

.services-why-ai__text {
  max-width: 84.7rem;
  margin-bottom: 3.5rem; /* Figma: description ends ~273 → grid y=313 */
}

.services-why-ai__text p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-why-ai__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.services-why-ai__item {
  padding-top: 0.7rem; position: relative;
}
.services-why-ai__item:not(:nth-of-type(3n))::before {content: ""; position: absolute; width: 0.1rem; height: 100%; background-color: #ccc; top: 0; right: -1.5rem;}
.services-why-ai__item:not(:nth-of-type(-n + 3))::after {content: ""; position: absolute; width: 100%; height: 0.1rem; background-color: #ccc; top: -2.5rem; left: 0;}
.services-why-ai__item:not(:nth-of-type(3n + 1)) {padding-left: 0.9rem;}

.services-why-ai__item:nth-child(3n) {
  padding-inline-end: 0;
  border-inline-end: none;
}


.services-why-ai__item-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2rem;
}

.services-why-ai__item-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6.4rem;
}

.services-why-ai__item-title {
  margin: 0 0 1.6rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-why-ai__item-text {
  margin: 0;
  max-width: 25rem;
  width: 100%;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-why-ai__item-text p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-why-ai__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 5rem; /* Figma: grid ends y=821 → button y=871 */
  flex-shrink: 0;
}

.services-why-ai__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  background-color: var(--color-primary);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.services-why-ai__btn-link:hover {
  background-color: #1249d4;
}

/* ===============================
   SERVICES DETAILS — OUR AI DEVELOPMENT SERVICES
   Figma node: 114:53953
================================ */

.services-ai-dev {
  background-color: var(--color-what-ai-top-bg);
  padding-block: 10rem;
}

.services-ai-dev__header {
  margin: 0 auto 9.8rem;
  text-align: center;
}

.services-ai-dev__eyebrow {
  display: block;
  margin: 0 0 2.5rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-ai-dev__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-ai-dev__heading-part {
  display: inline;
}

.services-ai-dev__heading-accent {
  color: var(--color-primary);
}

.services-ai-dev__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-ai-dev__heading .title-word {
  display: inline-block;
}

.services-ai-dev__text {
  margin: 0 auto;
}

.services-ai-dev__text p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-ai-dev__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-ai-dev__card {
  position: relative;
}
.services-ai-dev__card:not(:nth-of-type(4n))::after {content: ""; position: absolute; top: 0; right: -5.5rem; width: 0.1rem; height: 100%; background-color: #C6C8CA;}
.services-ai-dev__card:not(:nth-of-type(-n + 4))::before {content: ""; position: absolute; top: -5.5rem; left: 0; width: 100%; height: 0.1rem; background-color: #C6C8CA;}


.services-ai-dev__card:nth-child(4n) {
  padding-inline-end: 0;
  border-inline-end: none;
}

.services-ai-dev__card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 5.4rem;
  height: 5.4rem;
  margin-bottom: 4.1rem;
}

.services-ai-dev__card-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 5.4rem;
}

.services-ai-dev__card-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-ai-dev__card-text {
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-ai-dev__card-text p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-ai-dev__card-text p:last-child {
  margin-bottom: 0;
}

.services-ai-dev__card-text ul,
.services-ai-dev__card-text ol {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.services-ai-dev__card-text ul:last-child,
.services-ai-dev__card-text ol:last-child {
  margin-bottom: 0;
}

.services-ai-dev__card-text ul li,
.services-ai-dev__card-text ol li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.8rem;
  padding-left: 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-ai-dev__card-text ul li:last-child,
.services-ai-dev__card-text ol li:last-child {
  margin-bottom: 0;
}

.services-ai-dev__card-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-ai-dev__card-text ol {
  counter-reset: services-ai-dev-card-counter;
}

.services-ai-dev__card-text ol li {
  counter-increment: services-ai-dev-card-counter;
  padding-left: 2.4rem;
}

.services-ai-dev__card-text ol li::before {
  content: counter(services-ai-dev-card-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-inter);
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-ai-dev__card-text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-ai-dev__card-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-ai-dev__card-text a:hover {
  color: #1249d4;
}

/* ===============================
   SERVICES DETAILS — VIEW OUR AI
   Figma node: 130:9012
================================ */

.services-view-ai {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.services-view-ai__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: url(../../images/AI-Agent-Development-Services.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 83rem;
    top: 50%;
    transform: translateY(-50%);
}

.services-view-ai__bg-img {
  position: absolute;
  inset-block-start: 11.59%;
  inset-inline: 0;
  width: 100%;
  height: 76.91%;
  object-fit: cover;
}

.services-view-ai__inner {
  position: relative;
  z-index: 1;
  padding: 22rem 0;
}

.services-view-ai__header {
  max-width: 145.2rem;
  margin: 0 auto 6.3rem;
  text-align: center;
}

.services-view-ai__eyebrow {
  display: block;
  margin: 0 0 2.5rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-view-ai__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-view-ai__heading-part {
  display: inline;
}

.services-view-ai__heading-accent {
  color: var(--color-primary);
}

.services-view-ai__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-view-ai__heading .title-word {
  display: inline-block;
}

.services-view-ai__subheading {
  margin: 0 0 0.7rem;
  font-family: var(--font-inter);
  font-size: 2.4rem;
  line-height: 4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-view-ai__text {
  max-width: 145.2rem;
  margin: 0 auto 1.4rem;
}

.services-view-ai__text p {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-view-ai__leadin {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-view-ai__panel {
  background-color: var(--color-white);
  border: 0.1rem solid var(--color-tag-border);
  border-radius: 1rem;
  min-height: 28.6rem;
  padding: 5.3rem 5.8rem;
}

.services-view-ai__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-view-ai__card {
  padding: 0 4rem 0 0;
  border-inline-end: 0.1rem solid #ccc;
}
.services-view-ai__card:not(:nth-of-type(5n + 1)) {padding-left: 4rem;}
.services-view-ai__card:not(:nth-of-type(5n + 1)) {padding-left: 4rem;}
.services-view-ai__card:nth-of-type(5n) {border-inline-end: 0;}

.services-view-ai__card:last-child {
  padding-inline-end: 0;
  border-inline-end: none;
}

.services-view-ai__card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2.9rem;
}

.services-view-ai__card-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6.4rem;
}

.services-view-ai__card-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-view-ai__card-text {
  margin: 0;
  max-width: 22.6rem;
  width: 100%;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-view-ai__card-text p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

/* ---- Industries We Serve — Figma node 114:53957 ---- */
.services-industries {
  padding-bottom: 2rem;
  overflow: hidden;
}
.services-industries-inner-wrapper {
  padding-top: 10.1rem;
  background-color: var(--color-what-ai-top-bg);
}

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

.services-industries__header {
  margin: 0 auto;
  text-align: center;
}

.services-industries__eyebrow {
  display: block;
  margin: 0 0 2.5rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-industries__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-industries__heading-part {
  display: inline;
}

.services-industries__heading-accent {
  color: var(--color-primary);
}

.services-industries__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-industries__heading .title-word {
  display: inline-block;
}

.services-industries__text {
  max-width: 112.2rem;
  margin: 0 auto;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-industries__slider-wrap {
  margin-top: 6.4rem;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .services-industries__slider-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.services-industries__slider.swiper {
  width: 100%;
  overflow: hidden;
}

.services-industries__slider .swiper-wrapper {
  align-items: stretch;
}

.services-industries__slider .swiper-slide {
  width: 32rem;
  height: auto;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .services-industries__slider .swiper-slide {
    width: 60rem;
  }
}

.services-industries__slide {
  height: auto;
}

.services-industries__card {
  position: relative;
  width: 100%;
  height: 24rem;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .services-industries__card {
    height: 40rem;
  }
}

.services-industries__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.services-industries__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--color-primary) 0%, rgba(21, 93, 252, 0) 65%);
  pointer-events: none;
}

.services-industries__card-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 3.4rem 4.4rem;
}

.services-industries__card-title {
  margin: 0 0 0.8rem;
  font-family: var(--font-inter);
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: var(--weight-bold);
  color: var(--color-white);
}

.services-industries__card-text {
  margin: 0;
  max-width: 54.2rem;
  width: 100%;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-regular);
  color: var(--color-white);
}

.services-industries__card-text p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-industries__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 11rem;
  margin: 7.3rem auto 0;
  padding-bottom: 0;
  position: relative;
  bottom: -2.4rem;
}

.services-industries__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.services-industries__btn:hover {
  opacity: 0.85;
}

.services-industries__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.services-industries__btn img,
.services-industries__btn svg {
  width: 100%;
  height: 100%;
  max-width: none;
}

.services-industries__btn--next svg {
  transform: rotate(180deg);
}

/* ---- AI Agent Development Services — Figma node 114:53958 ---- */
.services-agent-dev {
  position: relative;
  background-color: var(--color-white);
  padding-block: 12rem 8rem;
  overflow: hidden;
}

.services-agent-dev__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: url(../../images/AI-Agent-Development-Services.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 72rem;
  top: 50%;
  transform: translateY(-50%);
}

.services-agent-dev__bg-img {
  position: absolute;
  inset-block-start: 12.3%;
  inset-inline: 0;
  width: 100%;
  height: 75.5%;
  max-width: none;
  object-fit: cover;
}

.services-agent-dev__inner {
  position: relative;
  z-index: 1;
}

.services-agent-dev__grid {
  display: grid;
  grid-template-columns: minmax(0, 69.6rem) minmax(0, 84.9rem);
  gap: 18.7rem;
  align-items: center;
  padding: 10rem 0;
}

.services-agent-dev__content {
  max-width: 69.6rem;
}

.services-agent-dev__eyebrow {
  display: block;
  margin: 0 0 2.8rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-agent-dev__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-agent-dev__heading-part {
  display: inline;
}

.services-agent-dev__heading-accent {
  color: var(--color-primary);
}

.services-agent-dev__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-agent-dev__heading .title-word {
  display: inline-block;
}

.services-agent-dev__text {
  margin: 0 0 2rem;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-agent-dev__points {
  margin: 0 0 4.5rem;
  padding: 0;
  list-style: none;
}

.services-agent-dev__point {
  position: relative;
  margin: 0;
  padding: 0 0 0 2.3rem;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-agent-dev__point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-agent-dev__point + .services-agent-dev__point {
  margin-top: 0.9rem;
}

.services-agent-dev__btn {
  display: flex;
  align-items: center;
}

.services-agent-dev__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  background-color: var(--color-primary);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.services-agent-dev__btn-link:hover {
  background-color: #1249d4;
}

.services-agent-dev__media {
  margin: 0;
  max-width: 84.9rem;
}

.services-agent-dev__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* ---- Why Choose Mass Software Solutions — Figma node 114:53960 ---- */
.services-why-choose {
  background-color: #f8fafc;
  padding-block: 10rem;
  padding-inline: 3.9rem 9.3rem;
}

.services-why-choose__inner {
  width: 100%;
  max-width: 178.8rem;
  margin-inline: 0 auto;
}

.services-why-choose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4.9rem;
  align-items: start;
}

.services-why-choose__media {
  position: relative;
  margin: 0;
  max-width: 89.2rem;
  min-height: 76.6rem;
  overflow: hidden;
}

.services-why-choose__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 76.6rem;
  object-fit: cover;
}

.services-why-choose__logo {
  position: absolute;
  inset: 33.16% 0 0 31.61%;
  pointer-events: none;
}

.services-why-choose__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left top;
}

.services-why-choose__content {
  display: flex;
  flex-direction: column;
  max-width: 86.1rem;
  padding-block-start: 0;
}

.services-why-choose__header {
  max-width: 80.6rem;
}

.services-why-choose__eyebrow {
  display: block;
  margin: 0 0 2.5rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-why-choose__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-why-choose__heading-part {
  display: inline;
}

.services-why-choose__heading-accent {
  color: var(--color-primary);
}

.services-why-choose__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-why-choose__heading .title-word {
  display: inline-block;
}

.services-why-choose__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 4.9rem;
  row-gap: 6.6rem;
  margin: 5.6rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.services-why-choose__card {position: relative;}
.services-why-choose__card:not(:nth-of-type(3n))::after {content: ""; position: absolute; top: 0; right: -2.5rem; width: 0.1rem; height: 100%; background-color: #C6C8CA;}
.services-why-choose__card:not(:nth-of-type(-n + 3))::before {content: ""; position: absolute; top: -3rem; left: 0; width: 100%; height: 0.1rem; background-color: #C6C8CA;}
.services-why-choose__card:not(:nth-child(3n+1)) {padding-left: 1rem;}
/* .services-why-choose__card {
  padding: 0 2.7rem 0 0;
  border-inline-end: 0.1rem solid #c6c8ca;
} */

/* .services-why-choose__card:nth-child(3n) {
  padding-inline-end: 0;
  border-inline-end: none;
} */

/* .services-why-choose__card:nth-child(-n + 3) {
  border-bottom: 0.1rem solid #c6c8ca;
  padding-bottom: 4.1rem;
  margin-bottom: 4.1rem;
} */

.services-why-choose__card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2.9rem;
}

.services-why-choose__card-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6.4rem;
}

.services-why-choose__card-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-why-choose__card-text {
  margin: 0;
  max-width: 23.8rem;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

/* ---- Our AI Development Process — Figma node 114:53969 ---- */
.services-ai-process {
  position: relative;
  background-color: var(--color-white);
  padding-block: 13.8rem 0;
  overflow: hidden;
}

.services-ai-process__inner {
  position: relative;
  z-index: 1;
}
.services-ai-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20rem;
  height: 31rem;
  background-image: var(--sd-url-img-square-dotted);
  background-repeat: no-repeat;
  background-size: contain;
}
.services-ai-process::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 31rem;
  background-image: var(--sd-url-img-square-dotted);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

.services-ai-process__header {
  padding-inline-start: 15rem;
  padding-bottom: 4.2rem;
  text-align: left;
}

.services-ai-process__eyebrow {
  display: block;
  margin: 0 0 3rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-ai-process__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-ai-process__heading-part {
  display: inline;
}

.services-ai-process__heading-accent {
  color: var(--color-primary);
}

.services-ai-process__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-ai-process__heading .title-word {
  display: inline-block;
}

.services-ai-process__text {
  max-width: 77.6rem;
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-ai-process__carousel { padding-bottom: 2.4rem;}
.services-ai-process__slider-wrap {
  width: 100%;
  overflow: hidden;
  border-block: 0.1rem solid #c6c8ca;
}

.services-ai-process__slider.swiper {
  width: 100%;
  overflow: hidden;
}

.services-ai-process__slider .swiper-wrapper {
  align-items: stretch; background-color: #fff;
}


.services-ai-process__slider .swiper-slide {
  width: 24rem;
  height: auto;
  flex-shrink: 0;
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .services-ai-process__slider .swiper-slide {
    width: 28rem;
  }
}

@media (min-width: 1200px) {
  .services-ai-process__slider .swiper-slide {
    width: 32rem;
  }
}

.services-ai-process__slide {
  height: auto;
}

.services-ai-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 100%;
  padding: 3rem 2rem;
  border-inline-end: 0.1rem solid #c6c8ca;
  text-align: center;
}

.services-ai-process__slider .swiper-slide:last-child .services-ai-process__step {
  border-inline-end: none;
}

.services-ai-process__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  flex-shrink: 0;
}

.services-ai-process__step-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6.4rem;
}

.services-ai-process__step-title {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-ai-process__step-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  text-align: center;
}

.services-ai-process__step-text p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-ai-process__step-text p:last-child {
  margin-bottom: 0;
}

.services-ai-process__step-text ul,
.services-ai-process__step-text ol {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.services-ai-process__step-text ul:last-child,
.services-ai-process__step-text ol:last-child {
  margin-bottom: 0;
}

.services-ai-process__step-text ul li,
.services-ai-process__step-text ol li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.8rem;
  padding-left: 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-ai-process__step-text ul li:last-child,
.services-ai-process__step-text ol li:last-child {
  margin-bottom: 0;
}

.services-ai-process__step-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-ai-process__step-text ol {
  counter-reset: services-ai-process-step-counter;
}

.services-ai-process__step-text ol li {
  counter-increment: services-ai-process-step-counter;
  padding-left: 2.4rem;
}

.services-ai-process__step-text ol li::before {
  content: counter(services-ai-process-step-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-inter);
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-ai-process__step-text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-ai-process__step-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-ai-process__step-text a:hover {
  color: #1249d4;
}

.services-ai-process__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 11rem;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%; 
  transform: translateX(-50%);
  z-index: 1;
}

.services-ai-process__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.services-ai-process__btn:hover {
  opacity: 0.85;
}

.services-ai-process__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.services-ai-process__btn img,
.services-ai-process__btn svg {
  display: block;
  width: 5rem;
  height: 5rem;
}

.services-ai-process__btn--next svg {
  transform: rotate(180deg);
}

/* ---- Technologies We Work With — Figma node 127:53972 ---- */
.services-tech {
  background-color: #f8fafc;
  padding-top: 7.5rem;
  padding-bottom: 10rem;
}

.services-tech__inner {
  max-width: 173.6rem;
}

.services-tech__header {
  margin: 0 auto 6.6rem;
  text-align: center;
}

.services-tech__eyebrow {
  display: block;
  margin: 0 0 2.8rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-tech__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-tech__heading-part {
  display: inline;
}

.services-tech__heading-accent {
  color: var(--color-primary);
}

.services-tech__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-tech__heading .title-word {
  display: inline-block;
}

.services-tech__text {
  max-width: 56rem;
  margin: 0 auto;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-tech__grid {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.services-tech__card {
  flex: 1 1 0;
  min-width: 0;
  padding: 3.3rem 3.1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-right: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.services-tech__card:last-child {
  border-right: none;
}

@media (max-width: 1199px) {
  .services-tech__grid {
    flex-wrap: wrap;
  }

  .services-tech__card {
    flex: 1 1 calc(50% - 0.05rem);
    height: auto;
    min-height: 28.7rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  }

  .services-tech__card:nth-child(2n) {
    border-right: none;
  }

  .services-tech__card:nth-last-child(-n + 1) {
    border-bottom: none;
  }

  .services-tech__card:last-child:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .services-tech__grid {
    flex-direction: column;
  }

  .services-tech__card {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  }

  .services-tech__card:nth-last-child(-n + 2) {
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  }

  .services-tech__card:last-child {
    border-bottom: none;
  }
}

.services-tech__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.services-tech__card-icon {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 8.5rem;
  height: 6.8rem;
  margin: 0 0 2.9rem;
  flex-shrink: 0;
}

.services-tech__card-icon-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 6.8rem;
}

.services-tech__card-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-tech__card-logos {
  display: flex;
  align-items: center;
  height: 3.6rem;
  margin: 0 0 2.2rem;
  flex-shrink: 0;
}

.services-tech__card-logos-img {
  width: auto;
  height: auto;
  max-height: 3.6rem;
}

/* .services-tech__card:first-child .services-tech__card-logos-img {
  max-width: 12.9rem;
} */

.services-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-tech__tags::-webkit-scrollbar {
  display: none;
}

.services-tech__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem;
  background-color: #ffffff;
  font-family: var(--font-inter);
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- AI Success Stories — Figma node 127:53974 ---- */
.services-success-stories {
  position: relative;
  background-color: var(--color-white);
  padding-block: 10rem 8rem;
  overflow: hidden;
}

.services-success-stories__bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 34rem;
  pointer-events: none;
  z-index: 0;
}

.services-success-stories__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-success-stories__inner {
  position: relative;
  z-index: 1;
}

.services-success-stories__header {
  margin-bottom: 16.4rem;
  text-align: left;
}

.services-success-stories__eyebrow {
  display: block;
  margin: 0 0 2.8rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-success-stories__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-success-stories__heading-part {
  display: inline;
}

.services-success-stories__heading-accent {
  color: var(--color-primary);
}

.services-success-stories__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-success-stories__heading .title-word {
  display: inline-block;
}

.services-success-stories__text {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-success-stories__grid {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.services-success-stories__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 56.5rem;
  padding: 3rem 3.05rem 3.5rem;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.20);
}


@media (max-width: 1199px) {
  .services-success-stories__grid {
    flex-wrap: wrap;
  }

  .services-success-stories__card {
    flex: 1 1 calc(50% - 0.05rem);
    min-height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .services-success-stories__card:nth-child(2n) {
    border-right: none;
  }

  .services-success-stories__card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .services-success-stories__card:last-child:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .services-success-stories__grid {
    flex-direction: column;
  }

  .services-success-stories__card {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .services-success-stories__card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .services-success-stories__card:last-child {
    border-bottom: none;
  }
}

.services-success-stories__card-media {
  overflow: hidden;
  margin-bottom: 2.4rem;
}

.services-success-stories__card-img {
  display: block;
  width: 100%;
  height: 22.4rem;
  object-fit: cover;
}

.services-success-stories__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.services-success-stories__card-meta {
  margin-bottom: 1.6rem;
}

.services-success-stories__card-category {
  display: block;
  margin: 0 0 1.2rem;
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-success-stories__card-title {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-success-stories__card-text {
  flex: 1 1 auto;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-success-stories__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
  padding-top: 2rem;
}

.services-success-stories__card-stat {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-success-stories__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-inter);
  font-size: 1.8rem;
  line-height: 1.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.services-success-stories__card-link:hover {
  text-decoration: underline;
}

.services-success-stories__card-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
}

.services-success-stories__card-link-icon svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  max-width: none;
}

/* ---- AI Development Cost — Figma node 127:53985 ---- */
.services-ai-cost {
  position: relative;
  background-color: #f8fafc;
  overflow: hidden;
}

.services-ai-cost__bg {
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 17.3rem;
  margin-left: -8.65rem;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.services-ai-cost__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-ai-cost__inner {
  position: relative;
  z-index: 1;
}

.services-ai-cost__grid {
  display: grid;
  grid-template-columns: minmax(0, 69.6rem) minmax(0, 84.7rem);
  gap: 14.8rem;
  align-items: start;
  position: relative;
  padding: 11rem 0;
}
.services-ai-cost__grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 74rem;
    width: 17.3rem;
    height: 100%;
    background-image: var(--sd-url-img-dotted-stretch-bg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.services-ai-cost__content {
  display: flex;
  flex-direction: column;
  min-height: 54.8rem;
}

.services-ai-cost__header {
  margin-bottom: 5rem;
}

.services-ai-cost__eyebrow {
  display: block;
  margin: 0 0 3.1rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-ai-cost__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-ai-cost__heading-part {
  display: inline;
}

.services-ai-cost__heading-accent {
  color: var(--color-primary);
}

.services-ai-cost__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-ai-cost__heading .title-word {
  display: inline-block;
}

.services-ai-cost__text-group {
  display: flex;
  flex-direction: column;
}

.services-ai-cost__text {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-ai-cost__btn {
  margin-top: auto;
  padding-top: 5rem;
}

.services-ai-cost__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  background-color: var(--color-primary);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.services-ai-cost__btn-link:hover {
  background-color: #1249d4;
}

.services-ai-cost__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 42.4rem));
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.services-ai-cost__card {
  display: flex;
  flex-direction: column;
  min-height: 27.2rem;
  padding: 3rem 4.5rem;
  background-color: var(--color-white);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.services-ai-cost__card:nth-child(2n) {
  border-right: none;
}

.services-ai-cost__card:nth-last-child(-n + 2) {
  border-bottom: none;
}

.services-ai-cost__card--featured {
  background-color: var(--color-primary);
}

.services-ai-cost__card-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.services-ai-cost__card-title {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-ai-cost__card-price {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.services-ai-cost__card--featured .services-ai-cost__card-title,
.services-ai-cost__card--featured .services-ai-cost__card-price,
.services-ai-cost__card--featured .services-ai-cost__card-feature {
  color: var(--color-white);
}

.services-ai-cost__card--featured .services-ai-cost__card-check {
  color: var(--color-white);
}

.services-ai-cost__card-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.services-ai-cost__card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding-top: 0.8rem;
}

.services-ai-cost__card-item:first-child {
  padding-top: 0;
}

.services-ai-cost__card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.3rem;
  color: #2b7fff;
}

.services-ai-cost__card-check svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  max-width: none;
}

.services-ai-cost__card-feature {
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: var(--weight-regular);
  color: #4a5565;
}

/* ---- FAQ — Figma node 127:53987 ---- */
.services-faq {
  position: relative;
  background-color: var(--color-white);
  padding-block: 12rem 10rem;
  overflow: hidden;
}

.services-faq__bg {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 27.9rem;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  top: 61rem;
}

.services-faq__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.services-faq__header {
  margin: 0 auto 8rem;
  text-align: center;
}

.services-faq__eyebrow {
  display: block;
  margin: 0 0 3rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-faq__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-faq__heading-part {
  display: inline;
}

.services-faq__heading-accent {
  color: var(--color-primary);
}

.services-faq__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-faq__heading .title-word {
  display: inline-block;
}

.services-faq__accordion {
  max-width: 83.33333333%;
  margin-inline: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.services-faq__item {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

.services-faq__item:last-child {
  border-bottom: none;
}

.services-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: 10rem;
  padding: 3.4rem 4.1rem 3.4rem 5.5rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.services-faq__question {
  font-family: var(--font-inter);
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: var(--weight-bold);
  color: var(--color-heading);
}

.services-faq__item.is-open .services-faq__question {
  color: var(--color-primary);
}

.services-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--color-heading);
  transition: all 0.6s ease;
}

.services-faq__icon svg {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  max-width: none;
}

.services-faq__item.is-open .services-faq__icon {
  transform: rotate(-45deg);
  color: #1f62f5;
}

.services-faq__panel {
  overflow: hidden;
}

.services-faq__panel[hidden] {
  display: none;
}

.services-faq__item.is-open .services-faq__trigger {
  align-items: flex-start;
  min-height: auto;
  padding-block: 4.8rem 0;
}

.services-faq__answer {
  width: 100%;
  max-width: 100%;
  padding: 0 4.1rem 5.5rem 5.5rem;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
}

.services-faq__item.is-open .services-faq__answer {
  padding-top: 3.8rem;
}

/* ---- Explore More Services — Figma node 127:53988 ---- */
.services-explore {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

.services-explore__top {
  position: relative;
  min-height: 27.9rem;
}

.services-explore__bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 27.9rem;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.services-explore__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.services-explore__header {
  padding-top: 8.5rem;
  text-align: left;
}

.services-explore__eyebrow {
  display: block;
  margin: 0 0 3rem;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-primary);
}

.services-explore__heading {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-explore__heading-part {
  display: inline;
}

.services-explore__heading-accent {
  color: var(--color-primary);
}

.services-explore__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-explore__heading .title-word {
  display: inline-block;
}

.services-explore__list-wrap {
  width: 100%;
  border-block: 1px solid #ccc;
}

.services-explore__list-inner {
  padding-inline: 0;
}

.services-explore__grid {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 20rem;
}

.services-explore__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.4rem;
  min-height: 20rem;
  padding: 4.8rem 1.6rem 3.2rem;
  background-color: var(--color-white);
  border-right: 1px solid #ccc;
}

.services-explore__item:last-child {
  border-right: none;
}

.services-explore__item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6.8rem;
  flex-shrink: 0;
}

.services-explore__icon {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: 6.8rem;
  object-fit: contain;
}

.services-explore__title {
  margin: auto 0 0;
  padding: 0;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: #101828;
  text-align: center;
}

.services-explore__text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2.275rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  text-align: center;
}

.services-explore__text p {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-explore__text p:last-child {
  margin-bottom: 0;
}

.services-explore__text ul,
.services-explore__text ol {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.services-explore__text ul:last-child,
.services-explore__text ol:last-child {
  margin-bottom: 0;
}

.services-explore__text ul li,
.services-explore__text ol li {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.8rem;
  padding-left: 2rem;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.services-explore__text ul li:last-child,
.services-explore__text ol li:last-child {
  margin-bottom: 0;
}

.services-explore__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.services-explore__text ol {
  counter-reset: services-explore-counter;
}

.services-explore__text ol li {
  counter-increment: services-explore-counter;
  padding-left: 2.4rem;
}

.services-explore__text ol li::before {
  content: counter(services-explore-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-inter);
  font-size: inherit;
  line-height: inherit;
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.services-explore__text strong {
  font-weight: var(--weight-semibold);
  color: var(--color-heading);
}

.services-explore__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.services-explore__text a:hover {
  color: #1249d4;
}

@media (max-width: 1199px) {
  .services-explore__grid {
    flex-wrap: wrap;
  }

  .services-explore__item {
    flex: 1 1 calc(33.333% - 0.05rem);
    min-height: 18rem;
    border-bottom: 1px solid #ccc;
  }

  .services-explore__item:nth-child(3n) {
    border-right: none;
  }

  .services-explore__item:nth-last-child(-n + 3) {
    border-bottom: none;
  }

  .services-explore__item:last-child:nth-child(3n + 1),
  .services-explore__item:last-child:nth-child(3n + 2) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .services-explore__grid {
    flex-direction: column;
    min-height: auto;
  }

  .services-explore__item {
    flex: 1 1 100%;
    min-height: auto;
    padding: 2.4rem 1.6rem;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .services-explore__item:last-child {
    border-bottom: none;
  }
}

/* ---- CTA Section — Figma node 195:855 ---- */
.services-cta {
  background-color: var(--color-white);
  padding-block: 10rem;
}

.services-cta__card {
  display: flex;
  align-items: stretch;
  min-height: 50rem;
  background-color: var(--color-primary);
  overflow: hidden;
}

.services-cta__content {
  flex: 0 0 88.8rem;
  max-width: 88.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  padding: 8rem 0 6.4rem 6rem;
  color: var(--color-white);
}

.services-cta__text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.5rem;
  width: 100%;
  max-width: 71.1rem;
}

.services-cta__heading {
  margin: 0;
  max-width: 71.1rem;
  font-family: var(--font-inter);
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.services-cta__heading .title-word-wrap {
  display: inline-block;
  perspective: 80rem;
  overflow: hidden;
}

.services-cta__heading .title-word {
  display: inline-block;
}

.services-cta__text {
  margin: 0;
  width: 100%;
  max-width: 71.1rem;
  min-height: 8rem;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: var(--color-white);
}

.services-cta__leadin {
  margin: 0;
  max-width: 71.1rem;
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.services-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.6rem;
  width: 100%;
  max-width: 78.8rem;
  margin-top: 3.2rem;
}

.services-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.services-cta__btn--primary {
  min-height: 4.8rem;
  padding-block: 1.2rem;
  padding-inline: 2.4rem;
  background-color: #000309;
  color: var(--color-white);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.services-cta__btn--primary:hover {
  background-color: #111827;
}

.services-cta__btn--secondary {
  min-height: 5rem;
  padding-block: 1.3rem;
  padding-inline: 2.5rem;
  background-color: var(--color-white);
  border-color: #e5e7eb;
  color: #364153;
}

.services-cta__btn--secondary:hover {
  border-color: #cbd5e1;
}

.services-cta__btn--ghost {
  min-height: 5rem;
  padding-block: 1.3rem;
  padding-inline: 2.5rem;
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
  box-shadow:
    0 0.1rem 0.3rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
}

.services-cta__btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.services-cta__media {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 50rem;
  overflow: hidden;
  position: relative;
}

.services-cta__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 50rem;
  object-fit: cover;
  object-position: center top;
}

.services-what-ai__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  background-color: var(--color-primary);
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
 
.services-what-ai__cta-link:hover {
  background-color: #1249d4;
  color: var(--color-white);
}

@media (max-width: 1199px) {
  .services-cta__content {
    flex: 1 1 auto;
    max-width: none;
  }

  .services-cta__actions {
    flex-wrap: wrap;
  }
}

/* ---- Footer — Figma node 155:140 ---- */
.services-footer {
  background-color: var(--color-white);
  padding-block: 0 5rem;
}

.services-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 5.1rem;
}

.services-footer__grid {
  display: flex;
  width: 100%;
}

.services-footer__col {
  min-width: 0;
  min-height: 33.6rem;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5rem 2.2rem 2.2rem;
}
.services-footer__col:not(:last-of-type) {border-right: 0;}

.services-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  max-width: 23.3rem;
}
.services-footer__col--brand {min-width: 29rem;}
.service-foot-1 {min-width: 70rem;}
.service-foot-1 .services-footer__list {display: block; column-count: 2;}
.service-foot-1 .services-footer__list .menu-item:not(:last-of-type) {margin-bottom: 1rem;}
.service-foot-2, .service-foot-3, .service-foot-4 {min-width: 24rem;}

.services-footer__brand-intro {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.services-footer__logo-link {
  display: inline-flex;
}

.services-footer__logo {
  display: block;
  width: auto;
  max-width: 11.634rem;
  height: auto;
  max-height: 4.7rem;
}

.services-footer__description {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: var(--weight-regular);
  color: #6a7282;
}

.services-footer__social-list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.7rem;
}

.services-footer__social-list li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.services-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: inherit;
  color: #101828;
  text-decoration: none;
  transition: color 0.25s ease;
}

.services-footer__social-link i {
  font-size: 1em;
  line-height: 1;
  transition: all 0.4s ease;
}
.services-footer__social-list li a:hover i {color: #0f4ed4;}

.services-footer__social-link:hover {
  color: var(--color-primary);
}

.services-footer__nav-block {
  display: flex;
  flex-direction: column;
}

.services-footer__nav-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 2.2rem;
  font-family: var(--font-inter);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-bold);
  color: #101828;
}

.services-footer__nav-label {
  display: block;
}

.services-footer__nav-line {
  display: block;
  width: 6.1rem;
  height: 1px;
  margin-top: 0.2rem;
  background-color: var(--color-primary);
}

.services-footer__nav {
  margin: 0;
}

.services-footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-footer__list .menu-item,
.services-footer__item {
  margin: 0;
  padding: 0;
}

.services-footer__list .menu-item.current-menu-item a {color: var(--color-primary);}

.services-footer__list a,
.services-footer__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: var(--weight-regular);
  color: #6a7282;
  text-decoration: none;
  transition: color 0.25s ease;
}

.services-footer__list a::before,
.services-footer__link::before {
  content: "";
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.7rem;
  border-radius: 0.2rem;
  background-color: var(--color-primary);
}

.services-footer__list a:hover,
.services-footer__link:hover {
  color: var(--color-primary);
}

.services-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.services-footer__contact-icon {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  height: 1.2rem;
  margin-top: 0.4rem;
}

.services-footer__contact-link,
.services-footer__contact-text {
  font-family: var(--font-inter);
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: var(--weight-regular);
  color: #6a7282;
  text-decoration: none;
}

.services-footer__contact-link:hover {
  color: var(--color-primary);
}

.site-footer-bottom {display: flex; align-items: center; justify-content: space-between; gap: 2rem;}

.services-footer__copyright {
  margin: 0;
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: var(--weight-regular);
  color: #6a7282;
  text-align: center;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.6rem;
  box-shadow:
    0 0.1rem 0.15rem rgba(0, 0, 0, 0.1),
    0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
 
.sd-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
 
.sd-btn--primary:hover {
  background-color: #1249d4;
  color: var(--color-white);
}

/* ===============================
   FREE CONSULTATION POPUP (Fancybox)
================================ */
.services-consultation-fancybox-wrap .fancybox-content,
.fancybox-content.services-consultation-fancybox {
  padding: 0;
  background: transparent !important;
  overflow: visible;
}

.services-consultation-fancybox-wrap .fancybox-slide--inline .fancybox-content {
  background: transparent !important;
}

.services-consultation-fancybox-wrap .fancybox-slide--inline .fancybox-content::before,
.services-consultation-fancybox-wrap .fancybox-slide--inline .fancybox-content::after {
  display: none;
}

.services-consultation-form__wpcf7 .wpcf7-form {
  margin: 0;
  padding: 0;
  background: transparent;
}

.fancybox-slide--inline .services-form-popup,
.fancybox-slide--inline .services-consultation-modal {
  display: block !important;
}

.services-consultation-modal__dialog {
  width: 70rem;
  max-width: calc(100vw - 3.2rem);
  padding: 4rem;
  border-radius: 1.6rem;
  background: linear-gradient(149deg, #000728 9.99%, #00198e 100.97%);
  box-shadow: 0 2.4rem 6.4rem rgba(0, 0, 0, 0.35);
  position: relative;
}

.services-consultation-modal__dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 0.1rem;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.8), transparent);
}

.services-consultation-modal__header {
  margin: 0;
}

.services-consultation-modal__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-poppins);
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
}

.services-consultation-modal__subtitle {
  margin: 0 0 2.4rem;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.78);
}

.services-consultation-form__field--page-title,
.services-consultation-form .wpcf7-form-control-wrap[data-name="page-title"],
.services-consultation-form input[name="page-title"] {
  display: none !important;
}

.services-consultation-form__wpcf7 {
  margin: 0;
}

.services-consultation-form__field {
  margin-bottom: 1.6rem;
}

.services-consultation-form .two_column_row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.services-consultation-form .two_column_row .services-consultation-form__field {
  flex: 1 1 calc(50% - 0.8rem);
  min-width: 0;
  margin-bottom: 0;
}

.services-consultation-form__field--page-title {
  margin-bottom: 2rem;
}

.services-consultation-form__label {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.92);
}

.services-consultation-form__required {
  color: #ff6b6b;
}

.services-consultation-form__input,
.services-consultation-form__select {
  display: block;
  width: 100%;
  min-height: 5rem;
  padding: 1.2rem 1.6rem;
  border: none;
  border-radius: 0.8rem;
  background: var(--color-white);
  box-shadow: 0.4rem 0.4rem 1rem 0 rgba(0, 0, 0, 0.3) inset;
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-regular);
  color: var(--color-text);
  outline: none;
  transition: box-shadow 0.2s ease;
}

.services-consultation-form__input:focus,
.services-consultation-form__select:focus {
  box-shadow:
    0.4rem 0.4rem 1rem 0 rgba(0, 0, 0, 0.3) inset,
    0 0 0 0.2rem rgba(21, 93, 252, 0.35);
}

.services-consultation-form__input[readonly] {
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text-secondary);
  cursor: default;
}

.services-consultation-form__select {
  appearance: none;
  padding-right: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23364153' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 1.2rem 0.8rem;
}

.services-consultation-form__submit-wrap {
  margin-top: 4rem;
}

.services-consultation-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24rem;
  min-height: 5rem;
  padding: 1.2rem 2.4rem;
  border: none;
  border-radius: 5rem;
  background: var(--color-primary);
  font-family: var(--font-poppins);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.services-consultation-form__submit:hover {
  background-color: #0f4ed4;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2.4rem rgba(21, 93, 252, 0.35);
}

.services-consultation-form__wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.4rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #ffb4b4;
}

.services-consultation-form__wpcf7 .wpcf7-response-output {
  margin: 1.6rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--color-white);
}

.wpcf7 form .wpcf7-response-output {
    margin: 2rem 0 0;
    padding: 0.8rem 1rem;
    border: 0.1rem solid;
    border-radius: 0.4rem;
    font-family: var(--font-poppins);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2rem;
    color: rgb(256, 256, 256);
    text-align: center;
}

.services-consultation-form__wpcf7 form.invalid .wpcf7-response-output {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
}

.services-consultation-form__wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: rgba(70, 180, 80, 0.15);
}

.services-consultation-form__wpcf7 .wpcf7-spinner {
  position: absolute;
  background-color: var(--color-primary);
  margin: 1rem;
}

.fancybox-container .fancybox-close-small {
  color: #ffffff !important;
  opacity: 0.9;
  background: transparent;
  padding: 0.8rem;
  right: 0.4rem;
  top: 0.4rem;
}

.fancybox-container .fancybox-close-small:hover {
  opacity: 1;
  color: #ffffff !important;
}

.fancybox-container .fancybox-close-small svg {
  filter: none;
}

.fancybox-container .fancybox-close-small svg path {
  fill: #ffffff;
  stroke: #ffffff;
}

/* ===============================
   BACK TO TOP
================================ */
.services-back-to-top {
  position: fixed;
  right: 2.4rem;
  bottom: 2.4rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0.8rem 2.4rem rgba(21, 93, 252, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.2rem);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.services-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-back-to-top:hover {
  background-color: #0f4ed4;
  box-shadow: 0 1rem 2.8rem rgba(21, 93, 252, 0.45);
}

.services-back-to-top:focus-visible {
  outline: 0.2rem solid rgba(21, 93, 252, 0.5);
  outline-offset: 0.2rem;
}
