:root {
  --ga-system-topbar-height: 46px;
  --ga-system-subbar-height: 34px;
  --ga-system-nav-height: var(--ga-system-topbar-height);
}

.ga-system-nav-has-subnav {
  --ga-system-nav-height: calc(var(--ga-system-topbar-height) + var(--ga-system-subbar-height));
}

.ga-system-nav-mounted {
  scroll-padding-top: calc(var(--ga-system-nav-height) + 18px);
}

.ga-system-nav-mounted body {
  padding-top: 0 !important;
}

.ga-system-nav-mounted body > header#ga-global-nav:not(.ga-system-shell),
.ga-system-nav-mounted body > header.ga-global-nav:not(.ga-system-shell),
.ga-system-nav-mounted body > header.site-nav:not(.ga-system-shell),
.ga-system-nav-mounted body.ga-public-page > header:not(.ga-system-shell),
.ga-system-nav-mounted body > nav:not(.ga-system-topbar):first-child,
.ga-system-nav-mounted body > header.top:not(.ga-system-shell),
.ga-system-nav-mounted body > header:not(.ga-system-shell):first-child:has(nav) {
  display: none !important;
}

.ga-system-nav-mounted body > nav.fixed.top-0,
.ga-system-nav-mounted body > nav[class*="fixed"][class*="top-0"],
.ga-system-nav-mounted nav[class*="fixed"][class*="top-0"],
.ga-system-nav-mounted header[class*="fixed"][class*="top-0"],
.ga-system-nav-mounted #root nav[class*="fixed"][class*="top-0"],
.ga-system-nav-mounted #root header[class*="fixed"][class*="top-0"] {
  display: none !important;
}

.ga-system-nav-mounted #root nav[class*="sticky"][class*="top-16"],
.ga-system-nav-mounted #root div[class*="sticky"][class*="top-16"],
.ga-system-nav-mounted #root .sticky.top-16 {
  display: none !important;
}

.ga-system-nav-mounted body > header:not(.ga-system-shell) > .wrap.nav:first-child {
  display: none !important;
}

.ga-system-shell,
.ga-system-shell * {
  box-sizing: border-box;
}

.ga-system-shell {
  position: sticky;
  top: 0;
  z-index: 2147483000;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  color: #f6fffb;
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.34), rgba(7, 12, 18, 0.18)),
    rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.ga-system-shell a {
  text-decoration: none;
}

.ga-system-topbar,
.ga-system-subbar-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(14px, 2vw, 28px);
}

.ga-system-topbar {
  height: var(--ga-system-topbar-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.ga-system-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  font-weight: 760;
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
}

.ga-system-logo {
  display: block;
  width: auto;
  height: 28px;
  max-width: 118px;
  object-fit: contain;
  opacity: 0.96;
  filter: brightness(0) invert(1) drop-shadow(0 1px 12px rgba(0, 0, 0, 0.28));
}

.ga-system-primary,
.ga-system-subnav {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ga-system-primary::-webkit-scrollbar,
.ga-system-subnav::-webkit-scrollbar {
  display: none;
}

.ga-system-primary {
  justify-content: center;
  gap: 3px;
}

.ga-system-link,
.ga-system-sub-link,
.ga-system-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 8px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.ga-system-link {
  min-height: 28px;
  padding: 0 9px;
  color: rgba(244, 255, 250, 0.76);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 650;
}

.ga-system-link:hover,
.ga-system-link[aria-current="page"] {
  color: #f8fffc;
  background: rgba(45, 212, 191, 0.14);
  border-color: rgba(255, 255, 255, 0.12);
}

.ga-system-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ga-system-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  cursor: pointer;
}

.ga-system-menu-toggle span,
.ga-system-menu-toggle::before,
.ga-system-menu-toggle::after {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.ga-system-menu-toggle span {
  transform: translate(-50%, -50%);
}

.ga-system-menu-toggle::before {
  transform: translate(-50%, calc(-50% - 5px));
}

.ga-system-menu-toggle::after {
  transform: translate(-50%, calc(-50% + 5px));
}

.ga-system-cta {
  min-height: 30px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 760;
}

.ga-system-cta:hover {
  background: rgba(45, 212, 191, 0.2);
  border-color: rgba(45, 212, 191, 0.32);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-shell {
  color: #162033;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
    rgba(248, 252, 251, 0.58);
  border-bottom-color: rgba(18, 27, 52, 0.12);
  box-shadow: 0 14px 42px rgba(18, 27, 52, 0.08);
  text-shadow: none;
}

.ga-system-nav-mounted body.ga-public-page .ga-system-logo {
  filter: drop-shadow(0 1px 10px rgba(18, 27, 52, 0.12));
  opacity: 0.9;
}

.ga-system-nav-mounted body.ga-public-page .ga-system-brand {
  color: #162033;
}

.ga-system-nav-mounted body.ga-public-page .ga-system-link {
  color: rgba(24, 35, 56, 0.78);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-link:hover,
.ga-system-nav-mounted body.ga-public-page .ga-system-link[aria-current="page"] {
  color: #0f172a;
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(18, 27, 52, 0.12);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-cta {
  color: #122033;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(18, 27, 52, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-cta:hover {
  color: #08111f;
  background: rgba(20, 184, 166, 0.16);
  border-color: rgba(20, 184, 166, 0.28);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-subbar {
  border-top-color: rgba(18, 27, 52, 0.08);
  background: rgba(255, 255, 255, 0.36);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-sub-label {
  color: rgba(15, 23, 42, 0.78);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(18, 27, 52, 0.12);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-sub-link {
  color: rgba(24, 35, 56, 0.68);
}

.ga-system-nav-mounted body.ga-public-page .ga-system-sub-link:hover,
.ga-system-nav-mounted body.ga-public-page .ga-system-sub-link[aria-current="page"] {
  color: #0f172a;
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(18, 27, 52, 0.12);
}

.ga-system-subbar {
  min-height: var(--ga-system-subbar-height);
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 16, 0.1);
}

.ga-system-subbar-inner {
  min-height: var(--ga-system-subbar-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-width: 0;
  overflow: hidden;
}

.ga-system-sub-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 8px;
  color: rgba(240, 255, 251, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 780;
}

.ga-system-subnav {
  gap: 4px;
  width: 100%;
  overscroll-behavior-x: contain;
}

.ga-system-sub-link {
  min-height: 24px;
  padding: 0 9px;
  color: rgba(240, 255, 251, 0.68);
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 650;
}

.ga-system-sub-link:hover,
.ga-system-sub-link[aria-current="page"] {
  color: #ffffff;
  background: rgba(45, 212, 191, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

.ga-chain-bridge,
.ga-chain-bridge * {
  box-sizing: border-box;
}

.ga-chain-bridge {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  color: #eefcf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.ga-chain-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 95, 70, 0.18), rgba(15, 23, 42, 0.2) 55%, rgba(14, 116, 144, 0.18)),
    rgba(7, 12, 18, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  padding: clamp(18px, 3vw, 28px);
}

.ga-chain-bridge-kicker {
  display: inline-flex;
  margin: 0 0 10px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(45, 212, 191, 0.1);
  color: rgba(240, 253, 250, 0.9);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.ga-chain-bridge h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

.ga-chain-bridge-text {
  margin: 12px 0 0;
  max-width: 820px;
  color: rgba(238, 252, 248, 0.76);
  font-size: 15px;
  line-height: 1.68;
}

.ga-chain-bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ga-chain-bridge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
}

.ga-chain-bridge-link:hover,
.ga-chain-bridge-link[data-primary="true"] {
  color: #05110f;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.4);
}

.ga-chain-bridge-steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  counter-reset: ga-chain-step;
}

.ga-chain-bridge-steps li {
  display: block;
  position: relative;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 12px 12px 12px 44px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.4;
}

.ga-chain-bridge-steps li::before {
  counter-increment: ga-chain-step;
  content: counter(ga-chain-step);
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 860;
}

.ga-system-skip {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(7, 12, 18, 0.72);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.ga-system-skip:focus {
  top: 8px;
  outline: 2px solid rgba(45, 212, 191, 0.9);
}

.ga-visually-hidden-heading {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  :root {
    --ga-system-topbar-height: 54px;
    --ga-system-subbar-height: 34px;
  }

  .ga-system-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-content: center;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 4px;
  }

  .ga-system-primary {
    justify-content: flex-start;
    order: initial;
    grid-column: auto;
    height: 30px;
    visibility: visible;
  }

  .ga-system-actions {
    justify-content: end;
  }

  .ga-system-subbar-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    align-content: center;
  }

  .ga-system-sub-label {
    display: none;
  }

  .ga-chain-bridge-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ga-system-brand {
    font-size: 14px;
  }

  .ga-system-logo {
    height: 26px;
    max-width: 110px;
  }

  .ga-system-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .ga-system-primary {
    position: absolute;
    top: calc(var(--ga-system-topbar-height) - 4px);
    left: 10px;
    right: 10px;
    z-index: 2147483001;
    display: none;
    max-width: none;
    max-height: min(62vh, 420px);
    overflow-y: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(8, 12, 18, 0.82), rgba(8, 12, 18, 0.66)),
      rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
  }

  .ga-system-shell[data-menu-open="true"] .ga-system-primary {
    display: flex;
  }

  .ga-system-link {
    min-height: 34px;
    padding: 0 11px;
    color: rgba(244, 255, 250, 0.86);
  }

  .ga-system-nav-mounted body.ga-public-page .ga-system-primary {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
      rgba(248, 252, 251, 0.62);
  }

  .ga-system-menu-toggle {
    display: inline-flex;
  }

  .ga-system-cta {
    padding: 0 10px;
  }

  .ga-system-sub-link {
    padding: 0 9px;
  }

  .ga-chain-bridge {
    width: min(100% - 22px, 1180px);
    margin: 20px auto;
  }

  .ga-chain-bridge-links {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.ga-route-chinkara-maven #root main > section:first-child p {
  color: rgba(248, 247, 244, 0.72) !important;
  opacity: 1 !important;
}

.ga-route-chinkara-maven #root main > section:first-child p:first-child {
  color: rgba(248, 247, 244, 0.58) !important;
}

.ga-route-chinkara-maven #root main > section:first-child h1 {
  text-shadow: 0 18px 70px rgba(15, 163, 168, 0.18);
}

html.ga-route-websites,
html.ga-route-websites body,
html.ga-route-crm-systems,
html.ga-route-crm-systems body,
html.ga-route-showcase,
html.ga-route-showcase body,
html.ga-route-chinkara-maven,
html.ga-route-chinkara-maven body {
  max-width: 100%;
  overflow-x: clip;
}

.ga-route-websites #root,
.ga-route-crm-systems #root,
.ga-route-showcase #root,
.ga-route-chinkara-maven #root {
  max-width: 100%;
  overflow-x: clip;
}

.ga-route-websites #root .pin-spacer {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
}

.ga-route-websites #root .pin-spacer > section {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  transform: none !important;
}

.ga-route-websites #root [class*="opacity-0"],
.ga-route-websites #root .showcase-header,
.ga-route-websites #root .section-header,
.ga-route-websites #root .region-animate {
  opacity: 1 !important;
  transform: none !important;
}

.ga-route-websites #root [style*="opacity: 0"] {
  opacity: 1 !important;
}

.ga-route-dashboards #root h1.opacity-0,
.ga-route-dashboards #root p.opacity-0,
.ga-route-dashboards #root h2.opacity-0,
.ga-route-dashboards #root h3.opacity-0,
.ga-route-dashboards #root [class*="opacity-0"],
.ga-route-chinkara-maven #root h1.opacity-0,
.ga-route-chinkara-maven #root p.opacity-0,
.ga-route-chinkara-maven #root [class*="opacity-0"] {
  opacity: 1 !important;
  transform: none !important;
}

.ga-route-dashboards #root [style*="opacity: 0"],
.ga-route-chinkara-maven #root [style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
}

.ga-route-websites .ga-system-shell,
.ga-route-crm-systems .ga-system-shell,
.ga-route-dashboards .ga-system-shell,
.ga-route-field-technology .ga-system-shell,
.ga-route-automation .ga-system-shell {
  background:
    linear-gradient(180deg, rgba(7, 12, 18, 0.26), rgba(7, 12, 18, 0.12)),
    rgba(255, 255, 255, 0.028);
}

.ga-route-websites .ga-system-subbar,
.ga-route-crm-systems .ga-system-subbar,
.ga-route-dashboards .ga-system-subbar,
.ga-route-field-technology .ga-system-subbar,
.ga-route-automation .ga-system-subbar {
  background: rgba(5, 10, 16, 0.055);
}

@media (min-width: 981px) {
  .ga-route-websites #root section[class*="py-28"],
  .ga-route-websites #root section[class*="py-32"],
  .ga-route-websites #root section[class*="py-40"],
  .ga-route-crm-systems #root section[class*="py-28"],
  .ga-route-crm-systems #root section[class*="py-32"],
  .ga-route-crm-systems #root section[class*="py-40"] {
    padding-top: clamp(72px, 7vw, 116px) !important;
    padding-bottom: clamp(72px, 7vw, 116px) !important;
  }
}

@media (max-width: 720px) {
  .ga-route-websites #root section,
  .ga-route-crm-systems #root section {
    scroll-margin-top: calc(var(--ga-system-nav-height) + 18px);
  }

  .ga-route-websites #root section[class*="min-h-screen"],
  .ga-route-websites #root section[class*="min-h-["],
  .ga-route-crm-systems #root section[class*="min-h-screen"],
  .ga-route-crm-systems #root section[class*="min-h-["] {
    min-height: auto !important;
  }

  .ga-route-websites #root section[class*="py-20"],
  .ga-route-websites #root section[class*="py-24"],
  .ga-route-websites #root section[class*="py-28"],
  .ga-route-websites #root section[class*="py-32"],
  .ga-route-websites #root section[class*="py-40"],
  .ga-route-crm-systems #root section[class*="py-20"],
  .ga-route-crm-systems #root section[class*="py-24"],
  .ga-route-crm-systems #root section[class*="py-28"],
  .ga-route-crm-systems #root section[class*="py-32"],
  .ga-route-crm-systems #root section[class*="py-40"] {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .ga-route-websites #root img,
  .ga-route-crm-systems #root img,
  .ga-route-websites #root video,
  .ga-route-crm-systems #root video {
    max-width: 100%;
  }

  .ga-route-websites #root [class*="translate-x-"],
  .ga-route-crm-systems #root [class*="translate-x-"] {
    --tw-translate-x: 0 !important;
  }
}
