/* ============================================================
   STRATO EARTH - Exact Figma Match (1440px Desktop)
   Measurements extracted directly from Figma node tree.
   ============================================================ */

@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Exo';
  src: url('../fonts/Exo-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; font-style: italic; font-display: swap;
}

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --blue:       #1571e6;
  --blue-dark:  #0d5fc7;
  --navy:       #0b2c57;
  --dark:       #000a1a;
  --dark-card:  #010b1c;
  --light-bg:   #e5effc;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --text:       #111827;
  --text-gray:  #6b7280;
  --border:     #e5e7eb;
  --font:       'Exo', sans-serif;
  --max-w:      1480px;       /* Tightened desktop frame for a more balanced reading width */
  --pad:        56px;         /* Slightly larger side gutters for more breathing room */
  --section-v:  100px;        /* Figma section vertical padding */
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input,textarea,select { font-family: var(--font); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
@media(max-width:1100px) { .container { padding: 0 40px; } }
@media(max-width:768px)  { .container { padding: 0 20px; } }

/* ── TYPOGRAPHY - exact Figma values ───────────────────────── */
/* Figma h1 (hero): fs=54 fw=600 lh=66 */
h1 { font-size: clamp(32px, 3.75vw, 54px); font-weight: 600; line-height: 1.22; }
/* Figma h2 (section titles): scaled up for wider desktop use */
h2 { font-size: clamp(30px, 3.7vw, 56px); font-weight: 600; line-height: 1.18; }
/* Shared section headings slightly larger */
h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 600; line-height: 1.22; }
h4 { font-size: clamp(18px, 1.55vw, 23px); font-weight: 600; line-height: 1.28; }
p  { line-height: 1.65; }

/* Shared section subtitle scaled for fuller desktop layouts */
.section-desc { font-size: clamp(20px, 1.9vw, 27px); font-weight: 400; line-height: 1.46; }

/* ── BUTTONS - Figma: h=56px, pad=16px 24px, fs=16 fw=500 ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px; font-size: 16px; font-weight: 500; line-height: 24px;
  min-height: 56px; border-radius: 8px; transition: all .2s ease;
  white-space: nowrap; cursor: pointer; }
.btn-primary   { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 20px rgba(21,113,230,.4); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-white  { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--light-bg); }
.btn-ghost  { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }

/* ── SECTION ─────────────────────────────────────────────────── */
/* Figma section padding: 100px top and bottom */
.section { padding: var(--section-v) 0; }
.bg-dark  { background: var(--dark); color: #fff; }
.bg-light { background: var(--light-bg); }
.bg-off   { background: var(--off-white); }
.bg-white { background: #fff; }

/* Eyebrow label above section titles */
.eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--blue); margin-bottom: 14px; display: block; }
.eyebrow-dim { color: rgba(255,255,255,.55); }

/* Section heading block: eyebrow + h2 + desc */
/* Figma heading block: h2 [1300x58] + desc [940x34], total ~108px */
.sh { margin-bottom: 56px; }
.sh h2 { color: var(--navy); margin-bottom: 16px; }
.sh h2.w { color: #fff; }
.sh .section-desc { color: var(--text-gray); max-width: 780px; }
.sh .section-desc.w { color: rgba(255,255,255,.72); }
.sh.c { text-align: center; }
.sh.c .section-desc { margin: 0 auto; }
.sh--faq .section-desc { max-width: 1120px; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 600; color: var(--blue); transition: gap .2s; }
.link-arrow:hover { gap: 10px; }
.link-arrow::after { content: '→'; }

/* ── HEADER - Figma: 1440x88px ─────────────────────────────── */
.site-header { position: relative; z-index: 200; background: #fff;
  height: 88px; }
.site-header.scrolled { box-shadow: none; }
.site-header .container { max-width: 100%; padding-left: 40px; padding-right: 40px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.header-logo img { height: 51px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { font-size: 19px; font-weight: 500; color: var(--text); transition: color .2s, border-color .2s; white-space: nowrap; line-height: 24px; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.header-nav a:hover, .header-nav a.active { color: var(--blue); border-bottom-color: var(--blue); }
/* Figma "Get In Touch" button: 140x56px, white fill + blue outline */
.header-cta { background: #fff; color: var(--blue); padding: 16px 28px;
  border: 1px solid var(--blue); border-radius: 12px; font-size: 19px; font-weight: 500; min-height: 60px;
  min-width: 164px; transition: background .2s, border-color .2s, color .2s; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; }
.header-cta:hover { background: #eef5ff; border-color: var(--blue-dark); color: var(--blue-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 210; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; background: #fff; z-index: 199; padding: 100px 24px 40px; flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--text); padding: 16px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn-primary { margin-top: 28px; border-radius: 28px; justify-content: center; width: 100%; color: #fff; }
@media(min-width:1101px) {
  .header-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
  .header-logo { justify-self: center; }
  .header-nav { justify-self: center; gap: 36px; }
  .header-cta { justify-self: center; }
}
@media(max-width:1100px) { .header-nav, .header-cta { display: none; } .nav-toggle { display: flex; } }

/* ── HOME HERO - Figma: 1440x850px ─────────────────────────── */
.home-hero { position: relative; min-height: 762px; overflow: hidden; background: #000;
  border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
.home-hero__frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, #000 100%);
}
.home-hero__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 36%, rgba(45,149,241,.18) 0%, rgba(45,149,241,.08) 18%, rgba(0,0,0,0) 42%),
    linear-gradient(90deg, #000 0%, #000 38%, #04111e 58%, #0a2741 78%, #0b3457 100%);
  overflow: hidden;
}
.home-hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 12%, rgba(0,0,0,.28) 28%, rgba(0,0,0,.18) 56%, rgba(0,0,0,.7) 84%, rgba(0,0,0,.98) 100%);
}
.home-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.99) 0%, rgba(0,0,0,.97) 18%, rgba(0,0,0,.86) 34%, rgba(0,0,0,.58) 52%, rgba(0,0,0,.18) 74%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.02) 18%, rgba(0,0,0,0) 54%, rgba(0,0,0,.64) 80%, rgba(0,0,0,.98) 100%);
}
.home-hero__orb {
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 1;
  width: min(70vw, 1040px);
  height: calc(100% + 2px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-right: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 7%, #000 17%, #000 94%, rgba(0,0,0,.72) 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 7%, #000 17%, #000 94%, rgba(0,0,0,.72) 98%, transparent 100%);
}
.home-hero__orb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 56% 42%, rgba(38,151,247,.16) 0%, rgba(38,151,247,.08) 22%, rgba(38,151,247,.02) 44%, rgba(1,11,28,0) 66%),
    linear-gradient(180deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.04) 24%, rgba(0,0,0,.34) 100%);
  filter: blur(22px);
}
.home-hero__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: .96;
  mix-blend-mode: screen;
  filter: saturate(1.16) brightness(.94) contrast(1.04);
  transform: scale(1.075);
}
.home-hero__content {
  position: relative;
  z-index: 4;
  width: 750px;
  min-height: 762px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 138px 0 112px;
}
.home-hero__brand { width: 156px; max-width: 100%; height: auto; margin-bottom: 36px; }
.home-hero__content h1 { color: #fff; margin-bottom: 20px; max-width: 750px; }
.home-hero__content .section-desc { color: rgba(255,255,255,.8); max-width: 750px; margin-bottom: 64px; font-size: clamp(18px, 1.67vw, 24px); line-height: 1.42; }
.home-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.home-hero__btns .btn { min-width: 210px; }
.home-hero__btn-marketplace {
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(255,255,255,.12);
}

/* ── PAGE HERO - Figma: 1440x700px ─────────────────────────── */
/* The shared header is 88px tall; hero surface below it is 612px */
.page-hero {
  --hero-content-offset: 136px;
  --hero-copy-max: 640px;
  --hero-bg-position: center center;
  --hero-btn-width: auto;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.98) 0%, rgba(1,11,28,.94) 32%, rgba(1,11,28,.76) 58%, rgba(1,11,28,.38) 82%, rgba(1,11,28,.08) 100%);
  position: relative;
  min-height: 612px;
  background: var(--dark-card);
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-bg-position); opacity: 1; }
.page-hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__content { max-width: 750px; padding-top: var(--hero-content-offset); padding-bottom: 88px; }
.page-hero__content--centered { margin: 0 auto; text-align: center; }
.page-hero__content h1 { color: #fff; margin-bottom: 20px; max-width: 750px; }
.page-hero__content .section-desc { color: rgba(255,255,255,.9); max-width: var(--hero-copy-max); margin-bottom: 40px; font-size: clamp(18px, 1.67vw, 24px); line-height: 1.42; }
.page-hero__content--centered h1,
.page-hero__content--centered .section-desc { margin-left: auto; margin-right: auto; }
.page-hero .btn { min-width: var(--hero-btn-width); }
.btn--hero-multiline {
  min-height: 72px;
  padding: 12px 18px;
  white-space: normal;
  justify-content: center;
}
.page-hero--consulting .btn--hero-multiline {
  width: 167px;
  min-width: 167px;
  max-width: 167px;
  min-height: 64px;
  padding: 12px 24px;
}
.btn--hero-multiline span {
  display: block;
  width: 100%;
  max-width: 128px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.18;
}
.btn--hero-multiline em {
  font-style: italic;
  font-weight: 500;
}

.page-hero--about .page-hero__content,
.page-hero--consulting .page-hero__content,
.page-hero--workflows .page-hero__content,
.page-hero--maps .page-hero__content,
.page-hero--development .page-hero__content {
  max-width: 980px;
  padding-top: 112px;
}
.page-hero--about .page-hero__content h1,
.page-hero--consulting .page-hero__content h1,
.page-hero--workflows .page-hero__content h1,
.page-hero--maps .page-hero__content h1,
.page-hero--development .page-hero__content h1 {
  max-width: 980px;
  margin-bottom: 24px;
}
.page-hero--about .page-hero__content .section-desc,
.page-hero--consulting .page-hero__content .section-desc,
.page-hero--workflows .page-hero__content .section-desc,
.page-hero--maps .page-hero__content .section-desc,
.page-hero--development .page-hero__content .section-desc {
  max-width: 760px;
  margin-bottom: 44px;
}

.page-hero--about {
  --hero-btn-width: 167px;
  --hero-copy-max: 700px;
  --hero-bg-position: center bottom;
  --hero-overlay: linear-gradient(180deg, rgba(1,11,28,.1) 0%, rgba(1,11,28,0) 32%), linear-gradient(90deg, rgba(1,11,28,.62) 0%, rgba(1,11,28,.28) 38%, rgba(1,11,28,.02) 76%);
}
.page-hero--workflows {
  --hero-content-offset: 102px;
  --hero-btn-width: 169px;
  --hero-overlay: linear-gradient(90deg, rgba(0,8,20,.68) 0%, rgba(0,8,20,.58) 26%, rgba(0,8,20,.36) 56%, rgba(0,8,20,.14) 80%, rgba(0,8,20,.02) 100%);
}
.page-hero--maps {
  --hero-btn-width: 169px;
  --hero-overlay: linear-gradient(90deg, rgba(0,8,20,.86) 0%, rgba(0,8,20,.8) 28%, rgba(0,8,20,.56) 54%, rgba(0,8,20,.24) 78%, rgba(0,8,20,.03) 100%);
}
.page-hero--consulting {
  --hero-btn-width: 167px;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.42) 0%, rgba(1,11,28,.36) 32%, rgba(1,11,28,.22) 56%, rgba(1,11,28,.1) 80%, rgba(1,11,28,.02) 100%);
}
.page-hero--consulting .btn--hero-multiline span {
  max-width: none;
  text-align: center;
}
.page-hero--development {
  --hero-btn-width: 226px;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.86) 0%, rgba(1,11,28,.84) 32%, rgba(1,11,28,.64) 54%, rgba(1,11,28,.28) 80%, rgba(1,11,28,.05) 100%);
}
.page-hero--careers {
  --hero-content-offset: 152px;
  --hero-btn-width: 226px;
  --hero-copy-max: 760px;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.88) 0%, rgba(1,11,28,.84) 30%, rgba(1,11,28,.58) 54%, rgba(1,11,28,.2) 78%, rgba(1,11,28,.02) 100%);
  --hero-bg-position: center right;
}
.page-hero--careers .page-hero__content--centered {
  max-width: 720px;
  text-align: left;
  transform: translateX(-132px);
}
.page-hero--careers .page-hero__content--centered h1,
.page-hero--careers .page-hero__content--centered .section-desc {
  margin-left: 0;
  margin-right: 0;
}
.page-hero--contact {
  --hero-content-offset: 252px;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.68) 0%, rgba(1,11,28,.62) 34%, rgba(1,11,28,.42) 58%, rgba(1,11,28,.2) 82%, rgba(1,11,28,.04) 100%);
}
.page-hero--contact .page-hero__content { padding-bottom: 0; }
.page-hero--contact .page-hero__content h1 { font-size: clamp(40px, 4.6vw, 66px); line-height: 1.14; }
.page-hero--case-studies {
  --hero-content-offset: 168px;
  --hero-btn-width: 180px;
  --hero-overlay: linear-gradient(90deg, rgba(1,11,28,.88) 0%, rgba(1,11,28,.84) 32%, rgba(1,11,28,.62) 56%, rgba(1,11,28,.24) 80%, rgba(1,11,28,.05) 100%);
}

/* ── STATS SECTION ──────────────────────────────────────────── */
/* Figma: section h=790, title+subtitle 108px, stat boxes 208px, logos 162px */
.stats-section { padding: var(--section-v) 0; }
.stats-heading { margin-bottom: 56px; }
.stats-heading h2 { color: var(--navy); margin-bottom: 16px; }
.stats-heading .section-desc { color: var(--text-gray); }
/* Figma stat boxes: 1300x208px, 3 equal cols (433px each), bg=#ffffff, bordered */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 64px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.expertise-card {
  min-height: 232px;
  padding: 48px 44px;
  background: #fff;
  border-right: 1px solid var(--border);
}
.expertise-card:last-child { border-right: none; }
.expertise-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(21,113,230,.08);
  margin-bottom: 28px;
}
.expertise-icon img { width: 30px; height: 30px; }
.expertise-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.expertise-copy { font-size: 17px; line-height: 1.58; color: var(--text-gray); }
/* Figma logos strip: 1440x162px */
.trust-strip { text-align: center; }
.trust-strip .section-desc { color: var(--text-gray); margin-bottom: 36px; }
.trust-slider__viewport { overflow: visible; }
.trust-dots,
.trust-dots.mobile-only { display: none !important; }
.trust-logos {
  display: grid;
  grid-template-columns: 1.45fr 1.1fr .8fr 1fr .92fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  padding: 12px 0 6px;
}
.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}
.trust-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.trust-logo--datastream img { max-width: 292px; max-height: 60px; }
.trust-logo--iisd img { max-width: 190px; max-height: 56px; }
.trust-logo--tesera img { max-width: 108px; max-height: 54px; }
.trust-logo--ava img { max-width: 170px; max-height: 52px; }
.trust-logo--cove img { max-width: 156px; max-height: 46px; }
.trust-logo img:hover { transform: translateY(-1px); opacity: .96; }

/* ── SPLIT LAYOUT - Figma: 2-col 640px+640px, gap=20px ─────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
.split.gap-large { gap: 64px; }
.split.rev .split-img { order: -1; }
.split-text h2 { color: var(--navy); margin-bottom: 16px; }
.split-text h2.w { color: #fff; }
.split-text > .section-desc { color: var(--text-gray); margin-bottom: 34px; }
.split-text > .section-desc.w { color: rgba(255,255,255,.75); }
.split-img { border-radius: 12px; overflow: hidden; }
.split-img img { width: 100%; height: 520px; object-fit: cover; display: block; }

/* ── INNOVATION CARDS - Figma: 2 white cards 640x556px ──────── */
/* Section bg: #e5effc (light blue) */
.inno-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.inno-card { background: #fff; border-radius: 12px; padding: 38px; overflow: hidden; display: flex; flex-direction: column; }
.inno-icon { width: 54px; height: 54px; background: var(--light-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; flex-shrink: 0; }
.inno-icon img { width: 28px; height: 28px; }
.inno-card h4 { color: var(--navy); margin-bottom: 8px; }
.inno-card p { font-size: 17px; color: var(--text-gray); line-height: 1.7; margin-bottom: 28px; }
.inno-card .card-img { margin: auto -38px -38px; border-radius: 0 0 12px 12px; overflow: hidden; }
.inno-card .card-img img { width: 100%; height: 250px; object-fit: cover; display: block; }

/* ── PAIN / FEATURE POINTS - 3 col bullet cards ─────────────── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pain-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 32px; }
.pain-card img { width: 36px; height: 36px; margin-bottom: 16px; opacity: .7; filter: brightness(0) invert(1); }
.pain-card h4 { color: #fff; margin-bottom: 10px; font-size: 20px; }
.pain-card p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.68; }
.geo-quote-card {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #07172b;
}
.geo-quote-card > img { display: block; }
.geo-quote-card__quote {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 520px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 30px;
}
.geo-quote-card__quote p {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

/* ── WHAT WE OFFER - alternating rows ───────────────────────── */
/* Figma: each row 1300x328px, text 596px + photo 640px, separated by lines */
.offer-list { margin-top: 64px; }
.offer-row { display: grid; grid-template-columns: 596px 1fr; gap: 0; align-items: center;
  border-top: 1px solid var(--border); padding: 48px 0; }
.offer-row.rev { grid-template-columns: 1fr 596px; }
.offer-row.rev .offer-img { order: -1; }
.offer-text { padding-right: 72px; }
.offer-row.rev .offer-text { padding-right: 0; padding-left: 72px; }
.offer-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: 12px; display: block; }
.offer-text h3 { color: var(--navy); margin-bottom: 12px; font-size: clamp(27px, 2.8vw, 40px); }
.offer-text p { font-size: 19px; color: var(--text-gray); line-height: 1.75; margin-bottom: 28px; }
.offer-img img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; }

/* ── DELIVER CARDS - Figma: 2 white cards 640x678px ─────────── */
/* Section bg: #000a1a (dark) */
.deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
.deliver-card { background: #fff; border-radius: 12px; overflow: hidden; }
.deliver-card__img { height: 380px; overflow: hidden; }
.deliver-card__img img { width: 100%; height: 100%; object-fit: cover; }
.deliver-card__body { padding: 38px; }
.deliver-card__body h3 { color: var(--navy); margin-bottom: 12px; }
.deliver-card__body p { font-size: 17px; color: var(--text-gray); line-height: 1.72; }
.deliver-grid--list .deliver-card {
  min-height: 678px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f2ff 100%);
}
.deliver-grid--list .deliver-card__img {
  height: 248px;
  border-bottom: 1px solid rgba(11,44,87,.08);
}
.deliver-grid--list .deliver-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deliver-grid--list .deliver-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 38px 36px;
}
.deliver-grid--list .deliver-card__body p { margin-bottom: 22px; }
.deliver-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.deliver-points li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.45;
}
.deliver-points li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ── DELIVER LIST (consulting What We Deliver) ───────────────── */
.deliver-list { margin-top: 24px; }
.d-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.d-item:last-child { border-bottom: none; }
.d-num { width: 36px; height: 36px; background: var(--blue); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.d-item h4 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.d-item p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.62; }

/* ── HOME CASE STUDY SECTION ────────────────────────────────── */
/* Figma: 2 side-by-side cards, left 860px, right 420px, total 1300px (gap=20) */
.home-cs-grid { display: grid; grid-template-columns: 1fr 420px; gap: 28px; margin-top: 64px; }
.home-cs-card { border-radius: 12px; overflow: hidden; position: relative; min-height: 460px; }
.home-cs-card.main { background: linear-gradient(135deg, #13235c 0%, #1546aa 100%); }
.home-cs-card.stats { background: var(--light-bg); }
.cs-card-label { display: inline-flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 18px; }
.cs-card-label::before { content: ''; display: block; width: 16px; height: 16px; background: var(--blue); border-radius: 3px; }
.cs-card-label--plain {
  color: #a8d2ff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  font-weight: 600;
}
.cs-card-label--plain::before {
  display: none;
}
.home-cs-card__body { padding: 38px; position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.home-cs-card__body h3 { font-size: 24px; color: var(--navy); margin-bottom: 14px; }
.home-cs-card__body p { font-size: 17px; color: var(--text-gray); line-height: 1.75; flex: 1; }
.home-cs-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.home-cs-card.main::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,18,57,.78) 0%, rgba(15,43,108,.6) 52%, rgba(18,77,177,.42) 100%),
    radial-gradient(circle at 80% 24%, rgba(96,159,255,.26) 0%, transparent 38%);
  z-index: 1;
}
.home-cs-card.main .home-cs-card__bg {
  opacity: .28;
  mix-blend-mode: screen;
}
.home-cs-card.main .home-cs-card__body {
  padding: 34px 44px 34px;
}
.home-cs-card.main .home-cs-card__body h3 {
  color: #fff;
  margin-bottom: 28px;
  font-size: clamp(28px, 2.3vw, 40px);
}
.home-cs-card.main .link-arrow,
.home-cs-card.main .link-arrow::after {
  color: #fff;
}
.cs-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2px;
}
.home-cs-card.main .cs-story > div {
  padding: 14px 26px 6px 0;
  border-right: 1px solid rgba(255,255,255,.24);
}
.home-cs-card.main .cs-story > div:nth-child(2) {
  padding-left: 26px;
}
.home-cs-card.main .cs-story > div:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 26px;
}
.cs-story h4 { color: var(--navy); font-size: 28px; line-height: 1.18; margin-bottom: 8px; }
.cs-story p { flex: none; font-size: 17px; line-height: 1.68; }
.home-cs-card.main .cs-story h4 {
  color: #fff;
  font-size: clamp(24px, 2vw, 36px);
}
.home-cs-card.main .cs-story p {
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.55;
}
.home-cs-card__copy { flex: none; font-size: 17px; line-height: 1.75; }
.home-cs-card__globe {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(21,113,230,.35), rgba(21,113,230,.05) 55%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.5), rgba(255,255,255,0) 70%);
}
.home-cs-card__spacer { flex: 1; }
.home-cs-card__button { margin-top: 24px; align-self: flex-start; }

/* ── FEAT ITEMS (icon + title + description) ────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; margin-top: 58px; }
.feat-item__icon { width: 58px; height: 58px; background: var(--light-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-item__icon img { width: 30px; height: 30px; object-fit: contain; }
.feat-item h4 { color: var(--navy); margin-bottom: 12px; font-size: 20px; font-weight: 600; }
.feat-item p { font-size: 16px; color: var(--text-gray); line-height: 1.7; }

/* ── FOUNDING TEAM ──────────────────────────────────────────── */
/* Figma: 2 cards 640x500px each, bg=#000a1a section */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
.team-card { background: #eff3f7; border-radius: 12px; overflow: hidden; position: relative; min-height: 540px; }
.team-card__photo { width: 100%; height: 330px; object-fit: cover; object-position: center top; display: block; }
.team-card__body { padding: 36px; background: #fff; }
.team-card__body--compact {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-name { font-size: 25px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.team-role { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 16px; line-height: 1.45; }
.team-bio { font-size: 16px; color: var(--text-gray); line-height: 1.75; margin-bottom: 18px; }
.team-linkedin { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--blue); font-weight: 600; }
/* Dark bg version for about page */
.team-card.dark-bg { background: rgba(255,255,255,.06); }
.team-card.dark-bg .team-card__body { background: rgba(255,255,255,.04); }
.team-card.dark-bg .team-name { color: #fff; }
.team-card.dark-bg .team-bio { color: rgba(255,255,255,.7); }
.team-grid--compact .team-card__photo { height: 390px; }
.team-grid--compact .team-role {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  color: rgba(11,44,87,.78);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
/* Figma: title left (640px), 2 cards right (640px total) */
.testi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.testi-title h2 { color: var(--navy); margin-bottom: 16px; }
.testi-title .section-desc { color: var(--text-gray); }
.testi-cards { display: flex; flex-direction: column; gap: 20px; }
/* Figma testimonial cards: 640x292px, bg=#e5effc */
.testi-card { background: var(--light-bg); border-radius: 12px; padding: 40px; }
.testi-logo { margin-bottom: 24px; }
.testi-logo img { height: 56px; width: auto; object-fit: contain; object-position: left; display: block; }
.testi-logo--text { color: var(--navy); font-size: 26px; font-weight: 500; line-height: 1; }
.testi-quote { font-size: 17px; color: var(--text-gray); line-height: 1.8; font-style: italic;
  margin-bottom: 24px; padding-left: 20px; border-left: 3px solid var(--blue); }
.testi-author { font-size: 15px; font-weight: 600; color: var(--navy); }
/* Dot indicators */
.testi-dots { display: flex; gap: 8px; margin-top: 24px; }
.testi-dot { width: 24px; height: 6px; border-radius: 3px; background: var(--blue); }
.testi-dot.dim { width: 6px; background: #d3e7ff; }

/* ── VALUES (dark bg) ───────────────────────────────────────── */
.values-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.val-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 32px; }
.val-icon { width: 48px; height: 48px; background: rgba(21,113,230,.25); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.val-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.val-card h4 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.val-card p { font-size: 15px; color: rgba(255,255,255,.66); line-height: 1.7; }

/* ── ABOUT AWS PARTNERSHIP ─────────────────────────────────── */
.section--aws-partnership { padding-top: 0; }
.aws-partnership {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}
.aws-partnership__copy,
.aws-partnership__card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(15,53,102,.06);
}
.aws-partnership__copy { padding: 40px 42px; }
.aws-partnership__copy h2 { color: var(--navy); margin-bottom: 16px; }
.aws-partnership__copy .section-desc { color: var(--text-gray); max-width: 760px; margin-bottom: 18px; }
.aws-partnership__copy p:last-child { font-size: 17px; color: var(--text-gray); line-height: 1.8; }
.aws-partnership__card {
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.aws-partnership__logo-wrap {
  width: 100%;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(11,44,87,.08);
  display: flex;
  justify-content: center;
}
.aws-partnership__logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}
.aws-partnership__meta h3 { color: var(--navy); font-size: 24px; margin-bottom: 12px; }
.aws-partnership__meta p { font-size: 16px; color: var(--text-gray); line-height: 1.75; }
.aws-badge-carousel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8fe 100%);
  box-shadow: 0 18px 42px rgba(15,53,102,.05);
  padding: 20px 28px;
}
.aws-badge-carousel__track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
}
.aws-badge-slot {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #cfd6df;
  border: 1px solid #bcc6d2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}
.aws-badge-placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #cfd6df;
}
.aws-badge-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── NUMBERS STATS ──────────────────────────────────────────── */
.nums-grid { display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 48px; }
.num-item { padding: 48px 24px; text-align: center; border-right: 1px solid var(--border); }
.num-item:last-child { border-right: none; }
.num-val { font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.num-label { font-size: 15px; color: var(--text-gray); line-height: 1.5; }

/* About page keeps this section as three even stat cards. */
.page--about .nums-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page--about .num-item--cta {
  grid-column: auto;
  background: #fff;
}
.page--about .num-item--cta > .num-val,
.page--about .num-item--cta > .num-label {
  display: block;
}
.page--about .num-item__mobile-copy {
  display: none !important;
}

/* ── HOW IT WORKS - alternating full-bleed rows ──────────────── */
/* Figma: each step fills full width, text one side, image other side */
.how-steps { display: flex; flex-direction: column; }
.how-step { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px;
  border-top: 1px solid rgba(255,255,255,.07); }
.how-step:first-child { border-top: none; }
.step-text { padding: 72px 72px; display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.02); }
.step-num { width: 48px; height: 48px; background: var(--blue); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin-bottom: 22px; flex-shrink: 0; }
.step-text h3 { color: #fff; margin-bottom: 14px; font-size: 27px; }
.step-text p { font-size: 19px; color: rgba(255,255,255,.74); line-height: 1.75; }
.step-img { overflow: hidden; border-left: 1px solid rgba(255,255,255,.07); }
.step-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.how-step.rev .step-text { order: 2; border-left: 1px solid rgba(255,255,255,.07); }
.how-step.rev .step-img { order: 1; border-left: none; border-right: 1px solid rgba(255,255,255,.07); }
.how-step--text-only { grid-template-columns: 1fr; }
.how-step--text-only .step-text {
  border-left: none;
  max-width: 960px;
}
.page--maps .how-step .step-img,
.page--workflows .how-step .step-img {
  height: 400px;
  min-height: 400px;
}
.page--maps .how-step .step-img img,
.page--workflows .how-step .step-img img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

/* Maps "How It Works" - lighter style */
.how-steps.light .how-step { border-top: 1px solid var(--border); background: #fff; }
.how-steps.light .step-text { background: var(--off-white); }
.how-steps.light .step-text h3 { color: var(--navy); }
.how-steps.light .step-text p { color: var(--text-gray); }
.how-steps.light .step-img { border-left: 1px solid var(--border); }
.how-steps.light .how-step.rev .step-text { border-left: 1px solid var(--border); }
.how-steps.light .how-step.rev .step-img { border-right: 1px solid var(--border); border-left: none; }

/* ── OUR PROCESS (dev page) ─────────────────────────────────── */
/* Figma: 2-col, image left 618px, process steps right 618px */
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.process-img { border-radius: 12px; overflow: hidden; }
.process-img img { width: 100%; height: 560px; object-fit: cover; }
.p-steps-list { display: flex; flex-direction: column; }
.p-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.p-step:last-child { border-bottom: none; }
.p-num { width: 40px; height: 40px; background: var(--blue); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.p-step h4 { color: var(--navy); font-size: 19px; margin-bottom: 6px; }
.p-step p { font-size: 16px; color: var(--text-gray); line-height: 1.65; }

/* ── TECH BADGES ────────────────────────────────────────────── */
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tbadge { padding: 10px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); transition: all .2s; }
.tbadge:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.tbadge--more {
  background: linear-gradient(135deg, rgba(21,113,230,.28) 0%, rgba(120,186,255,.18) 100%);
  border-color: rgba(120,186,255,.7);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(120,186,255,.16), 0 10px 24px rgba(5,27,58,.26);
}
.tbadge--more:hover {
  background: linear-gradient(135deg, rgba(42,132,244,.95) 0%, rgba(120,186,255,.82) 100%);
  border-color: rgba(173,214,255,.95);
  color: #fff;
  transform: translateY(-1px);
}

/* ── FAQ ────────────────────────────────────────────────────── */
/* Figma: FAQ items 1080x88px each, in a 1300px container */
.faq-wrap,
.faq-item,
.faq-btn,
.faq-body { overflow-anchor: none; }
.faq-wrap { max-width: 860px; }
.faq-wrap.c { margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; font-size: 20px; font-weight: 500; text-align: left; color: var(--navy);
  cursor: pointer; gap: 16px; transition: color .2s; }
.faq-btn:hover { color: var(--blue); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--blue);
  transition: transform .25s; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 300; }
.faq-icon::after { content: '+'; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 28px; font-size: 17px; color: var(--text-gray); line-height: 1.8; max-width: 800px; }
.faq-item.open .faq-body { display: block; }

/* ── CASE STUDIES ───────────────────────────────────────────── */
.cs-filters { display: flex; gap: 10px; margin-bottom: 56px; }
.cs-tab { padding: 11px 26px; border-radius: 24px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border); color: var(--text-gray); background: #fff; transition: all .2s; }
.cs-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.cs-panel { display: none; }
.cs-panel.active { display: block; }
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cs-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 36px; transition: box-shadow .2s; }
.cs-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.cs-card__cover { width: 100%; height: 210px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.cs-card__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.cs-card__logo { height: 56px; width: auto; object-fit: contain; display: block; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cs-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--blue); background: rgba(21,113,230,.08); border: 1px solid rgba(21,113,230,.2); border-radius: 4px; padding: 4px 9px; }
.cs-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 18px; }
.cs-block h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-gray); margin-bottom: 6px; }
.cs-block p { font-size: 16px; color: var(--text-gray); line-height: 1.75; }
.cs-card--post {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.cs-card--post h3 {
  font-size: 20px;
  line-height: 1.38;
}
.cs-post__link {
  margin-top: auto;
  align-self: flex-start;
}
/* Consulting page case studies: cards in light-blue bg section */
.cs-card-list { display: flex; flex-direction: column; gap: 24px; max-width: 1080px; }
.cs-list-card { background: #fff; border-radius: 12px; padding: 40px; }
.cs-list-card__top { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.cs-list-card__logo { height: 56px; width: auto; object-fit: contain; display: block; }
.cs-list-card h3 { color: var(--navy); font-size: 24px; margin-bottom: 18px; }
.cs-list-card p { font-size: 16px; color: var(--text-gray); line-height: 1.75; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 48px; }
.pg-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid var(--border);
  color: var(--text-gray); background: #fff; transition: all .2s; }
.pg-btn.active, .pg-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Why StratoEarth */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.why-left h2 { color: var(--navy); margin-bottom: 16px; }
.why-left > .section-desc { color: var(--text-gray); }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; background: var(--light-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon img { width: 24px; height: 24px; }
.why-item h4 { color: var(--navy); font-size: 20px; margin-bottom: 6px; }
.why-item p { font-size: 16px; color: var(--text-gray); line-height: 1.68; }

/* Open Positions */
/* ── CONTACT PAGE ───────────────────────────────────────────── */
.open-pos {
  background:
    radial-gradient(circle at 18% 24%, rgba(21,113,230,.18) 0%, rgba(21,113,230,.06) 22%, rgba(21,113,230,0) 48%),
    linear-gradient(180deg, #071528 0%, #08182c 58%, #071321 100%);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.open-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 640px); gap: 72px; align-items: start; position: relative; z-index: 2; }
.open-text { max-width: 640px; }
.open-text h2 { color: #fff; margin-bottom: 16px; }
.open-text .open-sub { font-size: 20px; color: rgba(255,255,255,.56); margin-bottom: 24px; }
.open-text p { font-size: 17px; color: rgba(255,255,255,.68); line-height: 1.75; }
.open-text__media {
  margin-top: 36px;
  width: min(100%, 520px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(120,170,255,.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(48,126,230,.16) 0%, rgba(48,126,230,.04) 52%, rgba(48,126,230,0) 100%),
    linear-gradient(180deg, rgba(8,24,44,.96) 0%, rgba(7,19,33,.98) 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.open-text__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .82;
  mix-blend-mode: screen;
  filter: saturate(.96) contrast(1.02);
}
.resume-card { background: #fff; border-radius: 12px; padding: 44px; }
.resume-card h3 { color: var(--navy); font-size: 24px; margin-bottom: 30px; }

.contact-wrap { display: grid; grid-template-columns: 460px 1fr; gap: 96px; align-items: stretch; }
.contact-info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.contact-info h2 { color: var(--navy); margin-bottom: 16px; }
.contact-info > p { font-size: 18px; color: var(--text-gray); line-height: 1.75; margin-bottom: 40px; }
.contact-info__details {
  display: flex;
  flex-direction: column;
}
.c-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.c-icon { width: 44px; height: 44px; background: var(--light-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon img { width: 22px; height: 22px; }
.c-detail-txt label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-gray); display: block; margin-bottom: 3px; }
.c-detail-txt p, .c-detail-txt a { font-size: 17px; color: var(--navy); font-weight: 500; }
.c-detail-txt a { color: var(--blue); }
.contact-info__actions {
  margin-top: auto;
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.contact-info__cta {
  width: 100%;
  min-height: 112px;
  padding: 18px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #1260d6 0%, #2f7ff4 100%);
  box-shadow: 0 18px 40px rgba(19, 91, 208, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}
.contact-info__cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #0f57c3 0%, #2872df 100%);
  box-shadow: 0 22px 46px rgba(19, 91, 208, .28);
}
.contact-info__cta span {
  display: block;
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
  text-align: center;
}
.contact-info__cta em { font-style: italic; font-weight: 600; }
.contact-info__cta--review {
  background: linear-gradient(135deg, #163b74 0%, #245398 100%);
  box-shadow: 0 18px 40px rgba(16, 52, 108, .2);
}
.contact-info__cta--review:hover {
  background: linear-gradient(135deg, #12315f 0%, #1f4786 100%);
  box-shadow: 0 22px 46px rgba(16, 52, 108, .24);
}
.contact-form-box { background: var(--light-bg); border: 1px solid rgba(21,113,230,.15); border-radius: 12px; padding: 50px; }
.contact-form__submit {
  gap: 10px;
  min-width: 164px;
}
.contact-form__submit svg {
  flex-shrink: 0;
}
.contact-form__status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
  min-height: 42px;
}
.contact-form__status.is-error {
  color: #c62828;
}
.contact-form__status.is-success {
  color: #11733f;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.fg-error {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.5;
  min-height: 18px;
  font-weight: 500;
  color: #c62828;
  visibility: hidden;
  opacity: 0;
}
.fg.invalid .fg-error {
  visibility: visible;
  opacity: 1;
}
.fg input, .fg textarea, .fg select { width: 100%; padding: 15px 18px; font-size: 16px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,113,230,.12); }
.fg.invalid input {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217,48,37,.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: #adb5c0; }
.fg textarea { resize: vertical; min-height: 130px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.file-drop { position: relative; border: 2px dashed var(--border); border-radius: 8px; padding: 28px; text-align: center; background: #fff; transition: border-color .2s, box-shadow .2s, background .2s; }
.file-drop:hover { border-color: var(--blue); }
.file-drop.is-dragover { border-color: var(--blue); background: #f8fbff; }
.file-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-drop p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.file-drop .file-types { font-size: 12px; color: #adb5c0; margin-top: 4px; }
.fg.invalid .file-drop { border-color: #d93025; box-shadow: 0 0 0 3px rgba(217,48,37,.12); }

/* ── FOOTER - Figma: 1440x408px ────────────────────────────── */
/* Layout: 310px brand + 4 cols (114, 129, 221, 138px) in 1300px container */
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.site-footer {
  background: var(--dark);
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.site-footer__shell {
  width: 100%;
  margin: 0 auto;
  background: var(--dark);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
}
.site-footer__cta {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #1e63ca 0%, #0f3773 34%, #04152f 100%);
}
.site-footer__cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  opacity: .92;
  transform: scale(1.08);
}
.site-footer__cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27,110,223,.22) 0%, rgba(6,24,55,.16) 24%, rgba(0,10,26,.6) 70%, rgba(0,10,26,.88) 100%),
    linear-gradient(90deg, rgba(0,10,26,.08) 0%, rgba(0,10,26,.08) 100%);
}
.site-footer__cta .container,
.site-footer__body .container { position: relative; z-index: 2; }
.site-footer__cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 104px 0 136px;
}
.site-footer__cta h2 {
  color: #fff;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.14;
  margin-bottom: 18px;
}
.site-footer__cta .section-desc {
  color: rgba(255,255,255,.9);
  max-width: 820px;
  margin: 0 auto 52px;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.42;
}
.page--careers .site-footer__cta { display: none; }
.page--contact .site-footer__cta { display: none; }
.site-footer__body {
  background: var(--dark);
  padding: 84px 0 34px;
}
.footer-grid { display: grid; grid-template-columns: minmax(290px, 1.8fr) minmax(140px, 1fr) minmax(140px, 1fr) minmax(220px, 1.25fr) minmax(160px, 1fr); justify-content: space-between; gap: clamp(28px, 3vw, 64px);
  min-height: 314px;
  align-items: start;
  padding-bottom: 74px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { max-width: 310px; }
.footer-brand .f-logo { display: inline-flex; margin-bottom: 18px; }
.footer-brand .f-logo img { width: 252px; height: auto; }
.footer-brand > p { font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.72; margin-bottom: 22px; max-width: 330px; }
.f-partner { display: block; margin-bottom: 18px; }
.f-partner img { width: 132px; height: auto; opacity: .96; }
.f-location { font-size: 16px; color: rgba(255,255,255,.4); }
/* Figma footer col headings: fs=20 fw=500 */
.footer-col h5 { font-size: 23px; font-weight: 500; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 17.25px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.f-linkedin { display: inline-flex; align-items: center; gap: 8px; font-size: 17.25px; color: rgba(255,255,255,.5); transition: color .2s; margin-top: 4px; }
.f-linkedin:hover { color: #fff; }
.f-linkedin svg { width: 28px; height: 28px; }
/* Figma footer bottom: fs=16 fw=300 copyright, fs=16 fw=300 privacy */
.footer-bottom { padding: 26px 0 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 18.5px; font-weight: 300; color: rgba(255,255,255,.3); }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 18.5px; font-weight: 300; color: rgba(255,255,255,.3); transition: color .2s; }
.f-legal a:hover { color: rgba(255,255,255,.7); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1100px) {
  :root { --pad: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-img { order: 0; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .nums-grid { grid-template-columns: repeat(3, 1fr); }
  .num-item { border-right: none; border-bottom: 1px solid var(--border); }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { border-right: none; border-bottom: 1px solid var(--border); }
  .expertise-card:last-child { border-bottom: none; }
  .values-wrap { grid-template-columns: 1fr; }
  .aws-partnership { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .open-grid { grid-template-columns: 1fr; }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .testi-wrap { grid-template-columns: 1fr; }
  .home-cs-grid { grid-template-columns: 1fr; }
  .deliver-grid { grid-template-columns: 1fr; }
  .offer-row, .offer-row.rev { grid-template-columns: 1fr; }
  .offer-row .offer-img { order: -1; }
  .offer-text, .offer-row.rev .offer-text { padding: 0; }
  .inno-grid { grid-template-columns: 1fr; }
  .home-hero__orb { width: min(72vw, 860px); }
  .site-footer { width: 100%; margin-left: 0; margin-right: 0; }
  .site-footer__shell { width: 100%; }
  .trust-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .trust-logo { min-height: 64px; }
  .trust-logo img { max-height: 50px; }
  .home-cs-card.main .cs-story {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-cs-card.main .cs-story > div,
  .home-cs-card.main .cs-story > div:nth-child(2),
  .home-cs-card.main .cs-story > div:last-child {
    padding: 0 0 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .home-cs-card.main .cs-story > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .how-step { grid-template-columns: 1fr; }
  .step-img { min-height: 220px; }
  .how-step--text-only .step-text { max-width: none; }
  .page--maps .how-step .step-img,
  .page--workflows .how-step .step-img {
    height: 280px;
    min-height: 280px;
  }
}
@media(max-width:768px) {
  :root { --pad: 20px; --section-v: 60px; }
  .section { padding: 60px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testi-cards { }
  .values-grid { grid-template-columns: 1fr; }
  .nums-grid { grid-template-columns: repeat(2, 1fr); }
  .aws-partnership__copy,
  .aws-partnership__card { padding: 28px 24px; }
  .aws-partnership__logo { width: 200px; }
  .aws-badge-slot { width: 180px; height: 80px; }
  .how-step.rev .step-text { order: 0; }
  .how-step.rev .step-img { order: 0; }
  .cs-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: 620px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
  .home-hero__media { background: linear-gradient(180deg, #02060b 0%, #021122 42%, #06213d 70%, #010205 100%); }
  .home-hero__media::before { background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.42) 100%); }
  .home-hero__orb { width: 100%; padding: 0; opacity: .52; -webkit-mask-image: none; mask-image: none; }
  .home-hero__video { object-position: 60% 40%; }
  .home-hero__content {
    width: auto;
    min-height: 620px;
    padding: 96px 0 72px;
  }
  .home-hero__brand { width: 118px; height: auto; margin-bottom: 28px; }
  .geo-quote-card__quote {
    position: static;
    width: auto;
    border-radius: 0;
  }
  .page-hero { min-height: 480px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
  .page-hero__content { padding-top: 88px; padding-bottom: 64px; }
  .page-hero--workflows .page-hero__content,
  .page-hero--case-studies .page-hero__content,
  .page-hero--careers .page-hero__content { padding-top: 96px; }
  .page-hero--contact .page-hero__content { padding-top: 176px; }
  .site-footer { width: 100%; margin-left: 0; margin-right: 0; }
  .site-footer__shell { width: 100%; border-top-left-radius: 0; border-top-right-radius: 0; }
  .site-footer__cta { min-height: 340px; }
  .site-footer__cta-inner { padding: 74px 0 94px; }
  .site-footer__cta .section-desc { margin-bottom: 40px; }
  .trust-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
  .trust-logo { min-height: 56px; }
  .trust-logo img { max-height: 40px; }
  .trust-logo--datastream img { max-width: 220px; }
  .trust-logo--cove { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info__actions { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .deliver-grid--list .deliver-card { min-height: auto; }
  .deliver-grid--list .deliver-card__img { height: 220px; }
}

.mobile-only { display: none !important; }
.offer-points {
  margin: 0 0 24px;
  padding-left: 18px;
}
.offer-points li {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}
.about-intro__image {
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
}
.about-intro__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.num-item__mobile-copy { display: none; }
.tech-list {
  margin-top: 18px;
  padding-left: 18px;
}
.tech-list li {
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.6;
}
.file-drop__icon {
  display: none;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--light-bg);
  align-items: center;
  justify-content: center;
}
.file-drop__icon img {
  width: 28px;
  height: 28px;
}
.testi-slider__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}
.testi-slider__viewport::-webkit-scrollbar { display: none; }
.testi-slider__track {
  display: flex;
  gap: 16px;
}
.testi-card--slide {
  flex: 0 0 calc(100% - 44px);
  scroll-snap-align: start;
}

@media(max-width:768px) {
  .mobile-only { display: block !important; }
  a.mobile-only,
  button.mobile-only,
  .btn.mobile-only,
  .team-linkedin.mobile-only { display: inline-flex !important; }
  .offer-points.mobile-only,
  .deliver-points.mobile-only,
  .tech-list.mobile-only { display: flex !important; }
  .offer-points.mobile-only,
  .deliver-points.mobile-only,
  .tech-list.mobile-only {
    flex-direction: column;
    gap: 8px;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body {
    line-height: 1.45;
  }

  h1 { font-size: clamp(38px, 11vw, 58px); line-height: 1.06; }
  h2 { font-size: clamp(30px, 10vw, 48px); line-height: 1.08; }
  h3 { font-size: clamp(24px, 7vw, 34px); }
  .section-desc { font-size: 18px; line-height: 1.55; }
  .sh { margin-bottom: 36px; }

  .site-header {
    position: sticky;
    top: 0;
    height: 76px;
    box-shadow: 0 1px 0 rgba(11,44,87,.08);
  }
  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner { height: 76px; }
  .header-logo img { height: 36px; }
  .nav-toggle {
    width: 48px;
    height: 48px;
    padding: 10px 8px;
    gap: 6px;
    justify-content: center;
    align-items: flex-end;
  }
  .nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--blue);
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    top: 76px;
    bottom: 0;
    inset-inline: 0;
    padding: 34px 32px 40px;
    gap: 28px;
  }
  .mobile-nav a {
    border-bottom: none;
    padding: 0;
    font-size: 28px;
    line-height: 1.2;
  }
  .mobile-nav .btn-primary {
    width: auto;
    min-width: 280px;
    margin-top: 20px;
    align-self: flex-start;
    border-radius: 16px;
    padding: 18px 28px;
    color: #fff;
  }

  .home-hero {
    min-height: 640px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .home-hero__orb {
    right: -18%;
    width: 100%;
    opacity: .68;
  }
  .home-hero__content {
    width: 100%;
    min-height: 640px;
    padding: 88px 0 56px;
  }
  .home-hero__brand {
    width: 112px;
    margin-bottom: 18px;
  }
  .home-hero__content h1,
  .page-hero__content h1 {
    max-width: 349px;
    margin-bottom: 18px;
  }
  .home-hero__content .section-desc,
  .page-hero__content .section-desc {
    max-width: 349px;
    margin-bottom: 28px;
    font-size: 18px;
  }
  .home-hero__btns {
    width: 100%;
    gap: 12px;
  }
  .home-hero__btns .btn,
  .page-hero .btn {
    width: 100%;
    max-width: 343px;
    min-width: 0;
  }
  .home-hero__btn-marketplace { display: none; }

  .page-hero {
    min-height: 700px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .page-hero .container {
    display: flex;
    min-height: 100%;
  }
  .page-hero__content,
  .page-hero--about .page-hero__content,
  .page-hero--consulting .page-hero__content,
  .page-hero--workflows .page-hero__content,
  .page-hero--maps .page-hero__content,
  .page-hero--development .page-hero__content,
  .page-hero--careers .page-hero__content,
  .page-hero--case-studies .page-hero__content {
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    max-width: 100%;
  }
  .page-hero--contact {
    min-height: 620px;
  }
  .page-hero--contact .container {
    display: flex;
    min-height: 100%;
  }
  .page-hero--contact .page-hero__content {
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    text-align: center;
  }
  .page-hero--contact .page-hero__content h1 {
    max-width: none;
    margin: 0 auto;
  }
  .expertise-grid,
  .nums-grid,
  .feat-grid,
  .deliver-grid,
  .values-grid,
  .team-grid,
  .home-cs-grid,
  .cs-grid { gap: 16px; }

  .expertise-grid {
    border-radius: 18px;
    margin-bottom: 40px;
  }
  .expertise-card {
    min-height: auto;
    padding: 24px 22px;
  }
  .expertise-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
  .expertise-icon img {
    width: 24px;
    height: 24px;
  }
  .expertise-title { font-size: 18px; }
  .expertise-copy { font-size: 15px; }

  .stats-heading,
  .stats-heading h2,
  .stats-heading .section-desc,
  .sh.c .section-desc { text-align: center; }

  .trust-strip .section-desc {
    max-width: 330px;
    margin: 0 auto 24px;
  }
  .trust-slider {
    margin-top: 28px;
  }
  .trust-slider__viewport {
    overflow-x: auto;
    scrollbar-width: none;
    margin-right: -20px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
  }
  .trust-slider__viewport::-webkit-scrollbar { display: none; }
  .trust-logos {
    display: flex;
    gap: 14px;
    align-items: stretch;
    padding: 4px 0;
  }
  .trust-logo {
    flex: 0 0 calc(100% - 56px);
    min-height: 116px;
    padding: 26px 20px;
    scroll-snap-align: start;
    border: 1px solid rgba(21,113,230,.14);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15,53,102,.08);
  }
  .trust-logo img {
    max-width: 100%;
    max-height: 54px;
    margin: 0 auto;
  }
  .trust-logo--datastream img {
    max-width: 238px;
    max-height: 42px;
  }
  .trust-logo--iisd img {
    max-width: 184px;
    max-height: 50px;
  }
  .trust-logo--tesera img {
    max-width: 122px;
    max-height: 46px;
  }
  .trust-logo--ava img {
    max-width: 172px;
    max-height: 50px;
  }
  .trust-logo--cove {
    grid-column: auto;
  }
  .trust-logo--cove img {
    max-width: 188px;
    max-height: 46px;
  }
  .inno-grid { gap: 16px; margin-top: 40px; }
  .inno-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .inno-card p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .inno-card .card-img { margin: 0; border-radius: 14px; }
  .inno-card .card-img img { height: 160px; }

  .pain-grid { gap: 16px; margin-top: 24px; }
  .pain-card {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .pain-card h4 { font-size: 18px; }
  .pain-card p { font-size: 15px; }
  .geo-quote-card {
    margin-top: 24px;
    border-radius: 18px;
  }
  .geo-quote-card > img { height: 224px !important; }
  .geo-quote-card__quote {
    margin: 0 12px 12px;
    border-radius: 16px;
    padding: 18px 16px;
  }
  .geo-quote-card__quote p {
    font-size: 16px;
    text-align: center;
  }

  .offer-list { margin-top: 40px; }
  .offer-row,
  .offer-row.rev {
    border-top: none;
    gap: 14px;
    padding: 0 0 22px;
  }
  .offer-text,
  .offer-row.rev .offer-text {
    border: 1px solid rgba(21,113,230,.16);
    border-radius: 18px;
    padding: 22px 20px;
    background: #fff;
  }
  .offer-text h3 {
    font-size: 18px;
    line-height: 1.25;
  }
  .offer-text p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.65;
  }
  .offer-points li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
  }
  .offer-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
  }
  .offer-row .link-arrow {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--blue);
    border-radius: 12px;
    justify-content: center;
    padding: 10px 18px;
  }
  .offer-row .link-arrow::after { content: ''; }
  .offer-img img {
    height: 180px;
    border-radius: 18px;
  }

  .deliver-card {
    border-radius: 18px;
  }
  .deliver-card__img {
    height: 220px;
  }
  .deliver-card__body {
    padding: 24px 20px;
  }
  .deliver-card__body h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .deliver-card__body p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .home-cs-grid { margin-top: 40px; }
  .home-cs-card {
    min-height: auto;
    border-radius: 18px;
  }
  .home-cs-card__body {
    padding: 22px 20px;
  }
  .home-cs-card__body h3 { font-size: 21px; }
  .home-cs-card.main .home-cs-card__body {
    padding: 22px 20px 24px;
  }
  .home-cs-card.main .home-cs-card__body h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .home-cs-card.main .cs-story h4 {
    font-size: 16px;
  }
  .home-cs-card.main .cs-story p,
  .home-cs-card__copy {
    font-size: 15px;
  }
  .home-cs-card.stats .home-cs-card__globe {
    pointer-events: none;
  }
  .home-cs-card__button {
    width: 100%;
  }

  .team-grid { margin-top: 40px; }
  .team-card {
    min-height: auto;
    border-radius: 20px;
  }
  .team-card__photo {
    height: 280px;
  }
  .team-grid--compact .team-card {
    background: transparent;
  }
  .team-grid--compact .team-card__photo {
    height: 300px;
    border-radius: 18px;
  }
  .team-grid--compact .team-card__body {
    position: relative;
    margin: -24px 14px 0;
    padding: 16px 14px;
    border-radius: 16px;
    box-shadow: 0 20px 36px rgba(4,17,40,.16);
  }
  .team-grid--compact .team-name,
  .team-grid--compact .team-role {
    text-align: center;
  }
  .team-grid--compact .team-name { font-size: 20px; }
  .team-grid--compact .team-role { font-size: 13px; }

  .page--about .about-intro__image img {
    height: 238px;
    border-radius: 20px;
  }
  .page--about .section--aws-partnership {
    display: none;
  }
  .page--about .bg-off {
    background: var(--dark);
  }
  .page--about .bg-off .sh h2,
  .page--about .bg-off .section-desc {
    color: #fff;
  }
  .page--about .values-wrap > .fade-up:first-child {
    text-align: center;
  }
  .page--about .values-wrap > .fade-up:first-child img {
    height: 220px !important;
    border-radius: 18px;
  }
  .page--about .val-card {
    background: #fff;
    border: 1px solid rgba(21,113,230,.12);
    text-align: center;
    padding: 22px 18px;
  }
  .page--about .val-icon {
    margin: 0 auto 16px;
    background: var(--light-bg);
  }
  .page--about .val-icon img { filter: none; }
  .page--about .val-card h4 { color: var(--text); }
  .page--about .val-card p { color: var(--text-gray); }
  .page--about .nums-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    overflow: visible;
    margin-top: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .page--about .num-item {
    min-height: 176px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(21,113,230,.16);
    border-radius: 16px;
    background: #fff;
  }
  .page--about .num-val {
    font-size: 28px;
    margin-top: 0;
  }
  .page--about .num-label {
    color: var(--navy);
    font-size: 18px;
    line-height: 1.4;
    max-width: 240px;
    margin: 0 auto;
  }
  .page--about .num-item--cta {
    grid-column: auto;
    background: #fff;
  }
  .page--about .num-item--cta > .num-val,
  .page--about .num-item--cta > .num-label {
    display: block;
  }
  .page--about .num-item__mobile-copy {
    display: none !important;
  }
  .page--about .team-card {
    background: linear-gradient(180deg, #123262 0%, #020c1d 100%);
  }
  .page--about .team-card__photo {
    background: #eef2f7;
  }
  .page--about .team-card__body {
    position: relative;
    background: transparent;
    padding: 22px 20px 24px;
  }
  .page--about .team-name,
  .page--about .team-role { color: #fff; }
  .page--about .team-role { color: rgba(255,255,255,.9); }
  .page--about .team-bio {
    color: rgba(255,255,255,.82);
    margin-bottom: 0;
  }
  .page--about .team-linkedin {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    color: var(--blue);
    justify-content: center;
    font-size: 0;
    gap: 0;
  }
  .page--about .team-linkedin svg {
    width: 18px;
    height: 18px;
  }

  .mobile-testimonials { display: none !important; }
  .testi-title h2 {
    max-width: 280px;
    margin: 0 auto 14px;
    text-align: center;
  }
  .testi-title .section-desc {
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
  }
  .testi-slider {
    margin-top: 28px;
  }
  .testi-logo--text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15,53,102,.08);
    font-size: 16px;
    line-height: 1;
  }
  .testi-slider__viewport {
    scroll-snap-type: x mandatory;
    margin-right: -20px;
    padding-right: 20px;
  }
  .testi-card--slide {
    min-height: 248px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .testi-quote {
    margin-bottom: 18px;
    padding-left: 0;
    border-left: none;
    font-size: 16px;
    line-height: 1.68;
    font-style: normal;
  }
  .testi-author {
    font-size: 15px;
    color: rgba(11,44,87,.72);
  }
  .testi-dots {
    justify-content: center;
    margin-top: 18px;
  }

  .feat-grid {
    gap: 16px;
    margin-top: 32px;
  }
  .feat-item {
    padding: 22px 20px;
    border: 1px solid rgba(21,113,230,.16);
    border-radius: 18px;
    background: #fff;
  }
  .feat-item__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .feat-item__icon img {
    width: 24px;
    height: 24px;
  }
  .feat-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .feat-item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .split-img img {
    height: 240px;
    border-radius: 18px;
  }
  .deliver-list {
    margin-top: 10px;
  }
  .d-item {
    position: relative;
    gap: 0;
    padding: 0 0 14px 14px;
    border-bottom: none;
  }
  .d-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
  }
  .d-num { display: none; }
  .d-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .d-item p {
    font-size: 15px;
    line-height: 1.6;
  }

  .page--consulting .bg-dark .split-img {
    order: 2;
  }
  .page--consulting .bg-dark .split-text {
    order: 1;
  }

  .how-steps {
    gap: 18px;
    padding: 0 20px;
  }
  .how-step,
  .how-steps.light .how-step {
    border-top: none;
    background: transparent;
    min-height: 0;
  }
  .step-text,
  .how-steps.light .step-text {
    padding: 22px 20px 18px;
    background: #fff;
    border-radius: 20px 20px 0 0;
  }
  .step-num {
    width: auto;
    height: auto;
    margin-bottom: 10px;
    background: transparent;
    color: var(--blue);
    border-radius: 0;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .step-num::before { content: '• '; }
  .step-num::before { content: '\2022\00a0'; }
  .step-text h3,
  .how-steps.light .step-text h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
  }
  .step-text p,
  .how-steps.light .step-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.65;
  }
  .step-img,
  .how-steps.light .step-img {
    height: auto !important;
    min-height: 0 !important;
    border: none;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }
  .step-img img,
  .page--maps .how-step .step-img img,
  .page--workflows .how-step .step-img img {
    height: 210px !important;
    min-height: 0 !important;
  }
  .how-step.rev .step-text,
  .how-steps.light .how-step.rev .step-text {
    order: 0;
    border-left: none;
  }
  .how-step.rev .step-img,
  .how-steps.light .how-step.rev .step-img {
    order: 0;
    border-right: none;
  }

  .page--development .tech-list.mobile-only { display: none !important; }
  .page--development .tech-badges {
    display: flex;
    margin-top: 24px;
    gap: 10px;
  }
  .page--development .tbadge {
    padding: 9px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.2;
  }
  .page--development .tbadge--more {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page--development .process-wrap { gap: 24px; }
  .page--development .process-img { order: 2; }
  .page--development .p-steps-list { gap: 14px; }
  .page--development .p-step {
    border: none;
    border-radius: 18px;
    background: #fff;
    padding: 20px 18px;
  }
  .page--development .p-num {
    width: auto;
    height: auto;
    margin-top: 0;
    background: transparent;
    color: var(--blue);
    border-radius: 0;
    font-size: 13px;
    letter-spacing: .08em;
  }
  .page--development .process-img img {
    height: 260px;
  }

  .faq-wrap { max-width: none; }
  .faq-item {
    margin-bottom: 14px;
    padding: 0 16px;
    border: 1px solid rgba(21,113,230,.16);
    border-radius: 18px;
    background: #fff;
  }
  .faq-btn {
    padding: 22px 0;
    font-size: 17px;
    line-height: 1.4;
  }
  .faq-body {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.65;
  }
  .faq-icon {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  .cs-filters {
    margin-bottom: 34px;
    padding: 4px;
    border-radius: 12px;
    background: var(--light-bg);
    gap: 0;
  }
  .cs-tab {
    flex: 1;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
  }
  .page--case-studies .cs-card__cover {
    display: none;
  }
  .cs-card,
  .cs-list-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .cs-card__meta,
  .cs-list-card__top {
    align-items: flex-start;
    gap: 12px;
  }
  .cs-card__logo,
  .cs-list-card__logo {
    height: 56px;
    padding: 10px;
    border: 1px solid rgba(21,113,230,.16);
    border-radius: 14px;
    background: #f3f7ff;
  }
  .cs-tag {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
  }
  .cs-card h3,
  .cs-list-card h3 {
    font-size: 22px;
    line-height: 1.24;
  }
  .cs-block h5 {
    margin: 18px 0 10px;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--navy);
  }
  .cs-block p,
  .cs-list-card p {
    font-size: 16px;
    line-height: 1.72;
  }

  .why-wrap { gap: 28px; }
  .why-list { gap: 22px; }
  .why-item {
    gap: 16px;
  }
  .why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .why-icon img {
    width: 30px;
    height: 30px;
  }
  .why-item h4 { font-size: 18px; }
  .why-item p { font-size: 15px; }

  .open-pos {
    padding: 72px 0 0;
  }
  .open-grid { gap: 28px; }
  .open-text__media {
    width: 100%;
    margin-top: 28px;
  }
  .resume-card,
  .contact-form-box {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .file-drop {
    padding: 26px 18px;
    border-radius: 18px;
  }
  .file-drop__icon {
    display: flex;
  }

  .contact-wrap { gap: 32px; }
  .contact-info > p {
    margin-bottom: 28px;
    font-size: 17px;
  }
  .page--contact .contact-info__actions { display: none; }
  .page--contact .c-detail--address { display: none; }
  .c-detail {
    align-items: flex-start;
    margin-bottom: 22px;
  }
  .c-icon {
    width: 46px;
    height: 46px;
  }
  .c-detail-txt p,
  .c-detail-txt a {
    font-size: 16px;
  }
  .fg input,
  .fg textarea,
  .fg select {
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 18px;
  }
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }

  .site-footer__cta {
    min-height: 360px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .site-footer__cta-inner {
    max-width: 360px;
    padding: 70px 0 82px;
  }
  .site-footer__cta h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.08;
  }
  .site-footer__cta .section-desc {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.55;
  }
  .cta-btns .btn {
    width: auto;
    min-width: 144px;
  }
  .site-footer__body {
    padding: 42px 0 28px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding-bottom: 30px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    text-align: center;
  }
  .footer-brand .f-logo,
  .f-partner {
    display: flex;
    justify-content: center;
  }
  .footer-brand .f-logo img {
    width: 210px;
  }
  .footer-brand > p {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    font-size: 16px;
  }
  .f-partner img { width: 146px; }
  .footer-col h5 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .footer-col ul a,
  .f-linkedin {
    font-size: 16px;
  }
  .footer-bottom {
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom p,
  .f-legal a {
    font-size: 14px;
  }
  .f-legal {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
}
