:root {
  color-scheme: dark;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #f7f7f7;
  --primary-color: #2D31FA;
  --primary-color-hover: #1F26C9;
  --page-padding: clamp(1.5rem, 4vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: inherit;
  background-color: transparent;
  color: inherit;
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background-color: #ffffff;
  background-image: url("assets/filter.png");
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}

.background__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: block;
}

.background__video--visible {
  opacity: 1;
}

.background__filter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("assets/filter.png");
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.95;
  z-index: 1;
}

/* header_menu */
.header_menu {
  position: fixed;
  top: clamp(16px, 2.8vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1208px, calc(100% - 40px));
  height: clamp(64px, 7vw, 84px);
  /* background: #FFFFFF; */
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --header-horizontal-padding: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0 var(--header-horizontal-padding);
  gap: clamp(0.5rem, 2vw, 2rem);
  z-index: 1000;
  /* box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1); */
  transition: box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease, backdrop-filter 0.25s ease;
}

.header_menu--scrolled {
  background: rgba(255, 255, 255, 0.551);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.18);
  
}

.header_menu--open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  z-index: 1300;
}

.logo__image {
  height: clamp(24px, 3vw, 36px);
  width: auto;
  object-fit: contain;
  transform: none;
  transform-origin: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 1 auto;
  justify-content: center;
}

.header__nav a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--primary-color);
}

.nav__divider {
  color: #CCCCCC;
  font-size: 14px;
  user-select: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  position: relative;
  z-index: 1300;
}

.header__cta {
  background: var(--primary-color);
  color: #FFFFFF;
  border: none;
  border-radius: 110px;
  padding: 16px 44px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .header__actions {
    margin-right: calc(10px - var(--header-horizontal-padding));
  }
}

.header__cta:hover {
  background: var(--primary-color-hover);
}

.header__menu-toggle {
  display: none;
  width: 58px;
  height: 58px;
  border-radius: 99px;
  border: 1px solid rgba(45, 49, 250, 0.2);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1300;
}

.header__menu-toggle:hover {
  border-color: rgba(45, 49, 250, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.header_menu--open .header__menu-toggle {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(45, 49, 250, 0.3);
}

.header__menu-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-color);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header_menu--open .header__menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header_menu--open .header__menu-line:nth-child(2) {
  opacity: 0;
}

.header_menu--open .header__menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header_menu {
    width: calc(100% - 32px);
    height: 64px;
    --header-horizontal-padding: 20px;
    padding: 0 var(--header-horizontal-padding);
    border-radius: 80px;
    gap: 12px;
  }

  .logo__image {
    height: clamp(24px, 3vw, 36px);
  }

  .header__actions {
    gap: 8px;
  }

  .header__cta {
    padding: 12px 24px;
    font-size: 15px;
  }

  .header__menu-toggle {
    display: inline-flex;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.511);
    border: 1px solid rgba(45, 49, 250, 0.12);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-12px);
    z-index: 1200;
    max-height: calc(100vh - (clamp(16px, 2.8vw, 28px) + clamp(64px, 7vw, 84px) + 32px));
    overflow-y: auto;
  }

  .header_menu--open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__nav a {
    font-size: clamp(1.425rem, 4vw, 1.6rem);
    color: #0A0A0A;
    font-weight: 400;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  }

  .header_menu--open .header__nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .header_menu--open .header__nav a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .header_menu--open .header__nav a:nth-child(3) {
    transition-delay: 0.15s;
  }

  .header_menu--open .header__nav a:nth-child(5) {
    transition-delay: 0.2s;
  }

  .header_menu--open .header__nav a:nth-child(7) {
    transition-delay: 0.25s;
  }

  .header__nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px) translateX(0);
  }

  .header__nav .nav__divider {
    display: none;
  }
}



.content {
  position: relative;
  z-index: 1;
  padding: 220px var(--page-padding) 0;
}

.privacy-page .content {
  padding: 180px var(--page-padding) 120px;
}

.panel {
  min-height: 1000px;
}

.privacy-page .panel {
  min-height: auto;
  background: transparent;
}

.solutions {
  position: relative;
  overflow: hidden;
  margin-inline: calc(var(--page-padding) * -1);
  padding-inline: var(--page-padding);
  z-index: 1;
}

.solutions::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -5.5%;
  transform: translateY(-50%);
  width: clamp(850px, 32vw, 520px);
  aspect-ratio: 1;
  background-image: url("assets/logo_simbol.svg");
  background-repeat: no-repeat;
  background-size: contain;
  /* opacity: 0.2; */
  z-index: -1;
  pointer-events: none;

}

#hero {
  min-height: 0;
  /* padding-top: clamp(140px, 24vw, 240px);
  padding-bottom: clamp(240px, 45vw, 420px); */
}

/* hero_1_text */
.hero_1_text {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #2D2D2D;
  margin: 0;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  text-wrap: balance;
}

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

.hero__tagline {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 300;
  color: #666666;
  margin: 0;
}

.hero__description {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 300;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  max-width: 640px;
}

.hero__cta-group {
  width: min(540px, 100%);
  min-height: 54px;
  margin: clamp(1.5rem, 4vw, 3.5rem) auto 0;
  display: flex;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  overflow: visible;
  background: transparent;
  padding: 4px;
  gap: 6px;
}

.hero__cta {
  flex: 1;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  text-decoration: none;
}

.hero__cta--secondary {
  background: transparent;
  color: #797979;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 400;
  z-index: 1;
}

/* .hero__cta--secondary:hover {
  background: rgba(4, 4, 4, 0.6);
} */

.hero__cta--primary {
  background: var(--primary-color);
  color: #FFFFFF;
  border-radius: 30px;
  margin-left: 0;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 500;
  z-index: 1;
}

.hero__cta--primary:hover {
  background: var(--primary-color-hover);
}




/* Trusted Section */
.trusted {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  /* padding-top: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 401px;
  padding: 0;
}

.trusted__background {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.trusted__vector {
  width: 100%;
  /* max-width: 1636px; */
  height: 601px;
  /* object-fit: contain; */
}

.trusted__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 30px; */
  padding: 72px 0;
  width: 100%;
}

.trusted__title {
  font-family: inherit;
  font-size: 32px;
  font-weight: 500;
  color: #C2C2C2;
  margin: 100px 0 0 0;
  letter-spacing: 0.5px;
  text-align: center;
  /* padding-top: 80px; */
}

.trusted__carousel {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trusted__viewport {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.trusted__track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: nowrap;
  width: max-content;
}

.trusted__track[data-mode="marquee"] {
  animation: pov-marquee var(--trusted-marquee-duration, 50s) linear infinite;
}

.trusted__track[data-mode="marquee"]:hover {
  animation-play-state: paused;
}

.trusted__logo-card {
  flex: 0 0 clamp(160px, 18vw, 280px);
  max-width: clamp(160px, 18vw, 280px);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted__logo {
  width: clamp(150px, 20vw, 260px);
  /* max-height: clamp(48px, 10vw, 120px); */
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.trusted__logo-card:hover .trusted__logo {
  opacity: 1;
}

.pov {
  position: relative;
  margin-top: clamp(60px, 10vw, 120px);
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 0;
}

.pov__background {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.pov__vector {
  width: 130%;
  /* max-width: 1636px; */
  height: 601px;
  /* object-fit: contain; */
}

.pov__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  text-align: center;
  max-width: 1180px;
  width: 100%;
  padding: 140px var(--page-padding);
}

.pov__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: #262626;
  margin: 0;
}

.pov__title span {
  color: var(--primary-color);
}

.pov__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(38, 38, 38, 0.7);
  margin: 0;
  max-width: 760px;
}

.pov__carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.pov__cards {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  overflow: hidden;
  background: transparent;
  color: transparent;
  padding: 10px 0;
}

.pov__cards-track {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: nowrap;
  width: max-content;
}

.pov__cards-track[data-mode="marquee"] {
  animation: pov-marquee var(--pov-marquee-duration, 52s) linear infinite;
}

.pov__cards-track[data-mode="marquee"]:hover {
  animation-play-state: paused;
}

.pov__card {
  flex: 0 0 clamp(320px, 28%, 380px);
  padding: 36px 32px 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  transition: transform 0.55s ease, box-shadow 0.55s ease;
  will-change: transform;
}

.pov__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(15, 23, 42, 0.18);
}

.pov__card-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0;
}

.pov__card-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(38, 38, 38, 0.7);
  margin: 0;
}

.pov__card-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(38, 38, 38, 0.8);
}

.pov__card-list li {
  line-height: 1.6;
}

.pov__dots {
  display: none;
}

.pov__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pov__dot.is-active {
  background: var(--primary-color);
  transform: scale(1.35);
  box-shadow: 0 8px 18px rgba(45, 49, 250, 0.35);
}

.pov__dot:focus-visible {
  outline: 2px solid rgba(45, 49, 250, 0.4);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .pov {
    min-height: auto;
  }

  .pov__content {
    padding: 120px var(--page-padding);
  }

  .pov__carousel {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .pov__cards {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: clamp(320px, 80vw, 980px);
    padding: clamp(0.75rem, 2vw, 1.5rem) clamp(0.5rem, 4vw, 2rem);
  }

  .pov__cards-track {
    width: 100%;
    gap: 0;
    transition: transform 0.6s ease;
    will-change: transform;
  }

  .pov__card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: clamp(2rem, 4vw, 3rem);
  }

  .pov__dots {
    display: flex;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .pov__content {
    padding: 100px var(--page-padding);
    gap: 28px;
  }

  .pov__cards {
    max-width: 100%;
    padding: 0.5rem 0;
  }

  .pov__card {
    padding: clamp(1.5rem, 6vw, 2.25rem);
    /* margin: 0 10px; */
    box-shadow:none;
    border: 3px solid rgba(255, 255, 255, 0.65);
  }
  .pov__card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pov__cards-track {
    transition: none;
    animation: none !important;
  }
  .trusted__track {
    transition: none;
    animation: none !important;
  }
}

.our-work {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  min-height: clamp(1020px, 90vh, 1080px);
  padding: 0;
  margin-top: 0;
  /* padding: clamp(80px, 12vh, 160px) 0 clamp(60px, 10vh, 140px); */
  border-bottom: none;
  background-image: url("assets/backgroun_full_screen.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
}

/* .our-work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 0;
  pointer-events: none;
} */

.our-work * {
  position: relative;
  z-index: 1;
}

.our-work__content {
  text-align: center;
  max-width: 880px;
  padding: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #f5f5f5;
}

.our-work__eyebrow {
  margin: 0;
  /* text-transform: uppercase; */
  /* letter-spacing: 0.35em; */
  font-size: 40px;
  font-weight: 600;
  color: rgba(255, 255, 255); ;
}

.our-work__heading {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.our-work__description {
  margin: 0;
  font-size: 16px;
  /* line-height: 1.7; */
  color: rgba(255, 255, 255, 0.86);
}

.our-work__stage-wrapper {
  position: relative;
  width: min(980px, 92vw);
  margin-top: 12px;
}

.our-work__stage {
  width: 100%;
  border-radius: 36px;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  text-align: left;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 35px 90px rgba(10, 15, 35, 0.35);
}

.our-work__case {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.our-work__case-label {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.9);
}

.our-work__case-title {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #0b1220;
}

.our-work__case-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.85);
}

.our-work__case-meta span {
  font-weight: 500;
  color: #111827;
}

.our-work__case-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.85);
}

.our-work__case-section h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(15, 23, 42, 0.65);
}

.our-work__case-section p {
  margin: 0;
  color: inherit;
  line-height: 1.6;
}

.our-work__case-section ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: inherit;
  line-height: 1.6;
  font-size: inherit;
}

.our-work__case-media {
  flex: 0 0 clamp(240px, 32%, 360px);
  margin: 0;
  display: flex;
  align-items: center;
  background-color: transparent;
  justify-content: center;
}

.our-work__case-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  background-color: transparent;
  /* box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25); */
}

.our-work__stage-float {
  position: absolute;
  right: -600px;
  bottom: clamp(-18px, -3vw, -48px);
  width: 20%;

  max-width: 420px;
  min-width: 320px;
  height: 600px;
  border-radius: 32px;
  object-fit: cover;
  /* box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35); */
  /* border: 1px solid rgba(255, 255, 255, 0.4); */
  pointer-events: none;
  z-index: 2;
}

.our-work__quote {
  text-align: start;
  margin: 28px 0 0;
  padding: 0 10px 30px;
  font-size: 16px;
  width: 100%;
  max-width: none;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  align-self: stretch;
}

.our-work__quote-cite {
  /* display: block; */
  margin-top: 12px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1150px) {
  .our-work {
    min-height: 520px;
    padding: 60px 0 ;
  }
  .our-work__quote-cite {
      display: block;
      margin-top: 0;
  }

  .our-work__content {
    gap: 22px;
    padding: 0 20px ;
  }

  .our-work__stage-wrapper {
    width: 100%;
  }

  .our-work__stage {
    flex-direction: column;
  }

  .our-work__case,
  .our-work__case-media {
    width: 100%;
  }

  .our-work__case-media {
    display: none;
  }

  .our-work__stage-float {
    position: static;
    width: 80%;

    max-width: none;
    min-width: 0;

    margin: 24px auto 0;
    pointer-events: auto;
    /* // dose not cut */
    object-fit: contain;
    display: block;
  }
}

.about {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  min-height: clamp(680px, 80vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 10vw, 120px) var(--page-padding);
  background: transparent;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-image: url("assets/about_backgorund.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(1042px, 90vw) auto;
  opacity: 0.85;
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
  text-align: center;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about__eyebrow {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  color: #111827;
}

.about__lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.85);
}

.about__section-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
}

.about__section-subtitle {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
}

.about__body {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.8);
}

.about__story,
.about__mission {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 768px) {
  .about {
    padding: 80px var(--page-padding);
  }

  .about__content {
    gap: 22px;
  }

  .about__section-title {
    font-size: 22px;
  }

  .about__section-subtitle {
    font-size: 20px;
  }
}

@keyframes pov-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.solutions {
  min-height: auto;
  padding: 110px var(--page-padding) 0;
  border-bottom: none;
}

.solutions__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
}

.solutions__heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #262626;
  margin: 0;
}

.solutions__heading span {
  color: var(--primary-color);
}

.solutions__accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 0 30px;
}

.solution {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(18px);
}

.solution[data-open="false"] {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(0);
  width: clamp(700px, 68%, 520px);
  align-self: flex-start;
}

.solution[data-open="true"] {
  transform: translateY(-4px);
  width: 100%;
}

.solution__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.solution[data-open="true"] .solution__trigger {
  display: none;
}

.solution__index {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(109, 115, 130, 0.7);
  flex-shrink: 0;
}

.solution__title {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}

.solution__content {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 0 3px 0 36px;
}

.solution__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #2f3440;
  padding: 36px 0 36px 0;
  flex: 1 1 0;
}

.solution__lead {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  color: #1f2430;
}

.solution__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 5px;
  font-size: 16px;
  font-weight: 300;
  color: #3c4250;
}


.solution__media {
  display: none;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 20px 32px rgba(15, 23, 42, 0.18); */
  flex: 1 1 0;
}

.solution__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 25px;
  padding: 5px;
  border: 0;
}

.solution[data-open="true"] .solution__content {
  display: flex;
}

.solution[data-open="true"] .solution__media {
  display: block;
}

.solution[data-open="false"] .solution__content {
  display: none;
}

@media (max-width: 1024px) {
  .solutions {
    padding: 90px var(--page-padding);
  }

  .solution[data-open="false"] {
    width: 100%;
  }

  .solution__content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .solutions {
    padding: 100px var(--page-padding) 90px;
  }

  .solution__trigger {
    padding: 24px;
  }

  .solution__content {
    padding: 0;
    gap: 22px;
    flex-direction: column;
  }

  .solution__text {
    padding:  24px 24px 0;
  }
  .solution__media {
    display: block;
    flex: 0 0 100%;
    padding: 4px;
    margin: 0;
    border-radius: 25px;



  }
}

#footer {
  min-height: 400px;
  border-bottom: none;
}


@media (max-width: 768px) {
  .our-work {
    min-height: 520px;
    padding: 60px 0 48px;
  }

  .our-work__content {
    gap: 22px;
  }

  .our-work__stage {
    flex-direction: column;
    text-align: left;
  }

  .our-work__case,
  .our-work__case-media {
    width: 100%;
  }

  .our-work__stage-wrapper {
    width: 100%;
  }
}

.why {
  position: relative;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  min-height: clamp(560px, 70vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 140px) var(--page-padding);
  background-color: transparent;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/Vector3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.95;
  pointer-events: none;
}

.why__content {
  position: relative;
  z-index: 1;
  /* margin-top: 180px; */
  max-width: 820px;
  margin-bottom: 50px;

  width: 100%;
  text-align: center;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why__title {
  /* margin: 350px 0 0 0; */
  font-size: 40px;
  font-weight: 400;
  color: #111827;
}

.why__title span {
  color: var(--primary-color);
}

.why__subtitle {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: #0f172a;
}

.why__body {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.8);
}

@media (max-width: 768px) {
  .why {
    padding: 100px var(--page-padding);
  }

  .why__subtitle {
    font-size: 24px;
  }

  .why__body {
    font-size: 16px;
  }
}
.info {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 100px) var(--page-padding);
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
  width: min(1200px, 100%);
}

.info__card {
  background: #ffffff;
  width: clamp(140px, 22vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: clamp(16px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.info__value {
  font-size: clamp(28px, 4.8vw, 64px);

  font-weight: 700;
  color: var(--primary-color);
}

.info__label {
  margin: 0;
  text-align: center;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 500;
  color: #111827;
}

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

.contact {
  width: 100%;
  padding: clamp(80px, 12vw, 140px) var(--page-padding);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact__content {
  max-width: 760px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #0f172a;
}

.contact__eyebrow {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--primary-color);
}

.contact__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #111827;
}

.contact__lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.8);
}

.contact__form-wrapper {
  /* margin-top: 24px; */
  padding: clamp(36px, 5vw, 48px);

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__form-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.contact__form-subtitle {
  margin: 0;
  font-size: 16px;
  color: rgba(15, 23, 42, 0.8);
}

.contact__form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__field {
  display: block;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  border-radius: 999px;
  border: 1.5px solid rgba(45, 49, 250, 0.4);
  padding: 16px 24px;
  font-size: 16px;
  font-family: inherit;
  color: #0f172a;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__field--textarea textarea {
  border-radius: 32px;
  resize: vertical;
  min-height: 150px;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 49, 250, 0.15);
}

.contact__submit {
  border: none;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact__submit:hover {
  background: var(--primary-color-hover);
  transform: translateY(-2px);
}

.contact__status {
  min-height: 24px;
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: rgba(15, 23, 42, 0.8);
}

.contact__status--success {
  color: #059669;
}

.contact__status--error {
  color: #dc2626;
}

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

.privacy-hero {
  min-height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: clamp(80px, 12vw, 140px) var(--page-padding);
}

.privacy-hero__eyebrow {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(15, 23, 42, 0.5);
}

.privacy-hero__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: #0f172a;
}

.privacy-hero__lede {
  margin: 0;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.75);
}

.privacy-hero__meta {
  font-size: 15px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
}

.privacy-section {
  min-height: auto;
  border-bottom: none;
  padding: 0 var(--page-padding) clamp(80px, 12vw, 120px);
}

.privacy-section__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 36px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 35px 80px rgba(10, 15, 35, 0.08);
  backdrop-filter: blur(8px);
}

.privacy-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  color: #0f172a;
}

.privacy-card h3,
.privacy-card h4 {
  margin: 24px 0 8px;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.9);
}

.privacy-card p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.75);
}

.privacy-card address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.85);
}

.privacy-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.privacy-list {
  margin: 0 0 24px;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(15, 23, 42, 0.75);
}

.privacy-list li strong {
  color: #0f172a;
}

.privacy-note {
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(45, 49, 250, 0.08);
}

.privacy-contact {
  min-height: auto;
  padding: clamp(60px, 10vw, 120px) var(--page-padding);
}

.privacy-contact__content {
  max-width: 940px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.privacy-contact__content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  color: #0f172a;
}

.privacy-contact__content p {
  margin: 0 auto 24px;
  max-width: 680px;
  color: rgba(15, 23, 42, 0.72);
  line-height: 1.8;
}

.privacy-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.privacy-contact__actions .hero__cta {
  min-width: 220px;
}

@media (max-width: 768px) {
  .privacy-page .content {
    padding: 140px var(--page-padding) 80px;
  }

  .privacy-card {
    padding: 28px;
  }

  .privacy-card h2 {
    font-size: 24px;
  }

  .privacy-hero {
    padding: 100px var(--page-padding) 60px;
  }
}

.footer {
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
  background: #2D31FA;
  color: #f4f6ff;
  padding: clamp(40px, 8vw, 80px) var(--page-padding);
  border-bottom: none;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  width: 200px;
  height: auto;
  display: block;
}

.footer__tagline {
  margin: 12px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
}

.footer__contact-item {
  color: #fdfdff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer__contact-item span {
  font-size: 20px;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  color: #f5f7ff;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .pov,
  .pov__cards,
  .our-work,
  .about
   {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pov {
    overflow: hidden;
  }

  .pov__vector {
    width: 100%;
  }

  .footer {
    width: 100%;
    margin: 0;
  }

  .footer__links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .header_menu {
    width: calc(100% - 24px);
    height: 60px;
    --header-horizontal-padding: 18px;
    padding: 0 var(--header-horizontal-padding);
  }

  .header__actions {
    gap: 6px;
  }

  .header__cta {

    padding: 10px 20px;
    font-size: 13px;

  }

  .header__menu-toggle {
    width: 48px;
    height: 48px;
    gap: 5px;
  }

  .header__menu-line {
    width: 20px;
  }



  .hero_1_text {
    padding: 0 1rem;
  }

  .hero__cta-group {
    flex-direction: column;
    border: none;
    padding: 0;
    width: 100%;
    gap: 12px;
    background: transparent;
  }

  .hero__cta {
    width: 100%;
    min-height: 50px;
    border-radius: 30px;
  }

  .hero__cta--secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }

  .hero__cta--primary {
    margin-left: 0;
    width: 100%;
  }
}
