/* ============================================================
   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-subtle: #111827;
  --text-gray: #363c46;
  --border: #e5e7eb;
  --font: "Exo", sans-serif;
  --desktop-side-margin: 7%;
  --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 (min-width: 1101px) {
  /* Keep every desktop section on the same outer frame. */
  .container {
    width: calc(100% - (2 * var(--desktop-side-margin)));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@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, 23px);
  font-weight: 450;
  line-height: 1.46;
  width: 100%;
}

/* ── 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 0.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, 0.4);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.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: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.eyebrow-dim {
  color: var(--blue);
}

/* 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: var(--navy);
}
.sh .section-desc {
  color: var(--text-subtle);
}
.sh .section-desc.w {
  color: var(--navy);
}
.sh.c {
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
}
.sh.c .section-desc {
  margin: 0 auto;
}
.sh--faq .section-desc {
  max-width: 1120px;
}
.page--workflows .workflows-intro-copy {
  max-width: 1360px;
  text-align: center;
}
.workflows-intro-break {
  display: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.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: var(--max-w);
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.header-logo img {
  height: 46px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
  line-height: 22px;
  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: 14px 24px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  min-height: 54px;
  min-width: 148px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.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 0.2s,
    opacity 0.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 0.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: auto 1fr auto;
  }
  .header-nav {
    justify-self: center;
  }
}
@media (max-width: 1100px) {
  .site-header .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1100px) {
  .header-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ── HOME HERO - Figma: 1440x850px ─────────────────────────── */
.home-hero {
  position: relative;
  min-height: 724px;
  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, 0.18) 0%,
      rgba(45, 149, 241, 0.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: transparent;
}
.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.82) 18%,
    rgba(0, 0, 0, 0.58) 34%,
    rgba(0, 0, 0, 0.28) 52%,
    rgba(0, 0, 0, 0.06) 74%,
    rgba(0, 0, 0, 0) 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, 0.08) 7%,
    #000 17%,
    #000 94%,
    rgba(0, 0, 0, 0.72) 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 7%,
    #000 17%,
    #000 94%,
    rgba(0, 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, 0.16) 0%,
    rgba(38, 151, 247, 0.08) 22%,
    rgba(38, 151, 247, 0.02) 44%,
    rgba(1, 11, 28, 0) 66%
  );
  filter: blur(22px);
}
.home-hero__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 1;
  mix-blend-mode: screen;
  filter: saturate(1.2) brightness(1.18) contrast(1.05);
  transform: scale(1.075);
}
.home-hero__content {
  position: relative;
  z-index: 4;
  width: 750px;
  min-height: 724px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 138px 0 112px;
}
.home-hero__brand {
  width: 120px;
  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, 0.8);
  max-width: 750px;
  margin-bottom: 64px;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.42;
  text-align: left;
}
.home-hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.home-hero__btns .btn {
  min-width: 210px;
}
.home-hero__btn-marketplace {
  color: var(--blue);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.12);
}

/* ── PAGE HERO - Figma: 1440x700px ─────────────────────────── */
/* The shared header is 88px tall; hero surface below it is 612px */
.page-hero {
  --hero-content-offset: 152px;
  --hero-copy-max: 700px;
  --hero-bg-position: center center;
  --hero-btn-width: auto;

  position: relative;
  min-height: 700px;
  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;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero__content {
  max-width: 860px;
  margin: 0;
  padding-top: var(--hero-content-offset);
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.page-hero__content h1 {
  color: #fff;
  margin: 0 0 20px;
  max-width: 820px;
  text-wrap: balance;
}
.page-hero__content .section-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: var(--hero-copy-max);
  margin: 0 0 40px;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.42;
}
.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: auto;
  min-width: 302px;
  max-width: none;
  min-height: 64px;
  padding: 12px 24px;
  white-space: nowrap;
}
.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,
.page-hero--case-studies .page-hero__content {
  padding-top: 152px;
}

.page-hero--about {
  --hero-btn-width: 167px;
  --hero-copy-max: 700px;
  --hero-bg-position: center bottom;
}
.page-hero--workflows {
  --hero-content-offset: 102px;
  --hero-btn-width: 169px;
}
.page-hero--workflows .page-hero__content h1 {
  max-width: 980px;
}
.page-hero--maps {
  --hero-btn-width: 169px;
}
.page-hero--consulting {
  --hero-btn-width: 302px;
}
.page-hero--consulting .page-hero__bg {
  filter: brightness(1.28) saturate(1.05);
}
.page-hero--consulting .page-hero__content {
  max-width: 1160px;
}
.page-hero--consulting .page-hero__content h1 {
  max-width: 1160px;
  text-wrap: wrap;
}
.page-hero--consulting .btn--hero-multiline span {
  max-width: none;
  text-align: center;
}
.page-hero--development {
  --hero-content-offset: 168px;
  --hero-btn-width: 226px;
}
.page-hero--careers {
  --hero-content-offset: 152px;
  --hero-btn-width: 226px;
  --hero-copy-max: 760px;
  --hero-bg-position: center right;
}
.page-hero--careers .container {
  min-height: inherit;
  display: flex;
  align-items: center;
}
.page-hero--careers .page-hero__content {
  padding-top: 0;
  padding-bottom: 0;
}
.page-hero--contact {
  --hero-content-offset: 252px;
}
.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;
}

@media (min-width: 1101px) {
  .site-header .container,
  .page-hero > .container,
  .home-hero > .container {
    width: calc(100% - (2 * var(--desktop-side-margin)));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ── STATS SECTION ──────────────────────────────────────────── */
/* Figma: section h=790, title+subtitle 108px, stat boxes 208px, logos 162px */
.stats-section {
  padding: var(--section-v) 0;
}
.stats-heading {
  margin: 0 auto 56px;
  text-align: center;
}
.stats-heading h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.stats-heading .section-desc {
  color: var(--text-subtle);
  max-width: 980px;
  margin: 0 auto;
  font-weight: 400;
}
/* 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, 0.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-subtle);
  margin-bottom: 48px;
  font-weight: 450;
}
.trust-marquee {
  --trust-marquee-gap: clamp(88px, 9vw, 156px);
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}
.trust-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--trust-marquee-gap);
  width: max-content;
  animation: trust-marquee 40s linear infinite;
}
.trust-marquee__group {
  display: flex;
  align-items: center;
  gap: var(--trust-marquee-gap);
  flex: 0 0 auto;
}
.trust-marquee:hover .trust-marquee__track {
  animation-play-state: paused;
}
.trust-marquee .trust-logo {
  flex: 0 0 auto;
  min-height: 72px;
}
@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track {
    animation: none;
  }
}
.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 0.8fr 1fr 0.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 0.2s ease,
    opacity 0.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: 0.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-subtle);
  margin-bottom: 34px;
}
.split-text > .section-desc.w {
  color: rgba(255, 255, 255, 0.75);
}
.about-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page--about .about-intro__copy {
  justify-content: flex-start;
  gap: 14px;
}
.about-intro__copy p {
  color: var(--text-gray);
}
.page--about .about-intro__copy p + p {
  margin-top: 0;
}
.about-intro__copy p + p {
  margin-top: 16px;
}
.about-intro__media {
  margin: 8px 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(21, 113, 230, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 18px 40px rgba(15, 53, 102, 0.08);
}
.about-intro__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.split-img {
  border-radius: 12px;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.deliver-showcase {
  align-items: stretch;
}
.deliver-showcase .split-img {
  display: flex;
  height: 100%;
  align-self: stretch;
}
.deliver-showcase .split-img img {
  height: 100%;
  min-height: 560px;
  object-position: center;
}
.deliver-showcase .split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.maps-use-cases {
  align-items: stretch;
}
.maps-use-cases .split-img {
  display: flex;
  height: 100%;
  align-self: stretch;
}
.maps-use-cases .split-img img {
  height: 100%;
  min-height: 560px;
  object-position: center;
}
.tech-showcase {
  align-items: stretch;
}
.tech-showcase .split-img {
  display: flex;
  height: 100%;
  align-self: stretch;
}
.tech-showcase .split-img img {
  height: 100%;
  min-height: 560px;
  object-position: center;
}

/* ── 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: 400px;
  object-fit: cover;
  display: block;
}
.inno-card .card-img--aws-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  height: 100%;
}
body.page--home .inno-card .card-img.card-img--aws-ai img {
  object-position: center top;
}
@media (max-width: 1100px) {
  body.page--home .inno-card .card-img.card-img--aws-ai img {
    height: clamp(240px, 58vw, 420px);
  }
}
@media (max-width: 520px) {
  body.page--home .inno-card .card-img.card-img--aws-ai img {
    height: clamp(210px, 62vw, 300px);
  }
}

/* ── 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, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}
.pain-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  opacity: 0.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, 0.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: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.offer-text h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 2.5vw;
}
.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;
}
.image-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.image-lightbox-trigger img {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.image-lightbox-trigger:hover img,
.image-lightbox-trigger:focus-visible img {
  transform: scale(1.015);
  filter: brightness(1.04);
}
.image-lightbox-trigger:focus-visible {
  outline: 3px solid rgba(21, 113, 230, 0.8);
  outline-offset: 4px;
}

/* ── IMAGE LIGHTBOX ─────────────────────────────────────────── */
.image-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.image-lightbox.open {
  display: flex;
  opacity: 1;
}
.image-lightbox__image {
  max-width: min(94vw, 1600px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  object-fit: contain;
}
.image-lightbox__close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
  outline: none;
}

/* ── 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, 0.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, 0.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;
  font-weight: 500;
  margin-bottom: 6px;
}
.d-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.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:
    radial-gradient(
      circle at 78% 18%,
      rgba(119, 176, 255, 0.16) 0%,
      transparent 24%
    ),
    radial-gradient(
      circle at 86% 78%,
      rgba(83, 138, 232, 0.15) 0%,
      transparent 30%
    ),
    linear-gradient(135deg, #10214a 0%, #17336f 52%, #1c4ea7 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: 0.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.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 38%,
      transparent 66%
    ),
    radial-gradient(
      circle at 74% 24%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 68%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 24%
    );
  z-index: 0;
}
.home-cs-card.main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 18, 51, 0.8) 0%,
    rgba(13, 35, 87, 0.62) 54%,
    rgba(23, 73, 163, 0.38) 100%
  );
  z-index: 1;
}
.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, 0.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, 0.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, 0.35),
      rgba(21, 113, 230, 0.05) 55%,
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.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 {
  border: 1px solid #c6c6ff;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}
.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, 0.06);
}
.team-card.dark-bg .team-card__body {
  background: rgba(255, 255, 255, 0.04);
}
.team-card.dark-bg .team-name {
  color: #fff;
}
.team-card.dark-bg .team-bio {
  color: rgba(255, 255, 255, 0.7);
}
.founding-team-section {
  --footer-corner-fill: #010713;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 72px;
  padding-bottom: 72px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
}
.founding-team-section > .container {
  position: relative;
  z-index: 1;
}
.founding-team-section__intro {
  margin-bottom: clamp(40px, 4vw, 64px);
}
.founding-team-section__intro .eyebrow {
  color: var(--blue);
}
.founding-team-section__intro h2,
.founding-team-section__intro .section-desc {
  color: var(--white);
}
.founding-team-section__intro .section-desc {
  color: var(--white);
  max-width: min(1180px, 100%);
}
.founders-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px);
  width: 100%;
  align-items: start;
}
.founder {
  display: flow-root;
}
.founder__media {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1.08 / 1;
  float: left;
  margin: 0 clamp(22px, 2vw, 30px) 18px 0;
  border-radius: 24px;
  overflow: hidden;
  background: #edf2f8;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}
.founder__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder__photo--Kiril {
  object-position: center 18%;
}
.founder__photo--michael {
  object-position: center 12%;
}
.founder__content {
  width: 100%;
  max-width: none;
}
.founder--secondary .founder__content {
  max-width: none;
}
.founder__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.founder__name {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
}
.founder__linkedin {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(3, 10, 22, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.founder__linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(3, 10, 22, 0.28);
}
.founder__title,
.founder__credential {
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}
.founder__credential {
  margin-top: 4px;
}
.founder__bio {
  margin-top: clamp(18px, 1.6vw, 28px);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
}
@media (max-width: 1100px) {
  .founders-layout {
    grid-template-columns: 1fr;
  }
  .founder,
  .founder--secondary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .founder--secondary .founder__media {
    order: -1;
  }
  .founder__content,
  .founder--secondary .founder__content {
    max-width: none;
  }
  .founder__media {
    width: min(100%, 290px);
    max-width: 290px;
    float: none;
    margin: 0;
    aspect-ratio: 1.08 / 1;
  }
}
@media (max-width: 768px) {
  .founding-team-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .founding-team-section__intro {
    margin-bottom: 34px;
  }
  .founders-layout {
    gap: 40px;
  }
  .founder {
    gap: 18px;
  }
  .founder__media {
    width: min(100%, 320px);
    max-width: 320px;
    float: none;
    margin: 0;
    aspect-ratio: 1.08 / 1;
    border-radius: 20px;
  }
  .founder__heading {
    gap: 14px;
    margin-bottom: 12px;
  }
  .founder__name {
    font-size: 26px;
  }
  .founder__linkedin {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .founder__title,
  .founder__credential {
    font-size: 17px;
  }
  .founder__credential {
    margin-top: 4px;
  }
  .founder__bio {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }
}

/* ── 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-subtle);
}
.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 ─────────────────────────────────────────────────── */
.values-section {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  padding-top: 72px;
  padding-bottom: 72px;
}
.values-section > .container {
  position: relative;
  z-index: 1;
}
.values-section__intro {
  margin-bottom: 44px;
}
.values-section .values-section__intro h2.w {
  color: var(--navy);
}
.values-section .values-section__intro .section-desc.w {
  color: var(--navy);
  max-width: 920px;
}
.values-composition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}
.values-column {
  display: grid;
  gap: 20px;
}
.value-card {
  min-height: 220px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 53, 102, 0.08);
  padding: clamp(24px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.value-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.value-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.value-card__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  color: #0d1016;
}
.value-card__copy {
  max-width: 520px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  color: #1f2430;
}
.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, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}
.val-icon {
  width: 48px;
  height: 48px;
  background: rgba(21, 113, 230, 0.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, 0.66);
  line-height: 1.7;
}
@media (max-width: 1180px) {
  .values-composition {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .values-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .values-section__intro {
    margin-bottom: 32px;
  }
  .values-composition {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .values-column {
    gap: 16px;
  }
  .value-card {
    min-height: 190px;
    border-radius: 20px;
    padding: 24px 20px;
  }
  .value-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
  .value-card__icon img {
    width: 24px;
    height: 24px;
  }
  .value-card__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .value-card__copy {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* ── ABOUT AWS PARTNERSHIP ─────────────────────────────────── */
.section--aws-partnership {
  padding-top: 0;
}
.aws-partnership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
  margin-bottom: 28px;
  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, 0.06);
  overflow: hidden;
  padding: 40px 42px;
}
.aws-partnership__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 0;
}
.aws-partnership__copy h2 {
  color: var(--navy);
  margin-bottom: 0;
}
.aws-partnership__copy .section-desc {
  color: var(--text-subtle);
  max-width: none;
  margin-bottom: 0;
}
.aws-partnership__card {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
}
.aws-partnership__logo-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.aws-partnership__logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.aws-partnership__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
}
.aws-partnership__details p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.75;
  margin: 0;
}
.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, 0.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, 0.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;
}

@media (min-width: 769px) {
  .page--about h2 {
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.12;
  }
  .page--about h3 {
    font-size: clamp(22px, 2vw, 32px);
  }
  .page--about .eyebrow {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .page--about .section-desc {
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.5;
  }
  .page--about .sh {
    margin-bottom: 44px;
  }
  .page--about .about-intro .section-desc {
    line-height: 1.62;
  }
  .page--about .aws-partnership {
    gap: 28px 36px;
    padding: 34px 36px;
    width: 105%;
    margin-left: -2.5%;
  }
  .page--about .aws-partnership__copy {
    gap: 12px;
  }
  .page--about .aws-partnership__details {
    gap: 18px 36px;
  }
  .page--about .aws-partnership__details p {
    font-size: 16px;
    line-height: 1.65;
  }
  .page--about .values-section,
  .page--about .founding-team-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .page--about .value-card {
    min-height: 200px;
    padding: 24px;
  }
  .page--about .value-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .page--about .value-card__title {
    font-size: clamp(20px, 1.35vw, 24px);
    margin-bottom: 10px;
  }
  .page--about .value-card__copy {
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.5;
  }
  .page--about .nums-grid {
    margin-top: 36px;
  }
  .page--about .num-item {
    padding: 38px 22px;
  }
  .page--about .num-val {
    font-size: clamp(30px, 3vw, 44px);
  }
  .page--about .num-label {
    font-size: 14px;
  }
  .page--about .founding-team-section__intro {
    margin-bottom: clamp(34px, 4vw, 100px);
  }
  .page--about .founder__name {
    font-size: clamp(28px, 2.4vw, 40px);
  }
  .page--about .founder__title,
  .page--about .founder__credential {
    font-size: clamp(16px, 1.05vw, 18px);
  }
  .page--about .founder__bio {
    margin-top: 18px;
    max-width: 640px;
    font-size: clamp(15px, 1vw, 16px);
    line-height: 1.58;
  }
}

/* ── 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;
  padding: 0 5%;
  color: var(--navy);
}
.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4%;
  color: var(--navy);
}
.how-step:first-child {
  border-top: none;
}
.step-text {
  padding: 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
}
.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: var(--navy);
  margin-bottom: 14px;
  font-size: 27px;
}
.step-text p {
  font-size: 19px;
  color: var(--navy);
  line-height: 1.75;
}
.step-img {
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.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, 0.07);
}
.how-step.rev .step-img {
  order: 1;
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.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(--navy);
}
.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: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 4vw, 72px);
  align-items: stretch;
}
.process-img {
  display: flex;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.process-img img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.process-steps {
  display: flex;
  min-height: 100%;
}
.p-steps-list {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
.p-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.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, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}
.tbadge:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.tbadge--more {
  background: linear-gradient(
    135deg,
    rgba(21, 113, 230, 0.28) 0%,
    rgba(120, 186, 255, 0.18) 100%
  );
  border-color: rgba(120, 186, 255, 0.7);
  color: #fff;
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(120, 186, 255, 0.16),
    0 10px 24px rgba(5, 27, 58, 0.26);
}
.tbadge--more:hover {
  background: linear-gradient(
    135deg,
    rgba(42, 132, 244, 0.95) 0%,
    rgba(120, 186, 255, 0.82) 100%
  );
  border-color: rgba(173, 214, 255, 0.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 {
  padding: 0 15%;
}
.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 0.2s;
}
.faq-btn:hover {
  color: var(--blue);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.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 0.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 0.2s;
}
.cs-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.cs-card__cover {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
}
.cs-card__cover--cove {
  object-position: center bottom;
}
.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: 0.05em;
  color: var(--blue);
  background: rgba(21, 113, 230, 0.08);
  border: 1px solid rgba(21, 113, 230, 0.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: 0.06em;
  color: var(--text-gray);
  margin-bottom: 6px;
}
.cs-block p {
  font-size: 14px;
  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;
}
.case-study-showcase {
  background: var(--light-bg);
  padding: 5% 2% 5% 2%;
}
.case-study-showcase .sh {
  margin-bottom: 72px;
}
.case-study-feature {
  width: min(100%, 1536px);
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border: 1px solid #d3e7ff;
  border-radius: 16px;
  margin-bottom: 4%;
}
.case-study-feature__intro {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 34px;
}
.case-study-feature__logo-card {
  width: 142px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: #f6f9ff;
  border: 1px solid #c7e0ff;
  border-radius: 14px;
}
.case-study-feature__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.case-study-feature__heading h3 {
  color: var(--navy);
  font-size: 2.3vw;
  line-height: 1.16;
  margin-bottom: 20px;
}
.case-study-feature .cs-tags {
  gap: 8px;
}
.case-study-feature .cs-tag {
  color: var(--blue);
  background: #eaf3ff;
  border: 0;
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}
.case-study-feature__body h4 {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.3;
  margin: 28px 0 14px;
}
.case-study-feature__body h4:first-child {
  margin-top: 0;
}
.case-study-feature__body p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
  padding-bottom: 1%;
}
@media (max-width: 1100px) {
  .case-study-showcase .sh {
    margin-bottom: 48px;
  }
  .case-study-feature {
    padding: 28px;
  }
  .case-study-feature__intro {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 28px;
  }
  .case-study-feature__logo-card {
    width: 116px;
    padding: 18px;
  }
  .case-study-feature__heading h3 {
    font-size: clamp(28px, 5vw, 40px);
  }
  .case-study-feature__body p {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .case-study-feature {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .case-study-feature__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .case-study-feature__logo-card {
    width: 128px;
  }
  .case-study-feature__heading h3 {
    font-size: 26px;
    line-height: 1.2;
  }
  .case-study-feature .cs-tags {
    gap: 6px;
  }
  .case-study-feature .cs-tag {
    padding: 5px 10px;
    font-size: 13px;
  }
  .case-study-feature__body h4 {
    font-size: 20px;
    margin-top: 24px;
  }
  .case-study-feature__body p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.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 0.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-subtle);
}
.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, 0.18) 0%,
      rgba(21, 113, 230, 0.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, 0.9);
  margin-bottom: 24px;
}
.open-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  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, 0.14);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(48, 126, 230, 0.16) 0%,
      rgba(48, 126, 230, 0.04) 52%,
      rgba(48, 126, 230, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 24, 44, 0.96) 0%,
      rgba(7, 19, 33, 0.98) 100%
    );
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.open-text__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.82;
  mix-blend-mode: screen;
  filter: saturate(0.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: 0.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-form-actions {
  display: none;
}
.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, 0.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, 0.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, 0.2);
}
.contact-info__cta--review:hover {
  background: linear-gradient(135deg, #12315f 0%, #1f4786 100%);
  box-shadow: 0 22px 46px rgba(16, 52, 108, 0.24);
}
.contact-form-box {
  background: var(--light-bg);
  border: 1px solid rgba(21, 113, 230, 0.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 0.2s,
    box-shadow 0.2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 113, 230, 0.12);
}
.fg.invalid input {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.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 0.2s,
    box-shadow 0.2s,
    background 0.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, 0.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(--footer-corner-fill, #fff);
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.site-footer__shell {
  width: 100%;
  margin: 0 auto;
  background: var(--footer-corner-fill, transparent);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: visible;
}
.site-footer__cta {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: linear-gradient(
    180deg,
    #5ea8f0 0%,
    #2d75d4 20%,
    #164a9e 48%,
    #072655 74%,
    #04152f 100%
  );
}
.site-footer__cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  opacity: 0.9;
  mix-blend-mode: screen;
  transform: scale(1.08);
}
.site-footer__cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(74, 155, 255, 0.05) 0%,
    rgba(6, 24, 55, 0.04) 24%,
    rgba(0, 10, 26, 0.5) 72%,
    rgba(0, 10, 26, 0.82) 100%
  );
}
.site-footer__cta .container,
.site-footer__body .container {
  position: relative;
  z-index: 2;
}
.site-footer__cta-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 132px 0 96px;
}
.site-footer__cta h2 {
  color: #fff;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.18;
  margin-bottom: 14px;
  white-space: nowrap;
}
.site-footer__cta .section-desc {
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.5;
}
.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, 0.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, 0.66);
  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: 0.96;
}
.f-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.f-location img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 1;
}
/* 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, 0.62);
  transition: color 0.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, 0.62);
  transition: color 0.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, 0.82);
}
.f-legal {
  display: flex;
  gap: 20px;
}
.f-legal a {
  font-size: 18.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}
.f-legal a:hover {
  color: #fff;
}

/* ── HOME PAGE DESKTOP ALIGNMENT ───────────────────────────── */
@media (min-width: 1101px) {
  body.page--home > .home-hero > .container,
  body.page--home > .stats-section > .container,
  body.page--home > .section > .container {
    width: calc(100% - (2 * var(--desktop-side-margin)));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  body.page--home .home-hero__content {
    padding: 151px 0 103px;
  }
  body.page--home .home-hero__brand {
    width: 128px;
    margin-bottom: 40px;
  }
  body.page--home .home-hero__btns .btn {
    min-width: 167px;
  }
  body.page--home .home-hero__btn-marketplace {
    min-width: auto;
  }
  body.page--home .home-hero__orb {
    width: min(75vw, 1083px);
  }
  body.page--home .home-hero__video {
    object-position: 52% 45%;
    transform: scale(1.03);
  }

  body.page--home .stats-heading,
  body.page--home .sh {
    margin-bottom: 48px;
  }
  body.page--home .stats-heading h2,
  body.page--home .sh h2 {
    font-size: clamp(30px, 3.33vw, 48px);
    line-height: 1.21;
  }
  body.page--home .stats-heading .section-desc,
  body.page--home .trust-strip .section-desc,
  body.page--home .sh > .section-desc {
    font-size: 24px;
    line-height: 34px;
  }
  body.page--home .sh.c .section-desc {
    max-width: 1020px;
  }

  body.page--home .expertise-grid {
    margin-bottom: 48px;
    margin-left: 0;
    margin-right: 0;
    border-color: #d3e7ff;
    border-radius: 16px;
  }
  body.page--home .expertise-card {
    min-height: 208px;
    padding: 40px 32px;
  }
  body.page--home .expertise-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 8px;
  }
  body.page--home .expertise-icon img {
    width: 32px;
    height: 32px;
  }
  body.page--home .expertise-title {
    margin-bottom: 8px;
    font-size: 20px;
  }
  body.page--home .expertise-copy {
    font-size: 16px;
    line-height: 24px;
  }

  body.page--home .trust-strip .section-desc {
    margin-bottom: 48px;
  }
  body.page--home .trust-logos {
    gap: 40px;
    padding-top: 0;
  }
  body.page--home .trust-logo {
    min-height: 80px;
  }

  body.page--home .inno-grid {
    gap: 20px;
    margin-top: 48px;
  }
  body.page--home .inno-card {
    min-height: 556px;
    padding: 24px;
    border-radius: 20px;
  }
  body.page--home .inno-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
    border-radius: 8px;
  }
  body.page--home .inno-icon img {
    width: 32px;
    height: 32px;
  }
  body.page--home .inno-card h4 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 42px;
  }
  body.page--home .inno-card p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
  }
  body.page--home .inno-card .card-img {
    margin: auto 0 0;
    border-radius: 20px;
  }
  body.page--home .inno-card .card-img img {
    border-radius: 20px;
  }

  body.page--home .geo-quote-card {
    margin-top: 56px;
    border-radius: 20px;
  }
  body.page--home .geo-quote-card__quote {
    left: 24px;
    bottom: 24px;
    width: 557px;
    padding: 24px;
    border-radius: 16px;
  }
  body.page--home .geo-quote-card__quote p {
    font-size: 18px;
    line-height: 30px;
  }

  body.page--home .offer-list {
    margin-top: 48px;
  }
  body.page--home .offer-row {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1fr);
    column-gap: clamp(32px, 4vw, 64px);
    padding: 48px 0;
  }
  body.page--home .offer-row.rev {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.93fr);
  }
  body.page--home .offer-text,
  body.page--home .offer-row.rev .offer-text {
    padding: 0;
  }
  body.page--home .offer-tag {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }
  body.page--home .offer-text h3 {
    margin-bottom: 16px;
    font-size: 32px;
    line-height: 42px;
  }
  body.page--home .offer-text p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 28px;
  }
  body.page--home .offer-img img {
    height: 328px;
    border-radius: 20px;
  }

  body.page--home .deliver-grid {
    gap: 20px;
    margin-top: 48px;
  }
  body.page--home .deliver-card {
    border-radius: 20px;
  }
  body.page--home .deliver-card__img {
    height: 280px;
  }
  body.page--home .deliver-card__body {
    padding: 40px;
  }

  body.page--home .home-cs-grid {
    grid-template-columns: minmax(0, 2.05fr) minmax(320px, 1fr);
    gap: clamp(20px, 2vw, 28px);
    margin-top: 48px;
  }
  body.page--home .home-cs-card {
    min-height: 420px;
    border-radius: 20px;
  }
  body.page--home .home-cs-card__body {
    padding: 40px;
  }
}

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

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --pad: 40px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .deliver-showcase .split-img img {
    height: 420px;
    min-height: 0;
  }
  .maps-use-cases .split-img {
    height: auto;
  }
  .maps-use-cases .split-img img {
    height: 420px;
    min-height: 0;
  }
  .tech-showcase .split-img {
    height: auto;
  }
  .tech-showcase .split-img img {
    height: 420px;
    min-height: 0;
  }
  .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;
    gap: 28px;
    padding: 32px 28px;
  }
  .process-wrap {
    grid-template-columns: 1fr;
  }
  .process-img {
    min-height: 0;
  }
  .process-img img {
    height: 420px;
    min-height: 0;
  }
  .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, 0.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__details {
    gap: 16px;
  }
  .aws-partnership__logo {
    width: 100%;
  }
  .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, 0.1) 0%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .home-hero__orb {
    width: 100%;
    padding: 0;
    opacity: 0.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: 90px;
    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 {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 10px;
}
.offer-points li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
}
.offer-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.btn--sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
}
.offer-btn {
  border-width: 1.5px;
}
.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, 0.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, 0.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: 0.68;
  }
  .home-hero__content {
    width: 100%;
    min-height: 640px;
    padding: 88px 0 56px;
  }
  .home-hero__brand {
    width: 86px;
    margin-bottom: 18px;
  }
  .home-hero__content h1,
  .page-hero__content h1 {
    max-width: 349px;
    margin-bottom: 18px;
  }
  .page-hero--consulting .page-hero__content h1 {
    max-width: 349px;
  }
  .home-hero__content .section-desc,
  .page-hero__content .section-desc {
    max-width: 349px;
    margin-bottom: 28px;
    font-size: 18px;
    text-align: left !important;
  }
  .home-hero__btns {
    width: 100%;
    gap: 12px;
  }
  .home-hero__btns .btn,
  .page-hero .btn {
    width: 100%;
    max-width: 343px;
    min-width: 0;
  }
  .page-hero--consulting .btn--hero-multiline {
    white-space: normal;
  }
  .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--workflows .workflows-intro-copy {
    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: flex-start;
    justify-content: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    text-align: left;
  }
  .page-hero--contact .page-hero__content h1 {
    max-width: none;
    margin: 0;
  }
  .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;
  }
  .expertise-card,
  .feat-item,
  .inno-card {
    text-align: center;
  }
  .expertise-icon,
  .feat-item__icon,
  .inno-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .expertise-copy,
  .feat-item p,
  .inno-card p {
    margin: 0 auto;
    max-width: 280px;
  }

  .home-hero__content,
  .page-hero__content,
  .stats-heading,
  .sh,
  .split-text,
  .why-left,
  .aws-partnership__copy,
  .contact-info,
  .open-text {
    text-align: left;
  }
  .home-hero__content .section-desc,
  .page-hero__content .section-desc,
  .stats-heading .section-desc,
  .sh .section-desc,
  .split-text > .section-desc,
  .why-left > .section-desc,
  .aws-partnership__copy .section-desc,
  .contact-info > p {
    margin-left: 0;
    margin-right: 0;
  }
  .mobile-keep-center,
  .mobile-keep-center h1,
  .mobile-keep-center h2,
  .mobile-keep-center .section-desc {
    text-align: center;
  }
  .mobile-keep-center .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip .section-desc {
    max-width: 330px;
    margin: 0 auto 24px;
  }
  .trust-marquee__track {
    animation-duration: 24s;
  }
  .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-slider[data-auto-slider] .trust-slider__viewport {
    scroll-snap-type: none;
  }
  .trust-slider[data-auto-slider] .trust-logos {
    display: flex;
    gap: 12px;
    align-items: stretch;
    padding: 4px 0;
  }
  .trust-slider[data-auto-slider] .trust-logo {
    flex: 0 0 clamp(180px, 56vw, 228px);
    min-height: 86px;
    padding: 14px 12px;
    border: 1px solid rgba(21, 113, 230, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 53, 102, 0.07);
  }
  .trust-slider[data-auto-slider] .trust-logo img {
    max-width: 100%;
    max-height: 42px;
    margin: 0 auto;
  }
  .trust-slider[data-auto-slider] .trust-logo--datastream img {
    max-width: 162px;
    max-height: 34px;
  }
  .trust-slider[data-auto-slider] .trust-logo--iisd img {
    max-width: 134px;
    max-height: 38px;
  }
  .trust-slider[data-auto-slider] .trust-logo--tesera img {
    max-width: 80px;
    max-height: 34px;
  }
  .trust-slider[data-auto-slider] .trust-logo--ava img {
    max-width: 122px;
    max-height: 36px;
  }
  .trust-slider[data-auto-slider] .trust-logo--cove img {
    max-width: 118px;
    max-height: 34px;
  }
  .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, 0.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 {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 20px;
  }
  .offer-points li {
    padding-left: 14px;
    font-size: 14px;
  }
  .offer-points li::before {
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
  }
  .offer-row .offer-btn {
    width: 100%;
    justify-content: center;
  }
  .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;
  }
  .page--about .about-intro__image img {
    height: 238px;
    border-radius: 20px;
  }
  .page--about .about-intro {
    gap: 24px;
  }
  .page--about .about-intro .eyebrow {
    margin-bottom: 10px;
  }
  .page--about .about-intro .split-text h2 {
    margin-bottom: 14px;
  }
  .page--about .about-intro .section-desc,
  .page--about .about-intro__copy p {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
  }
  .page--about .about-intro .section-desc {
    margin-bottom: 0;
  }
  .page--about .about-intro__copy {
    justify-content: flex-start;
    gap: 16px;
  }
  .page--about .about-intro__copy p + p {
    margin-top: 0;
  }
  .page--about .about-intro__media {
    display: none;
  }
  .page--about .about-intro__image {
    display: none !important;
  }
  .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, 0.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, 0.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, 0.9);
  }
  .page--about .team-bio {
    color: rgba(255, 255, 255, 0.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, 0.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, 0.72);
  }
  .testi-dots {
    justify-content: center;
    margin-top: 18px;
  }

  .feat-grid {
    gap: 16px;
    margin-top: 32px;
  }
  .feat-item {
    border: 1px solid #c6c6ff !important;
    padding: 20px;
    border-radius: 20px;
    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-showcase .split-img img {
    height: 280px;
    min-height: 0;
  }
  .maps-use-cases .split-img img {
    height: 280px;
    min-height: 0;
  }
  .tech-showcase .split-img img {
    height: 280px;
    min-height: 0;
  }
  .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;
    font-weight: 500;
    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 5%;
  }
  .how-step,
  .how-steps.light .how-step {
    border-top: none;
    background: transparent;
    min-height: 0;
    color: var(--navy);
  }
  .step-text,
  .how-steps.light .step-text {
    padding: 22px 20px 18px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    color: var(--navy);
  }
  .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-self: flex-start;
    width: auto;
    height: auto;
    margin-bottom: 10px;
    background: transparent;
    color: var(--blue);
    border-radius: 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .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 .process-steps {
    min-height: 0;
  }
  .page--development .p-steps-list {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    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: 0.08em;
  }
  .page--development .process-img img {
    height: 260px;
  }

  .faq-wrap {
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .faq-item {
    margin-bottom: 14px;
    padding: 0 16px;
    border: 1px solid rgba(21, 113, 230, 0.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, 0.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: 14px;
    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 .contact-form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    align-items: stretch;
  }
  .page--contact .contact-form-actions .contact-info__cta {
    min-height: 112px;
    padding: 18px 14px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  .page--contact .contact-form-actions .contact-info__cta span {
    max-width: 150px;
  }
  .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: 24px;
    border-top-right-radius: 24px;
  }
  .site-footer__cta-inner {
    max-width: 360px;
    padding: 70px 0 82px;
  }
  .site-footer__cta h2 {
    font-size: clamp(25px, 7.8vw, 40px);
    line-height: 1.02;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }
  .site-footer__cta-line {
    display: block;
  }
  .site-footer__cta-line--wide {
    white-space: nowrap;
  }
  .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: 100px;
  }
  .f-location {
    justify-content: center;
  }
  .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;
  }
}

@media (min-width: 1200px) {
  .workflows-intro-break {
    display: block;
  }
}
