/* ============================================
   HERO
   ============================================ */

:root {
  --glass-purple-gradient:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(218, 203, 226, 0.38) 42%,
      rgba(144, 111, 160, 0.46) 72%,
      rgba(78, 48, 91, 0.58) 100%);
}
.aboutus-bg {
  position: absolute;
  width: 25%;
  right: -4%;
  height: 80%;
  top: -54px;
}

.hero {
  min-height: calc(100vh);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111820;
}

.hero__slider,
.hero__slide,
.hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slider {
  z-index: -4;
}

.hero__slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.25s ease, transform 7s ease;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide img {
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero__slide.active img {
  animation-play-state: running;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #0000004f;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.title-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  padding: 40px 24px;
  direction: rtl;
  text-align: center;
  pointer-events: none;
}

.title-hero__mark {
  --cube-size: clamp(9px, 1vw, 12px);
  width: calc(var(--cube-size) * 3);
  height: calc(var(--cube-size) * 3);
  position: relative;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0, 250, 206, 0.28));
}

.title-hero__mark span {
  width: var(--cube-size);
  height: var(--cube-size);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 250, 206, 0.14);
  will-change: transform;
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  animation-iteration-count: infinite;
}

.title-hero__mark span:nth-child(1) {
  transform: translate(0, 150%);
  animation-name: heroCubeOne;
}

.title-hero__mark span:nth-child(2) {
  transform: translate(100%, 50%);
  animation-name: heroCubeTwo;
}

.title-hero__mark span:nth-child(3) {
  transform: translate(200%, 150%);
  animation-name: heroCubeThree;
}

.title-hero h2 {
  position: relative;
  margin: 0;
  color: #fff;
  font-family: "font_main";
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  animation: heroTitleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.btn-hero {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  animation: heroButtonReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.btn-hero a {
  min-width: 158px;
  min-height: 48px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 35px;
  background: var(--glass-purple-gradient);
  background-size: 150% 100%;
  background-position: 0 0;
  color: #fff !important;
  font-family: "font_medium";
  font-size: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 20px rgba(46, 23, 57, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 5px rgba(33, 13, 43, 0.5);
  transition:
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1),
    background-position 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 650ms ease;
}

.btn-hero a::before {
  content: "";
  width: 36%;
  position: absolute;
  inset: 0 auto 0 -48%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg);
  transition: left 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero a:hover,
.btn-hero a:focus-visible {
  background-position: 100% 0;
  box-shadow:
    0 12px 28px rgba(46, 23, 57, 0.52),
    0 0 18px rgba(218, 203, 226, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: translateY(-3px) scale(1.03);
}

.btn-hero a:hover::before,
.btn-hero a:focus-visible::before {
  left: 118%;
}


/* ============================================
   PARTNERS MOTION STRIP
   ============================================ */

.partners-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(23, 36, 54, 0.1);
  background: #BBDBF4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.partners-strip::before,
.partners-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(16vw, 180px);
  pointer-events: none;
}



.partners-strip__glow {
  position: absolute;
  inset: -80px 14% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(36px);
  opacity: 0.5;
  animation: partnersGlow 7s ease-in-out infinite alternate;
}

.partners-strip__marquee {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  overflow: hidden;
  direction: ltr;
  transform: translateZ(0);
}

.partners-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partnersLoop 26s linear infinite;
  will-change: transform;
}

.partners-strip:hover .partners-strip__track {
  animation-play-state: paused;
}

.partners-strip__group {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 70px);
  padding-inline: clamp(28px, 5vw, 76px);
}

.partners-strip__group span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.partners-strip__group span:hover {
  transform: translateY(-2px) scale(1.03);
  opacity: 1;
}

.partners-strip__group i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: rgba(23, 36, 54, 0.42);
  box-shadow: 0 0 0 6px rgba(23, 36, 54, 0.08);
}

@keyframes partnersLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes partnersGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-80px, 30px, 0) scale(1.16);
  }
}

@media (max-width: 767px) {
  .partners-strip {
    padding: 0;
  }

  .partners-strip__track {
    animation-duration: 18s;
  }

  .partners-strip__group {
    gap: 26px;
    padding-inline: 24px;
  }

  .partners-strip__group span {
    min-height: 48px;
    font-size: 11px;
    letter-spacing: 3px;
  }
}

/* ============================================
   ABOUT EVENT OPERATIONS
   ============================================ */

.about-operations {
  position: relative;
  z-index: 31;
  overflow: hidden;
  margin-top: -42px;
  padding: clamp(92px, 10vw, 150px) 0 clamp(90px, 9vw, 135px);
  border-radius: 150px 150px 0 0;
  background: #172436;
  color: #fff;
}

.about-operations::before {
  content: "";
  width: clamp(80px, 10vw, 150px);
  height: 3px;
  position: absolute;
  top: 0;
  right: 50%;
  background: #d8a25d;
  transform: translateX(50%) scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.about-operations__content {
  width: 76%;
  margin-inline: auto;
  direction: rtl;
  text-align: right;
}
.about-operations__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d8a25d;
  font-family: "font_bold";
  font-size: clamp(15px, 1.25vw, 19px);
}

.about-operations__eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.about-operations h2 {
  max-width: 820px;
  margin: 0 0 36px;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 700;
  line-height: 1.04;
}

.about-operations h2 span {
  display: block;
  margin-top: 8px;
  color: #d8a25d;
  font-size: 0.62em;
  line-height: 1.12;
}

.about-operations__copy {
  max-width: 100%;
}

.about-operations__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-family: "font_main";
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 2;
}

.about-operations__copy p+p {
  margin-top: 22px;
}

.about-operations.is-animated {
  opacity: 0;
  clip-path: inset(13% 0 0 0 round clamp(52px, 6vw, 92px) clamp(52px, 6vw, 92px) 0 0);
  transform: translateY(72px);
  transition:
    opacity 0.75s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-operations.is-animated .about-operations__eyebrow,
.about-operations.is-animated h2,
.about-operations.is-animated .about-operations__copy p {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-operations.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0 round clamp(52px, 6vw, 92px) clamp(52px, 6vw, 92px) 0 0);
  transform: translateY(0);
}

.about-operations.is-visible::before {
  transform: translateX(50%) scaleX(1);
}

.about-operations.is-visible .about-operations__eyebrow,
.about-operations.is-visible h2,
.about-operations.is-visible .about-operations__copy p {
  opacity: 1;
  transform: translateY(0);
}

.about-operations.is-visible .about-operations__eyebrow {
  transition-delay: 0.22s;
}

.about-operations.is-visible h2 {
  transition-delay: 0.34s;
}

.about-operations.is-visible .about-operations__copy p:nth-child(1) {
  transition-delay: 0.46s;
}

.about-operations.is-visible .about-operations__copy p:nth-child(2) {
  transition-delay: 0.58s;
}

.about-operations.is-visible .about-operations__copy p:nth-child(3) {
  transition-delay: 0.7s;
}

@media (max-width: 767px) {
  .about-operations {
    margin-top: -24px;
    padding: 78px 0 76px;
    border-radius: 46px 46px 0 0;
  }

  .about-operations__content {
    width: 76%;
    margin-inline: auto;
    direction: rtl;
    text-align: right;
  }

  .about-operations h2 {
    margin-bottom: 28px;
    font-size: clamp(36px, 11vw, 50px);
  }

  .about-operations__copy p {
    font-size: 16px;
    line-height: 1.95;
  }
}

@media (prefers-reduced-motion: reduce) {

  .about-operations,
  .about-operations::before,
  .about-operations__eyebrow,
  .about-operations h2,
  .about-operations__copy p {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   ABOUT METHODOLOGY
   ============================================ */

.methodology {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 9vw, 130px) 0 clamp(90px, 10vw, 145px);
  background-color: #fff;
  color: #172436;
}

.methodology::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.methodology__head {
  margin-bottom: clamp(38px, 4vw, 58px);
  direction: rtl;
  text-align: right;
}

.methodology__eyebrow {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 5px;
  background: #e6faf5;
  color: #172436;
  font-family: "font_bold";
  font-size: 14px;
}

.methodology__head h2 {
  max-width: 1120px;
  margin: 14px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(27px, 2.7vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  direction: rtl;
}

.methodology-card {
  min-height: clamp(280px, 25vw, 350px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid #172436;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  direction: rtl;
  text-align: right;
  cursor: default;
  outline: none;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(23, 36, 54, 0);
  transition:
    border-color 0.4s ease,
    background-color 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}

.methodology-card::before {
  content: "";
  height: 4px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background: #00face;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.methodology-card::after {
  content: "";
  width: 34%;
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -46%;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 250, 206, 0.16), transparent);
  filter: blur(5px);
  transform: skewX(-14deg);
  pointer-events: none;
}

.methodology-card > * {
  position: relative;
  z-index: 2;
}

.methodology-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(26px, 3vw, 42px);
}

.methodology-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #6cf2d6;
  color: #172436;
  font-size: 20px;
  box-shadow: 0 0 0 rgba(0, 250, 206, 0);
}

.methodology-card h3 {
  margin: 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}

.methodology-card p {
  margin: 0;
  color: rgba(23, 36, 54, 0.78);
  font-family: "font_main";
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.9;
}

.methodology-card:hover,
.methodology-card:focus-visible {
  border-color: #00bfa3;
  background-color: #fbfffe;
  animation: methodologyCardHover 2.2s ease-in-out infinite;
}

.methodology-card:hover::before,
.methodology-card:focus-visible::before {
  transform: scaleX(1);
}

.methodology-card:hover::after,
.methodology-card:focus-visible::after {
  opacity: 1;
  animation: methodologyCardShine 1.9s ease-in-out infinite;
}

.methodology-card:hover .methodology-card__icon,
.methodology-card:focus-visible .methodology-card__icon {
  animation: methodologyIconHover 1.45s ease-in-out infinite;
}

@keyframes methodologyCardHover {
  0%,
  100% {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(23, 36, 54, 0.12);
  }

  50% {
    transform: translateY(-12px);
    box-shadow: 0 29px 65px rgba(23, 36, 54, 0.18);
  }
}

@keyframes methodologyCardShine {
  0% {
    left: -46%;
    opacity: 0;
  }

  20%,
  70% {
    opacity: 1;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes methodologyIconHover {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(0, 250, 206, 0.22);
  }

  45% {
    transform: translateY(-5px) rotate(-4deg);
    box-shadow: 0 12px 24px 5px rgba(0, 250, 206, 0.22);
  }

  72% {
    transform: translateY(-2px) rotate(3deg);
  }
}

@media (max-width: 992px) {
  .methodology__grid {
    grid-template-columns: 1fr;
  }

  .methodology-card {
    min-height: 260px;
  }
}

@media (max-width: 576px) {
  .methodology {
    padding: 72px 0 82px;
  }

  .methodology .main-container {
    width: 92%;
  }

  .methodology-card {
    min-height: 0;
    padding: 24px 21px 28px;
  }

  .methodology-card__head {
    margin-bottom: 24px;
  }
}

/* ====================================
   Service details — hero and profile
==================================== */
.service-details-hero {
  background: #172436;
}

.service-details-hero::after {
  background-color: rgba(9, 24, 42, 0.46);
}

.service-details-hero.title-pages--about::before {
  background:
    linear-gradient(90deg, rgba(11, 32, 56, 0.72) 0%, rgba(11, 32, 56, 0.22) 56%, rgba(11, 32, 56, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 32, 56, 0.58) 0%, transparent 54%);
}

.service-details-hero .title-pages__bg img {
  object-position: center;
}

.service-details-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding-bottom: clamp(72px, 12vh, 132px);
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.service-details-hero__breadcrumb {
  display: flex;
  width: fit-content;
  margin: 24px 0 0 auto;
  padding: 10px 14px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(14, 34, 56, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-family: "font_medium";
  backdrop-filter: blur(12px);
  animation: serviceHeroReveal 0.7s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-details-hero__breadcrumb a {
  color: #fff !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.service-details-hero__breadcrumb a:hover {
  color: #61ddc5 !important;
}

.service-details-hero__breadcrumb i {
  color: #61ddc5;
  font-size: 9px;
}

.service-details-hero__title.about-hero__title {
  position: static;
  max-width: min(920px, 86vw);
  margin-right: auto;
  transform: none;
  animation: serviceHeroReveal 0.85s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.title-pages--about .service-details-hero__title h1 {
  max-width: 820px;
  line-height: 1.03;
}

.title-pages--about .service-details-hero__title h1 b {
  display: block;
  font: inherit;
}

.service-profile {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(circle at 8% 15%, rgba(97, 221, 197, 0.1), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f5f8fa 100%);
}

.service-profile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(23, 37, 57, 0.1), transparent);
}

.service-profile .main-container {
  position: relative;
  z-index: 1;
}

.service-profile__intro {
  display: block;
  gap: 28px;
  margin-bottom: 56px;
  align-items: end;
}

.service-profile__number {
  position: relative;
  min-height: 108px;
  display: flex;
  padding: 17px;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: #172539;
  color: #fff;
  box-shadow: 0 20px 44px rgba(23, 37, 57, 0.14);
}

.service-profile__number::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(97, 221, 197, 0.18);
}

.service-profile__number span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-family: "font_medium";
}

.service-profile__number strong {
  position: relative;
  z-index: 1;
  color: #61ddc5;
  font-size: 38px;
  font-family: "font_bold";
  line-height: 1;
}

.service-profile__title {
  align-items: center;
  gap: 16px;
}

.service-profile .service-profile__title h2 {
  max-width: 820px;
  margin: 0;
  color: #172539;
  font-size: clamp(30px, 3.4vw, 50px);
  font-family: "font_bold";
  line-height: 1.35;
}

.service-profile .service-profile__title h2 span {
  display: block;
  margin-bottom: 8px;
  color: #2fbba0;
  font-size: 14px;
  font-family: "font_bold";
  line-height: 1.4;
}

.service-profile .service-profile__title h2 b {
  display: block;
  font: inherit;
}

.service-profile__title .title-hero__mark {
  --cube-size: 15px;
  flex: 0 0 auto;
}

.service-profile__title .title-hero__mark span {
  background: #61ddc5;
}

.service-profile__layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.service-profile__media {
  position: relative;
  min-height: 620px;
  margin: 0;
}

.service-profile__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34px;
  right: 34px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(23, 37, 57, 0.13);
  border-radius: 24px;
}

.service-profile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 48%, rgba(14, 31, 51, 0.38) 100%);
  pointer-events: none;
}

.service-profile__media img {
  width: 100%;
  height: 620px;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(23, 37, 57, 0.18);
}

.service-profile__badge {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  min-width: 152px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(16, 34, 55, 0.82);
  color: #fff;
  backdrop-filter: blur(14px);
}

.service-profile__badge strong {
  display: block;
  color: #61ddc5;
  font-size: 36px;
  font-family: "font_bold";
  line-height: 1;
}

.service-profile__badge span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-family: "font_medium";
}

.service-profile__body {
  padding-block: 22px;
}

.service-profile__label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 13px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: rgba(97, 221, 197, 0.14);
  color: #172539;
  font-size: 12px;
  font-family: "font_bold";
}

.service-profile__label i {
  color: #2fbba0;
}

.service-profile__lead {
  margin: 0 0 18px;
  color: #172539;
  font-size: clamp(21px, 2vw, 29px);
  font-family: "font_bold";
  line-height: 1.7;
}

.service-profile__copy {
  margin: 0;
  color: #697481;
  font-size: 16px;
  font-family: "font_medium";
  line-height: 2;
}

.service-profile__features {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 37, 57, 0.12);
}

.service-profile__features h3 {
  margin: 0 0 20px;
  color: #172539;
  font-size: 22px;
  font-family: "font_bold";
}

.service-profile__features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-profile__features li {
  display: flex;
  min-height: 62px;
  padding: 13px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(23, 37, 57, 0.08);
  border-radius: 12px;
  background: #fff;
  color: #3d4957;
  font-size: 13px;
  font-family: "font_medium";
  box-shadow: 0 10px 26px rgba(23, 37, 57, 0.04);
}

.service-profile__features li i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #61ddc5;
  color: #172539;
  font-size: 11px;
}

.service-profile__actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.service-profile__actions a {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(23, 37, 57, 0.14);
  border-radius: 8px;
  color: #172539 !important;
  font-size: 13px;
  font-family: "font_bold";
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.service-profile__actions a:hover {
  border-color: #61ddc5;
  background: rgba(97, 221, 197, 0.1);
  transform: translateY(-3px);
}

@keyframes serviceHeroReveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .service-profile__layout {
    grid-template-columns: 1fr;
  }

  .service-profile__media {
    min-height: 520px;
  }

  .service-profile__media img {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .service-details-hero__content {
    width: 92%;
    padding-bottom: 66px;
    align-items: center;
  }

  .service-details-hero__breadcrumb {
    max-width: 100%;
    margin: 22px auto 0;
    white-space: nowrap;
  }

  .service-details-hero__breadcrumb span {
    overflow: hidden;
    max-width: 135px;
    text-overflow: ellipsis;
  }

  .service-details-hero__title.about-hero__title {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .title-pages--about .service-details-hero__title h1 {
    font-size: clamp(35px, 10vw, 50px);
    text-align: center;
  }

  .service-profile {
    padding: 76px 0 84px;
  }

  .service-profile .main-container {
    width: 92%;
  }

  .service-profile__intro {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 17px;
    margin-bottom: 40px;
  }

  .service-profile__number {
    min-height: 86px;
    padding: 13px;
  }

  .service-profile__number strong {
    font-size: 30px;
  }

  .service-profile .service-profile__title h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .service-profile__layout {
    gap: 54px;
  }

  .service-profile__media,
  .service-profile__media img {
    min-height: 390px;
    height: 390px;
  }

  .service-profile__media::before {
    top: 18px;
    right: 18px;
  }

  .service-profile__features ul {
    grid-template-columns: 1fr;
  }

  .service-profile__actions,
  .service-profile__actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-details-hero__breadcrumb,
  .service-details-hero__title {
    animation: none !important;
  }
}

/* ====================================
   Sectors Roadmap
==================================== */
.sectors-services {
  padding: 78px 0 96px;
  background: #f4f6f8;
  direction: rtl;
  scroll-margin-top: 88px;
}

.sector-roadmap {
  position: relative;
  overflow: hidden;
  padding: 54px 48px 48px;
  border-radius: 58px 58px 18px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 221, 196, 0.1), transparent 34%),
    #172539;
  color: #fff;
  box-shadow: 0 28px 70px rgba(16, 31, 49, 0.18);
}

.sector-roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.sector-roadmap__head {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto 18px;
  text-align: center;
}

.sector-roadmap__head > span {
  display: block;
  margin-bottom: 8px;
  color: #61ddc5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sector-roadmap__head h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.1;
}

.sector-roadmap__head h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 4px;
  width: calc(100% + 8px);
  height: 10px;
  background: #61ddc5;
}

.sector-roadmap__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.sector-roadmap__track {
  position: relative;
  z-index: 1;
  height: 340px;
  margin: 12px -48px 22px;
}

.sector-roadmap__route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.sector-roadmap__route path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.sector-roadmap__route-base {
  stroke: rgba(255, 255, 255, 0.9);
}

.sector-roadmap__route-progress {
  stroke: #61ddc5;
  stroke-width: 3 !important;
}

.sector-roadmap__row {
  position: absolute;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 108px;
  padding-inline: 4.5%;
}

.sector-roadmap__row--one {
  top: 0;
}

.sector-roadmap__row--two {
  top: 101px;
  direction: ltr;
}

.sector-roadmap__row--three {
  top: 202px;
}

.sector-roadmap__item {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px 22px;
  color: #f7f9fc;
  text-align: center;
  text-decoration: none;
  direction: rtl;
  transition: color 0.25s ease, transform 0.25s ease;
}

.sector-roadmap__item::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-radius: 1px;
  background: #61ddc5;
  box-shadow: 0 0 0 5px rgba(97, 221, 197, 0.08);
  transform: translateX(50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sector-roadmap__item i {
  color: #fff;
  font-size: 22px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.sector-roadmap__item span {
  overflow: hidden;
  max-width: 100%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-overflow: ellipsis;
}

.sector-roadmap__item:hover,
.sector-roadmap__item:focus-visible {
  color: #61ddc5;
  transform: translateY(-4px);
}

.sector-roadmap__item:hover i,
.sector-roadmap__item:focus-visible i {
  color: #61ddc5;
  transform: scale(1.12);
}

.sector-roadmap__item:hover::after,
.sector-roadmap__item:focus-visible::after {
  box-shadow: 0 0 0 8px rgba(97, 221, 197, 0.17), 0 0 22px rgba(97, 221, 197, 0.5);
  transform: translateX(50%) rotate(45deg);
}

.sector-roadmap__item:focus-visible,
.sector-roadmap__cta:focus-visible {
  outline: 2px solid #61ddc5;
  outline-offset: 4px;
}

.sector-roadmap__cta {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  min-width: 250px;
  min-height: 52px;
  margin: 0 auto;
  padding: 12px 26px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  background: #61ddc5;
  color: #112033;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(97, 221, 197, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sector-roadmap__cta:hover {
  background: #fff;
  color: #112033;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(97, 221, 197, 0.24);
}

.sector-roadmap__cta i {
  transition: transform 0.25s ease;
}

.sector-roadmap__cta:hover i {
  transform: translateX(-4px);
}

.sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__head,
.sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__item,
.sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__cta {
  opacity: 0;
}

.sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__item {
  transform: translateY(18px) scale(0.92);
}

.sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__route-progress {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.sector-roadmap.is-roadmap-visible .sector-roadmap__head {
  animation: roadmapFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sector-roadmap.is-roadmap-visible .sector-roadmap__route-progress {
  animation: roadmapDraw 2.25s 0.25s cubic-bezier(0.65, 0, 0.35, 1) both;
}

.sector-roadmap.is-roadmap-visible .sector-roadmap__item {
  animation: roadmapItemIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.3s + (var(--item-order) * 0.17s));
}

.sector-roadmap.is-roadmap-visible .sector-roadmap__cta {
  animation: roadmapFadeUp 0.65s 2.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes roadmapDraw {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; }
  to { stroke-dasharray: 1; stroke-dashoffset: 0; }
}

@keyframes roadmapItemIn {
  from { opacity: 0; transform: translateY(18px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes roadmapFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .sectors-services {
    padding: 58px 0 70px;
  }

  .sector-roadmap {
    padding: 44px 24px 38px;
    border-radius: 38px 38px 14px 14px;
  }

  .sector-roadmap__head {
    margin-bottom: 32px;
  }

  .sector-roadmap__head p {
    font-size: 14px;
  }

  .sector-roadmap__track {
    height: auto;
    margin: 0;
    padding-right: 38px;
  }

  .sector-roadmap__track::before,
  .sector-roadmap__track::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 11px;
    bottom: 0;
    width: 2px;
    transform-origin: top;
  }

  .sector-roadmap__track::before {
    background: rgba(255, 255, 255, 0.86);
  }

  .sector-roadmap__track::after {
    width: 3px;
    background: #61ddc5;
  }

  .sector-roadmap__route {
    display: none;
  }

  .sector-roadmap__row,
  .sector-roadmap__row--one,
  .sector-roadmap__row--two,
  .sector-roadmap__row--three {
    position: static;
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    padding: 0;
    direction: rtl;
  }

  .sector-roadmap__item {
    min-height: 72px;
    padding: 12px 0;
    justify-content: flex-start;
    flex-direction: row;
    gap: 14px;
    text-align: right;
  }

  .sector-roadmap__item::after {
    right: -32px;
    bottom: 50%;
    transform: translate(50%, 50%);
  }

  .sector-roadmap__item:hover::after,
  .sector-roadmap__item:focus-visible::after {
    transform: translate(50%, 50%) rotate(45deg);
  }

  .sector-roadmap__item span {
    font-size: 14px;
  }

  .sector-roadmap__cta {
    width: 100%;
    min-width: 0;
    margin-top: 32px;
  }

  .sector-roadmap.is-roadmap-ready:not(.is-roadmap-visible) .sector-roadmap__track::after {
    transform: scaleY(0);
  }

  .sector-roadmap.is-roadmap-visible .sector-roadmap__track::after {
    animation: roadmapLineDown 1.9s 0.2s cubic-bezier(0.65, 0, 0.35, 1) both;
  }
}

@keyframes roadmapLineDown {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .sector-roadmap *,
  .sector-roadmap *::before,
  .sector-roadmap *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .methodology-card:hover,
  .methodology-card:focus-visible,
  .methodology-card:hover::after,
  .methodology-card:focus-visible::after,
  .methodology-card:hover .methodology-card__icon,
  .methodology-card:focus-visible .methodology-card__icon {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .partners-strip__track,
  .partners-strip__glow {
    animation: none !important;
  }
}

/* ============================================
   HOME ABOUT COUNTERS
   ============================================ */

.aboutus-home {
  position: relative;
  overflow: hidden;
}

.img-aboutus {
  min-height: clamp(430px, 52vw, 680px);
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  z-index: -1;
  padding-bottom: 140px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.aboutus-home__counters {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  max-width: 1050px;
  direction: rtl;
}

.aboutus-home__counter {
  min-height: 122px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 20px;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-align: center;
  opacity: 0;
  transform: translateY(38px) scale(0.94);
  transition:
    opacity 750ms ease,
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    background 550ms ease,
    box-shadow 550ms ease;
}

.aboutus-home__counter::before {
  content: "";
  width: 70%;
  height: 120%;
  position: absolute;
  top: -82%;
  left: -42%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(26px);
  transform: rotate(18deg);
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.aboutus-home.is-visible .aboutus-home__counter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.aboutus-home.is-visible .aboutus-home__counter:nth-child(2) {
  transition-delay: 110ms;
}

.aboutus-home.is-visible .aboutus-home__counter:nth-child(3) {
  transition-delay: 220ms;
}

.aboutus-home__counter:hover {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16));
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(0, 250, 206, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-7px) scale(1.015);
}

.aboutus-home__counter:hover::before {
  transform: translate(92%, 58%) rotate(18deg);
}

.aboutus-home__number {
  display: block;
  color: #00FACE;
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.9;
  direction: ltr;
  text-shadow: 0 8px 24px rgba(0, 250, 206, 0.22);
}

.aboutus-home__counter>span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "font_main";
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.4;
  white-space: nowrap;
}


.text-aboutus {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 32vw, 470px);
  margin-top: clamp(-150px, -10vw, -84px);
  padding-top: clamp(64px, 7vw, 90px) !important;
  padding-bottom: clamp(84px, 10vw, 150px) !important;
  border-radius: clamp(64px, 10vw, 150px) clamp(64px, 10vw, 150px) 0 0;
  background-color: var(--color-Primary1);
}

.text-aboutus .main-container {
  position: relative;
  z-index: 2;
}

.title-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-section h2 {
  font-size: 20px;
}

.title-section h2 span {
  font-family: "font_bold";
  font-size: 32px;
  display: block;
}

.sub-text-aboutus {
  display: block;
  width: min(70%, 940px);
  margin-right: auto;
}

.sub-text-aboutus>p {
  width: 100%;
  max-width: 900px;
  color: var(--color-white);
  margin: 20px 0;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.85;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.text-aboutus::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 26%;
  right: 0;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  height: 150%;
  background-image: url(../images/s1.svg);
  top: -26%;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .sub-text-aboutus {
    width: min(78%, 860px);
  }

  .text-aboutus::after {
    width: 30%;
  }
}

@media (max-width: 991px) {
  .text-aboutus {
    min-height: 350px;
    margin-top: -100px;
    padding-top: 72px !important;
    padding-bottom: 105px !important;
    border-radius: 80px 80px 0 0;
  }

  .sub-text-aboutus {
    width: 85%;
  }

  .sub-text-aboutus>p {
    font-size: 19px;
  }

  .text-aboutus::after {
    width: 34%;
    opacity: 0.65;
  }
}

@media (max-width: 767px) {
  .text-aboutus {
    min-height: 0;
    margin-top: -72px;
    padding-top: 60px !important;
    padding-bottom: 78px !important;
    border-radius: 52px 52px 0 0;
  }

  .sub-text-aboutus {
    width: 100%;
    margin-right: 0;
  }

  .text-aboutus .title-section {
    align-items: flex-start;
  }

  .sub-text-aboutus>p {
    margin: 18px 0 0;
    font-size: clamp(16px, 2.7vw, 18px);
    line-height: 1.9;
  }

  .text-aboutus::after {
    width: 52%;
    height: 110%;
    top: -5%;
    opacity: 0.2;
  }
}

@media (max-width: 479px) {
  .text-aboutus {
    margin-top: -52px;
    padding-top: 50px !important;
    padding-bottom: 62px !important;
    border-radius: 32px 32px 0 0;
  }

  .text-aboutus .title-section {
    gap: 8px;
  }

  .text-aboutus .title-hero__mark {
    --cube-size: 8px;
  }

  .text-aboutus .title-section h2 {
    font-size: 17px;
  }

  .text-aboutus .title-section h2 span {
    font-size: 26px;
  }

  .sub-text-aboutus>p {
    font-size: 15.5px;
  }

  .text-aboutus::after {
    width: 70%;
    opacity: 0.12;
  }
}

@media (max-width: 576px) {
  .img-aboutus {
    min-height: 390px;
  }

  .aboutus-home__counters {
    width: 94%;
    gap: 7px;
  }

  .aboutus-home__counter {
    min-height: 94px;
    gap: 7px;
    padding: 10px 5px;
    border-radius: 16px;
  }

  .aboutus-home__number {
    font-size: 29px;
  }

  .aboutus-home__counter>span {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus-home__counter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   INTERACTIVE FEATURED EVENTS MAP
   ============================================ */

.maps-location {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: radial-gradient(circle at 78% 48%, rgba(187, 219, 244, 0.2), transparent 34%), #f8f8f7;
  border-radius: 110px 110px 0 0;
  margin-top: -94px;
}

.maps-location__layout {
  width: 95%;
  margin-right: auto;
  margin-left: 0;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(24px, 5vw, 80px);
  direction: rtl;
}

.maps-location__intro {
  position: relative;
  z-index: 2;
  align-self: center;
  direction: rtl;
  text-align: right;
  transform: translateX(-20px);
}

.maps-location__intro h2 {
  margin: 0;
  color: #0b2038;
  font-family: "font_bold";
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 0.94;
  letter-spacing: 0;
}

.maps-location__intro h2 span {
  display: block;
}

.maps-location__selection {
  width: min(100%, 245px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 14px;
  margin-top: 38px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(11, 32, 56, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.maps-location__selection>span {
  grid-column: 1 / -1;
  color: rgba(11, 32, 56, 0.56);
  font-family: "font_main";
  font-size: 12px;
}

.maps-location__selection strong {
  color: #0b2038;
  font-family: "font_bold";
  font-size: 22px;
  line-height: 1.1;
}

.maps-location__selection p {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: rgba(11, 32, 56, 0.62);
  font-family: "font_main";
  font-size: 13px;
}

.maps-location__selection b {
  color: #00a98d;
  font-family: "font_bold";
  font-size: 20px;
}

.map {
  width: 85%;
  position: relative;
  justify-self: start;
  direction: ltr;
  aspect-ratio: 1406.97 / 1080;
}

.map>img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: contain;
  opacity: 0.72;
  filter: contrast(0.88);
  pointer-events: none;
  user-select: none;
}

.map__points {
  position: absolute;
  inset: 0;
}

.map-point {
  --point-delay: 0ms;
  min-width: 64px;
  position: absolute;
  left: var(--point-x);
  top: var(--point-y);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  border: 0;
  background: transparent;
  color: #0b2038;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 16px)) scale(0.88);
  transform-origin: center;
  transition:
    opacity 520ms ease var(--point-delay),
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    color 350ms ease;
}

.maps-location.is-visible .map-point {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.map-point:nth-child(1) {
  --point-delay: 60ms;
}

.map-point:nth-child(2) {
  --point-delay: 120ms;
}

.map-point:nth-child(3) {
  --point-delay: 180ms;
}

.map-point:nth-child(4) {
  --point-delay: 240ms;
}

.map-point:nth-child(5) {
  --point-delay: 300ms;
}

.map-point:nth-child(6) {
  --point-delay: 360ms;
}

.map-point:nth-child(7) {
  --point-delay: 420ms;
}

.map-point__count {
  min-width: 34px;
  height: 34px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: #0b2038;
  color: #fff;
  font-family: "font_bold";
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 9px 22px rgba(11, 32, 56, 0.18);
  transition:
    color 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease,
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-point__count::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(0, 250, 206, 0.34);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 350ms ease, transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-point__label {
  margin-top: 4px;
  color: currentColor;
  font-family: "font_medium";
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.maps-location.is-visible .map-point:hover,
.maps-location.is-visible .map-point:focus-visible,
.maps-location.is-visible .map-point.active {
  z-index: 5;
  color: #081b30;
  transform: translate(-50%, -50%) scale(1.1);
}

.map-point:hover .map-point__count,
.map-point:focus-visible .map-point__count,
.map-point.active .map-point__count {
  background: #00FACE;
  color: #0b2038;
  box-shadow:
    0 12px 28px rgba(0, 250, 206, 0.24),
    0 5px 18px rgba(11, 32, 56, 0.16);
  transform: translateY(-2px);
}

.map-point:hover .map-point__count::before,
.map-point:focus-visible .map-point__count::before,
.map-point.active .map-point__count::before {
  opacity: 1;
  transform: scale(1);
}

.map-point:focus-visible {
  outline: none;
}

.map-point--kuwait {
  --point-x: 54%;
  --point-y: 33%;
}

.map-point--neom {
  --point-x: 18%;
  --point-y: 42%;
}

.map-point--red-sea {
  --point-x: 22%;
  --point-y: 53%;
}

.map-point--alula {
  --point-x: 31%;
  --point-y: 48%;
}

.map-point--riyadh {
  --point-x: 49%;
  --point-y: 53%;
}

.map-point--uae {
  --point-x: 75%;
  --point-y: 57%;
}

.map-point--jeddah {
  --point-x: 33%;
  --point-y: 67%;
}

@media (max-width: 992px) {
  .maps-location {
    padding: 0;
  }

  .maps-location__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .map {
    width: 92%;
  }

  .maps-location__intro {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
  }

  .maps-location__intro h2 {
    font-size: clamp(40px, 9vw, 62px);
  }

  .maps-location__selection {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .maps-location__layout {
    width: 96%;
    gap: 30px;
  }

  .map {
    width: 100%;
  }

  .maps-location__intro {
    grid-template-columns: 1fr;
    transform: translateX(-10px);
  }

  .maps-location__selection {
    width: 100%;
  }

  .map-point {
    min-width: 48px;
    padding: 3px;
  }

  .map-point__count {
    min-width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .map-point__label {
    margin-top: 2px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-point {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: none;
  }

}

/* ============================================
   OPERATIONS GALLERY BANNER
   ============================================ */

.operations-banner {
  position: relative;
  padding: clamp(44px, 6vw, 84px) 0;
  overflow: hidden;
  background: #f8f8f7;
}

.operations-banner__frame {
  width: 96%;
  min-height: clamp(430px, 49vw, 590px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 auto;
  border-radius: clamp(24px, 3.5vw, 44px);
  background: #111820;
  box-shadow: 0 24px 70px rgba(11, 32, 56, 0.16);
}

.operations-banner__image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -5;
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  animation: operationsBannerZoom 14s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.operations-banner__shade {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.28) 0%, rgba(5, 10, 16, 0.05) 48%, rgba(7, 14, 24, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.08), rgba(5, 10, 16, 0.32));
}

.operations-banner__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 25% 25%;
  pointer-events: none;
  animation: operationsGridPulse 6s ease-in-out infinite;
}

.operations-banner__focus {
  width: 25%;
  height: 46%;
  position: absolute;
  top: 27%;
  left: 36%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  animation: operationsFocusFrame 7s ease-in-out infinite;
}

.operations-banner__scan {
  width: 22%;
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -28%;
  z-index: 0;
  opacity: 0;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  filter: blur(8px);
  pointer-events: none;
  animation: operationsScan 8s ease-in-out infinite;
}

.operations-banner__corner {
  width: 38px;
  height: 38px;
  position: absolute;
  left: 4.5%;
  bottom: 8%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.27);
  box-shadow:
    38px 0 0 -1px rgba(255, 255, 255, 0.07),
    0 -38px 0 -1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  animation: operationsCornerPulse 4.5s ease-in-out infinite;
}

.operations-banner__content {
  width: min(36%, 430px);
  position: absolute;
  top: 50%;
  right: clamp(32px, 7vw, 112px);
  z-index: 2;
  color: #fff;
  text-align: right;
  transform: translateY(-50%);
  animation: operationsContentFloat 6s ease-in-out infinite;
}

.operations-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.02em;
}

.operations-banner__eyebrow i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #00FACE;
  box-shadow: 0 0 0 0 rgba(0, 250, 206, 0.5);
  animation: operationsDotPulse 2.4s ease-out infinite;
}

.operations-banner__content h2 {
  margin: 0;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.operations-banner__content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "font_main";
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.45;
}

.operations-banner__link {
  min-width: 162px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  padding: 11px 23px;
  border-radius: 35px;
  color: #081b30;
  background: #00FACE;
  font-family: "font_bold";
  font-size: 14px;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms ease,
    background-color 420ms ease;
}

.operations-banner__link::before {
  content: "";
  width: 44px;
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -60px;
  opacity: 0;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.65);
  filter: blur(5px);
  animation: operationsButtonShine 4.8s ease-in-out infinite;
}

.operations-banner__link span,
.operations-banner__link i {
  position: relative;
  z-index: 1;
}

.operations-banner__link i {
  font-size: 17px;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.operations-banner__link:hover,
.operations-banner__link:focus-visible {
  color: #081b30;
  background: #5dffe3;
  box-shadow: 0 15px 34px rgba(0, 250, 206, 0.26);
  transform: translateY(-4px);
}

.operations-banner__link:hover i,
.operations-banner__link:focus-visible i {
  transform: translateX(-5px);
}

.operations-banner__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@keyframes operationsBannerZoom {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(-1.2%, -0.5%, 0);
  }
}

@keyframes operationsGridPulse {

  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.42;
  }
}

@keyframes operationsFocusFrame {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.97);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes operationsScan {

  0%,
  20% {
    left: -28%;
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  65% {
    opacity: 0.8;
  }

  80%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes operationsCornerPulse {

  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes operationsContentFloat {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes operationsDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 250, 206, 0.52);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(0, 250, 206, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 250, 206, 0);
  }
}

@keyframes operationsButtonShine {

  0%,
  52% {
    left: -60px;
    opacity: 0;
  }

  60% {
    opacity: 0.75;
  }

  78%,
  100% {
    left: calc(100% + 30px);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .operations-banner__frame {
    min-height: 500px;
  }

  .operations-banner__content {
    width: min(52%, 410px);
    right: clamp(26px, 6vw, 64px);
  }
}

@media (max-width: 640px) {
  .operations-banner {
    padding: 34px 0;
  }

  .operations-banner__frame {
    width: 94%;
    min-height: 520px;
    border-radius: 26px;
  }

  .operations-banner__image {
    object-position: 42% center;
  }

  .operations-banner__shade {
    background:
      linear-gradient(180deg, rgba(5, 10, 16, 0.12) 0%, rgba(5, 10, 16, 0.82) 78%, rgba(5, 10, 16, 0.92) 100%);
  }

  .operations-banner__focus {
    width: 44%;
    height: 28%;
    top: 16%;
    left: 28%;
  }

  .operations-banner__content {
    width: auto;
    top: auto;
    right: 25px;
    bottom: 34px;
    left: 25px;
    transform: none;
  }

  .operations-banner__content h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .operations-banner__content p {
    font-size: 18px;
  }

  .operations-banner__corner {
    width: 28px;
    height: 28px;
    top: 24px;
    bottom: auto;
    left: 24px;
  }

  @keyframes operationsContentFloat {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {

  .operations-banner__image,
  .operations-banner__grid,
  .operations-banner__focus,
  .operations-banner__scan,
  .operations-banner__corner,
  .operations-banner__content,
  .operations-banner__eyebrow i,
  .operations-banner__link::before {
    animation: none;
  }
}

/* ============================================
   JOURNEY SHOWCASE
   ============================================ */

.journey-showcase {
  height: clamp(560px, 61.9vw, 900px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
}

.journey-showcase__scene {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: top;
  will-change: transform;
  animation: journeySceneFloat 12s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.journey-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 33% 43%, rgba(187, 219, 244, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 48%);
}

.journey-showcase__light {
  width: 22%;
  height: 150%;
  position: absolute;
  top: -25%;
  left: -32%;
  z-index: -1;
  opacity: 0;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  filter: blur(12px);
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: journeyLightSweep 8s ease-in-out infinite;
}

.journey-showcase__inner {
  height: 100%;
  position: relative;
}

.journey-showcase__title {
  width: fit-content;
  position: absolute;
  top: 42%;
  left: clamp(40px, 10vw, 160px);
  z-index: 2;
  align-items: center;
  gap: clamp(11px, 1.3vw, 18px);
  direction: rtl;
  transform: translateY(-50%);
}

.journey-showcase__title h2 {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 11px 17px 10px;
  color: #0b2038;
  font-family: "font_bold";
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  text-align: right;
}

.journey-showcase__title h2 span {
  display: block;
  margin-bottom: 10px;
  font-family: "font_main";
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1.12;
}

.journey-showcase__title .title-hero__mark {
  --cube-size: clamp(9px, 1vw, 13px);
  filter: drop-shadow(0 9px 18px rgba(11, 32, 56, 0.2));
}

.journey-showcase__title .title-hero__mark span {
  background: #0b2038;
  box-shadow: inset 0 0 0 1px rgba(187, 219, 244, 0.35);
}

@keyframes journeySceneFloat {
  0% {
    transform: scale(1.005) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.025) translate3d(-0.6%, -0.4%, 0);
  }
}

@keyframes journeyLightSweep {

  0%,
  22% {
    left: -32%;
    opacity: 0;
  }

  34% {
    opacity: 0.58;
  }

  70% {
    opacity: 0.3;
  }

  82%,
  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes journeyTitlePulse {

  0%,
  100% {
    box-shadow:
      0 16px 38px rgba(11, 32, 56, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.42);
    transform: translateY(0);
  }

  50% {
    box-shadow:
      0 22px 46px rgba(11, 32, 56, 0.16),
      inset 0 0 0 1px rgba(255, 255, 255, 0.62);
    transform: translateY(-5px);
  }
}

@media (max-width: 992px) {
  .journey-showcase {
    height: clamp(540px, 72vw, 700px);
  }

  .journey-showcase__scene {
    object-position: 57% center;
  }

  .journey-showcase__title {
    top: 43%;
    left: clamp(22px, 7vw, 70px);
  }
}

@media (max-width: 640px) {
  .journey-showcase {
    height: 550px;
  }

  .journey-showcase__scene {
    object-position: 58% center;
  }

  .journey-showcase::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 70%);
  }

  .journey-showcase__title {
    top: 48%;
    left: 14px;
    gap: 8px;
  }

  .journey-showcase__title h2 {
    padding: 9px 12px 8px;
    font-size: clamp(27px, 8vw, 37px);
  }

  .journey-showcase__title .title-hero__mark {
    --cube-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .journey-showcase__scene,
  .journey-showcase__light,
  .journey-showcase__title h2 {
    animation: none;
  }
}

/* ============================================
   CLIENTS
   ============================================ */

.clients-home {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff;
}

.clients-home::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  top: -260px;
  right: -130px;
  border-radius: 50%;
  background: rgba(187, 219, 244, 0.22);
  filter: blur(20px);
  pointer-events: none;
}

.clients-home .main-container {
  position: relative;
  z-index: 1;
}

.clients-home__head {
  max-width: 900px;
  margin: 0 auto clamp(48px, 6vw, 82px);
  text-align: center;
}

.clients-home__title {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 20px);
  margin: 0 auto;
  direction: rtl;
  text-align: right;
}

.clients-home__title .title-hero__mark {
  --cube-size: clamp(9px, 1vw, 13px);
  filter: none;
}

.clients-home__title .title-hero__mark span {
  background: #0b2038;
  box-shadow: none;
}

.clients-home__title h2 {
  margin: 0;
  color: #0b2038;
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.clients-home__title h2 span {
  display: inline;
  padding-inline: 5px;
  color: #0b2038;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  background: linear-gradient(90deg, #73efd7 0%, #9af3e2 100%);
  box-shadow: 0 0 20px rgba(0, 250, 206, 0.38);
}

.clients-home__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  place-items: center;
  gap: clamp(28px, 3vw, 48px);
}

.clients-home__logo {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.45 / 1;
  display: grid;
  place-items: center;
}

.clients-home__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: auto;
  opacity: 0.68;
  filter: saturate(0.72);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.clients-home__logo:hover img {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(-5px);
}

@media (max-width: 1100px) {
  .clients-home__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .clients-home {
    padding-block: 64px;
  }

  .clients-home__head {
    margin-bottom: 42px;
  }

  .clients-home__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .clients-home__logo {
    aspect-ratio: 1.4 / 1;
  }
}

@media (max-width: 420px) {
  .clients-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================
   INNER PAGE TITLE
   ============================================ */

.header-inner-page {
  position: relative;
}

.header-inner-page .navBar {
  top: 0;
  z-index: 20;
}

.title-pages {
  position: relative;
  height: 100vh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #172436;
  z-index: 1;
}

.title-pages::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #00000049;
}

.title-pages--about {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title-pages.title-pages--about::before {
  background:
    linear-gradient(90deg, rgba(11, 32, 56, 0.2) 0%, rgba(11, 32, 56, 0.04) 48%, transparent 72%),
    linear-gradient(0deg, rgba(11, 32, 56, 0.22) 0%, transparent 38%);
}

.about-hero__content {
  height: 100%;
  position: relative;
}

.about-hero__title {
  width: fit-content;
  position: absolute;
  left: 0;
  bottom: clamp(70px, 13vh, 140px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  direction: rtl;
  transform: translateY(-35%);
}

.about-hero__title .title-hero__mark {
  --cube-size: clamp(10px, 1vw, 14px);
  filter: drop-shadow(0 8px 18px rgba(11, 32, 56, 0.2));
}

.about-hero__title .title-hero__mark span {
  background: #fff;
  box-shadow: none;
}

.title-pages--about .about-hero__title h1 {
  margin: 0;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 0.9;
  text-align: right;
  text-shadow: 0 5px 22px rgba(11, 32, 56, 0.2);
}

.title-pages--about .about-hero__title h1 span {
  display: block;
  margin-top: 10px;
  font-family: "font_main";
  font-size: 0.38em;
  font-weight: 400;
  line-height: 1;
}

.contact-hero .about-hero__title {
  width: max-content;
  max-width: calc(100vw - 40px);
}

.contact-hero .about-hero__title h1 {
  white-space: nowrap;
}

.title-pages__bg {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.title-pages__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom;
  transform: scale(1.08);
  animation: titlePagesZoom 14s ease-in-out infinite alternate;
}

.title-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(23, 36, 54, 0.94) 0%, rgba(23, 36, 54, 0.78) 48%, rgba(23, 36, 54, 0.35) 100%),
    radial-gradient(circle at 20% 70%, rgba(0, 250, 206, 0.18), transparent 34%);
}

.title-pages__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 74px 74px;
  animation: titleGridMove 18s linear infinite;
}

.title-pages__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 42px;
  padding-top: 82px;
  padding-bottom: 82px;
}

.title-pages__copy {
  max-width: 820px;
}

.title-pages__eyebrow {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.34);
  background: rgba(0, 250, 206, 0.1);
  color: #00FACE;
  font-family: "font_bold";
  font-size: 14px;
}

.page-breadcrumb {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.page-breadcrumb a,
.page-breadcrumb span,
.page-breadcrumb i {
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_bold";
  font-size: 13px;
}

.page-breadcrumb a:hover,
.page-breadcrumb span {
  color: #00FACE;
}

.title-pages h1 {
  margin: 22px 0 18px;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.15;
}

.title-pages p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.title-pages__signal {
  width: 230px;
  height: 230px;
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 250, 206, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.title-pages__signal::before,
.title-pages__signal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.title-pages__signal::before {
  inset: -18px;
  animation: orbitSpin 16s linear infinite;
}

.title-pages__signal::after {
  inset: 26px;
  animation: orbitSpin 12s linear infinite reverse;
}

.title-pages__signal strong {
  color: #00FACE;
  font-family: "font_bold";
  font-size: 62px;
  line-height: 1;
}

.title-pages__signal span {
  max-width: 145px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_bold";
  font-size: 13px;
  text-align: center;
}


.about-page .header-inner-page {
  z-index: 0;
}

.about-page #app {
  position: relative;
  z-index: 2;
  overflow: visible !important;
}

.about-story {
  min-height: 650px;
  position: relative;
  z-index: 30;
  margin-top: -105px;
  padding: clamp(115px, 10vw, 165px) 0 clamp(80px, 8vw, 125px);
  overflow: hidden;
  border-radius: clamp(70px, 9vw, 145px) clamp(70px, 9vw, 145px) 0 0;
  background: #f1f2f3;
  box-shadow: 0 -18px 55px rgba(11, 32, 56, 0.06);
}

.about-story__layout {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-story__visual {
  width: calc(50% + ((100vw - 100%) / 2));
  height: clamp(720px, 68vw, 980px);
  position: absolute;
  top: 40%;
  right: calc((100vw - 100%) / -2);
  left: auto;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-story__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-story__content {
  width: 50%;
  position: relative;
  z-index: 2;
  margin-right: auto;
  direction: rtl;
}

.about-story__content p {
  margin: 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 700;
  line-height: 1.85;
  text-align: justify;
}

.about-story__content strong {
  padding-inline: 5px;
  color: #172436;
  background: #d8a25d;
  font: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-story__tiles {
  position: absolute;
  right: auto;
  left: 0;
  bottom: -74px;
  width: 126px;
  height: 126px;
  pointer-events: none;
}

.about-story__tiles span {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: rgba(216, 162, 93, 0.4);
  will-change: transform;
  animation-duration: 6s;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  animation-iteration-count: infinite;
}

.about-story__tiles span:nth-child(1) {
  transform: translate(0, 150%);
  animation-name: heroCubeOne;
}

.about-story__tiles span:nth-child(2) {
  transform: translate(100%, 50%);
  animation-name: heroCubeTwo;
}

.about-story__tiles span:nth-child(3) {
  transform: translate(200%, 150%);
  animation-name: heroCubeThree;
}


.about-operations__copy p {
  font-size: 25px;
  line-height: 40px;
}


@media (max-width: 767px) {
  .about-story {
    min-height: 0;
    margin-top: -46px;
    padding: 76px 0 70px;
    border-radius: 52px 52px 0 0;
  }

  .about-story__layout {
    width: 92%;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .about-story__visual {
    width: 100%;
    height: 260px;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    flex: 0 0 auto;
  }

  .about-story__visual img {
    object-fit: contain;
  }

  .about-story__content {
    width: 100%;
  }

  .about-story__content p {
    font-size: 18px;
    line-height: 1.9;
  }

  .about-story__tiles {
    right: auto;
    left: 8px;
    bottom: -46px;
    transform: scale(0.72);
  }
}












@keyframes titlePagesZoom {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(-22px, 12px, 0);
  }
}

@keyframes titleGridMove {
  to {
    background-position: 74px 74px;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.16) translate3d(-18px, 12px, 0);
  }
}

@keyframes heroCubeOne {

  0%,
  18%,
  100% {
    transform: translate(0, 150%);
  }

  25%,
  43% {
    transform: translate(150%, 0);
  }

  50%,
  68% {
    transform: translate(50%, 50%);
  }

  75%,
  93% {
    transform: translate(0, 50%);
  }
}

@keyframes heroCubeTwo {

  0%,
  18%,
  100% {
    transform: translate(100%, 50%);
  }

  25%,
  43% {
    transform: translate(50%, 100%);
  }

  50%,
  68% {
    transform: translate(50%, 150%);
  }

  75%,
  93% {
    transform: translate(100%, 150%);
  }
}

@keyframes heroCubeThree {

  0%,
  18%,
  100% {
    transform: translate(200%, 150%);
  }

  25%,
  43% {
    transform: translate(150%, 200%);
  }

  50%,
  68% {
    transform: translate(150%, 150%);
  }

  75%,
  93% {
    transform: translate(200%, 50%);
  }
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroButtonReveal {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, 24px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0);
  }
}

@keyframes heroTitleLine {
  to {
    transform: translateX(50%) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .title-hero__mark,
  .title-hero__mark span,
  .about-story__tiles span,
  .title-hero h2,
  .title-hero h2::after,
  .btn-hero {
    animation: none !important;
  }

  .title-hero h2::after {
    transform: translateX(50%) scaleX(1);
  }
}

@media (max-width: 1200px) {
  .hero {
    min-height: calc(100vh - 82px);
  }
}

@media (max-width: 768px) {
  .title-pages {
    min-height: auto;
  }

  .about-hero__title {
    left: 50%;
    bottom: 72px;
    transform: translate(-50%, -35%);
  }

  .title-pages--about .about-hero__title h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .title-pages__content {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .title-pages__signal {
    width: 190px;
    height: 190px;
  }

  .title-pages h1 {
    font-size: 34px;
  }

}

/* ============================================
   SHARED SECTION EYEBROW
   ============================================ */

.section-eyebrow {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.28);
  background: rgba(0, 250, 206, 0.09);
  color: #00FACE;
  font-family: "font_bold";
  font-size: 20px;
}

/* ============================================
   SERVICES
   ============================================ */

.services-home {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background: #fff;
  color: #172436;
}

.services-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 250, 206, 0.1), transparent 26%),
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

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

.section-eyebrow--light {
  background: rgba(0, 250, 206, 0.12);
  color: #172436;
}

.services-home__head {
  max-width: 1060px;
}

.services-home__head h2 {
  margin: 18px 0 18px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

.services-home__head p {
  max-width: 1180px;
  color: rgba(23, 36, 54, 0.82);
  font-family: "font_medium";
  font-size: 19px;
  line-height: 2;
}

.services-home__showcase {
  margin-top: 54px;
}

.services-home__showcase .owl-stage {
  display: flex;
  padding: 18px 0 32px;
}

.services-home__showcase .owl-item {
  display: flex;
}

.service-card {
  width: 100%;
  min-height: 540px;
  direction: rtl;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: #172436;
  transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72%;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0) 0%, rgba(23, 36, 54, 0.92) 62%, #172436 100%),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.24), transparent 32%);
  transition: height 0.42s ease, opacity 0.42s ease;
}

.service-card:hover {
  transform: translateY(-12px) rotate(-0.6deg);
  border-color: rgba(0, 250, 206, 0.45);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover::after {
  height: 92%;
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #172436;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.12), rgba(23, 36, 54, 0.42)),
    linear-gradient(90deg, rgba(23, 36, 54, 0.84), rgba(23, 36, 54, 0.1));
}

.service-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.12) translateX(-10px);
}

.service-card__body {
  width: calc(100% - 32px);
  min-height: 260px;
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  margin: 16px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transform: translateY(44px);
  transition: transform 0.42s ease, background 0.42s ease, border-color 0.42s ease;
}

.service-card:hover .service-card__body {
  transform: translateY(0);
  background: rgba(23, 36, 54, 0.72);
  border-color: rgba(0, 250, 206, 0.34);
}

.service-card__body span {
  width: 58px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 16px;
  box-shadow: 0 14px 32px rgba(0, 250, 206, 0.22);
}

.service-card__body h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-family: "font_bold";
  font-size: 26px;
  line-height: 1.45;
}

.service-card__body p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 0;
}

.service-card__body a,
.services-home__cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436 !important;
  font-family: "font_bold";
  font-size: 15px;
}

.service-card__body a {
  width: fit-content;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.36s ease, transform 0.36s ease, box-shadow 0.36s ease;
}

.service-card:hover .service-card__body a {
  opacity: 1;
  transform: translateY(0);
}

.service-card__body a:hover,
.services-home__cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.32);
}

.services-home__showcase .owl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.services-home__showcase .owl-nav button.owl-prev,
.services-home__showcase .owl-nav button.owl-next {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 36, 54, 0.12);
  border-radius: 8px;
  background: #172436;
  color: #172436;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(23, 36, 54, 0.13);
  transition: all 0.35s ease;
}

.services-home__showcase .owl-nav button.owl-prev span,
.services-home__showcase .owl-nav button.owl-next span {
  display: block;
  color: inherit;
  font-size: 30px;
  line-height: 0.7;
}

.services-home__showcase .owl-nav button.owl-prev:hover,
.services-home__showcase .owl-nav button.owl-next:hover {
  background: #00FACE;
  border-color: #00FACE;
  color: #172436;
  transform: translateY(-2px);
}

.services-home__showcase .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: -35px;
}

.services-home__showcase .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  display: block;
  margin: 0;
  border-radius: 20px;
  background: rgba(23, 36, 54, 0.22);
  transition: all 0.35s ease;
}

.services-home__showcase .owl-dots .owl-dot.active span {
  width: 34px;
  background: #00FACE;
}

.services-home__gallery {
  margin-top: 54px;
}

.services-home__gallery .owl-stage {
  display: flex;
  padding: 18px 0 34px;
}

.services-home__gallery .owl-item {
  display: flex;
}

.services-page__gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.services-page__gallery .service-photo-card {
  grid-column: span 4;
}

.services-home__gallery .owl-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px;
}

.services-home__gallery .owl-nav button.owl-prev,
.services-home__gallery .owl-nav button.owl-next {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 36, 54, 0.12) !important;
  border-radius: 8px !important;
  background: #172436 !important;
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(23, 36, 54, 0.13);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.services-home__gallery .owl-nav button.owl-prev span,
.services-home__gallery .owl-nav button.owl-next span {
  display: block;
  color: inherit;
  font-size: 30px;
  line-height: 0.7;
}

.services-home__gallery .owl-nav button.owl-prev:hover,
.services-home__gallery .owl-nav button.owl-next:hover {
  background: #00FACE !important;
  border-color: #00FACE !important;
  color: #172436 !important;
  transform: translateY(-2px);
}

.services-home__gallery .owl-dots {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: -42px;
}

.services-home__gallery .owl-dots .owl-dot {
  width: 34px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-home__gallery .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  display: block;
  margin: 0;
  border-radius: 999px;
  background: rgba(23, 36, 54, 0.22);
  transition: width 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.services-home__gallery .owl-dots .owl-dot.active span {
  width: 34px;
  background: #00FACE;
  box-shadow: 0 10px 24px rgba(0, 250, 206, 0.28);
}

.service-photo-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: grid;
  grid-template-rows: 270px 1fr;
  border-radius: 30px 30px 5px 5px;
  border: 1px solid rgba(23, 36, 54, 0.1);
  background: #fff;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-photo-card--wide {
  grid-column: auto;
}

.service-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.46) 38%, transparent 72%);
  transform: translateX(115%);
  transition: transform 0.75s ease;
}

.service-photo-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(0, 250, 206, 0.25);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-photo-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 250, 206, 0.42);
}

.service-photo-card:hover::before {
  transform: translateX(-115%);
}

.service-photo-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-photo-card__image {
  position: relative;
  overflow: hidden;
  display: block;
  background: #172436;
}

.service-photo-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.06), rgba(23, 36, 54, 0.56)),
    radial-gradient(circle at 18% 18%, rgba(0, 250, 206, 0.2), transparent 34%);
  transition: opacity 0.45s ease;
}

.service-photo-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease, filter 0.45s ease;
}

.service-photo-card__image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 56px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 15px;
  box-shadow: 0 16px 38px rgba(0, 250, 206, 0.24);
}

.service-photo-card:hover .service-photo-card__image img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.04);
}

.service-photo-card__content {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: start;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.service-photo-card__content h3 {
  width: fit-content;
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 12px;
  color: #172436;
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.4;
}

.service-photo-card__content h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: #00FACE;
  transition: width 0.35s ease;
}

.service-photo-card:hover .service-photo-card__content h3::after {
  width: 100%;
}

.service-photo-card__content p {
  color: rgba(23, 36, 54, 0.74);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.service-photo-card__content a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  background: #172436;
  color: #fff !important;
  font-family: "font_bold";
  font-size: 14px;
  transform: translateY(8px);
  opacity: 0.86;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.service-photo-card:hover .service-photo-card__content a {
  transform: translateY(0);
  opacity: 1;
  background: #00FACE;
  color: #172436 !important;
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.28);
}

.services-home__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 34px;
  margin-top: 46px;
}

.service-item {
  min-height: 116px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 22px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(23, 36, 54, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-item::after {
  content: "";
  position: absolute;
  right: 22px;
  left: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: #00FACE;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 250, 206, 0.45);
  box-shadow: 0 24px 62px rgba(23, 36, 54, 0.11);
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-item__mark {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
  display: inline-block;
}

.service-item__mark::before,
.service-item__mark::after {
  content: "";
  position: absolute;
  background: #172436;
  border-radius: 2px;
}

.service-item__mark::before {
  width: 7px;
  height: 7px;
  top: 0;
  right: 0;
  box-shadow: -10px 10px 0 #172436;
}

.service-item__mark::after {
  width: 7px;
  height: 7px;
  right: 0;
  bottom: 0;
}

.service-item h3 {
  margin: 0;
  color: #446f94;
  font-family: "font_bold";
  font-size: 22px;
  line-height: 1.45;
}

.service-item--accent h3 {
  color: #172436;
}

.service-item:hover h3 {
  color: #172436;
}

.services-home__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

@media (max-width: 1200px) {
  .services-page__gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .services-page__gallery .service-photo-card {
    grid-column: span 6;
  }

  .services-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-home {
    padding: 76px 0 84px;
  }

  .services-home__head p {
    font-size: 16px;
  }

  .services-home__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .services-home__gallery {
    margin-top: 38px;
  }

  .services-page__gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
  }

  .services-page__gallery .service-photo-card {
    grid-column: span 12;
  }

  .services-home__gallery .owl-nav,
  .services-home__gallery .owl-dots {
    justify-content: center;
    margin-top: 16px;
  }

  .service-photo-card {
    min-height: auto;
    grid-template-rows: 235px auto;
  }

  .service-photo-card__content {
    padding: 20px;
  }

  .service-photo-card__content h3 {
    font-size: 20px;
  }

  .service-card__image {
    height: auto;
  }

  .service-card {
    min-height: 500px;
  }

  .service-card__body {
    transform: translateY(0);
  }

  .service-card__body a {
    opacity: 1;
    transform: translateY(0);
  }

  .services-home__showcase .owl-nav,
  .services-home__showcase .owl-dots {
    justify-content: center;
    margin-top: 16px;
  }

  .service-item h3 {
    font-size: 19px;
  }
}

@media (max-width: 576px) {
  .services-home .main-container {
    width: 92%;
  }

  .services-home__head h2 {
    font-size: 34px;
  }

  .service-item {
    min-height: 98px;
    padding: 20px 18px;
  }

  .service-card__body {
    padding: 20px;
  }
}

.services-catalog {
  padding-top: 110px;
  background:#fff ;
}

.services-catalog__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.services-catalog__card {
  min-height: 560px;
  box-shadow: 0 24px 68px rgba(23, 36, 54, 0.11);
}

.services-catalog__card::before {
  inset: 18px;
  border-color: rgba(0, 250, 206, 0.28);
}

.services-catalog__card .service-card__body {
  transform: translateY(38px);
}

.services-catalog__card:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 88px rgba(23, 36, 54, 0.18);
}

.services-catalog__card .service-card__body::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 44%, transparent 72%);
  transform: translateX(110%);
  transition: transform 0.72s ease;
}

.services-catalog__card:hover .service-card__body::after {
  transform: translateX(-110%);
}

.services-catalog__card .service-card__body a {
  position: relative;
  z-index: 2;
}

.service-details {
  position: relative;
  overflow: hidden;
  padding: 105px 0 112px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 250, 206, 0.15), transparent 28%),
    linear-gradient(135deg, #172436 0%, #0d1520 100%);
}

.service-details::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  animation: titleGridMove 18s linear infinite;
}

.service-details .main-container {
  position: relative;
  z-index: 1;
}

.service-details__head {
  max-width: 880px;
  margin-bottom: 44px;
}

.service-details__head h2 {
  margin: 18px 0 0;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.14;
}

.service-details__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.38s ease, border-color 0.38s ease, background 0.38s ease;
}

.service-detail-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.18);
  transition: transform 0.48s ease;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 250, 206, 0.45);
  background: rgba(255, 255, 255, 0.11);
}

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

.service-detail-card span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 15px;
}

.service-detail-card h3,
.service-detail-card p,
.service-detail-card a {
  position: relative;
  z-index: 1;
}

.service-detail-card h3 {
  margin: 20px 0 10px;
  color: #fff;
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.45;
}

.service-detail-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
}

.service-detail-card a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-family: "font_bold";
  font-size: 14px;
}

.service-detail-card a:hover {
  background: #00FACE;
  color: #172436 !important;
  transform: translateY(-2px);
}

.single-service {
  min-height: calc(100vh - 92px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #172436;
}

.single-service__bg {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.single-service__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
  animation: titlePagesZoom 14s ease-in-out infinite alternate;
}

.single-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(23, 36, 54, 0.96) 0%, rgba(23, 36, 54, 0.78) 52%, rgba(23, 36, 54, 0.36) 100%),
    radial-gradient(circle at 18% 72%, rgba(0, 250, 206, 0.22), transparent 34%);
}

.single-service__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: titleGridMove 18s linear infinite;
}

.single-service__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 44px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.single-service__content h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.1;
}

.single-service__content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.single-service__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.single-service__actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-family: "font_bold";
}

.single-service__actions a:first-child {
  color: #172436 !important;
  background: #00FACE;
  box-shadow: 0 18px 42px rgba(0, 250, 206, 0.28);
}

.single-service__actions a:last-child {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.single-service__actions a:hover {
  transform: translateY(-3px);
}

.single-service__panel {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.single-service__panel h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "font_bold";
  font-size: 26px;
}

.single-service__panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-service__panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "font_medium";
}

.single-service__panel li i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-size: 12px;
}

@media (max-width: 1200px) {

  .services-catalog__grid,
  .service-details__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-service__wrap {
    grid-template-columns: 1fr;
  }

  .single-service__panel {
    max-width: 760px;
  }
}

@media (max-width: 768px) {

  .services-catalog__grid,
  .service-details__list {
    grid-template-columns: 1fr;
  }

  .services-catalog__card .service-card__body {
    transform: translateY(0);
  }

  .service-details {
    padding: 78px 0;
  }

  .single-service {
    min-height: auto;
  }

  .single-service__wrap {
    width: 92%;
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .single-service__content h1 {
    font-size: 34px;
  }
}

.single-service__wrap {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
}

.single-service__media {
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #172436;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.single-service__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(0, 250, 206, 0.28);
  border-radius: 8px;
  pointer-events: none;
  animation: serviceFramePulse 2.8s ease-in-out infinite;
}

.single-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.02), rgba(23, 36, 54, 0.26)),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.3), transparent 32%);
}

.single-service__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  animation: serviceImageFloat 8s ease-in-out infinite alternate;
}

.single-service__badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  min-width: 168px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 36, 54, 0.76);
  backdrop-filter: blur(16px);
}

.single-service__badge strong {
  display: block;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 42px;
  line-height: 1;
}

.single-service__badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_bold";
  font-size: 13px;
}

.single-service__panel {
  grid-column: 1 / -1;
}

.single-service__panel ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-service__request,
.service-modal__form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  padding: 0 24px;
  font-family: "font_bold";
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 250, 206, 0.28);
}

.single-service__request:hover,
.service-modal__form button:hover {
  transform: translateY(-3px);
}

.single-service__actions a {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.related-services {
  position: relative;
  overflow: hidden;
  padding: 98px 0 105px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 250, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.related-services__head {
  max-width: 820px;
  margin-bottom: 42px;
}

.related-services__head h2 {
  margin: 18px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.12;
}

.related-services__slider {
  overflow: hidden;
  direction: ltr;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.related-services__track {
  width: max-content;
  display: flex;
  gap: 22px;
  padding: 12px 0 24px;
  animation: relatedServicesMove 28s linear infinite;
}

.related-services__slider:hover .related-services__track {
  animation-play-state: paused;
}

.related-service-card {
  width: 360px;
  min-height: 420px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 360px;
  padding: 24px;
  border-radius: 8px;
  background: #172436;
  box-shadow: 0 24px 62px rgba(23, 36, 54, 0.12);
  direction: rtl;
}

.related-service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s ease;
}

.related-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.02) 0%, rgba(23, 36, 54, 0.74) 55%, #172436 100%),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.22), transparent 34%);
}

.related-service-card span {
  width: 54px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
}

.related-service-card h3 {
  margin: 16px 0 9px;
  color: #fff;
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.4;
}

.related-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 14px;
  line-height: 1.8;
}

.related-service-card:hover {
  transform: translateY(-10px);
}

.related-service-card:hover img {
  transform: scale(1.13) translateX(-10px);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 16, 0.72);
  backdrop-filter: blur(8px);
}

.service-modal__dialog {
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 42px));
  position: relative;
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.22);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.28s ease;
}

.service-modal.active .service-modal__dialog {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: rgba(23, 36, 54, 0.08);
  color: #172436;
  cursor: pointer;
}

.service-modal__dialog h2 {
  margin: 18px 0 10px;
  color: #172436;
  font-family: "font_bold";
  font-size: 32px;
}

.service-modal__dialog p {
  color: rgba(23, 36, 54, 0.7);
  font-family: "font_medium";
  line-height: 1.9;
}

.service-modal__form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.service-modal__form label {
  display: grid;
  gap: 8px;
}

.service-modal__form label span {
  color: #172436;
  font-family: "font_bold";
  font-size: 14px;
}

.service-modal__form input,
.service-modal__form textarea {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(23, 36, 54, 0.12);
  border-radius: 8px;
  background: #f8fbfc;
  color: #172436;
  padding: 0 16px;
  font-family: "font_medium";
  outline: 0;
}

.service-modal__form textarea {
  min-height: 118px;
  padding-top: 14px;
}

.service-modal__form input:focus,
.service-modal__form textarea:focus {
  border-color: #00FACE;
  box-shadow: 0 0 0 4px rgba(0, 250, 206, 0.13);
}

.service-modal__form button {
  width: 100%;
  margin-top: 8px;
}

body.modal-open {
  overflow: hidden;
}

.sector-creative {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 250, 206, 0.12), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(23, 36, 54, 0.08), transparent 30%),
    #f7fbfd;
  color: #172436;
}

.sector-creative__noise {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  animation: sectorsGridDrift 20s linear infinite;
}

.sector-creative__orbit {
  width: 520px;
  height: 520px;
  position: absolute;
  left: -170px;
  top: 72px;
  border: 1px dashed rgba(0, 250, 206, 0.3);
  border-radius: 50%;
  animation: orbitSpin 22s linear infinite;
}

.sector-creative__orbit::before,
.sector-creative__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(23, 36, 54, 0.14);
}

.sector-creative__orbit::before {
  inset: 70px;
}

.sector-creative__orbit::after {
  inset: 145px;
}

.sector-creative__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.sector-creative__visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.sector-creative__image {
  width: min(520px, 100%);
  height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  clip-path: polygon(12% 0, 100% 8%, 88% 100%, 0 92%);
  background: #172436;
  box-shadow: 0 34px 92px rgba(23, 36, 54, 0.2);
}

.sector-creative__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.08), rgba(23, 36, 54, 0.28)),
    radial-gradient(circle at 20% 82%, rgba(0, 250, 206, 0.28), transparent 34%);
}

.sector-creative__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: serviceImageFloat 8s ease-in-out infinite alternate;
}

.sector-creative__floating {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 36, 54, 0.78);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 58px rgba(23, 36, 54, 0.22);
  animation: sectorFloatCard 4.8s ease-in-out infinite alternate;
}

.sector-creative__floating--top {
  top: 34px;
  right: 10px;
}

.sector-creative__floating--bottom {
  left: 12px;
  bottom: 52px;
  animation-delay: -1.8s;
}

.sector-creative__floating strong,
.sector-creative__floating i {
  color: #00FACE;
  font-family: "font_bold";
  font-size: 34px;
  line-height: 1;
}

.sector-creative__floating span {
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_bold";
  font-size: 13px;
}

.sector-creative__content h2 {
  margin: 18px 0 16px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.sector-creative__content p {
  max-width: 760px;
  color: rgba(23, 36, 54, 0.74);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.sector-creative__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.sector-creative__metrics div {
  min-height: 106px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(23, 36, 54, 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.sector-creative__metrics div:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 250, 206, 0.45);
}

.sector-creative__metrics strong {
  display: block;
  color: #172436;
  font-family: "font_bold";
  font-size: 28px;
  line-height: 1;
}

.sector-creative__metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(23, 36, 54, 0.66);
  font-family: "font_medium";
}

.sector-creative__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sector-creative__request,
.sector-creative__actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: "font_bold";
}

.sector-creative__request {
  border: 0;
  background: #00FACE;
  color: #172436;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 250, 206, 0.26);
}

.sector-creative__actions a {
  color: #172436 !important;
  border: 1px solid rgba(23, 36, 54, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.sector-creative__request:hover,
.sector-creative__actions a:hover {
  transform: translateY(-3px);
}

.sector-creative__features {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(23, 36, 54, 0.09);
}

.sector-creative__features h3 {
  margin: 0 0 18px;
  color: #172436;
  font-family: "font_bold";
  font-size: 26px;
}

.sector-creative__features ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-creative__features li {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #f7fbfd;
  color: #172436;
  font-family: "font_bold";
  transition: transform 0.35s ease, background 0.35s ease;
}

.sector-creative__features li:hover {
  transform: translateY(-6px);
  background: rgba(0, 250, 206, 0.14);
}

.sector-creative__features li i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-size: 12px;
}

@keyframes sectorFloatCard {
  to {
    transform: translate3d(-14px, -18px, 0);
  }
}

@media (max-width: 1200px) {
  .sector-creative__wrap {
    grid-template-columns: 1fr;
  }

  .sector-creative__visual {
    min-height: auto;
  }

  .sector-creative__features ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .sector-creative {
    padding: 78px 0;
  }

  .sector-creative__wrap {
    width: 92%;
    gap: 34px;
  }

  .sector-creative__image {
    height: 390px;
  }

  .sector-creative__metrics,
  .sector-creative__features ul {
    grid-template-columns: 1fr;
  }
}

@keyframes relatedServicesMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes serviceFramePulse {
  50% {
    opacity: 0.45;
    transform: scale(0.98);
  }
}

@media (max-width: 1200px) {
  .single-service__wrap {
    grid-template-columns: 1fr;
  }

  .single-service__panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .single-service__media,
  .single-service__media img {
    min-height: 360px;
  }

  .single-service__panel ul {
    grid-template-columns: 1fr;
  }

  .related-service-card {
    width: 300px;
    flex-basis: 300px;
  }

  .service-modal {
    padding: 14px;
  }

  .service-modal__dialog {
    padding: 24px;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page {
  position: relative;
  overflow: hidden;
  padding: 105px 0 112px;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 250, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbfd 0%, #fff 56%, #f4f8fa 100%);
  color: #172436;
}

.services-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: servicesGridMove 20s linear infinite;
}

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

.services-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 42px;
  margin-bottom: 52px;
}

.services-page__copy h2,
.service-flow__head h2,
.service-premium__content h2 {
  margin: 18px 0 16px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
}

.services-page__copy p,
.service-premium__content p {
  max-width: 860px;
  color: rgba(23, 36, 54, 0.76);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.services-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-page__stats div {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(23, 36, 54, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.services-page__stats div:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 250, 206, 0.5);
}

.services-page__stats strong {
  color: #172436;
  font-family: "font_bold";
  font-size: 30px;
  line-height: 1;
}

.services-page__stats span {
  margin-top: 10px;
  color: rgba(23, 36, 54, 0.68);
  font-family: "font_medium";
  font-size: 14px;
}

.services-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 22px;
}

.services-page__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  background: #172436;
  box-shadow: 0 24px 60px rgba(23, 36, 54, 0.12);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.services-page__card--large {
  grid-column: span 2;
}

.services-page__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.services-page__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.02) 0%, rgba(23, 36, 54, 0.72) 52%, #172436 100%),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.26), transparent 32%);
  transition: opacity 0.45s ease;
}

.services-page__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 80px rgba(23, 36, 54, 0.18);
}

.services-page__card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.services-page__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.services-page__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.65s ease;
}

.services-page__card:hover .services-page__image img {
  transform: scale(1.13) translateX(-10px);
}

.services-page__body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 28px;
}

.services-page__body i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.16);
  color: #00FACE;
  font-size: 19px;
}

.services-page__body span {
  color: #00FACE;
  font-family: "font_bold";
  font-size: 18px;
}

.services-page__body h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-family: "font_bold";
  font-size: 25px;
  line-height: 1.45;
}

.services-page__body p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
}

.service-flow {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 250, 206, 0.14), transparent 28%),
    linear-gradient(135deg, #172436 0%, #101925 100%);
}

.service-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 250, 206, 0.55), transparent);
  animation: servicesLineGlow 3.2s ease-in-out infinite;
}

.service-flow__head {
  max-width: 760px;
  margin-bottom: 44px;
}

.service-flow__head h2 {
  color: #fff;
}

.service-flow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-flow__step {
  min-height: 238px;
  padding: 26px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.service-flow__step:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 250, 206, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.service-flow__step span {
  width: 56px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
}

.service-flow__step h3 {
  margin: 22px 0 10px;
  color: #fff;
  font-family: "font_bold";
  font-size: 22px;
}

.service-flow__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
}

.service-premium {
  padding: 110px 0;
  background: #fff;
}

.service-premium__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 54px;
}

.service-premium__media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #172436;
  box-shadow: 0 28px 72px rgba(23, 36, 54, 0.16);
}

.service-premium__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.08), rgba(23, 36, 54, 0.28)),
    radial-gradient(circle at 22% 78%, rgba(0, 250, 206, 0.28), transparent 28%);
}

.service-premium__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  animation: serviceImageFloat 9s ease-in-out infinite alternate;
}

.service-premium__badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  min-width: 190px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 36, 54, 0.72);
  backdrop-filter: blur(16px);
}

.service-premium__badge strong {
  display: block;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 46px;
  line-height: 1;
}

.service-premium__badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "font_bold";
  font-size: 13px;
}

.service-premium__content ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-premium__content li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #172436;
  font-family: "font_bold";
  font-size: 16px;
}

.service-premium__content li i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.16);
  color: #172436;
  font-size: 12px;
}

.service-premium__btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 26px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436 !important;
  font-family: "font_bold";
  box-shadow: 0 18px 42px rgba(0, 250, 206, 0.26);
}

.service-premium__btn:hover {
  transform: translateY(-3px);
}

@keyframes servicesGridMove {
  to {
    background-position: 76px 76px;
  }
}

@keyframes servicesLineGlow {
  50% {
    opacity: 0.35;
    transform: scaleX(0.86);
  }
}

@keyframes serviceImageFloat {
  to {
    transform: scale(1.08) translate3d(-16px, 10px, 0);
  }
}

@media (max-width: 1200px) {

  .services-page__intro,
  .service-premium__wrap {
    grid-template-columns: 1fr;
  }

  .services-page__stats {
    max-width: 620px;
  }

  .services-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .services-page,
  .service-flow,
  .service-premium {
    padding: 76px 0;
  }

  .services-page__intro {
    gap: 28px;
  }

  .services-page__stats,
  .services-page__grid,
  .service-flow__steps {
    grid-template-columns: 1fr;
  }

  .services-page__card--large {
    grid-column: auto;
  }

  .services-page__grid {
    grid-auto-rows: minmax(360px, auto);
  }

  .service-flow::before {
    display: none;
  }

  .service-premium__media,
  .service-premium__media img {
    min-height: 390px;
  }
}

@media (max-width: 576px) {

  .services-page .main-container,
  .service-flow .main-container,
  .service-premium .main-container {
    width: 92%;
  }

  .services-page__copy h2,
  .service-flow__head h2,
  .service-premium__content h2 {
    font-size: 32px;
  }

  .services-page__body {
    padding: 22px;
  }

  .services-page__body h3 {
    font-size: 22px;
  }
}

/* ============================================
   SECTORS
   ============================================ */

.sectors-home {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 250, 206, 0.14), transparent 28%),
    linear-gradient(135deg, #172436 0%, #0d1520 100%);
}

.sectors-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
}

.sectors-home .main-container {
  position: relative;
  z-index: 1;
}

.sectors-home__head {
  max-width: 980px;
  margin-bottom: 54px;
}

.sectors-home__head h2 {
  margin: 18px 0;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.14;
}

.sectors-home__head p {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.sectors-home__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 18px;
}

.sector-card {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101824;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.sector-card:hover,
.sector-card:focus {
  color: inherit;
  text-decoration: none;
}

.sector-card:focus-visible {
  outline: 3px solid rgba(0, 250, 206, 0.55);
  outline-offset: 5px;
}

.sector-card--wide {
  grid-column: span 2;
}

.sector-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.08) 0%, rgba(23, 36, 54, 0.72) 64%, rgba(23, 36, 54, 0.96) 100%),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.22), transparent 34%);
  transition: opacity 0.45s ease;
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(0, 250, 206, 0.28);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.sector-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 26px;
  transform: translateY(42px);
  transition: transform 0.45s ease;
}

.sector-card__content span {
  width: 52px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 15px;
  box-shadow: 0 18px 38px rgba(0, 250, 206, 0.24);
}

.sector-card__content h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.35;
}

.sector-card__content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.85;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sector-card__cta {
  min-height: 42px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 14px;
  font-style: normal;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.sector-card:hover img,
.sector-card:focus-visible img {
  transform: scale(1.13);
  filter: saturate(1.08) contrast(1.04);
}

.sector-card:hover::after,
.sector-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.sector-card:hover .sector-card__content,
.sector-card:focus-visible .sector-card__content {
  transform: translateY(0);
}

.sector-card:hover .sector-card__content p,
.sector-card:focus-visible .sector-card__content p,
.sector-card:hover .sector-card__cta,
.sector-card:focus-visible .sector-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.sector-card:hover .sector-card__cta,
.sector-card:focus-visible .sector-card__cta {
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.24);
}

.sectors-page::before {
  animation: sectorsGridDrift 20s linear infinite;
}

.sectors-page__pulse {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.18), transparent 64%);
  filter: blur(4px);
  animation: sectorsPulseFloat 9s ease-in-out infinite alternate;
}

.sectors-page__pulse--one {
  top: 120px;
  left: -120px;
}

.sectors-page__pulse--two {
  right: -150px;
  bottom: 90px;
  animation-delay: -3.5s;
}

.sectors-page__grid {
  position: relative;
  z-index: 1;
}

.sectors-page .sector-card {
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.sectors-page .sector-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 250, 206, 0.48);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.sectors-page .sector-card__content a {
  min-height: 42px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436 !important;
  font-family: "font_bold";
  font-size: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.36s ease, transform 0.36s ease, box-shadow 0.36s ease;
}

.sectors-page .sector-card:hover .sector-card__content a {
  opacity: 1;
  transform: translateY(0);
}

.sectors-page .sector-card__content a:hover {
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.28);
  transform: translateY(-2px);
}

@keyframes sectorsGridDrift {
  to {
    background-position: 82px 82px;
  }
}

@keyframes sectorsPulseFloat {
  from {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.42;
  }

  to {
    transform: translate3d(36px, -28px, 0) scale(1.12);
    opacity: 0.78;
  }
}

@media (max-width: 1200px) {
  .sectors-home__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .sectors-home {
    padding: 82px 0;
  }

  .sectors-home__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 310px;
  }
}

@media (max-width: 768px) {
  .sectors-home__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .sector-card--wide {
    grid-column: span 1;
  }

  .sector-card__content {
    transform: translateY(0);
  }

  .sector-card__content p {
    opacity: 1;
    transform: translateY(0);
  }

  .sector-card__cta {
    opacity: 1;
    transform: translateY(0);
  }

  .sectors-page .sector-card__content a {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .sectors-home .main-container {
    width: 92%;
  }

  .sectors-home__head h2 {
    font-size: 32px;
  }

  .sectors-home__head p {
    font-size: 15px;
  }

  .sector-card__content {
    padding: 22px;
  }
}

/* ============================================
   BLOG / NEWS
   ============================================ */

.blog-home {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #fff;
  color: #172436;
}

.blog-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 250, 206, 0.12), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(23, 36, 54, 0.08), transparent 28%);
}

.blog-home .main-container {
  position: relative;
  z-index: 1;
}

.blog-home__head {
  max-width: 980px;
}

.blog-home__head h2 {
  margin: 18px 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.12;
}

.blog-home__head p {
  max-width: 850px;
  color: rgba(23, 36, 54, 0.72);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.blog-home__ticker {
  position: relative;
  overflow: hidden;
  margin: 42px 0 34px;
  border-block: 1px solid rgba(23, 36, 54, 0.09);
  background: rgba(23, 36, 54, 0.03);
  direction: ltr;
}

.blog-home__ticker::before,
.blog-home__ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.blog-home__ticker::before {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.blog-home__ticker::after {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.blog-home__ticker-track {
  width: max-content;
  display: flex;
  padding: 16px 0;
  will-change: transform;
  animation: newsTicker 18s linear infinite;
}

.blog-home__ticker-group {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  padding-inline: 16px;
  flex: 0 0 auto;
}

.blog-home__ticker:hover .blog-home__ticker-track {
  animation-play-state: paused;
}

.blog-home__ticker span {
  position: relative;
  color: #172436;
  font-family: "font_bold";
  font-size: 15px;
  white-space: nowrap;
}

.blog-home__ticker span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-left: 10px;
  border-radius: 2px;
  background: #00FACE;
}

.blog-home__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 24px;
}

.blog-feature {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #172436;
  box-shadow: 0 28px 90px rgba(23, 36, 54, 0.18);
}

.blog-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(23, 36, 54, 0.94), rgba(23, 36, 54, 0.48), rgba(23, 36, 54, 0.06));
}

.blog-feature__image {
  position: absolute;
  inset: 0;
}

.blog-feature__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.75s ease;
}

.blog-feature:hover .blog-feature__image img {
  transform: scale(1.12) translateX(-18px);
}

.blog-feature__content {
  max-width: 560px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 42px;
}

.blog-feature__content span,
.blog-mini span,
.blog-card span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
}

.blog-feature__content h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.2;
}

.blog-feature__content p {
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.95;
}

.blog-feature__content a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 8px;
  background: #fff;
  color: #172436 !important;
  font-family: "font_bold";
}

.blog-feature__content a:hover {
  background: #00FACE;
  transform: translateY(-3px);
}

.blog-stack {
  display: grid;
  gap: 16px;
}

.blog-mini {
  min-height: 176px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: #fff;
  box-shadow: 0 18px 52px rgba(23, 36, 54, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 250, 206, 0.12), transparent 52%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blog-mini:hover {
  transform: translateX(-8px);
  border-color: rgba(0, 250, 206, 0.42);
  box-shadow: 0 24px 64px rgba(23, 36, 54, 0.12);
}

.blog-mini:hover::after {
  opacity: 1;
}

.blog-mini img {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-mini h3 {
  margin: 12px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: 18px;
  line-height: 1.55;
}

.blog-home__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: #f7fbfb;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.2);
  transition: transform 0.45s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  background: #172436;
}

.blog-card:hover::after {
  transform: scale(2.4);
}

.blog-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  color: #172436;
  font-family: "font_bold";
  font-size: 22px;
  line-height: 1.45;
}

.blog-card p {
  position: relative;
  z-index: 1;
  color: rgba(23, 36, 54, 0.68);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.85;
}

.blog-card:hover h3,
.blog-card:hover p {
  color: #fff;
}

@keyframes newsTicker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 992px) {
  .blog-home {
    padding: 82px 0;
  }

  .blog-home__layout,
  .blog-home__cards {
    grid-template-columns: 1fr;
  }

  .blog-feature {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .blog-home .main-container {
    width: 92%;
  }

  .blog-home__head h2 {
    font-size: 32px;
  }

  .blog-mini {
    grid-template-columns: 1fr;
  }

  .blog-mini img {
    width: 100%;
    height: 190px;
  }

  .blog-feature__content {
    padding: 26px;
  }
}

.blog-page {
  position: relative;
  overflow: hidden;
  padding: 108px 0 116px;
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 250, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
  color: #172436;
}

.blog-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: servicesGridMove 20s linear infinite;
}

.blog-page__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.16), transparent 64%);
  animation: sectorsPulseFloat 9s ease-in-out infinite alternate;
}

.blog-page__glow--one {
  top: 90px;
  left: -120px;
}

.blog-page__glow--two {
  right: -140px;
  bottom: 70px;
  animation-delay: -3s;
}

.blog-page .main-container {
  position: relative;
  z-index: 1;
}

.blog-page__head {
  max-width: 920px;
  margin-bottom: 48px;
}

.blog-page__head h2 {
  margin: 18px 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
}

.blog-page__head p {
  max-width: 850px;
  color: rgba(23, 36, 54, 0.74);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: #fff;
  box-shadow: 0 22px 64px rgba(23, 36, 54, 0.1);
  transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease;
}

.news-card--featured {
  grid-column: span 2;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(0, 250, 206, 0.22);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.news-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 250, 206, 0.42);
  box-shadow: 0 34px 86px rgba(23, 36, 54, 0.16);
}

.news-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.news-card__image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #172436;
}

.news-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.02), rgba(23, 36, 54, 0.16)),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.18), transparent 34%);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.62s ease, filter 0.62s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.13) translateX(-10px);
  filter: saturate(1.08) contrast(1.04);
}

.news-card__body {
  position: relative;
  display: grid;
  align-content: start;
  flex: 1;
  padding: 26px;
}

.news-card__body span {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.14);
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
}

.news-card__body h3 {
  margin: 18px 0 10px;
  color: #172436;
  font-family: "font_bold";
  font-size: 24px;
  line-height: 1.45;
}

.news-card__body p {
  color: rgba(23, 36, 54, 0.7);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
}

.news-card__body a {
  width: fit-content;
  min-height: 46px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 8px;
  background: #172436;
  color: #fff !important;
  font-family: "font_bold";
  font-size: 14px;
}

.news-card__body a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(110%);
  transition: transform 0.58s ease;
}

.news-card:hover .news-card__body a {
  background: #00FACE;
  color: #172436 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.26);
}

.news-card:hover .news-card__body a::after {
  transform: translateX(-110%);
}

@media (max-width: 1200px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-page {
    padding: 78px 0;
  }

  .blog-page__grid {
    grid-template-columns: 1fr;
  }

  .news-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .blog-page .main-container {
    width: 92%;
  }

  .news-card__image {
    height: 230px;
  }

  .news-card__body {
    padding: 22px;
  }
}

.blog-detail-page {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 250, 206, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
}

.blog-detail-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 36, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 54, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  animation: servicesGridMove 20s linear infinite;
}

.blog-detail-page__glow {
  width: 420px;
  height: 420px;
  position: absolute;
  left: -160px;
  top: 80px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.15), transparent 64%);
  animation: sectorsPulseFloat 9s ease-in-out infinite alternate;
}

.blog-detail-page__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.blog-detail-article {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 36, 54, 0.1);
}

.blog-detail-article__image {
  height: 470px;
  position: relative;
  overflow: hidden;
  background: #172436;
}

.blog-detail-article__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.02), rgba(23, 36, 54, 0.18)),
    radial-gradient(circle at 18% 82%, rgba(0, 250, 206, 0.22), transparent 34%);
}

.blog-detail-article__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  animation: serviceImageFloat 8s ease-in-out infinite alternate;
}

.blog-detail-article__content {
  padding: 34px;
}

.blog-detail-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-detail-article__meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.14);
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
}

.blog-detail-article__content h2 {
  margin: 0 0 18px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.18;
}

.blog-detail-article__content p {
  color: rgba(23, 36, 54, 0.74);
  font-family: "font_medium";
  font-size: 17px;
  line-height: 2.05;
}

.blog-detail-side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.blog-detail-side__box {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 58px rgba(23, 36, 54, 0.08);
}

.blog-detail-side__box h3 {
  margin: 0 0 16px;
  color: #172436;
  font-family: "font_bold";
  font-size: 22px;
}

.blog-detail-side__box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-detail-side__box li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(23, 36, 54, 0.76);
  font-family: "font_medium";
}

.blog-detail-side__box li i {
  color: #172436;
}

.blog-detail-side__box--dark {
  background: #172436;
  color: #fff;
}

.blog-detail-side__box--dark h3,
.blog-detail-side__box--dark p {
  color: #fff;
}

.blog-detail-side__box--dark p {
  font-family: "font_medium";
  line-height: 1.9;
}

.blog-detail-side__box--dark a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 18px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436 !important;
  font-family: "font_bold";
}

.blog-detail-side__box--dark a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 250, 206, 0.28);
}

@media (max-width: 992px) {
  .blog-detail-page__wrap {
    grid-template-columns: 1fr;
  }

  .blog-detail-side {
    position: static;
  }
}

@media (max-width: 576px) {
  .blog-detail-page .main-container {
    width: 92%;
  }

  .blog-detail-article__image {
    height: 280px;
  }

  .blog-detail-article__content {
    padding: 24px;
  }
}

/* ============================================
   CONTACT
   ============================================ */

.contactus-home {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 250, 206, 0.16), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #172436 0%, #0b121c 100%);
}

.contactus-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 84px 84px;
  animation: contactGridMove 18s linear infinite;
}

.contactus-home .main-container {
  position: relative;
  z-index: 1;
}

.contactus-home__shell {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  align-items: center;
}

/* Keep the homepage contact details and form side by side on wide screens. */
.contactus-home--homepage .contactus-home__shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(42px, 5vw, 76px);
}

.contactus-home__intro h2 {
  margin: 22px 0 18px;
  color: #fff;
  font-family: "font_bold";
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}

.contactus-home__intro p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 2;
}

.contact-orbit {
  width: min(390px, 100%);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 34px;
  border: 1px solid rgba(0, 250, 206, 0.18);
  border-radius: 50%;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  animation: orbitSpin 18s linear infinite;
}

.contact-orbit::before {
  inset: 34px;
}

.contact-orbit::after {
  inset: 72px;
  animation-direction: reverse;
}

.contact-orbit__core {
  width: 150px;
  height: 150px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #00FACE;
  color: #172436;
  box-shadow: 0 28px 75px rgba(0, 250, 206, 0.26);
}

.contact-orbit__core i {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-orbit__core strong {
  font-family: "font_bold";
  font-size: 34px;
  line-height: 1;
}

.contact-orbit__core span {
  font-family: "font_bold";
  font-size: 14px;
}

.contact-orbit__item {
  --orbit-start: 0deg;
  --icon-start: 0deg;
  --orbit-size: 166px;
  --orbit-time: 13s;
  width: 58px;
  height: 58px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) rotate(var(--orbit-start)) translateX(var(--orbit-size));
  animation: contactOrbitItem var(--orbit-time) linear infinite;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.contact-orbit__item i {
  animation: contactOrbitIcon var(--orbit-time) linear infinite;
  transform: rotate(var(--icon-start));
}

.contact-orbit__item:hover {
  background: #00FACE;
  color: #172436 !important;
  border-color: #00FACE;
  box-shadow: 0 22px 55px rgba(0, 250, 206, 0.25);
}

.contact-orbit:hover .contact-orbit__item,
.contact-orbit:hover .contact-orbit__item i {
  animation-play-state: paused;
}

.contact-orbit__item--phone {
  --orbit-start: -38deg;
  --icon-start: 38deg;
}

.contact-orbit__item--mail {
  --orbit-start: 190deg;
  --icon-start: -190deg;
  --orbit-time: 16s;
}

.contact-orbit__item--whatsapp {
  --orbit-start: 92deg;
  --icon-start: -92deg;
  --orbit-time: 14.5s;
}

.contactus-home__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 560px;
}

.contactus-home__quick div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.contactus-home__quick span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-family: "font_medium";
  font-size: 13px;
}

.contactus-home__quick strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "font_bold";
  font-size: 18px;
}

.contactus-home__form-wrap {
  position: relative;
  width: 100%;
}

.contactus-home__form-wrap::before {
  content: "";
  position: absolute;
  inset: -16px 18px 18px -16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.22);
  transform: rotate(-1.5deg);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.22);
}

.contact-form__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form__top span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
}

.contact-form__top strong {
  color: #fff;
  font-family: "font_bold";
  font-size: 18px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.74);
  font-family: "font_bold";
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  padding: 0 16px;
  font-family: "font_medium" !important;
  outline: 0;
}

.contact-form select option {
  color: #172436;
}

.contact-form textarea {
  min-height: 138px;
  padding-top: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #00FACE;
  box-shadow: 0 0 0 4px rgba(0, 250, 206, 0.12);
}

.contact-form__message {
  margin-top: 14px;
}

.contact-form button {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 250, 206, 0.28);
}

.contact-form button.is-sent {
  background: #fff;
  color: #172436;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes contactOrbitItem {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start)) translateX(var(--orbit-size));
  }

  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-start) + 360deg)) translateX(var(--orbit-size));
  }
}

@keyframes contactOrbitIcon {
  from {
    transform: rotate(var(--icon-start));
  }

  to {
    transform: rotate(calc(var(--icon-start) - 360deg));
  }
}

@keyframes contactGridMove {
  to {
    background-position: 84px 84px;
  }
}

@media (max-width: 992px) {
  .contactus-home {
    padding: 82px 0;
  }

  .contactus-home__shell {
    grid-template-columns: 1fr;
  }

  .contactus-home--homepage .contactus-home__shell {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-orbit {
    margin-inline: auto;
  }
}

@media (max-width: 576px) {
  .contactus-home .main-container {
    width: 92%;
  }

  .contactus-home__intro h2 {
    font-size: 32px;
  }

  .contactus-home__quick,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-orbit {
    width: 100%;
  }

  .contact-orbit__item {
    --orbit-size: 38vw;
  }
}

/* Final responsive guard for the service hero.
   Kept at the end so the shared About hero rules cannot override it. */
@media (max-width: 768px) {
  .service-details-hero .service-details-hero__content {
    width: 92%;
    max-width: 92%;
    padding-bottom: 62px;
    align-items: stretch;
  }

  .service-details-hero .service-details-hero__breadcrumb {
    width: 100%;
    max-width: 100%;
    margin: 22px auto 0;
    padding-inline: 12px;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 11px;
  }

  .service-details-hero .service-details-hero__title.about-hero__title {
    position: static;
    left: auto;
    bottom: auto;
    display: grid;
    width: 100%;
    max-width: 100%;
    margin: 0;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    transform: none;
  }

  .title-pages--about .service-details-hero__title.about-hero__title h1 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.12;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .title-pages--about .service-details-hero__title h1 span {
    margin-top: 9px;
    font-size: 0.48em;
  }
}

@media (max-width: 420px) {
  .service-details-hero .service-details-hero__title.about-hero__title {
    gap: 9px;
  }

  .service-details-hero__title .title-hero__mark {
    --cube-size: 8px;
  }

  .title-pages--about .service-details-hero__title.about-hero__title h1 {
    font-size: clamp(29px, 9.2vw, 38px);
  }
}
