:root {
  --navy: #058A3B;
  --navy-2: #08085c;
  --electric: #69C74A;
  --electric-2: #078B3E;
  --ink: #0b1332;
  --muted: #aeb5d1;
  --white: #ffffff;
  --page: #f7f8fc;
  --container: 1400px;
  --shadow: 0 25px 70px rgba(0, 10, 72, 0.25);
  --primary-color: #058A3B;
  --button-color: #69C74A;
  --primary-deep: #06043e;
  --heading-color: #06183d;
  --paragraph-color: #59657e;
  --background-color: #e9eefc;
  --text-soft: rgba(255, 255, 255, 0.76);
  --surface: #f4f5f7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.top-strip {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.top-strip__cta,
.top-strip__info {
  display: flex;
  align-items: center;
}

.top-strip__cta {
  position: relative;
  gap: 9px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  background: var(--electric);
  clip-path: polygon(0 0, 94% 0, 90% 100%, 0 100%);
}

.shield {
  width: 18px;
  height: 18px;
}

.shield svg,
.info-item svg,
.icon-btn svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip__cta .arrow {
  font-size: 24px;
  line-height: 1;
}

.top-strip__info {
  justify-content: flex-end;
  gap: 18px;
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.info-item svg {
  width: 16px;
  height: 16px;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  font-size: 11px;
  font-weight: 800;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.brand-mark,
.mini-logo {
  display: inline-block;
}
.mini-logo {
  width: 140px;
}

.brand-mark span,
.mini-logo i {
  position: absolute;
  width: 14px;
  height: 19px;
  border: 3px solid var(--electric);
  border-radius: 4px;
  transform: rotate(30deg) skewY(-8deg);
  background: transparent;
}

.brand-mark span:nth-child(1),
.mini-logo i:nth-child(1) {
  left: 1px;
  top: 1px;
}

.brand-mark span:nth-child(2),
.mini-logo i:nth-child(2) {
  right: 1px;
  top: 1px;
}

.brand-mark span:nth-child(3),
.mini-logo i:nth-child(3) {
  left: 7px;
  bottom: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 31px;
  white-space: nowrap;
}

.nav-links a span {
  margin-left: 4px;
  font-size: 12px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--electric);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn,
.menu-btn {
  border: 0;
  cursor: pointer;
}

.icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #eef2ff;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.connect-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--electric));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.connect-btn {
    min-height: 35px;
    padding: 1px 8px 1px 22px;
}

.connect-btn span,
.primary-btn span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--electric);
  background: #fff;
  border-radius: 50%;
}

.connect-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(47, 82, 255, 0.32);
}

.menu-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 7px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.menu-btn span:last-child {
  width: 17px;
  justify-self: end;
}

.mobile-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  /* min-height: 725px; */
  overflow: hidden;
  background:
    radial-gradient(
      circle at 77% 23%,
      rgba(50, 71, 255, 0.27),
      transparent 27%
    ),
    linear-gradient(110deg, #030338 0%, #05044a 52%, #08108c 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      123deg,
      transparent 0 17%,
      rgba(27, 59, 210, 0.18) 17.3% 17.8%,
      transparent 18.1% 37%,
      rgba(27, 59, 210, 0.23) 37.3% 37.8%,
      transparent 38.1% 100%
    ),
    linear-gradient(
      123deg,
      transparent 0 33%,
      rgba(27, 59, 210, 0.14) 33.3% 33.8%,
      transparent 34.1% 52%,
      rgba(27, 59, 210, 0.17) 52.3% 52.8%,
      transparent 53.1% 100%
    );
  opacity: 0.95;
}

.hero-lines {
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  z-index: -2;
  opacity: 0.8;
  background: repeating-linear-gradient(
    127deg,
    transparent 0 110px,
    rgba(22, 62, 218, 0.26) 112px 116px,
    transparent 118px 185px
  );
}

.hero-grid {
  min-height: 725px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
  padding-block: 55px 43px;
}

.hero-copy {
  padding-left: 116px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--electric);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 30px rgba(27, 72, 255, 0.26);
}

.eyebrow span {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
}

h1 {
  margin: 23px 0 20px;
  max-width: 700px;
  font-size: clamp(54px, 4.35vw, 78px);
  line-height: 1.08;
  letter-spacing: -3.5px;
  font-weight: 600;
}

h1 span {
  color: var(--electric);
}

.hero-copy > p {
  max-width: 635px;
  margin: 0;
  color: #b8bed5;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 38px;
}

.primary-btn {
  min-height: 48px;
  padding: 8px 9px 8px 22px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.play {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 0 rgba(47, 82, 255, 0.6);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 13px rgba(47, 82, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 82, 255, 0);
  }
}

.hero-visual {
  position: relative;
  min-height: 625px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


.hero-slider .image-card {
    width: min(100%);
    margin-left: auto; /* Align right */
    overflow: hidden;
    border-radius: 20px;
}

.hero-slider .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) contrast(0.98) brightness(1.07) hue-rotate(2deg);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
    height: 100%;
}
.hero-slider .owl-nav {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);
    pointer-events: none; /* Allows only the buttons to be clickable */
    z-index: 10;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    pointer-events: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}

.hero-slider .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.hero-slider .owl-item {
    display: flex;
    justify-content: flex-end; /* Or center, depending on your design */
}

/* .hero-visual .owl-stage-outer {
  overflow: hidden;
}

.hero-visual .owl-stage {
  display: flex;
  align-items: center;
}

.hero-visual .owl-item {
  display: flex;
  justify-content: flex-end;
} */


@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.client-card {
  position: absolute;
  left: 38px;
  bottom: 21px;
  min-width: 400px;
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 20px 33px 20px 24px;
  border-radius: 12px;
  background: #030345;
  box-shadow: 0 20px 50px rgba(0, 0, 60, 0.35);
}

.avatars {
  display: flex;
}

.avatar {
  width: 48px;
  height: 48px;
  margin-left: -10px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #ffcf6c, #9963eb);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.a2 {
  background: linear-gradient(145deg, #89d7bf, #3457c9);
}

.avatar.a3 {
  background: linear-gradient(145deg, #ff9bb5, #c0375e);
}

.avatar.plus {
  background: var(--electric);
  font-size: 24px;
  font-weight: 500;
}

.client-card p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.scroll-indicator {
  position: absolute;
  left: 30px;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: -13px;
  bottom: -12px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
}

.scroll-indicator span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-indicator b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--electric);
}

.floating-tools {
  position: absolute;
  top: 260px;
  right: 0;
  display: grid;
  gap: 3px;
}

.floating-tools button {
  position: relative;
  width: 50px;
  height: 47px;
  border: 0;
  border-radius: 17px 0 0 17px;
  color: #fff;
  background: #284cf0;
  cursor: pointer;
}

.floating-tools button:last-child {
  background: #03034c;
}

.floating-tools small {
  position: absolute;
  top: -6px;
  right: 2px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--electric);
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}

.star {
  position: absolute;
  width: 52px;
  height: 52px;
  opacity: 0.18;
}

.star::before,
.star::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7689ff, transparent);
}

.star::after {
  transform: rotate(90deg);
}

.star-one {
  top: 78px;
  left: 48%;
}

.preview-section {
  padding: 100px 0;
  background: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--electric);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 13px;
}

.preview-section h2 {
  margin: 0;
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.1;
  letter-spacing: -2.8px;
}

.preview-section .preview-grid > p {
  margin: 0;
  color: #5c6379;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 1300px) {
  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  .hero-copy {
    padding-left: 68px;
  }

  .hero-grid {
    gap: 45px;
  }

  .nav-links {
    gap: 22px;
  }

  .top-strip__info {
    gap: 12px;
  }

}

@media (max-width: 1120px) {
  .top-strip {
    grid-template-columns: 1fr;
  }

.info-item:first-child {
  display: none;
}
  .top-strip__cta {
    min-height: 42px;
    justify-content: center;
    padding-inline: 20px;
    clip-path: none;
  }
    .divider {
    display: none;
  }

  .top-strip__info {
    display: flex;
    flex-direction: column;
            align-items: center;
        justify-content: center;
  }


  .mobile-toggle {
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 9px;
    display: grid;
    gap: 5px;
    align-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-toggle span {
    height: 2px;
    background: var(--ink);
  }

  .nav-links.open {
    position: absolute;
    top: 138px;
    left: 22px;
    right: 22px;
    display: grid;
    gap: 0;
    padding: 14px 22px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(4, 13, 62, 0.16);
  }

  .nav-links.open a {
    padding: 13px 0;
    border-bottom: 1px solid #eef0f7;
  }

  .nav-links.open a:last-child {
    border-bottom: 0;
  }

  .nav-links.open a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 75px;
  }

  .hero-copy {
    max-width: 790px;
    padding-left: 35px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .image-card {
    width: calc(100% - 70px);
    justify-self: center;
  }

  .orbit-badge {
    right: 14px;
  }

  .client-card {
    left: 80px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 720px) {

  .container {
    width: calc(100% - 32px);
  }
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    /* Bottom shadow only */
    box-shadow: 0 12px 24px rgba(5, 138, 59, 0.6);
}
main {
    margin-top: 228px;
}
  .top-strip__cta {
    /* font-size: 12px; */
    display: none;
  }


  .navbar {
    min-height: auto;
    padding: 20px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 18px;
  }

  .brand {
    justify-content: center;
  }
  .brand .mini-logo{
    width: 40px;
  }

  .nav-links {
    margin-left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px 24px;
  }

  .nav-links a {
    padding: 0;
  }

  .nav-links a::after {
    bottom: -6px;
  }

  .nav-actions {
    display: block;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 30px 80px;
    gap: 0;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -2.4px;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .image-card {
    width: 100%;
    aspect-ratio: 1 / 0.88;
  }



  .client-card {
    left: 14px;
    right: 14px;
    bottom: -32px;
    min-width: 0;
    min-height: 88px;
    gap: 14px;
    padding: 15px;
  }

  .avatar {
    width: 38px;
    height: 38px;
    border-width: 2px;
    font-size: 12px;
  }

  .client-card p {
    font-size: 13px;
  }

  .floating-tools {
    display: none;
  }

  .preview-section {
    padding: 80px 0;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* expertise section */
.expertise-section {
  position: relative;
  min-height: 610px;
  padding: 55px 24px 68px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.95),
      transparent 36%
    ),
    #f3f4f6;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid #c9d3ff;
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  background: rgba(255, 255, 255, 0.5);
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

.section-heading h2 {
  margin-top: 22px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  color: var(--primary-color);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 284px;
  padding: 40px 38px 35px;
  border-radius: 22px;
  background: linear-gradient(145deg, #3155f5 0%, #3150ef 100%);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(25, 56, 190, 0.08);
  isolation: isolate;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  border-bottom-left-radius: 28px;
  background: var(--surface);
  z-index: -1;
}

.card-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-deep);
  transform: translate(9px, -1px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  z-index: 3;
}

.card-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-arrow:hover {
  transform: translate(9px, -1px);
  background: #11105a;
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--white);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-copy h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.card-copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 64px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 32, 89, 0.14);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--heading);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .expertise-section {
    padding: 44px 18px 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 255px;
    padding: 34px 28px 30px;
  }

  .card-copy h3 {
    font-size: 22px;
  }

  .card-copy p {
    font-size: 15px;
  }

  .card-copy p br {
    display: none;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}
/* about section */
.about-growth-section,
.about-growth-section * {
  box-sizing: border-box;
}

.about-growth-section {
  --primary: #2f50ff;
  --dark: #07173b;
  --text: #34425f;
  --background: #f5f6f8;

  width: 100%;
  padding: 15px 20px;
  overflow: hidden;
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

.about-growth-container {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 550px) minmax(480px, 1fr);
  align-items: center;
  gap: 75px;
}

/* Image area */

.about-growth-image-wrap {
  position: relative;
  min-height: 610px;
}

.about-growth-image-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, #1261ed, #234eff);
  transform: 0;
}

.about-growth-image {
  position: absolute;
  inset: 0 0 0 10px;
  width: calc(100% - 20px);
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
  box-shadow: 0 18px 35px rgba(4, 31, 85, 0.08);
}

/* Content area */

.about-growth-content {
  min-width: 0;
}

.about-growth-label {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 23px;
  padding: 5px 12px;
  border: 1px solid rgba(47, 80, 255, 0.25);
  border-radius: 30px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-growth-label span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-color);
}

.about-growth-content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -2.3px;
}

.about-growth-description {
  max-width: 720px;
  /* margin: 30px 0 24px; */
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.about-growth-bottom {
  display: grid;
  grid-template-columns: minmax(310px, 1fr);
  align-items: stretch;
  gap: 35px;
}

/* Feature list */

.about-growth-details {
  padding-top: 2px;
}

.about-growth-list {
  display: grid;
  gap: 15px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.about-growth-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.about-check {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
}

/* Button */

.about-growth-button {
  width: max-content;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 7px 9px 7px 23px;
  border-radius: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #111bc4, #69C74A);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-growth-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(47, 80, 255, 0.28);
}

.about-button-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #122563;
  background: #ffffff;
  font-size: 20px;
  line-height: 1;
}

/* Experience box */

.about-experience {
  position: relative;
  min-height: 210px;
  padding: 5px 0 0 46px;
  border-left: 1px dashed #cfd3dc;
}

.about-experience-number {
  display: flex;
  align-items: flex-start;
  color: var(--primary-color);
  font-size: clamp(94px, 8vw, 132px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -8px;
}

.about-experience-number sup {
  position: relative;
  top: 0;
  margin-left: 8px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.about-experience p {
  margin: 32px 0 0 3px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.5;
}

.about-arrow {
  position: absolute;
  right: -1px;
  bottom: 5px;
  width: 80px;
  height: 80px;
  overflow: visible;
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */

@media (max-width: 1100px) {
  .about-growth-container {
    grid-template-columns: minmax(360px, 480px) 1fr;
    gap: 45px;
  }

  .about-growth-image-wrap {
    min-height: 560px;
  }

  .about-growth-bottom {
    grid-template-columns: 1fr;
  }

  .about-experience {
    min-height: 175px;
    padding: 25px 0 0;
    border-top: 1px dashed #cfd3dc;
    border-left: 0;
  }

  .about-experience-number {
    font-size: 100px;
  }

  .about-experience p {
    margin-top: 22px;
  }

  .about-arrow {
    right: auto;
    left: 180px;
    bottom: 8px;
  }
}

@media (max-width: 850px) {

  .about-growth-section {
    /* padding: 55px 20px; */
  }

  .about-growth-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-growth-image-wrap {
    width: min(580px, 100%);
    min-height: 570px;
    margin: 0 auto;
  }

  .about-growth-content {
    width: min(680px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .about-growth-section {
    /* padding: 40px 15px; */
  }

  .about-growth-image-wrap {
    min-height: 440px;
  }

  .about-growth-image {
    inset: 0;
    width: 100%;
  }

  .about-growth-image-bg {
    left: -7px;
    right: 15px;
    top: 22px;
    bottom: -7px;
  }

  .about-growth-content h2 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.5px;
  }

  .about-growth-content h2 br {
    display: none;
  }

  .about-growth-description {
    margin-top: 23px;
    font-size: 16px;
  }

  .about-growth-list li {
    align-items: flex-start;
    font-size: 16px;
  }

  .about-growth-bottom {
    gap: 25px;
  }

  .about-growth-list {
    margin-bottom: 30px;
  }

  .about-experience-number {
    font-size: 88px;
    letter-spacing: -5px;
  }

  .about-experience-number sup {
    font-size: 28px;
  }

  .about-arrow {
    left: 155px;
    width: 70px;
    height: 70px;
  }
}
/* clients section */
.client-logo-slider,
.client-logo-slider * {
  box-sizing: border-box;
}

.client-logo-slider {
  --card-width: 285px;
  --card-height: 120px;
  --card-gap: 30px;
  --slider-speed: 28s;

  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  background: #f5f6f8;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.client-logo-slider.is-dragging {
  cursor: grabbing;
}
.client-logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.client-logo-group {
  display: flex;
  flex-shrink: 0;
  gap: var(--card-gap);
  padding-right: var(--card-gap);
}

.client-logo-card {
  width: var(--card-width);
  height: var(--card-height);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 24px 35px;
  overflow: hidden;
  border-radius: 8px;
  background: #3150f5;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.client-logo-card img {
  width: 100%;
  max-width: 170px;
  max-height: 68px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.client-logo-card:hover {
  background: #1736da;
  box-shadow: 0 14px 30px rgba(40, 71, 235, 0.2);
  transform: translateY(-5px);
}

.client-logo-card:hover img {
  transform: scale(1.06);
}

.client-logo-slider:hover .client-logo-track {
  animation-play-state: paused;
}

@keyframes clientLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .client-logo-slider {
    --card-width: 240px;
    --card-height: 105px;
    --card-gap: 22px;
    --slider-speed: 24s;

    padding: 60px 0;
  }

  .client-logo-card {
    padding: 20px 28px;
  }

  .client-logo-card img {
    max-width: 150px;
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .client-logo-slider {
    --card-width: 205px;
    --card-height: 90px;
    --card-gap: 16px;
    --slider-speed: 20s;

    padding: 45px 0;
  }

  .client-logo-card {
    padding: 16px 24px;
    border-radius: 7px;
  }

  .client-logo-card img {
    max-width: 130px;
    max-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation-play-state: paused;
  }
}
/* solutions section */
.solutions-section,
.solutions-section * {
  box-sizing: border-box;
}

.solutions-section {
  position: relative;
  width: 100%;
  padding: 52px 20px;
  overflow: hidden;
  background: var(--background-color);
  font-family: Arial, Helvetica, sans-serif;
}

.solutions-container {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Intro section */

.solutions-intro {
  padding: 36px 0 20px;
}

.solutions-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 5px 10px;
  border: 1px solid rgba(49, 80, 245, 0.28);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.solutions-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
}

.solutions-intro h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(31px, 3vw, 39px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.solutions-intro h2 span {
  color: var(--primary-color);
}

.solutions-main-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  padding: 7px 8px 7px 20px;
  border-radius: 50px;
  color: #ffffff;
  background: var(--button-color);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.solutions-main-button span {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--button-color);
  background: #ffffff;
  font-size: 16px;
}

.solutions-main-button:hover {
  background: #0b219f;
  box-shadow: 0 12px 25px rgba(20, 43, 201, 0.2);
  transform: translateY(-3px);
}

/* Service cards */

.solution-card {
  min-height: 317px;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 30px;
  border: 1px solid rgba(15, 35, 83, 0.03);
  border-radius: 10px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.solution-card:hover {
  box-shadow: 0 18px 38px rgba(29, 49, 105, 0.1);
  transform: translateY(-7px);
}

.solution-icon {
  width: 64px;
  height: 64px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary-color);
}

.solution-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  margin: 0 0 12px;
  color: var(--heading-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.35px;
}

.solution-card p {
  margin: 0 0 24px;
  color: var(--paragraph-color);
  font-size: 14px;
  line-height: 1.42;
}

.solution-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.solution-link span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary-color);
  font-size: 16px;
  transition: transform 0.25s ease;
}

.solution-link:hover span {
  transform: translateX(4px);
}

/* Background decorative waves */

.solutions-wave {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 210px;
  height: 420px;
  color: rgba(70, 113, 255, 0.14);
  pointer-events: none;
}

.solutions-wave-left {
  left: -35px;
}

.solutions-wave-right {
  right: -35px;
  transform: scaleX(-1);
}

/* Tablet */

@media (max-width: 991px) {
  .solutions-container {
    width: min(730px, 100%);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-intro {
    min-height: 300px;
    padding-right: 25px;
  }

  .solution-card {
    min-height: 300px;
  }
}

/* Mobile */

@media (max-width: 650px) {
  .solutions-section {
    padding: 45px 15px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-intro {
    min-height: auto;
    padding: 10px 0 30px;
  }

  .solutions-intro h2 {
    font-size: 35px;
  }

  .solutions-main-button {
    margin-top: 28px;
  }

  .solution-card {
    min-height: 280px;
    padding: 30px 24px 26px;
  }

  .solution-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .solution-icon svg {
    width: 34px;
    height: 34px;
  }

  .solution-card h3 {
    font-size: 20px;
  }

  .solutions-wave {
    width: 150px;
    opacity: 0.65;
  }
}
/* project showcase */
.project-showcase,
.project-showcase * {
  box-sizing: border-box;
}

.project-showcase {
  --primary: #3151f5;
  --heading: #07173b;
  --text: #5b6680;
  --background: #f5f6f8;
  --slide-gap: 28px;

  width: 100%;
  padding: 25px 15px 48px;
  overflow: hidden;
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */

.project-showcase__header {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.project-showcase__label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  padding: 5px 11px;
  border: 1px solid rgba(49, 81, 245, 0.25);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.project-showcase__label span {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-color);
}

.project-showcase__header h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(38px, 4vw, 51px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
}

.project-showcase__header h2 strong {
  color: var(--primary-color);
  font-weight: inherit;
}

/* Slider */

.project-slider {
  width: 100%;
  margin: 0 auto;
}

.project-slider__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  outline-offset: 5px;
}

.project-slider__viewport.is-dragging {
  cursor: grabbing;
}

.project-slider__track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--slide-gap);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.project-slide {
  position: relative;
  flex: 0 0 calc((100% - 84px) / 3);
  min-width: 0;
  padding-bottom: 74px;
}

.project-slide img {
  width: 100%;
  height: 445px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Image overlay */

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0 0 74px;
  z-index: 1;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(3, 19, 56, 0.02) 25%,
    rgba(4, 17, 69, 0.65) 100%
  );
  pointer-events: none;
}

/* White information box */

.project-slide__content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: calc(100% - 65px);
  min-height: 136px;
  padding: 27px 30px 24px;
  border-radius: 12px;
  background: #ffffff;
}

.project-slide__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
}

.project-slide__category span {
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: #6d7891;
}

.project-slide h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.project-slide h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.project-slide h3 a:hover {
  color: var(--primary-color);
}

/* Pagination */

.project-slider__pagination {
  min-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 42px;
}

.project-slider__dot {
  width: 10px;
  height: 7px;
  display: block;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 50px;
  background: #d6defb;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.2s ease;
}

.project-slider__dot:hover {
  background: #9fb0f8;
  transform: scale(1.15);
}

.project-slider__dot.is-active {
  width: 65px;
  background: var(--primary-color);
  transform: none;
}

/* Large tablet */

@media (max-width: 1200px) {
  .project-showcase {
    --slide-gap: 24px;
  }

  .project-slide {
    flex-basis: calc((100% - 48px) / 2);
  }

  .project-slide img {
    height: 410px;
  }
}

/* Tablet */

@media (max-width: 820px) {
  .project-showcase {
    padding-top: 55px;
  }

  .project-showcase__header {
    margin-bottom: 38px;
  }

  .project-showcase__header h2 {
    font-size: 39px;
    letter-spacing: -1.4px;
  }

  .project-slide {
    flex-basis: calc((100% - 24px) / 2);
  }

  .project-slide img {
    height: 390px;
  }

  .project-slide__content {
    width: calc(100% - 38px);
    padding: 24px;
  }
}

/* Mobile */

@media (max-width: 560px) {
  .project-showcase {
    --slide-gap: 16px;

    padding: 42px 15px 38px;
  }

  .project-showcase__header {
    margin-bottom: 30px;
  }

  .project-showcase__label {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .project-showcase__header h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .project-showcase__header h2 br {
    display: none;
  }

  .project-slide {
    flex-basis: 100%;
    padding-bottom: 67px;
  }

  .project-slide img {
    height: 370px;
  }

  .project-slide::after {
    bottom: 67px;
  }

  .project-slide__content {
    width: calc(100% - 25px);
    min-height: 125px;
    padding: 22px;
  }

  .project-slide__category {
    font-size: 14px;
  }

  .project-slide h3 {
    font-size: 22px;
  }

  .project-slider__pagination {
    margin-top: 30px;
  }

  .project-slider__dot.is-active {
    width: 45px;
  }
}
/* ================================
   Process section
================================ */

.process-section,
.process-section * {
  box-sizing: border-box;
}

.process-section {
  --process-primary: var(--primary-color, #3150f5);
  --process-button: var(--button-color, #142bc9);
  --process-dark: var(--heading-color, #06183d);
  --process-text: var(--paragraph-color, #59657e);
  --process-background: var(--background-color, #e9eefc);
  --process-card: var(--white, #ffffff);

  position: relative;
  width: 100%;
  margin-top: 100px;
  padding: 0 20px 90px;
  background: var(--process-background);
  font-family: Arial, Helvetica, sans-serif;

  /*
   * Must remain visible so the overlapping
   * counter box is not clipped.
   */
  overflow: visible;
}

.process-container {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin: 0 auto;
}

/* ================================
   Counter section
================================ */

.process-stats {
  position: relative;
  width: min(820px, 100%);
  min-height: 145px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin: 0 auto;
  padding: 28px 30px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(
    120deg,
    rgba(18, 25, 181, 0.99),
    var(--process-primary)
  );
  box-shadow: 0 20px 48px rgba(23, 45, 151, 0.18);

  opacity: 0;
  transform: translateY(calc(-50% - 35px));
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Counter card appears when section enters viewport */

.process-section.is-process-active .process-stats {
  opacity: 1;
  transform: translateY(-50%);
}

/* Decorative shapes inside counter box */

.process-stats::before,
.process-stats::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 43% 57% 47% 53%;
  pointer-events: none;
}

.process-stats::before {
  top: -320px;
  left: -95px;
  transform: rotate(32deg);
}

.process-stats::after {
  top: -345px;
  right: -185px;
  transform: rotate(-20deg);
}

.process-stat {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 20px;
}

.process-stat + .process-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-stat-number {
  display: flex;
  align-items: flex-start;
  color: var(--white, #ffffff);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
}

.process-stat-number span {
  color: var(--white, #ffffff);
}

.process-stat-number small {
  position: relative;
  top: 5px;
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.process-stat p {
  margin: 10px 0 0;
  color: var(--white, #ffffff);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

/* ================================
   Main process layout
================================ */

.process-layout {
  display: grid;
  grid-template-columns:
    minmax(350px, 480px)
    minmax(400px, 1fr);
  align-items: start;
  gap: 80px;

  /*
   * Compensates for the counter's
   * translateY overlap.
   */
  margin-top: -28px;
}

/* ================================
   Left content
================================ */

.process-intro {
  min-width: 0;
}

.process-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(49, 81, 245, 0.28);
  border-radius: 30px;
  color: var(--process-primary);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.process-label > span {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--process-primary);
}

.process-intro h2 {
  margin: 0;
  color: var(--process-dark);
  font-size: clamp(35px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.process-intro h2 strong {
  color: var(--process-primary);
  font-weight: inherit;
}

.process-description {
  max-width: 475px;
  margin: 22px 0 34px;
  color: var(--process-text);
  font-size: 14px;
  line-height: 1.55;
}

.process-image-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(6, 24, 61, 0.08);
}

.process-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 20, 63, 0.28),
    rgba(4, 20, 63, 0.01)
  );
  pointer-events: none;
}

.process-image-wrap:hover .process-image {
  transform: scale(1.045);
}

/* ================================
   Timeline
================================ */

.process-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  padding-left: 38px;
}

/* Full timeline line */

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: rgba(49, 81, 245, 0.22);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Highlighted timeline line */

.process-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 34%;
  background: var(--process-primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.process-timeline.is-timeline-visible::before,
.process-timeline.is-timeline-visible::after {
  transform: scaleY(1);
}

.process-step {
  position: relative;
  min-width: 0;
}

.process-step-number {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -70px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--process-background);
  border-radius: 50%;
  color: var(--process-dark);
  background: #f8faff;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(-50%);
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-step:first-child .process-step-number {
  color: var(--white, #ffffff);
  background: var(--process-primary);
  box-shadow: 0 8px 22px rgba(49, 81, 245, 0.3);
}

.process-step-card {
  min-height: 172px;
  padding: 28px 30px 24px;
  border-radius: 8px;
  background: var(--process-card);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.process-step-card:hover {
  box-shadow: 0 16px 36px rgba(25, 42, 91, 0.1);
  transform: translateY(-5px);
}

.process-step-card h3 {
  margin: 0 0 13px;
  color: var(--process-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.process-step-card p {
  margin: 0 0 17px;
  color: var(--process-text);
  font-size: 12px;
  line-height: 1.55;
}

.process-step-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--process-dark);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.process-step-link > span {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white, #ffffff);
  background: var(--process-primary);
  font-size: 13px;
  transition: transform 0.25s ease;
}

.process-step-link:hover > span {
  transform: translateX(4px);
}

/* ================================
   Background waves
================================ */

.process-wave {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 190px;
  height: 370px;
  color: rgba(63, 105, 245, 0.14);
  pointer-events: none;
}

.process-wave-left {
  left: 0;
}

.process-wave-right {
  right: 0;
  transform: scaleX(-1);
}

/* ================================
   Scroll reveal animations
================================ */

.process-section [data-process-reveal] {
  opacity: 0;
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-section [data-process-reveal="left"] {
  transform: translateX(-55px);
}

.process-section [data-process-reveal="right"] {
  transform: translateX(55px);
}

.process-section [data-process-reveal].is-process-visible {
  opacity: 1;
  transform: translateX(0);
}

.process-step:nth-child(2) {
  transition-delay: 0.14s;
}

.process-step:nth-child(3) {
  transition-delay: 0.28s;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1050px) {
  .process-layout {
    grid-template-columns:
      minmax(310px, 420px)
      minmax(360px, 1fr);
    gap: 58px;
  }

  .process-stats {
    width: min(760px, 100%);
  }
}

@media (max-width: 850px) {
  .process-section {
    margin-top: 120px;
    padding-right: 20px;
    padding-bottom: 75px;
    padding-left: 20px;
  }

  .process-stats {
    width: min(640px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 25px;
    padding: 28px;
    transform: translateY(calc(-38% - 35px));
  }

  .process-section.is-process-active .process-stats {
    transform: translateY(-38%);
  }

  .process-stat {
    padding: 5px 25px;
  }

  .process-stat:nth-child(3) {
    border-left: 0;
  }

  .process-stat:nth-child(3),
  .process-stat:nth-child(4) {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: -35px;
  }

  .process-intro {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .process-timeline {
    width: min(620px, calc(100% - 22px));
    margin-left: auto;
  }

  .process-image-wrap {
    height: 390px;
  }
}

@media (max-width: 560px) {
  .process-section {
    margin-top: 130px;
    padding: 0 15px 60px;
  }

  .process-stats {
    width: 100%;
    min-height: 230px;
    padding: 22px 12px;
    transform: translateY(calc(-30% - 30px));
  }

  .process-section.is-process-active .process-stats {
    transform: translateY(-30%);
  }

  .process-stat {
    padding: 5px 14px;
  }

  .process-stat-number {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .process-stat-number small {
    top: 4px;
    margin-left: 4px;
    font-size: 17px;
  }

  .process-stat p {
    font-size: 9px;
  }

  .process-layout {
    margin-top: -30px;
  }

  .process-intro h2 {
    font-size: 37px;
    letter-spacing: -1.2px;
  }

  .process-description {
    font-size: 13px;
  }

  .process-image-wrap {
    height: 310px;
  }

  .process-timeline {
    width: calc(100% - 8px);
    padding-left: 29px;
  }

  .process-step-number {
    left: -56px;
    width: 46px;
    height: 46px;
    border-width: 6px;
    font-size: 11px;
  }

  .process-step-card {
    min-height: 0;
    padding: 24px 21px;
  }

  .process-step-card h3 {
    font-size: 16px;
  }

  .process-wave {
    width: 130px;
    opacity: 0.65;
  }
}

/* Reduced motion accessibility */

@media (prefers-reduced-motion: reduce) {
  .process-stats,
  .process-section [data-process-reveal],
  .process-timeline::before,
  .process-timeline::after,
  .process-image {
    opacity: 1;
    transition: none;
  }

  .process-section [data-process-reveal="left"],
  .process-section [data-process-reveal="right"] {
    transform: none;
  }
}
/* ================================
   Experts section
================================ */

.experts-section,
.experts-section * {
  box-sizing: border-box;
}

.experts-section {
  --experts-primary: var(--primary-color, #3150f5);
  --experts-button: var(--button-color, #142bc9);
  --experts-heading: var(--heading-color, #06183d);
  --experts-background: var(--surface, #f4f5f7);
  --experts-white: var(--white, #ffffff);

  width: 100%;
  padding: 65px 20px 90px;
  overflow: hidden;
  background: var(--experts-background);
  font-family: Arial, Helvetica, sans-serif;
}

.experts-container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

/* ================================
   Section heading
================================ */

.experts-heading {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.experts-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  padding: 5px 11px;
  border: 1px solid rgba(49, 80, 245, 0.25);
  border-radius: 50px;
  color: var(--experts-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.experts-label-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--experts-primary);
}

.experts-heading h2 {
  margin: 0;
  color: var(--experts-heading);
  font-size: clamp(38px, 4.2vw, 53px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
}

.experts-heading h2 span {
  color: var(--experts-primary);
}

/* ================================
   Experts grid
================================ */

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

/* ================================
   Expert card
================================ */

.expert-card {
  position: relative;
  min-width: 0;
  padding: 15px 15px 0;
  border-radius: 15px;
  background: var(--experts-white);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.expert-card:hover {
  box-shadow: 0 22px 45px rgba(13, 31, 78, 0.1);
  transform: translateY(-8px);
}

.expert-image-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7eaf2;
}

.expert-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 17, 62, 0.13), transparent 45%);
  pointer-events: none;
}

.expert-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.expert-card:hover .expert-image {
  transform: scale(1.05);
}

/* ================================
   Expert information
================================ */

.expert-info {
  position: relative;
  z-index: 2;
  width: calc(100% - 36px);
  min-height: 113px;
  margin: -42px auto 0;
  padding: 24px 15px 22px;
  border-radius: 10px 10px 0 0;
  background: var(--experts-white);
  text-align: center;
}

.expert-info h3 {
  margin: 0 0 15px;
  color: var(--experts-heading);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.expert-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 13px;
  border-radius: 5px;
  color: var(--experts-white);
  background: var(--primary-deep, #06043e);
  box-shadow: 4px 4px 0 var(--experts-primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1050px) {
  .experts-container {
    width: min(920px, 100%);
  }

  .expert-image-wrap {
    height: 350px;
  }

  .expert-info {
    width: calc(100% - 24px);
  }

  .expert-info h3 {
    font-size: 21px;
  }
}

@media (max-width: 800px) {
  .experts-section {
    padding: 60px 20px 75px;
  }

  .experts-heading {
    margin-bottom: 40px;
  }

  .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expert-image-wrap {
    height: 390px;
  }
}

@media (max-width: 560px) {
  .experts-section {
    padding: 48px 15px 60px;
  }

  .experts-heading {
    margin-bottom: 32px;
  }

  .experts-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .experts-heading h2 {
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -1.2px;
  }

  .experts-heading h2 br {
    display: none;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expert-card {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .expert-image-wrap {
    height: 400px;
  }

  .expert-info {
    min-height: 105px;
    padding: 22px 14px 20px;
  }

  .expert-info h3 {
    margin-bottom: 13px;
    font-size: 22px;
  }
}

@media (max-width: 380px) {
  .expert-image-wrap {
    height: 340px;
  }

  .experts-heading h2 {
    font-size: 31px;
  }
}
/* ================================
   Testimonial slider
================================ */

.testimonial-section,
.testimonial-section * {
  box-sizing: border-box;
}

.testimonial-section {
  --testimonial-primary: var(--primary-color, #3150f5);
  --testimonial-button: var(--button-color, #142bc9);
  --testimonial-dark: var(--navy, #058A3B);
  --testimonial-card: var(--navy-2, #08085c);
  --testimonial-white: var(--white, #ffffff);
  --testimonial-muted: var(--muted, #aeb5d1);
  --testimonial-gap: 30px;

  position: relative;
  width: 100%;
  padding: 70px 20px 90px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 45px,
      rgba(54, 91, 255, 0.09) 46px,
      rgba(54, 91, 255, 0.09) 48px
    ),
    linear-gradient(125deg, #070844 0%, #058A3B 52%, #030438 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -280px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(28, 48, 184, 0.08);
  pointer-events: none;
}

.testimonial-container {
  position: relative;
  z-index: 2;
  width: min(1300px, 100%);
  margin: 0 auto;
}

/* ================================
   Heading
================================ */

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.testimonial-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 23px;
  padding: 5px 11px;
  border: 1px solid rgba(49, 80, 245, 0.45);
  border-radius: 50px;
  color: var(--testimonial-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.testimonial-label > span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--testimonial-primary);
}

.testimonial-heading h2 {
  margin: 0;
  color: var(--testimonial-white);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
}

.testimonial-review-button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  margin-top: 45px;
  padding: 9px 10px 9px 25px;
  border-radius: 50px;
  color: var(--testimonial-white);
  background: linear-gradient(135deg, #111bc4, #69C74A);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.testimonial-review-button > span {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--testimonial-button);
  background: var(--testimonial-white);
  font-size: 17px;
}

.testimonial-review-button:hover {
  background: var(--testimonial-primary);
  box-shadow: 0 14px 32px rgba(49, 80, 245, 0.26);
  transform: translateY(-3px);
}

/* ================================
   Slider
================================ */

.testimonial-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  outline-offset: 6px;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonial-gap);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 39px 40px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(18, 20, 79, 0.93);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(49, 80, 245, 0.65);
  box-shadow: 0 20px 45px rgba(0, 0, 35, 0.2);
  transform: translateY(-5px);
}

/* ================================
   Client information
================================ */

.testimonial-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-client {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.testimonial-client img {
  width: 58px;
  height: 58px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.testimonial-client h3 {
  margin: 0 0 5px;
  color: var(--testimonial-white);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.testimonial-client p {
  margin: 0;
  color: var(--testimonial-muted);
  font-size: 14px;
  line-height: 1.3;
}

.testimonial-quote {
  height: 65px;
  color: rgba(49, 80, 245, 0.32);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 105px;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

/* ================================
   Testimonial text
================================ */

.testimonial-card blockquote {
  position: relative;
  z-index: 2;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-style: italic;
  line-height: 1.48;
}

/* ================================
   Rating
================================ */

.testimonial-rating {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 6px 13px;
  border-radius: 50px;
  color: var(--testimonial-white);
  background: var(--testimonial-primary);
  font-size: 16px;
  line-height: 1;
}

/* ================================
   Pagination
================================ */

.testimonial-pagination {
  min-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 42px;
}

.testimonial-dot {
  width: 10px;
  height: 7px;
  display: block;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 50px;
  background: rgba(49, 80, 245, 0.25);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.2s ease;
}

.testimonial-dot:hover {
  background: rgba(49, 80, 245, 0.7);
  transform: scale(1.15);
}

.testimonial-dot.is-active {
  width: 64px;
  background: var(--testimonial-primary);
  transform: none;
}

/* Prevent links or text selection during drag */

.testimonial-viewport.is-dragging a {
  pointer-events: none;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1050px) {
  .testimonial-card {
    flex-basis: calc((100% - 30px) / 2);
  }

  .testimonial-card {
    padding: 35px 32px 28px;
  }
}

@media (max-width: 760px) {
  .testimonial-section {
    padding: 60px 20px 70px;
  }

  .testimonial-top {
    align-items: flex-start;
    margin-bottom: 38px;
  }

  .testimonial-review-button {
    margin-top: 30px;
  }

  .testimonial-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 650px) {
  .testimonial-section {
    --testimonial-gap: 18px;

    padding: 48px 15px 60px;
  }

  .testimonial-top {
    flex-direction: column;
    gap: 25px;
  }

  .testimonial-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .testimonial-heading h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
  }

  .testimonial-heading h2 br {
    display: none;
  }

  .testimonial-review-button {
    margin-top: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 315px;
    padding: 30px 25px 25px;
  }

  .testimonial-client img {
    width: 52px;
    height: 52px;
  }

  .testimonial-client h3 {
    font-size: 19px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }

  .testimonial-quote {
    font-size: 85px;
  }

  .testimonial-pagination {
    margin-top: 30px;
  }

  .testimonial-dot.is-active {
    width: 45px;
  }
}
/* =================================
   Footer
================================= */

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  --footer-primary: var(--primary-color, #3150f5);
  --footer-dark: var(--navy, #058A3B);
  --footer-dark-secondary: var(--navy-2, #08085c);
  --footer-white: var(--white, #ffffff);
  --footer-muted: var(--muted, #aeb5d1);

  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--footer-white);
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 47px,
      rgba(63, 91, 245, 0.08) 48px,
      rgba(63, 91, 245, 0.08) 50px
    ),
    linear-gradient(
      125deg,
      #030439 0%,
      var(--footer-dark) 55%,
      #030439 100%
    );
  font-family: Arial, Helvetica, sans-serif;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(31, 56, 202, 0.05);
  pointer-events: none;
}

.site-footer__container {
  position: relative;
  z-index: 2;
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0 72px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.45fr)
    minmax(180px, 0.9fr)
    minmax(170px, 0.7fr)
    minmax(240px, 0.9fr);
  gap: 75px;
}

/* =================================
   Brand
================================= */

.site-footer__logo {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 27px;
  color: var(--footer-white);
  text-decoration: none;
}

.site-footer__logo svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__logo span {
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.site-footer__brand h2 {
  margin: 0;
  color: var(--footer-white);
  font-size: clamp(37px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

/* =================================
   Social links
================================= */

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.site-footer__socials a {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--footer-muted);
  background: rgba(255, 255, 255, 0.025);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__socials a:hover {
  color: var(--footer-white);
  border-color: var(--footer-primary);
  background: var(--footer-primary);
  transform: translateY(-3px);
}

.site-footer__socials svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__socials a:first-child svg,
.site-footer__socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

/* =================================
   Footer columns
================================= */

.site-footer__column {
  min-width: 0;
}

.site-footer__column h3 {
  margin: 3px 0 37px;
  color: var(--footer-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__column ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__column li {
  line-height: 1.3;
}

.site-footer__column li a {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__column li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--footer-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-footer__column li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.site-footer__column li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =================================
   Office details
================================= */

.site-footer__office address {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer__schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--footer-muted);
  font-size: 15px;
  line-height: 1.4;
}

.site-footer__schedule svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: var(--footer-primary);
  stroke: var(--footer-primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__contact {
  margin: 0 0 7px;
  color: var(--footer-white);
  font-size: 15px;
  line-height: 1.4;
}

.site-footer__contact strong {
  font-weight: 700;
}

.site-footer__contact a {
  color: var(--footer-white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__contact a:hover {
  color: var(--white);
}

/* =================================
   Copyright
================================= */

.site-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 16px;
  line-height: 1.4;
}

.site-footer__bottom a {
  color: var(--footer-white);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__bottom a:hover {
  color: var(--footer-primary);
}

/* =================================
   Responsive
================================= */

@media (max-width: 1100px) {
  .site-footer__grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 60px 45px;
  }

  .site-footer__office {
    grid-column: 2 / 4;
  }
}

@media (max-width: 800px) {
  .site-footer__container {
    padding: 75px 0 60px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 40px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__office {
    grid-column: auto;
  }

  .site-footer__brand h2 br {
    display: none;
  }

  .site-footer__brand h2 {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
    .project-slider__track{
    flex-direction: column;
  }
  .site-footer__container {
    width: min(100% - 30px, 500px);
    padding: 60px 0 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .site-footer__brand,
  .site-footer__office {
    grid-column: auto;
  }

  .site-footer__brand h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .site-footer__column h3 {
    margin-bottom: 24px;
  }

  .site-footer__column ul {
    gap: 14px;
  }

  .site-footer__bottom {
    padding: 21px 15px;
  }

  .site-footer__bottom p {
    font-size: 14px;
  }
}
/* =================================
   Back-to-top progress button
================================= */

.back-to-top,
.back-to-top * {
  box-sizing: border-box;
}

.back-to-top {
  --back-to-top-size: 54px;
  --back-to-top-primary: var(--primary-color, #3150f5);
  --back-to-top-dark: var(--heading-color, #06183d);
  --back-to-top-white: var(--white, #ffffff);

  position: fixed;
  z-index: 9999;
  right: 28px;
  bottom: 28px;

  width: var(--back-to-top-size);
  height: var(--back-to-top-size);
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--back-to-top-dark);
  background: var(--back-to-top-white);
  box-shadow: 0 10px 30px rgba(5, 16, 60, 0.18);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.88);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow: 0 14px 35px rgba(49, 80, 245, 0.28);
  transform: translateY(-4px) scale(1);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.96);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(49, 80, 245, 0.3);
  outline-offset: 4px;
}

/* Circular progress */

.back-to-top__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.back-to-top__track,
.back-to-top__indicator {
  fill: none;
  stroke-width: 3;
}

.back-to-top__track {
  stroke: rgba(49, 80, 245, 0.16);
}

.back-to-top__indicator {
  stroke: var(--back-to-top-primary);
  stroke-linecap: round;

  /*
   * Circle circumference:
   * 2 × PI × 23 = approximately 144.51
   */
  stroke-dasharray: 144.51;
  stroke-dashoffset: 144.51;

  transition: stroke-dashoffset 0.08s linear;
}

/* Arrow */

.back-to-top__arrow {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.back-to-top:hover .back-to-top__arrow {
  color: var(--back-to-top-primary);
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 768px) {

  .back-to-top {
    --back-to-top-size: 50px;

    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {

  .back-to-top {
    --back-to-top-size: 46px;

    right: 14px;
    bottom: 14px;
  }

  .back-to-top__arrow {
    width: 19px;
    height: 19px;
  }

  .back-to-top__track,
  .back-to-top__indicator {
    stroke-width: 3.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top__indicator,
  .back-to-top__arrow {
    transition: none;
  }
}
/* =================================
   Contact details section
================================= */

.contact-details-section,
.contact-details-section * {
  box-sizing: border-box;
}

.contact-details-section {
  --process-background: var(--background-color, #e9eefc);
  width: 100%;
  padding: 85px 20px 65px;
  overflow: hidden;
  background: var(--process-background);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-details-container {
  width: min(1300px, 100%);
  margin: 0 auto;
}

/* Heading */

.contact-details-heading {
  margin-bottom: 52px;
  text-align: center;
}

.contact-details-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
  padding: 5px 11px;
  border: 1px solid rgba(49, 80, 245, 0.25);
  border-radius: 50px;
  color: var(--contact-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-details-label > span {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--contact-primary);
}

.contact-details-heading h2 {
  margin: 0;
  color: var(--contact-heading);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
}

.contact-details-heading h2 strong {
  color: var(--contact-primary);
  font-weight: inherit;
}

/* Cards grid */

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */

.contact-details-card {
  position: relative;
  min-width: 0;
  min-height: 155px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--contact-white);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-details-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49, 80, 245, 0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.contact-details-card:hover {
  border-color: rgba(49, 80, 245, 0.18);
  box-shadow: 0 20px 42px rgba(21, 38, 91, 0.1);
  transform: translateY(-8px);
}

.contact-details-card:hover::before {
  opacity: 1;
}

/* Icon */

.contact-details-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  flex: 0 0 70px;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 22px 8px;
  color: var(--contact-primary);
  background: rgba(49, 80, 245, 0.1);
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-radius 0.35s ease,
    transform 0.35s ease;
}

.contact-details-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details-card:hover .contact-details-icon {
  color: var(--contact-white);
  background: var(--contact-primary);
  border-radius: 50%;
  transform: rotate(-5deg) scale(1.05);
}

/* Content */

.contact-details-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-details-content h3 {
  margin: 0 0 8px;
  color: var(--contact-heading);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  transition: color 0.3s ease;
}

.contact-details-content a,
.contact-details-content address {
  display: block;
  color: var(--contact-text);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-details-content a:hover {
  color: var(--contact-primary);
  transform: translateX(4px);
}

.contact-details-card:hover .contact-details-content h3 {
  color: var(--contact-primary);
}

/* Tablet */

@media (max-width: 950px) {
  .contact-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */

@media (max-width: 650px) {
  .contact-details-section {
    padding: 60px 15px 50px;
  }

  .contact-details-heading {
    margin-bottom: 35px;
  }

  .contact-details-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .contact-details-heading h2 {
    font-size: 37px;
    letter-spacing: -1.3px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-details-card:last-child {
    grid-column: auto;
  }

  .contact-details-card {
    min-height: 135px;
    padding: 25px 20px;
  }

  .contact-details-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .contact-details-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-details-content h3 {
    font-size: 21px;
  }

  .contact-details-content a,
  .contact-details-content address {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .contact-details-card {
    align-items: flex-start;
    gap: 15px;
    padding: 22px 17px;
  }

  .contact-details-icon {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .contact-details-content h3 {
    font-size: 19px;
  }
}
/* mobile menu */
