@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@400&display=swap");

:root {
  --bg: #fff;
  --white: #ffffff;
  --primary: #2062ff;
  --primary-400: #88b0f9;
  --primary-50: #eff7ff;
  --primary-dark: #1457DD;
  --white-hover: #F0F2F5;
  --text: #101828;
  --text-2: #344054;
  --text-3: #475467;
  --text-dark: #30374f;
  --line: #d0d5dd;
  --pill-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --panel-shadow: 0 4px 4px rgba(16, 24, 40, 0.1), 0 2px 2px rgba(16, 24, 40, 0.06);
  --card-shadow: 0 1px 1px rgba(16, 24, 40, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  /* scroll-behavior:smooth removed — fights trackpad/wheel */
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a{text-decoration:none;}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-shell {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--bg);
  overflow-x: clip;
}

.container {
  width: min(1288px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 12px;
}

.header-pill {
  width: min(1503px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 16px;
}

.header-logo {
  width: 147px;
  height: 44px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  display: flex;
  gap: 2px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-item img {
  width: 16px;
  height: 16px;
}

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

.language-switch {
  width: 56px;
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}

.language-switch img {
  width: 16px;
  height: 16px;
}

.language-switch span {
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-3);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: var(--white-hover);
  border-color: #98A2B3;
}

.btn-icon {
  width: 40px;
  padding: 10px;
}

.hero-stage {
  position: relative;
  min-height: 1595px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #06152d 0%, #0d274f 48%, #4d99d4 78%, #ffffff 100%);
}

.hero-video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1091px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-video-scrim {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1091px;
  background:
    linear-gradient(180deg, rgba(5, 19, 48, 0.42) 0%, rgba(5, 19, 48, 0.18) 34%, rgba(5, 19, 48, 0.56) 100%);
}

.hero-grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1091px;
  background: none;
  pointer-events: none;
}

.hero-blur {
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  contain: layout style;
}

.hero-blur-dark {
  top: 980px;
  width: 2018px;
  height: 220px;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(4, 18, 50, 0.84) 0%, rgba(4, 18, 50, 0) 75%);
}

.hero-blur-blue {
  top: 1040px;
  width: 2252px;
  height: 520px;
  background: linear-gradient(180deg, rgba(8, 24, 49, 0.96) 0%, rgba(42, 119, 190, 0.82) 58%, rgb(248 248 248) 100%);
  mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
  opacity: 1;
}

.section-hero {
  position: relative;
  padding-top: 84px;
  z-index: 1;
}

.hero-copy {
  padding-top: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-copy h1 {
  width: 1288px;
  margin: 0;
  color: #fff;
  font-size: 72px;
  font-weight: 500;
  line-height: 90px;
  text-align: center;
}

.hero-copy h1 span {
  display: inline;
}

.hero-line-accent {
  color: #45b6ff;
}

.hero-copy p {
  width: 800px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}


/* Page-specific CSS moved to PricingPageAsset / AboutPageAsset / SolutionPageAsset / PlatformPageAsset / BlogAsset. */

.hero-buttons {
  display: flex;
  gap: 12px;
}

.hero-principles {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 1000px;
}

.principle-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
}

.principle-card-border {
  border-right: 1px solid #fff;
}

.principle-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}

.principle-icon img {
  width: 24px;
  height: 24px;
}

.principle-card h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.principle-card p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

.section {
  position: relative;
}

.capability-section {
  padding: 80px 32px 0;
  margin-top: -845px;
  z-index: 3;
}

.capability-panel {
  padding: 80px 40px;
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--panel-shadow);
}

.capability-title h2 {
  margin: 0 0 40px;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

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

.capability-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.capability-steps {
  width: 420px;
}

.capability-step {
  display: flex;
  gap: 16px;
  min-height: 220px;
}

.capability-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.capability-step-icon {
  width: 40px;
  height: 40px;
  padding: 6px 11px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary));
  border-radius: 999px;
}

.capability-line span {
  width: 2px;
  flex: 1;
  background: var(--primary);
  border-radius: 2px;
}

.capability-step-copy {
  padding-top: 6px;
  padding-bottom: 32px;
}

.capability-step-copy h3 {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.capability-step-copy p {
  margin: 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 24px;
}

.capability-stack {
  position: relative;
  width: 572px;
  height: 1181px;
}

.stack-item {
  position: absolute;
  left: 0;
  width: 572px;
}

.stack-item-1 { top: 0; height: 289px; }
.stack-item-2 { top: 244px; height: 267px; }
.stack-item-3 { top: 465px; height: 267px; }
.stack-item-4 { top: 687px; height: 267px; }
.stack-item-5 { top: 914px; height: 267px; }

.data-flow-section {
  padding: 80px 32px;
  overflow: visible;
}

.section-deco {
  position: absolute;
  width: 996px;
  height: 584px;
  pointer-events: none;
  opacity: 1;
}

.section-deco-left {
  left: -498px;
  top: -142px;
}

.section-deco-right {
  right: -498px;
  bottom: 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 40px;
}

.section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
}

.section-tag img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-tag span {
  position: relative;
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
}

.section-divider {
  width: 1px;
  height: 32px;
  background: var(--primary);
}

.section-heading h2 {
  width: 960px;
  margin: 0;
  font-size: 35px;
  font-weight: 400;
  line-height: 60px;
  text-align: center;
}

.section-heading p {
  width: 640px;
  margin: 0;
  color: var(--text-3);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}


/* Data flow — Figma 4077:6036 / board 4077:6043 / group 4077:6044 */
.data-flow-section .data-flow-heading h2 {
  width: 960px;
  max-width: 100%;
  font-size: 48px;
  line-height: 60px;
  color: #101828;
}

.data-flow-section .data-flow-heading p {
  color: #475467;
}

.flow-board {
  position: relative;
  width: 1288px;
  height: 676px;
  padding: 57px 57px 40px;
  border: 1.5px solid #fff;
  border-radius: 40px;
  background: linear-gradient(180deg, #0f3e9d 0%, #3676f5 99.914%);
  box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  box-sizing: border-box;
}

.flow-group {
  position: relative;
  width: 1133px;
  height: 579px;
  margin: 0 auto;
}

/* 4077:6104 — board coords (77.5,57) => group (0,0) */
.flow-group__border {
  position: absolute;
  left: 0;
  top: 0;
  width: 1133px;
  height: 536px;
  border: 1px dashed #fff;
  border-radius: 20px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 0;
}

.flow-trace-loop {
  display: none;
}

/* 4077:6045 — (117.5,97) => (40,40) */
.flow-chain-band {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 1;
  width: 1053px;
  height: 205px;
  padding: 57px 52px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-50);
  border-radius: 20px;
  box-sizing: border-box;
}

.flow-chain {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-chain__step {
  position: relative;
  flex: 0 0 91px;
  width: 91px;
  height: 91px;
}

.flow-chain__connector {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-chain__connector img {
  width: 52px;
  height: 6px;
}

.flow-chain__icon {
  display: block;
  width: 91px;
  height: 91px;
}

.flow-chain__text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.flow-chain__step--label-top .flow-chain__text {
  top: -44px;
}

.flow-chain__step--label-bottom .flow-chain__text {
  top: 99px;
}

.flow-chain__step--1 .flow-chain__text { width: 142px; }
.flow-chain__step--2 .flow-chain__text { width: 152px; }
.flow-chain__step--3 .flow-chain__text { width: 189px; }
.flow-chain__step--4 .flow-chain__text { width: 187px; }
.flow-chain__step--5 .flow-chain__text { width: 198px; }
.flow-chain__step--6 .flow-chain__text { width: 152px; }
.flow-chain__step--7 .flow-chain__text { width: 110px; }

.flow-chain__title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.flow-chain__desc {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.flow-link {
  position: absolute;
  z-index: 1;
}

/* 4077:6082 / 6081 — y 444 => 387 */
.flow-link--to-user {
  left: 328px;
  top: 444px;
  transform: scaleX(-1);
}

.flow-link--to-supplier {
  left: 951px;
  top: 444px;
  transform: scaleX(-1);
}

/* 4077:6105 */
.flow-link--retail-down {
  left: 996px;
  top: 245px;
}

.flow-actor {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 0;
  color: #fff;
}

.flow-actor img {
  position: absolute;
  width: 91px;
  height: 91px;
}

.flow-actor figcaption {
  position: absolute;
  text-align: center;
}

.flow-actor figcaption strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.flow-actor figcaption span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

/* 4077:6098 icon + 6102 label */
.flow-actor--user img {
  left: 92px;
  top: 341px;
}

.flow-actor--user figcaption {
  left: 77px;
  top: 440px;
  width: 120px;
}

/* 4077:6083 icon + 6101 label */
.flow-actor--supplier img {
  left: 950px;
  top: 341px;
}

.flow-actor--supplier figcaption {
  left: 912px;
  top: 440px;
  width: 170px;
}
.data-flow-span{text-align: center; margin-top: 20px;}
/* 4077:6086 */
.flow-consumption {
  position: absolute;
  left: 326px;
  top: 291px;
  z-index: 1;
  width: 481px;
  height: 205px;
  padding: 20px 52px 13px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-50);
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}

.flow-consumption__title {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.flow-consumption__icons {
  display: flex;
  justify-content: space-between;
  gap: 52px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.flow-consumption__icons img {
  width: 91px;
  height: 91px;
}

.flow-consumption__note {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

/* 4077:6106 — (155.5,245) => (78,188) */
.flow-traceback {
  position: absolute;
  left: 78px;
  top: 245px;
  z-index: 2;
  width: 119px;
  height: 153px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #fff;
  text-align: center;
}

.flow-traceback img:first-child {
  width: 6px;
  height: 78px;
}

.flow-traceback img:last-child {
  width: 6px;
  height: 31px;
}

.flow-traceback p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  width: 119px;
}

/* 4077:6103 — (424,601) => board (424,601) with padding 57 + centered group */
.flow-governance {
  position: absolute;
  left: 424px;
  top: 601px;
  z-index: 2;
  width: 439px;
  margin: 0;
  color: #fff;
  text-align: center;
}

.flow-governance p {
  margin: 0;
}

.flow-governance strong {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.flow-governance p:last-child {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.modules-section {
  padding: 80px 32px;
}

.modules-section .section-heading {
  padding-bottom: 0;
}

.modules-section .section-heading h2 {
  width: 1288px;
  color: #4d4d4d;
}

.modules-graphic {
  position: relative;
  height: 789px;
  margin-top: 80px;
}

.modules-bg {
  position: absolute;
  left: 40px;
  top: -102px;
  width: 1211px;
  height: 992px;
}

.modules-core {
  position: absolute;
  left: 563px;
  top: 201px;
  width: 162px;
  height: 162px;
  border: 1px solid #fff;
  border-radius: 24px;
  background: #f0f2f5;
  box-shadow: 0 20px 12px rgba(16, 24, 40, 0.08), 0 8px 4px rgba(16, 24, 40, 0.03);
}

.modules-core-ring {
  position: absolute;
  inset: 23px;
  border-radius: 32px;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.4) 0%, #fff 100%);
  box-shadow: var(--pill-shadow);
}

.modules-core img {
  position: absolute;
  inset: 31px;
  width: 97px;
  height: 97px;
}

.module-curve,
.module-line {
  position: absolute;
}

.module-curve-1 { left: 399px; top: 85px; width: 166px; height: 167px; }
.module-curve-1b { left: 399px; top: 479px; width: 166px; height: 167px; transform: scaleY(-1); }
.module-curve-2 { left: 891px; top: 85px; width: 165px; height: 167px; transform: rotate(180deg) scaleY(-1); }
.module-curve-3 { left: 891px; top: 479px; width: 165px; height: 167px; transform: rotate(180deg); }
.module-line-left { left: 399px; top: 281px; width: 165px; height: 1px; }
.module-line-right { left: 726px; top: 281px; width: 165px; height: 1px; }
.module-line-down { left: 645px; top: 363px; width: 1px; height: 121px; }
.module-branch-1 { left: 599px; top: 53px; width: 1px; height: 148px; transform: rotate(90deg); }
.module-branch-2 { left: 629px; top: 28px; width: 1px; height: 173px; transform: rotate(90deg); }
.module-branch-3 { left: 659px; top: 53px; width: 1px; height: 148px; transform: rotate(90deg); }
.module-branch-4 { left: 689px; top: 0; width: 1px; height: 201px; transform: rotate(90deg); }

.module-card {
  position: absolute;
  display: flex;
  gap: 16px;
}

.module-card img {
  flex: 0 0 auto;
}

.module-card-left {
  text-align: right;
}

.module-card-right {
  text-align: left;
}

.module-copy h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.module-copy p {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
  line-height: 20px;
}

.module-copy small {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 12px;
  line-height: 16px;
}

.module-card-1 { left: 10px; top: 18px; width: 408px; }
.module-card-2 { left: 0; top: 261px; width: 365px; }
.module-card-3 { left: 13px; top: 504px; width: 405px; }
.module-card-4 { left: 872px; top: 18px; width: 405px; }
.module-card-5 { left: 925px; top: 261px; width: 352px; }
.module-card-center { left: 441px; top: 557px; width: 408px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.module-card-6 { left: 872px; top: 504px; width: 405px; }

.module-card-1 img,
.module-card-4 img {
  width: 40px;
  height: 42px;
}

.module-card-2 img {
  width: 40px;
  height: 47px;
}

.module-card-3 img {
  width: 40px;
  height: 53px;
}

.module-card-5 img {
  width: 40px;
  height: 48px;
}

.module-card-center img {
  width: 40px;
  height: 40px;
}

.module-card-6 img {
  width: 40px;
  height: 33px;
}

.difference-section {
  padding: 80px 32px;
  overflow: visible;
}

.partner-showcase {
  margin-top: 52px;
}

.partner-banner {
  width: 100%;
  margin: 0;
  height: 538px;
  border-radius: 40px;
  overflow: hidden;
}

.partner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
}

.partner-caption {
  margin: 48px 0 40px;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.partner-logos {
  width: 1288px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logos > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  object-position: center;
  object-fit: contain;
}

.partner-logo-1 {
  height: 50px;
}

.partner-logo-2 {
  height: 50px;
}

.partner-logo-3 {
  height: 50px;
}

.partner-logo-4 {
  height: 50px;
}

.partner-logo-5 {
  height: 50px;
}

.partner-logo-6 {
  height: 50px;
}

.partner-logo-7 {
  height: 50px;
}

.difference-deco-left {
  position: absolute;
  left: -132px;
  bottom: -316px;
  width: 632px;
  height: 632px;
  opacity: 0.85;
}

.difference-deco-right {
  position: absolute;
  top: -174px;
  right: -174px;
  width: 348px;
  height: 348px;
  opacity: 0.8;
}

.difference-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 80px;
}

.difference-header h2 {
  width: 644px;
  margin: 0;
  color: #111322;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
}

.difference-header h2 .difference-brand {
  color: var(--primary);
}

.testimonials-header h2,
.news-header h2,
.faq-container h2,
.contact-copy h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

.difference-header p {
  width: 644px;
  margin: 0;
  padding-top: 0;
  color: #30374f;
  font-size: 16px;
  line-height: 24px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
  margin-bottom: 80px;
}

.difference-card {
  padding: 24px 28px 32px;
  border: 1px solid #fff;
  border-radius: 24px;
  background: radial-gradient(circle at top right, #e2f0fe 10%, #f5f8ff 40.385%, #feffff 80%);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.difference-card__media {
  margin: 0 auto 20px;
  width: 100px;
  height: 100px;
}

.difference-card__media img,
.difference-card img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  object-fit: contain;
}

.difference-card h3 {
  margin: 0 0 16px;
  color: #111322;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.difference-card p {
  margin: 0;
  color: var(--text-3);
  font-size: 16px;
  line-height: 24px;
}

.testimonials-section {
  padding: 80px 32px;
}

.testimonials-body {
  margin-top: 40px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 1264px;
  margin-bottom: 24px;
}

.testimonial-card {
  width: 408px;
  height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f0f2f5;
  border-radius: 16px;
  flex: 0 0 auto;
}

.testimonial-card > p {
  margin: 0;
  color: var(--text-3);
  font-size: 20px;
  line-height: 30px;
}

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

.testimonial-meta img {
  width: 44px;
  height: 44px;
}

.testimonial-meta strong {
  display: block;
  color: var(--text-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.testimonial-meta span {
  display: block;
  color: var(--text-3);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.testimonial-progress {
  width: 1264px;
  height: 8px;
  background: #f0f2f5;
}

.testimonial-progress span {
  display: block;
  width: 235px;
  height: 8px;
  background: var(--primary);
}

.testimonial-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.news-section {
  padding: 80px 32px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-section .news-card img {
  width: 100%;
  max-width: 416px;
  height: 277px;
  border-radius: 16px;
  object-fit: cover;
}

.news-date {
  margin: 16px 0 8px;
  color: var(--text-3);
  font-size: 12px;
  line-height: 16px;
}

.news-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.news-card p:last-child {
  margin: 0;
  color: var(--text-3);
  font-size: 16px;
  line-height: 24px;
}

.faq-section {
  padding: 80px 32px;
  overflow: hidden;
  isolation: isolate;
}

.faq-deco-image {
  position: absolute;
  right: -370px;
  top: -154px;
  width: 739px;
  height: 739px;
  opacity: 0.2 !important;
  z-index: 3;
}

.faq-deco-right {
  position: absolute;
  right: -279px;
  top: -279px;
  width: 558px;
  height: 558px;
  opacity: 1;
  z-index: 1;
}

.faq-deco-left {
  position: absolute;
  left: -359px;
  bottom: -292px;
  width: 719px;
  height: 584px;
  opacity: 1;
  z-index: 2;
}

.faq-container {
  width: 760px;
  position: relative;
  z-index: 4;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.faq-trigger span:first-child {
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  flex: 0 0 auto;
}

.faq-icon img {
  width: 20px;
  height: 20px;
}

.faq-content {
  padding-right: 68px;
  margin-top: 8px;
  padding-left: 5px;
}

.faq-content p {
  margin: 0;
  color: var(--text-3);
  font-size: 16px;
  line-height: 24px;
}

.faq-item:not(.is-open) .faq-content {
  display: none;
}

.contact-section {
  padding: 80px 32px;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-copy {
  width: 640px;
}

.solution-contact-copy {
  width: 640px;
}

.solution-contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
}

.contact-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-meta-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-meta-row img {
  width: 48px;
  height: 48px;
}

.contact-meta-row p {
  margin: 0;
  color: var(--text-3);
  font-size: 14px;
  line-height: 20px;
}

.contact-meta-row strong {
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.about-contact-meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.about-contact-row .gt-fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #2f67f6;
  font-size: 34px;
  line-height: 1;
  flex: 0 0 48px;
}

.about-contact-row p {
  margin: 0 0 4px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 20px;
}

.about-contact-row strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.about-contact-meta a {
  color: inherit;
  text-decoration: none;
}

.about-contact-meta a:hover,
.about-contact-meta a:focus-visible {
  color: var(--primary);
}

.contact-form {
  width: 527px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-3);
  font-size: 12px;
  line-height: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
}

.contact-form textarea {
  min-height: 94px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-3);
}

.about-contact-form {
  width: 527px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-3);
  font-size: 12px;
  line-height: 16px;
}

.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 24px;
}

.about-contact-form textarea {
  min-height: 94px;
  resize: none;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: var(--text-3);
}

.contact-submit {
  align-self: flex-end;
}

.about-contact-submit {
  align-self: flex-end;
}

body.gt-modal-open {
  overflow: hidden;
}

.gt-home-contact .contact-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.gt-home-contact .contact-copy {
    flex: 1 1 auto;
    width: auto;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gt-home-contact .contact-copy h2 {
    margin: 0;
    color: var(--text);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
}

.gt-home-contact .contact-meta {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gt-home-contact .contact-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gt-home-contact .contact-meta-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.gt-home-contact .contact-form {
    width: 527px;
    max-width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.gt-home-contact .contact-form label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-3);
    font-size: 12px;
    line-height: 16px;
}

.gt-register-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.gt-register-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gt-register-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 45, 0.76);
  backdrop-filter: blur(6px);
}

.gt-register-modal__dialog {
  position: relative;
  width: min(1224px, 100%);
  max-height: calc(100vh - 64px);
  padding: 56px;
  overflow: auto;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(6, 21, 45, 0.24);
}

.gt-register-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #475467;
  font-size: 36px;
  line-height: 1;
}

.gt-register-modal__close:hover {
  background: #f5f8ff;
  color: var(--text);
}

.gt-register-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 527px;
  gap: 48px;
  align-items: start;
}

.gt-register-modal__copy h2 {
  margin: 0;
  color: #111322;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
}

.gt-register-modal__meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gt-register-modal__meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gt-register-modal__meta-row img {
  width: 48px;
  height: 48px;
}

.gt-register-modal__meta-row p {
  margin: 0 0 4px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 20px;
}

.gt-register-modal__meta-row strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.gt-register-modal__meta-row a {
  color: inherit;
  text-decoration: none;
}

.gt-register-modal__meta-row a:hover,
.gt-register-modal__meta-row a:focus-visible {
  color: var(--primary);
}

.gt-register-modal__form .contact-form {
  width: 100%;
}

.site-footer {
  position: relative;
}

.footer-top-fade {
  height: 80px;
  /* background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%); */
}

.footer-body {
  background: linear-gradient(180deg, #ffffff 0%, #2062ff 58.234%, #0a276a 100%);
}

.footer-hero {
  width: min(1288px, 100%);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1288 / 414;
  margin: 0 auto;
}

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

.footer-content {
  padding: 48px 0;
  color: #fff;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  width: 301px;
}

.footer-brand img {
  width: 261px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-title {
  margin: 16px 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.footer-brand p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: 192px 161px 125px 272px;
  gap: 32px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.footer-links p{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 20px;
}

.footer-links a{color: #fff;text-decoration:none}
.footer-links a:hover,.footer-links a:focus-visible{color:#f1f1f1}

.footer-contact {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.footer-divider {
  width: min(1264px, 100%);
  height: 1px;
  margin: 40px 0;
}

.footer-divider img {
  width: 100%;
  height: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.scroll-top {
  position: absolute;
  right: 36px;
  top: 1490px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  background: var(--primary);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top img {
  width: 20px;
  height: 20px;
}


/* Residual unscoped rules retained on ThemeAsset */
/* Blog / Post / Solution / Platform */
/* —— Cursor tech mesh (theme-wide, desktop pointer only) —— */
.gt-cursor-mesh {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 180;
  opacity: 0.85;
  contain: strict;
  transform: translateZ(0);
}

@media (max-width: 1024px), (prefers-reduced-motion: reduce), (pointer: coarse) {
  .gt-cursor-mesh {
    display: none !important;
  }
}
@media (max-width: 767px){
  .gt-home-contact .contact-grid{gap: 20px;}
  .gt-home-contact .contact-copy{gap: 10px;}
  .gt-home-contact .contact-meta{gap: 8px;}
  .contact-meta-row img{width: 25px; height: 25px;}
  .contact-meta-row p{line-height: 1.5;}
  .gt-home-contact .contact-copy h2{font-size: 25px; line-height: 1.5;}
}
