:root {
  --navy: #020817;
  --navy-2: #061326;
  --ink: #0f172a;
  --muted: #5b677a;
  --soft: #f6f9fd;
  --line: #dbe3ee;
  --white: #ffffff;
  --blue: #075dff;
  --blue-2: #0b7cff;
  --cyan: #08b6d9;
  --green: #13b981;
  --purple: #8a3ffc;
  --orange: #ff7a1a;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  --radius: 8px;
  --header-height: 76px;
}

* {
  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;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li::marker {
  color: var(--blue);
}

.container {
  width: min(100% - 72px, 1440px);
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.brand-icon,
.button-icon,
.link-icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.brand-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.7;
}

.button-icon,
.link-icon {
  width: 18px;
  height: 18px;
}

.accent {
  color: var(--blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.nav-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.brand-logo-img {
  display: block;
  width: 112px;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--white);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue);
}

.lang-switch {
  min-width: 44px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.lang-switch:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(7, 93, 255, 0.25);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(2, 8, 23, 0.22);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: #a9b4c5;
}

.button.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 138px 0 78px;
}

.hero-media,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.72) 42%, rgba(2, 8, 23, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.2) 0%, rgba(2, 8, 23, 0.98) 100%);
}

.hero-home .hero-media,
.hero-services .hero-media,
.hero-solutions .hero-media,
.hero-resources .hero-media,
.hero-contact .hero-media {
  background-image: url("/static/images/hero-globe.png");
}

.hero-about .hero-media {
  background-image: url("/static/images/about-boardroom.png");
}

.hero-services .hero-media,
.hero-solutions .hero-media,
.hero-resources .hero-media,
.hero-contact .hero-media {
  background-position: center right;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 span {
  color: var(--blue-2);
}

.hero-copy p {
  width: min(100%, 620px);
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-copy .button-row {
  margin-top: 36px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.blue-text {
  color: var(--blue);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.hero-proof span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  align-items: center;
  min-width: 0;
}

.hero-proof .icon {
  grid-row: span 2;
  width: 28px;
  height: 28px;
}

.hero-proof b {
  font-size: 13px;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero-proof.compact {
  grid-template-columns: repeat(3, minmax(0, 190px));
}

.hero-panel {
  position: relative;
  min-height: 360px;
}

.orbit-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(10, 27, 52, 0.75);
  border: 1px solid rgba(100, 175, 255, 0.35);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.orbit-card .icon {
  color: #82c8ff;
}

.orbit-card.top {
  top: 12%;
  left: 44%;
}

.orbit-card.left {
  top: 36%;
  left: 4%;
}

.orbit-card.right {
  top: 42%;
  right: 5%;
}

.orbit-card.bottom {
  left: 38%;
  bottom: 7%;
}

.orbit-card.lower-left,
.orbit-card.lower-right {
  display: none;
}

.section {
  padding: 76px 0;
}

.section.compact {
  padding: 42px 0;
}

.compact-top {
  padding-top: 20px;
}

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

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p,
.mission-grid p,
.service-card p,
.solution-card p,
.story-card p,
.why-row p,
.expertise-row p,
.values-row p,
.contact-grid p,
.office-grid p,
.resource-card p,
.article-list p,
.webinar-list p,
.newsletter-card p,
.cta-inline p,
.cta-card p,
.dark-card p {
  color: var(--muted);
}

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

.logo-strip {
  padding: 30px 0 36px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f5f8fd);
  border-bottom: 1px solid var(--line);
}

.logo-strip.inset {
  width: min(100% - 72px, 1240px);
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.logo-strip h2 {
  margin-bottom: 24px;
  font-size: 20px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
}

.logo-row span {
  color: #3a4659;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 30px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.mini-card,
.topic-grid a,
.team-card,
.connect-list article,
.office-grid article,
.article-list,
.webinar-list,
.newsletter-card,
.cta-inline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  min-height: 260px;
  padding: 32px;
}

.service-card,
.solution-card,
.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card ul,
.mini-card ul,
.stage-row ul {
  color: #243044;
  font-size: 14px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}

.icon-bubble {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
}

.icon-bubble .icon {
  width: 34px;
  height: 34px;
}

.icon-bubble.blue {
  color: var(--blue);
  background: #eef5ff;
}

.icon-bubble.green {
  color: var(--green);
  background: #eafaf3;
}

.icon-bubble.purple {
  color: var(--purple);
  background: #f3eefe;
}

.icon-bubble.orange {
  color: var(--orange);
  background: #fff2e8;
}

.icon-bubble.cyan {
  color: var(--cyan);
  background: #e9fbff;
}

.mini-card {
  min-height: 230px;
  padding: 26px 16px;
}

.mini-card .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.mini-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
}

.dark-band {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 12, 27, 0.98), rgba(5, 20, 42, 0.96)),
    radial-gradient(circle at 80% 30%, rgba(7, 93, 255, 0.28), transparent 35%);
}

.economy-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.economy-grid > div,
.economy-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.economy-grid article {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.economy-grid p,
.dark-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.economy-grid .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--blue-2);
}

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

.framework-map {
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.framework-list {
  display: grid;
  gap: 10px;
}

.framework-list span {
  padding: 10px 16px;
  border: 1px solid #b9d5ff;
  border-radius: 5px;
  background: #f4f8ff;
  color: #1f3554;
  font-weight: 800;
  font-size: 14px;
}

.framework-core {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 18px;
  background: var(--blue);
  box-shadow: 0 18px 35px rgba(7, 93, 255, 0.28);
}

.framework-core .icon {
  width: 44px;
  height: 44px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-row article {
  text-align: center;
  font-size: 13px;
}

.process-row span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--blue);
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
}

.process-row .icon {
  width: 32px;
  height: 32px;
}

.process-row p {
  margin-top: 8px;
  color: var(--muted);
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.faq-head.local {
  margin-bottom: 0;
}

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

.faq-list {
  margin: 20px 0 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.cta-band {
  color: var(--white);
  background: var(--navy-2);
}

.cta-shell {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-shell p {
  color: rgba(255, 255, 255, 0.74);
}

.category-tabs {
  position: sticky;
  top: 0;
  z-index: 8;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tabs-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
  overflow-x: auto;
}

.tabs-row a {
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px 10px;
  color: #22314b;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.tabs-row a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.tabs-row .icon {
  width: 30px;
  height: 30px;
}

.soft-band {
  background: linear-gradient(180deg, #f8fbff, #eef5fc);
  border-block: 1px solid var(--line);
}

.why-row,
.expertise-row,
.values-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.why-row article,
.expertise-row article {
  text-align: center;
  border-left: 1px solid #cbd8eb;
  padding-left: 28px;
}

.why-row .icon,
.expertise-row .icon,
.values-row .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
}

.cta-card {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 48px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.96), rgba(5, 26, 55, 0.94)),
    url("/static/images/hero-globe.png") right center / cover no-repeat;
}

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

.stage-row .card {
  min-height: 330px;
}

.tag {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0;
}

.stat-row b {
  font-size: 31px;
  line-height: 1;
}

.stat-row small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.search-box {
  width: min(100%, 560px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.search-box input {
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  padding: 0 22px;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-box button {
  width: 64px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.topic-grid a {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px 8px;
  color: #1f2b3f;
  font-weight: 800;
  text-align: center;
}

.topic-grid .icon {
  width: 40px;
  height: 40px;
}

.resource-card {
  padding: 0;
  overflow: hidden;
}

.resource-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background-image: url("/static/images/resource-collage.png");
  background-size: 200% 200%;
}

.resource-image span {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  border-radius: 5px;
  color: var(--white);
  background: rgba(4, 14, 32, 0.65);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-body {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
}

.img-eu {
  background-position: left top;
}

.img-lock {
  background-position: right top;
}

.img-shield {
  background-position: left bottom;
}

.img-building {
  background-position: right bottom;
}

.resources-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 38px;
}

.resources-split > div > h2 {
  margin-bottom: 18px;
}

.article-list,
.webinar-list {
  padding: 18px;
}

.article-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.article-list article:last-child,
.webinar-list article:last-child {
  border-bottom: 0;
}

.resource-thumb {
  min-height: 120px;
  border-radius: 5px;
  background-image: url("/static/images/resource-collage.png");
  background-size: 200% 200%;
}

.article-list h3,
.webinar-list h3 {
  margin: 6px 0 7px;
  font-size: 20px;
}

.article-list small {
  color: var(--muted);
}

.webinar-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.webinar-list time {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.webinar-list time b {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.newsletter-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: auto 1fr minmax(340px, 520px);
  gap: 28px;
  align-items: center;
  padding: 28px 34px;
  color: var(--white);
  background: var(--navy-2);
}

.newsletter-card p,
.newsletter-card .form-status {
  color: rgba(255, 255, 255, 0.75);
}

.mail-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.mail-icon .icon {
  width: 38px;
  height: 38px;
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.inline-form input {
  min-width: 0;
  height: 56px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px 0 0 6px;
  outline: none;
}

.inline-form button {
  border-radius: 0 6px 6px 0;
}

.inline-form .form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin-top: 8px;
  font-size: 13px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 74px;
  align-items: center;
}

.mission-grid h2 {
  margin-bottom: 24px;
}

.short-line {
  width: 32px;
  height: 3px;
  margin: 18px 0 24px;
  background: var(--blue);
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.mission-values article {
  text-align: center;
}

.mission-values .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.mission-values b,
.mission-values small {
  display: block;
}

.mission-values b {
  font-size: 13px;
}

.mission-values small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.mission-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 16, 34, 0.78);
  backdrop-filter: blur(12px);
}

.metric-overlay b {
  padding: 22px 14px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-overlay b:last-child {
  border-right: 0;
}

.metric-overlay small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.team-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 170px;
  overflow: hidden;
}

.team-card > div:last-child {
  padding: 24px 18px;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card b {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
}

.team-card p {
  color: var(--muted);
  font-size: 13px;
}

.team-card a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  color: #1f2b3f;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
}

.team-photo {
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team-one {
  background-image: url("/static/images/team-one.png");
}

.team-two {
  background-image: url("/static/images/team-two.png");
}

.team-three {
  background-image: url("/static/images/team-three.png");
}

.team-four {
  background-image: url("/static/images/team-four.png");
}

.values-band {
  padding: 52px 0;
}

.values-row {
  grid-template-columns: 110px repeat(4, 1fr);
}

.values-row article {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 28px;
}

.cta-inline {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px 42px;
  box-shadow: none;
}

.cta-inline .mail-icon {
  color: var(--blue);
  background: #eff5ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 80px;
}

.contact-grid h2 {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
  padding: 16px 18px;
}

.privacy-note {
  font-size: 13px;
}

.privacy-note a {
  color: var(--blue);
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.form-status.error {
  color: #b42318;
}

.form-status.success {
  color: #0f7a4b;
}

.connect-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.connect-list article {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  box-shadow: none;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.office-grid article {
  min-height: 250px;
  padding: 32px;
  text-align: center;
  box-shadow: none;
}

.line-city {
  width: 82px;
  height: 82px;
  color: #8ca2c4;
}

.office-grid .short-line {
  margin-inline: auto;
}

.office-grid b {
  color: #334155;
}

.contact-bottom {
  align-items: stretch;
}

.dark-card {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 44px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.96), rgba(5, 26, 55, 0.9)),
    url("/static/images/hero-globe.png") right center / cover no-repeat;
}

.dark-card p {
  margin: 16px 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

.watermark-icon {
  position: absolute;
  right: 40px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  color: rgba(54, 144, 255, 0.34);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .card-grid.four,
  .team-grid,
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.five,
  .stage-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-row,
  .expertise-row,
  .values-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-row > div {
    grid-column: 1 / -1;
  }

  .economy-grid,
  .resources-split,
  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 40px, 1440px);
  }

  .site-header {
    position: absolute;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .brand {
    grid-row: 1;
    font-size: 26px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .icon-button {
    display: grid;
  }

  .nav-toggle {
    grid-column: 4;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: auto;
    width: min(220px, calc(100vw - 32px));
    box-sizing: border-box;
    justify-self: stretch;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(2, 8, 23, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }

  .site-nav.open {
    display: flex;
  }

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

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

  .site-nav a.active {
    background: rgba(7, 93, 255, 0.18);
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 52px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.62) 54%, rgba(2, 8, 23, 0.98)),
      linear-gradient(90deg, rgba(2, 8, 23, 0.86), rgba(2, 8, 23, 0.22));
  }

  .hero-media {
    background-position: center;
  }

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

  .hero-copy p {
    font-size: 17px;
  }

  .hero-proof,
  .hero-proof.compact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .button-row {
    gap: 12px;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .split,
  .faq-grid,
  .process-row,
  .cta-shell,
  .cta-card,
  .newsletter-card,
  .cta-inline {
    grid-template-columns: 1fr;
  }

  .cta-shell,
  .cta-card {
    align-items: flex-start;
  }

  .cta-card {
    display: grid;
    padding: 28px;
  }

  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-map {
    grid-template-columns: 1fr;
  }

  .framework-core {
    margin-inline: auto;
  }

  .framework-list.right {
    order: 3;
  }

  .tabs-row {
    grid-template-columns: repeat(7, minmax(150px, 1fr));
  }

  .newsletter-card,
  .cta-inline {
    padding: 24px;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .inline-form input,
  .inline-form button {
    border-radius: 6px;
  }

  .inline-form button {
    margin-top: 10px;
  }

  .article-list article,
  .webinar-list article {
    grid-template-columns: 1fr;
  }

  .resource-thumb {
    min-height: 180px;
  }

  .mission-values,
  .metric-overlay {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-overlay {
    position: static;
    border-radius: 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .container,
  .logo-strip.inset {
    width: min(100% - 28px, 1440px);
  }

  .section {
    padding: 54px 0;
  }

  .card-grid.four,
  .card-grid.five,
  .card-grid.six,
  .card-grid.three,
  .stage-row,
  .team-grid,
  .office-grid,
  .topic-grid,
  .why-row,
  .expertise-row,
  .values-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy .button-row,
  .button-row {
    align-items: stretch;
  }

  .button-row .button,
  .hero-copy .button {
    width: 100%;
  }

  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card {
    grid-template-columns: 120px 1fr;
  }

  .contact-grid {
    gap: 42px;
  }

  .connect-list article {
    grid-template-columns: auto 1fr;
  }

  .connect-list article > .link-icon {
    display: none;
  }

  .dark-card {
    padding: 28px;
  }

  .watermark-icon {
    display: none;
  }
}

/* Final typography and footer normalization. */
body {
  font-weight: 400;
}

h1 {
  font-size: 64px;
  font-weight: 500;
}

h2 {
  font-size: 34px;
  font-weight: 500;
}

h3,
b,
strong,
.brand,
.site-nav,
.button,
.text-link,
.eyebrow,
.tag {
  font-weight: 500;
}

.logo-row span,
.stat-row b,
.metric-overlay b {
  font-weight: 500;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #061326, #071b32);
  padding: 42px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(5, minmax(120px, 1fr));
  gap: 42px;
  align-items: start;
}

.footer-brand .brand,
.site-footer .brand {
  color: var(--white);
  font-size: 28px;
}

.footer-brand p {
  max-width: 250px;
  margin: 16px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.25;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  font-size: inherit;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

body *,
body *::before,
body *::after {
  font-weight: 400 !important;
}

/* Brand logos in the trusted strip. */
.brand-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.brand-logo-row .brand-logo {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3a4659;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo-row .brand-logo span,
.brand-logo-row .logo-word {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.brand-logo .logo-mark {
  width: 34px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.aws-logo {
  position: relative;
  flex-direction: column;
  gap: 0;
  font-size: 30px;
}

.aws-logo i {
  width: 46px;
  height: 12px;
  display: block;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 50% 50%;
  transform: translateY(-3px) rotate(-5deg);
}

.microsoft-logo i {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  flex: 0 0 auto;
}

.microsoft-logo i b {
  display: block;
  background: currentColor;
}

.openai-logo .logo-mark {
  width: 32px;
  height: 32px;
}

.anthropic-logo span {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.stripe-logo span {
  font-size: 30px;
}

/* FAQ alignment. */
.faq-grid {
  align-items: start;
  grid-auto-rows: minmax(50px, auto);
}

.faq-item {
  min-height: 50px;
}

.faq-item button {
  min-height: 50px;
  line-height: 1.25;
}

.faq-head {
  align-items: center;
}

/* Stable footer social row. */
.social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

/* Keep the 1003px range closer to the desktop design instead of wrapping too early. */
@media (min-width: 921px) and (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .section {
    padding: 58px 0;
  }

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

  .card-grid.four,
  .service-directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .card {
    min-height: 245px;
    padding: 22px;
  }

  .service-card {
    gap: 12px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card ul {
    font-size: 13px;
    line-height: 1.65;
  }

  .icon-bubble {
    width: 48px;
    height: 48px;
  }

  .icon-bubble .icon {
    width: 28px;
    height: 28px;
  }

  .economy-grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .economy-grid > div,
  .economy-grid article {
    min-height: 180px;
  }

  .economy-grid article {
    padding: 24px;
  }

  .economy-grid .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
}

@media (max-width: 920px) {
  .brand-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo-row .brand-logo {
    font-size: 20px;
  }
}

@media (min-width: 921px) and (max-width: 1180px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-logo-row {
    grid-template-columns: 0.7fr 1.05fr 1.28fr 0.95fr 1.08fr 0.72fr;
    gap: 8px;
  }

  .brand-logo-row .brand-logo {
    min-width: 0;
    gap: 6px;
    font-size: 20px;
  }

  .aws-logo {
    font-size: 22px;
  }

  .aws-logo i {
    width: 34px;
    height: 9px;
    border-bottom-width: 2px;
  }

  .microsoft-logo i {
    width: 18px;
    height: 18px;
  }

  .brand-logo .logo-mark {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
  }

  .openai-logo .logo-mark {
    width: 24px;
    height: 24px;
  }

  .anthropic-logo span {
    font-size: 18px;
    letter-spacing: 0.01em;
  }

  .stripe-logo span {
    font-size: 22px;
  }

  .section {
    padding: 46px 0;
  }

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

  .card-grid.four,
  .service-directory {
    gap: 14px;
  }

  .card {
    min-height: 218px;
    padding: 18px;
  }

  .service-card {
    gap: 9px;
  }

  .service-card ul {
    line-height: 1.55;
  }

  .icon-bubble {
    width: 44px;
    height: 44px;
  }

  .icon-bubble .icon {
    width: 25px;
    height: 25px;
  }

  .dark-band {
    padding: 44px 0;
  }

  .economy-grid {
    grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .economy-grid > div,
  .economy-grid article {
    min-height: 168px;
  }

  .economy-grid article {
    padding: 20px;
  }

  .economy-grid .icon {
    margin-bottom: 10px;
  }

  .economy-grid p,
  .dark-band p {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .container,
  .logo-strip.inset {
    width: min(100% - 32px, 1440px);
  }

  .site-header {
    height: 70px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    font-size: 24px;
  }

  .brand-logo-img {
    width: 96px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    color: var(--white);
    border: 0;
    background: transparent;
  }

  .hero {
    padding: 92px 0 0;
    background: #020a17;
  }

  .hero-media {
    opacity: 0.28;
    background-size: 760px auto;
    background-position: 42% 260px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.86) 38%, rgba(2, 8, 23, 0.98) 100%),
      linear-gradient(90deg, rgba(2, 8, 23, 0.82), rgba(2, 8, 23, 0.22));
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero-copy p {
    width: 100%;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-copy .button-row,
  .button-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 20px;
  }

  .button-row .button,
  .hero-copy .button {
    width: auto;
    min-height: 42px;
    justify-content: center;
    padding-inline: 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-proof,
  .hero-proof.compact {
    display: none;
  }

  .hero-panel {
    display: block;
    min-height: 316px;
    margin-top: 16px;
    background: url("/static/images/hero-globe.png") center 38px / 340px auto no-repeat;
  }

  .hero-panel::before,
  .hero-panel::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 54%;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(78, 163, 255, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-panel::after {
    width: 210px;
    height: 210px;
    border-color: rgba(78, 163, 255, 0.2);
  }

  .orbit-card {
    gap: 6px;
    padding: 8px 9px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1.25;
    background: rgba(5, 20, 42, 0.88);
  }

  .orbit-card .icon {
    width: 16px;
    height: 16px;
  }

  .orbit-card.top {
    top: 12px;
    left: 49%;
  }

  .orbit-card.left {
    top: 68px;
    left: 6px;
  }

  .orbit-card.right {
    top: 82px;
    right: 4px;
  }

  .orbit-card.lower-left,
  .orbit-card.lower-right {
    display: inline-flex;
  }

  .orbit-card.lower-left {
    left: 5px;
    bottom: 58px;
  }

  .orbit-card.lower-right {
    right: 2px;
    bottom: 58px;
  }

  .orbit-card.bottom {
    left: 42%;
    bottom: 16px;
  }

  .logo-strip {
    padding: 22px 0 24px;
  }

  .logo-strip h2 {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .brand-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 10px;
  }

  .brand-logo-row .brand-logo {
    min-height: 26px;
    gap: 5px;
    font-size: 13px;
  }

  .aws-logo,
  .stripe-logo span {
    font-size: 19px;
  }

  .aws-logo i {
    width: 28px;
    height: 7px;
    border-bottom-width: 2px;
  }

  .microsoft-logo i {
    width: 15px;
    height: 15px;
  }

  .brand-logo .logo-mark {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
  }

  .openai-logo .logo-mark {
    width: 19px;
    height: 19px;
  }

  .anthropic-logo span {
    font-size: 14px;
    letter-spacing: 0;
  }

  .section {
    padding: 44px 0;
  }

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

  .challenge-section .section-heading h2,
  .service-section .section-heading h2,
  .framework-section .section-heading h2,
  .faq-section .faq-head h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  .section-heading p {
    font-size: 13px;
    line-height: 1.5;
  }

  .challenge-section .card-grid.four {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .challenge-section .service-card {
    min-height: 158px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 6px 14px;
    padding: 22px 20px;
  }

  .challenge-section .icon-bubble {
    grid-row: 1 / 4;
    width: 36px;
    height: 36px;
    margin-top: 2px;
    background: transparent;
  }

  .challenge-section .icon-bubble .icon {
    width: 32px;
    height: 32px;
  }

  .challenge-section .service-card h3 {
    font-size: 15px;
  }

  .challenge-section .service-card ul {
    font-size: 11px;
    line-height: 1.65;
  }

  .challenge-section .text-link {
    font-size: 12px;
  }

  .service-section {
    padding-top: 24px;
  }

  .service-section .card-grid.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-section .mini-card {
    min-height: 158px;
    padding: 18px 14px;
  }

  .service-section .mini-card .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }

  .service-section .mini-card h3 {
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.25;
  }

  .service-section .mini-card ul {
    font-size: 10.5px;
    line-height: 1.7;
  }

  .economy-section {
    padding: 8px 0 36px;
    color: var(--white);
    background: var(--white);
  }

  .economy-section .economy-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: 176px;
    padding: 24px 18px;
    overflow: hidden;
    border-radius: 8px;
    background:
      radial-gradient(circle at 86% 50%, rgba(7, 114, 255, 0.22), transparent 32%),
      linear-gradient(135deg, #041126, #071b32);
  }

  .economy-section .economy-grid::after {
    content: "";
    align-self: center;
    justify-self: center;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background:
      url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%20120%20120%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%230077ff%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2760%27%20cy%3D%2760%27%20r%3D%2748%27%20opacity%3D%27.55%27/%3E%3Ccircle%20cx%3D%2760%27%20cy%3D%2760%27%20r%3D%2734%27%20opacity%3D%27.35%27/%3E%3Cpath%20d%3D%27M48%2038a14%2014%200%200%200-14%2014v2a16%2016%200%200%200%202%2029%2017%2017%200%200%200%2014%2017h4V38h-6Z%27%20stroke-width%3D%273%27/%3E%3Cpath%20d%3D%27M72%2038a14%2014%200%200%201%2014%2014v2a16%2016%200%200%201-2%2029%2017%2017%200%200%201-14%2017h-4V38h6Z%27%20stroke-width%3D%273%27/%3E%3Cpath%20d%3D%27M42%2058h12M66%2058h12M42%2077h12M66%2077h12M21%2060h10M89%2060h10M60%2021v10M60%2089v10%27%20stroke-width%3D%272.5%27/%3E%3Cpath%20d%3D%27M25%2036l7%207M95%2036l-7%207M25%2084l7-7M95%2084l-7-7%27%20opacity%3D%27.7%27/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
    box-shadow: 0 0 34px rgba(0, 119, 255, 0.18);
  }

  .economy-section .economy-grid > div {
    min-height: 0;
    justify-content: center;
  }

  .economy-section .economy-grid h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .economy-section .economy-grid p {
    max-width: 190px;
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.55;
  }

  .economy-section .economy-grid article {
    display: none;
  }

  .framework-section {
    padding: 34px 0 38px;
  }

  .framework-section .split {
    display: block;
  }

  .framework-section .split > div:first-child {
    display: none;
  }

  .framework-section .section-heading.left {
    margin-bottom: 22px;
    text-align: center;
  }

  .framework-section .process-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 10px;
  }

  .framework-section .process-row article {
    position: relative;
    font-size: 10px;
  }

  .framework-section .process-row span {
    width: 50px;
    height: 50px;
    margin-bottom: 9px;
  }

  .framework-section .process-row .icon {
    width: 25px;
    height: 25px;
  }

  .framework-section .process-row b {
    font-size: 11px;
    line-height: 1.2;
  }

  .framework-section .process-row p {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.4;
  }

  .faq-section {
    padding-top: 28px;
  }

  .faq-section .container {
    display: flex;
    flex-direction: column;
  }

  .faq-section .faq-head {
    display: contents;
    text-align: center;
  }

  .faq-section .faq-head h2 {
    order: 1;
    margin-bottom: 16px;
  }

  .faq-section .faq-grid {
    order: 2;
  }

  .faq-section .faq-head .text-link {
    order: 3;
    align-self: flex-end;
    display: inline-flex;
    margin-top: 14px;
    font-size: 12px;
  }

  .faq-section .faq-grid {
    gap: 8px;
  }

  .faq-section .faq-item button {
    min-height: 39px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .cta-band {
    text-align: center;
  }

  .cta-shell {
    min-height: 172px;
    display: grid;
    gap: 18px;
    justify-items: stretch;
    padding: 22px 0;
  }

  .cta-shell h2 {
    font-size: 23px;
  }

  .cta-shell p {
    max-width: 270px;
    margin: 6px auto 0;
    font-size: 13px;
  }

  .cta-shell .button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .hero-panel {
    min-height: 316px;
    background-position: calc(50% - 74px) calc(50% - 12px);
    background-size: 330px auto;
  }

  .hero-panel::before,
  .hero-panel::after {
    top: 50%;
  }

  .site-footer {
    padding-top: 34px;
  }

  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 24px;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 280px;
  }

  .site-footer h2 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .site-footer a {
    margin: 7px 0;
    font-size: 12px;
  }

  .site-footer .brand {
    font-size: 24px;
  }

  .site-footer .brand-icon {
    width: 26px;
    height: 26px;
  }

  .site-footer .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 11px;
  }
}
