:root {
  --navy-950: #04091d;
  --navy-900: #07102f;
  --navy-800: #101c4b;
  --teal: #00abaf;
  --teal-light: #63e3e4;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --header-height: 82px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1180px;
  --radius-sm: 8px;
  --shadow: 0 18px 55px rgba(35, 23, 95, 0.11);
  --page-padding: 28px;
  --radius-lg: 28px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 65px rgba(24, 16, 68, 0.11);
  --heights-purple-950: #17113f;
  --heights-purple-900: #24195d;
  --heights-purple-800: #30266f;
  --heights-purple-700: #413486;
  --heights-cyan: #00abaf;
  --heights-cyan-soft: #bff8f8;
  --heights-white: #ffffff;
  --heights-text-soft: rgba(255, 255, 255, 0.76);
  --heights-border: rgba(255, 255, 255, 0.16);
  --heights-shadow: 0 28px 80px rgba(7, 4, 31, 0.38);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family:
    "Greycliff CF-Regular",
    "Cairo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  font: inherit;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 9999;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 16px;
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(4, 9, 29, 0.72), rgba(4, 9, 29, 0));
  transition:
    height 0.35s var(--ease-out),
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid transparent;
  background: rgb(5 11 35 / 44%);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-container {
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--page-padding);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  isolation: isolate;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease-out);
}

.brand:hover .brand-mark svg {
  transform: rotate(-7deg) scale(1.08);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  font-size: 16px;
  font-weight: 500;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.77);
  padding-block: 12px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
  color: #00abaf;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.pill-btn,
.language-btn {
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.pill-btn--primary2,
.pill-btn--primary {
  direction: rtl;
  overflow: hidden;
  position: relative;
  padding: 0 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.pill-btn--primary2::before,
.pill-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 72%
  ); */
  /* transform: translateX(-130%); */
  transition: transform 0.7s ease;
}

.pill-btn--primary2:hover::before,
.pill-btn--primary:hover::before {
  transform: translateX(130%);
}

.pill-btn--primary2:hover,
.pill-btn--primary:hover,
.language-btn:hover {
  transform: translateY(-2px);
}

.pill-btn--primary2 {
  color: white;
  background: #2a206a;
}

.pill-btn svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.language-btn {
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.75rem;
}

.language-btn svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  width: 43px;
  height: 43px;
  display: none;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.35s var(--ease-out),
    opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  height: calc(100dvh - var(--header-height));
  padding: 28px var(--page-padding) 40px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(18, 197, 199, 0.13),
      transparent 28%
    ),
    rgba(4, 9, 29, 0.98);
  transform: translateY(-112%);
  visibility: hidden;
  transition:
    transform 0.55s var(--ease-out),
    visibility 0.55s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(1.1rem, 5vw, 1.55rem);
  font-weight: 700;
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.45s var(--ease-out),
    opacity 0.35s ease,
    color 0.2s ease;
}

.mobile-menu.is-open nav a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open nav a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 0.12s;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 0.16s;
}

.mobile-menu.is-open nav a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.is-open nav a:nth-child(5) {
  transition-delay: 0.24s;
}

.mobile-menu.is-open nav a:nth-child(6) {
  transition-delay: 0.28s;
}

.mobile-menu nav a:hover {
  color: var(--teal-light);
}

.mobile-contact {
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal);
  color: var(--navy-950);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 70px) var(--page-padding) 110px;
}

.hero-media,
.hero-video,
.hero-media video,
.hero-fallback,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.9) contrast(1.04);
  animation: videoEntrance 2s var(--ease-out) both;
}

.hero-fallback {
  z-index: -2;
  display: none;
  background:
    linear-gradient(rgba(6, 14, 46, 0.32), rgba(6, 14, 46, 0.32)),
    url("assets/hero-poster.png") center / cover no-repeat;
}

.hero-overlay--base {
  z-index: 1;
  display: none;
  background:
    linear-gradient(
      90deg,
      rgba(4, 9, 29, 0.25) 0%,
      rgba(4, 9, 29, 0.5) 45%,
      rgba(4, 9, 29, 0.92) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 9, 29, 0.34) 0%,
      transparent 34%,
      rgba(4, 9, 29, 0.7) 100%
    );
}

.hero-overlay--spotlight {
  z-index: 2;
  background: radial-gradient(
    circle at 76% 46%,
    rgba(18, 197, 199, 0.14),
    transparent 34%
  );
  transform: translate3d(var(--spot-x, 0), var(--spot-y, 0), 0);
  transition: transform 0.18s linear;
  display: none;
}

.hero-noise {
  z-index: 3;
  opacity: 0.045;
  pointer-events: none;
  display: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hero-content {
  width: min(760px, 76vw);
  z-index: 4;
  margin-inline-start: clamp(0px, 5vw, 76px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.02em;
}

.eyebrow-line {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.hero-title {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(2.55rem, 5.4vw, 6.8rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  position: relative;
  color: var(--teal-light);
  white-space: nowrap;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: 0.04em;
  width: 100%;
  height: 0.08em;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.42;
  transform: scaleX(0);
  transform-origin: right;
  animation: lineDraw 0.9s 1.35s var(--ease-out) forwards;
  inset-inline-start: 0;
}

.hero-description {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.4vw, 1.15rem);
  line-height: 2;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.cta-primary {
  min-height: 58px;
  padding: 5px 6px 5px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  transition: transform 0.45s var(--ease-out);
}

.cta-primary:hover .cta-icon {
  transform: rotate(-45deg);
}

.cta-icon svg {
  width: 21px;
  height: 21px;
  transform: rotate(180deg);
}

.video-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.video-control-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(4, 9, 29, 0.24);
  backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s var(--ease-out);
}

.video-control:hover .video-control-icon {
  transform: scale(1.08);
  border-color: var(--teal-light);
  background: rgba(18, 197, 199, 0.18);
}

.video-control svg {
  width: 19px;
  height: 19px;
}

.video-control .play-icon {
  display: none;
}

.video-control.is-paused .pause-icon {
  display: none;
}

.video-control.is-paused .play-icon {
  display: block;
}

.video-control-text {
  font-size: 0.82rem;
}

.hero-meta {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  inset-inline-start: var(--page-padding);
}

.meta-item {
  display: grid;
  gap: 2px;
}

.meta-item strong {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
}

.meta-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  inset-inline-end: 50%;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding-top: 7px;
  display: flex;
  justify-content: center;
}

.scroll-mouse i {
  width: 3px;
  height: 7px;
  border-radius: 99px;
  background: var(--teal-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.hero-side-label {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  direction: ltr;
  inset-inline-end: 28px;
}

.hero-side-label i {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.reveal-item {
  opacity: 0;
  transform: translateY(38px);
  animation: revealUp 0.95s var(--ease-out) forwards;
}

.hero-eyebrow {
  animation-delay: 0.25s;
}

.hero-title {
  animation-delay: 0.42s;
}

.hero-description {
  animation-delay: 0.62s;
}

.hero-cta {
  animation-delay: 0.8s;
}

.hero-meta {
  animation-delay: 1s;
}

.preview-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 100px var(--page-padding);
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(18, 197, 199, 0.12),
      transparent 30%
    ),
    #070d24;
}

.preview-section > div {
  width: min(840px, 100%);
  text-align: center;
}

.section-kicker {
  color: var(--teal-light);
  font-weight: 700;
}

.preview-section h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.25;
}

.preview-section p {
  max-width: 660px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineDraw {
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(13px);
  }
}

@keyframes videoEntrance {
  from {
    transform: scale(1.14);
    filter: blur(8px) saturate(0.7);
  }

  to {
    transform: scale(1.03);
    filter: blur(0) saturate(0.9) contrast(1.04);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero-content {
    margin-inline-start: 0;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: start;
  }

  .pill-btn--primary,
  .language-btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 155px;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .hero-title {
    font-size: clamp(2.7rem, 9.8vw, 5.5rem);
  }

  .hero-side-label {
    display: none;
  }

  .hero-meta {
    bottom: 34px;
    inset-inline-start: var(--page-padding);
  }

  .scroll-indicator {
    transform: none;
    /* inset-inline-end: var(--page-padding); */
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 145px;
  }

  .hero-overlay--base {
    background:
      linear-gradient(
        180deg,
        rgba(4, 9, 29, 0.42) 0%,
        rgba(4, 9, 29, 0.32) 34%,
        rgba(4, 9, 29, 0.92) 100%
      ),
      linear-gradient(90deg, rgba(4, 9, 29, 0.2), rgba(4, 9, 29, 0.58));
  }

  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
    letter-spacing: -0.045em;
  }

  .hero-title br {
    display: none;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-description {
    line-height: 1.85;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 28px;
  }

  .cta-primary {
    width: 100%;
    justify-content: space-between;
  }

  .video-control {
    width: max-content;
  }

  .video-control-text {
    display: inline;
  }

  .hero-meta {
    left: var(--page-padding);
    right: var(--page-padding);
    bottom: 28px;
    justify-content: space-between;
    gap: 10px;
  }

  .meta-item:nth-of-type(3),
  .hero-meta .meta-divider:nth-of-type(2) {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
  }

  .eyebrow-line {
    width: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.process-section {
  --process-bg: #2a206a;
  position: relative;
  z-index: 6;
  isolation: isolate;
  min-height: 680px;
  margin-top: 0px;
  padding: clamp(78px, 8vw, 126px) var(--page-padding) clamp(92px, 9vw, 140px);
  overflow: hidden;
  /* border-radius: 30px 30px 0 0; */
  background: #2a206a;
}

.process-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, #000 45%, #000);
}

.process-container {
  position: relative;
  z-index: 2;
  width: min(1260px, 100%);
  margin-inline: auto;
}

.process-heading {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.process-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--teal-light);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 700;
}

.process-kicker::before,
.process-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.process-heading h2 {
  color: #fff;
  font-size: calc(65 / 16 * 1rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
  font-weight: 700;
  /* text-wrap: balance; */
}

.process-heading p {
  width: min(970px, 100%);
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  line-height: 2;
  /* text-wrap: balance; */
}

.process-grid {
  margin-top: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  align-items: stretch;
}

.process-card {
  --card-lift: 0px;
  position: relative;
  min-width: 0;
  height: clamp(260px, 22vw, 328px);
  overflow: hidden;
  isolation: isolate;

  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(20, 14, 58, 0.04) 10%,
      rgba(16, 10, 53, 0.28) 48%,
      rgba(14, 8, 50, 0.96) 100%
    ),
    var(--card-image), linear-gradient(145deg, #5c55a7, #15103c);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  outline: none;
  /* box-shadow: 0 18px 42px rgba(9, 5, 35, 0.18); */
  transform: translateY(var(--card-lift));
  transition:
    transform 0.6s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.5s ease,
    background-size 0.8s var(--ease-out);
}

.process-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 17, 56, 0) 0%,
    rgba(23, 17, 56, 0.8) 100%
  );

  transition: background 0.5s ease;
}

.process-card-content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 20px 20px;
  text-align: center;
}

.process-card h3 {
  color: #fff;
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition:
    transform 0.48s var(--ease-out),
    color 0.3s ease;
  text-transform: uppercase;
}

.process-card p {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.85;
  transform: translateY(16px);
  transition:
    max-height 0.55s var(--ease-out),
    margin-top 0.4s ease,
    opacity 0.35s ease,
    transform 0.5s var(--ease-out);
}

.process-card:hover,
.process-card:focus-visible,
.process-card.is-active {
  --card-lift: -12px;
  /* box-shadow:
    0 28px 66px rgba(8, 5, 34, 0.38),
    0 0 0 1px rgba(99, 227, 228, 0.08) inset; */
}

.process-card:hover::before,
.process-card:focus-visible::before,
.process-card.is-active::before {
  background: linear-gradient(
    180deg,
    rgba(25, 18, 71, 0.02) 8%,
    rgba(11, 6, 42, 0.3) 42%,
    rgba(9, 5, 37, 0.98) 100%
  );
}

.process-card:hover::after,
.process-card:focus-visible::after,
.process-card.is-active::after {
  opacity: 1;
  transform: translateX(-56%) rotate(8deg);
}

.process-card:hover h3,
.process-card:focus-visible h3,
.process-card.is-active h3 {
  color: #fff;
  transform: translateY(-4px);
}

.process-card:hover p,
.process-card:focus-visible p,
.process-card.is-active p {
  max-height: 90px;
  margin-top: 7px;
  opacity: 1;
  transform: translateY(0);
}

.process-shape {
  position: absolute;
  z-index: 1;
  bottom: -18px;
  width: clamp(168px, 16vw, 370px);
  max-height: 62%;
  object-fit: contain;
  object-position: left bottom;
  left: 3px;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate(-45px, 35px) rotate(-4deg);
  transition:
    opacity 0.85s ease,
    transform 1.1s var(--ease-out);
  inset-inline-end: -18px;
}

.process-shape.is-visible {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
  animation: processShapeFloat 6s 1.2s ease-in-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(7px);
  transition:
    opacity 0.8s ease var(--reveal-delay, 0ms),
    transform 0.9s var(--ease-out) var(--reveal-delay, 0ms),
    filter 0.75s ease var(--reveal-delay, 0ms);
}

.process-card[data-reveal] {
  transform: translateY(54px) scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.process-card[data-reveal].is-visible {
  transform: translateY(var(--card-lift)) scale(1);
}

@keyframes processShapeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, -10px, 0);
  }
}

@media (max-width: 1120px) {
  .process-grid {
    width: min(820px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-card {
    height: 300px;
  }
}

@media (max-width: 760px) {
  .process-section {
    min-height: auto;
    margin-top: -22px;
    padding-inline: 0;
    border-radius: 22px 22px 0 0;
  }

  .process-heading {
    padding-inline: var(--page-padding);
  }

  .process-heading p {
    max-width: 560px;
  }

  .process-grid {
    width: 100%;
    padding: 10px var(--page-padding) 26px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
        overflow-y: hidden;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 min(78vw, 300px);
    height: 350px;
    scroll-snap-align: center;
  }

  .process-card h3 {
    font-size: 1.4rem;
  }

  .process-card p {
    font-size: 0.78rem;
  }

  .process-shape {
    width: 210px;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .process-heading h2 {
    font-size: 1.85rem;
  }

  .process-heading p {
    font-size: 0.82rem;
    line-height: 1.9;
  }

  .process-card {
    flex-basis: 82vw;
    height: 325px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-shape.is-visible {
    animation: none;
  }
}

.stats-section {
  position: relative;
  z-index: 7;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  color: #352c76;
  padding: clamp(82px, 8vw, 132px) var(--page-padding) clamp(90px, 9vw, 145px);
}

.stats-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 20%, rgba(0, 171, 175, 0.08), transparent 24%),
    radial-gradient(
      circle at 92% 85%,
      rgba(48, 36, 119, 0.07),
      transparent 27%
    ),
    #ffffff;
}

.stats-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  width: min(760px, 84vw);
  height: 1px;
  transform: translateX(50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(48, 36, 119, 0.18),
    transparent
  );
  inset-inline-start: 50%;
}

.stats-container {
  width: min(1270px, 100%);
  margin-inline: auto;
}

.stats-heading {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(35px);
  filter: blur(6px);
  transition:
    opacity 0.75s ease,
    transform 0.9s var(--ease-out),
    filter 0.75s ease;
}

.stats-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stats-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 800;
}

.stats-kicker::before,
.stats-kicker::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.stats-heading h2 {
  color: #2a206a;
  font-size: calc(56 / 16 * 1rem);
  line-height: 1.3;
  letter-spacing: -0.045em;
  font-weight: 800;
  /* text-wrap: balance; */
}

.stats-heading p {
  margin-top: 13px;
  color: #625b88;
  font-size: 20px;
  line-height: 1.9;
}

.stats-grid {
  margin-top: clamp(46px, 5.4vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.stats-card {
  --card-bg: #f1f1f5;
  --card-text: #393273;
  --card-copy: #393273;
  --card-glow: rgba(48, 36, 119, 0.12);
  position: relative;
  min-width: 0;
  min-height: clamp(190px, 16vw, 235px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(25px, 2.8vw, 38px) clamp(18px, 1vw, 30px);
  border: 1px solid rgba(48, 36, 119, 0.04);
  border-radius: 16px;
  background: var(--card-bg);
  color: var(--card-text);
  text-align: center;
  outline: none;
  box-shadow: 0 16px 42px rgba(36, 29, 84, 0.035);
  opacity: 0;
  transform: translate3d(0, 45px, 0) scale(0.94);
  filter: blur(6px);
  transition:
    opacity 0.72s ease,
    transform 0.78s var(--ease-out),
    filter 0.68s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.stats-card:nth-child(even) {
  transform: translate3d(0, 55px, 0) scale(0.94);
}

.stats-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.stats-card::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  inset: -55%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow), transparent 64%);
  opacity: 0;
  transform: translate3d(25%, 25%, 0) scale(0.7);
  transition:
    opacity 0.4s ease,
    transform 0.7s var(--ease-out);
}

.stats-card--teal {
  --card-bg: #00abaf;
  --card-text: #ffffff;
  --card-copy: rgba(255, 255, 255, 0.94);
  --card-glow: rgba(255, 255, 255, 0.22);
  border-color: rgba(0, 171, 175, 0.18);
  box-shadow: 0 20px 48px rgba(0, 171, 175, 0.18);
}

.stats-card--purple {
  --card-bg: #2a206a;
  --card-text: #00abaf;
  --card-copy: rgba(255, 255, 255, 0.95);
  --card-glow: rgba(0, 171, 175, 0.23);
  border-color: rgba(48, 36, 119, 0.18);
  box-shadow: 0 20px 48px rgba(48, 36, 119, 0.18);
}

.stats-number {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--card-text);
  font-size: calc(52 / 16 * 1rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  transform: translateZ(0);
  transition:
    transform 0.45s var(--ease-out),
    text-shadow 0.4s ease;
}

.stats-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  transform: translateX(50%);
  background: currentColor;
  opacity: 0.35;
  transition: width 0.45s var(--ease-out);
  inset-inline-start: 50%;
}

.stats-card p {
  position: relative;
  z-index: 2;
  max-width: 100%;
  color: var(--card-copy);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
  /* text-wrap: balance; */
  transition:
    transform 0.45s var(--ease-out),
    opacity 0.35s ease;
}

.stats-card:hover,
.stats-card:focus-visible {
  transform: translate3d(0, -11px, 0) scale(1.018);
  box-shadow:
    0 28px 70px rgba(36, 29, 84, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

.stats-card:hover::before,
.stats-card:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.stats-card:hover::after,
.stats-card:focus-visible::after {
  opacity: 0.7;
  transform: translateX(-62%) rotate(9deg);
}

.stats-card:hover .stats-number,
.stats-card:focus-visible .stats-number {
  transform: translateY(-5px) scale(1.055);
  text-shadow: 0 10px 26px rgba(48, 36, 119, 0.16);
}

.stats-card:hover .stats-number::after,
.stats-card:focus-visible .stats-number::after {
  width: 42px;
}

.stats-card:hover p,
.stats-card:focus-visible p {
  transform: translateY(3px);
}

.stats-decoration {
  position: absolute;
  z-index: -1;
  width: 290px;
  aspect-ratio: 1;
  border: 1px solid rgba(48, 36, 119, 0.06);
  border-radius: 42% 58% 63% 37% / 40% 38% 62% 60%;
  pointer-events: none;
  animation: statsDecorationFloat 12s ease-in-out infinite;
}

.stats-decoration--one {
  top: 16%;
  transform: rotate(18deg);
  inset-inline-end: -165px;
}

.stats-decoration--two {
  bottom: 2%;
  width: 340px;
  animation-delay: -5s;
  transform: rotate(-24deg);
  inset-inline-start: -185px;
}

@keyframes statsDecorationFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: 0 -18px;
    rotate: 8deg;
  }
}

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

  .stats-card {
    min-height: 205px;
  }
}

@media (max-width: 620px) {
  .stats-section {
    padding-inline: 18px;
  }

  .stats-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .stats-grid {
    gap: 12px;
  }

  .stats-card {
    min-height: 190px;
    padding: 24px 14px;
    border-radius: 14px;
  }

  .stats-card p {
    font-size: 0.74rem;
    line-height: 1.75;
  }
}

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

  .stats-card {
    min-height: 178px;
  }

  .stats-card p {
    max-width: 290px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-decoration {
    animation: none;
  }

  .stats-heading,
  .stats-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.solutions-section {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 9vw, 145px) var(--page-padding);
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 171, 175, 0.055),
      transparent 27%
    ),
    #f4f4f7;
  color: #2a206a;
}

.solutions-container {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.solutions-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(42px, 5vw, 72px);
  text-align: center;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.solutions-section.is-visible .solutions-heading {
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-heading h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  color: #2a206a;
  font-size: calc(50 / 16 * 1rem);
  font-weight: 800;
  line-height: 1.3;
}

.solutions-heading h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateX(50%);
  transition: width 0.8s 0.35s var(--ease-out);
  inset-inline-start: 50%;
}

.solutions-section.is-visible .solutions-heading h2::after {
  width: 48px;
}

.solutions-heading p {
  max-width: 680px;
  margin: 28px auto 0;
  color: #4c477a;
  font-size: 19px;
  line-height: 2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
}

.solution-card {
  position: relative;
  min-height: clamp(230px, 19vw, 285px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  background: #17133c;
  box-shadow: 0 14px 35px rgba(27, 24, 65, 0.08);
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    box-shadow 0.45s ease;
  transition-delay: var(--card-delay);
  width: auto;
}

.solutions-section.is-visible .solution-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(32 30 81 / 23%) 0%,
    rgba(43, 40, 105, 0.47) 100%
  );
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.solution-card__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.85s var(--ease-out),
    filter 0.65s ease;
}

.solution-card__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* background: linear-gradient(180deg,
      rgba(8, 8, 32, 0.08) 0%,
      rgba(15, 12, 55, 0.2) 40%,
      rgba(17, 13, 58, 0.88) 100%); */
  transition: background 0.55s ease;
}

.solution-card__shape {
  position: absolute;
  z-index: -1;
  bottom: -3px;
  width: 112%;
  height: 82%;
  background: linear-gradient(
    145deg,
    rgba(48, 36, 128, 0.98),
    rgba(38, 29, 103, 0.99)
  );
  clip-path: polygon(0 39%, 88% 0, 121% 100%, 0 100%);
  transform: translateY(68%);
  transform-origin: bottom center;
  transition:
    transform 0.72s var(--ease-out),
    clip-path 0.72s var(--ease-out);
  inset-inline-start: -5%;
}

.solution-card__shape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 171, 175, 0.22),
    transparent 35%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-card__content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 0.65s var(--ease-out);
}

.solution-card__content h3 {
  position: relative;
  max-width: 100%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.6s var(--ease-out),
    color 0.35s ease;
  text-transform: uppercase;
}

.solution-card__content h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--teal);
  transition: width 0.55s 0.12s var(--ease-out);
}

.solution-card__content p {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.95;
  opacity: 0;
  transform: translateY(30px);
  transition:
    max-height 0.7s var(--ease-out),
    margin-top 0.55s var(--ease-out),
    opacity 0.4s ease,
    transform 0.65s var(--ease-out);
}

.solution-card:hover,
.solution-card:focus-visible,
.solution-card.is-open {
  transform: translateY(-9px) scale(1.01);
  box-shadow: 0 24px 55px rgba(34, 27, 102, 0.23);
  /* transform: scale(1.5) !important; */
}

.solution-card:hover::after,
.solution-card:focus-visible::after,
.solution-card.is-open::after {
  border-color: rgba(0, 171, 175, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.solution-card:hover .solution-card__image,
.solution-card:focus-visible .solution-card__image,
.solution-card.is-open .solution-card__image {
  transform: scale(1.1);
  filter: saturate(0.9) brightness(0.7);
}

.solution-card:hover .solution-card__overlay,
.solution-card:focus-visible .solution-card__overlay,
.solution-card.is-open .solution-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(9, 7, 35, 0.16) 0%,
    rgba(20, 15, 71, 0.42) 42%,
    rgba(31, 23, 91, 0.98) 100%
  );
}

.solution-card:hover .solution-card__shape,
.solution-card:focus-visible .solution-card__shape,
.solution-card.is-open .solution-card__shape {
  clip-path: polygon(0 15%, 85% 0, 146% 100%, 0 100%);
  transform: translateY(0);
}

.solution-card:hover .solution-card__shape::before,
.solution-card:focus-visible .solution-card__shape::before,
.solution-card.is-open .solution-card__shape::before {
  opacity: 1;
}

.solution-card:hover .solution-card__content,
.solution-card:focus-visible .solution-card__content,
.solution-card.is-open .solution-card__content {
  transform: translateY(-3px);
}

.solution-card:hover .solution-card__content h3,
.solution-card:focus-visible .solution-card__content h3,
.solution-card.is-open .solution-card__content h3 {
  transform: translateY(-3px);
}

.solution-card:hover .solution-card__content h3::after,
.solution-card:focus-visible .solution-card__content h3::after,
.solution-card.is-open .solution-card__content h3::after {
  width: 42px;
}

.solution-card:hover .solution-card__content p,
.solution-card:focus-visible .solution-card__content p,
.solution-card.is-open .solution-card__content p {
  max-height: 190px;
  margin-top: 11px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-card {
    min-height: 270px;
  }
}

@media (max-width: 900px) {
  .solutions-section {
    padding-inline: clamp(18px, 4vw, 38px);
  }

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

  .solution-card {
    min-height: 285px;
  }

  .solution-card__content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .solutions-section {
    padding-top: 75px;
    padding-bottom: 85px;
  }

  .solutions-heading {
    margin-bottom: 36px;
  }

  .solutions-heading p {
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .solution-card {
    min-height: 310px;
  }

  .solution-card__content {
    padding: 21px;
  }

  .solution-card__content h3 {
    max-width: 100%;
    font-size: 1.08rem;
  }

  .solution-card__content p {
    font-size: 0.84rem;
  }

  .solution-card:hover,
  .solution-card:focus-visible,
  .solution-card.is-open {
    transform: translateY(-5px);
  }
}

@media (max-width: 390px) {
  .solution-card {
    min-height: 290px;
  }

  .solution-card__content {
    padding: 18px;
  }
}

.ip-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 145px) var(--page-padding) clamp(100px, 10vw, 160px);
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 171, 175, 0.12), transparent 24%),
    radial-gradient(
      circle at 92% 80%,
      rgba(84, 69, 170, 0.18),
      transparent 28%
    ),
    #2e2375;
  color: #ffffff;
  isolation: isolate;
}

.ip-section::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  top: 0;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  transform: translate(42%, -48%);
  inset-inline-start: 0;
}

.ip-section::after {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(0, 171, 175, 0.12);
  border-radius: 50%;
  inset-inline-end: -170px;
}

.ip-container {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.ip-heading {
  width: min(740px, 100%);
  margin: 0 auto clamp(52px, 6vw, 90px);
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.ip-section.is-visible .ip-heading {
  opacity: 1;
  transform: translateY(0);
}

.ip-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #65e1e3;
  font-size: 0.82rem;
  font-weight: 700;
}

.ip-heading__eyebrow::before,
.ip-heading__eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.ip-heading h2 {
  color: #ffffff;
  font-size: calc(50 / 16 * 1rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.ip-heading p {
  max-width: 670px;
  margin: 19px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 2;
}

.ip-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(24px, 3vw, 40px);
}

.ip-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  color: #2e2870;
  box-shadow: 0 25px 65px rgba(8, 6, 35, 0.21);
  outline: none;
  opacity: 0;
  transform: translateY(55px) scale(0.965);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    box-shadow 0.45s ease;
  transition-delay: var(--ip-delay);
}

.ip-section.is-visible .ip-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.ip-card:hover,
.ip-card:focus-visible,
.ip-card.is-active {
  transform: translateY(-12px);
  box-shadow: 0 35px 85px rgba(8, 6, 35, 0.32);
}

.ip-card:hover::after,
.ip-card:focus-visible::after,
.ip-card.is-active::after {
  border-color: rgba(99, 227, 228, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.ip-card__media {
  position: relative;
  height: clamp(290px, 29vw, 430px);
  overflow: hidden;
  background: #05050a;
}

.ip-card__visual {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition:
    transform 1.1s var(--ease-out),
    filter 0.65s ease;
  will-change: transform;
}

.ip-card__video {
  background: #000000;
}

.ip-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 20, 0.06) 20%,
    rgba(13, 10, 48, 0.25) 100%
  );
  transition: background 0.5s ease;
}

.ip-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.16) 47%,
    transparent 68%
  );
  transform: translateX(-145%);
  pointer-events: none;
}

.ip-card:hover .ip-card__visual,
.ip-card:focus-visible .ip-card__visual,
.ip-card.is-active .ip-card__visual {
  transform: translate3d(var(--ip-media-x, 0px), var(--ip-media-y, 0px), 0)
    scale(1.095);
  filter: saturate(1.06) contrast(1.03);
}

.ip-card:hover .ip-card__media-overlay,
.ip-card:focus-visible .ip-card__media-overlay,
.ip-card.is-active .ip-card__media-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 6, 20, 0.02) 20%,
    rgba(13, 10, 48, 0.4) 100%
  );
}

.ip-card:hover .ip-card__shine,
.ip-card:focus-visible .ip-card__shine {
  animation: ipShine 1.1s ease forwards;
}

.ip-card__expand {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(10, 8, 38, 0.3);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0.88;
  transform: scale(0.92);
  transition:
    opacity 0.3s ease,
    transform 0.4s var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease;
  inset-inline-end: 22px;
}

.ip-card__expand svg {
  width: 23px;
  height: 23px;
}

.ip-card:hover .ip-card__expand,
.ip-card:focus-within .ip-card__expand,
.ip-card.is-active .ip-card__expand {
  opacity: 1;
  transform: scale(1);
}

.ip-card__expand:hover {
  border-color: #63e3e4;
  background: #00abaf;
  transform: scale(1.08) rotate(4deg);
}

.ip-card__body {
  /* position: relative; */
  min-height: 250px;
  display: flex;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 42px) clamp(28px, 3vw, 42px)
    clamp(32px, 3.3vw, 46px);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(0, 171, 175, 0.065),
      transparent 38%
    ),
    #ffffff;
}

.ip-card__content {
  width: 100%;
  transition: transform 0.5s var(--ease-out);
  padding-inline-end: 70px;
}

.ip-card:hover .ip-card__content,
.ip-card:focus-visible .ip-card__content,
.ip-card.is-active .ip-card__content {
  transform: translateY(-4px);
}

.ip-card__number {
  display: block;
  margin-bottom: 9px;
  color: #00abaf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  direction: ltr;
}

.ip-card__content h3 {
  color: #2e2870;
  font-size: calc(33 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.ip-card__content p {
  margin-top: 12px;
  color: #56517e;
  font-size: calc(20 / 18 * 1rem);
  line-height: 2;
  font-weight: 300;
}

.ip-card__arrow {
  position: absolute;
  bottom: clamp(25px, 3vw, 38px);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  border: 1px solid #1cc182;
  color: #ffffff;
  /* box-shadow: 0 14px 30px rgba(0, 171, 175, 0.25); */
  opacity: 0;
  visibility: hidden;
  transform: translateX(22px) scale(0.75);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.55s var(--ease-out),
    background 0.3s ease,
    box-shadow 0.3s ease;
  inset-inline-end: clamp(25px, 3vw, 40px);
}

.ip-card__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 75%
  );
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.ip-card__arrow svg {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  transition: transform 0.4s var(--ease-out);
}

.ip-card:hover .ip-card__arrow,
.ip-card:focus-visible .ip-card__arrow,
.ip-card:focus-within .ip-card__arrow,
.ip-card.is-active .ip-card__arrow {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.ip-card__arrow:hover {
  background: #2e2870;
  box-shadow: 0 17px 36px rgba(46, 35, 117, 0.28);
  border: 1px solid #2e2870;
}

.ip-card__arrow:hover svg {
  transform: translateX(-4px);
}

@keyframes ipShine {
  from {
    transform: translateX(-145%);
  }

  to {
    transform: translateX(145%);
  }
}

@media (max-width: 1040px) {
  .ip-projects {
    gap: 24px;
  }

  .ip-card__media {
    height: 330px;
  }

  .ip-card__body {
    min-height: 285px;
  }

  .ip-card__content {
    padding-inline-end: 58px;
  }

  .ip-card__arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 820px) {
  .ip-projects {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .ip-card__media {
    height: clamp(290px, 58vw, 420px);
  }

  .ip-card__body {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .ip-section {
    padding: 75px clamp(16px, 4vw, 22px) 90px;
  }

  .ip-heading {
    margin-bottom: 40px;
  }

  .ip-heading__eyebrow {
    font-size: 0.72rem;
  }

  .ip-heading p {
    line-height: 1.9;
  }

  .ip-card {
    border-radius: 17px;
  }

  .ip-card__media {
    height: 260px;
  }

  .ip-card__body {
    padding: 25px 22px 82px;
  }

  .ip-card__content {
    padding-inline-end: 0;
  }

  .ip-card__content h3 {
    font-size: 1.2rem;
  }

  .ip-card__content p {
    font-size: 0.84rem;
    line-height: 1.9;
  }

  .ip-card__expand {
    bottom: 15px;
    width: 43px;
    height: 43px;
    inset-inline-end: 15px;
  }

  .ip-card__arrow {
    bottom: 22px;
    width: 47px;
    height: 47px;
    inset-inline-end: 22px;
  }

  .ip-card:hover,
  .ip-card:focus-visible,
  .ip-card.is-active {
    transform: translateY(-6px);
  }
}

@media (hover: none), (pointer: coarse) {
  .ip-card__arrow {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
  }

  .ip-card__content {
    transform: none;
  }
}

@media (max-width: 380px) {
  .ip-card__media {
    height: 230px;
  }

  .ip-card__body {
    padding-inline: 19px;
  }
}

.success-stories-section {
  position: relative;
  overflow: clip;
  padding: clamp(85px, 9vw, 140px) var(--page-padding, clamp(20px, 4vw, 72px))
    clamp(100px, 10vw, 165px);
  background:
    radial-gradient(circle at 8% 14%, rgba(0, 171, 175, 0.07), transparent 25%),
    linear-gradient(180deg, #f8f8fa 0%, #f2f2f6 100%);
  color: #2a206a;
  isolation: isolate;
}

.success-stories-shape {
  content: "";
  position: absolute;
  z-index: -1;
  top: 139px;
  width: 100%;
  height: 100%;
  background: url(../img/stories.png) no-repeat top right;
  opacity: 1;
  inset-inline-start: 0px;
}

.success-stories-container {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.success-stories-heading {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto clamp(55px, 7vw, 100px);
  text-align: center;
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.85s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.85s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.success-stories-section.is-visible .success-stories-heading {
  opacity: 1;
  transform: translateY(0);
}

.success-stories-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--teal, #00abaf);
  font-size: 0.78rem;
  font-weight: 800;
}

.success-stories-eyebrow::before,
.success-stories-eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.success-stories-heading h2 {
  color: #2e2375;
  font-size: calc(50 / 16 * 1rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.success-stories-heading h2 span {
  color: var(--teal, #00abaf);
}

.success-stories-heading p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #5b567f;
  font-size: clamp(0.9rem, 1.15vw, 1.06rem);
  line-height: 2;
}

.success-scroll-hint {
  width: 44px;
  height: 44px;
  margin: 24px auto 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 171, 175, 0.25);
  border-radius: 50%;
  color: var(--teal, #00abaf);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 30px rgba(28, 22, 89, 0.06);
  animation: successHintMove 2s ease-in-out infinite;
}

.success-scroll-hint svg {
  width: 19px;
  height: 19px;
}

.success-stack {
  position: relative;
  width: min(1555px, 100%);
  margin-inline: auto;
}

.success-stack-stage {
  display: grid;
  gap: 28px;
}

.success-stack.is-enhanced {
  height: var(--success-stack-height);
}

.success-stack.is-enhanced .success-stack-stage {
  position: sticky;
  top: var(--success-sticky-top, calc(var(--header-height, 82px) + 18px));
  height: var(--success-stage-height);
  display: block;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.success-story-card {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  transform-origin: top center;
}

.success-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.success-stack.is-enhanced .success-story-card {
  position: absolute;
  top: var(--story-offset, 0px);
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  margin: 0;
  opacity: var(--story-opacity, 0);
  filter: brightness(var(--story-brightness, 1));
  transform: translate3d(0, var(--story-y, 110%), 0)
    translateY(var(--story-lift, 0px)) scale(var(--story-scale, 1));
  will-change: transform, opacity, filter;
  transition-duration: 0.5s;
}

.success-story-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #161239;
  border-radius: 12px;
}

.success-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition:
    transform 1.1s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    filter 0.65s ease;
}

.success-story-card:hover .success-story-media img,
.success-story-card.is-current .success-story-media img {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.025);
}

.success-story-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 37, 0.03) 30%,
    rgba(10, 8, 37, 0.34) 100%
  );
  transition: background 0.5s ease;
}

.success-story-card:hover .success-story-media-overlay,
.success-story-card.is-current .success-story-media-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 8, 37, 0.01) 25%,
    rgba(10, 8, 37, 0.42) 100%
  );
}

.success-story-index {
  position: absolute;
  z-index: 3;
  top: 22px;
  min-width: 50px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  background: rgba(16, 12, 55, 0.32);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  direction: ltr;
  backdrop-filter: blur(13px);
  inset-inline-end: 22px;
}

.success-story-content {
  position: relative;
  min-height: 205px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(26px, 3vw, 42px) 0;
  background:
    radial-gradient(circle at 8% 14%, rgb(0 171 175 / 0%), transparent 25%),
    linear-gradient(180deg, #f8f8fa 0%, #f2f2f6 100%);
}

.success-story-text {
  max-width: 100%;
  transition: transform 0.45s var(--ease-out, ease);
}

.success-story-card:hover .success-story-text,
.success-story-card.is-current .success-story-text {
  transform: translateY(-4px);
}

.success-story-category {
  display: block;
  margin-bottom: 6px;
  color: var(--teal, #00abaf);
  font-size: 0.76rem;
  font-weight: 800;
}

.success-story-text h3 {
  color: #2e2870;
  font-size: calc(36 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.55;
}

.success-story-text p {
  max-width: 867px;
  margin-top: 9px;
  color: #5c577d;
  font-size: calc(24 / 21 * 1rem);
  line-height: 1.95;
}

.success-story-link {
  flex: 0 0 auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 20px 7px 20px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--teal, #00abaf);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    transform 0.35s var(--ease-out, ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.success-story-link i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition:
    transform 0.4s var(--ease-out, ease),
    background 0.3s ease;
}

.success-story-link svg {
  width: 19px;
  height: 19px;
}

.success-story-link:hover {
  background: #2e2375;
  transform: translateY(-4px);
}

.success-story-link:hover i {
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-4px);
}

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

  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 900px) {
  .success-stack {
    width: min(720px, 100%);
  }

  .success-story-content {
    min-height: 220px;
    gap: 24px;
    padding: 28px 30px;
  }

  .success-story-text p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 680px) {
  .success-stories-section {
    padding: 75px clamp(15px, 4vw, 22px) 95px;
  }

  .success-stories-heading {
    margin-bottom: 45px;
  }

  .success-stories-heading p {
    line-height: 1.9;
  }

  .success-stack.is-enhanced .success-stack-stage {
    top: var(--success-sticky-top, calc(var(--header-height, 72px) + 9px));
  }

  .success-story-card {
    border-radius: 18px;
  }

  .success-story-content {
    min-height: 220px;
    display: block;
    padding: 22px 20px 76px;
  }

  .success-story-text h3 {
    font-size: 1.15rem;
  }

  .success-story-text p {
    margin-top: 7px;
    font-size: 0.8rem;
    line-height: 1.85;
    -webkit-line-clamp: 4;
  }

  .success-story-link {
    position: absolute;
    bottom: 20px;
    min-height: 43px;
    inset-inline-end: 20px;
    padding-inline-end: 14px;
  }

  .success-story-link i {
    width: 33px;
    height: 33px;
  }

  .success-story-index {
    top: 14px;
    min-width: 44px;
    height: 30px;
    inset-inline-end: 14px;
  }
}

@media (max-width: 390px) {
  .success-story-content {
    min-height: 230px;
    padding-inline: 18px;
  }

  .success-story-text h3 {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-stack.is-enhanced {
    height: auto !important;
  }

  .success-stack.is-enhanced .success-stack-stage {
    position: relative;
    top: auto;
    height: auto !important;
    display: grid;
    gap: 20px;
  }

  .success-stack.is-enhanced .success-story-card {
    position: relative;
    inset: auto;
    min-height: 600px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .success-scroll-hint {
    animation: none;
  }
}

.success-story-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #17123e, #080718);
}

.success-story-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition:
    transform 1.1s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    filter 0.65s ease,
    opacity 0.55s ease;
  will-change: transform, opacity;
}

.success-story-fallback {
  z-index: 0;
  opacity: 1;
}

.success-story-video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background: transparent;
}

.success-story-card.is-video-ready .success-story-video {
  opacity: 1;
}

.success-story-card.is-video-error .success-story-video {
  display: none;
}

.success-story-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 37, 0.03) 30%,
    rgba(10, 8, 37, 0.34) 100%
  );
  transition: background 0.5s ease;
}

.success-story-card:hover .success-story-visual,
.success-story-card:focus-within .success-story-visual,
.success-story-card.is-current .success-story-visual {
  transform: scale(1.065);
  filter: saturate(1.05) contrast(1.025);
}

.success-story-card:hover .success-story-media-overlay,
.success-story-card:focus-within .success-story-media-overlay,
.success-story-card.is-current .success-story-media-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 8, 37, 0.01) 25%,
    rgba(10, 8, 37, 0.42) 100%
  );
}

.partners-section {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 9vw, 145px) var(--page-padding, clamp(20px, 4vw, 72px))
    clamp(95px, 10vw, 155px);
  background:
    radial-gradient(
      circle at 6% 20%,
      rgba(0, 171, 175, 0.055),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 85%,
      rgba(46, 35, 117, 0.05),
      transparent 28%
    ),
    #ffffff;
  color: #2e2375;
  isolation: isolate;
}

.partners-section::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  top: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(46, 35, 117, 0.055);
  border-radius: 50%;
  inset-inline-start: -180px;
}

.partners-section::after {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  bottom: -220px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(0, 171, 175, 0.075);
  border-radius: 50%;
  inset-inline-end: -200px;
}

.partners-container {
  width: min(100%, 1220px);
  margin-inline: auto;
}

.partners-decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.partners-decoration--one {
  top: 10%;
  width: 110px;
  height: 110px;
  /* border: 1px solid rgba(0, 171, 175, 0.08); */
  transform: rotate(35deg);
  inset-inline-end: 2%;
}

.partners-decoration--two {
  bottom: 8%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(46, 35, 117, 0.055);
  border-radius: 50%;
  inset-inline-start: 3%;
}

.partners-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(48px, 6vw, 78px);
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.85s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.partners-section.is-visible .partners-heading {
  opacity: 1;
  transform: translateY(0);
}

.partners-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--teal, #00abaf);
  font-size: 0.78rem;
  font-weight: 800;
}

.partners-eyebrow::before,
.partners-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.partners-heading h2 {
  color: #2e2375;
  font-size: calc(50 / 16 * 1rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.partners-heading h2 span {
  position: relative;
  color: #2e2375;
}

.partners-heading h2 span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--teal, #00abaf);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.75s 0.35s
    var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  inset-inline-start: 0;
}

.partners-section.is-visible .partners-heading h2 span::after {
  transform: scaleX(1);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
}

.partner-card {
  --partner-rotate-x: 0deg;
  --partner-rotate-y: 0deg;

  position: relative;
  min-width: 0;
  aspect-ratio: 1.36 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.1vw, 30px);
  border: 1px solid rgba(46, 35, 117, 0.1);
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 171, 175, 0.025), transparent 45%),
    #ffffff;
  box-shadow: 0 10px 30px rgba(30, 23, 91, 0.025);
  outline: none;
  opacity: 0;
  transform: translateY(38px) scale(0.96);
  transform-style: preserve-3d;
  cursor: default;
  transition:
    opacity 0.68s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.68s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  transition-delay: var(--partner-delay);
  will-change: transform;
}

.partners-section.is-visible .partner-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.partner-card::before,
.partner-card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    width 0.45s var(--ease-out, ease),
    height 0.45s var(--ease-out, ease);
}

.partner-card::before {
  top: 8px;
  border-top: 2px solid var(--teal, #00abaf);
  inset-inline-start: 8px;
  border-inline-start: 2px solid var(--teal, #00abaf);
}

.partner-card::after {
  bottom: 8px;
  border-bottom: 2px solid var(--teal, #00abaf);
  inset-inline-end: 8px;
  border-inline-end: 2px solid var(--teal, #00abaf);
}

.partner-card img {
  position: relative;
  z-index: 2;
  width: min(100%, 181px);
  max-height: 100px;
  display: block;
  object-fit: contain;
  /* opacity: 0.72; */
  /* filter: grayscale(0.22) saturate(0.8); */
  transform: translateZ(24px) scale(0.96);
  transition:
    opacity 0.4s ease,
    filter 0.45s ease,
    transform 0.55s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.partner-card__shine {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.8) 47%,
    transparent 73%
  );
  transform: translateX(-145%);
}

.partners-section.is-visible .partner-card:hover,
.partners-section.is-visible .partner-card:focus-visible,
.partners-section.is-visible .partner-card.is-hovered {
  transform: perspective(800px) translateY(-8px)
    rotateX(var(--partner-rotate-x)) rotateY(var(--partner-rotate-y))
    scale(1.025);
  border-color: rgba(0, 171, 175, 0.48);
  box-shadow:
    0 24px 50px rgba(31, 24, 91, 0.11),
    0 7px 20px rgba(0, 171, 175, 0.06);
  transition-delay: 0ms;
}

.partner-card:hover::before,
.partner-card:hover::after,
.partner-card:focus-visible::before,
.partner-card:focus-visible::after,
.partner-card.is-hovered::before,
.partner-card.is-hovered::after {
  width: 31px;
  height: 31px;
  opacity: 1;
}

.partner-card:hover img,
.partner-card:focus-visible img,
.partner-card.is-hovered img {
  opacity: 1;
  filter: grayscale(0) saturate(1);
  transform: translateZ(36px) scale(1.06);
}

.partner-card:hover .partner-card__shine,
.partner-card:focus-visible .partner-card__shine {
  animation: partnerShine 1s ease forwards;
}

@keyframes partnerShine {
  from {
    transform: translateX(-145%);
  }

  to {
    transform: translateX(145%);
  }
}

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

@media (max-width: 820px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-card {
    aspect-ratio: 1.3 / 1;
  }
}

@media (max-width: 580px) {
  .partners-section {
    padding: 75px clamp(15px, 4vw, 22px) 90px;
  }

  .partners-heading {
    margin-bottom: 38px;
  }

  .partners-eyebrow {
    font-size: 0.71rem;
  }

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

  .partner-card {
    min-height: 125px;
    aspect-ratio: auto;
    padding: 17px;
    border-radius: 9px;
  }

  .partner-card img {
    width: min(100%, 125px);
    max-height: 58px;
  }

  .partners-section.is-visible .partner-card:hover,
  .partners-section.is-visible .partner-card:focus-visible,
  .partners-section.is-visible .partner-card.is-hovered {
    transform: translateY(-5px) scale(1.015);
  }
}

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

  .partner-card {
    min-height: 135px;
  }
}

@media (hover: none), (pointer: coarse) {
  .partner-card img {
    opacity: 1;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-card,
  .partners-heading {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .partner-card__shine {
    display: none;
  }
}

.world-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 135px) var(--page-padding) clamp(90px, 10vw, 145px);
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(0, 171, 175, 0.13),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(99, 227, 228, 0.09),
      transparent 28%
    ),
    #2e2375;
  color: #ffffff;
  isolation: isolate;
}

.world-section::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  top: -210px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  inset-inline-start: -210px;
}

.world-section::after {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(0, 171, 175, 0.12);
  border-radius: 50%;
  inset-inline-end: -210px;
}

.world-container {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.world-heading {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.world-section.is-visible .world-heading {
  opacity: 1;
  transform: translateY(0);
}

.world-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #63e3e4;
  font-size: 0.78rem;
  font-weight: 800;
}

.world-heading__eyebrow::before,
.world-heading__eyebrow::after {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.world-heading h2 {
  color: #ffffff;
  font-size: calc(50 / 16 * 1rem);
  font-weight: 800;
  line-height: 1.25;
}

.world-heading p {
  max-width: 650px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 2;
}

.world-filters {
  width: max-content;
  max-width: 100%;
  margin: clamp(25px, 3vw, 38px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(17, 12, 61, 0.24);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s 0.15s var(--ease-out),
    transform 0.75s 0.15s var(--ease-out);
}

.world-filters::-webkit-scrollbar {
  display: none;
}

.world-section.is-visible .world-filters {
  opacity: 1;
  transform: translateY(0);
}

.world-filter {
  position: relative;
  min-height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.35s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.world-filter::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 74%
  );
  transform: translateX(-140%); */
  transition: transform 0.7s ease;
}

.world-filter:hover {
  color: #ffffff;
  border-color: rgba(99, 227, 228, 0.55);
  transform: translateY(-2px);
}

.world-filter:hover::before {
  transform: translateX(140%);
}

.world-filter.is-active {
  border-color: #00abaf;
  background: #00abaf;
  color: #ffffff;
  /* box-shadow: 0 13px 30px rgba(0, 171, 175, 0.28); */
}

.world-map-shell {
  position: relative;
  width: min(1150px, 100%);
  min-height: 530px;
  margin: clamp(32px, 5vw, 60px) auto 0;
  border-radius: 26px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.035),
    transparent 62%
  );
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition:
    opacity 0.85s 0.25s var(--ease-out),
    transform 0.85s 0.25s var(--ease-out);
}

.world-section.is-visible .world-map-shell {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.world-map {
  width: 100%;
  height: 530px;
}

.world-map .jsvmap-container,
.world-map .jvm-container {
  background: transparent !important;
}

.world-map .jvm-region {
  fill: rgba(241, 243, 250, 0.92);
  stroke: rgba(200, 203, 222, 0.68);
  stroke-width: 0.55;
  transition:
    fill 0.6s ease,
    opacity 0.5s ease,
    stroke 0.5s ease,
    filter 0.55s ease;
}

.world-map.has-active-countries .jvm-region:not(.is-country-active) {
  fill: rgba(224, 227, 240, 0.66) !important;
  opacity: 0.67;
}

.world-map .jvm-region.is-country-active {
  fill: #00abaf !important;
  stroke: rgba(255, 255, 255, 0.95) !important;
  stroke-width: 1 !important;
  opacity: 1 !important;
  cursor: pointer;
  animation: activeCountryGlow 2.1s ease-in-out infinite;
}

.world-map .jvm-region.is-country-primary {
  fill: #63e3e4 !important;
  animation: primaryCountryGlow 1.8s ease-in-out infinite;
}

.world-map .jvm-region.is-country-active:hover {
  fill: #ffffff !important;
  stroke: #63e3e4 !important;
  filter: drop-shadow(0 0 7px rgba(99, 227, 228, 1))
    drop-shadow(0 0 20px rgba(99, 227, 228, 0.7));
}

.world-map .jvm-zoom-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(18, 13, 61, 0.52);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.jvm-zoom-btn.jvm-zoomout {
  top: calc(var(--jvm-zoom-btn-size) * 3 + var(--jvm-zoom-btn-size) / 3);
}

.jvm-tooltip {
  padding: 9px 13px !important;
  border: 1px solid rgba(99, 227, 228, 0.3) !important;
  border-radius: 10px !important;
  background: rgba(18, 13, 61, 0.94) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 35px rgba(6, 4, 31, 0.3);
  font-size: 0.75rem !important;
}

.world-map-status {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(18, 13, 61, 0.48);
  color: #ffffff;
  backdrop-filter: blur(13px);
  box-shadow: 0 15px 40px rgba(10, 6, 43, 0.18);
  inset-inline-start: 20px;
}

.world-map-status__pulse {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #63e3e4;
  box-shadow: 0 0 13px rgba(99, 227, 228, 0.85);
}

.world-map-status__pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(99, 227, 228, 0.6);
  border-radius: 50%;
  animation: statusPulse 1.8s ease-out infinite;
}

.world-map-status div {
  display: grid;
  gap: 1px;
}

.world-map-status strong {
  font-size: 0.75rem;
}

.world-map-status small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
}

.world-locations {
  width: min(950px, 100%);
  min-height: 52px;
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.world-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  padding: 7px 14px;
  /* border: 1px solid rgba(255, 255, 255, 0.11); */
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  animation: locationEntrance 0.55s var(--location-delay) var(--ease-out)
    forwards;
}

.world-location__code {
  width: 29px;
  height: 29px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 171, 175, 0.2);
  color: #63e3e4;
  font-size: 0.65rem;
  font-weight: 800;
  direction: ltr;
}

.world-location div {
  display: grid;
  gap: 1px;
}

.world-location strong {
  font-size: 0.71rem;
}

.world-location small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
}

@keyframes activeCountryGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 171, 175, 0.55));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(0, 171, 175, 1))
      drop-shadow(0 0 20px rgba(0, 171, 175, 0.45));
  }
}

@keyframes primaryCountryGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(99, 227, 228, 0.65));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(99, 227, 228, 1))
      drop-shadow(0 0 26px rgba(99, 227, 228, 0.65));
  }
}

@keyframes statusPulse {
  from {
    opacity: 0.8;
    transform: scale(0.55);
  }

  to {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes locationEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .world-map-shell {
    min-height: 390px;
  }

  .world-map {
    height: 390px;
  }

  .world-map svg {
    transform: scale(1.12);
  }
}

@media (max-width: 600px) {
  .world-section {
    padding: 75px 14px 90px;
  }

  .world-filters {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .world-filter {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }

  .world-map-shell {
    min-height: 320px;
    margin-top: 28px;
  }

  .world-map {
    height: 320px;
  }

  .world-map svg {
    transform: scale(1.22);
  }

  .world-map-status {
    bottom: 8px;
    padding: 9px 11px;
    inset-inline-start: 8px;
  }

  .world-locations {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 9px;
    scrollbar-width: none;
  }

  .world-locations::-webkit-scrollbar {
    display: none;
  }

  .world-location {
    flex: 0 0 auto;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(1px, 0vw, 105px) var(--page-padding, clamp(20px, 4vw, 72px)) 0;
  border-top: 1px solid rgba(46, 35, 117, 0.08);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(0, 171, 175, 0.055),
      transparent 26%
    ),
    radial-gradient(circle at 8% 90%, rgba(46, 35, 117, 0.04), transparent 30%),
    #ffffff;
  color: #2e2375;
  isolation: isolate;
}

.footer-container {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.footer-decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.footer-decoration--one {
  top: -170px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(46, 35, 117, 0.055);
  border-radius: 50%;
  inset-inline-start: -160px;
}

.footer-decoration--two {
  bottom: -190px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(0, 171, 175, 0.08);
  border-radius: 50%;
  inset-inline-end: -150px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(160px, 0.65fr) minmax(
      280px,
      1fr
    );
  align-items: start;
  gap: clamp(35px, 2vw, 96px);
}

.footer-column {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s var(--footer-delay)
      var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.75s var(--footer-delay)
      var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.site-footer.is-visible .footer-column {
  opacity: 1;
  transform: translateY(0);
}

.footer-column h3 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-bottom: 27px;
  color: #2e2375;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #00abaf;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s calc(var(--footer-delay) + 300ms)
    var(--ease-out, ease);
  inset-inline-start: 0;
}

.site-footer.is-visible .footer-column h3::after {
  transform: scaleX(1);
}

.footer-logo {
  width: min(213px, 71%);
  display: inline-flex;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition:
    transform 0.5s var(--ease-out, ease),
    filter 0.4s ease;
}

.footer-logo:hover img {
  transform: translateY(-4px) scale(1.025);
  filter: drop-shadow(0 10px 18px rgba(46, 35, 117, 0.12));
}

.footer-description {
  max-width: auto;
  margin-top: 13px;
  color: #5e5981;
  font-size: 0.84rem;
  line-height: 1.9;
}

.footer-newsletter {
  max-width: 430px;
  margin-top: 21px;
}

.footer-newsletter__field {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 4px;
  /* border: 1px solid rgba(46, 35, 117, 0.12); */
  /* border-radius: 999px; */
  /* background: #ffffff; */
  /* box-shadow: 0 12px 35px rgba(46, 35, 117, 0.055); */
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-newsletter__field:focus-within {
  /* border-color: rgba(0, 171, 175, 0.65); */
  /* box-shadow:
    0 14px 35px rgba(46, 35, 117, 0.07),
    0 0 0 4px rgba(0, 171, 175, 0.08); */
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  height: 42px;
  padding: 0 17px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2e2375;

  font-size: 0.77rem;
}

.footer-newsletter input::placeholder {
  color: #9692ae;
}

.footer-newsletter button {
  position: relative;
  min-width: 92px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  padding: 0 16px;
  border-radius: 999px;
  background: #2e2375;
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.35s var(--ease-out, ease),
    box-shadow 0.3s ease;
}

.footer-newsletter button::before {
  /* content: ""; */
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 75%
  );
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.footer-newsletter button span,
.footer-newsletter button svg {
  position: relative;
  z-index: 1;
}

.footer-newsletter button svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s var(--ease-out, ease);
}

.footer-newsletter button:hover {
  background: #2e2375;
  transform: translateY(-2px);
  /* box-shadow: 0 10px 24px rgba(0, 171, 175, 0.22); */
}

.footer-newsletter button:hover::before {
  transform: translateX(140%);
}

.footer-newsletter button:hover svg {
  transform: translateX(-3px);
}

.footer-newsletter__message {
  min-height: 19px;
  margin: 7px 15px 0;
  font-size: 0.68rem;
}

.footer-newsletter__message.is-success {
  color: #008e91;
}

.footer-newsletter__message.is-error {
  color: #c63f4f;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  direction: ltr;
  justify-content: flex-end;
}

.footer-socials a {
  position: relative;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* border: 1px solid rgba(46, 35, 117, 0.1); */
  border-radius: 50%;
  background: #ffffff;
  color: #2e2375;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s var(--ease-out, ease),
    box-shadow 0.3s ease;
}

.footer-socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  transform: scale(0);
  transition: transform 0.4s var(--ease-out, ease);
}

.footer-socials svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
}

.footer-socials a:hover {
  color: #ffffff;
  border-color: #00abaf;
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 171, 175, 0.2);
}

.footer-socials a:hover::before {
  transform: scale(1);
}

.footer-links {
  display: grid;
  gap: 3px;
}

.footer-links a {
  position: relative;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: #5c577e;
  font-size: 0.81rem;
  transition:
    color 0.3s ease,
    transform 0.35s var(--ease-out, ease);
}

.footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #00abaf;
  transition: width 0.4s var(--ease-out, ease);
}

.footer-links a:hover {
  color: #00abaf;
  transform: translateX(-4px);
}

.footer-links a:hover::before {
  width: 18px;
}

.footer-contact {
  display: grid;
  gap: 20px;
  font-style: normal;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555078;
  transition:
    color 0.3s ease,
    transform 0.35s var(--ease-out, ease);
}

.footer-contact__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(46, 35, 117, 0.065);
  color: #2e2375;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.4s var(--ease-out, ease);
}

.footer-contact__icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact__item > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.footer-contact__item small {
  color: #928da9;
  font-size: 0.65rem;
}

.footer-contact__item strong {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.footer-contact__item:hover {
  color: #00abaf;
  transform: translateX(-4px);
}

.footer-contact__item:hover .footer-contact__icon {
  background: #00abaf;
  color: #ffffff;
}

.footer-bottom {
  margin-top: clamp(55px, 7vw, 90px);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(46, 35, 117, 0.09);
  color: #88839f;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 350ms var(--ease-out, ease),
    transform 0.7s 350ms var(--ease-out, ease);
}

.site-footer.is-visible .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-legal-links span {
  width: 1px;
  height: 13px;
  background: rgba(46, 35, 117, 0.17);
}

.footer-legal-links a {
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: #00abaf;
}

.footer-scroll-top {
  position: fixed;
  bottom: 35px;
  width: 46px;
  height: 46px;
  display: grid;
  z-index: 9;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #2e2375;
  color: #ffffff;
  box-shadow: 0 13px 28px rgba(46, 35, 117, 0.2);
  cursor: pointer;
  transform: translateY(18px) scale(0.85);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.4s var(--ease-out, ease),
    background 0.3s ease;
  inset-inline-start: clamp(18px, 3vw, 44px);
}

.footer-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.footer-scroll-top:hover {
  background: #00abaf;
  transform: translateY(-5px);
}

.footer-scroll-top svg {
  width: 21px;
  height: 21px;
}

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

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px 70px;
  }

  .footer-contact-column {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 25px clamp(17px, 5vw, 25px) 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-contact-column {
    grid-column: auto;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-brand-column {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 34px !important;
  }

  .footer-description {
    margin-inline: auto;
  }

  .footer-newsletter {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-column h3 {
    margin-inline: auto;
  }

  .footer-column h3::after {
    transform: translateX(50%) scaleX(0);
    transform-origin: center;
    inset-inline-start: 50%;
  }

  .site-footer.is-visible .footer-column h3::after {
    transform: translateX(50%) scaleX(1);
  }

  .footer-links {
    justify-items: center;
  }

  .footer-contact__item {
    width: min(390px, 100%);
    margin-inline: auto;
  }

  .footer-bottom {
    min-height: 105px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 22px 0;
  }

  .footer-scroll-top {
    bottom: 29px;
    inset-inline-end: 16px;
  }
}

@media (max-width: 440px) {
  .footer-newsletter__field {
    border-radius: 16px;
    /* flex-direction: column; */
    padding: 5px;
  }

  .footer-newsletter input {
    width: 100%;
    text-align: center;
  }

  .footer-newsletter button {
    width: 100%;
    border-radius: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-scroll-top {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-column,
  .footer-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .footer-column h3::after {
    transform: none;
  }
}

html.js-scroll-motion .scroll-motion:not(.is-scroll-visible) {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}

html.js-scroll-motion .scroll-motion.is-scroll-visible {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.scroll-motion {
  will-change: opacity, translate, filter;
}

.site-header {
  transform: translate3d(0, 0, 0);
  will-change: transform;

  transition:
    transform 0.48s var(--ease-out),
    height 0.35s var(--ease-out),
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-header-hidden {
  transform: translate3d(0, -115%, 0);
}

.site-header.is-header-visible {
  transform: translate3d(0, 0, 0);
}

body.menu-open .site-header {
  transform: translate3d(0, 0, 0) !important;
}

.scroll-section-active::before {
  animation: sectionDecorationEnter 1.1s var(--ease-out) both;
}

@keyframes sectionDecorationEnter {
  from {
    opacity: 0;
    translate: 50px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 600px) {
  .page-scroll-progress {
    height: 2px;
  }

  .site-header.is-header-hidden {
    transform: translate3d(0, -110%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-scroll-motion .scroll-motion,
  html.js-scroll-motion .scroll-motion:not(.is-scroll-visible),
  html.js-scroll-motion .scroll-motion.is-scroll-visible {
    opacity: 1 !important;
    visibility: visible !important;
    translate: none !important;
    filter: none !important;
    pointer-events: auto;
  }

  .site-header {
    transform: none !important;
  }

  .page-scroll-progress {
    display: none;
  }
}

.scroll-motion {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.site-header {
  transform: translate3d(0, 0, 0);
}

.world-map-fallback-message {
  width: min(520px, calc(100% - 30px));
  margin: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(18, 13, 61, 0.42);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  line-height: 1.9;
  backdrop-filter: blur(14px);
}

@media (hover: hover) and (pointer: fine) {
  .scroll-motion.is-scroll-visible:hover {
    will-change: transform, opacity, filter;
  }
}

:root {
  --section-reveal-duration: 4s;
  --card-reveal-duration: 5s;
  --section-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media video {
  animation-duration: 3.2s;
}

.reveal-item {
  animation-duration: var(--section-reveal-duration);
  animation-timing-function: var(--section-reveal-ease);
}

[data-reveal] {
  transition:
    opacity 1.15s ease var(--reveal-delay, 0ms),
    transform var(--card-reveal-duration) var(--section-reveal-ease)
      var(--reveal-delay, 0ms),
    filter 1.25s ease var(--reveal-delay, 0ms);
}

.process-shape {
  transition:
    opacity 1.25s ease,
    transform 1.75s var(--section-reveal-ease);
}

.stats-heading {
  transition:
    opacity 1.15s ease,
    transform var(--section-reveal-duration) var(--section-reveal-ease),
    filter 1.2s ease;
}

.stats-card {
  transition:
    opacity 1.2s ease,
    transform var(--card-reveal-duration) var(--section-reveal-ease),
    filter 1.25s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.solutions-heading {
  transition:
    opacity var(--section-reveal-duration) var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--section-reveal-ease);
}

.solutions-heading h2::after {
  transition: width 1.15s 0.55s var(--section-reveal-ease);
}

.solution-card {
  transition:
    opacity 1.2s var(--section-reveal-ease),
    transform var(--card-reveal-duration) var(--section-reveal-ease),
    box-shadow 0.45s ease;
  transition-delay: var(--card-delay);
}

.ip-heading {
  transition:
    opacity var(--section-reveal-duration) var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--section-reveal-ease);
}

.ip-card {
  transition:
    opacity 1.25s var(--section-reveal-ease),
    transform var(--card-reveal-duration) var(--section-reveal-ease),
    box-shadow 0.45s ease;
  transition-delay: var(--ip-delay);
}

.success-stories-heading {
  transition:
    opacity var(--section-reveal-duration) var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--section-reveal-ease);
}

.partners-heading {
  transition:
    opacity var(--section-reveal-duration) var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--section-reveal-ease);
}

.partner-card {
  transition:
    opacity 1.2s var(--section-reveal-ease),
    transform var(--card-reveal-duration) var(--section-reveal-ease),
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  transition-delay: var(--partner-delay);
}

.world-heading {
  transition:
    opacity var(--section-reveal-duration) var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--section-reveal-ease);
}

.world-filters {
  transition:
    opacity 1.2s 0.25s var(--section-reveal-ease),
    transform 1.35s 0.25s var(--section-reveal-ease);
}

.world-map-shell {
  transition:
    opacity 1.3s 0.45s var(--section-reveal-ease),
    transform 1.6s 0.45s var(--section-reveal-ease);
}

.footer-column {
  transition:
    opacity var(--section-reveal-duration) var(--footer-delay)
      var(--section-reveal-ease),
    transform var(--section-reveal-duration) var(--footer-delay)
      var(--section-reveal-ease);
}

.footer-column h3::after {
  transition: transform 1s calc(var(--footer-delay) + 450ms)
    var(--section-reveal-ease);
}

.footer-bottom {
  transition:
    opacity 1.15s 500ms var(--section-reveal-ease),
    transform 1.35s 500ms var(--section-reveal-ease);
}

.projects-container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.projects-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(250px, 30vw, 390px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 50% 115%,
      rgba(96, 69, 180, 0.32),
      transparent 38%
    ),
    linear-gradient(135deg, #2a206a 0%, var(--purple-900) 52%, #2a1d68 100%);
}

.projects-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-width: 380px;
  min-height: 380px;
  background: url("../img/projects-hero.png") center / cover no-repeat;
}

.projects-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: 64px;
}

.projects-hero__eyebrow {
  width: max-content;
  margin: 0 auto 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.projects-hero__title {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.25;
}

.projects-hero__description {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 400;
  line-height: 2;
}

.hero-line {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform-origin: center;
}

.hero-line--one {
  width: 72%;
  top: 24%;
  transform: rotate(-22deg);
  inset-inline-end: -10%;
}

.hero-line--two {
  width: 62%;
  bottom: 18%;
  transform: rotate(29deg);
  inset-inline-start: -12%;
}

.hero-line--three {
  width: 35%;
  bottom: 4%;
  transform: rotate(64deg);
  inset-inline-end: 14%;
}

.projects-content {
  position: relative;
  isolation: isolate;
  padding: clamp(45px, 7vw, 86px) 0 clamp(68px, 8vw, 110px);
  overflow: hidden;
  background: linear-gradient(180deg, #f8f8fa 0%, #f5f5f8 100%);
}

.decor-shape {
  position: absolute;
  z-index: -1;
  display: block;
  background: var(--purple-900);
  opacity: 0.98;
  pointer-events: none;
}

.decor-shape--right {
  top: 105px;
  width: 170px;
  height: 150px;
  clip-path: polygon(42% 0, 100% 21%, 100% 100%, 0 62%);
  inset-inline-start: -76px;
}

.decor-shape--left {
  top: 445px;
  width: 155px;
  height: 185px;
  clip-path: polygon(0 0, 100% 36%, 60% 100%, 0 83%);
  inset-inline-end: -88px;
}

.projects-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 22px;
}

.projects-heading__label {
  display: block;
  margin-bottom: 3px;
  color: #00abaf;
  font-size: 12px;
  font-weight: 700;
}

.projects-heading__title {
  margin: 0;
  color: #2a206a;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.35;
}

.projects-heading__line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  margin-bottom: 10px;
  background: linear-gradient(to left, rgba(44, 31, 112, 0.34), transparent);
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: clamp(22px, 6vw, 58px);
}

.filter-button {
  appearance: none;
  min-height: 38px;
  padding: 7px 18px;
  border: 1px solid #d8d6e2;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.66);
  color: #615d70;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 169, 157, 0.55);
  color: #00abaf;
}

.filter-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 185, 170, 0.18);
}

.filter-button.is-active {
  border-color: #00abaf;
  background: #00abaf;
  color: var(--white);
}

.projects-list {
  display: grid;
  gap: clamp(23px, 4vw, 38px);
}

.project-card {
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.project-card.is-hiding {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  pointer-events: none;
}

.project-card[hidden] {
  display: none;
}

.project-card__media {
  position: relative;
  aspect-ratio: 2.8 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #d9d7e5;
  box-shadow: 0 10px 30px rgba(27, 18, 65, 0.08);
}

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(21, 14, 57, 0.35) 100%),
    rgba(35, 23, 95, 0);
  transition: background-color 300ms ease;
}

.project-card__arrow {
  position: absolute;
  top: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-8px, 8px);
  background: rgba(35, 23, 95, 0.44);
  color: var(--white);
  font-size: 20px;
  backdrop-filter: blur(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease,
    background-color 250ms ease;
  inset-inline-end: 18px;
}

.project-card__image-link:hover .project-card__media img {
  transform: scale(1.045);
}

.project-card__image-link:hover .project-card__overlay {
  background-color: rgba(35, 23, 95, 0.08);
}

.project-card__image-link:hover .project-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.project-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 3px 0;
}

.project-card__title {
  margin: 0;
  color: #252131;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  line-height: 1.9;
}

.project-card__tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #00abaf;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 169, 157, 0.17);
}

.projects-empty {
  margin: 34px 0 0;
  padding: 28px;
  border: 1px dashed #d0cedd;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-500);
  font-size: 14px;
}

@media (max-width: 900px) {
  .projects-container {
    width: min(var(--container), calc(100% - 28px));
  }

  .projects-hero {
    min-height: 245px;
  }

  .projects-hero__content {
    padding-block: 50px;
  }

  .decor-shape--right {
    top: 95px;
    inset-inline-start: -98px;
  }

  .decor-shape--left {
    top: 390px;
    inset-inline-end: -108px;
  }

  .project-card__media {
    aspect-ratio: 2.55 / 1;
  }
}

@media (max-width: 640px) {
  .projects-container {
    width: min(var(--container), calc(100% - 20px));
  }

  .projects-hero {
    min-height: 260px;
  }

  .projects-hero__content {
    padding-block: 38px;
  }

  .projects-hero__eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .projects-hero__description {
    max-width: 325px;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.9;
  }

  .projects-heading {
    align-items: center;
    margin-bottom: 17px;
  }

  .projects-heading__label {
    font-size: 10px;
  }

  .projects-heading__line {
    max-width: 92px;
  }

  .projects-filter {
    flex-wrap: nowrap;
    gap: 7px;
    margin-inline: -10px;
    padding-inline: 10px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .projects-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 6px 13px;
    font-size: 9px;
    scroll-snap-align: start;
  }

  .projects-list {
    gap: 18px;
  }

  .project-card__media {
    aspect-ratio: 2.65 / 1;
    border-radius: 6px;
  }

  .project-card__details {
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
  }

  .project-card__title {
    font-size: 10px;
    line-height: 1.8;
  }

  .project-card__tag {
    min-height: 21px;
    padding: 3px 9px;
    font-size: 7px;
  }

  .project-card__arrow {
    top: 10px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    inset-inline-end: 10px;
  }

  .decor-shape--right {
    top: 82px;
    inset-inline-start: -125px;
  }

  .decor-shape--left {
    top: 360px;
    inset-inline-end: -122px;
  }
}

@media (max-width: 430px) {
  .projects-hero::before,
  .projects-hero::after {
    min-width: 260px;
    min-height: 260px;
  }

  .projects-content {
    padding-top: 32px;
  }

  .projects-heading__title {
    font-size: 21px;
  }

  .projects-heading__line {
    max-width: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.project-card .success-story-content {
  position: relative;
  min-height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 0 0 12px 12px;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(26px, 3vw, 42px) clamp(26px, 3vw, 42px);
  background:
    radial-gradient(circle at 8% 14%, rgb(0 171 175 / 0%), #ffffff 25%),
    linear-gradient(180deg, #f7f9f9 0%, #f2f2f6 100%);
}

.projects-content .success-stories-shape {
  top: 233px;
}

.page-container {
  width: min(var(--container), calc(100% - (var(--page-padding) * 2)));
  margin-inline: auto;
}

.project-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(390px, 43vw, 650px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--purple-950);
}

.project-hero__media,
.project-hero__fallback,
.project-hero__video,
.project-hero__shade,
.project-hero__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-hero__fallback,
.project-hero__video {
  object-fit: cover;
  object-position: center;
}

.project-hero__fallback {
  z-index: -5;
  transform: scale(1.015);
}

.project-hero__video {
  z-index: -4;
  opacity: 0;
  transition: opacity 500ms ease;
}

.project-hero.has-video .project-hero__video {
  opacity: 1;
}

.project-hero__shade {
  z-index: -3;
  background: linear-gradient(
    180deg,
    rgba(28, 21, 71, 0) 0%,
    rgba(28, 21, 71, 0.88) 100%
  );
}

.project-hero__glow {
  z-index: -2;
  opacity: 0.55;
  background:
    radial-gradient(
      circle at 83% 20%,
      rgba(102, 31, 233, 0.29),
      transparent 33%
    ),
    radial-gradient(circle at 20% 10%, rgba(0, 169, 157, 0.12), transparent 27%);
}

.project-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-block: 74px 45px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #00abaf;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(0, 169, 157, 0.2);
}

.project-hero__title {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 49px);
  font-weight: 700;
  line-height: 1.72;
  text-shadow: 0 5px 24px rgba(10, 7, 35, 0.32);
}

.video-controls {
  flex: 0 0 auto;
  display: flex;
  gap: 9px;
}

.media-control {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(21, 12, 59, 0.44);
  color: #fff;
  backdrop-filter: blur(11px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.media-control:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 169, 157, 0.88);
}

.media-control:focus-visible,
.gallery-item:focus-visible,
.lightbox-button:focus-visible,
.lightbox__nav:focus-visible {
  outline: 3px solid rgba(21, 185, 173, 0.5);
  outline-offset: 3px;
}

.media-control .icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.icon-play,
.icon-sound {
  display: none;
}

.media-control.is-paused .icon-pause {
  display: none;
}

.media-control.is-paused .icon-play {
  display: block;
}

.media-control.is-unmuted .icon-muted {
  display: none;
}

.media-control.is-unmuted .icon-sound {
  display: block;
}

.project-hero__bottom-curve {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 27px;
  border-radius: 24px 24px 0 0;
  background: var(--surface);
}

.gallery-section {
  position: relative;
  padding: clamp(28px, 5vw, 70px) 0 clamp(70px, 8vw, 120px);
  background: #ebebef;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.section-heading__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #2a206a;
  font-size: 12px;
  font-weight: 700;
}

.section-heading__title {
  margin: 0;
  color: var(--purple-900);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
}

.section-heading__hint {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(270px, 31vw) minmax(130px, 15vw);
  gap: 14px;
  border-radius: var(--radius-lg);
  background: transparent;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  cursor: zoom-in;
  background: #d8d6e2;
}

.gallery-item--one {
  grid-column: 1 / span 3;
  grid-row: 1;
}

.gallery-item--two {
  grid-column: 4 / span 3;
  grid-row: 1;
}

.gallery-item--three {
  grid-column: 7 / span 6;
  grid-row: 1;
}

.gallery-item--four {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.gallery-item--five {
  grid-column: 4 / span 3;
  grid-row: 2;
}

.gallery-item--six {
  grid-column: 7 / span 3;
  grid-row: 2;
}

.gallery-item--svn {
  grid-column: 10 / span 3;
  grid-row: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 300ms ease;
}

.gallery-item__shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 17, 78, 0.02),
    rgba(28, 17, 78, 0.4)
  );
  transition: opacity 250ms ease;
}

.gallery-item__open {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.9);
  background: rgba(28, 17, 78, 0.56);
  color: #fff;
  backdrop-filter: blur(10px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
  inset-inline-end: 50%;
}

.gallery-item__open svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.gallery-item:hover .gallery-item__shade,
.gallery-item:hover .gallery-item__open {
  opacity: 1;
}

.gallery-item:hover .gallery-item__open {
  transform: translate(-50%, -50%) scale(1);
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s linear 260ms,
    opacity 260ms ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: #03030714;
  backdrop-filter: blur(14px);
}

.lightbox__dialog {
  position: relative;
  width: min(1500px, 100%);
  height: min(900px, calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto minmax(1, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #0f0a28;
  color: #fff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  background: #e5eded;
}

.lightbox.is-open .lightbox__dialog {
  transform: translateY(0) scale(1);
}

.lightbox__toolbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px 14px 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(16, 10, 42, 0.88);
}

.lightbox__meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lightbox__counter {
  flex: 0 0 auto;
  color: var(--aqua-500);
  font-size: 12px;
  font-weight: 700;
}

.lightbox__caption {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.lightbox__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lightbox-button {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.lightbox-button:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 185, 173, 0.55);
  background: rgba(21, 185, 173, 0.2);
}

.lightbox-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox-button--close {
  margin-inline-start: 5px;
  background: rgba(255, 255, 255, 0.1);
}

#zoom-reset {
  min-width: 58px;
  font-size: 10px;
  font-weight: 700;
}

.lightbox__stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  height: 88%;
}

.lightbox__image-viewport {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.lightbox__image-viewport.is-dragging {
  cursor: grabbing;
}

.lightbox__image {
  max-width: calc(100% - 150px);
  max-height: calc(100% - 30px);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  transition: opacity 160ms ease;
  min-width: 65%;
  object-fit: cover;
}

.lightbox__image.is-loading {
  opacity: 0.18;
}

.lightbox__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  background: #00abaf;
  color: #fff;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.lightbox__nav:hover {
  background: #2a206a;
}

.lightbox__nav--previous {
  inset-inline-end: 18px;
}

.lightbox__nav--next {
  inset-inline-start: 18px;
}

.lightbox__nav svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.lightbox__thumbnails {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 84px;
  padding: 10px 14px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  max-height: 83px;
  scrollbar-width: thin;
}

.lightbox__thumbnail {
  flex: 0 0 76px;
  height: 58px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.55;
  background: rgba(255, 255, 255, 0.07);
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.lightbox__thumbnail:hover,
.lightbox__thumbnail.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: var(--aqua-500);
}

.lightbox__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  :root {
    --page-padding: 18px;
  }

  .project-hero {
    min-height: 480px;
  }

  .project-hero__inner {
    padding-block: 90px 58px;
  }

  .project-hero__title {
    max-width: 760px;
  }

  .gallery-collage {
    grid-template-rows: minmax(220px, 36vw) minmax(115px, 18vw);
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .section-heading__hint {
    display: none;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox__dialog {
    height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .lightbox__image {
    max-width: calc(100% - 120px);
  }
}

@media (max-width: 640px) {
  :root {
    --page-padding: 12px;
  }

  .project-hero {
    min-height: 430px;
  }

  .project-hero__media {
    background: var(--purple-950);
  }

  .project-hero__fallback,
  .project-hero__video {
    object-position: 52% center;
  }

  .project-hero__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding-block: 80px 50px;
  }

  .project-badge {
    min-height: 31px;
    margin-bottom: 11px;
    padding: 5px 14px;
    font-size: 10px;
  }

  .project-hero__title {
    font-size: clamp(21px, 6vw, 30px);
    line-height: 1.75;
  }

  .video-controls {
    position: absolute;
    top: 20px;
    inset-inline-end: 0;
  }

  .media-control {
    width: 39px;
    height: 39px;
  }

  .project-hero__bottom-curve {
    height: 18px;
    border-radius: 17px 17px 0 0;
  }

  .gallery-section {
    padding-top: 27px;
  }

  .section-heading {
    margin-bottom: 15px;
  }

  .section-heading__eyebrow {
    font-size: 10px;
  }

  .section-heading__title {
    font-size: 23px;
  }

  .gallery-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 190px 160px 135px;
    gap: 8px;
    padding: 9px;
    border-radius: 17px;
  }

  .gallery-item {
    border-radius: 9px;
  }

  .gallery-item--one {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-item--two {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-item--three {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gallery-item--four {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-item--five {
    grid-column: 2;
    grid-row: 3;
  }

  .gallery-item--six {
    grid-column: 1;
    grid-row: 4;
  }

  .gallery-item--svn {
    grid-column: 2;
    grid-row: 4;
  }

  .gallery-item__open {
    width: 39px;
    height: 39px;
  }

  .lightbox__toolbar {
    min-height: 58px;
    padding: 8px;
  }

  .lightbox__caption {
    display: none;
  }

  .lightbox__actions {
    gap: 4px;
  }

  .lightbox-button {
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .lightbox-button svg {
    width: 18px;
    height: 18px;
  }

  #zoom-out,
  #zoom-in,
  #zoom-reset {
    display: none;
  }

  .lightbox__image {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }

  .lightbox__nav {
    top: auto;
    bottom: 15px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox__nav--previous {
    inset-inline-end: 15px;
  }

  .lightbox__nav--next {
    inset-inline-start: 15px;
  }

  .lightbox__thumbnails {
    justify-content: flex-start;
    min-height: 75px;
    padding: 8px;
  }

  .lightbox__thumbnail {
    flex-basis: 68px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .project-hero {
    min-height: 405px;
  }

  .project-hero__title {
    font-size: 20px;
  }

  .gallery-collage {
    grid-template-rows: 165px 145px 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.project-overview-section {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 0vw, 66px) 0 clamp(80px, 9vw, 125px);
  background: #ebebef;
}

.project-tabs {
  position: relative;
  display: flex;
  gap: 31px;
  margin-bottom: clamp(38px, 6vw, 66px);
  border-bottom: 1px solid rgba(36, 22, 95, 0.11);
}

.project-tab {
  position: relative;
  flex: 0 0 auto;
  min-height: 49px;
  padding: 0 2px 15px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #696475;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.project-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  background: #00abaf;
  transition: transform 220ms ease;
}

.project-tab:hover,
.project-tab.is-active {
  color: #00abaf;
}

.project-tab.is-active::after {
  transform: scaleX(1);
}

.project-tab:focus-visible {
  outline: 3px solid rgba(21, 185, 173, 0.25);
  outline-offset: 4px;
  border-radius: 4px;
}

.overview-panel {
  animation: overviewPanelIn 280ms ease both;
}

.overview-panel[hidden] {
  display: none;
}

@keyframes overviewPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.overview-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: start;
}

.overview-copy {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
  padding-top: 7px;
}

.overview-copy__block {
  position: relative;
  padding-inline-start: 20px;
}

.overview-copy__block::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 3px;
  height: 31px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--aqua-500),
    rgba(21, 185, 173, 0.12)
  );
  inset-inline-start: 0;
}

.overview-copy__title {
  margin: 0 0 13px;
  color: #2a206a;
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.45;
}

.overview-copy p {
  margin: 0;
  color: #777281;
  font-size: 13px;
  line-height: 2.15;
}

.overview-copy p + p {
  margin-top: 14px;
}

.project-info-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(36, 22, 95, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 65px rgba(25, 17, 69, 0.08);
}

.project-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  left: 40px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 185, 173, 0.48),
    transparent
  );
}

.project-info-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eceaf1;
}

.project-info-card__header span {
  display: block;
  margin-bottom: 2px;
  color: #00abaf;
  font-size: 10px;
  font-weight: 700;
}

.project-info-card__header h3 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(20px, 2vw, 25px);
}

.project-info-card__header i {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--aqua-500) 0 45%,
    rgba(21, 185, 173, 0.25) 45% 70%,
    rgba(21, 185, 173, 0.09) 70%
  );
}

.project-info-list {
  display: grid;
  margin: 0;
}

.project-info-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 64px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(36, 22, 95, 0.055);
}

.project-info-item:last-child {
  border-bottom: 0;
}

.project-info-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(50, 33, 122, 0.08);
  border-radius: 50%;
  background: #f1f0fa;
  color: var(--purple-700);
}

.project-info-item__icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.project-info-item dt {
  margin-bottom: 2px;
  color: #9994a3;
  font-size: 10px;
}

.project-info-item dd {
  margin: 0;
  color: #24202e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.project-info-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 20px;
  padding: 10px 21px;
  border-radius: 999px;
  text-decoration: none;
  background: #00abaf;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 169, 157, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.project-info-card__cta:hover {
  transform: translateY(-2px);
  background: #00998f;
  box-shadow: 0 16px 34px rgba(0, 169, 157, 0.27);
}

.project-info-card__cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.project-info-card__cta:hover svg {
  transform: translateX(-4px);
}

.overview-tab-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(36, 22, 95, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 65px rgba(25, 17, 69, 0.07);
}

.overview-tab-card__heading {
  margin-bottom: 29px;
}

.overview-tab-card__heading span {
  display: block;
  color: #00abaf;
  font-size: 11px;
  font-weight: 700;
}

.overview-tab-card__heading h2 {
  margin: 2px 0 0;
  color: #2a206a;
  font-size: clamp(25px, 3vw, 38px);
}

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

.overview-services article,
.overview-results article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(36, 22, 95, 0.07);
  border-radius: 17px;
  background: #f8f8fb;
}

.overview-services article > span {
  color: #00abaf;
  font-size: 13px;
  font-weight: 800;
}

.overview-services h3 {
  margin: 25px 0 8px;
  color: #2a206a;
  font-size: 17px;
}

.overview-services p {
  margin: 0;
  color: #777281;
  font-size: 12px;
  line-height: 1.9;
}

.overview-results article {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.overview-results strong {
  color: #00abaf;
  font-size: clamp(35px, 5vw, 60px);
  line-height: 1;
}

.overview-results span {
  color: #2a206a;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .overview-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 38px;
  }
}

@media (max-width: 800px) {
  .project-tabs {
    position: sticky;
    z-index: 14;
    top: 0;
    flex-wrap: nowrap;
    gap: 23px;
    margin-inline: calc(var(--page-padding) * -1);
    margin-bottom: 38px;
    padding-inline: var(--page-padding);
    overflow-x: auto;
    background: rgba(241, 241, 245, 0.95);
    backdrop-filter: blur(12px);
    scrollbar-width: none;
  }

  .project-tabs::-webkit-scrollbar {
    display: none;
  }

  .project-tab {
    min-height: 53px;
    padding-top: 15px;
  }

  .overview-content {
    grid-template-columns: 1fr;
  }

  .project-info-card {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .overview-services,
  .overview-results {
    grid-template-columns: 1fr;
  }

  .overview-services article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .project-overview-section {
    padding-top: 28px;
  }

  .project-tabs {
    gap: 18px;
    margin-bottom: 29px;
  }

  .project-tab {
    min-height: 49px;
    font-size: 11px;
  }

  .overview-copy__block {
    padding-inline-start: 15px;
  }

  .overview-copy__block::before {
    width: 2px;
    height: 25px;
  }

  .overview-copy__title {
    margin-bottom: 9px;
    font-size: 21px;
  }

  .overview-copy p {
    font-size: 11px;
    line-height: 2;
  }

  .project-info-card {
    padding: 17px;
    border-radius: 17px;
  }

  .project-info-card__header {
    padding-bottom: 13px;
  }

  .project-info-card__header h3 {
    font-size: 19px;
  }

  .project-info-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 58px;
  }

  .project-info-item__icon {
    width: 38px;
    height: 38px;
  }

  .project-info-item dd {
    font-size: 11px;
  }

  .project-info-card__cta {
    min-height: 48px;
    font-size: 11px;
  }

  .overview-tab-card {
    padding: 20px 15px;
    border-radius: 18px;
  }
}

.project-overview-section
  :is(
    #overview-panel,
    #project-gallery-section,
    #project-services-section,
    #project-results-section
  ) {
  scroll-margin-top: calc(var(--header-height, 82px) + 28px);
}

.project-showcase {
  margin-top: clamp(72px, 9vw, 126px);
}

.project-showcase__title,
.project-results-section__title {
  margin: 0 0 18px;
  color: #2a206a;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.5;
}

.project-showcase-gallery {
  display: grid;
  grid-template-columns: minmax(0, 2.75fr) minmax(130px, 1fr) minmax(130px, 1fr);
  gap: 6px;
  min-height: clamp(255px, 31vw, 430px);
  direction: rtl;
}

.project-showcase-gallery .project-showcase-gallery__item {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  background: #d8d6e2;
}

.project-showcase-gallery .project-showcase-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-showcase-gallery__item--wide {
  grid-column: 1;
}

.project-showcase-gallery__item--narrow {
  grid-column: auto;
}

.project-included-services {
  width: min(760px, 68%);
  margin-top: clamp(58px, 8vw, 98px);
  margin-inline-end: auto;
}

.project-included-services__card {
  padding: 18px 22px 17px;
  border: 1px solid rgba(42, 32, 106, 0.035);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 25px rgba(42, 32, 106, 0.025);
}

.project-included-services__card h2 {
  margin: 0 0 10px;
  color: #2a206a;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.project-service-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-service-tags li {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid rgba(42, 32, 106, 0.13);
  border-radius: 999px;
  background: #fff;
  color: #6f6a7d;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(42, 32, 106, 0.04);
}

.project-results-section {
  width: min(760px, 68%);
  margin-top: clamp(36px, 5vw, 58px);
  margin-inline-end: auto;
}

.project-results-section__title {
  margin-bottom: 12px;
}

.project-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  direction: rtl;
}

.project-result-card {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border: 1px solid rgba(42, 32, 106, 0.04);
  border-radius: 9px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  color: #2a206a;
}

.project-result-card strong {
  display: block;
  margin-bottom: 4px;
  color: #2a206a;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1;
}

.project-result-card > span {
  color: #00abaf;
  font-size: 10px;
  font-weight: 600;
}

.project-result-card p {
  margin: 12px 0 0;
  color: #2a206a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.7;
}

.project-result-card--purple {
  border-color: transparent;
  background: #2a206a;
  color: #fff;
}

.project-result-card--purple strong,
.project-result-card--purple p {
  color: #fff;
}

.project-result-card--purple > span {
  color: #00d4d1;
}

.project-result-card--teal {
  border-color: transparent;
  background: #00abaf;
  color: #fff;
}

.project-result-card--teal strong,
.project-result-card--teal > span,
.project-result-card--teal p {
  color: #fff;
}

.project-tab[aria-current="true"] {
  color: #00abaf;
}

.project-tab[aria-current="true"]::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .project-showcase-gallery {
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(110px, 1fr));
    min-height: 300px;
  }

  .project-included-services,
  .project-results-section {
    width: min(820px, 82%);
  }
}

@media (max-width: 700px) {
  .project-showcase {
    margin-top: 58px;
  }

  .project-showcase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(190px, 52vw) minmax(170px, 48vw);
    min-height: 0;
    gap: 8px;
  }

  .project-showcase-gallery__item--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .project-showcase-gallery__item--narrow {
    grid-row: 2;
  }

  .project-included-services,
  .project-results-section {
    width: 100%;
    margin-inline: 0;
  }

  .project-included-services {
    margin-top: 52px;
  }

  .project-included-services__card {
    padding: 17px;
  }

  .project-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .project-result-card {
    min-height: 132px;
  }
}

@media (max-width: 420px) {
  .project-showcase-gallery {
    grid-template-rows: 180px 145px;
  }

  .project-service-tags {
    gap: 6px;
  }

  .project-service-tags li {
    padding-inline: 10px;
    font-size: 9px;
  }

  .project-result-card {
    min-height: 122px;
    padding: 14px 8px;
  }
}

.project-overview-section > .page-container > .overview-panel[hidden] {
  display: none !important;
}

.project-overview-section > .page-container > .overview-panel.is-active {
  display: block;
  animation: projectTabPanelEnter 280ms ease both;
}

.project-overview-section
  > .page-container
  > #overview-panel.overview-panel.is-active {
  display: block;
}

.project-overview-section > .page-container > .project-showcase.overview-panel,
.project-overview-section
  > .page-container
  > .project-included-services.overview-panel,
.project-overview-section
  > .page-container
  > .project-results-section.overview-panel {
  margin-top: 0;
}

.project-overview-section
  > .page-container
  > .project-included-services.overview-panel,
.project-overview-section
  > .page-container
  > .project-results-section.overview-panel {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.project-overview-section .project-tab[aria-selected="true"] {
  color: #00abaf;
}

.project-overview-section .project-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

@keyframes projectTabPanelEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .project-overview-section > .page-container > .overview-panel.is-active {
    animation: none;
  }
}

.project-showcase__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.project-showcase__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #00abaf;
  font-size: 10px;
  font-weight: 700;
}

.project-showcase__heading .project-showcase__title {
  margin-bottom: 0;
}

.project-gallery-controls {
  display: flex;
  direction: ltr;
  gap: 8px;
}

.project-gallery-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(42, 32, 106, 0.12);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.82);
  color: #2a206a;
  box-shadow: 0 7px 20px rgba(42, 32, 106, 0.06);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.project-gallery-button:hover {
  transform: translateY(-2px);
  border-color: #00abaf;
  background: #00abaf;
  color: #fff;
}

.project-gallery-button:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.22);
  outline-offset: 3px;
}

.project-gallery-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.project-gallery-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.35;
}

.project-gallery-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 35px;
}

.project-gallery-swiper .swiper-wrapper {
  align-items: stretch;
  height: auto;
}

.project-gallery-swiper .swiper-slide {
  height: auto;
}

.project-gallery-slide {
  position: relative;
  width: 100%;
  height: clamp(250px, 30vw, 410px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 10px;
  cursor: zoom-in;
  background: #d8d6e2;
  box-shadow: 0 14px 35px rgba(42, 32, 106, 0.08);
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.project-gallery-slide .gallery-item__shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 32, 106, 0.02),
    rgba(42, 32, 106, 0.42)
  );
  transition: opacity 230ms ease;
}

.project-gallery-slide .gallery-item__open {
  position: absolute;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.9);
  background: rgba(42, 32, 106, 0.58);
  color: #fff;
  backdrop-filter: blur(9px);
  transition:
    opacity 230ms ease,
    transform 230ms ease;
  inset-inline-end: 50%;
}

.project-gallery-slide .gallery-item__open svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.project-gallery-slide:hover img,
.project-gallery-slide:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.06);
}

.project-gallery-slide:hover .gallery-item__shade,
.project-gallery-slide:hover .gallery-item__open,
.project-gallery-slide:focus-visible .gallery-item__shade,
.project-gallery-slide:focus-visible .gallery-item__open {
  opacity: 1;
}

.project-gallery-slide:hover .gallery-item__open,
.project-gallery-slide:focus-visible .gallery-item__open {
  transform: translate(-50%, -50%) scale(1);
}

.project-gallery-slide:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.4);
  outline-offset: -3px;
}

.project-gallery-swiper .project-gallery-pagination {
  bottom: 0;
}

.project-gallery-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin-inline: 4px !important;
  opacity: 0.22;
  background: #2a206a;
  transition:
    width 200ms ease,
    opacity 200ms ease,
    background-color 200ms ease;
}

.project-gallery-swiper .swiper-pagination-bullet-active {
  width: 23px;
  border-radius: 999px;
  opacity: 1;
  background: #00abaf;
}

@media (max-width: 900px) {
  .project-gallery-slide {
    height: clamp(260px, 46vw, 390px);
  }
}

@media (max-width: 620px) {
  .project-showcase__heading {
    align-items: center;
    margin-bottom: 14px;
  }

  .project-showcase__eyebrow {
    font-size: 9px;
  }

  .project-gallery-button {
    width: 37px;
    height: 37px;
  }

  .project-gallery-button svg {
    width: 18px;
    height: 18px;
  }

  .project-gallery-swiper {
    margin-inline: calc(var(--page-padding, 12px) * -1);
    width: calc(100% + (var(--page-padding, 12px) * 2));
    padding-inline: var(--page-padding, 12px);
    padding-bottom: 32px;
  }

  .project-gallery-slide {
    height: 290px;
    border-radius: 9px;
  }
}

@media (max-width: 390px) {
  .project-gallery-slide {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-gallery-slide img,
  .project-gallery-button,
  .project-gallery-slide .gallery-item__open {
    transition: none;
  }
}

.related-video-projects {
  position: relative;
  overflow: hidden;
  padding: clamp(8px, 1vw, 109px) 0;
  background: #ebebef;
  color: #2a206a;
}

.related-video-projects__container {
  width: min(
    var(--container, 1180px),
    calc(100% - (var(--page-padding, 28px) * 2))
  );
  margin-inline: auto;
}

.related-video-projects__heading {
  margin-bottom: clamp(22px, 4vw, 38px);
}

.related-video-projects__heading > span {
  display: block;
  margin-bottom: 3px;
  color: var(--teal, #00abaf);
  font-size: 11px;
  font-weight: 700;
}

.related-video-projects__heading h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.4;
}

.related-video-projects__list {
  display: grid;
  gap: clamp(13px, 2vw, 20px);
}

.related-video-card {
  position: relative;
  isolation: isolate;
  min-height: 265px;
  aspect-ratio: 3.25 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #171044;
  box-shadow: 0 15px 38px rgba(31, 21, 76, 0.09);
}

.related-video-card__video,
.related-video-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.related-video-card__video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 450ms ease;
}

.related-video-card__overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(23, 16, 68, 0.62) 0%,
      rgba(23, 16, 68, 0.1) 48%,
      rgba(23, 16, 68, 0.27) 100%
    ),
    linear-gradient(
      180deg,
      rgba(23, 16, 68, 0.05) 25%,
      rgba(23, 16, 68, 0.78) 100%
    );
  transition: background-color 300ms ease;
}

.related-video-card__content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3.2vw, 36px);
}

.related-video-card__info {
  max-width: 70%;
}

.related-video-card__category {
  display: block;
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 600;
  transform: translateY(10px);
  transition:
    max-height 300ms ease,
    margin-bottom 300ms ease,
    opacity 300ms ease,
    transform 300ms ease;
}

.related-video-card__info h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.related-video-card__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--teal, #00abaf);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(0, 171, 175, 0.22);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.related-video-card__link:hover {
  transform: translateY(-2px);
  background: #00999d;
  box-shadow: 0 13px 30px rgba(0, 171, 175, 0.3);
}

.related-video-card__link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 200ms ease;
}

.related-video-card__link:hover svg {
  transform: translateX(-3px);
}

.related-video-card__play {
  position: absolute;
  z-index: 5;
  top: 18px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  padding: 0;

  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-7px);
  background: rgba(23, 16, 68, 0.55);
  color: #fff;
  backdrop-filter: blur(9px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
  inset-inline-end: 18px;
}

.related-video-card__play:hover {
  background: var(--teal, #00abaf);
}

.related-video-card__play svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.related-video-card__pause-icon {
  display: none;
}

.related-video-card.is-playing .related-video-card__play-icon {
  display: none;
}

.related-video-card.is-playing .related-video-card__pause-icon {
  display: block;
}

.related-video-card:hover .related-video-card__video,
.related-video-card:focus-within .related-video-card__video {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.related-video-card:hover .related-video-card__category,
.related-video-card:focus-within .related-video-card__category {
  max-height: 30px;
  margin-bottom: 4px;
  opacity: 1;
  transform: translateY(0);
}

.related-video-card:hover .related-video-card__play,
.related-video-card:focus-within .related-video-card__play {
  opacity: 1;
  transform: translateY(0);
}

.related-video-card__play:focus-visible,
.related-video-card__link:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .related-video-card {
    min-height: 245px;
    aspect-ratio: 2.35 / 1;
  }

  .related-video-card__info {
    max-width: 68%;
  }
}

@media (max-width: 620px) {
  .related-video-projects__container {
    width: calc(100% - 24px);
  }

  .related-video-projects__heading {
    margin-bottom: 17px;
  }

  .related-video-projects__heading > span {
    font-size: 9px;
  }

  .related-video-projects__heading h2 {
    font-size: 24px;
  }

  .related-video-projects__list {
    gap: 11px;
  }

  .related-video-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 9px;
  }

  .related-video-card__overlay {
    background: linear-gradient(
      180deg,
      rgba(23, 16, 68, 0.06) 15%,
      rgba(23, 16, 68, 0.83) 100%
    );
  }

  .related-video-card__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .related-video-card__info {
    max-width: 100%;
  }

  .related-video-card__info h3 {
    font-size: 16px;
  }

  .related-video-card__category {
    max-height: 25px;
    margin-bottom: 3px;
    opacity: 1;
    font-size: 9px;
    transform: none;
  }

  .related-video-card__link {
    min-height: 31px;
    padding: 5px 12px;
    font-size: 8px;
  }

  .related-video-card__play {
    top: 12px;
    width: 38px;
    height: 38px;
    opacity: 1;
    transform: none;
    inset-inline-end: 12px;
  }
}

@media (max-width: 390px) {
  .related-video-card {
    aspect-ratio: 4 / 3;
  }

  .related-video-card__info h3 {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .related-video-card *,
  .related-video-card *::before,
  .related-video-card *::after {
    transition-duration: 0.01ms !important;
  }
}

.contact-intro-section {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  padding: clamp(82px, 10vw, 135px) 0 90px;
  background: #f1f1f5;
  color: #2a206a;
}

.contact-intro-section__media {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  height: 385px;
  overflow: hidden;
  background: #2a206a;
}

.contact-intro-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-intro-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 32, 106, 0.2),
    rgba(42, 32, 106, 0.34)
  );
}

.contact-intro-container {
  width: min(
    var(--container, 1180px),
    calc(100% - (var(--page-padding, 28px) * 2))
  );
  margin-inline: auto;
}

.contact-intro-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  color: #fff;
}

.contact-intro-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
}

.contact-intro-heading__eyebrow::before,
.contact-intro-heading__eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.contact-intro-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.35;
}

.contact-intro-heading p {
  max-width: 660px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(11px, 1.15vw, 14px);
  line-height: 2;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(48px, 7vw, 75px);
}

.contact-info-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 31px 25px 22px;
  overflow: hidden;
  border: 1px solid rgba(42, 32, 106, 0.07);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 22px 55px rgba(30, 22, 75, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms ease;
}

.contact-info-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 30px 70px rgba(30, 22, 75, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.contact-info-card--featured {
  border-color: transparent;
  background: linear-gradient(145deg, #08b6ba, #00a5aa);
  color: #fff;
}

.contact-info-card--featured:hover {
  transform: translateY(-8px);
}

.contact-info-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 13px;
  border: 1px solid rgba(42, 32, 106, 0.08);
  border-radius: 14px;
  background: #f0eff9;
  color: #55489b;
}

.contact-info-card__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info-card--featured .contact-info-card__icon {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
}

.contact-info-card__content {
  display: grid;
  place-items: center;
}

.contact-info-card__label {
  color: #8d8998;
  font-size: 10px;
  font-weight: 600;
}

.contact-info-card__content h2 {
  margin: 5px 0 6px;
  color: #2a206a;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}

.contact-info-card__content h2 a {
  text-decoration: none;
  color: inherit;
}

.contact-info-card__content p,
.contact-info-card__content address {
  margin: 0;
  color: #777281;
  font-size: 10px;
  font-style: normal;
  line-height: 1.9;
}

.contact-info-card--featured .contact-info-card__label,
.contact-info-card--featured .contact-info-card__content h2,
.contact-info-card--featured .contact-info-card__content p {
  color: #fff;
}

.contact-info-card--featured .contact-info-card__content p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-info-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-height: 0;
  margin-top: auto;
  overflow: hidden;
  opacity: 0;
  text-decoration: none;
  color: #00abaf;
  font-size: 10px;
  font-weight: 700;
  transform: translateY(8px);
  transition:
    max-height 250ms ease,
    margin-top 250ms ease,
    opacity 250ms ease,
    transform 250ms ease;
}

.contact-info-card__action svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-info-card:hover .contact-info-card__action,
.contact-info-card:focus-within .contact-info-card__action {
  max-height: 30px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.contact-info-card--featured .contact-info-card__action {
  color: #fff;
}

.contact-info-card__action:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.24);
  outline-offset: 4px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .contact-intro-section {
    padding-top: 80px;
  }

  .contact-intro-section__media {
    height: 365px;
  }

  .contact-info-grid {
    gap: 13px;
  }

  .contact-info-card {
    padding-inline: 18px;
  }
}

@media (max-width: 700px) {
  .contact-intro-section {
    min-height: auto;
    padding: 68px 0 65px;
  }

  .contact-intro-section__media {
    height: 335px;
  }

  .contact-intro-container {
    width: calc(100% - 24px);
  }

  .contact-intro-heading {
    padding-inline: 10px;
  }

  .contact-intro-heading__eyebrow {
    font-size: 9px;
  }

  .contact-intro-heading h1 {
    font-size: 34px;
  }

  .contact-intro-heading p {
    max-width: 360px;
    margin-top: 9px;
    font-size: 10px;
    line-height: 1.9;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 460px);
    margin: 46px auto 0;
  }

  .contact-info-card,
  .contact-info-card--featured {
    min-height: 0;
    padding: 22px 20px;
    transform: none;
  }

  .contact-info-card:hover,
  .contact-info-card--featured:hover {
    transform: translateY(-3px);
  }

  .contact-info-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .contact-info-card__action {
    max-height: 30px;
    margin-top: 11px;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 390px) {
  .contact-intro-section__media {
    height: 320px;
  }

  .contact-intro-heading h1 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-info-card,
  .contact-info-card__action {
    transition: none;
  }
}

.contact-form-section {
  position: relative;
  padding: clamp(26px, 2vw, 102px) 0;
  overflow: hidden;
  background: #f1f1f5;
  color: #2a206a;
}

.contact-form-container {
  width: min(
    var(--container, 1180px),
    calc(100% - (var(--page-padding, 28px) * 2))
  );
  margin-inline: auto;
}

.contact-request-form {
  position: relative;
  padding: clamp(30px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(42, 32, 106, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 24px 70px rgba(28, 20, 71, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.contact-request-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 60px;
  left: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 171, 175, 0.35),
    transparent
  );
}

.contact-request-form__header {
  max-width: 620px;
  margin-bottom: 26px;
}

.contact-request-form__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #00abaf;
  font-size: 11px;
  font-weight: 700;
}

.contact-request-form__header h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(31px, 4vw, 53px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.contact-request-form__header p {
  margin: 6px 0 0;
  color: #85808f;
  font-size: 12px;
  line-height: 1.9;
}

.contact-service-type {
  margin: 0 0 21px;
  padding: 0;
  border: 0;
}

.contact-service-type legend {
  margin-bottom: 9px;
  color: #2a206a;
  font-size: 12px;
  font-weight: 700;
}

.contact-service-type legend span,
.contact-form-field label span {
  color: #00abaf;
}

.contact-service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-service-option {
  position: relative;
  cursor: pointer;
}

.contact-service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-service-option span {
  display: inline-flex;
  min-width: 86px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px 19px;
  border: 1px solid #dfdde9;
  border-radius: 999px;
  background: #fff;
  color: #5f596d;
  font-size: 11px;
  font-weight: 600;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-service-option:hover span {
  transform: translateY(-2px);
  border-color: rgba(42, 32, 106, 0.3);
  color: #2a206a;
}

.contact-service-option input:checked + span {
  border-color: #2a206a;
  background: #2a206a;
  color: #fff;
  box-shadow: 0 9px 24px rgba(42, 32, 106, 0.2);
}

.contact-service-option input:focus-visible + span {
  outline: 3px solid rgba(0, 171, 175, 0.25);
  outline-offset: 3px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form-field {
  min-width: 0;
}

.contact-form-field--full {
  grid-column: 1 / -1;
}

.contact-form-field label {
  display: block;
  margin-bottom: 7px;
  color: #2a206a;
  font-size: 11px;
  font-weight: 700;
}

.contact-input-wrapper,
.contact-textarea-wrapper {
  position: relative;
}

.contact-input-wrapper input,
.contact-textarea-wrapper textarea {
  width: 100%;
  border: 1px solid #e5e3ed;
  outline: none;
  background: #f8f8fc;
  color: #282432;

  font-size: 11px;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.contact-input-wrapper input {
  height: 51px;
  padding: 10px 45px 10px 16px;
  border-radius: 11px;
}

.contact-textarea-wrapper textarea {
  min-height: 175px;
  padding: 16px 18px 38px;
  border-radius: 12px;
  line-height: 1.9;
  resize: vertical;
}

.contact-input-wrapper input::placeholder,
.contact-textarea-wrapper textarea::placeholder {
  color: #b9b5c2;
}

.contact-input-wrapper input:hover,
.contact-textarea-wrapper textarea:hover {
  border-color: #d5d1e1;
  background: #fafafe;
}

.contact-input-wrapper input:focus,
.contact-textarea-wrapper textarea:focus {
  border-color: #00abaf;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 171, 175, 0.1);
}

.contact-input-ltr {
  direction: ltr;
  text-align: left;
}

.contact-field-icon {
  position: absolute;
  top: 50%;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #aaa5b8;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 200ms ease;
  inset-inline-start: 15px;
}

.contact-field-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-input-wrapper:focus-within .contact-field-icon {
  color: #00abaf;
}

.contact-message-counter {
  position: absolute;
  bottom: 12px;
  color: #aaa5b7;
  font-size: 9px;
  direction: ltr;
  inset-inline-end: 15px;
}

.contact-form-field.is-invalid input,
.contact-form-field.is-invalid textarea {
  border-color: #d8445e;
  background: #fffafb;
  box-shadow: 0 0 0 4px rgba(216, 68, 94, 0.08);
}

.contact-form-field.is-valid input,
.contact-form-field.is-valid textarea {
  border-color: rgba(0, 171, 175, 0.55);
}

.contact-field-error {
  display: block;
  min-height: 17px;
  padding-top: 4px;
  color: #ce3d57;
  font-size: 9px;
  line-height: 1.6;
}

.contact-form-status {
  margin-top: 17px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.8;
}

.contact-form-status.is-success {
  border: 1px solid rgba(0, 171, 175, 0.18);
  background: rgba(0, 171, 175, 0.08);
  color: #007e82;
}

.contact-form-status.is-error {
  border: 1px solid rgba(206, 61, 87, 0.16);
  background: rgba(206, 61, 87, 0.07);
  color: #b42d47;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 23px;
}

.contact-submit-button {
  position: relative;
  display: inline-flex;
  min-width: 180px;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #00abaf;
  color: #fff;

  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 171, 175, 0.24);
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    opacity 200ms ease;
}

.contact-submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 72%
  );
  transform: translateX(-140%);
  transition: transform 650ms ease;
}

.contact-submit-button:hover {
  transform: translateY(-3px);
  background: #009b9f;
  box-shadow: 0 17px 36px rgba(0, 171, 175, 0.3);
}

.contact-submit-button:hover::before {
  transform: translateX(140%);
}

.contact-submit-button:focus-visible {
  outline: 4px solid rgba(0, 171, 175, 0.22);
  outline-offset: 4px;
}

.contact-submit-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-submit-button__loader {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contactButtonLoading 700ms linear infinite;
}

.contact-submit-button.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.contact-submit-button.is-loading svg {
  display: none;
}

.contact-submit-button.is-loading .contact-submit-button__loader {
  display: block;
}

@keyframes contactButtonLoading {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .contact-request-form {
    padding: 38px 30px;
  }

  .contact-form-grid {
    gap: 15px;
  }
}

@media (max-width: 650px) {
  .contact-form-section {
    padding: 48px 0 65px;
  }

  .contact-form-container {
    width: calc(100% - 24px);
  }

  .contact-request-form {
    padding: 27px 17px;
    border-radius: 17px;
  }

  .contact-request-form::before {
    right: 25px;
    left: 25px;
  }

  .contact-request-form__header {
    margin-bottom: 21px;
  }

  .contact-request-form__header h2 {
    font-size: 30px;
  }

  .contact-request-form__header p {
    font-size: 10px;
  }

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

  .contact-service-option span {
    width: 100%;
    min-width: 0;
    min-height: 39px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-form-field--full {
    grid-column: auto;
  }

  .contact-input-wrapper input {
    height: 49px;
  }

  .contact-textarea-wrapper textarea {
    min-height: 155px;
  }

  .contact-form-actions {
    margin-top: 18px;
  }

  .contact-submit-button {
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 370px) {
  .contact-service-options {
    grid-template-columns: 1fr;
  }

  .contact-request-form__header h2 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-submit-button,
  .contact-service-option span,
  .contact-input-wrapper input,
  .contact-textarea-wrapper textarea {
    transition: none;
  }

  .contact-submit-button__loader {
    animation-duration: 1.4s;
  }
}

.contact-social-location {
  position: relative;
  padding: clamp(27px, 2vw, 82px) 0 clamp(48px, 2vw, 106px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 90%, rgba(42, 32, 106, 0.05), transparent 25%),
    #efeff4;
  color: #2a206a;
}

.contact-social-location__container {
  width: min(
    var(--container, 1180px),
    calc(100% - (var(--page-padding, 28px) * 2))
  );
  margin-inline: auto;
}

.contact-social-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(42, 32, 106, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 21px 55px rgba(28, 20, 71, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.contact-social-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ebe9f0;
}

.contact-social-card__header > div {
  flex: 0 0 auto;
}

.contact-social-card__eyebrow {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(0, 171, 175, 0.1);
  color: #00abaf;
  font-size: 9px;
  font-weight: 700;
}

.contact-social-card__header h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(23px, 3vw, 37px);
  line-height: 1.45;
}

.contact-social-card__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 32, 106, 0.13));
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-social-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #e3e1eb;
  border-radius: 15px;
  text-decoration: none;
  background: #f8f8fc;
  color: #292533;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.contact-social-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--social-color);
  transition: transform 260ms ease;
}

.contact-social-item:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 32, 106, 0.12);
  background: #fff;
  box-shadow: 0 18px 40px rgba(31, 22, 73, 0.1);
}

.contact-social-item:hover::before {
  transform: scaleX(1);
}

.contact-social-item--youtube {
  --social-color: #ff0033;
  --social-soft: #ffe7ed;
}

.contact-social-item--linkedin {
  --social-color: #0a66c2;
  --social-soft: #e3f0ff;
}

.contact-social-item--instagram {
  --social-color: #e1306c;
  --social-soft: #ffe7f0;
}

.contact-social-item--x {
  --social-color: #111111;
  --social-soft: #e8e8eb;
}

.contact-social-item__icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
}

.contact-social-item__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-social-item__icon--x {
  color: #000;
  font-size: 21px;
  font-weight: 700;
}

.contact-social-item__content {
  margin-top: 17px;
}

.contact-social-item__content h3 {
  margin: 0 0 2px;
  color: #292533;
  font-size: 13px;
  font-weight: 700;
}

.contact-social-item__content span {
  display: block;
  overflow: hidden;
  color: #777280;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.contact-social-item__arrow {
  position: absolute;
  top: 20px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-6px, 6px);
  background: var(--social-color);
  color: #fff;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  inset-inline-end: 18px;
}

.contact-social-item__arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-social-item:hover .contact-social-item__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.contact-social-item:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.28);
  outline-offset: 3px;
}

.contact-social-card__description {
  margin: 18px 0 0;
  color: #7c7785;
  font-size: 12px;
  line-height: 1.9;
}

.contact-location {
  position: relative;
  isolation: isolate;
  min-height: clamp(350px, 43vw, 515px);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 23px;
  background: #2a206a;
  box-shadow: 0 22px 55px rgba(28, 20, 71, 0.1);
}

.contact-location__image,
.contact-location__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../img/loca.jpg") center / cover no-repeat;
}

.contact-location__image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-location__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42, 32, 106, 0.42), rgba(42, 32, 106, 0.23)),
    rgba(42, 32, 106, 0.24);
}

.contact-location:hover .contact-location__image {
  transform: scale(1.035);
}

.contact-location__card {
  position: absolute;
  top: 50%;
  width: min(320px, calc(100% - 40px));
  padding: 28px 22px;
  border: 1px solid rgba(42, 32, 106, 0.07);
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  color: #2a206a;
  box-shadow:
    0 23px 60px rgba(24, 16, 67, 0.19),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translate(50%, -50%);
  inset-inline-start: 50%;
}

.contact-location__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #2a206a;
  color: #fff;
  box-shadow: 0 10px 26px rgba(42, 32, 106, 0.21);
}

.contact-location__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-location__card h2 {
  margin: 0 0 7px;
  color: #2a206a;
  font-size: 17px;
  line-height: 1.6;
}

.contact-location__card address {
  margin: 0;
  color: #777281;
  font-size: 11px;
  font-style: normal;
  line-height: 1.9;
}

.contact-location__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  text-decoration: none;
  color: #00abaf;
  font-size: 11px;
  font-weight: 700;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.contact-location__link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.contact-location__link:hover {
  color: #008e92;
  transform: translateY(-2px);
}

.contact-location__link:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.25);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .contact-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-social-item {
    min-height: 135px;
  }

  .contact-location {
    min-height: 430px;
  }
}

@media (max-width: 600px) {
  .contact-social-location {
    padding: 45px 0 65px;
  }

  .contact-social-location__container {
    width: calc(100% - 24px);
  }

  .contact-social-card {
    padding: 20px 14px;
    border-radius: 17px;
  }

  .contact-social-card__header {
    align-items: flex-start;
    margin-bottom: 17px;
    padding-bottom: 14px;
  }

  .contact-social-card__header h2 {
    font-size: 23px;
  }

  .contact-social-card__line {
    display: none;
  }

  .contact-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-social-item {
    min-height: 130px;
    padding: 14px;
    border-radius: 12px;
  }

  .contact-social-item__icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }

  .contact-social-item__icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-social-item__content {
    margin-top: 13px;
  }

  .contact-social-item__content h3 {
    font-size: 11px;
  }

  .contact-social-item__content span {
    font-size: 8px;
  }

  .contact-social-item__arrow {
    display: none;
  }

  .contact-social-card__description {
    margin-top: 14px;
    font-size: 10px;
  }

  .contact-location {
    min-height: 460px;
    margin-top: 17px;
    border-radius: 17px;
  }

  .contact-location__image {
    object-position: 56% center;
  }

  .contact-location__card {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 21px 17px;
    border-radius: 16px;
    transform: none;
  }

  .contact-location__icon {
    width: 47px;
    height: 47px;
    margin-bottom: 10px;
  }

  .contact-location__icon svg {
    width: 21px;
    height: 21px;
  }

  .contact-location__card h2 {
    font-size: 15px;
  }

  .contact-location__card address {
    font-size: 10px;
  }

  .contact-location__link {
    margin-top: 10px;
    font-size: 10px;
  }
}

@media (max-width: 370px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-item {
    min-height: 110px;
  }

  .contact-location {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-social-item,
  .contact-social-item__icon,
  .contact-social-item__arrow,
  .contact-location__image,
  .contact-location__link {
    transition: none;
  }
}

.contact-faq-section {
  position: relative;
  padding: clamp(58px, 8vw, 105px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
  background: #efeff4;
  color: #2a206a;
}

.contact-faq-container {
  width: min(
    var(--container, 1180px),
    calc(100% - (var(--page-padding, 28px) * 2))
  );
  margin-inline: auto;
}

.contact-faq-content {
  padding: clamp(38px, 6vw, 75px) clamp(20px, 7vw, 110px) clamp(48px, 7vw, 85px);
  background: #fff;
}

.contact-faq-heading {
  max-width: 620px;
  margin: 0 auto clamp(32px, 5vw, 55px);
  text-align: center;
}

.contact-faq-heading__badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 4px 15px;
  border-radius: 999px;
  background: rgba(0, 171, 175, 0.1);
  color: #00abaf;
  font-size: 9px;
  font-weight: 700;
}

.contact-faq-heading h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(29px, 4vw, 47px);
  font-weight: 700;
  line-height: 1.4;
}

.contact-faq-heading p {
  margin: 8px 0 0;
  color: #a09ba8;
  font-size: 11px;
  line-height: 1.9;
}

.contact-faq-list {
  width: min(800px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 11px;
}

.contact-faq-item {
  overflow: hidden;
  border: 1px solid #e4e2e9;
  border-radius: 15px;
  background: #fff;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.contact-faq-item.is-open {
  border-color: rgba(0, 171, 175, 0.28);
  background: #fdfefe;
  box-shadow: 0 13px 35px rgba(31, 22, 73, 0.06);
}

.contact-faq-item__heading {
  margin: 0;
}

.contact-faq-item__button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #26222e;

  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
  text-align: start;
}

.contact-faq-item__button:hover {
  color: #2a206a;
}

.contact-faq-item__button:focus-visible {
  outline: 3px solid rgba(0, 171, 175, 0.24);
  outline-offset: -3px;
}

.contact-faq-item__icon {
  flex: 0 0 auto;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #f0eff6;
  color: #625a91;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 300ms ease;
}

.contact-faq-item__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.contact-faq-item.is-open .contact-faq-item__icon {
  transform: rotate(180deg);
  background: #00abaf;
  color: #fff;
}

.contact-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition:
    grid-template-rows 350ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 350ms;
}

.contact-faq-item.is-open .contact-faq-item__panel {
  grid-template-rows: 1fr;
  visibility: visible;
}

.contact-faq-item__answer {
  min-height: 0;
  overflow: hidden;
}

.contact-faq-item__answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: #7d7886;
  font-size: 11px;
  line-height: 2;
}

.contact-faq-cta {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 12px;
  padding: clamp(35px, 5vw, 65px);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 15% 90%,
      rgba(0, 171, 175, 0.11),
      transparent 28%
    ),
    #2a206a;
  color: #fff;
}

.contact-faq-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(
      28deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      152deg,
      transparent 49.8%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 50.2%
    );
  background-size: 430px 430px;
  background-position:
    left -130px top -170px,
    right -150px bottom -180px;
}

.contact-faq-cta__line {
  position: absolute;
  z-index: -1;
  height: 1px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.12);
  transform-origin: center;
}

.contact-faq-cta__line--one {
  width: 62%;
  top: 38%;
  transform: rotate(-18deg);
  inset-inline-end: -7%;
}

.contact-faq-cta__line--two {
  width: 45%;
  bottom: 24%;
  transform: rotate(21deg);
  inset-inline-start: 2%;
}

.contact-faq-cta__line--three {
  width: 31%;
  top: 2%;
  transform: rotate(69deg);
  inset-inline-end: 46%;
}

.contact-faq-cta__content {
  max-width: 620px;
}

.contact-faq-cta__content > span {
  display: block;
  margin-bottom: 4px;
  color: #63e3e4;
  font-size: 10px;
  font-weight: 700;
}

.contact-faq-cta__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.3vw, 45px);
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}

.contact-faq-cta__content p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.9;
}

.contact-faq-cta__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  direction: ltr;
}

.contact-faq-cta__button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 23px;
  overflow: hidden;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  direction: rtl;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-faq-cta__button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 220ms ease;
}

.contact-faq-cta__button:hover {
  transform: translateY(-3px);
}

.contact-faq-cta__button:hover svg {
  transform: translateX(-3px);
}

.contact-faq-cta__button:focus-visible {
  outline: 4px solid rgba(99, 227, 228, 0.28);
  outline-offset: 4px;
}

.contact-faq-cta__button--primary {
  border: 1px solid #00abaf;
  background: #00abaf;
  color: #fff;
}

.contact-faq-cta__button--primary:hover {
  border-color: #00c0c5;
  background: #00b7bb;
}

.contact-faq-cta__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  backdrop-filter: blur(8px);
}

.contact-faq-cta__button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .contact-faq-content {
    padding-inline: 40px;
  }

  .contact-faq-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .contact-faq-cta__actions {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .contact-faq-section {
    padding: 45px 0 65px;
  }

  .contact-faq-container {
    width: calc(100% - 24px);
  }

  .contact-faq-content {
    padding: 30px 13px 38px;
    border-radius: 17px;
  }

  .contact-faq-heading {
    margin-bottom: 28px;
  }

  .contact-faq-heading__badge {
    min-height: 25px;
    margin-bottom: 9px;
    font-size: 8px;
  }

  .contact-faq-heading h2 {
    font-size: 28px;
  }

  .contact-faq-heading p {
    margin-top: 5px;
    font-size: 9px;
  }

  .contact-faq-list {
    gap: 8px;
  }

  .contact-faq-item {
    border-radius: 12px;
  }

  .contact-faq-item__button {
    min-height: 61px;
    gap: 11px;
    padding: 13px;
    font-size: 10px;
  }

  .contact-faq-item__icon {
    width: 27px;
    height: 27px;
  }

  .contact-faq-item__answer p {
    padding: 0 13px 16px;
    font-size: 9px;
    line-height: 1.9;
  }

  .contact-faq-cta {
    min-height: 0;
    margin-top: 10px;
    padding: 30px 19px;
    border-radius: 17px;
  }

  .contact-faq-cta__content > span {
    font-size: 9px;
  }

  .contact-faq-cta__content h2 {
    font-size: 27px;
    line-height: 1.55;
  }

  .contact-faq-cta__content p {
    font-size: 10px;
  }

  .contact-faq-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    direction: rtl;
  }

  .contact-faq-cta__button {
    width: 100%;
    min-height: 48px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .contact-faq-heading h2 {
    font-size: 25px;
  }

  .contact-faq-cta__content h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-faq-item,
  .contact-faq-item__panel,
  .contact-faq-item__icon,
  .contact-faq-cta__button,
  .contact-faq-cta__button svg {
    transition: none;
  }
}

.stats-section .stats-heading,
.stats-section .stats-card {
  opacity: 1;
  filter: none;
  transform: none;
}

.stats-section.stats-is-ready .stats-heading {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(6px);
}

.stats-section.stats-is-ready .stats-card {
  opacity: 0;
  transform: translate3d(0, 45px, 0) scale(0.94);
  filter: blur(6px);
}

.stats-section.stats-is-ready .stats-card:nth-child(even) {
  transform: translate3d(0, 55px, 0) scale(0.94);
}

.stats-section.stats-is-ready .stats-heading.is-visible,
.stats-section.stats-is-ready .stats-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.stats-section.stats-is-ready .stats-card.is-visible:hover,
.stats-section.stats-is-ready .stats-card.is-visible:focus-visible {
  transform: translate3d(0, -11px, 0) scale(1.018);
}

@media (prefers-reduced-motion: reduce) {
  .stats-section.stats-is-ready .stats-heading,
  .stats-section.stats-is-ready .stats-card {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.contact-conditional-fields[hidden] {
  display: none !important;
}

.contact-form-grid--conditional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-file-wrapper {
  position: relative;
}

.contact-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-file-box {
  display: flex !important;
  min-height: 60px;
  align-items: center;
  gap: 13px;
  margin: 0 !important;
  padding: 14px 16px;
  border: 1px dashed #d5d1e1;
  border-radius: 12px;
  background: #f8f8fc;
  cursor: pointer;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.contact-file-box:hover {
  border-color: rgba(42, 32, 106, 0.35);
  background: #fafafe;
  transform: translateY(-1px);
}

.contact-file-wrapper:focus-within .contact-file-box {
  border-color: #00abaf;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 171, 175, 0.1);
}

.contact-file-box__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 171, 175, 0.1);
  color: #00abaf;
}

.contact-file-box__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-file-box__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.contact-file-box__content strong {
  overflow: hidden;
  color: #2a206a;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-file-box__content small {
  color: #9b96a7;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.7;
}

.contact-form-field.is-invalid .contact-file-box {
  border-color: #d8445e;
  background: #fffafb;
  box-shadow: 0 0 0 4px rgba(216, 68, 94, 0.08);
}

.contact-form-field.is-valid .contact-file-box {
  border-color: rgba(0, 171, 175, 0.55);
}

@media (max-width: 650px) {
  .contact-form-grid--conditional {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-file-box {
    min-height: 85px;
  }
}

html[dir="ltr"] body {
  direction: ltr;
  font-family:
    "Greycliff CF-Regular",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

html[dir="ltr"] .skip-link {
  inset: 12px 12px auto auto;
}

html[dir="ltr"] .nav-link::after {
  transform-origin: left center;
}

html[dir="ltr"] .nav-link:hover::after,
html[dir="ltr"] .nav-link.is-active::after {
  transform-origin: right center;
}

html[dir="ltr"] .pill-btn--primary2,
html[dir="ltr"] .pill-btn--primary {
  direction: ltr;
}

html[dir="ltr"] .pill-btn--primary2::before,
html[dir="ltr"] .pill-btn--primary::before {
  transform: translateX(130%);
}

html[dir="ltr"] .pill-btn--primary2:hover::before,
html[dir="ltr"] .pill-btn--primary:hover::before {
  transform: translateX(-130%);
}

html[dir="ltr"] .hero-title span::after {
  transform-origin: left;
}

html[dir="ltr"] .cta-primary {
  padding: 5px 24px 5px 6px;
}

html[dir="ltr"] .scroll-indicator {
  transform: translateX(50%);
}

html[dir="ltr"] .process-card:hover::after,
html[dir="ltr"] .process-card:focus-visible::after,
html[dir="ltr"] .process-card.is-active::after {
  transform: translateX(56%) rotate(8deg);
}

/* html[dir="ltr"] .process-shape {
  object-position: right bottom;
  transform: translate(45px, 35px) rotate(-4deg);
} */
html[dir="ltr"] .stats-section::after {
  transform: translateX(-50%);
}

html[dir="ltr"] .stats-number::after {
  transform: translateX(-50%);
}

html[dir="ltr"] .stats-card:hover::after,
html[dir="ltr"] .stats-card:focus-visible::after {
  transform: translateX(62%) rotate(9deg);
}

html[dir="ltr"] .solutions-heading h2::after {
  transform: translateX(-50%);
}

html[dir="ltr"] .ip-section::before {
  transform: translate(-42%, -48%);
}

html[dir="ltr"] .ip-card__shine {
  transform: translateX(145%);
}

html[dir="ltr"] .ip-card:hover .ip-card__shine,
html[dir="ltr"] .ip-card:focus-visible .ip-card__shine {
  animation: ipShine--ltr 1.1s ease forwards;
}

html[dir="ltr"] .ip-card__arrow {
  transform: translateX(-22px) scale(0.75);
}

html[dir="ltr"] .ip-card__arrow::before {
  transform: translateX(130%);
}

html[dir="ltr"] .ip-card__arrow:hover svg {
  transform: translateX(4px);
}

/* html[dir="ltr"] .success-stories-shape {
  background: url(../img/stories.png) no-repeat top left;
} */

html[dir="ltr"] .success-story-link:hover i {
  transform: translateX(4px);
}

html[dir="ltr"] .partners-heading h2 span::after {
  transform-origin: left center;
}

html[dir="ltr"] .partner-card__shine {
  transform: translateX(145%);
}

html[dir="ltr"] .partner-card:hover .partner-card__shine,
html[dir="ltr"] .partner-card:focus-visible .partner-card__shine {
  animation: partnerShine--ltr 1s ease forwards;
}

/* html[dir="ltr"] .world-filter::before {
  transform: translateX(140%);
} */
html[dir="ltr"] .world-filter:hover::before {
  transform: translateX(-140%);
}

html[dir="ltr"] .footer-column h3::after {
  transform-origin: left;
}

html[dir="ltr"] .footer-newsletter button::before {
  transform: translateX(140%);
}

html[dir="ltr"] .footer-newsletter button:hover::before {
  transform: translateX(-140%);
}

html[dir="ltr"] .footer-newsletter button:hover svg {
  transform: translateX(3px);
}

html[dir="ltr"] .footer-links a:hover {
  transform: translateX(4px);
}

html[dir="ltr"] .footer-contact__item:hover {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  html[dir="ltr"] .footer-column h3::after {
    transform: translateX(-50%) scaleX(0);
  }
}

@media (max-width: 700px) {
  html[dir="ltr"] .site-footer.is-visible .footer-column h3::after {
    transform: translateX(-50%) scaleX(1);
  }
}

html[dir="ltr"] .projects-heading__line {
  background: linear-gradient(to right, rgba(44, 31, 112, 0.34), transparent);
}

html[dir="ltr"] .project-card__arrow {
  transform: translate(8px, 8px);
}

html[dir="ltr"] .gallery-item__open {
  transform: translate(50%, -42%) scale(0.9);
}

html[dir="ltr"] .gallery-item:hover .gallery-item__open {
  transform: translate(50%, -50%) scale(1);
}

html[dir="ltr"] .lightbox__toolbar {
  padding: 10px 20px 10px 14px;
}

html[dir="ltr"] .project-info-card__cta:hover svg {
  transform: translateX(4px);
}

html[dir="ltr"] .project-showcase-gallery {
  direction: ltr;
}

html[dir="ltr"] .project-results-grid {
  direction: ltr;
}

html[dir="ltr"] .project-gallery-slide .gallery-item__open {
  transform: translate(50%, -42%) scale(0.9);
}

html[dir="ltr"] .project-gallery-slide:hover .gallery-item__open,
html[dir="ltr"] .project-gallery-slide:focus-visible .gallery-item__open {
  transform: translate(50%, -50%) scale(1);
}

html[dir="ltr"] .related-video-card__link:hover svg {
  transform: translateX(3px);
}

html[dir="ltr"] .contact-input-wrapper input {
  padding: 10px 16px 10px 45px;
}

html[dir="ltr"] .contact-submit-button::before {
  transform: translateX(140%);
}

html[dir="ltr"] .contact-submit-button:hover::before {
  transform: translateX(-140%);
}

html[dir="ltr"] .contact-social-item::before {
  transform-origin: left;
}

html[dir="ltr"] .contact-social-item__arrow {
  transform: translate(6px, 6px);
}

html[dir="ltr"] .contact-location__card {
  transform: translate(-50%, -50%);
}

html[dir="ltr"] .contact-faq-cta::before {
  background-position:
    right -130px top -170px,
    left -150px bottom -180px;
}

html[dir="ltr"] .contact-faq-cta__button {
  direction: ltr;
}

html[dir="ltr"] .contact-faq-cta__button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 620px) {
  html[dir="ltr"] .contact-faq-cta__actions {
    direction: ltr;
  }
}

html[dir="ltr"] .header-actions {
  direction: ltr;
}

html[dir="ltr"] .ip-card__arrow svg,
html[dir="ltr"] .contact-faq-cta__button svg,
html[dir="ltr"] .related-video-card__link svg,
html[dir="ltr"] .footer-newsletter button svg,
html[dir="ltr"] .success-story-link i {
  rotate: 180deg;
}

html[dir="ltr"] .pill-btn svg {
  transform: rotate(0deg);
}

html[dir="ltr"] .contact-input-ltr {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] input[type="email"],
html[dir="ltr"] input[type="tel"],
html[dir="ltr"] input[type="url"] {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .stats-number,
html[dir="ltr"] [dir="ltr"] {
  direction: ltr;
}

html[dir="ltr"] .project-gallery-button--prev svg,
html[dir="ltr"] .project-gallery-button--next svg {
  transform: none;
}

@keyframes ipShine--ltr {
  from {
    transform: translateX(145%);
  }

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

@keyframes partnerShine--ltr {
  from {
    transform: translateX(145%);
  }

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

.thank-you-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  isolation: isolate;
  background: #2a206a;
}

.thank-you-page::before,
.thank-you-page::after {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.5;
}

.thank-you-page::before {
  inset-block-start: -190px;
  inset-inline-start: -140px;
  /* background: radial-gradient(circle, rgba(99, 227, 228, 0.32), transparent 68%); */
}

.thank-you-page::after {
  inset-block-end: -230px;
  inset-inline-end: -150px;
  /* background: radial-gradient(circle, rgba(142, 109, 255, 0.36), transparent 68%); */
}

.thank-you-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 24px;
}

.thank-you-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.thank-you-brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(99, 227, 228, 0.55);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 22px rgba(99, 227, 228, 0.08);
  transform: rotate(45deg);
}

.thank-you-brand__mark::before,
.thank-you-brand__mark::after {
  position: absolute;
  content: "";
  background: var(--heights-cyan);
  border-radius: 999px;
}

.thank-you-brand__mark::before {
  top: 9px;
  left: 19px;
  width: 4px;
  height: 24px;
}

.thank-you-brand__mark::after {
  top: 19px;
  left: 9px;
  width: 24px;
  height: 4px;
}

.thank-you-brand__text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.thank-you-language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--heights-border);
  border-radius: 999px;
  color: var(--heights-white);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: 180ms ease;
}

.thank-you-language:hover,
.thank-you-language:focus-visible {
  border-color: rgba(99, 227, 228, 0.7);
  background: rgba(99, 227, 228, 0.13);
  transform: translateY(-2px);
}

.thank-you-main {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 118px 20px 56px;
}

.thank-you-card {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 72px) clamp(22px, 6vw, 64px);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--heights-border);
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: var(--heights-shadow);
  backdrop-filter: blur(24px);
  animation: thank-you-card-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.thank-you-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  /* background:
    linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.13) 48%, transparent 72%);
  transform: translateX(-120%); */
  animation: thank-you-shine 1100ms 500ms ease forwards;
}

.thank-you-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  /* border: 1px solid rgba(99, 227, 228, 0.5); */
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255, 255, 255, 0.34),
      transparent 32%
    ),
    linear-gradient(145deg, rgb(0 255 8 / 26%), rgb(37 171 41));
  /* box-shadow:
    0 0 0 12px rgba(99, 227, 228, 0.055),
    0 18px 50px rgba(7, 4, 31, 0.28),
    inset 0 0 28px rgba(99, 227, 228, 0.16); */
}

.thank-you-badge::after {
  width: 29px;
  height: 52px;
  content: "";
  border-right: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  border-radius: 2px;
  transform: translateY(-4px) rotate(42deg) scale(0);
  animation: thank-you-check-in 430ms 360ms cubic-bezier(0.2, 0.9, 0.3, 1.3)
    forwards;
}

.thank-you-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--heights-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thank-you-title {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(2rem, 7vw, 4.25rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.thank-you-message {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--heights-text-soft);
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.9;
}

.thank-you-reference {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 8, 49, 0.24);
  font-size: 0.88rem;
}

.thank-you-reference__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--heights-cyan);
  box-shadow: 0 0 15px rgba(99, 227, 228, 0.8);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.thank-you-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.thank-you-button:hover,
.thank-you-button:focus-visible {
  transform: translateY(-3px);
}

.thank-you-button--primary {
  color: white;
  background: var(--heights-cyan);
  /* box-shadow: 0 14px 34px rgba(99, 227, 228, 0.22); */
}

.thank-you-button--primary:hover,
.thank-you-button--primary:focus-visible {
  /* background: var(--heights-cyan-soft);
  box-shadow: 0 18px 42px rgba(99, 227, 228, 0.3); */
}

.thank-you-button--secondary {
  color: var(--heights-white);
  border-color: #2a206a;
  background: #2a206a;
}

.thank-you-button--secondary:hover,
.thank-you-button--secondary:focus-visible {
  border-color: rgba(99, 227, 228, 0.62);
  background: rgba(99, 227, 228, 0.11);
}

.thank-you-footer {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 20px 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-align: center;
}

.thank-you-orbit {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(99, 227, 228, 0.42);
  transform: rotate(45deg);
  animation: thank-you-float 4.5s ease-in-out infinite;
}

.thank-you-orbit--one {
  inset-block-start: 20%;
  inset-inline-start: 12%;
}

.thank-you-orbit--two {
  inset-block-end: 19%;
  inset-inline-end: 13%;
  width: 22px;
  height: 22px;
  border-color: rgba(255, 255, 255, 0.25);
  animation-delay: -1.7s;
}

.thank-you-orbit--three {
  inset-block-start: 32%;
  inset-inline-end: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(99, 227, 228, 0.45);
  animation-delay: -2.5s;
}

@keyframes thank-you-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

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

@keyframes thank-you-check-in {
  to {
    transform: translateY(-4px) rotate(42deg) scale(1);
  }
}

@keyframes thank-you-shine {
  to {
    transform: translateX(120%);
  }
}

@keyframes thank-you-float {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(-14px) rotate(120deg);
  }
}

@media (max-width: 680px) {
  .thank-you-header {
    width: calc(100% - 28px);
    padding-block: 16px;
  }

  .thank-you-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .thank-you-brand__mark::before {
    top: 8px;
    left: 16px;
    height: 20px;
  }

  .thank-you-brand__mark::after {
    top: 16px;
    left: 8px;
    width: 20px;
  }

  .thank-you-brand__text {
    font-size: 0.9rem;
  }

  .thank-you-main {
    padding: 96px 14px 72px;
  }

  .thank-you-card {
    border-radius: 25px;
  }

  .thank-you-badge {
    width: 92px;
    height: 92px;
  }

  .thank-you-badge::after {
    width: 24px;
    height: 42px;
    border-width: 0 5px 5px 0;
  }

  .thank-you-actions {
    display: grid;
  }

  .thank-you-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.mailing-list-message {
  position: absolute !important;
  bottom: -30px !important;
  color: red !important;
}

/* ==========================================================================
   About page — exact replica of ha.com.sa/about
   ========================================================================== */

@font-face {
  font-family: "Greycliff CF-Light";
  src: url("https://ha.com.sa/fonts/GreycliffCF-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Greycliff CF-Regular";
  src: url("https://ha.com.sa/fonts/GreycliffCF-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Greycliff CF-Medium";
  src: url("https://ha.com.sa/fonts/GreycliffCF-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Greycliff CF-DemiBold";
  src: url("https://ha.com.sa/fonts/GreycliffCF-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Greycliff CF-Bold";
  src: url("https://ha.com.sa/fonts/GreycliffCF-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Greycliff CF-ExtraBold";
  src: url("https://ha.com.sa/fonts/GreycliffCF-ExtraBold.woff2")
    format("woff2");
  font-weight: 800;
  font-display: swap;
}

.about-page {
  --ab-accent: #430de8;
  background: #fff;
  font-family: "Greycliff CF-Regular", Cairo, sans-serif;
}

.about-page .ab-container {
  width: min(1340px, calc(100% - 40px));
  margin-inline: auto;
}

/* Inner banner / Hero */

.ab-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding: 0 0 90px;
  overflow: hidden;
  color: #fff;
  background: url("https://api.ha.com.sa/wp-content/uploads/2025/11/CSR02186-1-scaled.jpg")
    center / cover no-repeat;
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(3, 4, 15, 0.85) 0%,
    rgba(3, 4, 15, 0.55) 45%,
    rgba(3, 4, 15, 0.12) 100%
  );
}

.ab-hero__inner {
  max-width: 1050px;
}

.ab-hero h1 {
  margin: 0 0 10px;
  font-family: "Greycliff CF-Bold", Cairo, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.75vw, 35.2px);
  line-height: 1.1;
}

.ab-hero p {
  margin: 0;
  font-family: "Greycliff CF-Regular", Cairo, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 19.2px);
  line-height: 1.5;
}

/* Vision & Mission */

.ab-vm {
  padding: 90px 0 110px;
  background: #fff;
}

.ab-vm__row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.ab-vm__col {
  flex: 1 1 0;
  max-width: 593px;
}

.ab-vm__label {
  margin: 0 0 10px;
  font-family: "Greycliff CF-ExtraBold", Cairo, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.ab-vm__title {
  margin: 0 0 10px;
  font-family: "Greycliff CF-Bold", Cairo, sans-serif;
  font-weight: 700;
  color: #2e2870;
  font-size: clamp(22px, 2.75vw, 35.2px);
  line-height: 1.1;
}

.ab-vm__col p {
  margin: 0;
  font-family: "Greycliff CF-Regular", Cairo, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.3;
}

/* Our Culture */

.ab-culture {
  background: #fff;
}

.ab-culture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px 60px;
  padding-block: 80px;
}

.ab-culture__head h2 {
  margin: 0;
  font-family: "Greycliff CF-ExtraBold", Cairo, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.2;
}

.ab-culture__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ab-culture__item h3 {
  margin: 0 0 10px;
  font-family: "Greycliff CF-DemiBold", Cairo, sans-serif;
  font-weight: 600;
  color: #000;
  font-size: clamp(20px, 2.2vw, 28.8px);
  line-height: 1.1;
}

.ab-culture__item p {
  margin: 0;
  font-family: "Greycliff CF-Light", Cairo, sans-serif;
  font-weight: 300;
  color: #000;
  font-size: 16px;
  line-height: 1.4;
}

/* Core Values & Culture */

.ab-values {
  position: relative;
  isolation: isolate;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(10, 8, 30, 0.55), rgba(10, 8, 30, 0.55)),
    url("https://api.ha.com.sa/wp-content/uploads/2025/11/aboutUs.png") center /
      cover no-repeat;
}

.ab-values__panel {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.ab-values__panel--one {
  top: 0;
  right: 0;
  width: min(45%, 520px);
}

.ab-values__panel--two {
  bottom: 0;
  left: 0;
  width: min(35%, 360px);
}

.ab-values__heading {
  margin: 0 0 50px;
  font-family: "Greycliff CF-ExtraBold", Cairo, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 50px;
}

.ab-values__name {
  display: block;
  margin: 0 0 12px;
  font-family: "Greycliff CF-Bold", Cairo, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 19.2px);
  line-height: 1.2;
}

.ab-values__item p {
  margin: 0;
  font-family: "Greycliff CF-Regular", Cairo, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.2;
}

/* Harvesting Confidence */

.ab-conf {
  padding: 90px 0;
  background: #fff;
  text-align: center;
}

.ab-conf__title {
  margin: 0 0 20px;
  font-family: "Greycliff CF-Bold", Cairo, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(28px, 3.4vw, 44.8px);
  line-height: 1;
}

.ab-conf__text {
  max-width: 900px;
  margin: 0 auto 50px;
  font-family: "Greycliff CF-Regular", Cairo, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: clamp(15px, 1.5vw, 19.2px);
  line-height: 1.5;
}

.ab-conf__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 50px);
}

.ab-conf__logos img {
  width: clamp(70px, 8vw, 110px);
  height: auto;
  object-fit: contain;
}

/* Quality Certificates */

.ab-cert {
  padding: 90px 0;
  background: #e8fff8;
  text-align: center;
}

.ab-cert__title {
  margin: 0 0 20px;
  font-family: "Greycliff CF-Bold", Cairo, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  font-size: clamp(28px, 3.4vw, 44.8px);
  line-height: 1;
}

.ab-cert__text {
  max-width: 820px;
  margin: 0 auto 50px;
  font-family: "Greycliff CF-Light", Cairo, sans-serif;
  font-weight: 300;
  color: #000;
  font-size: clamp(15px, 1.5vw, 19.2px);
  line-height: 1.4;
}

.ab-cert__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 70px);
}

.ab-cert__grid img {
  width: clamp(140px, 15vw, 220px);
  height: auto;
  object-fit: contain;
}

/* About page responsive */

@media (max-width: 900px) {
  .ab-vm__row {
    flex-direction: column;
    gap: 40px;
  }

  .ab-vm__col {
    max-width: none;
  }

  .ab-culture__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 600px) {
  .ab-hero {
    min-height: 80vh;
  }

  .ab-values__grid {
    grid-template-columns: 1fr;
  }
}

/* Arabic variant — uses Cairo, RTL, matches ha.com.sa/ar/about */

.about-page--ar,
.about-page--ar .ab-hero h1,
.about-page--ar .ab-hero p,
.about-page--ar .ab-vm__label,
.about-page--ar .ab-vm__title,
.about-page--ar .ab-vm__col p,
.about-page--ar .ab-culture__head h2,
.about-page--ar .ab-culture__item h3,
.about-page--ar .ab-culture__item p,
.about-page--ar .ab-values__heading,
.about-page--ar .ab-values__name,
.about-page--ar .ab-values__item p,
.about-page--ar .ab-conf__title,
.about-page--ar .ab-conf__text,
.about-page--ar .ab-cert__title,
.about-page--ar .ab-cert__text {
  font-family: "Greycliff CF-Regular", sans-serif;
}

.about-page--ar .ab-vm__title {
  font-weight: 800;
  font-size: clamp(20px, 2.1vw, 27.2px);
  line-height: 1.4;
}

.about-page--ar .ab-culture__item p,
.about-page--ar .ab-cert__text {
  font-weight: 300;
}

.about-page--ar .ab-culture__head h2,
.about-page--ar .ab-values__heading {
  text-align: center;
}

.about-page--ar .ab-values {
  background:
    linear-gradient(rgba(10, 8, 30, 0.55), rgba(10, 8, 30, 0.55)),
    url("https://api.ha.com.sa/wp-content/uploads/2025/11/aboutUs-1.png")
      center / cover no-repeat;
}

.about-page--ar .ab-values__panel--one {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}

.about-page--ar .ab-values__panel--two {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

/* Staggered reveal cascade — same feel as the Home page */

.about-page .ab-vm__col:nth-child(2) {
  --reveal-delay: 140ms;
}

.about-page .ab-culture__item:nth-child(2) {
  --reveal-delay: 100ms;
}

.about-page .ab-culture__item:nth-child(3) {
  --reveal-delay: 200ms;
}

.about-page .ab-culture__item:nth-child(4) {
  --reveal-delay: 300ms;
}

.about-page .ab-values__item:nth-child(2) {
  --reveal-delay: 90ms;
}

.about-page .ab-values__item:nth-child(3) {
  --reveal-delay: 180ms;
}

.about-page .ab-values__item:nth-child(4) {
  --reveal-delay: 270ms;
}

.about-page .ab-values__item:nth-child(5) {
  --reveal-delay: 360ms;
}

.about-page .ab-values__item:nth-child(6) {
  --reveal-delay: 450ms;
}

.about-page .ab-conf__logos img,
.about-page .ab-cert__grid img {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.about-page .ab-conf__logos.is-visible img,
.about-page .ab-cert__grid.is-visible img {
  opacity: 1;
  transform: translateY(0);
}

.about-page .ab-conf__logos img:nth-child(1) {
  transition-delay: 60ms;
}

.about-page .ab-conf__logos img:nth-child(2) {
  transition-delay: 150ms;
}

.about-page .ab-conf__logos img:nth-child(3) {
  transition-delay: 240ms;
}

.about-page .ab-conf__logos img:nth-child(4) {
  transition-delay: 330ms;
}

.about-page .ab-conf__logos img:nth-child(5) {
  transition-delay: 420ms;
}

.about-page .ab-conf__logos img:nth-child(6) {
  transition-delay: 510ms;
}

.about-page .ab-cert__grid img:nth-child(1) {
  transition-delay: 100ms;
}

.about-page .ab-cert__grid img:nth-child(2) {
  transition-delay: 220ms;
}

.about-page .ab-cert__grid img:nth-child(3) {
  transition-delay: 340ms;
}

@media (prefers-reduced-motion: reduce) {
  .about-page .ab-conf__logos img,
  .about-page .ab-cert__grid img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mailing-list-message.alert-success {
  color: #053124 !important;
}

.main-container {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  text-align: center;
  color: #fff;
  background: #2a206a;
}

.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.legal-hero::before {
  width: 320px;
  height: 320px;
  top: -190px;
  left: -70px;
  /* border: 55px solid rgba(255, 255, 255, .05); */
}

.legal-hero::after {
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -250px;
  /* border: 70px solid rgba(99, 227, 228, .08); */
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
}

.legal-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  border: 1px solid rgba(99, 227, 228, 0.26);
  border-radius: 999px;
  /* background: rgba(255, 255, 255, .08); */
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.legal-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
}

.legal-company-name {
  margin: 0;
  color: #63e3e4;
  font-size: 22px;
  font-weight: 700;
}

.legal-subtitle {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.95;
}

.last-updated {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.last-updated time {
  color: #fff;
  font-weight: 700;
}

.legal-intro-wrap {
  padding: 64px 0 35px;
  background: #fff;
  margin: -1px 0;
}

.legal-introduction {
  max-width: 940px;
  margin-inline: auto;
  padding: 28px 32px;
  border: 1px solid rgba(46, 35, 117, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 171, 175, 0.05),
    rgba(46, 35, 117, 0.03)
  );
  box-shadow: 0 18px 44px rgba(24, 16, 68, 0.07);
  text-align: center;
}

.legal-introduction p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: #5f6174;
}

.legal-introduction strong {
  color: #1d1748;
}

.legal-sections {
  padding: 18px 0 110px;
  background: #fff;
}

.legal-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.82fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  min-height: 390px;
  padding: 68px 0;
  border-bottom: 1px solid #e8eaf4;
  scroll-margin-top: 32px;
}

.legal-section:nth-child(even) {
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
}

.legal-section:nth-child(even) .legal-visual {
  grid-column: 1;
  grid-row: 1;
}

.legal-section:nth-child(even) .legal-copy {
  grid-column: 2;
  grid-row: 1;
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 18px;
}

.legal-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #00abaf;
  font-size: 12px;
  font-weight: 800;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #00abaf;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: #2a206a;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.25;
}

.legal-section p {
  margin: 0 0 14px;
  color: #5f6174;
  font-size: 16px;
  line-height: 1.95;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: #1d1748;
}

.legal-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-inline-start: 28px;
  color: #5f6174;
  font-size: 15px;
  line-height: 1.9;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  inset-inline-start: 3px;
  width: 8px;
  height: 8px;
  border: 3px solid rgba(99, 84, 235, 0.24);
  border-radius: 50%;
  background: #6554eb;
}

.legal-link {
  color: #00abaf;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 171, 175, 0.32);
}

.legal-note {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 171, 175, 0.12);
  border-radius: 14px;
  background: #f8fffe;
  color: #4d4f65;
  font-size: 14px;
}

.legal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.legal-shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 22vw, 250px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b55ff 0%, #6554eb 45%, #8a54e8 100%);
  isolation: isolate;
}

.legal-shape::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 10%;
  width: 72%;
  height: 38%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(-18deg);
  z-index: 0;
}

.legal-shape::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 46%;
  width: 78%;
  height: 78%;
  border-radius: 28px;
  /* background: rgba(51, 35, 151, .28); */
  transform: rotate(43deg);
  transform-origin: top left;
  z-index: 0;
}

.legal-shape svg {
  position: relative;
  z-index: 2;
  width: 48%;
  height: 48%;
  color: #fff;
  filter: drop-shadow(0 7px 9px rgba(31, 19, 100, 0.14));
}

.legal-shape svg * {
  vector-effect: non-scaling-stroke;
}

.shape-ring {
  position: absolute;
  inset: 13%;
  z-index: 1;
  border-radius: 50%;
}

.shape-2::after {
  transform: rotate(50deg);
}

.shape-3::after {
  transform: rotate(36deg);
}

.shape-4::after {
  transform: rotate(48deg);
}

.shape-5::after {
  transform: rotate(40deg);
}

.shape-6::after {
  transform: rotate(55deg);
}

.shape-7::after {
  transform: rotate(34deg);
}

.shape-8::after {
  transform: rotate(46deg);
}

.shape-9::after {
  transform: rotate(38deg);
}

.shape-10::after {
  transform: rotate(52deg);
}

.shape-11::after {
  transform: rotate(33deg);
}

.shape-12::after {
  transform: rotate(47deg);
}

.shape-13::after {
  transform: rotate(39deg);
}

.shape-14::after {
  transform: rotate(53deg);
}

.shape-15::after {
  transform: rotate(35deg);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 13px 18px;
  border: 1px solid rgba(0, 171, 175, 0.16);
  border-radius: 14px;
  background: #f8fffe;
  color: #00abaf;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-email:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 14px 32px rgba(54, 48, 130, 0.11);
}

.contact-email svg {
  width: 24px;
  height: 24px;
}

.legal-footer {
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid #e8eaf4;
  background: #fbfbfe;
  color: #5f6174;
  font-size: 13px;
}

@media (max-width: 900px) {
  .legal-section,
  .legal-section:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 58px 0;
  }

  .legal-section .legal-copy,
  .legal-section .legal-visual,
  .legal-section:nth-child(even) .legal-copy,
  .legal-section:nth-child(even) .legal-visual {
    grid-column: 1;
  }

  .legal-section .legal-copy,
  .legal-section:nth-child(even) .legal-copy {
    grid-row: 1;
  }

  .legal-section .legal-visual,
  .legal-section:nth-child(even) .legal-visual {
    grid-row: 2;
  }

  .legal-copy {
    max-width: 760px;
  }

  .legal-visual {
    min-height: 230px;
  }
}

@media (max-width: 600px) {
  .main-container {
    width: min(calc(100% - 30px), 1120px);
  }

  .legal-hero {
    padding: 66px 0 60px;
  }

  .legal-hero h1 {
    font-size: 37px;
  }

  .legal-company-name {
    font-size: 19px;
  }

  .legal-subtitle {
    font-size: 15px;
    line-height: 1.85;
  }

  .legal-intro-wrap {
    padding-top: 40px;
  }

  .legal-introduction {
    padding: 24px 20px;
    text-align: right;
  }

  .legal-section,
  .legal-section:nth-child(even) {
    padding: 48px 0;
  }

  .legal-section h2 {
    font-size: 28px;
  }

  .legal-section p,
  .legal-introduction p {
    font-size: 15px;
    line-height: 1.85;
  }

  .legal-list li {
    font-size: 14px;
  }

  .legal-shape {
    width: 175px;
  }

  .legal-visual {
    min-height: 190px;
  }
}

.career-hero {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 58px) var(--page-padding) 58px;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 171, 175, 0.2), transparent 28%),
    radial-gradient(
      circle at 18% 88%,
      rgba(99, 227, 228, 0.07),
      transparent 30%
    ),
    linear-gradient(135deg, #2a206a 0%, #34277e 48%, #24195d 100%);
  color: #fff;
}

.career-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.72;
  pointer-events: none;
  background:
    linear-gradient(
      26deg,
      transparent 0 24%,
      rgba(99, 227, 228, 0.18) 24.2% 24.38%,
      transparent 24.6% 100%
    ),
    linear-gradient(
      154deg,
      transparent 0 53%,
      rgba(255, 255, 255, 0.1) 53.15% 53.31%,
      transparent 53.5% 100%
    ),
    linear-gradient(
      67deg,
      transparent 0 64%,
      rgba(0, 171, 175, 0.15) 64.15% 64.32%,
      transparent 64.5% 100%
    );
}

.career-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -48% 42%;
  z-index: -1;
  width: 58vw;
  min-width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(99, 227, 228, 0.16);
  transform: rotate(31deg);
  pointer-events: none;
}

.career-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
}

.career-hero__pattern::before,
.career-hero__pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: rotate(-18deg);
}

.career-hero__pattern::before {
  width: 46vw;
  height: 210px;
  top: 12%;
  left: -12%;
}

.career-hero__pattern::after {
  width: 39vw;
  height: 180px;
  top: 22%;
  right: -11%;
}

.career-hero__container {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.career-hero__content {
  width: 95%;
  text-align: left;
  opacity: 0;
  transform: translateY(28px);
  animation: careerHeroReveal 0.85s 0.16s var(--ease-out) forwards;
}

.career-hero__meta {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.015em;
}

.career-hero__meta span {
  margin-inline: 8px;
  color: #63e3e4;
}

.career-hero__title {
  max-width: 950px;
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 15px 38px rgba(10, 6, 46, 0.25);
}

.career-hero__title::after {
  /* content: ""; */
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: #00abaf;
  transform-origin: left center;
  animation: careerHeroLine 0.75s 0.65s var(--ease-out) both;
}

@keyframes careerHeroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes careerHeroLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 920px) {
  .career-hero {
    min-height: 380px;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 46px;
  }
}

@media (max-width: 620px) {
  .career-hero {
    min-height: 330px;
    padding: calc(var(--header-height) + 36px) 20px 38px;
  }

  .career-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: -0.035em;
  }

  .career-hero__meta {
    font-size: 0.68rem;
  }

  .career-hero::after {
    min-width: 380px;
    inset: auto -38% -45% 32%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-hero__content {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .career-hero__title::after {
    transform: scaleX(1);
    animation: none;
  }
}

.career-details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background: white;
  color: #2a206a;
}

.career-details__decoration {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.career-details__decoration--one {
  top: 80px;
  left: -170px;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(0, 171, 175, 0.08);
  border-radius: 50%;
}

.career-details__decoration--two {
  right: -150px;
  bottom: -160px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(46, 35, 117, 0.065);

  transform: rotate(35deg);
}

.career-details__container {
  width: 100%;
  /* margin-inline: auto; */
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.8fr);
  gap: clamp(9px, 0vw, 105px);
  align-items: start;
  padding: clamp(78px, 9vw, 125px) clamp(38px, 9vw, 60px)
    clamp(90px, 6vw, 145px);
}

.career-details__content {
  min-width: 0;
  /* padding: clamp(78px, 9vw, 125px) clamp(38px, 9vw, 60px) clamp(90px, 6vw, 145px); */
}

.career-details__heading {
  /* max-width: 700px; */
  margin-bottom: clamp(28px, 2vw, 68px);
}

.career-details__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: #00abaf;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-details__eyebrow::before {
}

.career-details__heading h2 {
  /* max-width: 680px; */
  color: #2a206a;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.career-details__heading h2 span {
  color: #00abaf;
}

.career-details__heading p {
  max-width: 640px;

  margin-top: 19px;

  color: #625d80;

  font-size: clamp(0.9rem, 1vw, 1rem);

  line-height: 1.9;
}

.career-info-block {
  position: relative;
  max-width: 760px;
  padding: 0 0;
  margin-bottom: clamp(32px, 4vw, 48px);
  /* border-bottom: 1px solid rgba(46, 35, 117, 0.11); */
}

.career-info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;

  border-bottom: 0;
}

/* Header */
.career-info-block__title {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 20px;
}

.career-info-block__number {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 171, 175, 0.22);

  border-radius: 50%;

  background: rgba(0, 171, 175, 0.065);

  color: #00abaf;

  font-size: 0.66rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.career-info-block__title h3 {
  color: #2e2375;

  font-size: clamp(1.15rem, 1.5vw, 1.45rem);

  line-height: 1.4;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: -0.015em;
}

.career-list {
  list-style: none;

  display: grid;

  gap: 13px;
}

.career-list li {
  position: relative;
  padding-left: 15px;
  color: #554f78;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.85;
}

.career-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00abaf;
  /* box-shadow:
    0 0 0 5px
    rgba(0, 171, 175, 0.08); */
}

.career-apply {
  position: relative;
  min-width: 0;
  height: 100%;
}

.career-apply-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 8vw, 125px) var(--page-padding) clamp(90px, 9vw, 145px);
  border-radius: 0;
  background:
    radial-gradient(circle at 95% 0, rgba(99, 227, 228, 0.16), transparent 29%),
    radial-gradient(circle at 0 100%, rgba(0, 171, 175, 0.11), transparent 31%),
    linear-gradient(145deg, #302675 0%, #2a206a 52%, #211855 100%);
  color: #fff;
  /* box-shadow:
    0 30px 75px
    rgba(29, 20, 92, 0.20); */
  height: 100%;
}

.career-apply-card::before {
  /* content: ""; */
  position: absolute;
  top: -150px;
  right: -150px;
  width: 330px;
  height: 330px;
  /* border:
    1px solid
    rgba(255, 255, 255, 0.07); */
  border-radius: 50%;
  pointer-events: none;
}

.career-apply-card::after {
  /* content: ""; */
  position: absolute;
  right: -30%;
  bottom: -130px;
  width: 110%;
  height: 230px;
  border: 1px solid rgba(99, 227, 228, 0.075);
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Glow */
.career-apply-card__glow {
  position: absolute;

  z-index: -1;

  top: -120px;
  left: -90px;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: rgba(0, 171, 175, 0.1);

  filter: blur(65px);

  pointer-events: none;
}

.career-apply-card__heading {
  position: relative;
  z-index: 2;

  margin-bottom: 30px;
}

.career-apply-card__eyebrow {
  display: block;

  margin-bottom: 7px;

  color: #63e3e4;

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.career-apply-card__heading h2 {
  color: #fff;

  font-size: clamp(2.15rem, 3vw, 3.25rem);

  line-height: 1.1;

  letter-spacing: -0.045em;

  font-weight: 800;
}

.career-apply-card__heading h2 span {
  color: #63e3e4;
}

.career-apply-card__heading p {
  max-width: 400px;

  margin-top: 12px;

  color: rgba(255, 255, 255, 0.66);

  font-size: 0.81rem;

  line-height: 1.8;
}

.career-apply-form {
  position: relative;
  z-index: 2;

  display: grid;

  gap: 17px;
}

/* 2 columns */
.career-form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 13px;
}

/* Field */
.career-form-field {
  min-width: 0;

  display: grid;

  gap: 7px;
}

.career-form-field label {
  color: rgba(255, 255, 255, 0.75);

  font-size: 0.68rem;

  font-weight: 700;
}

.career-form-field label span {
  color: #63e3e4;
}

/* Input */
.career-form-field input {
  width: 100%;

  height: 50px;

  padding: 0 15px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 10px;

  outline: 0;

  background: rgba(255, 255, 255, 0.075);

  color: #fff;

  font-size: 0.78rem;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.career-form-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.career-form-field input:hover {
  border-color: rgba(99, 227, 228, 0.32);

  background: rgba(255, 255, 255, 0.095);
}

.career-form-field input:focus {
  border-color: #63e3e4;
  background: rgba(255, 255, 255, 0.11);
  /* box-shadow:
    0 0 0 4px rgba(99, 227, 228, 0.09); */
}

.career-form-field--file input {
  height: auto;

  min-height: 54px;

  padding: 7px;

  cursor: pointer;
}

.career-form-field--file input::file-selector-button {
  height: 38px;

  margin-right: 11px;

  padding: 0 15px;

  border: 0;

  border-radius: 7px;

  background: #00abaf;

  color: #fff;

  font-size: 0.7rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.career-form-field--file input::file-selector-button:hover {
  background: #08bfc3;
}

.career-form-field small {
  color: rgba(255, 255, 255, 0.42);

  font-size: 0.61rem;

  line-height: 1.5;
}

.career-submit-button {
  position: relative;

  min-height: 55px;

  margin-top: 4px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  overflow: hidden;

  padding: 5px 6px 5px 21px;

  border: 0;

  border-radius: 999px;

  background: #fff;

  color: #2a206a;

  font-size: 0.78rem;

  font-weight: 800;

  cursor: pointer;

  box-shadow: 0 15px 35px rgba(6, 5, 30, 0.16);

  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease;
}

.career-submit-button::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(0, 171, 175, 0.08) 48%,
    transparent 72%
  );

  transform: translateX(-125%);

  transition: transform 0.7s ease;
}

.career-submit-button span {
  position: relative;
  z-index: 2;
}

.career-submit-button i {
  position: relative;
  z-index: 2;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: #00abaf;

  color: #fff;

  transition:
    transform 0.4s var(--ease-out),
    background 0.3s ease;
}

.career-submit-button svg {
  width: 19px;
  height: 19px;
}

.career-submit-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 42px rgba(6, 5, 30, 0.23);
}

.career-submit-button:hover::before {
  transform: translateX(125%);
}

.career-submit-button:hover i {
  transform: translateX(2px) rotate(-5deg);

  background: #2e2375;
}

/* Privacy */
.career-form-note {
  max-width: 390px;

  margin: 2px auto 0;

  color: rgba(255, 255, 255, 0.38);

  font-size: 0.59rem;

  line-height: 1.7;

  text-align: center;
}

@media (max-width: 1050px) {
  .career-details__container {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);

    gap: 48px;
  }

  .career-apply-card {
    padding: 34px 28px;
  }
}

@media (max-width: 900px) {
  .career-details {
    padding-inline: 0;
  }

  .career-details__container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: clamp(78px, 9vw, 125px) clamp(16px, 4vw, 50px)
      clamp(90px, 4vw, 145px);
  }

  .career-details__heading {
    margin-bottom: 45px;
  }

  .career-apply {
    width: 100%;
    margin-inline: auto;
  }

  .career-apply-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .career-details {
    /* padding:
      70px
      18px
      85px; */
  }

  .career-details__heading {
    margin-bottom: 38px;
  }

  .career-details__heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .career-info-block {
    /* padding-bottom: 30px; */
    margin-bottom: 30px;
  }

  .career-info-block__number {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .career-info-block__title {
    gap: 11px;
    margin-bottom: 17px;
  }

  .career-info-block__title h3 {
    font-size: 1rem;
  }

  .career-list {
    gap: 11px;
  }

  .career-list li {
    padding-left: 25px;

    font-size: 0.83rem;

    line-height: 1.8;
  }

  /* Form */
  .career-apply-card {
    padding: 30px 20px;

    border-radius: 17px;
  }

  .career-form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .career-form-field input {
    height: 49px;
  }

  .career-submit-button {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .career-details {
    padding-inline: 15px;
  }

  .career-apply-card {
    padding-inline: 17px;
  }
}

.career-apply-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 3.2vw, 46px);
  border: 0;
  border-radius: 40px;
  background:
    linear-gradient(
      145deg,
      rgba(24, 16, 67, 0.94) 0%,
      rgba(35, 25, 91, 0.86) 42%,
      rgba(20, 14, 58, 0.9) 100%
    ),
    url("../img/appliy-now-bg.webp") center center / cover no-repeat;
  color: #fff;
  box-shadow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: flex-start; */
}

.career-apply-card::before {
  /* content: ""; */
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(0, 171, 175, 0.22), transparent 32%),
    linear-gradient(
      180deg,
      rgba(18, 12, 55, 0.12) 0%,
      rgba(18, 12, 55, 0.34) 48%,
      rgba(12, 8, 42, 0.58) 100%
    );
  pointer-events: none;
}

.career-apply-card::after {
  /* content: ""; */
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 90px rgba(9, 5, 35, 0.24),
    inset 0 -80px 100px rgba(9, 5, 35, 0.16);
}

.career-apply-card__glow {
  position: absolute;
  z-index: 1;

  top: -110px;
  right: -100px;

  width: 310px;
  height: 310px;

  border-radius: 50%;

  background: rgba(0, 171, 175, 0.16);

  filter: blur(80px);

  pointer-events: none;
}

.careers-hero {
  position: relative;
  isolation: isolate;

  min-height: clamp(430px, 47vw, 570px);

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  padding: calc(var(--header-height) + 60px) var(--page-padding)
    clamp(58px, 6vw, 82px);

  color: #fff;

  background:
    radial-gradient(circle at 74% 12%, rgba(88, 64, 230, 0.4), transparent 34%),
    radial-gradient(
      circle at 16% 88%,
      rgba(0, 171, 175, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, #23165f 0%, #2a206a 38%, #33218f 68%, #25165f 100%);
}

.careers-hero::before {
  content: "";

  position: absolute;
  z-index: -3;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      25deg,
      transparent 0 29%,
      rgba(99, 227, 228, 0.18) 29.1% 29.25%,
      transparent 29.4% 100%
    ),
    linear-gradient(
      154deg,
      transparent 0 43%,
      rgba(255, 255, 255, 0.1) 43.1% 43.23%,
      transparent 43.4% 100%
    ),
    linear-gradient(
      67deg,
      transparent 0 68%,
      rgba(99, 227, 228, 0.12) 68.1% 68.25%,
      transparent 68.4% 100%
    );

  opacity: 0.85;
}

.careers-hero::after {
  content: "";

  position: absolute;
  z-index: -2;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(8, 5, 35, 0.06) 0%,
    transparent 35%,
    rgba(11, 7, 46, 0.22) 100%
  );
}

.careers-hero__pattern {
  position: absolute;
  z-index: -2;
  inset: 0;

  pointer-events: none;
}

.careers-hero__pattern::before {
  content: "";

  position: absolute;

  width: 52vw;
  height: 330px;

  top: -135px;
  left: 12%;

  border: 1px solid rgba(99, 227, 228, 0.13);

  transform: rotate(-21deg);
}

.careers-hero__pattern::after {
  content: "";

  position: absolute;

  width: 46vw;
  height: 300px;

  right: -9%;
  bottom: -180px;

  border: 1px solid rgba(255, 255, 255, 0.09);

  transform: rotate(31deg);
}

.careers-hero__glow {
  position: absolute;

  z-index: -1;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(90px);
}

.careers-hero__glow--one {
  width: 360px;
  height: 360px;

  top: -180px;
  right: 14%;

  background: rgba(89, 50, 235, 0.2);
}

.careers-hero__glow--two {
  width: 300px;
  height: 300px;

  left: 7%;
  bottom: -190px;

  background: rgba(0, 171, 175, 0.11);
}

.careers-hero__container {
  width: min(100%, 1280px);

  margin-inline: auto;

  position: relative;
  z-index: 3;
}

.careers-hero__content {
  width: 90%;
  text-align: left;
  opacity: 0;
  transform: translateY(34px);
  animation: careersHeroContentIn 1.1s 0.18s var(--ease-out) forwards;
}

.careers-hero__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.62);

  font-size: clamp(0.68rem, 0.85vw, 0.78rem);

  font-weight: 700;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}

.careers-hero__eyebrow::before {
  content: "";

  width: 29px;
  height: 2px;

  border-radius: 999px;

  background: #00abaf;
}

.careers-hero__title {
  position: relative;

  width: max-content;
  max-width: 100%;

  margin: 0;

  color: #fff;

  font-size: clamp(3rem, 6vw, 6rem);

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.055em;

  text-shadow: 0 16px 42px rgba(7, 4, 32, 0.28);
}

.careers-hero__title::after {
  /* content: ""; */
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: #00abaf;
  transform: scaleX(0);
  transform-origin: left center;
  animation: careersHeroLineIn 0.85s 0.85s var(--ease-out) forwards;
}

.careers-hero__scroll {
  position: absolute;

  z-index: 5;

  right: max(var(--page-padding), calc((100vw - 1280px) / 2));

  bottom: clamp(58px, 6vw, 82px);

  display: flex;

  align-items: center;

  gap: 11px;

  color: rgba(255, 255, 255, 0.56);

  font-size: 0.65rem;

  font-weight: 600;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  transition: color 0.3s ease;
}

.careers-hero__scroll i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.19);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(8px);

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.4s var(--ease-out);
}

.careers-hero__scroll svg {
  width: 17px;
  height: 17px;
}

.careers-hero__scroll:hover {
  color: #fff;
}

.careers-hero__scroll:hover i {
  border-color: #00abaf;

  background: #00abaf;

  transform: translateY(4px);
}

@keyframes careersHeroContentIn {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes careersHeroLineIn {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  .careers-hero {
    min-height: clamp(410px, 65vw, 500px);

    padding-inline: clamp(20px, 5vw, 38px);

    padding-bottom: 55px;
  }

  .careers-hero__scroll {
    right: clamp(20px, 5vw, 38px);

    bottom: 55px;
  }

  .careers-hero__pattern::before {
    width: 75vw;
  }

  .careers-hero__pattern::after {
    width: 68vw;
  }
}

@media (max-width: 600px) {
  .careers-hero {
    min-height: 390px;

    padding: calc(var(--header-height) + 45px) 19px 45px;
  }

  .careers-hero__content {
    padding-right: 58px;
  }

  .careers-hero__title {
    font-size: clamp(2.8rem, 15vw, 4.25rem);
  }

  .careers-hero__title::after {
    width: 48px;
    height: 3px;

    margin-top: 15px;
  }

  .careers-hero__eyebrow {
    font-size: 0.62rem;

    margin-bottom: 9px;
  }

  .careers-hero__scroll {
    right: 18px;

    bottom: 46px;
  }

  .careers-hero__scroll > span {
    display: none;
  }

  .careers-hero__scroll i {
    width: 36px;
    height: 36px;
  }

  .careers-hero__pattern::before {
    width: 105vw;
    height: 250px;

    left: -20%;
  }

  .careers-hero__pattern::after {
    width: 100vw;
    height: 240px;

    right: -45%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .careers-hero__content {
    opacity: 1;

    transform: none;

    animation: none;
  }

  .careers-hero__title::after {
    transform: scaleX(1);

    animation: none;
  }
}

.career-opportunities {
  position: relative;
  background: #fff;
  color: #2a206a;
}

.career-page-container {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.career-why {
  position: relative;
  overflow: hidden;

  padding: clamp(85px, 8vw, 125px) var(--page-padding) clamp(90px, 9vw, 135px);

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(0, 171, 175, 0.045),
      transparent 24%
    ),
    #ffffff;
}

.career-why::after {
  content: "";

  position: absolute;

  right: -190px;
  top: 50%;

  width: 370px;
  height: 370px;

  border: 1px solid rgba(42, 32, 106, 0.045);

  border-radius: 50%;

  transform: translateY(-50%);

  pointer-events: none;
}

.career-why__grid {
  display: grid;

  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);

  align-items: start;

  gap: clamp(60px, 9vw, 150px);
}

.career-why__heading {
  position: relative;
}

.career-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: #00abaf;

  font-size: 0.72rem;

  font-weight: 800;

  letter-spacing: 0.11em;

  text-transform: uppercase;
}

.career-why__eyebrow::before {
  content: "";

  width: 27px;
  height: 2px;

  border-radius: 999px;

  background: #00abaf;
}

.career-why__heading h2 {
  max-width: 545px;
  color: #211a50;
  font-size: clamp(2.2rem, 3.8vw, 4.15rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-transform: uppercase;
}

.career-why__heading h2 span {
  position: relative;

  color: #00abaf;
}

.career-why__heading h2 span::after {
  /* content: ""; */
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 171, 175, 0.28);
  transition: width 1s 0.45s var(--ease-out);
}

.career-why__heading.is-career-visible h2 span::after {
  width: 100%;
}

.career-why__content {
  position: relative;

  max-width: 700px;

  padding-left: clamp(24px, 3vw, 40px);

  border-left: 1px solid rgba(42, 32, 106, 0.1);
}

.career-why__content::before {
  content: "";

  position: absolute;

  top: 0;
  left: -2px;

  width: 3px;
  height: 58px;

  border-radius: 999px;

  background: linear-gradient(180deg, #00abaf, rgba(0, 171, 175, 0.05));
}

.career-why__content p {
  max-width: 640px;

  color: #5c577d;

  font-size: clamp(0.88rem, 1.08vw, 1rem);

  line-height: 1.95;
}

.career-why__content .career-why__lead {
  margin-bottom: 20px;

  color: #30266f;

  font-size: clamp(0.95rem, 1.2vw, 1.08rem);

  line-height: 1.85;

  font-weight: 600;
}

.career-jobs {
  position: relative;

  isolation: isolate;

  overflow: hidden;

  padding: clamp(85px, 8vw, 125px) var(--page-padding) clamp(100px, 9vw, 145px);

  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(0, 171, 175, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 95%,
      rgba(42, 32, 106, 0.055),
      transparent 26%
    ),
    linear-gradient(180deg, #effcf9 0%, #e8f9f6 100%);
}

.career-jobs::before {
  content: "";

  position: absolute;

  z-index: -1;

  top: 0;
  left: 50%;

  width: min(760px, 80vw);
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 171, 175, 0.24),
    transparent
  );
}

.career-jobs__shape {
  position: absolute;

  z-index: -1;

  pointer-events: none;
}

.career-jobs__shape--one {
  top: 60px;
  right: -140px;

  width: 310px;
  height: 310px;

  border: 1px solid rgba(0, 171, 175, 0.08);

  transform: rotate(34deg);
}

.career-jobs__shape--two {
  left: -150px;
  bottom: -155px;

  width: 370px;
  height: 370px;

  border: 1px solid rgba(42, 32, 106, 0.055);

  border-radius: 50%;
}

.career-jobs__heading {
  width: min(760px, 100%);

  margin: 0 auto clamp(48px, 6vw, 72px);

  text-align: center;
}

.career-jobs__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 10px;

  color: #00abaf;

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.career-jobs__eyebrow::before,
.career-jobs__eyebrow::after {
  content: "";

  width: 22px;
  height: 1px;

  background: currentColor;

  opacity: 0.45;
}

.career-jobs__heading h2 {
  color: #211a50;

  font-size: clamp(2.3rem, 4.2vw, 4.4rem);

  line-height: 1.15;

  letter-spacing: -0.05em;

  font-weight: 800;

  text-transform: uppercase;
}

.career-jobs__heading h2 span {
  color: #00abaf;
}

.career-jobs__heading p {
  max-width: 680px;

  margin: 17px auto 0;

  color: #66617d;

  font-size: clamp(0.82rem, 1vw, 0.95rem);

  line-height: 1.9;
}

.career-jobs__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(17px, 2vw, 25px);
}

.career-job-card {
  position: relative;
  min-width: 0;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(25px, 2.5vw, 34px);
  border: 1px solid rgba(0, 171, 175, 0.26);
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.87)
  );
  box-shadow: 0 15px 42px rgba(31, 27, 83, 0.045);
  transition:
    transform 0.55s var(--ease-out),
    border-color 0.4s ease,
    box-shadow 0.5s ease,
    background 0.4s ease;
}

.career-job-card::before {
  /* content: ""; */
  position: absolute;
  top: -110px;
  right: -110px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 171, 175, 0.085);
  transform: scale(0.4);
  opacity: 0;
  transition:
    transform 0.7s var(--ease-out),
    opacity 0.45s ease;
  pointer-events: none;
}

.career-job-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #00abaf;
  transition: width 0.6s var(--ease-out);
}

.career-job-card:hover {
  transform: translateY(-11px);

  border-color: rgba(0, 171, 175, 0.65);

  background: #fff;

  box-shadow: 0 27px 60px rgba(37, 28, 99, 0.13);
}

.career-job-card:hover::before {
  opacity: 1;

  transform: scale(1);
}

.career-job-card:hover::after {
  width: 100%;
}

.career-job-card__top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;
}

.career-job-card__number {
  color: rgba(42, 32, 106, 0.35);

  font-size: 0.62rem;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.career-job-card__location {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: #00abaf;

  font-size: 0.65rem;

  font-weight: 600;
}

.career-job-card__location svg {
  width: 14px;
  height: 14px;
}

.career-job-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0;
}

.career-job-card__body h3 {
  max-width: 310px;

  color: #221b52;

  font-size: clamp(1rem, 1.28vw, 1.25rem);

  line-height: 1.55;

  letter-spacing: -0.018em;

  font-weight: 800;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    transform 0.45s var(--ease-out);
}

.career-job-card:hover .career-job-card__body h3 {
  color: #2a206a;

  transform: translateY(-3px);
}

.career-job-card__link {
  position: relative;

  z-index: 2;

  align-self: flex-end;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #00abaf;

  font-size: 0.73rem;

  font-weight: 700;
}

.career-job-card__link i {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 1px solid rgba(0, 171, 175, 0.48);

  border-radius: 50%;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.45s var(--ease-out),
    box-shadow 0.35s ease;
}

.career-job-card__link svg {
  width: 17px;
  height: 17px;

  transition: transform 0.45s var(--ease-out);
}

.career-job-card__link:hover i,
.career-job-card:hover .career-job-card__link i {
  background: #00abaf;

  color: #fff;

  transform: rotate(-8deg);

  box-shadow: 0 10px 24px rgba(0, 171, 175, 0.25);
}

.career-job-card__link:hover svg,
.career-job-card:hover .career-job-card__link svg {
  transform: translateX(3px);
}

[data-career-reveal] {
  opacity: 0;

  filter: blur(5px);

  transition:
    opacity 0.85s ease var(--career-delay, 0ms),
    transform 1.05s var(--ease-out) var(--career-delay, 0ms),
    filter 0.8s ease var(--career-delay, 0ms);
}

/* From bottom */
[data-career-reveal="up"] {
  transform: translateY(48px);
}

/* From left */
[data-career-reveal="left"] {
  transform: translateX(-55px);
}

/* From right */
[data-career-reveal="right"] {
  transform: translateX(55px);
}

/* Revealed */
[data-career-reveal].is-career-visible {
  opacity: 1;

  filter: blur(0);

  transform: translate3d(0, 0, 0);
}

/* Cards retain hover after reveal */
.career-job-card[data-career-reveal] .is-career-visible {
  transform: none;
}

.career-job-card[data-career-reveal] .is-career-visible:hover {
  transform: translateY(-11px);
}

@media (max-width: 980px) {
  .career-why__grid {
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);

    gap: 50px;
  }

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

  .career-job-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 12px);

    justify-self: center;
  }
}

@media (max-width: 720px) {
  .career-why {
    padding: 72px 20px 80px;
  }

  .career-why__grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .career-why__heading h2 {
    max-width: 470px;
  }

  .career-why__content {
    padding-left: 21px;
  }

  .career-jobs {
    padding: 75px 20px 90px;
  }

  .career-jobs__grid {
    width: min(520px, 100%);

    margin-inline: auto;

    grid-template-columns: 1fr;

    gap: 15px;
  }

  .career-job-card:last-child {
    grid-column: auto;

    width: 100%;
  }

  .career-job-card {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .career-why {
    padding-inline: 17px;
  }

  .career-why__heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .career-why__content p {
    font-size: 0.84rem;
  }

  .career-jobs {
    padding: 67px 17px 82px;
  }

  .career-jobs__heading {
    margin-bottom: 37px;
  }

  .career-jobs__heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .career-jobs__heading p {
    font-size: 0.8rem;
  }

  .career-job-card {
    min-height: 205px;

    padding: 23px 20px;

    border-radius: 13px;
  }

  .career-job-card__location {
    font-size: 0.6rem;
  }

  .career-job-card__body {
    padding: 22px 0;
  }

  .career-job-card__body h3 {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-career-reveal] {
    opacity: 1;

    filter: none;

    transform: none;

    transition: none;
  }

  .career-job-card:hover {
    transform: none;
  }
}

.news-list-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: clamp(75px, 8vw, 125px) var(--page-padding) clamp(90px, 9vw, 145px);

  background:
    radial-gradient(
      circle at 4% 12%,
      rgba(0, 171, 175, 0.045),
      transparent 25%
    ),
    radial-gradient(
      circle at 96% 88%,
      rgba(42, 32, 106, 0.04),
      transparent 28%
    ),
    #ffffff;

  color: #2a206a;
}

.news-list-section::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: 8%;
  right: -210px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(42, 32, 106, 0.045);

  border-radius: 50%;

  pointer-events: none;
}

.news-list-container {
  width: min(100%, 1280px);

  margin-inline: auto;
}

.news-layout {
  display: grid;

  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

  gap: clamp(45px, 6vw, 90px);

  align-items: start;
}

.news-featured-card {
  min-width: 0;
}

/* Image */
.news-featured-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #211a50;
  box-shadow: 0 22px 55px rgba(31, 24, 91, 0.12);
}

.news-featured-card__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 1.05s var(--ease-out),
    filter 0.7s ease;
}

.news-featured-card__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(13, 9, 48, 0.02) 25%,
    rgba(17, 11, 57, 0.36) 100%
  );

  transition: background 0.5s ease;
}

/* Category */
.news-featured-card__category {
  position: absolute;

  top: 20px;
  left: 20px;

  min-height: 30px;

  display: inline-flex;
  align-items: center;

  padding: 5px 13px;

  border: 1px solid rgba(255, 255, 255, 0.22);

  border-radius: 999px;

  background: rgba(25, 18, 77, 0.32);

  color: #fff;

  font-size: 0.62rem;

  font-weight: 700;

  backdrop-filter: blur(12px);
}

/* Image arrow */
.news-featured-card__arrow {
  position: absolute;

  right: 20px;
  bottom: 20px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #00abaf;

  color: #fff;

  opacity: 0;

  transform: translateY(15px) scale(0.85);

  transition:
    opacity 0.4s ease,
    transform 0.5s var(--ease-out),
    background 0.3s ease;
}

.news-featured-card__arrow svg {
  width: 20px;
  height: 20px;

  transition: transform 0.45s var(--ease-out);
}

.news-featured-card__media:hover img {
  transform: scale(1.065);

  filter: saturate(1.04) contrast(1.02);
}

.news-featured-card__media:hover .news-featured-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 9, 48, 0) 15%,
    rgba(17, 11, 57, 0.48) 100%
  );
}

.news-featured-card__media:hover .news-featured-card__arrow {
  opacity: 1;

  transform: translateY(0) scale(1);
}

.news-featured-card__media:hover .news-featured-card__arrow svg {
  transform: translateX(3px);
}

.news-featured-card__content {
  padding: 25px 2px 0;
}

.news-card-meta {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 12px;

  color: #00abaf;

  font-size: 0.64rem;

  font-weight: 700;
}

.news-card-meta i {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: rgba(42, 32, 106, 0.3);
}

.news-card-meta time {
  color: #918ca6;

  font-weight: 600;
}

.news-featured-card__content h2 {
  max-width: 560px;

  color: #20194e;

  font-size: clamp(1.35rem, 2.15vw, 2.05rem);

  line-height: 1.45;

  letter-spacing: -0.03em;

  font-weight: 800;
}

.news-featured-card__content h2 a {
  transition: color 0.3s ease;
}

.news-featured-card__content h2 a:hover {
  color: #00abaf;
}

.news-featured-card__content p {
  max-width: 585px;

  margin-top: 13px;

  color: #625d7c;

  font-size: clamp(0.78rem, 0.95vw, 0.91rem);

  line-height: 1.9;
}

.news-read-more {
  width: max-content;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 20px;

  color: #2a206a;

  font-size: 0.7rem;

  font-weight: 800;

  transition: color 0.3s ease;
}

.news-read-more i {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 171, 175, 0.35);

  border-radius: 50%;

  color: #00abaf;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.45s var(--ease-out);
}

.news-read-more svg {
  width: 16px;
  height: 16px;

  transition: transform 0.4s var(--ease-out);
}

.news-read-more:hover {
  color: #00abaf;
}

.news-read-more:hover i {
  background: #00abaf;

  color: #fff;

  transform: rotate(-7deg);
}

.news-read-more:hover svg {
  transform: translateX(3px);
}

.news-side-list {
  display: grid;

  gap: 0;
}

.news-side-card {
  position: relative;

  min-width: 0;

  display: grid;

  grid-template-columns: minmax(0, 1fr) clamp(125px, 12vw, 175px);

  align-items: center;

  gap: clamp(25px, 3vw, 42px);

  min-height: 285px;

  padding: 8px 0 34px;

  margin-bottom: 34px;

  border-bottom: 1px solid rgba(42, 32, 106, 0.13);

  transition: border-color 0.4s ease;
}

.news-side-card:last-child {
  margin-bottom: 0;
}

.news-side-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #2a206a;
  transition: width 0.7s var(--ease-out);
}

.news-side-card:hover::after {
  width: 100%;
}

.news-side-card__content {
  min-width: 0;
}

.news-side-card__time {
  min-height: 27px;

  display: inline-flex;
  align-items: center;

  margin-bottom: 15px;

  padding: 4px 11px;

  border-radius: 999px;

  background: rgba(0, 171, 175, 0.1);

  color: #00abaf;

  font-size: 0.57rem;

  font-weight: 800;
}

.news-side-card h3 {
  color: #211a50;

  font-size: clamp(1.05rem, 1.4vw, 1.35rem);

  line-height: 1.5;

  letter-spacing: -0.025em;

  font-weight: 800;
}

.news-side-card h3 a {
  transition: color 0.3s ease;
}

.news-side-card:hover h3 a {
  color: #00abaf;
}

.news-side-card__content > p {
  max-width: 520px;

  margin-top: 10px;

  color: #625d79;

  font-size: clamp(0.74rem, 0.88vw, 0.86rem);

  line-height: 1.8;

  display: -webkit-box;

  overflow: hidden;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 4;
}

.news-side-card__bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  margin-top: 18px;
}

.news-side-card__bottom time {
  color: #00abaf;

  font-size: 0.61rem;

  font-weight: 700;
}

.news-side-card__bottom > a {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(0, 171, 175, 0.25);

  border-radius: 50%;

  color: #00abaf;

  opacity: 0;

  transform: translateX(-10px);

  transition:
    opacity 0.35s ease,
    transform 0.45s var(--ease-out),
    background 0.3s ease,
    color 0.3s ease;
}

.news-side-card__bottom svg {
  width: 15px;
  height: 15px;
}

.news-side-card:hover .news-side-card__bottom > a {
  opacity: 1;

  transform: translateX(0);
}

.news-side-card__bottom > a:hover {
  background: #00abaf;

  color: #fff;
}

.news-side-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #211a50;
  box-shadow: 0 13px 32px rgba(30, 23, 82, 0.08);
}

.news-side-card__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s var(--ease-out),
    filter 0.55s ease;
}

.news-side-card__media span {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    145deg,
    rgba(42, 32, 106, 0),
    rgba(42, 32, 106, 0.17)
  );

  transition: background 0.4s ease;
}

.news-side-card:hover .news-side-card__media img {
  transform: scale(1.075);

  filter: saturate(1.05);
}

[data-news-reveal] {
  opacity: 0;

  filter: blur(5px);

  transition:
    opacity 0.9s ease var(--news-delay, 0ms),
    transform 1.15s var(--ease-out) var(--news-delay, 0ms),
    filter 0.85s ease var(--news-delay, 0ms);
}

[data-news-reveal="left"] {
  transform: translateX(-55px);
}

[data-news-reveal="right"] {
  transform: translateX(55px);
}

[data-news-reveal="up"] {
  transform: translateY(50px);
}

[data-news-reveal].is-news-visible {
  opacity: 1;

  filter: blur(0);

  transform: translate3d(0, 0, 0);
}

@media (max-width: 1000px) {
  .news-layout {
    grid-template-columns: 0.95fr 1.05fr;

    gap: 42px;
  }

  .news-side-card {
    grid-template-columns: minmax(0, 1fr) 125px;

    gap: 23px;

    min-height: 250px;
  }
}

@media (max-width: 820px) {
  .news-list-section {
    padding-inline: clamp(20px, 5vw, 38px);
  }

  .news-layout {
    width: min(700px, 100%);

    margin-inline: auto;

    grid-template-columns: 1fr;

    gap: 65px;
  }

  .news-featured-card__media {
    aspect-ratio: 1.55 / 1;
  }

  .news-side-card {
    grid-template-columns: minmax(0, 1fr) 170px;

    min-height: 230px;
  }
}

@media (max-width: 580px) {
  .news-list-section {
    padding: 65px 17px 45px;
  }

  .news-layout {
    gap: 50px;
  }

  .news-featured-card__media {
    aspect-ratio: 1.2 / 1;
    border-radius: 0;
  }

  .news-featured-card__category {
    top: 14px;
    left: 14px;
  }

  .news-featured-card__arrow {
    right: 14px;
    bottom: 14px;

    width: 43px;
    height: 43px;

    opacity: 1;

    transform: none;
  }

  .news-featured-card__content {
    padding-top: 20px;
  }

  .news-featured-card__content h2 {
    font-size: 1.3rem;
  }

  .news-featured-card__content p {
    font-size: 0.8rem;

    line-height: 1.8;
  }

  /* Side card */
  .news-side-card {
    grid-template-columns: 1fr;

    gap: 20px;

    min-height: auto;

    padding-bottom: 30px;

    margin-bottom: 30px;
  }

  .news-side-card__media {
    grid-row: 1;

    aspect-ratio: 1.8 / 1;
  }

  .news-side-card__content {
    grid-row: 2;
  }

  .news-side-card__content > p {
    -webkit-line-clamp: 3;
  }

  .news-side-card__bottom > a {
    opacity: 1;

    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-news-reveal] {
    opacity: 1;

    filter: none;

    transform: none;

    transition: none;
  }

  .news-featured-card__media img,
  .news-side-card__media img {
    transition: none;
  }
}

.news-grid-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(85px, 9vw, 135px) var(--page-padding) clamp(100px, 10vw, 155px);
  background: white;
  color: #2a206a;
}

.news-grid-section::before {
  /* content: ""; */
  position: absolute;
  z-index: -1;
  top: 120px;
  right: -190px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(42, 32, 106, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.news-grid-container {
  width: min(100%, 1280px);

  margin-inline: auto;
}

.news-grid-heading {
  width: min(700px, 100%);

  margin: 0 auto clamp(45px, 6vw, 75px);

  text-align: center;
}

.news-grid-heading > span {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 10px;

  color: #00abaf;

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.news-grid-heading > span::before,
.news-grid-heading > span::after {
  content: "";

  width: 22px;
  height: 1px;

  background: currentColor;

  opacity: 0.45;
}

.news-grid-heading h2 {
  color: #211a50;

  font-size: clamp(2.3rem, 4vw, 4.2rem);

  line-height: 1.15;

  letter-spacing: -0.05em;

  font-weight: 800;
}

.news-grid-heading h2 strong {
  color: #00abaf;

  font-weight: inherit;
}

.news-grid-heading p {
  max-width: 620px;

  margin: 15px auto 0;

  color: #68637d;

  font-size: clamp(0.8rem, 1vw, 0.93rem);

  line-height: 1.9;
}

.news-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(25px, 3vw, 38px) clamp(18px, 2vw, 28px);

  align-items: stretch;
}

.news-grid-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* border:
    1px solid
    rgba(42, 32, 106, 0.065); */
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  /* box-shadow:
    0 14px 38px
    rgba(34, 26, 92, 0.045); */
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.news-grid-card:hover {
  transform: translateY(-10px);

  border-color: rgba(0, 171, 175, 0.3);

  box-shadow: 0 28px 65px rgba(34, 26, 92, 0.13);
}

.news-grid-card__media {
  position: relative;

  display: block;

  aspect-ratio: 1.35 / 1;

  overflow: hidden;

  background: #231b59;
}

.news-grid-card__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.01);

  transition:
    transform 0.9s var(--ease-out),
    filter 0.6s ease;
}

.news-grid-card__image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(20, 14, 62, 0) 48%,
    rgba(20, 14, 62, 0.28) 100%
  );

  transition: background 0.5s ease;
}

.news-grid-card__image-arrow {
  position: absolute;

  right: 18px;
  bottom: 18px;

  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #00abaf;

  color: #fff;

  opacity: 0;

  transform: translateY(14px) scale(0.82);

  box-shadow: 0 14px 30px rgba(0, 171, 175, 0.25);

  transition:
    opacity 0.35s ease,
    transform 0.5s var(--ease-out),
    background 0.3s ease;
}

.news-grid-card__image-arrow svg {
  width: 18px;
  height: 18px;

  transition: transform 0.4s var(--ease-out);
}

.news-grid-card:hover .news-grid-card__media img {
  transform: scale(1.075);

  filter: saturate(1.06) contrast(1.02);
}

.news-grid-card:hover .news-grid-card__image-overlay {
  background: linear-gradient(
    180deg,
    rgba(20, 14, 62, 0) 28%,
    rgba(20, 14, 62, 0.4) 100%
  );
}

.news-grid-card:hover .news-grid-card__image-arrow {
  opacity: 1;

  transform: translateY(0) scale(1);
}

.news-grid-card:hover .news-grid-card__image-arrow svg {
  transform: translateX(3px);
}

.news-grid-card__content {
  position: relative;

  flex: 1;

  display: flex;
  flex-direction: column;

  padding: clamp(23px, 2.2vw, 31px);
}

.news-grid-card__meta {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 13px;

  font-size: 0.59rem;

  font-weight: 700;
}

.news-grid-card__meta > span {
  color: #00abaf;
}

.news-grid-card__meta time {
  color: #9994aa;

  font-weight: 600;
}

.news-grid-card__meta i {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: rgba(42, 32, 106, 0.25);
}

.news-grid-card h3 {
  margin: 0;

  color: #221b52;

  font-size: clamp(1rem, 1.35vw, 1.24rem);

  line-height: 1.55;

  letter-spacing: -0.02em;

  font-weight: 800;
}

.news-grid-card h3 a {
  transition: color 0.3s ease;
}

.news-grid-card:hover h3 a {
  color: #00abaf;
}

.news-grid-card__content > p {
  margin-top: 12px;

  color: #656079;

  font-size: clamp(0.73rem, 0.87vw, 0.84rem);

  line-height: 1.85;

  display: -webkit-box;

  overflow: hidden;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 4;
}

.news-grid-card__read {
  width: max-content;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: auto;

  padding-top: 20px;

  color: #2a206a;

  font-size: 0.67rem;

  font-weight: 800;

  transition: color 0.3s ease;
}

.news-grid-card__read svg {
  width: 16px;
  height: 16px;

  color: #00abaf;

  transition: transform 0.4s var(--ease-out);
}

.news-grid-card__read:hover {
  color: #00abaf;
}

.news-grid-card__read:hover svg {
  transform: translateX(5px);
}

.news-grid-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #00abaf;
  transition: width 0.65s var(--ease-out);
}

.news-grid-card:hover::after {
  width: 100%;
}

@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 26px 20px;
  }

  .news-grid-card__media {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 650px) {
  .news-grid-section {
    padding: 0px 18px 90px;
  }

  .news-grid-heading {
    margin-bottom: 40px;
  }

  .news-grid-heading h2 {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .news-grid {
    width: min(500px, 100%);

    margin-inline: auto;

    grid-template-columns: 1fr;

    gap: 22px;
  }

  .news-grid-card {
    border-radius: 0;
  }

  .news-grid-card__media {
    aspect-ratio: 1.55 / 1;
  }

  .news-grid-card__image-arrow {
    right: 14px;
    bottom: 14px;

    width: 41px;
    height: 41px;

    opacity: 1;

    transform: none;
  }

  .news-grid-card__content {
    padding: 22px 19px 24px;
  }

  .news-grid-card h3 {
    font-size: 1.06rem;
  }

  .news-grid-card__content > p {
    font-size: 0.79rem;

    line-height: 1.8;
  }
}

@media (max-width: 380px) {
  .news-grid-section {
    padding-inline: 15px;
  }

  .news-grid-card__media {
    aspect-ratio: 1.35 / 1;
  }
}

.news-detail {
  position: relative;

  overflow: hidden;

  padding: calc(var(--header-height) + 60px) var(--page-padding)
    clamp(100px, 10vw, 155px);

  background:
    radial-gradient(circle at 4% 8%, rgba(0, 171, 175, 0.04), transparent 24%),
    radial-gradient(
      circle at 96% 75%,
      rgba(42, 32, 106, 0.045),
      transparent 28%
    ),
    #ffffff;

  color: #2a206a;
}

.news-detail::before {
  /* content: ""; */
  position: absolute;
  top: 22%;
  right: -230px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(42, 32, 106, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.news-detail__container {
  width: min(100%, 1280px);

  margin-inline: auto;
}

.news-detail__hero {
  position: relative;

  aspect-ratio: 3.15 / 1;

  overflow: hidden;

  border-radius: 18px;

  background: #211a50;

  box-shadow: 0 25px 70px rgba(29, 21, 83, 0.13);
}

.news-detail__hero-image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.06);

  transition: transform 1.6s var(--ease-out);
}

.news-detail__hero.is-detail-visible .news-detail__hero-image {
  transform: scale(1);
}

.news-detail__hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(21, 14, 65, 0.02) 35%,
    rgba(21, 14, 65, 0.25) 100%
  );

  pointer-events: none;
}

.news-detail__category {
  position: absolute;

  top: 22px;
  left: 22px;

  min-height: 32px;

  display: inline-flex;

  align-items: center;

  padding: 5px 14px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 999px;

  background: rgba(29, 19, 85, 0.35);

  color: #fff;

  font-size: 0.62rem;

  font-weight: 700;

  backdrop-filter: blur(12px);
}

.news-detail__header {
  width: min(1080px, 100%);

  margin: clamp(30px, 4vw, 55px) auto 0;
}

/* Date + Share */
.news-detail__topline {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: clamp(28px, 4vw, 45px);
}

.news-detail__meta {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #00abaf;

  font-size: 0.66rem;

  font-weight: 700;
}

.news-detail__meta span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(42, 32, 106, 0.25);
}

.news-detail__meta p {
  color: #9893aa;
}

.news-detail__share {
  display: flex;

  align-items: center;

  gap: 13px;
}

.news-detail__share > span,
.news-detail__footer-share > span {
  color: #817c94;

  font-size: 0.64rem;

  font-weight: 700;
}

.news-detail__socials {
  display: flex;

  align-items: center;

  gap: 7px;
}

.news-detail__socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  transition:
    background 0.3s ease,
    transform 0.4s var(--ease-out),
    box-shadow 0.3s ease;
}

.news-detail__socials svg {
  width: 15px;
  height: 15px;
}

.news-detail__socials a:hover {
  background: white;
  transform: translateY(-4px);
  /* box-shadow:
    0 10px 24px rgba(0, 171, 175, 0.23); */
}

.news-detail__title {
  max-width: 970px;

  margin: 0;

  color: #211a50;

  font-size: clamp(2.2rem, 4.5vw, 4.75rem);

  line-height: 1.16;

  letter-spacing: -0.055em;

  font-weight: 800;

  text-wrap: balance;
}

/* teal underline */
.news-detail__title::after {
  /* content: ""; */
  display: block;
  width: 75px;
  height: 4px;
  margin-top: clamp(22px, 3vw, 30px);
  border-radius: 999px;
  background: linear-gradient(90deg, #00abaf, #63e3e4);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s 0.35s var(--ease-out);
}

.news-detail__title.is-detail-visible::after {
  transform: scaleX(1);
}

.news-detail__lead {
  max-width: 930px;

  margin-top: clamp(26px, 3vw, 38px);

  color: #40396f;

  font-size: clamp(1rem, 1.55vw, 1.35rem);

  line-height: 1.9;

  font-weight: 600;
}

.news-detail__body {
  width: min(1080px, 100%);
  margin: clamp(39px, 0vw, 100px) auto 0;
}

/* Article block */
.news-detail__block {
  position: relative;
  margin-bottom: clamp(39px, 3vw, 58px);
}

.news-detail__block p {
  color: #615c75;

  font-size: clamp(0.9rem, 1.08vw, 1rem);

  line-height: 2.05;
}

.news-detail__block p + p {
  margin-top: 20px;
}

.news-detail__section-number {
  display: block;

  margin-bottom: 10px;

  color: #00abaf;

  font-size: 0.64rem;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.news-detail__block h2 {
  position: relative;

  margin: 0 0 22px;

  color: #251d5d;

  font-size: clamp(1.6rem, 2.5vw, 2.5rem);

  line-height: 1.35;

  letter-spacing: -0.035em;

  font-weight: 800;
}

.news-detail__quote {
  position: relative;
  margin: clamp(40px, 1vw, 95px) 0;
  padding: clamp(35px, 5vw, 55px) clamp(35px, 6vw, 70px);
  overflow: hidden;
  border-left: 4px solid #00abaf;
  border-radius: 0 18px 18px 0;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 171, 175, 0.08),
      transparent 40%
    ),
    #f5f5f8;
}

.news-detail__quote > span {
  position: absolute;

  top: -15px;
  right: 25px;

  color: rgba(42, 32, 106, 0.055);

  font-size: 9rem;

  line-height: 1;
}

.news-detail__quote p {
  position: relative;

  z-index: 2;

  max-width: 690px;

  color: #2a206a;

  font-size: clamp(1.2rem, 2vw, 1.7rem);

  line-height: 1.65;

  font-weight: 700;
}

.news-detail__inline-media {
  margin: clamp(60px, 8vw, 105px) 0;

  overflow: hidden;
}

.news-detail__inline-media img {
  width: 100%;

  aspect-ratio: 1.8 / 1;

  display: block;

  object-fit: cover;

  border-radius: 17px;

  transform: scale(1.06);

  transition: transform 1.4s var(--ease-out);

  box-shadow: 0 20px 55px rgba(29, 22, 80, 0.1);
}

.news-detail__inline-media.is-detail-visible img {
  transform: scale(1);
}

.news-detail__inline-media figcaption {
  margin-top: 13px;

  color: #9792a7;

  font-size: 0.66rem;

  line-height: 1.7;
}

.news-detail__footer {
  width: min(1080px, 100%);

  min-height: 110px;

  margin: clamp(65px, 8vw, 110px) auto 0;

  padding-top: 32px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-top: 1px solid rgba(42, 32, 106, 0.11);
}

/* Back */
.news-detail__back {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  color: #2a206a;

  font-size: 0.73rem;

  font-weight: 800;
}

.news-detail__back i {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(0, 171, 175, 0.28);

  border-radius: 50%;

  color: #00abaf;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.4s var(--ease-out);
}

.news-detail__back svg {
  width: 18px;
  height: 18px;

  transition: transform 0.4s var(--ease-out);
}

.news-detail__back:hover i {
  background: #00abaf;

  color: #fff;

  transform: translateX(-4px);
}

.news-detail__back:hover svg {
  transform: translateX(-2px);
}

/* Footer Share */
.news-detail__footer-share {
  display: flex;

  align-items: center;

  gap: 13px;
}

[data-news-detail-reveal] {
  opacity: 0;

  filter: blur(5px);

  transition:
    opacity 0.85s ease var(--detail-delay, 0ms),
    transform 1.1s var(--ease-out) var(--detail-delay, 0ms),
    filter 0.85s ease var(--detail-delay, 0ms);
}

[data-news-detail-reveal="up"] {
  transform: translateY(45px);
}

[data-news-detail-reveal="left"] {
  transform: translateX(-55px);
}

[data-news-detail-reveal="right"] {
  transform: translateX(55px);
}

[data-news-detail-reveal="image"] {
  transform: translateY(35px) scale(0.985);
}

[data-news-detail-reveal].is-detail-visible {
  opacity: 1;

  filter: blur(0);

  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 900px) {
  .news-detail {
    padding-inline: clamp(20px, 5vw, 38px);
  }

  .news-detail__hero {
    aspect-ratio: 2.2 / 1;
  }

  .news-detail__header,
  .news-detail__footer {
    width: min(850px, 100%);
  }

  .news-detail__body {
    width: min(760px, 100%);
  }
}

@media (max-width: 600px) {
  .news-detail {
    padding: calc(var(--header-height) + 35px) 17px 85px;
  }

  .news-detail__hero {
    aspect-ratio: 1.45 / 1;

    border-radius: 14px;
  }

  .news-detail__category {
    top: 14px;
    left: 14px;

    min-height: 28px;
  }

  .news-detail__header {
    margin-top: 28px;
  }

  .news-detail__topline {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 28px;
  }

  .news-detail__title {
    font-size: clamp(2rem, 10vw, 2.85rem);

    line-height: 1.2;
  }

  .news-detail__title::after {
    width: 52px;
    height: 3px;
  }

  .news-detail__lead {
    font-size: 0.96rem;

    line-height: 1.85;
  }

  .news-detail__body {
    margin-top: 55px;
  }

  .news-detail__block {
    margin-bottom: 45px;
  }

  .news-detail__block p {
    font-size: 0.84rem;

    line-height: 1.95;
  }

  .news-detail__block h2 {
    font-size: 1.5rem;
  }

  .news-detail__quote {
    margin: 50px 0;

    padding: 32px 23px;
  }

  .news-detail__quote p {
    font-size: 1.15rem;
  }

  .news-detail__inline-media {
    margin: 50px 0;
  }

  .news-detail__inline-media img {
    aspect-ratio: 1.35 / 1;

    border-radius: 13px;
  }

  .news-detail__footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 25px;

    margin-top: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-news-detail-reveal] {
    opacity: 1;

    filter: none;

    transform: none;

    transition: none;
  }

  .news-detail__hero-image,
  .news-detail__inline-media img {
    transform: none;

    transition: none;
  }

  .news-detail__title::after {
    transform: scaleX(1);
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  z-index: 9999;
  display: block;
  border-radius: 80px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* padding: 6px; */
  /* border-radius: 50px; */
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

.footer-scroll-top {
  left: 24px !important;
  right: auto !important;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .footer-scroll-top {
    left: 16px !important;
    right: auto !important;
  }
}

.service-detail-container {
  width: min(1280px, 100%);
  margin-inline: auto;
}

.service-detail-hero {
  position: relative;
  isolation: isolate;

  min-height: clamp(500px, 55vw, 690px);

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  padding: calc(var(--header-height) + 80px) var(--page-padding)
    clamp(65px, 7vw, 95px);

  color: #fff;
}

.service-detail-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.service-detail-hero__media img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.07);

  animation: serviceHeroImageIn 1.8s var(--ease-out) forwards;
}

.service-detail-hero__overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 171, 175, 0.18),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(20, 13, 64, 0.95) 0%,
      rgba(31, 22, 92, 0.83) 42%,
      rgba(20, 13, 64, 0.38) 100%
    ),
    linear-gradient(180deg, rgba(11, 7, 42, 0.12), rgba(11, 7, 42, 0.72));
}

.service-detail-hero__content {
  width: min(850px, 100%);
}

.service-detail-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 15px;

  color: #63e3e4;

  font-size: 0.75rem;

  font-weight: 800;
}

.service-detail-eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: #00abaf;
}

.service-detail-hero h1 {
  max-width: 850px;

  color: #fff;

  font-size: clamp(2.6rem, 5vw, 5.4rem);

  line-height: 1.2;

  letter-spacing: -0.05em;

  font-weight: 800;
}

.service-detail-hero__content > p {
  max-width: 700px;

  margin-top: 20px;

  color: rgba(255, 255, 255, 0.76);

  font-size: clamp(0.95rem, 1.25vw, 1.1rem);

  line-height: 2;
}

.service-about {
  padding: clamp(85px, 9vw, 140px) var(--page-padding);

  background: #fff;

  color: #2a206a;
}

.service-about__grid {
  display: grid;

  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);

  gap: clamp(55px, 9vw, 140px);

  align-items: start;
}

.service-about__heading > span {
  color: #00abaf;

  font-size: 0.72rem;

  font-weight: 800;
}

.service-about__heading h2 {
  max-width: 500px;

  margin-top: 11px;

  color: #2a206a;

  font-size: clamp(2rem, 3.5vw, 3.7rem);

  line-height: 1.3;

  font-weight: 800;
}

.service-about__heading strong {
  display: block;

  color: #00abaf;
}

.service-about__content {
  padding-inline-start: clamp(22px, 3vw, 40px);

  border-inline-start: 1px solid rgba(42, 32, 106, 0.12);
}

.service-about__content p {
  color: #625d79;

  font-size: clamp(0.9rem, 1.1vw, 1.02rem);

  line-height: 2.05;
}

.service-about__content p + p {
  margin-top: 22px;
}

.service-projects {
  position: relative;
  padding: clamp(85px, 9vw, 140px) var(--page-padding);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(0, 171, 175, 0.07),
      transparent 25%
    ),
    #f4f4f7;
  color: #2a206a;
  border: 0;
}

.service-projects__heading {
  width: min(760px, 100%);

  margin: 0 auto clamp(45px, 6vw, 75px);

  text-align: center;
}

.service-projects__heading > span {
  color: #00abaf;

  font-size: 0.72rem;

  font-weight: 800;
}

.service-projects__heading h2 {
  margin-top: 8px;

  color: #2a206a;

  font-size: clamp(2.1rem, 4vw, 4rem);

  line-height: 1.3;

  font-weight: 800;
}

.service-projects__heading h2 strong {
  color: #00abaf;
}

.service-projects__heading p {
  max-width: 650px;

  margin: 16px auto 0;

  color: #67617f;

  line-height: 1.9;
}

.service-projects__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.service-project-card {
  position: relative;

  min-height: clamp(380px, 34vw, 470px);

  overflow: hidden;

  border-radius: 15px;

  background: #211854;

  box-shadow: 0 20px 50px rgba(30, 23, 85, 0.1);

  color: #fff;

  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.45s ease;
}

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

  box-shadow: 0 30px 70px rgba(30, 23, 85, 0.2);
}

.service-project-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.9s var(--ease-out);
}

.service-project-card:hover img {
  transform: scale(1.08);
}

.service-project-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(19, 13, 61, 0.3) 55%,
    rgba(19, 13, 61, 0.96) 100%
  );
}

.service-project-card__content {
  position: absolute;
  z-index: 2;

  right: 0;
  bottom: 0;
  left: 0;

  padding: clamp(23px, 2.5vw, 32px);
}

.service-project-card__content span {
  color: #63e3e4;

  font-size: 0.66rem;

  font-weight: 700;
}

.service-project-card__content h3 {
  margin-top: 8px;

  color: #fff;

  font-size: clamp(1.05rem, 1.5vw, 1.4rem);

  line-height: 1.6;

  font-weight: 700;
}

.service-request {
  padding: clamp(75px, 8vw, 120px) var(--page-padding);
  background: #fff;
  border: 0;
}

.service-request__card {
  width: min(1280px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(38px, 5vw, 70px);
  overflow: hidden;
  border-radius: 24px;
  background: #2a206a;
  color: #fff;
  box-shadow: 0 30px 75px rgba(31, 23, 91, 0.18);
}

.service-request__card > div {
  max-width: 720px;
}

.service-request__card > div > span {
  color: #63e3e4;

  font-size: 0.72rem;

  font-weight: 800;
}

.service-request__card h2 {
  margin-top: 9px;

  color: #fff;

  font-size: clamp(2rem, 3.5vw, 3.5rem);

  line-height: 1.3;

  font-weight: 800;
}

.service-request__card p {
  max-width: 620px;

  margin-top: 14px;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.9;
}

/* Button */
.service-request__button {
  flex: 0 0 auto;

  min-height: 58px;

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 6px 7px 6px 24px;

  border-radius: 999px;

  background: #fff;

  color: #2a206a;

  font-size: 0.78rem;

  font-weight: 800;

  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.35s ease;
}

.service-request__button i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #00abaf;
  color: #fff;
}

.service-request__button svg {
  width: 20px;
  height: 20px;
}

.service-request__button:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

[data-service-reveal] {
  opacity: 0;

  filter: blur(5px);

  transition:
    opacity 0.85s ease,
    transform 1s var(--ease-out),
    filter 0.8s ease;
}

[data-service-reveal="up"] {
  transform: translateY(45px);
}

[data-service-reveal="right"] {
  transform: translateX(50px);
}

[data-service-reveal="left"] {
  transform: translateX(-50px);
}

[data-service-reveal].is-service-visible {
  opacity: 1;

  filter: blur(0);

  transform: translate3d(0, 0, 0);
}

@keyframes serviceHeroImageIn {
  to {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .service-about__grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

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

  .service-request__card {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .service-detail-hero {
    min-height: 500px;

    padding-inline: 18px;
  }

  .service-about,
  .service-projects,
  .service-request {
    padding-inline: 18px;
  }

  .service-about__content {
    padding-inline-start: 20px;
  }

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

  .service-project-card {
    min-height: 380px;
  }

  .service-request__card {
    padding: 32px 22px;

    border-radius: 18px;
  }

  .service-request__button {
    width: 100%;

    justify-content: space-between;
  }
}

.footer-contactward {
  width: 340px;
  margin-bottom: 15px;
}

.partners-section-ward {
  background: white;
}

.partners-ward {
  width: 100%;
  display: flex;
}

.contactward {
  width: 100%;
  height: 100%;
}

html[lang="ar"] .career-list li::before {
  left: unset;
  right: 1px;
}

html[lang="ar"] .career-list li {
  padding-right: 15px;
  padding-left: 0;
}

.site-footer {
  position: relative;
  background: #fff;
  color: #090909;
  overflow: hidden;
  direction: ltr;
}

.footer-container {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 52px 0 22px;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(300px, 1.15fr) 60px;
  grid-template-areas:
    "brand brand brand"
    "contact links socials";
  column-gap: 0;
}

.footer-brand-column {
  grid-area: brand;
  position: relative;
  display: grid;
  grid-template-columns: minmax(299px, 1fr) 340px;
  align-items: center;
  gap: 0px;
  padding-bottom: 19px;
  margin-bottom: 0;
  border-bottom: 1px solid #02d7a0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo img {
  display: block;
  width: 135px;
  height: auto;
  object-fit: contain;
}

.footer-description {
  padding: 0;
  margin: 0;

  color: #080808;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-newsletter {
  width: 100%;
  margin: 0;
}

.footer-newsletter__field {
  display: flex;
  align-items: center;
  width: 100%;
  height: 38px;
}

.footer-newsletter__field input {
  flex: 1;
  height: 100%;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid #cacaca;
  outline: 0;
  background: transparent;
  color: #111;
  font-size: 11px;
}

.footer-newsletter__field input::placeholder {
  color: #999;
}

.footer-newsletter__field button {
  flex: 0 0 auto;
  min-width: 100px;
  height: 36px;
  /* margin-left: 12px; */
  padding: 3px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 30px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.footer-newsletter__field button:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.footer-newsletter__field button svg {
  display: none;
}

.footer-newsletter__message {
  min-height: 16px;

  margin: 5px 0 0;

  color: #555;

  font-size: 10px;
}

.footer-contact-column {
  grid-area: contact;
}

.footer-contact-column > h3 {
  display: none;
}

.footer-contactward {
  display: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 27px;

  padding: 0;
  margin: 0;

  font-style: normal;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;

  color: #080808;
  text-decoration: none;
}

.footer-contact__icon {
  display: none;
}

.footer-contact__item > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
}

.footer-contact__item small {
  display: block;

  margin-bottom: 7px;

  color: #050505;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-contact__item strong {
  display: block;

  max-width: 260px;

  color: #111;

  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-contact__item:hover strong {
  text-decoration: underline;
}

.footer-links-column {
  grid-area: links;
}

.footer-links-column > h3 {
  display: none;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(130px, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: 0;
  row-gap: 22px;
  align-content: start;
  padding: 0;
  margin: 0;
}

.footer-links a {
  width: max-content;

  color: #0a0a0a;

  text-decoration: none;

  font-size: 14px;
  font-weight: 400;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.55;
  transform: translateX(3px);
}

.footer-socials {
  position: absolute;
  right: 0;
  bottom: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  /* justify-content: center; */
}

.footer-socials a {
  width: 21px;
  height: 21px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.65;
}

.footer-socials img {
  display: block;

  width: 17px;
  height: 17px;

  object-fit: contain;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 0;
  border-top: 1px solid #02d7a0;
}

.footer-bottom p {
  padding: 0;
  margin: 0;

  color: #555;

  font-size: 9px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-legal-links {
  /* display: none; */
}

.footer-decoration {
  display: none;
}

.footer-scroll-top {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 100;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ddd;
  border-radius: 50%;

  background: #fff;
  color: #111;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.footer-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer-scroll-top:hover {
  transform: translateY(-3px);
}

.footer-scroll-top svg {
  width: 18px;
  height: 18px;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

@media (max-width: 900px) {
  .footer-container {
    width: min(100% - 40px, 1240px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    grid-template-areas:
      "brand brand"
      "contact links";

    column-gap: 40px;
  }

  .footer-brand-column {
    grid-template-columns: 1fr 280px;
    gap: 0px;
  }

  .footer-links {
    column-gap: 45px;
  }

  .footer-socials {
    position: static;

    grid-column: 1 / -1;

    flex-direction: row;

    margin-top: 30px;
  }
}

@media (max-width: 650px) {
  .footer-container {
    width: calc(100% - 3px);
    padding-top: 40px;
  }

  .footer-main {
    display: flex;
    flex-direction: column;

    gap: 35px;
  }

  .footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 0px;

    margin-bottom: 0;
    padding-bottom: 30px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .footer-newsletter__field input {
    min-width: 0;
  }

  .footer-newsletter__field button {
    min-width: 90px;
    padding-inline: 14px;
    width: 100px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    grid-auto-flow: row;
    column-gap: 1px;
    row-gap: 18px;
  }

  .footer-socials {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 34px;
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 35px;
  }

  .footer-bottom p {
    font-size: 8px;
  }
}

.Solutions-jobs__heading {
  margin-bottom: 0px;
}

.solutions-directory {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.solutions-directory__container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 28px 90px;
}

.solutions-directory__row {
  position: relative;

  display: grid;

  grid-template-columns: 28% 40% 32%;

  align-items: center;

  min-height: 185px;

  border-bottom: 1px solid rgba(17, 17, 17, 0.18);

  background: #fff;

  overflow: hidden;

  cursor: pointer;

  isolation: isolate;

  outline: none;

  transition:
    min-height 550ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 350ms ease;
}

/*
 * أول صف يكون له Border من فوق
 * مثل التصميم المرجعي.
 */
.solutions-directory__row:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.solutions-directory__title {
  position: relative;
  z-index: 4;

  grid-column: 1;

  margin: 0;

  padding: 26px 34px;

  max-width: 280px;

  font-size: clamp(16px, 1.35vw, 21px);

  line-height: 1.17;

  font-weight: 800;

  letter-spacing: -0.035em;

  color: #080808;

  transition:
    color 350ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-directory__description {
  position: relative;
  z-index: 4;

  grid-column: 3;

  width: 100%;
  max-width: 310px;

  justify-self: center;

  margin: 0;

  padding: 26px 30px;

  font-size: clamp(12px, 0.96vw, 15px);

  line-height: 1.32;

  font-weight: 500;

  color: #171717;

  transition:
    color 350ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-directory__media {
  position: absolute;

  left: 28%;

  top: 16px;
  bottom: 16px;

  width: 40%;

  z-index: 2;

  overflow: hidden;

  background: #111;

  transform: translateZ(0);

  transform-origin: center center;

  transition:
    left 650ms cubic-bezier(0.22, 1, 0.36, 1),
    width 650ms cubic-bezier(0.22, 1, 0.36, 1),
    top 650ms cubic-bezier(0.22, 1, 0.36, 1),
    bottom 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 500ms ease;
  transition-duration: 2s;
}

.solutions-directory__media::before {
  content: "";

  position: absolute;

  z-index: 4;

  top: 0;
  bottom: 0;
  left: 0;

  width: 7px;

  background: #25207a;

  transition:
    opacity 350ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-directory__media::after {
  content: "";

  position: absolute;

  z-index: 3;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(3, 4, 18, 0.68) 0%,
    rgba(4, 5, 18, 0.28) 39%,
    rgba(3, 4, 18, 0.23) 58%,
    rgba(3, 4, 18, 0.68) 100%
  );

  opacity: 0;

  transition: opacity 450ms ease;
}

.solutions-directory__media img {
  position: absolute;

  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1);

  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);

  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .solutions-directory__row:hover .solutions-directory__media,
  .solutions-directory__row:focus .solutions-directory__media {
    left: 0;

    width: 100%;

    top: 0;
    bottom: 0;
  }

  .solutions-directory__row:hover .solutions-directory__media img,
  .solutions-directory__row:focus .solutions-directory__media img {
    transform: scale(1.075);
  }

  .solutions-directory__row:hover .solutions-directory__media::after,
  .solutions-directory__row:focus .solutions-directory__media::after {
    opacity: 1;
  }

  .solutions-directory__row:hover .solutions-directory__media::before,
  .solutions-directory__row:focus .solutions-directory__media::before {
    opacity: 0;

    transform: translateX(-100%);
  }

  .solutions-directory__row:hover .solutions-directory__title,
  .solutions-directory__row:focus .solutions-directory__title {
    color: #ffffff;

    transform: translateX(5px);
  }

  .solutions-directory__row:hover .solutions-directory__description,
  .solutions-directory__row:focus .solutions-directory__description {
    color: #ffffff;

    transform: translateX(-5px);
  }
}

.solutions-directory__row:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(23, 196, 190, 0.88);
}

@media (max-width: 1000px) {
  .solutions-directory__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .solutions-directory__row {
    grid-template-columns: 27% 42% 31%;

    min-height: 170px;
  }

  .solutions-directory__media {
    left: 27%;
    width: 42%;
  }

  .solutions-directory__title {
    padding: 22px 20px;

    font-size: 16px;
  }

  .solutions-directory__description {
    padding: 22px 18px;

    font-size: 12px;
  }
}

@media (max-width: 720px) {
  .solutions-directory__container {
    padding: 0 16px 65px;
  }

  .solutions-directory__row {
    display: grid;

    grid-template-columns: 1fr;

    min-height: auto;

    padding: 26px 0;

    gap: 17px;

    overflow: visible;
  }

  .solutions-directory__title {
    grid-column: 1;

    grid-row: 1;

    max-width: none;

    padding: 0;

    font-size: 19px;
  }

  .solutions-directory__media {
    position: relative;

    grid-column: 1;

    grid-row: 2;

    left: auto;

    top: auto;

    bottom: auto;

    width: 100%;

    height: 230px;

    border-radius: 3px;
  }

  .solutions-directory__description {
    grid-column: 1;

    grid-row: 3;

    justify-self: start;

    max-width: 560px;

    padding: 0;

    font-size: 14px;

    line-height: 1.55;
  }

  .solutions-directory__media img {
    transform: none;
  }

  .solutions-directory__media::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .solutions-directory__media {
    height: 190px;
  }

  .solutions-directory__title {
    font-size: 17px;
  }

  .solutions-directory__description {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solutions-directory__media,
  .solutions-directory__media img,
  .solutions-directory__title,
  .solutions-directory__description {
    transition: none !important;
  }
}

html[lang="ar"] .button_arrow {
  transform: rotate(135deg);
}

html[lang="ar"] .site-footer {
  direction: rtl;
}

html[lang="ar"] .footer-socials {
  right: unset;
  left: 0;
}

.solutions-bot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 29px;
  gap: 9px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 9px;
  width: 230px;
  font-size: calc(24 / 16 * 1rem);
  /* text-transform: uppercase; */
}

.solutions-bot:hover {
  background: #2a206a;
  color: #fff;
  transform: translateY(-2px);
  border: 1px solid #2a206a;
}
.hero::after {
  content: "";
  position: absolute;
  --process-bg: #2a206a;
  z-index: 5;
  right: -49px;
  bottom: -3px;
  width: clamp(380px, 71vw, 760px);
  height: clamp(85px, 14vw, 195px);
  background: #2a206a;
  clip-path: polygon(0 100%, 72% 35%, 79% 28%, 100% 101%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero::after {
    width: 65vw;
    height: 85px;
    /* clip-path: polygon(0 100%, 20% 78%, 100% 18%, 100% 100%); */
  }
}

.trusted-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(40px, 3vw, 82px) var(--page-padding) clamp(50px, 1vw, 91px);
  color: #2a206a;
}

.trusted-container {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.trusted-heading {
  text-align: center;
  margin-bottom: clamp(26px, 1.5vw, 54px);
}

.trusted-heading h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  font-weight: 800;
}

.trusted-logos {
  width: min(100%, 920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: clamp(17px, 0vw, 61px);
}

.trusted-logo {
  min-width: 0;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  width: 100%;
  max-width: 145px;
  max-height: 72px;
  height: auto;

  display: block;
  object-fit: contain;

  transition:
    transform 0.4s var(--ease-out),
    opacity 0.35s ease;
}

.trusted-logo:hover img {
  transform: translateY(-5px) scale(1.05);
}

@media (max-width: 900px) {
  .trusted-logos {
    width: min(700px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px 45px;
  }
}

@media (max-width: 600px) {
  .trusted-section {
    padding: 55px 20px 65px;
  }

  .trusted-heading {
    margin-bottom: 38px;
  }

  .trusted-heading h2 {
    font-size: 28px;
  }

  .trusted-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 35px;
  }

  .trusted-logo {
    height: 70px;
  }

  .trusted-logo img {
    max-width: 125px;
    max-height: 60px;
  }

  .trusted-logo:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
.stats-section {
  position: relative;
  z-index: 7;
  isolation: isolate;
  overflow: hidden;
  background: #f3f3f5;
  color: #352c76;
  padding: clamp(82px, 8vw, 132px) var(--page-padding) clamp(90px, 9vw, 145px);
}

.stats-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 81%;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.55;
}

.stats-container {
  position: relative;
  z-index: 2;
  width: min(1270px, 100%);
  margin-inline: auto;
}

.stats-decoration {
  z-index: 1;
}
@media (max-width: 768px) {
  .stats-bg-shape {
    width: 95%;
    opacity: 0.35;
  }
}

.trusted-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: clamp(60px, 6vw, 95px) var(--page-padding) clamp(65px, 7vw, 105px);

  color: #2a206a;
}

.trusted-container {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.trusted-heading {
  text-align: center;
  margin-bottom: clamp(40px, 4.5vw, 65px);
}

.trusted-heading h2 {
  margin: 0;
  color: #2a206a;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  font-weight: 800;
}

.trusted-logos {
  width: min(100%, 920px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;

  gap: clamp(30px, 4vw, 70px);
}

.trusted-logo {
  min-width: 0;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  width: 100%;
  max-width: 145px;
  max-height: 72px;
  height: auto;

  display: block;
  object-fit: contain;

  transition:
    transform 0.4s var(--ease-out),
    opacity 0.35s ease;
}

.trusted-logo:hover img {
  transform: translateY(-5px) scale(1.05);
}
.trusted-marquee {
  width: 100%;
  overflow: hidden;
  direction: ltr;
}

.trusted-track {
  display: flex;
  width: max-content;

  animation: trustedLoop 18s linear infinite;

  will-change: transform;
}

.trusted-group {
  flex-shrink: 0;

  display: flex;
  align-items: center;

  gap: clamp(35px, 5vw, 75px);

  padding-right: clamp(35px, 5vw, 75px);
}

.trusted-logo {
  flex: 0 0 clamp(130px, 13vw, 175px);

  width: clamp(130px, 13vw, 175px);
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 145px;
  max-height: 72px;

  object-fit: contain;
}

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

  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 600px) {
  .trusted-track {
    animation-duration: 14s;
  }

  .trusted-group {
    gap: 25px;
    padding-right: 25px;
  }

  .trusted-logo {
    flex-basis: 130px;
    width: 130px;
    height: 75px;
  }

  .trusted-logo img {
    max-width: 115px;
    max-height: 58px;
  }
}
.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: none;
}

.trusted-group {
  display: flex;
  align-items: center;
  gap: clamp(35px, 5vw, 75px);
}

.trusted-group[aria-hidden="true"] {
  display: none;
}

@media (max-width: 900px) {
  .trusted-marquee {
    width: 100%;
    overflow: hidden;
    direction: ltr;
  }

  .trusted-track {
    display: flex;
    width: max-content;

    animation: trustedLoop 16s linear infinite;
    will-change: transform;
  }

  .trusted-group[aria-hidden="true"] {
    display: flex;
  }

  .trusted-group {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 35px;
    padding-right: 35px;
  }

  .trusted-logo {
    flex: 0 0 150px;
    width: 150px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trusted-logo img {
    width: auto;
    max-width: 135px;
    max-height: 65px;
    object-fit: contain;
  }
}

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

  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 600px) {
  .trusted-track {
    animation-duration: 13s;
  }

  .trusted-group {
    gap: 25px;
    padding-right: 25px;
  }

  .trusted-logo {
    flex-basis: 125px;
    width: 125px;
    height: 75px;
  }

  .trusted-logo img {
    max-width: 110px;
    max-height: 55px;
  }
}

.partners-section {
  overflow: hidden;
}

.partners-container {
  width: 100%;
  max-width: none;
}

.partners-grid {
  position: relative;

  display: flex !important;
  flex-direction: column;

  width: 100vw;
  max-width: none;

  margin-inline-start: calc(50% - 50vw);

  gap: 12px;

  overflow: hidden;

  padding: 8px 0;
}

.partners-marquee-row {
  position: relative;

  width: 100%;

  overflow: hidden;

  direction: ltr;
}

.partners-marquee-track {
  display: flex;
  align-items: center;

  width: max-content;

  will-change: transform;
}

.partners-marquee-row--one .partners-marquee-track {
  animation: partnersMoveLeft var(--partners-duration, 25s) linear infinite;
}

.partners-marquee-row--two .partners-marquee-track {
  animation: partnersMoveRight var(--partners-duration, 25s) linear infinite;
}

.partners-marquee-group {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  gap: 10px;

  padding-inline-end: 10px;
  height: 135px;
}

.partners-grid .partner-card {
  flex: 0 0 clamp(145px, 12vw, 205px);

  width: clamp(145px, 12vw, 205px);

  height: clamp(88px, 7vw, 110px);

  min-width: 205px;

  aspect-ratio: auto;

  display: grid;
  place-items: center;

  padding: 15px 18px;

  border: 1px solid rgba(46, 35, 117, 0.08);

  border-radius: 9px;

  background: #fff;

  box-shadow: 0 5px 20px rgba(30, 23, 91, 0.025);

  opacity: 1 !important;

  transform: none;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  cursor: default;
}

.partners-grid .partner-card img {
  width: min(100%, 155px);

  max-width: 155px;
  max-height: 62px;

  object-fit: contain;

  opacity: 1;

  filter: none;

  transform: none;

  transition: transform 0.35s ease;
}

.partners-grid .partner-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 171, 175, 0.35);
  /* box-shadow:
    0 14px 30px rgba(31, 24, 91, 0.08); */
}

.partners-grid .partner-card:hover img {
  transform: scale(1.06);
}

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

  to {
    transform: translate3d(calc(var(--partners-distance) * -1), 0, 0);
  }
}

@keyframes partnersMoveRight {
  from {
    transform: translate3d(calc(var(--partners-distance) * -1), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 900px) {
  .partners-grid {
    gap: 10px;
  }

  .partners-marquee-group {
    gap: 9px;
    padding-inline-end: 9px;
  }

  .partners-grid .partner-card {
    flex-basis: 155px;

    width: 155px;
    height: 94px;

    padding: 14px;
  }

  .partners-grid .partner-card img {
    max-width: 125px;
    max-height: 54px;
  }
}

@media (max-width: 580px) {
  .partners-section {
    padding-inline: 0;
  }

  .partners-heading {
    padding-inline: 20px;
  }

  .partners-grid {
    gap: 8px;
  }

  .partners-marquee-group {
    gap: 8px;
    padding-inline-end: 8px;
  }

  .partners-grid .partner-card {
    flex-basis: 130px;

    width: 130px;
    height: 80px;

    padding: 11px;

    border-radius: 8px;
  }

  .partners-grid .partner-card img {
    max-width: 105px;
    max-height: 46px;
  }

  .success-stories-shape {
    top: 188px;
  }
  .success-stories-heading h2 {
    font-size: calc(45 / 20 * 1rem);
  }
  .success-stack.is-enhanced .success-story-card {
    height: 58%;
  }
  .world-heading h2 {
    font-size: calc(50 / 23 * 1rem);
  }
  .world-heading p {
    font-size: 16px;
  }
}
.partner-card::before,
.partner-card::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    width 0.45s var(--ease-out, ease),
    height 0.45s var(--ease-out, ease);
}

.partner-card::before {
  top: 8px;
  border-top: 2px solid var(--teal, #00abaf);
  inset-inline-start: 8px;
  border-inline-start: 2px solid var(--teal, #00abaf);
}

.partner-card::after {
  bottom: 8px;
  border-bottom: 2px solid var(--teal, #00abaf);
  inset-inline-end: 8px;
  border-inline-end: 2px solid var(--teal, #00abaf);
}

.solutions-column {
  display: contents;
}

.solutions-column > .solution-card {
  order: var(--solution-order);
}

@media (min-width: 1181px) {
  .solutions-column {
    display: grid;

    grid-template-rows:
      minmax(0, 1fr)
      minmax(0, 1fr);

    gap: clamp(16px, 1.7vw, 24px);

    height: clamp(500px, 42vw, 590px);

    min-width: 0;

    transition:
      grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      gap 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .solutions-column .solution-card {
    min-height: 0 !important;
    height: 100%;
    width: 100%;

    overflow: hidden;

    transition:
      opacity 0.45s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.45s ease,
      box-shadow 0.45s ease;
  }

  .solutions-column:has(.solution-card:first-child:hover) {
    grid-template-rows:
      minmax(0, 1fr)
      minmax(0, 0fr);

    gap: 0;
  }

  .solutions-column:has(.solution-card:first-child:hover)
    .solution-card:last-child {
    opacity: 0;
    transform: scale(0.94);
    pointer-events: none;
  }

  .solutions-column:has(.solution-card:last-child:hover) {
    grid-template-rows:
      minmax(0, 0fr)
      minmax(0, 1fr);

    gap: 0;
  }

  .solutions-column:has(.solution-card:last-child:hover)
    .solution-card:first-child {
    opacity: 0;
    transform: scale(0.94);
    pointer-events: none;
  }

  .solutions-column .solution-card:hover {
    z-index: 5;

    transform: scale(1);

    box-shadow: 0 28px 65px rgba(34, 27, 102, 0.22);
  }
  .solutions-column .solution-card__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.5s ease;
  }

  .solutions-column .solution-card:hover .solution-card__image {
    transform: scale(1.04);
  }
}
.client-logo {
  display: flex;
  justify-content: center;
}

.project-gallery-swiper--single .swiper-wrapper {
  width: 100% !important;
}

.project-gallery-swiper--single .swiper-slide {
  width: 100% !important;
}

.project-gallery-swiper--single .project-gallery-slide {
  width: 100%;

  height: clamp(380px, 42vw, 560px);
}

.project-gallery-swiper--single .project-gallery-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.project-gallery-swiper--single .project-gallery-pagination {
  display: none;
}

.project-gallery-swiper--double .swiper-wrapper {
  width: 100%;
}

.project-gallery-swiper--double .swiper-slide {
  height: auto;
}

.project-gallery-swiper--double .project-gallery-slide {
  width: 100%;

  height: clamp(340px, 32vw, 460px);
}

.project-gallery-swiper--double .project-gallery-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.project-gallery-swiper--double .project-gallery-pagination {
  display: none;
}

@media (max-width: 619px) {
  .project-gallery-swiper--single .project-gallery-slide {
    height: 320px;
  }

  .project-gallery-swiper--double .project-gallery-slide {
    height: 300px;
  }

  .project-gallery-swiper--double .project-gallery-pagination {
    display: block;
  }
}
