@font-face {
  font-family: "Inter Display";
  src: url("./InterDisplay-Regular.ttf") format("ttf");
  /* sesuaikan path */
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter Display";
  src: url("./InterDisplay-Medium.ttf") format("ttf");
  /* sesuaikan path */
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter Display";
  src: url("./InterDisplay-SemiBold.ttf") format("ttf");
  /* sesuaikan path */
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter Display";
  src: url("./InterDisplay-Bold.ttf") format("ttf");
  /* sesuaikan path */
  font-weight: 700;
  font-style: normal;
}
.navbar {
  padding-top: 32px;
  padding-bottom: 30px;
  z-index: 99;
  display: flex;
  position: sticky;
  top: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  transition: all 400ms ease;
}
.navbar.hidden {
  transform: translateY(-110%);
}

.all__blur {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 5;
  background: var(--White-Transparent-50, rgba(255, 255, 255, 0.5));
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  opacity: 0;
}

.all__blur.active {
  opacity: 1;
  pointer-events: auto;
}

/* hormati prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .nav__dropdown .dropdown,
  .all__blur {
    transition: none;
  }
}
@media (max-width: 767px) {
  .logo svg {
    width: 120px !important;
    height: auto !important;
  }
  .nav__list {
    display: none !important;
  }
  .navigation {
    padding: 8px 18px 8px 16px !important;
  }
  .navigation .btn__group .language {
    display: none;
  }
  .navigation .btn__group {
    gap: 10px;
  }
}
.navigation {
  display: flex;
  padding: 16px 16px 16px 32px;
  justify-content: space-between;
  align-items: center;
  border-radius: 1000px;
  border: 4px solid #FFF;
  background: #FAFBFF;
  position: relative;
  z-index: 99;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.08);
}

.navigation__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__list a {
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.7px;
  text-decoration: none;
}

.nav__dropdown {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  cursor: pointer;
}

.dropdown__title {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  display: flex;
  width: 168px;
  padding: 4px;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  opacity: 0;
  border-radius: 8px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(8px) scale(0.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  will-change: opacity, transform;
  /* z-index di atas header */
  z-index: 10;
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}
@media (max-width: 480px) {
  .dropdown {
    left: unset;
    right: 0;
    top: 50px;
  }
}

.dropdown.mobile {
  transform: translateX(0px) scale(0.98);
}

.nav__dropdown.mobile {
  display: none;
}
@media (max-width: 992px) {
  .nav__dropdown.mobile {
    display: flex;
  }
}

.ic__open {
  display: none;
}
@media (max-width: 680px) {
  .ic__open {
    display: block;
  }
}

.ic__close {
  display: none;
}

.nav__dropdown.mobile.is-open .ic__close {
  display: block;
}

.nav__dropdown.mobile.is-open .ic__open {
  display: none;
}

.nav__dropdown.mobile.is-open .dropdown.mobile {
  left: unset;
  right: 0;
}

.nav__dropdown.is-open .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.nav__dropdown.is-open .dropdown.mobile {
  transform: translateX(0) scale(1);
}

.dropdown__item {
  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.7px;
  transition: 400ms;
  text-decoration: none;
}

.dropdown__item:hover {
  border-radius: 6px;
  background: #FFF;
  /* Shadow/Hard */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.08);
}

.btn__group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  display: none;
}

.language span {
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 19.6px */
  letter-spacing: -0.7px;
}

header {
  background: FFAE00; /*radial-gradient(74.91% 74.91% at 50% 100%, #FFF 0%, #FFF7ED 66.24%, #F5F8FF 100%); */
}

.header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding-top: 230px;
  padding-bottom: 64px;
  margin-top: -160px;
}

.header__home {
  align-items: center !important;
}

@media (max-width: 480px) {
  .header__home h1 {
    text-align: center;
  }
}

.header__button-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rating {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.rating__container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user__list {
  display: flex;
  align-items: center;
  gap: -15px;
}

.user__list img {
  border-radius: 1000px;
}

.user__list img:nth-of-type(2) {
  margin-left: -15px;
}

.user__list img:nth-of-type(3) {
  margin-left: -15px;
}

.rating__text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating__text span:nth-of-type(1) {
  color: #1F1F1F;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 175% */
  letter-spacing: -0.112px;
}

.rating__text span:nth-of-type(2) {
  color: rgba(31, 31, 31, 0.8);
  text-align: center;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 175% */
  letter-spacing: -0.112px;
}

.rating__text span:nth-of-type(3) {
  color: rgba(31, 31, 31, 0.8);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 175% */
  letter-spacing: -0.112px;
}

.hero__header img {
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.04);
  border-radius: 24px;
}

@media (max-width: 767px) {
  .hero__header img {
    width: 100% !important;
    height: auto !important;
  }
  .content__headline {
    max-width: 100% !important;
  }
  .heading__text-container {
    gap: 8px !important;
  }
  .heading__text-container img {
    width: 24px !important;
    height: 24px !important;
  }
  .content__heading p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .header__button-group {
    width: 60% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  .rating__text span:nth-of-type(1) {
    font-size: 12px !important;
  }
  .rating__text span:nth-of-type(3) {
    font-size: 12px !important;
  }
}
.moving__list {
  overflow: hidden;
  background: #fff;
}

.moving__list-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  background: #FFF;
  padding-block: 24px;
}

.moving__list {
  display: inline-flex;
  align-items: start;
  gap: 40px;
}
.moving__list-group {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  align-items: start;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 40px));
  }
}
.moving__list span {
  color: #2D4F8C;
  text-align: center;
  font-family: "Inter" !important;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.7px;
  text-transform: capitalize;
  white-space: nowrap;
  padding-block: 4px;
  overflow: unset;
}

.moving__list img {
  width: 32px;
  height: 32px;
}

/* Responsive mixin for mobile (max-width: 767px) */
@media (max-width: 767px) {
  .moving__list {
    gap: 20px !important;
  }
  .moving__list span {
    font-size: 20px !important;
    letter-spacing: -1px !important;
  }
  .moving__list img {
    width: 20px !important;
    height: 20px !important;
  }
}
.value__container {
  display: flex;
  width: 100%;
  padding-block: 80px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 64px;
  position: relative;
}

.value__container > img {
  position: absolute;
  top: 16px;
  right: -120px;
  width: 730px;
  height: 547.5px;
}

.value__content {
  display: flex;
  width: 700px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.value__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.value__heading p {
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.126px;
}

/* Responsive mixin for mobile (max-width: 767px) */
@media (max-width: 767px) {
  .value__container {
    padding-block: 64px !important;
    gap: 400px !important;
  }
  .value__container > img {
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 300px;
  }
  .value__container .pillar__list {
    margin-top: -100px;
  }
  .value__content {
    width: 100% !important;
  }
  .section__heading-container img {
    width: 24px !important;
    gap: 8px !important;
  }
  .value__heading p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .badge {
    padding: 6px 12px !important;
    gap: 6px !important;
  }
  .badge span {
    font-size: 12px !important;
    letter-spacing: 0.68px !important;
  }
  .badge__dots {
    width: 8px !important;
    height: 8px !important;
  }
  .pillar__list {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .pillar {
    max-width: 100% !important;
    padding: 24px !important;
    gap: 24px !important;
    width: unset !important;
  }
}
.marquee-proof {
  width: 100%;
  padding-block: 80px;
  position: relative;
}

.marquee-proof > img {
  position: absolute;
  bottom: -214px;
  left: -214px;
  margin: 0 auto;
  z-index: 0;
}

.marquee-container {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
  position: relative;
}

.marquee-left {
  display: flex;
  width: 604px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.marquee-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.slider-proof-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-proof {
  display: flex;
  width: 392px;
  height: 492px;
  padding: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  border-radius: 32px;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.04);
  transition: 800ms;
  flex: 0 0 50%;
  box-sizing: border-box;
}

.slider-proof-parent {
  width: fit-content;
  padding-inline: 12px;
}

.slider-proof-icon {
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 26.667px;
  transition: 400ms;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%), #4A96F8;
}

.slider-proof span {
  color: #1F1F1F;
  font-family: Inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 36.4px */
  letter-spacing: -0.14px;
  transition: color 400ms;
}

.slider-proof-button-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-proof-button {
  cursor: pointer;
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.04);
  transition: 400ms;
}

.slider-proof-button:hover {
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #2D4F8C;
}

.proof-prev img {
  transform: rotate(180deg);
}

.slider-proof-button:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.slider-proof-parent.active .slider-proof {
  border: 1px solid #DBDBDB;
  background: #4A96F8;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.08);
}

.slider-proof-parent.active span {
  color: #FFF;
}

.slider-proof-parent.active .slider-proof-icon {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%), #FFF;
}

.ic-proof-white {
  display: block;
}

.ic-proof-blue {
  display: none;
}

.slider-proof-parent.active .ic-proof-blue {
  display: block;
}

.slider-proof-parent.active .ic-proof-white {
  display: none;
}

/* Responsive mixin for mobile (max-width: 767px) */
@media (max-width: 767px) {
  .marquee-proof {
    padding-block: 64px;
  }
  .marquee-container {
    display: flex;
    flex-direction: column;
  }
  .marquee-left {
    width: 100% !important;
    align-items: flex-start !important;
    text-align: center !important;
    gap: 32px;
  }
  .slider-proof-button-wrapper {
    align-self: flex-end;
  }
  .slider-proof {
    width: 100%;
    height: 400px;
    min-width: 300px;
    /* flex: 0 0 100%; */
  }
  .slider-proof-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .slider-proof-icon img {
    width: 32px;
    height: 32px;
  }
  .slider-proof span {
    font-size: 20px;
    line-height: 130%;
    /* 31.2px */
  }
  .slider-proof-parent.active {
    display: flex;
  }
  .slider-track {
    margin-left: 1620px;
  }
  .slider-proof-button {
    width: 48px;
    height: 48px;
  }
  .slider-proof-button img {
    width: 20px;
    height: 20px;
  }
}
.what-we-do {
  background: #F5F8FF;
  width: 100%;
  display: flex;
  justify-content: center;
}

.what-we-do-container {
  display: flex;
  padding-block: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: flex-start;
  width: 100%;
}

.what-we-do-parent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: -120px;
}
@media (max-width: 480px) {
  .what-we-do-parent {
    flex-direction: column;
    gap: 50px;
    margin-bottom: -100px;
  }
}

.what-we-do-heading {
  display: flex;
  width: 761px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

@media (max-width: 480px) {
  .what-we-do-heading .section__heading-container {
    justify-content: flex-start;
  }
}

.globe__illus {
  width: 391px;
}
@media (max-width: 480px) {
  .globe__illus {
    width: 100%;
  }
}

.feature__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.feature__list-top {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.feature__list-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.feature {
  border-radius: 32px;
  padding-bottom: 32px;
  height: 400px;
  border: 5px solid #FFF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
}

.feature > img {
  position: absolute;
  top: 0;
  left: 0;
}

.feature-1 {
  width: 448px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.feature-2 {
  height: 400px;
  flex: 1 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 32px;
}

.feature-3 {
  height: 400px;
  flex: 1 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 32px;
}

.feature-4 {
  width: 448px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.feature__content {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.feature__content h6 {
  color: #1F1F1F;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.48px;
}

.feature__content span {
  color: rgba(17, 17, 17, 0.5);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
}

.feature-2 .feature__content {
  align-items: flex-start;
  text-align: left;
}

.feature-2 .feature__content span {
  text-align: left;
}

.feature-3 .feature__content {
  align-items: flex-start;
  text-align: left;
}

.feature-3 .feature__content span {
  text-align: left;
}

.phone__illustration {
  width: 100%;
  padding-top: 160px;
  position: relative;
}

.phone__illustration .img-phone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  width: 560px;
}

.phone__illustration .img-code {
  position: absolute;
  top: 40px;
  right: 176px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
}

.phone__content {
  display: flex;
  padding: 68px 764px 0 131px;
  align-items: center;
  border-radius: 50px;
  border-radius: 50px;
  /* background: linear-gradient(180deg, #FFAE42 -20.65%, #FFE9CB 100%); */
  background: #FFAE00;
}

.phone__content img {
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
}

/* Responsive mixin for mobile (max-width: 767px) */
@media (max-width: 767px) {
  .what-we-do-heading {
    width: 100% !important;
  }
  .custom-gap-heading {
    gap: 2px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .feature__list-top {
    flex-direction: column;
  }
  .feature__list-bottom {
    flex-direction: column;
  }
  .feature-1 {
    width: 100% !important;
  }
  .feature-2 {
    width: 100% !important;
    flex: none;
    padding-left: 0 !important;
  }
  .feature-3 {
    width: 100% !important;
    flex: none;
    padding-left: 0 !important;
  }
  .feature-4 {
    width: 100% !important;
  }
  .feature__content {
    width: 100% !important;
  }
  .feature img {
    width: 100% !important;
    height: auto !important;
  }
  .feature-2 .feature__content {
    align-items: center;
    text-align: center;
  }
  .feature-2 .feature__content span {
    text-align: center;
  }
  .feature-3 .feature__content {
    align-items: center;
    text-align: center;
  }
  .feature-3 .feature__content span {
    text-align: center;
  }
  .phone__illustration .img-phone {
    width: 300px !important;
    height: auto !important;
    display: none;
  }
  .img-code {
    width: 200px !important;
    height: auto !important;
    bottom: 300px !important;
    right: 0 !important;
    top: auto !important;
    margin: 0 auto !important;
  }
  .phone__content {
    padding: 100px 32px 0px 32px !important;
    flex-direction: column !important;
    gap: 24px;
    border-radius: 24px;
  }
  .phone__content img {
    width: 100% !important;
    height: auto !important;
    bottom: 0 !important;
    box-shadow: none !important;
  }
}
.section__bank {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  position: relative;
}
@media (max-width: 480px) {
  .section__bank {
    gap: 460px;
  }
}

.section__bank > img {
  position: absolute;
  top: 0;
  right: -100px;
}
@media (max-width: 480px) {
  .section__bank > img {
    width: 100%;
    transform: scale(2);
    top: 420px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.bank {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .bank {
    flex-direction: column;
    margin-top: -60px;
  }
}

.bank__card {
  height: 400px;
  flex: 1 0 0;
  border-radius: 32px;
  border: 5px solid var(--White-Solid-5, #FFF);
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media (max-width: 480px) {
  .bank__card {
    min-height: 322px;
  }
}

.bank__card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.bank__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 30px;
  gap: 16px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .bank__content {
    gap: 12px;
    padding-bottom: 24px;
  }
}

.bank__content h6 {
  color: #1F1F1F;
  text-align: center;
  /* Heading/H6 */
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -1px;
  text-transform: capitalize;
}
@media (max-width: 480px) {
  .bank__content h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px; /* 140% */
    letter-spacing: -0.1px;
  }
}

.bank__content p {
  color: #8F8F8F;
  text-align: center;
  /* Body/P2/Semibold */
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
}
@media (max-width: 480px) {
  .bank__content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.1px;
  }
}

.section__payment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  position: relative;
}

.wrapper__logo {
  position: relative;
  overflow: hidden;
}

.wrapper__logo > img {
  position: absolute;
  right: -220px;
  bottom: 200px;
}
@media (max-width: 480px) {
  .wrapper__logo > img {
    bottom: 700px;
    width: 482px;
    right: -120px;
  }
}

#section__marketplace {
  background: #F5F8FF;
}

.section__marketplace {
  display: flex;
  padding-top: 80px;
  padding-bottom: 64px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 480px) {
  .section__marketplace {
    flex-direction: column-reverse;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 50px;
  }
}

.section__marketplace > img {
  margin-left: -60px;
  width: 600px;
}
@media (max-width: 480px) {
  .section__marketplace > img {
    margin-left: 0;
    width: 100%;
  }
}

#solutions__header {
  background: radial-gradient(299.74% 164.55% at 6.74% 112.32%, #FFF 0%, #F5F8FF 16.11%, #FFF7ED 100%);
  margin-top: -160px;
}
#solutions__header.partners .partner-img {
  margin-right: unset !important;
}

.solutions__header {
  padding-top: 200px;
  padding-bottom: 64px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 480px) {
  .solutions__header {
    flex-direction: column;
  }
}

.solutions__header > img {
  width: 630px;
  margin-top: -40px;
  margin-right: -65px;
}
@media (max-width: 480px) {
  .solutions__header > img {
    width: 100%;
    margin-top: unset;
    margin-right: unset;
    margin-top: 40px;
  }
}

/* Footer Styles */
.footer {
  display: flex;
  margin: 0 auto;
  height: 673px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
  background-color: #14326B;
}

.footer > img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -120px;
  width: 1478.648px;
  height: 310.73px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 64px;
  gap: 64px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.footer__content-left {
  display: flex;
  width: 447px;
  height: 268px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__content-left span {
  color: rgba(255, 255, 255, 0.5);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
  max-width: 350px;
}

.footer__content-right {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 290px;
  gap: 24px;
}

.footer__menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.footer__menu > span {
  color: rgba(255, 255, 255, 0.5);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.07px;
}

.footer__menu p {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
  text-decoration: none;
}

.footer__dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1607843137);
}

.footer__bottom span {
  color: rgba(255, 255, 255, 0.5);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
}

.footer__bottom-btn {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__bottom-btn a {
  color: rgba(255, 255, 255, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.08px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer {
    height: auto !important;
    padding-bottom: 64px;
  }
  .footer > img {
    width: 100% !important;
    height: auto !important;
    bottom: -25px !important;
  }
  .footer__content {
    flex-direction: column;
    gap: 32px;
  }
  .footer__content-left {
    width: 100% !important;
    height: auto !important;
    gap: 16px;
    flex-direction: column !important;
    justify-content: flex-start;
  }
  .footer__content-left span {
    max-width: 100% !important;
    font-size: 14px !important;
  }
  .footer__content-right {
    width: 100% !important;
    flex-direction: column;
    gap: 32px;
  }
  .footer__menu {
    width: 100% !important;
  }
  .footer__menu p {
    font-size: 14px !important;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.section-spotlight_bg {
  background: var(--Primary-Light-Blue-Solid-0, #F5F8FF);
}
.section-spotlight_bg .section__spotlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}
.section-spotlight_bg .section__spotlight .parent__spotlight {
  width: 100%;
  margin-bottom: -100px;
}
.section-spotlight_bg .section__spotlight .parent__spotlight .img__spotlight {
  width: 570px;
  margin-right: -20px;
}
@media (max-width: 480px) {
  .section-spotlight_bg .section__spotlight .parent__spotlight .img__spotlight {
    margin-right: 0;
    width: 100%;
  }
}
.section-spotlight_bg .section__spotlight .spotlight__parent {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .section-spotlight_bg .section__spotlight .spotlight__parent .spotlight {
    flex-direction: column;
    gap: 24px;
  }
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__card {
  height: 400px;
  flex: 1 0 0;
  border-radius: 32px;
  border: 5px solid var(--White-Solid-5, #FFF);
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  position: relative;
  justify-content: center;
  background: var(--Primary-Light-Blue-Linear-10, radial-gradient(74.91% 74.91% at 50% 100%, #FFF 0%, #F5F8FF 100%));
}
@media (max-width: 480px) {
  .section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__card img {
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
  width: 304px;
}
@media (max-width: 480px) {
  .section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__card img {
    position: relative;
  }
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 30px;
  gap: 16px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 32%, #FFF 100%);
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__content h6 {
  color: #1F1F1F;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: -1px;
  text-transform: capitalize;
}
.section-spotlight_bg .section__spotlight .spotlight__parent .spotlight__content p {
  color: #8F8F8F;
  text-align: center;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.section-wework_bg {
  background: var(--Primary-Light-Blue-Solid-0, #F5F8FF);
}
.section-wework_bg .section__wework {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}
.section-wework_bg .section__wework .parent__wework {
  width: 100%;
}
@media (max-width: 480px) {
  .section-wework_bg .section__wework .parent__wework {
    flex-direction: column;
  }
}
.section-wework_bg .section__wework .parent__wework .img__wework {
  width: 100%;
  max-width: 520px;
  margin-right: 0;
}
.section-wework_bg .section__wework .wework__parent {
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .section-wework_bg .section__wework .wework__parent {
    gap: 48px;
  }
}
.section-wework_bg .section__wework .wework__parent .wework {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .section-wework_bg .section__wework .wework__parent .wework {
    flex-direction: column;
    gap: 24px;
    height: 100%;
  }
}
.section-wework_bg .section__wework .wework__parent .wework__card {
  height: 400px;
  flex: 1 0 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  position: relative;
  justify-content: center;
  background: var(--Primary-Light-Blue-Linear-10, radial-gradient(74.91% 74.91% at 50% 100%, #FFF 0%, #F5F8FF 100%));
}
@media (max-width: 480px) {
  .section-wework_bg .section__wework .wework__parent .wework__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 350px;
  }
}
.section-wework_bg .section__wework .wework__parent .wework__card img {
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
}
@media (max-width: 480px) {
  .section-wework_bg .section__wework .wework__parent .wework__card img {
    position: absolute;
  }
}
.section-wework_bg .section__wework .wework__parent .wework__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 30px;
  gap: 16px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 32%, #FFF 100%);
}
.section-wework_bg .section__wework .wework__parent .wework__content h6 {
  color: #1F1F1F;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: -1px;
  text-transform: capitalize;
}
.section-wework_bg .section__wework .wework__parent .wework__content p {
  color: #8F8F8F;
  text-align: center;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.section-wework {
  padding-top: 200px;
  padding-bottom: 64px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 480px) {
  .section-wework {
    gap: 0px;
  }
}
.section-wework .content__headline {
  align-items: center;
}
.section-wework .content__headline .content__heading {
  align-items: center;
  text-align: center;
}
.section-wework .content__headline .content__heading .heading__text-container {
  justify-content: center;
}
.section-wework .content__headline .content__heading .heading__text-dsc {
  color: var(--Grey-Solid-70, #4C4C4C);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.3px;
  max-width: 918px;
}
.section-wework .img-header {
  position: relative;
  width: 918px;
  height: 480px;
  margin-top: 64px;
}
@media (max-width: 480px) {
  .section-wework .img-header {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
  }
}

#trustCenter__header {
  background: radial-gradient(74.91% 74.91% at 50% 100%, #FFF 0%, #F5F8FF 100%);
  margin-top: -160px;
}

.trustCenter__header {
  display: flex;
  padding-top: 130px;
  padding-bottom: 0px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .trustCenter__header {
    flex-direction: column;
  }
}

.trustCenter__header .content__headline {
  padding-top: 68px;
}

.trustCenter__header > img {
  margin-right: -50px;
}
@media (max-width: 480px) {
  .trustCenter__header > img {
    margin-right: 0px;
    width: 100%;
  }
}

.contentMain__parent {
  display: flex;
}

.contentMain__parent > img {
  width: 500px;
  margin-right: -60px;
}

@media (max-width: 480px) {
  .pillarParent__trust {
    margin-top: -90px;
  }
}

@media (max-width: 480px) {
  .pillar__trust {
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .pillar__trust .pillar__content {
    align-items: center !important;
  }
}

.pillar__trust .pillar__content span {
  text-align: left;
}
@media (max-width: 480px) {
  .pillar__trust .pillar__content span {
    text-align: center;
  }
}

#developers__header {
  margin-top: -160px;
  background: radial-gradient(299.74% 164.55% at 6.74% 112.32%, #FFF 0%, #F5F8FF 16.11%, #FFF7ED 100%);
}

.developers__header {
  padding-top: 200px;
  padding-bottom: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .developers__header {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .heading__download {
    align-items: center !important;
  }
}

.developers__header > img {
  margin-right: -110px;
}
@media (max-width: 480px) {
  .developers__header > img {
    margin-right: 0px;
    width: 100%;
  }
}

#section__download {
  background: var(--Primary-Light-Blue-Solid-0, #F5F8FF);
}

.section__heading-dev {
  align-items: center !important;
}

.parent__dev {
  margin-bottom: -140px;
}
@media (max-width: 480px) {
  .parent__dev {
    margin-bottom: -80px;
  }
}

.download__parent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  width: 918px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .download__parent {
    width: 100%;
  }
}

.download__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .download__wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.download__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  gap: 24px;
  align-items: center;
  height: 400px;
  flex: 1 0 0;
  border-radius: 32px;
  /* border: 5px solid var(--White-Solid-5, #FFF); */
  background-image: url("../../assets/images/card-bg.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}
@media (max-width: 480px) {
  .download__card {
    min-height: 322px;
    gap: 50px;
  }
}

.download__card > img {
  position: absolute;
  top: 0px;
  left: 0;
}

.download__icon {
  display: flex;
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 24px;
  border: 4px solid var(--White-Transparent-10, rgba(255, 255, 255, 0.2));
  background: var(--Primary-Light-Blue-Linear-50, radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%), #4A96F8);
  /* Shadow/Hard */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 480px) {
  .download__icon {
    width: 80px;
    height: 80px;
  }
}

.download__icon img {
  width: 50px;
}
@media (max-width: 480px) {
  .download__icon img {
    width: 40px;
  }
}

.download__content {
  display: flex;
  width: 383px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 36px;
  gap: 16px;
}
@media (max-width: 480px) {
  .download__content {
    width: 100%;
    gap: 12px;
    padding-bottom: 24px;
  }
}

.download__content h5 {
  color: var(--Grey-Solid-90, #1F1F1F);
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.48px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .download__content h5 {
    font-size: 20px;
    line-height: 28px; /* 140% */
    margin-top: 0;
  }
}

.download__content p {
  color: var(--Grey-Solid-50, #8F8F8F);
  text-align: center;
  /* Body/P2/Semibold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: -0.2px;
  margin-top: 0;
}
@media (max-width: 480px) {
  .download__content p {
    font-size: 14px;
    line-height: 20px;
  }
}

.pillar__dev {
  align-items: center !important;
}
@media (max-width: 480px) {
  .pillar__dev {
    align-items: center !important;
  }
}

.pillar__dev .pillar__content {
  align-items: center;
}
@media (max-width: 480px) {
  .pillar__dev .pillar__content {
    align-items: center !important;
  }
}

#platform__header {
  background-color: #EDF7FF;
  margin-top: -160px;
}

.platform__header {
  padding-top: 200px;
  padding-bottom: 64px;
  display: flex;
}
@media (max-width: 480px) {
  .platform__header {
    flex-direction: column;
    gap: 64px;
  }
}

.platform__header > img {
  margin-right: -92px;
}
@media (max-width: 480px) {
  .platform__header > img {
    margin-right: 0px;
  }
}

.contentMain__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .contentMain__parent {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .contentMain__parent > img {
    width: 100%;
    margin-top: 32px;
  }
}

.parent__platform {
  margin-bottom: -50px;
}
@media (max-width: 480px) {
  .parent__platform {
    margin-bottom: 0px;
  }
}

.contentMain__parent > p {
  color: var(--Grey-Solid-70, #4C4C4C);
  /* Body/P1/Medium */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.3px;
  max-width: 447px;
}

.auto {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  .auto {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .auto__images img {
    width: 100%;
  }
}

.auto__tabs {
  display: flex;
  width: 447px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 480px) {
  .auto__tabs {
    width: 100%;
  }
}

.auto__tab {
  display: flex;
  flex-direction: column;
  padding: 24px;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auto__tab.active {
  background: var(--White-Transparent-90, rgba(255, 255, 255, 0.8));
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.auto__tab.active .auto__progress {
  display: block;
}

.auto__progress {
  display: none;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #D9D9D9;
  transition: all 0.3s ease;
}

.auto__value {
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 174, 66, 0.2) 0%, #FFAE42 100%);
}

.auto__tab.active .auto__title h6 {
  color: #1f1f1f;
}

.auto__tab.active .auto__title svg path {
  fill: #1f1f1f;
}

.auto__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.auto__title h6 {
  color: var(--Grey-Solid-70, #4C4C4C);
  /* Heading/H6 */
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.12px;
  text-transform: capitalize;
}
@media (max-width: 480px) {
  .auto__title h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    /* 140% */
    letter-spacing: -0.1px;
  }
}

.auto__content {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.auto__content p {
  color: var(--Grey-Solid-50, #8F8F8F);
  /* Body/P2/Semibold */
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
  margin-top: 16px;
}

.wrapper__platform {
  flex-direction: row;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .wrapper__platform {
    flex-direction: column-reverse;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .img__proof {
    width: 100%;
    margin-left: 0px !important;
  }
}

.img__proof-platform {
  top: 162px;
}
@media (max-width: 480px) {
  .img__proof-platform {
    width: 482px;
    top: 100px;
    right: -100px;
  }
}

.section-form {
  padding-top: 40px;
  padding-bottom: 80px;
  background: #F5F8FF;
}
.section-form .container-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .section-form .container-form {
    padding-inline: 20px;
  }
}
.section-form .container-form .contact-form {
  border-radius: 32px;
  border: 2px solid var(--White-Solid-5, #FFF);
  background: var(--White-Transparent-90, rgba(255, 255, 255, 0.8));
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 918px;
  padding: 32px;
  gap: 24px;
}
@media (max-width: 480px) {
  .section-form .container-form .contact-form {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.section-form .container-form .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-form .container-form .contact-form .form-group.row {
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 480px) {
  .section-form .container-form .contact-form .form-group.row {
    flex-direction: column;
    gap: 24px;
  }
}
.section-form .container-form .contact-form .form-group.row .input-wrapper {
  flex: 1;
}
.section-form .container-form .contact-form .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section-form .container-form .contact-form .input-wrapper label {
  color: var(--Grey-Solid-90, #1F1F1F);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: -0.2px;
}
.section-form .container-form .contact-form .input-wrapper input,
.section-form .container-form .contact-form .input-wrapper textarea {
  border-radius: 24px;
  border: 1px solid var(--White-Solid-30, #EBEBEB);
  background: var(--White-Solid-10, #F5F5F5);
  padding: 12px 24px;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.3px;
}
.section-form .container-form .contact-form .input-wrapper input:focus,
.section-form .container-form .contact-form .input-wrapper textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #0056d2;
}
.section-form .container-form .contact-form .input-wrapper input::placeholder,
.section-form .container-form .contact-form .input-wrapper textarea::placeholder {
  color: var(--Grey-Solid-50, #8F8F8F);
  opacity: 0.5;
}
.section-form .container-form .contact-form .input-wrapper textarea {
  border-radius: 12px;
  resize: none;
}
.section-form .container-form .contact-form .btn {
  border-radius: 100px;
  border: 3px solid var(--White-Transparent-10, rgba(255, 255, 255, 0.2));
  background: var(--Primary-Dark-Blue-Linear-50, radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), #2D4F8C);
  color: var(--White-Solid-5, #FFF);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: -0.2px;
  padding: 12px 32px;
  align-self: flex-start;
}
.section-form .container-form .contact-form .btn:hover {
  background: linear-gradient(to right, #1f4e9a, #0e264f);
}

#contact__header {
  background: radial-gradient(299.74% 164.55% at 6.74% 112.32%, #FFF 0%, #F5F8FF 16.11%, #FFF7ED 100%);
  margin-top: -160px;
}
#contact__header .contact_header-dsc {
  max-width: 600px;
}

#services-header {
  background: radial-gradient(299.74% 164.55% at 6.74% 112.32%, #FFF 0%, #F5F8FF 16.11%, #FFF7ED 100%);
  margin-top: -160px;
  position: relative;
  z-index: 1;
}

.service__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  padding-top: 230px;
  padding-bottom: 128px;
}
@media (max-width: 480px) {
  .service__header {
    flex-direction: column;
    padding-bottom: 64px;
  }
}

.img__service-header {
  width: 540px;
}
@media (max-width: 480px) {
  .img__service-header {
    width: 100%;
  }
}

.section__integration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 88px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .section__integration {
    flex-direction: column-reverse;
  }
}

.img__integration {
  width: 540px;
}
@media (max-width: 480px) {
  .img__integration {
    width: 100%;
  }
}

.section__managed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .section__managed {
    flex-direction: column;
  }
}

.managed__cards {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .managed__cards {
    flex-direction: column;
    gap: 24px;
  }
}

.managed__card {
  width: 397.333px;
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  border-radius: 32px;
  border: 5px solid #FFF;
  /* background: radial-gradient(74.91% 74.91% at 50% 100%, #FFF 0%, #F5F8FF 100%); */
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 480px) {
  .managed__card {
    min-height: 322px;
    height: 322px;
    width: 100%;
    display: flex;
    align-items: flex-end;
  }
}

.managed__card img {
  position: absolute;
  top: 0;
  left: 0;
}

.managed__content {
  display: flex;
  padding-inline: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 240px;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .managed__content {
    gap: 12px;
    padding-top: 0px;
  }
}

.managed__content h6 {
  color: #1F1F1F;
  text-align: center;
  /* Heading/H6 */
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.12px;
  text-transform: capitalize;
}
@media (max-width: 480px) {
  .managed__content h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px; /* 140% */
    letter-spacing: -0.1px;
  }
}

.managed__content p {
  color: #8F8F8F;
  text-align: center;
  /* Body/P2/Semibold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
}
@media (max-width: 480px) {
  .managed__content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.1px;
  }
}

#section__innovation {
  background: #F5F8FF;
}

.section__innovation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  position: relative;
}

.img__innovation {
  position: absolute;
  top: -200px;
  right: -220px;
}
@media (max-width: 480px) {
  .img__innovation {
    width: 482px;
    top: -80px;
    right: -220px;
  }
}

#section__case {
  background: #F5F8FF;
}

.section__case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

@media (max-width: 480px) {
  .section__case .section__heading h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section__case .section__heading .section__heading-container {
    flex-wrap: wrap;
  }
}

.slider__case {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}
@media (max-width: 480px) {
  .slider__case {
    flex-direction: column;
  }
}

.case__card {
  width: 397px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  border-radius: 32px;
  border: 5px solid var(--White-Solid-5, #FFF);
  background: var(--White-Transparent-90, rgba(255, 255, 255, 0.8));
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 480px) {
  .case__card {
    width: 100%;
  }
}

.img__case {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 480px) {
  .img__case {
    width: 100%;
  }
}

.case__content {
  display: flex;
  padding-inline: 32px;
  padding-bottom: 12px;
  margin-top: 240px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.case__content h6 {
  color: var(--Grey-Solid-90, #1F1F1F);
  /* Heading/H6 */
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  text-align: center;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.12px;
  text-transform: capitalize;
}

#commercial__header {
  margin-top: -160px;
  background: radial-gradient(299.74% 164.55% at 6.74% 112.32%, #FFF 0%, #F5F8FF 16.11%, #FFF7ED 100%);
}

.commercial__header {
  padding-top: 200px;
  padding-bottom: 184px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 480px) {
  .commercial__header {
    flex-direction: column;
    padding-bottom: 64px;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .img__commercial-header {
    width: 100%;
  }
}

#section__procurement {
  background: #F5F8FF;
}

.section__procurement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 224px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .section__procurement {
    gap: 100px;
  }
}

@media (max-width: 480px) {
  .procurement__heading .section__heading {
    align-items: center;
  }
}

.procurement__banner {
  width: 1232px;
  height: 367px;
  flex-shrink: 0;
  border-radius: 50px;
  /* background: linear-gradient(180deg, #FFAE42 -20.65%, #FFE9CB 100%); */
  background: #FFAE00;
  position: relative;
}
@media (max-width: 1280px) {
  .procurement__banner {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .procurement__banner {
    width: 100%;
    height: 110px;
  }
}

.procurement__banner img {
  position: absolute;
}

.procurement__banner img:nth-of-type(1) {
  right: 170px;
  top: -112px;
}
@media (max-width: 480px) {
  .procurement__banner img:nth-of-type(1) {
    width: 100px;
    top: -33px;
    right: 55px;
  }
}

.procurement__banner img:nth-of-type(2) {
  right: 88px;
  bottom: 97px;
}
@media (max-width: 480px) {
  .procurement__banner img:nth-of-type(2) {
    width: 66px;
    bottom: 25px;
    right: 25px;
  }
}

.procurement__banner img:nth-of-type(3) {
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0px;
  width: 560px;
  z-index: 1;
}
@media (max-width: 480px) {
  .procurement__banner img:nth-of-type(3) {
    width: 165px;
  }
}

.procurement__banner img:nth-of-type(4) {
  left: 152px;
  bottom: 48px;
  z-index: 2;
}
@media (max-width: 480px) {
  .procurement__banner img:nth-of-type(4) {
    width: 100px;
    bottom: 14px;
    left: 44px;
  }
}

.how-it-work {
  padding-block: 80px;
}
.how-it-work .heading {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-inline: auto;
  margin-bottom: 64px;
  align-items: center;
}
@media (max-width: 480px) {
  .how-it-work .title h2 {
    text-align: center;
  }
}
.how-it-work .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}
.how-it-work .title__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.how-it-work .content {
  display: flex;
  flex-direction: column;
  width: 40%;
  max-width: 447px;
}
@media (max-width: 992px) {
  .how-it-work .content {
    display: none;
    width: 90%;
    max-width: 100%;
  }
}
.how-it-work .content.mobile {
  display: none;
}
@media (max-width: 992px) {
  .how-it-work .content.mobile {
    display: flex;
  }
}
.how-it-work .content-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: stretch;
}
@media (max-width: 480px) {
  .how-it-work .content-wrap {
    gap: 24px;
  }
}
.how-it-work .content-card {
  height: 372px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  top: 100px;
  justify-content: space-between;
  width: 100%;
}
.how-it-work .content-card .illustration {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .how-it-work .content-card .illustration {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.how-it-work .content-card .illustration img {
  width: 90%;
}
@media (max-width: 992px) {
  .how-it-work .content-card {
    justify-content: flex-end;
    height: auto;
    gap: 24px;
  }
}
.how-it-work .content-card .divider {
  width: 1px;
  height: 100%;
  background: #E0E0E0;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
}
@media (max-width: 992px) {
  .how-it-work .content-card .divider {
    left: 12px;
  }
}
.how-it-work .content__number {
  color: white;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: -0.16px;
  text-transform: capitalize;
}
@media (max-width: 680px) {
  .how-it-work .content__number {
    font-size: 24px;
    line-height: 24px;
  }
}
.how-it-work .content__title {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #1F1F1F;
  font-family: "Inter", Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 56px;
  letter-spacing: -1px;
  text-transform: capitalize;
}
@media (max-width: 680px) {
  .how-it-work .content__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.how-it-work .content__desc {
  color: #8F8F8F;
  width: 90%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.2px;
}
@media (max-width: 680px) {
  .how-it-work .content__desc {
    font-size: 14px;
    line-height: 20px;
  }
}

.divider__parent {
  position: relative;
  width: 4px;
  height: 100%; /* pastikan kelihatan, bisa disesuaikan */
  background: rgba(255, 255, 255, 0.2);
}

.divider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.divider__value {
  position: absolute;
  top: 0; /* <-- anchor di atas */
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.1s linear;
  border-radius: 100px;
  background: #FFAE42 100%;
}

.case-header {
  padding-block: 60px;
  background: url("assets/images/case-study-bg.png") no-repeat right/contain, radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(136deg, #2D58A7 0%, #4A96F8 118.79%);
  color: white;
}
.case-header .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}
.case-header .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.case-header .content .header__badge {
  border: 1px solid rgba(235, 235, 235, 0.19);
}
.case-header .content .header__badge .badge__app {
  border-radius: 1000px;
  border: 2px solid var(--White-Transparent-10, rgba(255, 255, 255, 0.2));
  background: var(--Primary-Dark-Blue-Linear-30, radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(136deg, #2D58A7 0%, #4A96F8 118.79%));
}
.case-header .content .header__badge .badge__container span {
  color: white;
}
.case-header .content .title {
  color: white;
  font-family: "Inter", sans-serif;
  width: 90%;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 64px;
  /* 106.667% */
  letter-spacing: -1.3px;
  text-transform: capitalize;
}
.case-header .content .title span {
  width: 40px;
  aspect-ratio: 1/1;
  margin-inline: 14px;
  background: url("assets/images/moving-flower.svg") no-repeat center/contain;
  display: inline-block;
}
@media (max-width: 992px) {
  .case-header .content .title span {
    width: 30px;
  }
}
.case-header .content .desc {
  color: rgba(255, 255, 255, 0.5);
  /* Body/P1/Medium */
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.3px;
}
@media (max-width: 680px) {
  .case-header .content .button {
    width: 100%;
  }
}

.study .container {
  padding-block: 80px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.study .container:has(+ .container .line.last) .line::after {
  background: radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%), #93CCFD !important;
}
.study .line {
  width: 60px;
  position: relative;
}
.study .line.last::after {
  display: none;
}
.study .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: calc(100% + 160px);
  width: 4px;
  background: #93CCFD;
  z-index: -1;
}
.study .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
}
.study .content .head {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .study .content .head {
    flex-direction: column;
    gap: 32px;
  }
}
.study .content .head__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  flex: 1;
  max-width: 50%;
}
@media (max-width: 992px) {
  .study .content .head__left {
    max-width: 100%;
  }
}
.study .content .head__left h2 {
  color: #1F1F1F;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 56px;
  /* 116.667% */
  letter-spacing: -1px;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .study .content .head__left h2 {
    line-height: 42px;
  }
}
.study .content .head__right {
  width: 40%;
  max-width: 514px;
}
@media (max-width: 992px) {
  .study .content .head__right {
    width: 100%;
    max-width: 100%;
  }
}
.study .content .head__right img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.study .content .body {
  width: 100%;
}
.study .content .body h3 {
  color: #1F1F1F;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 160% */
  letter-spacing: -0.4px;
}

.references {
  background: url("assets/images/references-bg.png") no-repeat right/600px, #F5F8FF;
}
@media (max-width: 680px) {
  .references {
    background: url("assets/images/references-bg.png") no-repeat right/400px, #F5F8FF;
  }
}
.references .container {
  padding-block: 80px;
}
.references .container:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .references .container:first-child {
    flex-direction: column-reverse;
    gap: 64px;
  }
}
.references .container:last-child {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.references .container:last-child .head {
  max-width: 60%;
}
@media (max-width: 992px) {
  .references .container:last-child .head {
    max-width: 90%;
  }
}
.references .container .illus {
  width: 45%;
}
@media (max-width: 992px) {
  .references .container .illus {
    width: 100%;
  }
}
.references .container .illus img {
  width: 100%;
  object-fit: contain;
}
.references .container .head {
  flex: 1;
  max-width: 604px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 992px) {
  .references .container .head {
    max-width: 100%;
  }
}
.references .container .head h2 {
  color: #1F1F1F;
  /* Heading/H2 */
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 64px;
  /* 106.667% */
  letter-spacing: -1.3px;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .references .container .head h2 {
    line-height: 42px;
  }
}
.references .container .head h2 span {
  width: 40px;
  aspect-ratio: 1/1;
  margin-inline: 14px;
  background: url("assets/images/moving-flower.svg") no-repeat center/contain;
  display: inline-block;
}
@media (max-width: 992px) {
  .references .container .head h2 span {
    width: 30px;
  }
}
.references .container .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 680px) {
  .references .container .grid {
    grid-template-columns: 1fr;
  }
}
.references .container .grid__item {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  border: 5px solid #FFF;
  background: rgba(255, 255, 255, 0.8);
  /* Shadow/Soft */
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  text-align: center;
}
.references .container .grid__item h3 {
  color: #1F1F1F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.48px;
}
.references .container .grid__item p {
  color: #8F8F8F;
  text-align: center;
  /* Body/P2/Semibold */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  margin: 0;
  color: #1F1F1F;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  /* 80px */
  letter-spacing: -1.7px;
  text-transform: capitalize;
}
@media (max-width: 680px) {
  h1 {
    font-size: 40px !important;
  }
}

h2 {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  color: #1F1F1F;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 106%;
  /* 60px */
  letter-spacing: -1.7px;
  text-transform: capitalize;
}
@media (max-width: 680px) {
  h2 {
    font-size: 32px !important;
  }
}

h3 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  font-weight: 900;
  /* Black */
  font-size: 48px;
  line-height: 1.1;
}

h4 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  font-weight: 900;
  /* Black */
  font-size: 36px;
  line-height: 1.1;
}

h5 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  font-weight: 900;
  /* Black */
  font-size: 28px;
  line-height: 1.1;
}

h6 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  font-weight: 800;
  /* Extra Bold */
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
}

h7 {
  font-family: "Inter Display", "Inter", Arial, sans-serif;
  font-weight: 800;
  /* Extra Bold */
  font-size: 20px;
  line-height: 1.1;
}

p {
  margin: 0;
}

section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1232px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 680px) {
  .container {
    padding: 0 16px;
  }
}

.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row !important;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.wrapper {
  padding-block: 80px;
}
@media (max-width: 480px) {
  .wrapper {
    padding-block: 64px;
  }
}

.wrapper-64 {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 480px) {
  .wrapper-64 {
    gap: 48px;
  }
}

.button {
  font-family: "Inter";
  border-radius: 100px;
  text-decoration: none;
}

.btn__bookacall {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  /* 19.84px */
  letter-spacing: -0.2px;
  border: 3px solid var(--White-Transparent-10, rgba(255, 255, 255, 0.2));
  background: #14326B;
}
@media (max-width: 680px) {
  .btn__bookacall {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

.btn-getaccess {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: #FFF;
  color: #1F1F1F;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  /* 19.84px */
  letter-spacing: -0.08px;
}
@media (max-width: 680px) {
  .btn-getaccess {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

.btn__signup {
  color: #FFF;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.2px;
  border-radius: 100px;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: #14326B;
}
@media (max-width: 480px) {
  .btn__signup {
    padding: 10px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 12.727px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 17.818px */
    letter-spacing: -0.182px;
  }
}

.btn__sandbox {
  color: var(--Grey-Solid-90, #1F1F1F);
  text-align: center;
  /* Body/P2/Semibold */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 3px solid var(--White-Solid-10, #F5F5F5);
  background: var(--White-Solid-5, #FFF);
}

.btn__download {
  border-radius: 1000px;
  display: flex;
  padding: 8px 16px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #FFF;
  /* Body/P3/Semibold */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
  letter-spacing: -0.1px;
  border-radius: 1000px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #4A96F8;
  text-decoration: none;
}
@media (max-width: 480px) {
  .btn__download {
    font-size: 12px;
    line-height: 16px;
    /* 133.333% */
  }
}

@media (max-width: 480px) {
  .btn__download img {
    width: 16px;
  }
}

.content__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.header__badge {
  display: flex;
  padding: 4px 16px 4px 4px;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  border: 1px solid #E6E6E6;
}

.badge__app {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: #4A96F8;
}
@media (max-width: 480px) {
  .badge__app {
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
  }
}

.badge__app span {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 16.8px */
  letter-spacing: -0.098px;
}
@media (max-width: 480px) {
  .badge__app span {
    font-size: 12px;
  }
}

.badge__container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge__container span {
  color: #1F1F1F;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 16.8px */
  letter-spacing: -0.098px;
}
@media (max-width: 480px) {
  .badge__container span {
    font-size: 12px;
  }
}

.content__headline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 480px) {
  .content__headline {
    gap: 20px;
  }
}

.content__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.heading__text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.heading__text-container {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.content__heading p {
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.126px;
}

.badge {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  border: 2px solid #FFF;
  background: #F9F9F9;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}

.badge__dots {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #4A96F8;
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.2);
}

.badge span {
  color: rgba(31, 31, 31, 0.8);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1.92px;
  text-transform: uppercase;
}

.section__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.section__heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.content__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.content__main > p {
  color: #4C4C4C;
  /* Body/P1/Medium */
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* 155.556% */
  letter-spacing: -0.3px;
}

.pillar__parent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar__list {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.pillar {
  display: flex;
  width: 100%;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  gap: 40px;
  border-radius: 32px;
  border: 5px solid #FFF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.pillar__icon {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(56.32% 88.64% at 50% 11.36%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%), #4A96F8;
}
@media (max-width: 480px) {
  .pillar__icon {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
  }
}

.pillar__icon img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
@media (max-width: 480px) {
  .pillar__icon img {
    width: 24px;
    height: 24px;
  }
}

.pillar__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .pillar__content {
    gap: 8px;
  }
}

.pillar__content h6 {
  color: #1F1F1F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.48px;
}
@media (max-width: 480px) {
  .pillar__content h6 {
    font-size: 20px;
  }
}

.pillar__content span {
  color: rgba(17, 17, 17, 0.5);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.2px;
  align-self: stretch;
}
@media (max-width: 480px) {
  .pillar__content span {
    font-size: 14px;
  }
}

.section__case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  align-self: stretch;
}

.item__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.item__list-content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.item__list-content span {
  color: #4C4C4C;
  /* Body/P2/Medium */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.item__list-content span strong {
  color: #1F1F1F;
  /* Body/P2/Medium */
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.2px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.1px;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}