:root {
  --navy: #0f294d;
  --navy-2: #173a68;
  --ink: #132033;
  --muted: #607089;
  --line: #dfe8f2;
  --soft: #f4f8fc;
  --soft-2: #f8fbff;
  --white: #ffffff;
  --orange: #ff5a1f;
  --gold: #d7a846;
  --gold-soft: #fff4dc;
  --shadow: 0 22px 70px rgba(15, 41, 77, 0.12);
  --radius: 20px;
  --section: 104px;
  --header-height: 68px;
  --header-height-mobile: 62px;
  --hero-title-size: clamp(2.6rem, 5.2vw, 4.8rem);
  --hero-title-size-mobile: clamp(2.2rem, 10vw, 3.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: var(--section) 0;
}

.section-anchor {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 41, 77, 0.96);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: var(--header-height);
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--soft-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.92) 34%, rgba(248, 251, 255, 0.42) 70%),
    url("assets/commerce-route-hero.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  content: "";
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), var(--white));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 136px;
}

.hero-copy {
  width: min(710px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: var(--hero-title-size);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-lede {
  width: min(720px, 100%);
  margin: 26px 0 0;
  color: #40516a;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.cta-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(15, 41, 77, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #153963;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: #cfdae7;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(15, 41, 77, 0.08);
}

.hero-proof {
  width: min(760px, 100%);
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.proof-item {
  min-height: 116px;
  border: 1px solid rgba(223, 232, 242, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 55px rgba(15, 41, 77, 0.08);
  padding: 22px;
}

.proof-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.35;
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.9) 48%, rgba(248, 251, 255, 0.52) 100%),
    url("assets/commerce-route-hero.png") center right / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  content: "";
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), var(--white));
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: end;
}

.page-hero h1 {
  font-size: var(--hero-title-size);
}

.page-hero p:not(.eyebrow) {
  margin: 0;
  color: #40516a;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.marketplace-page-hero {
  background:
    linear-gradient(90deg, rgba(15, 41, 77, 0.96) 0%, rgba(15, 41, 77, 0.9) 48%, rgba(15, 41, 77, 0.62) 100%),
    url("assets/commerce-route-hero.png") center right / cover no-repeat;
}

.marketplace-page-hero h1,
.marketplace-page-hero .eyebrow {
  color: var(--white);
}

.marketplace-page-hero p:not(.eyebrow) {
  color: #d7e2ef;
}

.marketplace-page-hero::after {
  background: linear-gradient(180deg, rgba(15, 41, 77, 0), var(--navy));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-grid div {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 4px;
  background: var(--white);
  padding: 24px;
}

.stats-grid strong {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 650;
}

.two-column,
.marketplace-layout,
.why-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.about-panel {
  border-left: 4px solid var(--gold);
  padding-left: 32px;
}

.about-panel p,
.section-heading p,
.marketplace-layout p,
.why-layout p,
.contact-layout p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-signals {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--navy);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--orange);
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--navy);
}

.home-card-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-link-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 16px 44px rgba(15, 41, 77, 0.07);
  padding: 24px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-link-card:hover,
.feature-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.36);
  box-shadow: 0 20px 52px rgba(15, 41, 77, 0.11);
}

.feature-link-card svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex: 0 0 auto;
}

.about-signals svg,
.why-grid svg,
.icon-shell svg {
  width: 20px;
  height: 20px;
}

.ecosystem-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #f7faff 46%, var(--white) 100%);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 54px;
}

.section-heading p {
  margin-top: 18px;
}

.section-heading.narrow {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.ecosystem-map {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(rgba(15, 41, 77, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 41, 77, 0.04) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
  box-shadow: 0 20px 60px rgba(15, 41, 77, 0.08);
  overflow: hidden;
}

.ecosystem-map::before,
.ecosystem-map::after {
  position: absolute;
  inset: 56px;
  content: "";
  border: 1px solid rgba(215, 168, 70, 0.48);
  border-radius: 999px;
}

.ecosystem-map::after {
  inset: 100px 210px;
  border-color: rgba(15, 41, 77, 0.22);
}

.ecosystem-core {
  position: relative;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}

.ecosystem-core img {
  width: 190px;
}

.ecosystem-core strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.ecosystem-core span {
  color: var(--muted);
  font-weight: 650;
}

.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid #d8e3ef;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 35px rgba(15, 41, 77, 0.1);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.orbit-one {
  left: 7%;
  top: 24%;
}

.orbit-two {
  left: 18%;
  bottom: 18%;
}

.orbit-three {
  right: 8%;
  top: 22%;
}

.orbit-four {
  right: 19%;
  bottom: 18%;
}

.orbit-five {
  top: 49%;
  right: 4%;
}

.orbit-six {
  top: 49%;
  left: 5%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.office-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 41, 77, 0.07);
}

.service-card {
  min-height: 320px;
  padding: 26px;
}

.featured-card {
  border-color: rgba(255, 90, 31, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #fff9f5 100%);
}

.icon-shell {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--navy);
  margin-bottom: 22px;
}

.service-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card li + li {
  margin-top: 9px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.mini-marketplaces,
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-marketplaces {
  margin-top: 18px;
}

.brand-chip,
.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
  line-height: 1;
}

.brand-chip {
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.82rem;
}

.marketplace-section {
  background: var(--navy);
}

.marketplace-section-page {
  padding-top: 96px;
}

.marketplace-section .eyebrow,
.marketplace-section h2 {
  color: var(--white);
}

.marketplace-section p {
  color: #c7d4e4;
}

.marketplace-layout {
  align-items: center;
}

.logo-wall {
  justify-content: end;
}

.logo-card {
  min-width: 148px;
  min-height: 76px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 18px;
  font-size: 1.08rem;
}

.amazon {
  color: #ff9900;
}

.walmart {
  color: #0071ce;
}

.etsy {
  color: #f16521;
}

.ebay {
  color: #86b817;
}

.shopify {
  color: #95bf47;
}

.tiktok {
  color: #0f294d;
}

.marketplace-section .tiktok,
.marketplace-section .more {
  color: var(--white);
}

.more {
  color: var(--gold);
}

.process-section {
  background: var(--soft-2);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.timeline::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 41px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--navy));
}

.timeline article {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15, 41, 77, 0.06);
  padding: 24px;
}

.timeline span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 22px;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid div {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft-2);
  color: var(--navy);
  padding: 20px;
  font-weight: 760;
}

.why-grid svg {
  flex: 0 0 auto;
  color: var(--orange);
}

.cta-section {
  padding: 24px 0;
}

.cta-panel {
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 41, 77, 0.96), rgba(23, 58, 104, 0.96)),
    var(--navy);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 56px);
}

.cta-panel > div {
  width: min(720px, 100%);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: var(--white);
}

.cta-panel p {
  margin-top: 16px;
  color: #d7e2ef;
}

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

.contact-section {
  background: var(--soft-2);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.office-card {
  padding: 24px;
}

.office-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.office-card h3 {
  margin-bottom: 10px;
}

.office-card p {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--muted);
}

.office-card a {
  display: inline-block;
  color: var(--orange);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.office-card span:last-child {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  padding: clamp(24px, 4vw, 34px);
}

.form-row + .form-row {
  margin-top: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 780;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #ccd8e5;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 4px rgba(23, 58, 104, 0.12);
}

.form-row textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.visually-hidden-control {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  background: #08192f;
  color: #dce6f2;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.7fr;
  gap: 54px;
}

.footer-logo {
  width: 228px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-grid img {
  width: 204px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: #c3d0df;
}

.footer-grid p {
  margin: 0 0 10px;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: #9fb0c4;
  font-size: 0.9rem;
}

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

  .timeline::before {
    display: none;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }
}

@media (max-width: 860px) {
  :root {
    --section: 78px;
  }

  .container {
    width: min(100% - 30px, 1160px);
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    left: 15px;
    right: 15px;
    top: calc(var(--header-height) + 12px);
    z-index: 65;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
    padding: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--soft-2);
  }

  .site-nav a[aria-current="page"] {
    color: var(--navy);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.9) 56%, rgba(248, 251, 255, 0.72) 100%),
      url("assets/commerce-route-hero.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 72px 0 104px;
  }

  h1 {
    font-size: var(--hero-title-size-mobile);
  }

  .hero-proof,
  .stats-grid,
  .two-column,
  .marketplace-layout,
  .why-layout,
  .contact-layout,
  .page-hero-grid,
  .home-card-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 84px 0 78px;
  }

  .stats-band {
    margin-top: -38px;
  }

  .about-panel {
    border-left: 0;
    border-top: 4px solid var(--gold);
    padding: 28px 0 0;
  }

  .ecosystem-map {
    min-height: 460px;
  }

  .ecosystem-map::before,
  .ecosystem-map::after {
    display: none;
  }

  .orbit {
    position: static;
    margin: 5px;
  }

  .ecosystem-map {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 8px;
    padding: 22px;
  }

  .ecosystem-core {
    flex-basis: 100%;
    margin-bottom: 8px;
  }

  .logo-wall {
    justify-content: start;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-nav {
    top: calc(var(--header-height-mobile) + 12px);
  }

  .brand img {
    height: var(--header-height-mobile);
    width: auto;
  }

  .nav-shell {
    min-height: var(--header-height-mobile);
  }

  .hero-content {
    padding-top: 58px;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .timeline,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    min-height: 106px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-card {
    min-height: auto;
  }

  .logo-card {
    min-width: calc(50% - 5px);
    min-height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
