:root {
  --w: 863px;
  --wide-zoom: 1.46;
  --navy: #011022;
  --navy-2: #00172e;
  --ink: #111a2c;
  --gold: #e7a23a;
  --gold-2: #f0b54f;
  --paper: #f4f4f3;
  --muted: #596174;
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #101010;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color .22s ease,
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease,
    opacity .22s ease,
    transform .22s ease;
}

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

.page {
  width: min(100%, var(--w));
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}

@media (min-width: 900px) {
  body {
    min-width: 1260px;
  }

  .page {
    width: var(--w);
    zoom: var(--wide-zoom);
  }
}

@media (min-width: 1500px) {
  :root {
    --wide-zoom: 1.6;
  }

  body {
    min-width: 1400px;
  }
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  height: 486px;
  overflow: visible;
  color: #fff;
  background:
    radial-gradient(circle at 20% 25%, rgba(12,55,92,.5), transparent 35%),
    linear-gradient(105deg, #011022 0 48%, #03162c 48% 100%);
}

.mega-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -3px;
  width: 482px;
  height: 486px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.02);
}

.hero-veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,16,34,1) 0 43%, rgba(1,16,34,.35) 54%, rgba(1,16,34,0) 72%),
    linear-gradient(180deg, rgba(1,16,34,.92) 0, rgba(1,16,34,.74) 10%, transparent 27%);
  pointer-events: none;
}

.hero-light-lines {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -3px;
  width: 482px;
  height: 486px;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  clip-path: inset(128px 0 0 0);
}

.light-line {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 1.4px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(231,162,58,.08), rgba(240,181,79,.62), rgba(231,162,58,.08));
  box-shadow:
    0 0 3px rgba(240,181,79,.46),
    0 0 9px rgba(240,181,79,.2);
  opacity: .72;
  transform: rotate(var(--r));
  transform-origin: left center;
}

.light-line::before {
  content: "";
  position: absolute;
  inset: -3px -18px;
  background: linear-gradient(90deg, transparent 0 40%, rgba(255,249,220,.78) 49%, rgba(240,181,79,.72) 55%, transparent 68% 100%);
  filter: blur(.45px);
  transform: translateX(-115%);
  animation: heroLightRun var(--dur, 4.8s) cubic-bezier(.45,0,.25,1) infinite;
  animation-delay: var(--delay, 0s);
}

.line-a {
  display: none;
}

.line-b {
  --x: 0%;
  --y: 63%;
  --w: 98%;
  --r: -31deg;
  --dur: 6.2s;
  --delay: -2.1s;
}

.line-c {
  --x: 6%;
  --y: 42%;
  --w: 62%;
  --r: 29deg;
  --dur: 5.8s;
  --delay: -3.2s;
}

.line-d {
  --x: 45%;
  --y: 40%;
  --w: 57%;
  --r: -24deg;
  --dur: 5.3s;
  --delay: -3.1s;
}

.line-e {
  --x: 20%;
  --y: 96%;
  --w: 85%;
  --r: -28deg;
  --dur: 6.8s;
  --delay: -4.2s;
}

.line-f {
  display: none;
}

@keyframes heroLightRun {
  0%, 18% {
    opacity: 0;
    transform: translateX(-115%);
  }
  30% {
    opacity: 1;
  }
  72% {
    opacity: .94;
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    transform: translateX(125%);
  }
}

.topbar {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 86px;
  padding: 21px 28px 0 31px;
}

.brand {
  display: flex;
  align-items: center;
  width: 282px;
  min-width: 282px;
  color: #fff;
}

.brand img {
  width: 44px;
  height: 54px;
  object-fit: cover;
  object-position: left center;
}

.brand-rule {
  width: 1px;
  height: 44px;
  margin: 0 15px 0 14px;
  background: var(--gold);
}

.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

.brand-copy strong span,
.brand-copy small {
  color: var(--gold-2);
}

.brand-copy small {
  display: block;
  margin-top: 10px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small::before,
.brand-copy small::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 6px 3px;
  background: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 23px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  padding-top: 12px;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  direction: ltr;
  background: rgba(255,255,255,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .5px;
  text-shadow: none;
}

.language-switcher a::before {
  display: none !important;
}

.language-switcher a.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  box-shadow: 0 5px 14px rgba(205,35,43,.26);
}

.nav-expertise {
  margin-bottom: -27px;
  padding-bottom: 27px;
}

.nav-expertise::after {
  content: "⌃";
  display: inline-block;
  margin-left: 5px;
  color: var(--gold);
  font-size: 9px;
  line-height: 0;
  transform: translateY(1px);
}

.nav-expertise::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .18s ease;
}

.hero:has(.nav-expertise:hover) .nav-expertise,
.hero:has(.nav-expertise:focus-visible) .nav-expertise,
.hero:has(.mega-menu:hover) .nav-expertise,
.hero:has(.mega-menu:focus-within) .nav-expertise,
.hero:has(.mega-anchor:target) .nav-expertise {
  color: var(--gold);
}

.hero:has(.nav-expertise:hover) .nav-expertise::before,
.hero:has(.nav-expertise:focus-visible) .nav-expertise::before,
.hero:has(.mega-menu:hover) .nav-expertise::before,
.hero:has(.mega-menu:focus-within) .nav-expertise::before,
.hero:has(.mega-anchor:target) .nav-expertise::before {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 30px;
  margin-left: 4px;
  border: 1px solid var(--gold);
  font-size: 7px;
}

.mega-menu {
  position: absolute;
  z-index: 25;
  left: 19px;
  right: 19px;
  top: 72px;
  height: 360px;
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-template-rows: 1fr 60px;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  color: var(--ink);
  background: rgba(248, 248, 247, .97);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 3px;
  box-shadow: 0 22px 56px rgba(0,0,0,.42);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.hero:has(.nav-expertise:hover) .mega-menu,
.hero:has(.nav-expertise:focus-visible) .mega-menu,
.hero:has(.mega-menu:hover) .mega-menu,
.hero:has(.mega-menu:focus-within) .mega-menu,
.hero:has(.mega-anchor:target) .mega-menu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mega-intro {
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,247,246,.93) 58%, rgba(255,255,255,.18) 100%);
  border-right: 1px solid rgba(17,26,44,.14);
}

.mega-intro-copy {
  position: relative;
  z-index: 2;
  padding: 25px 22px 0;
}

.mega-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}

.mega-intro h2 span {
  color: var(--gold);
}

.mega-intro i,
.mega-card i {
  display: block;
  width: 22px;
  height: 1px;
  margin: 13px 0 14px;
  background: var(--gold);
}

.mega-intro p {
  margin: 0;
  font-size: 9.5px;
  line-height: 1.55;
}

.mega-divider {
  display: none;
}

.mega-integrated {
  display: none;
}

.mega-integrated svg {
  width: 35px;
  height: 35px;
  color: var(--gold);
  stroke-width: 1.9;
}

.mega-integrated h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.mega-integrated p {
  font-size: 8.5px;
  line-height: 1.55;
}

.mega-approach {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 139px;
  height: 24px;
  margin-top: 22px;
  padding: 0 9px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 6.7px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-approach span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 22px;
  margin-right: -9px;
  border-left: 1px solid rgba(231,162,58,.45);
  font-size: 14px;
}

.mega-intro img {
  display: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  min-width: 0;
}

.mega-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px 22px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.985), rgba(255,255,255,.94)),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  border-right: 1px solid rgba(17,26,44,.12);
  border-bottom: 1px solid rgba(17,26,44,.12);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-position .42s ease;
}

.mega-card::before,
.mega-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mega-card::before {
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(231,162,58,.24), transparent 31%),
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,247,232,.82));
  transition: opacity .28s ease;
}

.mega-card::after {
  z-index: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(231,162,58,.22) 46%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-120%) skewX(-12deg);
  transition: opacity .24s ease, transform .7s ease;
}

.mega-card > * {
  position: relative;
  z-index: 1;
}

.mega-card:nth-child(3n) {
  border-right: 0;
}

.mega-card:nth-child(n + 4) {
  border-bottom: 0;
}

.mega-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  stroke-width: 1.8;
}

.mega-card h3 {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 11.4px;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.15;
  text-transform: uppercase;
}

.mega-card i {
  margin: 7px 0 9px;
  transition: width .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.mega-card p {
  display: none;
}

.mega-card ul {
  display: none;
}

.mega-card li {
  margin: 0 0 3px;
  color: #101827;
  font-size: 7.3px;
  line-height: 1.18;
}

.mega-card a {
  position: static;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  color: var(--gold);
  font-size: 7.8px;
  font-weight: 900;
}

.mega-card a span {
  font-size: 13px;
}

.mega-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column: 2;
  background: #fff;
  border-top: 1px solid rgba(17,26,44,.12);
}

.mega-benefits article {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 9px;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid rgba(17,26,44,.12);
}

.mega-benefits article:last-child {
  border-right: 0;
}

.mega-benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
}

.mega-benefits svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.mega-benefits h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 7px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.mega-benefits p {
  margin: 0;
  color: #253044;
  font-size: 6.1px;
  line-height: 1.22;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: 47px 0 0 34px;
  width: 390px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  line-height: .94;
  letter-spacing: 0;
}

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

.hero-copy h1 span:last-child {
  color: var(--gold-2);
}

.hero-copy i,
.section-heading i {
  display: block;
  width: 38px;
  height: 1px;
  margin: 17px 0 14px;
  background: var(--gold);
}

.hero-copy p {
  margin: 0 0 9px;
  font-size: 13.5px;
  line-height: 1.25;
  color: #f7f8fb;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-filled {
  min-width: 139px;
  color: #111827;
  background: linear-gradient(180deg, #f3bf65, #dfa13e);
}

.button-outline {
  min-width: 117px;
  color: #fff;
  background: rgba(1,16,34,.42);
}

.expertise {
  height: auto;
  padding: 18px 0 35px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.96), rgba(244,244,243,.95) 58%, rgba(234,234,233,.85)),
    var(--paper);
}

.section-heading {
  text-align: center;
}

.section-heading p,
.insights-head p,
.partners > p {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: .95;
}

.section-heading h2 span {
  color: var(--gold);
}

.section-heading i {
  margin: 10px auto 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  width: 810px;
  margin: 17px auto 0;
}

.expertise-card {
  position: relative;
  height: 298px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  text-align: center;
  background: #031426;
  box-shadow: 0 3px 10px rgba(0,0,0,.24);
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(1,16,34,.03), rgba(1,16,34,.28) 44%, rgba(1,16,34,.78) 100%),
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.18), transparent 38%),
    var(--bg);
  background-position: center;
  background-size: cover;
  filter: blur(2.6px) brightness(1.1) saturate(1.04);
  opacity: .94;
  transform: scale(1.06);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s cubic-bezier(.2,.7,.2,1);
}

.expertise-card::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  right: 9px;
  z-index: 2;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-2), #ffd48a);
  box-shadow: 0 0 10px rgba(231,162,58,.34);
  transform: scaleX(0);
  transform-origin: left center;
  animation: storyProgress 6.4s linear infinite;
  animation-delay: var(--story-delay, 0s);
}

.expertise-card:nth-child(2) { --story-delay: -1s; }
.expertise-card:nth-child(3) { --story-delay: -2s; }
.expertise-card:nth-child(4) { --story-delay: -3s; }
.expertise-card:nth-child(5) { --story-delay: -4s; }
.expertise-card:nth-child(6) { --story-delay: -5s; }

.expertise-card > * {
  position: relative;
  z-index: 1;
}

.expertise-card > .card-cleaner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 0;
  height: 118px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(1,16,34,0), rgba(1,16,34,.98) 18%, #011022 42%, #011022 74%, rgba(1,16,34,0));
  opacity: .96;
  pointer-events: none;
}

.story-bar {
  position: absolute;
  top: 8px;
  left: 9px;
  right: 9px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: left;
  color: #fff;
  font-size: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-bar::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
}

.story-bar b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--gold);
  background: #07182a;
  font-size: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.24);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.story-bar em {
  margin-left: auto;
  font-style: normal;
}

.expertise-card svg {
  width: 59px;
  height: 59px;
  margin-top: 78px;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.36));
}

.expertise-card h3 {
  margin: 13px 11px 0;
  font-size: 14px;
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}

.expertise-card h3::after {
  content: "";
  display: block;
  width: 33px;
  height: 2px;
  margin: 13px auto 0;
  background: var(--gold);
}

.expertise-card p {
  margin: 12px 13px 0;
  font-size: 8.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

.expertise-card a {
  position: absolute;
  left: 50%;
  bottom: 37px;
  transform: translateX(-50%);
  width: 70px;
  color: #fff;
  font-size: 8px;
}

.expertise-card a::before {
  content: "⌃";
  display: block;
  width: 19px;
  height: 19px;
  margin: 0 auto 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

@keyframes storyProgress {
  0% {
    opacity: .45;
    transform: scaleX(0);
  }
  72% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.proofs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: 807px;
  margin: 34px auto 0;
}

.proofs article {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 12px;
  min-height: 56px;
  border-right: 1px solid rgba(231,162,58,.28);
}

.proofs article:last-child {
  border-right: 0;
}

.proofs svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.proofs h3 {
  margin: 2px 0 7px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.proofs p {
  margin: 0;
  font-size: 8.8px;
  line-height: 1.35;
}

.expertise-directory {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 16px;
  width: 807px;
  margin: 34px auto 0;
  padding: 16px;
  border: 1px solid rgba(231,162,58,.22);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(249,249,248,.9)),
    radial-gradient(circle at 6% 10%, rgba(231,162,58,.14), transparent 28%);
  box-shadow: 0 14px 36px rgba(1,16,34,.08);
}

.expertise-directory-head {
  min-width: 0;
  padding: 5px 15px 5px 3px;
  border-right: 1px solid rgba(231,162,58,.25);
}

.expertise-directory-head p {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.expertise-directory-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.08;
}

.expertise-directory-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.expertise-directory-list a {
  position: relative;
  display: grid;
  grid-template-columns: 25px 28px 1fr;
  gap: 9px;
  align-items: start;
  min-height: 66px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(17,26,44,.08);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(1,16,34,.04);
}

.expertise-directory-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(231,162,58,.12), transparent);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity .24s ease, transform .36s ease;
}

.expertise-directory-list span,
.expertise-directory-list svg,
.expertise-directory-list strong,
.expertise-directory-list div,
.expertise-directory-list p {
  position: relative;
  z-index: 1;
}

.expertise-directory-list span {
  color: var(--gold);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 1px;
}

.expertise-directory-list svg {
  width: 25px;
  height: 25px;
  color: var(--gold);
  stroke-width: 1.75;
}

.expertise-directory-list strong {
  display: block;
  color: var(--ink);
  font-size: 8.6px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.expertise-directory-list p {
  margin: 4px 0 0;
  color: #4b5566;
  font-size: 7px;
  line-height: 1.32;
}

.expertise-directory-list a:hover,
.expertise-directory-list a:focus-visible {
  border-color: rgba(231,162,58,.55);
  box-shadow: 0 12px 24px rgba(1,16,34,.1);
  transform: translateY(-3px);
}

.expertise-directory-list a:hover::before,
.expertise-directory-list a:focus-visible::before {
  opacity: 1;
  transform: translateX(70%);
}

.expertise-directory-list a:hover svg,
.expertise-directory-list a:focus-visible svg {
  color: var(--gold-2);
  filter: drop-shadow(0 4px 10px rgba(231,162,58,.22));
  transform: scale(1.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 81px;
  padding: 13px 30px 0;
  color: #fff;
  background: linear-gradient(90deg, #011022, #031a32 52%, #011022);
}

.stats article {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  grid-template-rows: 32px 15px;
  align-items: center;
  column-gap: 10px;
  padding-left: 8px;
}

.stats article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgba(231,162,58,.38);
}

.stats svg {
  grid-row: 1 / span 2;
  width: 31px;
  height: 31px;
  color: var(--gold);
}

.stats strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.stats span {
  font-size: 7px;
  color: rgba(255,255,255,.86);
}

.method {
  position: relative;
  height: 298px;
  padding-top: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(231,162,58,.12), transparent 36%),
    linear-gradient(180deg, #fbfbfa 0%, #f4f3f0 100%);
}

.method::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,16,34,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,16,34,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 38%, #000 0 44%, transparent 72%);
  pointer-events: none;
}

.method > * {
  position: relative;
  z-index: 1;
}

.method .section-heading h2 {
  font-size: 25px;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 780px;
  margin: 22px auto 0;
  padding: 16px 18px 17px;
  text-align: left;
  border: 1px solid rgba(1,16,34,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 40px rgba(1,16,34,.08);
  backdrop-filter: blur(10px);
}

.method-steps::before,
.method-steps::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 62px;
  top: 48px;
  height: 2px;
  border-radius: 99px;
}

.method-steps::before {
  background: rgba(1,16,34,.12);
}

.method-steps::after {
  background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold-2) 52%, transparent 100%);
  transform-origin: left center;
  animation: methodRail 4.8s ease-in-out infinite;
}

.method-steps article {
  position: relative;
  min-width: 0;
  padding: 50px 11px 0;
  border-radius: 10px;
  transition: background-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.method-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -10px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: .74;
}

.round {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.18), transparent 28%),
    #04162b;
  box-shadow:
    0 0 0 5px rgba(255,255,255,.82),
    0 12px 22px rgba(1,16,34,.22),
    inset 0 0 0 1px rgba(255,255,255,.12);
  transform: translateX(-50%);
}

.round svg {
  width: 27px;
  height: 27px;
}

.method-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 18px;
  margin: 0 0 6px;
  border-radius: 99px;
  background: rgba(231,162,58,.1);
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
}

.method-steps h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.method-steps p {
  margin: 0;
  text-align: left;
  color: #1f2937;
  font-size: 7.1px;
  line-height: 1.45;
}

.method-steps p::first-line {
  color: inherit;
}

@keyframes methodRail {
  0%, 12% {
    opacity: .2;
    transform: scaleX(.02);
  }
  62% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.partners {
  min-height: 112px;
  padding: 16px 24px 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #011022, #031a32 50%, #011022);
}

.partners > p {
  margin-bottom: 15px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.partner-logos a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-width: 0;
  min-height: 28px;
  padding: 5px 8px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.partner-logos img {
  display: block;
  width: auto;
  max-width: 54px;
  height: 17px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) contrast(1.1);
  opacity: .9;
}

.partner-logos span {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.partner-logos .partner-lockup img {
  max-width: 78px;
  max-height: 22px;
  height: auto;
  filter: grayscale(1) brightness(0) contrast(1.1);
  opacity: .9;
}

.partner-logos .partner-lockup span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.references-band {
  padding: 34px 0 38px;
  border-top: 1px solid rgba(1,16,34,.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(231,162,58,.12), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, #f3f1ec 100%);
}

.references-shell {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.references-shell > p {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

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

.reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reference-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
  filter: drop-shadow(0 8px 16px rgba(1,16,34,.12));
  object-fit: contain;
}

.reference-logo:first-child,
.reference-logo:last-child {
  letter-spacing: .3px;
  text-transform: none;
}

.reference-logo:first-child img,
.reference-logo:last-child img {
  filter: brightness(0) saturate(100%) drop-shadow(0 8px 16px rgba(1,16,34,.12));
}

.insights {
  height: auto;
  padding: 31px 0 38px;
  background: var(--paper);
}

.insights-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 633px;
  margin: 0 auto 18px;
}

.insights-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.insights-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 27px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 633px;
  margin: 0 auto;
}

.article-grid article {
  height: 149px;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(11,20,32,.1);
}

.article-grid figure {
  position: relative;
  height: 77px;
  margin: 0;
  overflow: hidden;
}

.article-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
}

.article-grid figure span {
  position: absolute;
  left: 8px;
  top: 7px;
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 7px;
  color: #111827;
  background: var(--gold);
  font-size: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-grid h3 {
  margin: 9px 12px 7px;
  min-height: 33px;
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.15;
}

.article-grid a {
  margin-left: 12px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
}

.newsletter {
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, var(--paper) 0%, #f5f4f1 100%);
}

.newsletter-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 140px;
  align-items: center;
  gap: 18px;
  width: 807px;
  min-height: 104px;
  margin: 0 auto;
  padding: 18px 20px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(231,162,58,.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(231,162,58,.24), transparent 28%),
    linear-gradient(112deg, #011022 0%, #031a32 58%, #061122 100%);
  box-shadow: 0 18px 44px rgba(1,16,34,.16);
}

.newsletter-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(255,255,255,.035) 36px 37px);
  opacity: .65;
  pointer-events: none;
}

.newsletter-shell > * {
  position: relative;
  z-index: 1;
}

.newsletter-copy p {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.newsletter-copy h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
}

.newsletter-copy span {
  display: block;
  max-width: 320px;
  color: rgba(255,255,255,.78);
  font-size: 8px;
  line-height: 1.45;
}

.newsletter-form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.7);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr 94px;
  height: 34px;
  border: 1px solid rgba(231,162,58,.42);
  background: rgba(255,255,255,.07);
}

.newsletter-form input {
  min-width: 0;
  padding: 0 11px;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 8px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.44);
}

.newsletter-form div:focus-within {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(231,162,58,.12);
}

.newsletter-form button {
  color: #08111f;
  border: 0;
  background: linear-gradient(180deg, #f6bc61, #e7a23a);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.56);
  font-size: 6.5px;
}

.newsletter-signal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  justify-items: stretch;
}

.newsletter-signal b,
.newsletter-signal span {
  display: flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  font-size: 7px;
  font-weight: 900;
}

.newsletter-signal b {
  color: var(--gold);
  background: rgba(231,162,58,.13);
}

.newsletter-signal span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(231,162,58,.7);
}

@media (max-width: 899px) {
  .expertise-directory {
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 28px);
    margin-top: 28px;
    padding: 15px;
  }

  .expertise-directory-head {
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(231,162,58,.25);
  }

  .expertise-directory-head p {
    font-size: 8px;
  }

  .expertise-directory-head h3 {
    font-size: 24px;
  }

  .expertise-directory-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .expertise-directory-list a {
    grid-template-columns: 29px 33px 1fr;
    min-height: 78px;
    padding: 10px 12px;
  }

  .expertise-directory-list span {
    font-size: 9px;
  }

  .expertise-directory-list svg {
    width: 30px;
    height: 30px;
  }

  .expertise-directory-list strong {
    font-size: 11px;
  }

  .expertise-directory-list p {
    margin-top: 5px;
    font-size: 9px;
  }

  .newsletter {
    padding: 22px 14px 26px;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    min-height: 0;
    padding: 18px;
  }

  .newsletter-copy span {
    max-width: none;
  }

  .newsletter-form div {
    grid-template-columns: 1fr 98px;
  }

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

  .newsletter-signal b {
    grid-column: 1 / -1;
  }
}

.footer {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 16%, rgba(231,162,58,.13), transparent 30%),
    radial-gradient(circle at 28% 0, rgba(13,54,89,.62), transparent 42%),
    linear-gradient(90deg, #011022, #031a32 52%, #011022);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(255,255,255,.03) 44px 45px);
  opacity: .55;
  pointer-events: none;
}

.footer-cta,
.footer-main {
  position: relative;
  z-index: 1;
  width: 807px;
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 18px;
  align-items: center;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(231,162,58,.2);
}

.footer-cta > div {
  min-width: 0;
}

.footer-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.footer-cta p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 8px;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 100%;
  color: #111827;
  background: linear-gradient(180deg, #f3bf65, #dfa13e);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: 220px 98px 102px 128px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0 22px;
}

.footer-main section {
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.footer-logo img {
  width: 46px;
  height: 50px;
  object-fit: cover;
}

.footer-logo strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p,
.footer-main section p,
.footer-main a,
.footer-brand small {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 7px;
  line-height: 1.38;
}

.footer-brand p {
  max-width: 185px;
  margin-bottom: 14px;
}

.footer-main h3 {
  margin: 4px 0 8px;
  color: rgba(255,255,255,.96);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-main section a {
  display: block;
  margin-bottom: 2px;
}

.footer-presence {
  position: relative;
  grid-column: 5;
  grid-row: 1;
  width: 100%;
  max-width: 154px;
  justify-self: end;
  align-self: start;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.22);
  border-radius: 5px;
  background:
    radial-gradient(circle at 48% 42%, rgba(231,162,58,.16), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 12px 28px rgba(0,0,0,.18);
}

.footer-presence::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 23%, rgba(255,255,255,.05) 24% 24.5%, transparent 25% 49%, rgba(255,255,255,.05) 50% 50.5%, transparent 51% 75%, rgba(255,255,255,.05) 76% 76.5%, transparent 77%),
    linear-gradient(180deg, transparent 0 32%, rgba(255,255,255,.04) 33% 33.5%, transparent 34% 66%, rgba(255,255,255,.04) 67% 67.5%, transparent 68%);
  opacity: .7;
}

.footer-presence::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(231,162,58,.1);
  box-shadow: inset 10px 0 22px rgba(255,255,255,.035), inset -14px 0 28px rgba(0,0,0,.18);
  transform: translate(-50%, -50%);
}

.footer-presence p,
.presence-globe,
.presence-globe span,
.presence-legend,
.presence-legend li,
.footer-presence strong,
.footer-presence em {
  position: relative;
  z-index: 1;
}

.footer-presence p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.presence-globe {
  height: 72px;
  margin: 0 0 9px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 45%, rgba(231,162,58,.12), transparent 8%),
    radial-gradient(circle at 50% 45%, rgba(8,27,47,.85) 0 43%, rgba(255,255,255,.025) 44% 45%, transparent 46%),
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,.05), transparent 67%);
}

.presence-globe::before,
.presence-globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(231,162,58,.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.presence-globe::after {
  width: 33px;
  border-left-color: rgba(231,162,58,.22);
  border-right-color: rgba(231,162,58,.22);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.globe-orbit {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 86px;
  height: 34px;
  border: 1px solid rgba(231,162,58,.18);
  border-radius: 50%;
}

.orbit-one {
  transform: translate(-50%, -50%) rotate(-17deg);
}

.orbit-two {
  opacity: .7;
  transform: translate(-50%, -50%) rotate(19deg);
}

.office-pin {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(231,162,58,.12), 0 0 14px rgba(231,162,58,.75);
}

.office-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(231,162,58,.18);
  border-radius: 50%;
  animation: pinPulse 2.6s ease-out infinite;
}

.pin-casablanca {
  left: 43%;
  top: 54%;
}

.pin-rabat {
  left: 44.5%;
  top: 48%;
}

.pin-london {
  left: 48%;
  top: 31%;
}

.presence-legend {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.presence-legend li {
  display: grid;
  grid-template-columns: 7px 1fr;
  column-gap: 5px;
  min-width: 0;
  padding: 0;
}

.presence-legend li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(231,162,58,.65);
}

.footer-presence strong {
  display: block;
  grid-column: 2;
  color: #fff;
  overflow: hidden;
  font-size: 6.8px;
  font-weight: 900;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-presence em {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  color: rgba(255,255,255,.58);
  overflow: hidden;
  font-size: 5.9px;
  font-style: normal;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pinPulse {
  0% {
    opacity: .78;
    transform: scale(.45);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.contact-lines {
  grid-column: 2 / 5;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}

.contact-lines span {
  color: rgba(255,255,255,.7);
}

.socials {
  grid-column: 5;
  grid-row: 2;
  display: flex;
  justify-self: end;
  align-self: end;
  gap: 14px;
  color: #fff;
  font-size: 12px;
}

/* Interactive polish */
.brand,
.nav a,
.button,
.nav-cta,
.mega-approach,
.mega-card a,
.expertise-card,
.expertise-card a,
.insights-head a,
.article-grid article,
.article-grid a,
.partner-logos a,
.footer-cta a,
.footer-main a,
.socials a {
  will-change: transform;
}

.brand:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.nav a {
  display: inline-flex;
  align-items: center;
}

.nav a:not(.nav-cta):hover,
.nav a:not(.nav-cta):focus-visible,
.footer-main a:hover,
.footer-main a:focus-visible,
.contact-lines a:hover,
.contact-lines a:focus-visible,
.socials a:hover,
.socials a:focus-visible {
  color: var(--gold-2);
  transform: translateY(-1px);
}

.footer-main a:hover,
.footer-main a:focus-visible,
.contact-lines a:hover,
.contact-lines a:focus-visible {
  transform: translateX(3px);
}

.button,
.nav-cta,
.mega-approach,
.insights-head a,
.newsletter-form button,
.footer-cta a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::after,
.nav-cta::after,
.mega-approach::after,
.insights-head a::after,
.newsletter-form button::after,
.footer-cta a::after {
  content: "";
  position: absolute;
  inset: -45% -55%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.34) 46%, transparent 58% 100%);
  transform: translateX(-120%) skewX(-16deg);
  transition: transform .48s ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.mega-approach:hover,
.mega-approach:focus-visible,
.insights-head a:hover,
.insights-head a:focus-visible,
.newsletter-form button:hover,
.newsletter-form button:focus-visible,
.footer-cta a:hover,
.footer-cta a:focus-visible {
  border-color: var(--gold-2);
  box-shadow: 0 8px 22px rgba(231,162,58,.28);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after,
.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.mega-approach:hover::after,
.mega-approach:focus-visible::after,
.insights-head a:hover::after,
.insights-head a:focus-visible::after,
.newsletter-form button:hover::after,
.newsletter-form button:focus-visible::after,
.footer-cta a:hover::after,
.footer-cta a:focus-visible::after {
  transform: translateX(120%) skewX(-16deg);
}

.button-filled:hover,
.button-filled:focus-visible,
.newsletter-form button:hover,
.newsletter-form button:focus-visible,
.footer-cta a:hover,
.footer-cta a:focus-visible {
  color: #07111f;
  background: linear-gradient(180deg, #ffd286, #e7a23a);
}

.button-outline:hover,
.button-outline:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.insights-head a:hover,
.insights-head a:focus-visible,
.mega-approach:hover,
.mega-approach:focus-visible {
  color: #fff;
  background: rgba(231,162,58,.16);
}

.mega-card a,
.article-grid a,
.expertise-card a {
  transition: color .22s ease, transform .22s ease;
}

.mega-card a:hover,
.mega-card a:focus-visible,
.article-grid a:hover,
.article-grid a:focus-visible {
  color: #c57a12;
  transform: translateX(4px);
}

.mega-card a:hover span,
.mega-card a:focus-visible span {
  transform: translateX(3px);
}

.mega-card a span {
  transition: transform .22s ease;
}

.mega-card:hover,
.mega-card:focus-within {
  z-index: 2;
  border-color: rgba(231,162,58,.38);
  box-shadow: inset 0 0 0 1px rgba(231,162,58,.35), 0 16px 32px rgba(1,16,34,.18);
  transform: translateY(-2px);
}

.mega-card:hover::before,
.mega-card:focus-within::before {
  opacity: 1;
}

.mega-card:hover::after,
.mega-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%) skewX(-12deg);
}

.mega-card:hover h3,
.mega-card:focus-within h3 {
  color: #07111f;
}

.mega-card:hover i,
.mega-card:focus-within i {
  width: 42px;
  box-shadow: 0 0 12px rgba(231,162,58,.38);
}

.expertise-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.expertise-card svg,
.round,
.proofs svg,
.mega-card svg,
.mega-benefits span,
.stats svg {
  transition: transform .25s ease, filter .25s ease, color .25s ease;
}

.expertise-card:hover {
  border-color: rgba(231,162,58,.42);
  box-shadow: 0 16px 34px rgba(1,16,34,.24);
  transform: translateY(-7px) scale(1.012);
}

.expertise-card:hover::before {
  filter: blur(2px) brightness(1.2) saturate(1.12);
  transform: scale(1.12);
}

.expertise-card:hover::after {
  animation-duration: 2.7s;
  box-shadow: 0 0 18px rgba(231,162,58,.58);
}

.expertise-card:hover .story-bar b {
  background: #0b2138;
  box-shadow: 0 0 0 3px rgba(231,162,58,.12), 0 8px 18px rgba(0,0,0,.28);
  transform: scale(1.08);
}

.expertise-card:hover svg,
.mega-card:hover svg,
.proofs article:hover svg,
.stats article:hover svg,
.mega-benefits article:hover span {
  color: var(--gold-2);
  filter: drop-shadow(0 4px 10px rgba(231,162,58,.24));
  transform: translateY(-2px) scale(1.06);
}

.method-steps article:hover {
  background: rgba(255,255,255,.76);
  box-shadow: 0 16px 30px rgba(1,16,34,.08);
  transform: translateY(-4px);
}

.method-steps article:hover .round {
  color: var(--gold-2);
  filter: drop-shadow(0 6px 14px rgba(231,162,58,.24));
  transform: translateX(-50%) translateY(-4px) scale(1.06);
}

.expertise-card a:hover,
.expertise-card a:focus-visible {
  color: var(--gold-2);
  transform: translate(-50%, -2px);
}

.article-grid article {
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.article-grid img {
  transition: transform .42s ease, filter .32s ease;
}

.article-grid figure span {
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.article-grid h3 {
  transition: color .22s ease;
}

.article-grid article:hover,
.article-grid article:focus-within {
  background: #fffdf8;
  box-shadow: 0 14px 32px rgba(11,20,32,.18);
  transform: translateY(-7px);
}

.article-grid article:hover img,
.article-grid article:focus-within img {
  filter: contrast(1.08) saturate(1.12);
  transform: scale(1.08);
}

.article-grid article:hover figure span,
.article-grid article:focus-within figure span {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.article-grid article:hover h3,
.article-grid article:focus-within h3 {
  color: var(--gold);
}

.partner-logos a:hover,
.partner-logos a:focus-visible {
  border-color: rgba(231,162,58,.7);
  background: #fffaf0;
  box-shadow: 0 14px 28px rgba(0,0,0,.22), 0 0 0 3px rgba(231,162,58,.08);
  transform: translateY(-4px);
}

.partner-logos a:hover img,
.partner-logos a:focus-visible img {
  opacity: 1;
  filter: grayscale(1) brightness(0) contrast(1.18);
  transform: scale(1.05);
}

.partner-logos img {
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

a:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Full-wide desktop layout */
@media (min-width: 900px) {
  :root {
    --edge: clamp(52px, 6vw, 104px);
    --content-wide: min(1280px, calc(100vw - (var(--edge) * 2)));
  }

  body {
    display: block;
    min-width: 0;
    overflow-x: hidden;
    background: var(--navy);
  }

  .page {
    width: 100%;
    max-width: none;
    zoom: 1 !important;
    box-shadow: none;
  }

  .hero {
    height: clamp(650px, 55vw, 780px);
  }

  .hero-visual {
    right: 0;
    width: min(64vw, 900px);
    height: 100%;
  }

  .hero-light-lines {
    right: 0;
    width: min(64vw, 900px);
    height: 100%;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(1,16,34,1) 0 38%, rgba(1,16,34,.62) 50%, rgba(1,16,34,0) 72%),
      linear-gradient(180deg, rgba(1,16,34,.94) 0, rgba(1,16,34,.78) 10%, transparent 27%);
  }

  .topbar {
    height: 116px;
    padding: 34px var(--edge) 0;
    gap: clamp(28px, 3.4vw, 58px);
  }

  .brand {
    width: 360px;
    min-width: 360px;
  }

  .brand img {
    width: 62px;
    height: 76px;
  }

  .brand-rule {
    height: 58px;
    margin: 0 20px 0 18px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .brand-copy small {
    margin-top: 12px;
    font-size: 10.5px;
    letter-spacing: 1px;
  }

  .brand-copy small::before,
  .brand-copy small::after {
    width: 28px;
    margin: 0 8px 4px;
  }

  .nav {
    gap: clamp(18px, 1.45vw, 28px);
    justify-content: flex-end;
    padding-top: 21px;
    font-size: clamp(10px, .86vw, 12px);
  }

  .nav-expertise {
    margin-bottom: -42px;
    padding-bottom: 42px;
  }

  .nav-expertise::after {
    margin-left: 8px;
    font-size: 13px;
  }

  .nav-expertise::before {
    top: 39px;
    height: 2px;
  }

  .nav-cta {
    width: 160px;
    height: 54px;
    margin-left: clamp(6px, .8vw, 14px);
    font-size: 12px;
  }

  .mega-menu {
    left: var(--edge);
    right: var(--edge);
    top: 104px;
    height: min(460px, calc(100vh - 126px));
    grid-template-columns: 270px 1fr;
    grid-template-rows: 1fr 82px;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,.46);
  }

  .mega-intro-copy {
    padding: 34px 34px 0;
  }

  .mega-intro h2 {
    font-size: 31px;
  }

  .mega-intro i,
  .mega-card i {
    width: 34px;
    margin: 16px 0 18px;
  }

  .mega-intro p {
    font-size: 13.5px;
  }

  .mega-divider {
    display: none;
  }

  .mega-integrated {
    display: none;
  }

  .mega-integrated svg {
    width: 50px;
    height: 50px;
  }

  .mega-integrated h3 {
    font-size: 17px;
  }

  .mega-integrated p {
    font-size: 13px;
  }

  .mega-approach {
    width: 206px;
    height: 38px;
    margin-top: 28px;
    padding: 0 18px;
    font-size: 11px;
  }

  .mega-approach span {
    width: 48px;
    height: 36px;
    margin-right: -18px;
    font-size: 22px;
  }

  .mega-intro img {
    display: none;
  }

  .mega-card {
    padding: 28px 34px;
  }

  .mega-card svg {
    width: 44px;
    height: 44px;
  }

  .mega-card h3 {
    margin-top: 16px;
    font-size: 17px;
  }

  .mega-card i {
    margin: 12px 0 12px;
  }

  .mega-card p {
    display: none;
  }

  .mega-card ul {
    display: none;
  }

  .mega-card li {
    margin-bottom: 7px;
    font-size: 11.5px;
  }

  .mega-card a {
    position: static;
    gap: 12px;
    font-size: 13px;
  }

  .mega-card a span {
    font-size: 20px;
  }

  .mega-benefits article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 0 22px;
  }

  .mega-benefits span {
    width: 38px;
    height: 38px;
  }

  .mega-benefits svg {
    width: 22px;
    height: 22px;
  }

  .mega-benefits h3 {
    font-size: 11px;
  }

  .mega-benefits p {
    font-size: 9.8px;
  }

  .hero-copy {
    width: min(630px, 47vw);
    margin: 100px 0 0 var(--edge);
  }

  .hero-copy h1 {
    font-size: clamp(58px, 5.1vw, 86px);
  }

  .hero-copy i,
  .section-heading i {
    width: 70px;
    height: 2px;
    margin: 28px 0 24px;
  }

  .hero-copy p {
    margin-bottom: 14px;
    font-size: clamp(19px, 1.45vw, 24px);
  }

  .hero-actions {
    gap: 28px;
    margin-top: 42px;
  }

  .button {
    height: 58px;
    padding: 0 36px;
    font-size: 13px;
  }

  .button-filled {
    min-width: 250px;
  }

  .button-outline {
    min-width: 176px;
  }

  .expertise {
    height: auto;
    padding: 48px 0 66px;
  }

  .section-heading p,
  .insights-head p,
  .partners > p {
    margin-bottom: 13px;
    font-size: 14px;
    letter-spacing: 5px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 3.8vw, 56px);
  }

  .section-heading i {
    margin: 22px auto 0;
  }

  .cards {
    width: var(--content-wide);
    gap: 18px;
    margin-top: 42px;
  }

  .expertise-card {
    height: 430px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(1,16,34,.16);
  }

  .expertise-card::after {
    top: 8px;
    left: 15px;
    right: 15px;
    height: 3px;
  }

  .story-bar {
    top: 15px;
    left: 15px;
    right: 15px;
    gap: 8px;
    font-size: 8px;
  }

  .story-bar b {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }

  .expertise-card svg {
    width: 82px;
    height: 82px;
    margin-top: 112px;
  }

  .expertise-card h3 {
    margin: 21px 18px 0;
    font-size: 20px;
  }

  .expertise-card h3::after {
    width: 48px;
    height: 3px;
    margin-top: 19px;
  }

  .expertise-card > .card-cleaner {
    left: 0;
    right: 0;
    bottom: 48px;
    height: 168px;
    border-radius: 0;
  }

  .expertise-card p {
    margin: 18px 22px 0;
    font-size: 12px;
  }

  .expertise-card a {
    bottom: 58px;
    width: 120px;
    font-size: 12px;
  }

  .expertise-card a::before {
    width: 31px;
    height: 31px;
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 32px;
  }

  .proofs {
    width: var(--content-wide);
    gap: 42px;
    margin-top: 58px;
  }

  .proofs article {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    min-height: 76px;
  }

  .proofs svg {
    width: 52px;
    height: 52px;
  }

  .proofs h3 {
    font-size: 16px;
  }

  .proofs p {
    font-size: 13px;
  }

  .expertise-directory {
    width: var(--content-wide);
    grid-template-columns: minmax(270px, 340px) 1fr;
    gap: 28px;
    margin-top: 54px;
    padding: 26px;
    border-radius: 14px;
  }

  .expertise-directory-head {
    padding: 10px 30px 10px 4px;
  }

  .expertise-directory-head p {
    margin-bottom: 15px;
    font-size: 13px;
    letter-spacing: 4px;
  }

  .expertise-directory-head h3 {
    font-size: 31px;
  }

  .expertise-directory-list {
    gap: 14px;
  }

  .expertise-directory-list a {
    grid-template-columns: 34px 42px 1fr;
    gap: 15px;
    min-height: 112px;
    padding: 16px 18px;
    border-radius: 10px;
  }

  .expertise-directory-list span {
    font-size: 12px;
  }

  .expertise-directory-list svg {
    width: 38px;
    height: 38px;
  }

  .expertise-directory-list strong {
    font-size: 15px;
  }

  .expertise-directory-list p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .stats {
    height: 132px;
    padding: 28px var(--edge) 0;
  }

  .stats article {
    grid-template-columns: 56px 1fr;
    grid-template-rows: 52px 22px;
    column-gap: 18px;
    padding-left: 20px;
  }

  .stats article:not(:last-child)::after {
    top: 2px;
    height: 76px;
  }

  .stats svg {
    width: 50px;
    height: 50px;
  }

  .stats strong {
    font-size: 46px;
  }

  .stats span {
    font-size: 12px;
  }

  .method {
    height: auto;
    padding: 58px 0 78px;
  }

  .method .section-heading h2 {
    font-size: clamp(39px, 3.3vw, 50px);
  }

  .method-steps {
    width: min(1160px, calc(100vw - (var(--edge) * 2)));
    gap: 14px;
    margin-top: 46px;
    padding: 24px 28px 28px;
    border-radius: 18px;
  }

  .method-steps::before,
  .method-steps::after {
    left: 92px;
    right: 92px;
    top: 64px;
  }

  .method-steps article:not(:last-child)::after {
    top: 58px;
    right: -18px;
    width: 16px;
    height: 16px;
  }

  .method-steps article {
    min-height: 198px;
    padding: 76px 18px 0;
  }

  .round {
    width: 74px;
    height: 74px;
  }

  .round svg {
    width: 40px;
    height: 40px;
  }

  .method-steps b {
    height: 24px;
    min-width: 34px;
    margin-bottom: 9px;
    font-size: 15px;
  }

  .method-steps h3 {
    margin: 0 0 14px;
    font-size: 14px;
  }

  .method-steps p {
    font-size: 12px;
    line-height: 1.55;
  }

  .partners {
    min-height: 170px;
    padding: 30px var(--edge) 34px;
  }

  .partners > p {
    margin-bottom: 28px;
  }

  .partner-logos {
    width: var(--content-wide);
    margin: 0 auto;
    max-width: none;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 14px;
  }

  .partner-logos a {
    min-height: 58px;
    padding: 12px 14px;
    gap: 10px;
  }

  .partner-logos img {
    max-width: 92px;
    height: 28px;
  }

  .partner-logos .partner-lockup img {
    max-width: 118px;
    max-height: 36px;
    height: auto;
  }

  .partner-logos span {
    font-size: 11px;
  }

  .insights {
    height: auto;
    padding: 56px 0 76px;
  }

  .insights-head,
  .article-grid {
    width: min(1080px, calc(100vw - (var(--edge) * 2)));
  }

  .insights-head {
    margin-bottom: 28px;
  }

  .insights-head h2 {
    font-size: 32px;
  }

  .insights-head a {
    width: 160px;
    height: 46px;
    font-size: 11px;
  }

  .article-grid {
    gap: 22px;
  }

  .article-grid article {
    height: 236px;
    border-radius: 7px;
  }

  .article-grid figure {
    height: 116px;
  }

  .article-grid figure span {
    left: 14px;
    top: 12px;
    height: 26px;
    padding: 0 12px;
    font-size: 10px;
  }

  .article-grid h3 {
    margin: 16px 20px 10px;
    min-height: 50px;
    font-size: 17px;
  }

  .article-grid a {
    margin-left: 20px;
    font-size: 12px;
  }

  .newsletter {
    padding: 48px 0 58px;
  }

  .newsletter-shell {
    width: min(1080px, calc(100vw - (var(--edge) * 2)));
    grid-template-columns: 1.08fr .95fr 180px;
    gap: 34px;
    min-height: 156px;
    padding: 30px 34px;
    border-radius: 14px;
  }

  .newsletter-copy p {
    margin-bottom: 11px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .newsletter-copy h2 {
    margin-bottom: 12px;
    font-size: 34px;
  }

  .newsletter-copy span {
    max-width: 440px;
    font-size: 13px;
  }

  .newsletter-form label {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr 138px;
    height: 52px;
  }

  .newsletter-form input {
    padding: 0 18px;
    font-size: 14px;
  }

  .newsletter-form button {
    font-size: 11px;
  }

  .newsletter-form small {
    margin-top: 12px;
    font-size: 11px;
  }

  .newsletter-signal {
    gap: 9px;
  }

  .newsletter-signal b,
  .newsletter-signal span {
    min-height: 34px;
    padding: 0 16px;
    font-size: 11px;
  }

  .newsletter-signal span::before {
    width: 7px;
    height: 7px;
    margin-right: 10px;
  }

  .footer-cta,
  .footer-main {
    width: min(1160px, calc(100vw - (var(--edge) * 2)));
  }

  .footer-cta {
    grid-template-columns: 1fr 220px;
    gap: 36px;
    padding: 34px 0 26px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .footer-cta p {
    font-size: 13px;
  }

  .footer-cta a {
    height: 48px;
    font-size: 12px;
  }

  .footer-main {
    grid-template-columns: minmax(300px, 1.3fr) minmax(150px, .6fr) minmax(150px, .6fr) minmax(190px, .75fr) minmax(220px, .9fr);
    gap: 34px;
    padding: 30px 0 34px;
  }

  .footer-logo img {
    width: 62px;
    height: 66px;
  }

  .footer-logo strong {
    font-size: 24px;
  }

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

  .footer-brand p,
  .footer-main section p,
  .footer-main a,
  .footer-brand small {
    font-size: 11px;
  }

  .footer-main h3 {
    font-size: 14px;
  }

  .footer-presence {
    max-width: 250px;
    padding: 18px;
    border-radius: 10px;
  }

  .footer-presence::after {
    width: 130px;
    height: 130px;
  }

  .footer-presence p {
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .presence-globe {
    height: 126px;
    margin: 0 0 16px;
  }

  .presence-globe::before,
  .presence-globe::after {
    width: 112px;
    height: 112px;
  }

  .presence-globe::after {
    width: 52px;
  }

  .globe-orbit {
    width: 142px;
    height: 54px;
  }

  .office-pin {
    width: 10px;
    height: 10px;
  }

  .presence-legend {
    gap: 10px;
  }

  .presence-legend li {
    grid-template-columns: 11px 1fr;
    column-gap: 9px;
  }

  .presence-legend li::before {
    width: 8px;
    height: 8px;
    margin-top: 2px;
  }

  .footer-presence strong {
    font-size: 12px;
  }

  .footer-presence em {
    margin-top: 4px;
    font-size: 10px;
  }

  .contact-lines {
    gap: 16px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .socials {
    gap: 24px;
    font-size: 20px;
  }
}

/* About page */
.nav a.is-active {
  color: var(--gold);
}

.nav a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  height: 1px;
  background: var(--gold);
}

.about-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 30%;
  background: url("assets/about/about-hero-bg.png") right center / cover no-repeat;
  filter: saturate(1.04) contrast(1.04);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,16,34,1) 0 40%, rgba(1,16,34,.58) 58%, rgba(1,16,34,.08) 86%),
    linear-gradient(180deg, rgba(1,16,34,.93), rgba(1,16,34,.26) 34%, rgba(1,16,34,.18));
}

.about-hero .topbar,
.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero-copy {
  width: 330px;
  margin: 24px 0 0 47px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.breadcrumb span,
.about-kicker {
  color: var(--gold);
}

.about-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: .95;
}

.about-hero-copy i,
.about-history-copy i {
  display: block;
  width: 42px;
  height: 1px;
  margin: 16px 0 14px;
  background: var(--gold);
}

.about-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-hero-copy p:not(.breadcrumb):not(.about-kicker) {
  margin: 0 0 7px;
  color: rgba(255,255,255,.9);
  font-size: 10px;
  line-height: 1.55;
}

.about-adn {
  padding: 28px 0 31px;
  background: linear-gradient(180deg, #f9f9f8 0%, #f3f3f2 100%);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 760px;
  margin: 26px auto 0;
}

.about-values article {
  min-height: 146px;
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid rgba(231,162,58,.35);
}

.about-values article:last-child {
  border-right: 0;
}

.about-values svg {
  width: 51px;
  height: 51px;
  margin-bottom: 16px;
  color: var(--gold);
  stroke-width: 1.65;
}

.about-values h3 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: #253044;
  font-size: 7px;
  line-height: 1.55;
}

.about-history {
  position: relative;
  min-height: 357px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(1,16,34,1) 0 37%, rgba(1,16,34,.76) 53%, rgba(1,16,34,.08) 100%),
    url("assets/about/about-history-bg.png") right center / auto 100% no-repeat,
    var(--navy);
}

.about-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(20,72,112,.44), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 42%);
  pointer-events: none;
}

.about-history-copy {
  position: relative;
  z-index: 1;
  width: 318px;
  padding: 38px 0 0 47px;
}

.about-history-copy > p:first-child,
.about-team-head > div > p,
.about-mission > div p {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.about-history h2,
.about-team h2,
.about-mission h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

.about-history h2 {
  font-size: 29px;
}

.about-history-copy p:not(:first-child) {
  margin: 0 0 14px;
  color: rgba(255,255,255,.88);
  font-size: 9px;
  line-height: 1.62;
}

.about-history-copy .button {
  height: 28px;
  margin-top: 4px;
  padding: 0 17px;
  font-size: 7px;
}

.about-team {
  padding: 31px 0 28px;
  background: var(--paper);
}

.about-team-head {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 58px;
  align-items: start;
  width: 760px;
  margin: 0 auto 24px;
}

.about-team h2 {
  color: var(--ink);
  font-size: 28px;
}

.about-team h2 span {
  color: var(--gold);
}

.about-team-head > p {
  margin: 26px 0 0;
  color: #263247;
  font-size: 9px;
  line-height: 1.55;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  width: 760px;
  margin: 0 auto;
}

.team-grid article {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(180deg, #071526, #011022);
  box-shadow: 0 10px 24px rgba(1,16,34,.18);
  transition: transform .26s ease, box-shadow .26s ease;
}

.team-grid img {
  display: block;
  width: 100%;
  height: 119px;
  object-fit: cover;
  object-position: center top;
  transition: transform .28s ease, filter .28s ease;
}

.team-grid article:nth-child(2) img,
.team-grid article:nth-child(4) img {
  object-position: center 38%;
}

.team-grid h3 {
  margin: 14px 8px 3px;
  font-size: 8px;
  font-weight: 900;
}

.team-grid p {
  margin: 0 8px 10px;
  color: rgba(255,255,255,.78);
  font-size: 7px;
  line-height: 1.25;
}

.team-grid a {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.team-grid article:hover,
.team-grid article:focus-within {
  box-shadow: 0 16px 34px rgba(1,16,34,.26);
  transform: translateY(-5px);
}

.team-grid article:hover img,
.team-grid article:focus-within img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.06);
}

.team-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 28px;
  margin: 15px auto 0;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.about-mission {
  display: grid;
  grid-template-columns: 82px 190px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 0 67px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(13,54,89,.55), transparent 32%),
    linear-gradient(90deg, #011022, #031a32 54%, #011022);
}

.mission-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--gold);
  border: 1px solid rgba(231,162,58,.7);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 53px;
  line-height: 1;
}

.about-mission h2 {
  color: #fff;
  font-size: 27px;
}

.about-mission > p {
  margin: 0;
  padding-left: 29px;
  color: rgba(255,255,255,.86);
  border-left: 1px solid rgba(231,162,58,.48);
  font-size: 10px;
  line-height: 1.55;
}

.about-partners {
  color: var(--ink);
  background: linear-gradient(180deg, #fbfbfa 0%, #f1f1ef 100%);
}

.about-partners > p {
  color: var(--gold);
}

@media (min-width: 900px) {
  .nav a.is-active::before {
    top: 39px;
    height: 2px;
  }

  .about-hero {
    height: clamp(520px, 40vw, 610px);
  }

  .about-hero::before {
    inset: 0 0 0 32%;
  }

  .about-hero::after {
    background:
      linear-gradient(90deg, rgba(1,16,34,1) 0 36%, rgba(1,16,34,.64) 53%, rgba(1,16,34,.08) 88%),
      linear-gradient(180deg, rgba(1,16,34,.95), rgba(1,16,34,.32) 35%, rgba(1,16,34,.2));
  }

  .about-hero-copy {
    width: min(560px, 42vw);
    margin: 46px 0 0 var(--edge);
  }

  .breadcrumb {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .about-hero h1 {
    font-size: clamp(64px, 5vw, 82px);
  }

  .about-hero-copy i,
  .about-history-copy i {
    width: 70px;
    height: 2px;
    margin: 24px 0 22px;
  }

  .about-kicker {
    margin-bottom: 22px;
    font-size: 18px;
    letter-spacing: 5px;
  }

  .about-hero-copy p:not(.breadcrumb):not(.about-kicker) {
    margin-bottom: 11px;
    font-size: 17px;
  }

  .about-adn {
    padding: 56px 0 64px;
  }

  .about-values {
    width: var(--content-wide);
    max-width: 1160px;
    margin-top: 48px;
  }

  .about-values article {
    min-height: 210px;
    padding: 0 52px;
  }

  .about-values svg {
    width: 76px;
    height: 76px;
    margin-bottom: 28px;
  }

  .about-values h3 {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .about-values p {
    font-size: 13px;
  }

  .about-history {
    min-height: 480px;
    background:
      linear-gradient(90deg, rgba(1,16,34,1) 0 34%, rgba(1,16,34,.78) 51%, rgba(1,16,34,.08) 100%),
      url("assets/about/about-history-bg.png") right center / auto 100% no-repeat,
      var(--navy);
  }

  .about-history-copy {
    width: min(500px, 42vw);
    padding: 64px 0 0 var(--edge);
  }

  .about-history-copy > p:first-child,
  .about-team-head > div > p,
  .about-mission > div p {
    margin-bottom: 17px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .about-history h2 {
    font-size: clamp(40px, 3.4vw, 54px);
  }

  .about-history-copy p:not(:first-child) {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .about-history-copy .button {
    height: 46px;
    margin-top: 10px;
    padding: 0 28px;
    font-size: 12px;
  }

  .about-team {
    padding: 62px 0 58px;
  }

  .about-team-head,
  .team-grid {
    width: min(1160px, calc(100vw - (var(--edge) * 2)));
  }

  .about-team-head {
    grid-template-columns: 1fr minmax(360px, 480px);
    gap: 80px;
    margin-bottom: 38px;
  }

  .about-team h2 {
    font-size: clamp(40px, 3.2vw, 54px);
  }

  .about-team-head > p {
    margin-top: 32px;
    font-size: 15px;
  }

  .team-grid {
    gap: 22px;
  }

  .team-grid article {
    border-radius: 8px;
  }

  .team-grid img {
    height: 190px;
  }

  .team-grid h3 {
    margin-top: 22px;
    font-size: 14px;
  }

  .team-grid p {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .team-grid a {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .team-cta {
    width: 226px;
    height: 46px;
    margin-top: 26px;
    font-size: 12px;
  }

  .about-mission {
    grid-template-columns: 120px 260px 1fr;
    gap: 34px;
    min-height: 176px;
    padding: 0 var(--edge);
  }

  .mission-mark {
    width: 92px;
    height: 92px;
    font-size: 70px;
  }

  .about-mission h2 {
    font-size: 38px;
  }

  .about-mission > p {
    padding-left: 44px;
    font-size: 16px;
  }
}

@media (max-width: 899px) {
  .about-page {
    max-width: 100%;
    overflow: hidden;
  }

  .about-page .topbar {
    display: block;
    height: auto;
    padding: 18px 20px 0;
  }

  .about-page .brand {
    width: 100%;
    min-width: 0;
  }

  .about-page .brand-copy {
    min-width: 0;
  }

  .about-page .brand-copy strong {
    font-size: clamp(18px, 7vw, 24px);
  }

  .about-page .brand-copy small {
    font-size: 7px;
    white-space: normal;
  }

  .about-page .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    width: 100%;
    margin-top: 16px;
    padding-top: 0;
    font-size: 8px;
  }

  .about-page .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .about-page .nav a {
    min-width: 0;
    white-space: normal;
  }

  .about-page .nav a.is-active::before {
    top: 18px;
  }

  .about-hero {
    height: auto;
    min-height: 570px;
    padding-bottom: 38px;
  }

  .about-hero::before {
    inset: 112px 0 0 0;
    opacity: .55;
  }

  .about-hero::after {
    background:
      linear-gradient(180deg, rgba(1,16,34,.96) 0 34%, rgba(1,16,34,.78) 56%, rgba(1,16,34,.36) 100%),
      linear-gradient(90deg, rgba(1,16,34,.96), rgba(1,16,34,.46));
  }

  .about-hero-copy {
    width: min(330px, calc(100vw - 48px));
    margin: 42px 24px 0;
  }

  .about-page .section-heading {
    width: min(310px, calc(100% - 44px));
    margin-inline: auto;
  }

  .about-page .section-heading h2 {
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.02;
  }

  .about-hero h1 {
    font-size: clamp(48px, 14vw, 56px);
  }

  .about-hero-copy p:not(.breadcrumb):not(.about-kicker) {
    max-width: 520px;
    font-size: 13px;
  }

  .about-values,
  .about-team-head,
  .team-grid {
    width: min(330px, calc(100% - 34px));
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-values article {
    min-height: 0;
    padding: 0 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(231,162,58,.28);
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .about-values p {
    max-width: 260px;
    margin-inline: auto;
    font-size: 8px;
  }

  .about-history {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.96) 0 54%, rgba(1,16,34,.45) 100%),
      url("assets/about/about-history-bg.png") center bottom / auto 58% no-repeat,
      var(--navy);
  }

  .about-history-copy {
    width: min(330px, calc(100vw - 48px));
    padding: 40px 24px 0;
  }

  .about-history h2,
  .about-team h2 {
    font-size: 34px;
  }

  .about-history-copy p:not(:first-child),
  .about-team-head > p {
    font-size: 13px;
  }

  .about-team-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-team-head > p {
    margin-top: 0;
  }

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

  .team-grid article:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .team-grid img {
    height: 210px;
  }

  .about-mission {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 24px;
  }

  .about-mission > p {
    padding-left: 0;
    border-left: 0;
    font-size: 13px;
  }
}

/* Plaquette-derived pages */
.subpage {
  background: #f5f4f1;
}

.sub-hero {
  position: relative;
  min-height: 430px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(1,16,34,.98) 0 46%, rgba(1,16,34,.72) 68%, rgba(1,16,34,.18) 100%),
    var(--sub-bg, url("assets/hero-charte-collage.png")) center / cover no-repeat,
    var(--navy);
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(231,162,58,.16), transparent 28%),
    linear-gradient(180deg, rgba(1,16,34,.96) 0, rgba(1,16,34,.56) 34%, transparent 70%);
  pointer-events: none;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,162,58,.95), transparent);
  box-shadow: 0 0 16px rgba(231,162,58,.48);
}

.subpage .topbar,
.sub-hero-copy {
  position: relative;
  z-index: 2;
}

.sub-hero-copy {
  width: 807px;
  margin: 0 auto;
  padding: 72px 0 72px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gold-2);
}

.sub-kicker,
.content-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sub-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: .94;
}

.sub-hero h1 span,
.section-copy h2 span,
.overview-panel h2 span {
  color: var(--gold);
}

.sub-lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.72;
}

.content-section {
  width: 807px;
  margin: 0 auto;
  padding: 54px 0;
}

.content-section.compact {
  padding-top: 38px;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 34px;
}

.section-copy h2,
.overview-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.section-copy p:not(.content-kicker),
.overview-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.feature-grid,
.expertise-overview-grid,
.technology-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.overview-card,
.technology-card,
.value-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(1,16,34,.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    #fff;
  box-shadow: 0 14px 30px rgba(1,16,34,.07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.feature-card::before,
.overview-card::before,
.technology-card::before,
.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: .74;
}

.feature-card:hover,
.feature-card:focus-within,
.overview-card:hover,
.overview-card:focus-within,
.technology-card:hover,
.value-card:hover {
  border-color: rgba(231,162,58,.48);
  box-shadow: 0 20px 42px rgba(1,16,34,.13);
  transform: translateY(-5px);
}

.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(231,162,58,.34);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
}

.feature-card h3,
.overview-card h3,
.technology-card h3,
.value-card h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.feature-card p,
.overview-card p,
.technology-card p,
.value-card p {
  margin: 0;
  color: #4a5365;
  font-size: 11px;
  line-height: 1.58;
}

.overview-card a,
.page-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #c57a12;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.overview-card a:hover,
.overview-card a:focus-visible,
.page-link:hover,
.page-link:focus-visible {
  color: var(--gold);
  transform: translateX(4px);
}

.overview-panel {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(231,162,58,.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 18%, rgba(231,162,58,.12), transparent 28%),
    linear-gradient(135deg, #fff, #f7f2e9);
  box-shadow: 0 18px 42px rgba(1,16,34,.08);
}

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

.step-card {
  position: relative;
  padding: 20px 18px 22px;
  border: 1px solid rgba(1,16,34,.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(1,16,34,.07);
}

.step-card::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -16px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
}

.step-card:last-child::after {
  display: none;
}

.step-card b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 15px;
}

.step-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-card ul,
.contact-list,
.social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card li {
  position: relative;
  margin: 0 0 6px;
  padding-left: 12px;
  color: #4a5365;
  font-size: 10px;
  line-height: 1.36;
}

.step-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 18% 25%, rgba(231,162,58,.16), transparent 26%),
    linear-gradient(90deg, #011022, #041b34);
}

.dark-band .content-section {
  padding-block: 42px;
}

.quote-strip {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
}

.quote-strip b {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.quote-strip p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
}

.contact-panel,
.office-globe-panel {
  padding: 28px;
  border: 1px solid rgba(231,162,58,.26);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(1,16,34,.09);
}

.contact-panel h2,
.office-globe-panel h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.contact-list li,
.social-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(1,16,34,.08);
}

.contact-list li:last-child,
.social-list li:last-child {
  border-bottom: 0;
}

.contact-list span,
.social-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gold);
  border: 1px solid rgba(231,162,58,.36);
  border-radius: 50%;
  font-weight: 900;
}

.contact-list strong,
.social-list strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-list a,
.social-list a,
.contact-list em {
  color: #4a5365;
  font-size: 12px;
  font-style: normal;
}

.office-globe {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 48% 47%, rgba(231,162,58,.12), transparent 14%),
    radial-gradient(circle at 50% 50%, #08233d 0 45%, transparent 46%),
    linear-gradient(135deg, #06172a, #011022);
}

.office-globe::before,
.office-globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(231,162,58,.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.office-globe::after {
  width: 88px;
  border-left-color: rgba(231,162,58,.32);
  border-right-color: rgba(231,162,58,.32);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.globe-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 245px;
  height: 82px;
  border: 1px solid rgba(231,162,58,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--r));
}

.office-dot {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 112px;
  padding-left: 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.08;
}

.office-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(231,162,58,.13), 0 0 20px rgba(231,162,58,.9);
  animation: pinPulse 2.8s ease-out infinite;
}

.office-dot em {
  color: rgba(255,255,255,.66);
  font-style: normal;
  font-weight: 600;
}

.office-dot.casablanca {
  left: 34%;
  top: 64%;
}

.office-dot.rabat {
  left: 44%;
  top: 49%;
}

.office-dot.londres {
  left: 55%;
  top: 28%;
}

@media (min-width: 900px) {
  .subpage .topbar {
    gap: clamp(20px, 2vw, 40px);
  }

  .subpage .brand {
    width: clamp(300px, 23vw, 350px);
    min-width: clamp(300px, 23vw, 350px);
  }

  .subpage .nav,
  .hero .nav,
  .about-page .nav {
    gap: clamp(12px, 1vw, 22px);
    font-size: clamp(9px, .72vw, 11px);
  }

  .subpage .nav-cta,
  .hero .nav-cta,
  .about-page .nav-cta {
    width: clamp(132px, 9vw, 154px);
    font-size: clamp(9px, .72vw, 11px);
  }

  .sub-hero {
    min-height: clamp(470px, 38vw, 620px);
  }

  .sub-hero-copy,
  .content-section,
  .footer-cta,
  .footer-main {
    width: var(--content-wide);
  }

  .sub-hero-copy {
    padding-top: clamp(84px, 7vw, 126px);
  }
}

@media (max-width: 899px) {
  .page .topbar {
    display: block;
    height: auto;
    padding: 18px 22px 0;
  }

  .page .brand {
    width: 100%;
    min-width: 0;
  }

  .page .brand-copy {
    min-width: 0;
  }

  .page .brand-copy strong {
    font-size: clamp(18px, 7vw, 24px);
  }

  .page .brand-copy small {
    font-size: 7px;
    white-space: normal;
  }

  .page .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    width: 100%;
    margin-top: 16px;
    padding-top: 0;
    font-size: 8px;
  }

  .page .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .page .nav a {
    min-width: 0;
    white-space: normal;
  }

  .page .nav a.is-active::before {
    right: auto;
    width: 42px;
    top: 18px;
  }

  .hero {
    height: 620px;
  }

  .hero-copy {
    width: calc(100% - 44px);
    margin: 44px 22px 0;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-width: 0;
    width: calc(50% - 6px);
    padding-inline: 12px;
  }

  .insights {
    padding: 42px 0 52px;
  }

  .insights-head,
  .article-grid {
    width: calc(100vw - 44px);
  }

  .insights-head {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
  }

  .insights-head h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .insights-head a {
    width: 100%;
    height: 42px;
    font-size: 10px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-grid article {
    height: auto;
    min-height: 220px;
  }

  .article-grid figure {
    height: 118px;
  }

  .article-grid h3 {
    min-height: 0;
    margin: 16px 18px 12px;
    font-size: 20px;
  }

  .article-grid a {
    display: inline-flex;
    margin: 0 18px 18px;
    font-size: 13px;
  }

  .subpage .topbar {
    display: block;
    height: auto;
    padding: 18px 22px 0;
  }

  .subpage .brand {
    width: 100%;
    min-width: 0;
  }

  .subpage .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 16px;
    padding-top: 0;
    font-size: 8px;
  }

  .subpage .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .subpage .nav a {
    white-space: normal;
  }

  .sub-hero-copy,
  .content-section {
    width: min(100%, calc(100vw - 44px));
  }

  .sub-hero-copy {
    padding: 72px 0 52px;
  }

  .sub-hero h1 {
    font-size: 42px;
  }

  .section-copy,
  .overview-panel,
  .quote-strip,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-grid,
  .expertise-overview-grid,
  .technology-grid,
  .value-grid,
  .steps-detailed {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    display: none;
  }
}

/* Rich mega-menu skin, same footprint */
.mega-card p,
.mega-card ul,
.mega-integrated,
.mega-divider,
.mega-intro img {
  display: block;
}

.mega-card {
  justify-content: flex-start;
}

.mega-card p {
  margin: 0 0 7px;
  color: #1d2738;
  font-size: 8px;
  line-height: 1.32;
}

.mega-card ul {
  margin: 0 0 7px;
  padding-left: 12px;
}

.mega-card li {
  list-style: disc;
}

.mega-divider {
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(17,26,44,.13);
}

.mega-integrated {
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.mega-intro {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0 61%, rgba(255,255,255,.5) 74%, rgba(255,255,255,.08) 100%);
}

.mega-intro img {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: center bottom;
  opacity: .86;
}

@media (min-width: 900px) {
  .mega-card {
    padding: 18px 28px 14px;
  }

  .mega-card svg {
    width: 30px;
    height: 30px;
  }

  .mega-card h3 {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.08;
  }

  .mega-card i {
    width: 30px;
    margin: 8px 0 8px;
  }

  .mega-card p {
    font-size: 10.2px;
    line-height: 1.28;
  }

  .mega-card ul {
    margin-bottom: 8px;
    padding-left: 13px;
  }

  .mega-card li {
    margin-bottom: 3px;
    font-size: 8.9px;
    line-height: 1.2;
  }

  .mega-card a {
    gap: 10px;
    font-size: 10.8px;
  }

  .mega-card a span {
    font-size: 17px;
  }

  .mega-intro-copy {
    padding: 30px 30px 0;
  }

  .mega-intro h2 {
    font-size: 29px;
  }

  .mega-intro p {
    font-size: 12px;
    line-height: 1.48;
  }

  .mega-divider {
    margin: 22px 0 17px;
  }

  .mega-integrated {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .mega-integrated svg {
    width: 42px;
    height: 42px;
  }

  .mega-integrated h3 {
    font-size: 13px;
  }

  .mega-integrated p {
    font-size: 10.2px;
    line-height: 1.45;
  }

  .mega-approach {
    width: 206px;
    height: 36px;
    margin-top: 18px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(4px);
    font-size: 10px;
  }

  .mega-approach span {
    height: 34px;
  }

  .mega-intro img {
    display: block;
    height: 104px;
  }
}

@media (max-width: 899px) {
  .hero .mega-menu {
    display: none;
  }

  .page .nav-expertise {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .page .nav-expertise::after {
    display: none;
  }
}

/* War Room page */
.war-page {
  color: #fff;
  background: #011022;
}

.war-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(31,112,160,.18), transparent 30%),
    linear-gradient(90deg, rgba(1,16,34,1) 0 38%, rgba(1,16,34,.78) 57%, rgba(1,16,34,.48) 100%),
    #011022;
}

.war-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,16,34,.96), rgba(1,16,34,.5) 38%, rgba(1,16,34,.92)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.035) 59px 60px);
  pointer-events: none;
}

.war-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 46px;
  width: 807px;
  margin: 0 auto;
  padding: 46px 0 42px;
}

.war-hero-copy h1,
.war-section-copy h2,
.war-ai-head h2,
.war-final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

.war-hero-copy h1 {
  font-size: 40px;
}

.war-hero-copy h1 span,
.war-section-copy h2 span {
  color: var(--gold);
}

.war-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.war-hero-copy i {
  display: block;
  width: 38px;
  height: 1px;
  margin: 20px 0 18px;
  background: var(--gold);
}

.war-hero-copy p:not(.war-kicker),
.war-section-copy > p,
.war-ai-head > p,
.war-final-cta p {
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.68;
}

.war-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.war-command {
  display: grid;
  align-content: end;
  min-height: 320px;
  perspective: 900px;
}

.command-wall {
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(11,39,65,.9), rgba(5,22,40,.92)),
    radial-gradient(circle at 50% 30%, rgba(69,132,190,.25), transparent 46%);
  box-shadow: 0 22px 70px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.04);
}

.command-wall > strong {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  font-size: 18px;
  letter-spacing: 1px;
}

.wall-map {
  position: absolute;
  left: 35%;
  top: 55px;
  width: 155px;
  height: 95px;
  clip-path: polygon(18% 10%, 88% 2%, 80% 24%, 96% 42%, 70% 54%, 77% 84%, 44% 76%, 32% 98%, 17% 70%, 0 60%, 20% 40%);
  background: linear-gradient(135deg, rgba(112,174,206,.76), rgba(57,100,136,.42));
}

.wall-map span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.16);
  transform: translateY(var(--y, 20px)) rotate(-12deg);
}

.wall-map span:nth-child(2) { --y: 38px; }
.wall-map span:nth-child(3) { --y: 56px; }
.wall-map span:nth-child(4) { --y: 74px; }
.wall-map span:nth-child(5) { --y: 92px; }

.wall-line,
.mini-lines span {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5dd49d, #6287ff, #e7a23a);
  opacity: .9;
}

.wall-line.line-one {
  left: 22px;
  bottom: 58px;
  width: 150px;
  transform: rotate(-4deg);
}

.wall-line.line-two {
  right: 24px;
  top: 92px;
  width: 130px;
  transform: rotate(8deg);
}

.wall-bars {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: flex;
  gap: 5px;
  align-items: end;
}

.wall-bars span,
.volume-bars i {
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #6287ff, #2c577f);
}

.wall-bars span:nth-child(1) { height: 22px; }
.wall-bars span:nth-child(2) { height: 42px; }
.wall-bars span:nth-child(3) { height: 31px; }
.wall-bars span:nth-child(4) { height: 58px; }
.wall-bars span:nth-child(5) { height: 46px; }

.wall-score {
  position: absolute;
  left: 30px;
  top: 70px;
  display: grid;
  gap: 3px;
}

.wall-score b {
  color: #62d99b;
  font-size: 28px;
}

.wall-score em {
  color: rgba(255,255,255,.68);
  font-style: normal;
}

.command-desk {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.command-desk span {
  height: 42px;
  border: 1px solid rgba(98,135,255,.24);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(98,135,255,.2), transparent),
    rgba(255,255,255,.035);
}

.war-capabilities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 807px;
  margin: 0 auto;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.war-capabilities article {
  min-width: 0;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.09);
}

.war-capabilities article:last-child {
  border-right: 0;
}

.war-capabilities span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.war-capabilities h3,
.dash-card h3,
.war-ai-grid h3 {
  margin: 0 0 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.war-capabilities p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 7px;
  line-height: 1.45;
}

.war-dashboard-section,
.war-ai-section {
  display: grid;
  width: 807px;
  margin: 0 auto;
  padding: 44px 0;
}

.war-dashboard-section {
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: center;
}

.war-section-copy h2 {
  font-size: 27px;
}

.war-section-copy ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.war-section-copy li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
}

.war-section-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.war-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #03182b;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.dashboard-top {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.85);
  font-size: 8px;
  text-transform: uppercase;
}

.dashboard-top span {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  color: rgba(255,255,255,.62);
}

.dash-card {
  min-height: 105px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  background: rgba(1,16,34,.58);
}

.dash-card h3 {
  color: rgba(255,255,255,.75);
  font-size: 6.5px;
}

.intention {
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 10px;
}

.intention h3 {
  grid-column: 1 / -1;
}

.donut,
.gauge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: conic-gradient(#6bd49d 0 42%, #6d86ff 42% 72%, rgba(255,255,255,.12) 72% 100%);
}

.donut b,
.gauge b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #061a2f;
  font-size: 20px;
}

.intention ul {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.66);
  font-size: 7px;
  line-height: 1.9;
}

.opinion,
.volume {
  position: relative;
}

.mini-lines {
  position: relative;
  height: 70px;
  margin-top: 16px;
  background: repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,.05) 19px 20px);
}

.mini-lines span {
  left: 4px;
  width: 88%;
}

.mini-lines span:nth-child(1) { top: 22px; transform: rotate(-8deg); }
.mini-lines span:nth-child(2) { top: 38px; transform: rotate(5deg); opacity: .55; }
.mini-lines span:nth-child(3) { top: 54px; transform: rotate(-2deg); opacity: .45; }

.morocco-map {
  position: relative;
  width: 90px;
  height: 80px;
  margin: 10px auto 0;
  clip-path: polygon(48% 0, 76% 13%, 63% 33%, 85% 47%, 58% 57%, 67% 80%, 34% 75%, 22% 100%, 12% 72%, 0 60%, 22% 40%, 20% 18%);
  background: linear-gradient(150deg, #6bd49d, #e7a23a 70%, #bb6d25);
}

.morocco-map span {
  position: absolute;
  inset: auto 0;
  height: 1px;
  background: rgba(1,16,34,.28);
  transform: translateY(var(--y)) rotate(-14deg);
}

.morocco-map span:nth-child(1) { --y: 16px; }
.morocco-map span:nth-child(2) { --y: 30px; }
.morocco-map span:nth-child(3) { --y: 44px; }
.morocco-map span:nth-child(4) { --y: 58px; }
.morocco-map span:nth-child(5) { --y: 72px; }

.gauge {
  margin-top: 12px;
  background: conic-gradient(#6bd49d 0 68%, rgba(255,255,255,.1) 68% 100%);
}

.gauge {
  position: relative;
}

.gauge em {
  position: absolute;
  bottom: 14px;
  color: #6bd49d;
  font-size: 8px;
  font-style: normal;
}

.volume strong {
  display: block;
  margin-top: 10px;
  font-size: 23px;
}

.volume > span {
  color: rgba(255,255,255,.6);
  font-size: 9px;
}

.volume-bars {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.volume-bars i:nth-child(1) { height: 18px; }
.volume-bars i:nth-child(2) { height: 29px; }
.volume-bars i:nth-child(3) { height: 44px; }
.volume-bars i:nth-child(4) { height: 33px; }
.volume-bars i:nth-child(5) { height: 54px; }
.volume-bars i:nth-child(6) { height: 41px; }
.volume-bars i:nth-child(7) { height: 62px; }
.volume-bars i:nth-child(8) { height: 73px; }

.trends p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: 7.5px;
}

.trends b {
  color: rgba(255,255,255,.92);
}

.war-ai-section {
  border-top: 1px solid rgba(255,255,255,.08);
}

.war-ai-head h2 {
  font-size: 29px;
}

.war-ai-head > p {
  max-width: 650px;
}

.war-ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.war-ai-grid article {
  min-height: 204px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}

.network-visual,
.recommendation-card {
  height: 88px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 50%, rgba(231,162,58,.7) 0 3px, transparent 4px),
    radial-gradient(circle at 54% 35%, rgba(98,135,255,.85) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 62%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    linear-gradient(35deg, transparent 0 48%, rgba(98,135,255,.28) 49% 50%, transparent 51%),
    linear-gradient(145deg, rgba(98,135,255,.13), rgba(231,162,58,.08));
}

.network-visual.red {
  background:
    radial-gradient(circle at 35% 42%, rgba(231,86,86,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 57% 60%, rgba(231,162,58,.88) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 32%, rgba(98,135,255,.74) 0 2px, transparent 3px),
    linear-gradient(35deg, transparent 0 48%, rgba(231,86,86,.26) 49% 50%, transparent 51%),
    linear-gradient(145deg, rgba(231,86,86,.13), rgba(98,135,255,.08));
}

.network-visual.shield {
  background:
    radial-gradient(circle at 30% 50%, rgba(98,135,255,.78) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 36%, rgba(231,162,58,.88) 0 3px, transparent 4px),
    radial-gradient(circle at 71% 55%, rgba(98,135,255,.74) 0 2px, transparent 3px),
    linear-gradient(145deg, rgba(98,135,255,.15), rgba(231,162,58,.08));
}

.recommendation-card {
  height: 96px;
  padding: 14px;
  color: rgba(255,255,255,.84);
}

.recommendation-card b,
.recommendation-card span {
  color: var(--gold);
  font-size: 8px;
}

.recommendation-card p {
  margin: 8px 0;
  font-size: 9px;
  line-height: 1.35;
}

.war-ai-grid p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  line-height: 1.55;
}

.war-final-cta {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 42px max(28px, calc((100vw - 807px) / 2));
  background:
    linear-gradient(90deg, rgba(1,16,34,.96), rgba(1,16,34,.55)),
    url("assets/about/about-history-bg.png") center bottom / cover no-repeat;
  border-top: 1px solid rgba(231,162,58,.18);
  border-bottom: 1px solid rgba(231,162,58,.14);
}

.war-final-cta h2 {
  font-size: 26px;
}

.war-final-cta .button {
  height: 46px;
}

.war-contact-link {
  grid-column: 2;
  color: rgba(255,255,255,.85);
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.war-contact-link:hover,
.war-contact-link:focus-visible {
  color: var(--gold);
  transform: translateX(4px);
}

@media (min-width: 900px) {
  .war-hero {
    min-height: 575px;
  }

  .war-hero-grid,
  .war-capabilities,
  .war-dashboard-section,
  .war-ai-section {
    width: var(--content-wide);
  }

  .war-hero-grid {
    grid-template-columns: minmax(390px, 500px) 1fr;
    gap: clamp(40px, 6vw, 92px);
    padding-top: clamp(56px, 6vw, 96px);
  }

  .war-hero-copy h1 {
    font-size: clamp(48px, 4vw, 72px);
  }

  .war-command {
    min-height: 370px;
  }

  .war-capabilities {
    padding: 30px 0 34px;
  }

  .war-capabilities h3 {
    font-size: 11px;
  }

  .war-capabilities p {
    font-size: 10px;
  }

  .war-dashboard-section {
    grid-template-columns: 330px 1fr;
    gap: clamp(50px, 6vw, 90px);
    padding: 60px 0;
  }

  .war-section-copy h2 {
    font-size: clamp(38px, 3vw, 52px);
  }

  .war-dashboard {
    min-height: 410px;
  }

  .dash-card {
    min-height: 136px;
  }

  .war-ai-section {
    padding: 58px 0 64px;
  }

  .war-ai-head h2 {
    font-size: clamp(35px, 3vw, 48px);
  }

  .war-ai-grid article {
    min-height: 260px;
  }

  .network-visual,
  .recommendation-card {
    height: 118px;
  }

  .war-ai-grid h3 {
    font-size: 11px;
  }

  .war-ai-grid p {
    font-size: 12px;
  }

  .war-final-cta {
    grid-template-columns: 1fr 280px;
    padding-inline: var(--edge);
  }
}

@media (max-width: 899px) {
  .war-hero {
    min-height: auto;
  }

  .war-hero-grid,
  .war-capabilities,
  .war-dashboard-section,
  .war-ai-section {
    width: min(100%, calc(100vw - 44px));
  }

  .war-hero-grid,
  .war-dashboard-section,
  .war-ai-grid,
  .war-final-cta {
    grid-template-columns: 1fr;
  }

  .war-hero-grid {
    padding: 46px 0 36px;
  }

  .war-hero-copy h1 {
    font-size: 40px;
  }

  .war-actions {
    flex-wrap: wrap;
  }

  .war-actions .button {
    width: 100%;
  }

  .war-command {
    min-height: 300px;
  }

  .war-capabilities {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .war-capabilities article:nth-child(2n) {
    border-right: 0;
  }

  .war-dashboard-section {
    gap: 30px;
  }

  .war-dashboard {
    grid-template-columns: 1fr;
  }

  .intention {
    grid-template-columns: 90px 1fr;
  }

  .war-final-cta {
    padding: 34px 22px;
  }

  .war-contact-link {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 899px) {
  .footer-cta,
  .footer-main {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 20px;
  }

  .footer-cta h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .footer-cta p {
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-cta a {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0 26px;
  }

  .footer-main section,
  .contact-lines,
  .socials {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .footer-logo strong {
    font-size: 20px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-brand p,
  .footer-main section p,
  .footer-main a,
  .footer-brand small {
    font-size: 10.5px;
  }

  .contact-lines {
    flex-wrap: wrap;
    gap: 8px 12px;
    white-space: normal;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (min-width: 900px) {
  .war-page .topbar {
    gap: clamp(18px, 2.2vw, 36px);
  }

  .war-page .brand {
    width: clamp(300px, 23vw, 340px);
    min-width: clamp(300px, 23vw, 340px);
  }

  .war-page .brand-copy strong {
    font-size: clamp(23px, 2vw, 28px);
  }

  .war-page .brand-copy small {
    font-size: clamp(8px, .72vw, 10px);
  }

  .war-page .nav {
    gap: clamp(12px, 1vw, 20px);
    font-size: clamp(9px, .72vw, 11px);
  }

  .war-page .nav-cta {
    width: clamp(134px, 9vw, 154px);
    font-size: clamp(9px, .72vw, 11px);
  }
}

@media (max-width: 899px) {
  .war-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .war-hero-copy h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  .war-hero-copy h1 span {
    display: block;
  }

  .war-hero-copy p:not(.war-kicker) {
    max-width: 100%;
    font-size: 11px;
  }

  .war-command,
  .command-wall {
    width: 100%;
    min-width: 0;
  }

  .command-wall {
    min-height: 272px;
    padding: 18px;
  }

  .command-wall > strong {
    max-width: calc(100% - 36px);
    font-size: 18px;
    white-space: nowrap;
  }

  .wall-map {
    left: 34%;
    width: 130px;
    height: 88px;
  }

  .wall-line.line-one {
    width: 112px;
  }

  .wall-line.line-two {
    right: 18px;
    width: 98px;
  }

  .wall-bars {
    right: 18px;
  }
}

@media (max-width: 899px) {
  .footer-cta,
  .footer-main {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 20px;
  }

  .footer-cta h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .footer-cta p {
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-cta a {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0 26px;
  }

  .footer-main section,
  .contact-lines,
  .socials {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .footer-logo strong {
    font-size: 20px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-brand p,
  .footer-main section p,
  .footer-main a,
  .footer-brand small {
    font-size: 10.5px;
  }

  .contact-lines {
    flex-wrap: wrap;
    gap: 8px 12px;
    white-space: normal;
  }

  .socials {
    justify-content: flex-start;
  }
}

/* Footer presence redesign */
.footer-presence {
  border-color: rgba(231,162,58,.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    linear-gradient(180deg, rgba(2,26,48,.96), rgba(1,16,34,.92));
}

.footer-presence::before {
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(231,162,58,.11) 39% 40%, transparent 41%),
    radial-gradient(circle at 18% 82%, rgba(231,162,58,.14), transparent 28%);
  opacity: 1;
}

.footer-presence::after,
.presence-globe::before,
.presence-globe::after {
  display: none;
}

.presence-globe {
  height: 82px;
  margin: 0 0 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}

.globe-orbit {
  display: none;
}

.presence-globe::before {
  display: block;
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(231,162,58,.16), rgba(231,162,58,.9), rgba(231,162,58,.16));
  box-shadow: 0 0 14px rgba(231,162,58,.22);
}

.presence-globe::after {
  display: block;
  content: "CASABLANCA  ·  RABAT  ·  LONDRES";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  color: rgba(255,255,255,.58);
  font-size: 5.5px;
  font-weight: 900;
  letter-spacing: .7px;
  text-align: center;
  text-transform: uppercase;
}

.office-pin {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px rgba(231,162,58,.1), 0 0 16px rgba(231,162,58,.72);
}

.office-pin::after {
  inset: -6px;
}

.office-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  color: rgba(255,255,255,.76);
  font-size: 5.4px;
  font-weight: 900;
  letter-spacing: .7px;
  transform: translateX(-50%);
}

.pin-casablanca::before {
  content: "CASA";
}

.pin-rabat::before {
  content: "RBT";
}

.pin-london::before {
  content: "LDN";
}

.pin-casablanca {
  left: 17%;
  top: 50%;
}

.pin-rabat {
  left: 50%;
  top: 50%;
}

.pin-london {
  left: 83%;
  top: 50%;
}

.presence-legend {
  gap: 7px;
}

.presence-legend li {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  background: rgba(255,255,255,.035);
}

.presence-legend li::before {
  display: none;
}

.footer-presence strong {
  grid-column: auto;
  font-size: 7.4px;
}

.footer-presence em {
  grid-column: auto;
  font-size: 6.2px;
}

@media (min-width: 900px) {
  .presence-globe {
    height: 104px;
    margin-bottom: 14px;
  }

  .presence-legend {
    gap: 8px;
  }

  .presence-legend li {
    padding: 9px 11px;
  }

  .footer-presence strong {
    font-size: 12px;
  }

  .footer-presence em {
    font-size: 10px;
  }
}

/* Keep footer offices explicit: no fake map/globe */
.footer-presence .presence-globe {
  display: none;
}

.footer-presence p {
  margin-bottom: 14px;
}

.footer-presence p::after {
  content: "3 bureaux stratégiques";
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.62);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: none;
}

.presence-legend {
  gap: 8px;
}

@media (min-width: 900px) {
  .footer-presence p::after {
    font-size: 10px;
  }
}

/* Carter & Blake Maroc - visual charter refresh */
:root {
  --navy: #071220;
  --navy-2: #0c1b2d;
  --ink: #08111f;
  --red: #b60712;
  --red-2: #d4141f;
  --green: #486431;
  --green-2: #5f7b3f;
  --bronze: #b98539;
  --paper: #edeae8;
  --paper-2: #f7f5f2;
  --muted: #5e6572;
  --gold: var(--red);
  --gold-2: var(--green);
}

body {
  background:
    linear-gradient(135deg, rgba(182,7,18,.18), transparent 24%),
    var(--navy);
}

.page {
  background: var(--paper);
}

.brand img,
.footer-logo img {
  object-fit: contain;
  object-position: center;
}

.brand-rule {
  background: rgba(255,255,255,.62);
}

.brand-copy strong span {
  color: var(--red-2);
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  letter-spacing: .35px;
}

.brand-copy small::before {
  content: "MAROC";
  display: block;
  width: auto;
  height: auto;
  margin: 5px 0 6px;
  color: var(--green-2);
  background:
    linear-gradient(var(--green-2), var(--green-2)) left center / 54px 1px no-repeat,
    linear-gradient(var(--green-2), var(--green-2)) right center / 54px 1px no-repeat;
  font-size: .92em;
  font-weight: 900;
  letter-spacing: 7px;
  line-height: 1;
  text-align: center;
}

.brand-copy small::after {
  display: none;
}

.nav a {
  color: rgba(255,255,255,.92);
  text-shadow: none;
}

.nav a:not(.nav-cta)::before,
.nav a.is-active::before,
.nav-expertise::before {
  background: var(--red);
}

.nav-cta {
  color: #fff;
  border-color: rgba(255,255,255,.48);
  background: rgba(182,7,18,.16);
}

.hero {
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(112deg, var(--navy) 0 44%, #0b1d31 44% 100%);
}

.hero::before,
.hero::after,
.sub-hero::after,
.war-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  z-index: 3;
  top: 0;
  right: min(57vw, 820px);
  width: 72px;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 17%, var(--red) 17% 52%, var(--green) 52% 73%, transparent 73% 100%);
  transform: skewX(-21deg);
  opacity: .96;
}

.hero::after {
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 84px;
  background: var(--red);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 45%);
  filter: saturate(1.04) contrast(1.06);
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(7,18,32,1) 0 39%, rgba(7,18,32,.7) 49%, rgba(7,18,32,.1) 76%),
    linear-gradient(180deg, rgba(7,18,32,.94) 0, rgba(7,18,32,.72) 15%, transparent 42%);
}

.hero-light-lines {
  display: none;
}

.hero-copy {
  z-index: 5;
}

.hero-copy h1,
.section-heading h2,
.about-hero h1,
.about-history h2,
.about-team h2,
.about-mission h2,
.sub-hero h1,
.section-copy h2,
.overview-panel h2,
.contact-panel h2,
.office-globe-panel h2,
.footer-cta h2,
.newsletter-copy h2,
.quote-strip p,
.war-hero-copy h1,
.war-section-copy h2,
.war-ai-head h2,
.war-final-cta h2 {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span:last-child,
.section-heading h2 span,
.about-team h2 span,
.sub-hero h1 span,
.section-copy h2 span,
.overview-panel h2 span,
.war-hero-copy h1 span,
.war-section-copy h2 span {
  color: var(--green);
}

.hero-copy i,
.section-heading i,
.about-hero-copy i,
.about-history-copy i,
.war-hero-copy i {
  background: var(--red);
}

.button-filled,
.newsletter-form button,
.footer-cta a {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

.button-outline,
.insights-head a,
.mega-approach,
.team-cta {
  color: var(--red);
  border-color: var(--red);
  background: rgba(255,255,255,.08);
}

.hero .button-outline,
.war-page .button-outline,
.about-history .button-outline {
  color: #fff;
  border-color: rgba(255,255,255,.56);
  background: rgba(7,18,32,.56);
}

.section-heading p,
.insights-head p,
.partners > p,
.sub-kicker,
.content-kicker,
.about-history-copy > p:first-child,
.about-team-head > div > p,
.about-mission > div p,
.war-kicker,
.newsletter-copy p,
.mega-intro h2 span,
.mega-card svg,
.mega-benefits svg,
.footer-presence p {
  color: var(--red);
}

.expertise,
.about-adn,
.about-team,
.about-partners,
.insights,
.newsletter,
.content-section {
  background:
    linear-gradient(90deg, rgba(7,18,32,.035) 0 1px, transparent 1px 62px),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.expertise-card {
  color: var(--ink);
  border: 1px solid rgba(8,17,31,.13);
  border-radius: 6px;
  background:
    linear-gradient(180deg, #fff 0%, #f7f5f2 100%);
  box-shadow: 0 14px 32px rgba(8,17,31,.1);
}

.expertise-card::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(182,7,18,.06), transparent 30%),
    linear-gradient(315deg, rgba(72,100,49,.09), transparent 34%);
  filter: none;
  opacity: 1;
  transform: none;
}

.expertise-card::after {
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 58%, var(--green) 58% 100%);
  animation: none;
  transform: none;
  box-shadow: none;
}

.story-bar,
.expertise-card > .card-cleaner {
  display: none;
}

.expertise-card svg {
  color: var(--red);
  filter: none;
}

.expertise-card h3 {
  color: var(--ink);
}

.expertise-card h3::after {
  background: var(--green);
}

.expertise-card a {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.expertise-card a::before {
  content: "+";
  color: var(--red);
  border-color: rgba(182,7,18,.65);
}

.expertise-directory,
.overview-panel,
.feature-card,
.overview-card,
.technology-card,
.value-card,
.step-card,
.contact-panel,
.office-globe-panel,
.method-steps,
.article-grid article {
  border-color: rgba(8,17,31,.13);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,245,242,.94));
  box-shadow: 0 16px 34px rgba(8,17,31,.08);
}

.feature-card::before,
.overview-card::before,
.technology-card::before,
.value-card::before {
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.card-num,
.contact-list span,
.social-list span {
  color: var(--red);
  border-color: rgba(182,7,18,.36);
}

.round,
.mega-benefits span,
.stats svg {
  color: #fff;
  background: var(--red);
}

.stats,
.partners,
.footer,
.dark-band,
.about-mission,
.newsletter-shell,
.war-page,
.war-hero,
.war-dashboard,
.command-wall {
  background:
    linear-gradient(135deg, rgba(182,7,18,.16) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(72,100,49,.18) 0 16%, transparent 16% 100%),
    linear-gradient(90deg, var(--navy), #0b1d31 54%, var(--navy));
}

.stats article:not(:last-child)::after,
.proofs article,
.about-values article,
.footer-cta,
.contact-lines {
  border-color: rgba(255,255,255,.18);
}

.partners > p {
  color: #fff;
}

.partner-logos a {
  border-radius: 6px;
}

.sub-hero {
  background:
    linear-gradient(105deg, rgba(7,18,32,.98) 0 45%, rgba(7,18,32,.76) 65%, rgba(7,18,32,.16) 100%),
    var(--sub-bg, url("assets/hero-charte-collage.png")) center / cover no-repeat,
    var(--navy);
}

.sub-hero::before {
  background:
    linear-gradient(180deg, rgba(7,18,32,.96) 0, rgba(7,18,32,.45) 46%, transparent 80%);
}

.sub-hero::after,
.war-hero::after {
  z-index: 1;
  top: -16%;
  right: 12%;
  width: 54px;
  height: 132%;
  background:
    linear-gradient(90deg, transparent 0 16%, var(--red) 16% 55%, var(--green) 55% 78%, transparent 78% 100%);
  transform: skewX(-22deg);
  box-shadow: none;
}

.about-hero,
.about-history,
.war-final-cta {
  background:
    linear-gradient(100deg, rgba(7,18,32,1) 0 40%, rgba(7,18,32,.72) 58%, rgba(7,18,32,.12) 100%),
    var(--navy);
}

.about-hero::after {
  background:
    linear-gradient(90deg, rgba(7,18,32,1) 0 38%, rgba(7,18,32,.62) 56%, rgba(7,18,32,.08) 86%),
    linear-gradient(180deg, rgba(7,18,32,.94), rgba(7,18,32,.2) 42%, rgba(7,18,32,.16));
}

.mega-menu {
  border-color: rgba(255,255,255,.26);
  background: rgba(247,245,242,.98);
}

.mega-intro {
  background:
    linear-gradient(150deg, var(--navy) 0 72%, var(--red) 72% 79%, var(--green) 79% 100%);
}

.mega-card {
  border-color: rgba(8,17,31,.1);
}

.war-command,
.war-dashboard {
  color: #fff;
}

.wall-line,
.mini-lines span {
  background: linear-gradient(90deg, var(--green), #ffffff, var(--red));
}

.morocco-map,
.donut,
.gauge {
  background: conic-gradient(var(--green) 0 45%, var(--red) 45% 74%, rgba(255,255,255,.13) 74% 100%);
}

@media (min-width: 900px) {
  .brand img {
    width: 70px;
    height: 78px;
  }

  .footer-logo img {
    width: 70px;
    height: 76px;
  }

  .brand-copy strong {
    font-size: 27px;
  }

  .brand-copy small {
    font-size: 8.4px;
  }

  .hero-copy {
    width: min(650px, 46vw);
    margin-top: 92px;
  }

  .hero-copy h1 {
    font-size: 56px;
    line-height: .96;
  }

  .hero-copy p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.38;
  }

  .section-heading h2 {
    font-size: 44px;
  }

  .expertise-card {
    height: 330px;
  }

  .expertise-card svg {
    width: 70px;
    height: 70px;
    margin-top: 64px;
  }

  .expertise-card h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .expertise-card a {
    bottom: 34px;
  }

  .sub-hero h1,
  .about-hero h1 {
    font-size: 64px;
  }

  .section-copy h2,
  .overview-panel h2,
  .contact-panel h2,
  .office-globe-panel h2 {
    font-size: 34px;
  }
}

@media (max-width: 899px) {
  .brand img {
    width: 56px;
    height: 64px;
  }

  .brand-copy small::before {
    max-width: 250px;
    background:
      linear-gradient(var(--green-2), var(--green-2)) left center / 34px 1px no-repeat,
      linear-gradient(var(--green-2), var(--green-2)) right center / 34px 1px no-repeat;
    letter-spacing: 5px;
  }

  .hero {
    height: auto;
    min-height: 720px;
  }

  .hero::before {
    right: 8%;
    width: 46px;
    opacity: .76;
  }

  .hero::after {
    width: 170px;
    height: 56px;
  }

  .hero-visual {
    width: 100%;
    height: 100%;
    opacity: .42;
    clip-path: none;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(7,18,32,.98) 0 45%, rgba(7,18,32,.8) 68%, rgba(7,18,32,.96) 100%);
  }

  .hero-copy {
    margin-top: 52px;
  }

  .hero-copy h1 {
    font-size: 32px;
    line-height: 1;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .cards {
    grid-template-columns: 1fr;
    width: calc(100% - 44px);
    gap: 14px;
    margin-top: 28px;
    margin-inline: auto;
  }

  .expertise-card {
    height: 228px;
    min-height: 228px;
  }

  .expertise-card svg {
    width: 54px;
    height: 54px;
    margin-top: 42px;
  }

  .expertise-card h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .expertise-card a {
    bottom: 24px;
  }

  .expertise-card a::before {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }

  .sub-hero::after,
  .war-hero::after {
    right: 6%;
    width: 40px;
    opacity: .56;
  }
}

.content-section {
  background: transparent;
}

.dark-band .content-section {
  background: transparent;
}

.dark-band .quote-strip p {
  color: #fff;
}

@media (max-width: 899px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    gap: 12px 0;
    padding: 18px 22px;
  }

  .stats article {
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    min-height: 52px;
    padding-left: 0;
  }

  .stats article:not(:last-child)::after {
    display: none;
  }

  .stats svg {
    width: 34px;
    height: 34px;
  }

  .stats strong {
    font-size: 26px;
  }

  .stats span {
    font-size: 9px;
  }
}

/* Rolling white light over the hero photo dividers */
.hero .hero-light-lines {
  display: block;
  z-index: 6;
  top: 0;
  right: 0;
  width: min(64vw, 900px);
  height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 45%);
  mix-blend-mode: screen;
  opacity: .95;
}

.hero .light-line {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.74), transparent);
  box-shadow:
    0 0 4px rgba(255,255,255,.86),
    0 0 14px rgba(255,255,255,.34);
  opacity: .62;
}

.hero .light-line::before {
  inset: -7px -72px;
  background: linear-gradient(90deg, transparent 0 34%, rgba(255,255,255,.05) 42%, rgba(255,255,255,1) 49%, rgba(255,255,255,.86) 54%, transparent 66% 100%);
  filter: blur(.8px);
  animation: heroLightRun var(--dur, 4.8s) cubic-bezier(.44,0,.2,1) infinite;
}

.hero .light-line::after {
  content: "";
  position: absolute;
  inset: -2px -24px;
  background: linear-gradient(90deg, transparent 0 44%, rgba(255,255,255,.95) 50%, transparent 58% 100%);
  filter: blur(3px);
  transform: translateX(-120%);
  animation: heroLightRun var(--dur, 4.8s) cubic-bezier(.44,0,.2,1) infinite;
  animation-delay: calc(var(--delay, 0s) - .12s);
}

.hero .line-a {
  --x: 30%;
  --y: 101%;
  --w: 112%;
  --r: -67deg;
  --dur: 4.9s;
  --delay: -.4s;
}

.hero .line-b {
  --x: 51%;
  --y: 47.2%;
  --w: 58%;
  --r: 0deg;
  --dur: 5.6s;
  --delay: -2.1s;
}

.hero .line-c {
  --x: 72%;
  --y: 0%;
  --w: 66%;
  --r: 73deg;
  --dur: 5.2s;
  --delay: -3.2s;
}

.hero .line-d {
  --x: 17%;
  --y: 58%;
  --w: 56%;
  --r: -66deg;
  --dur: 5.8s;
  --delay: -1.3s;
}

.hero .line-e {
  --x: 64%;
  --y: 101%;
  --w: 54%;
  --r: -48deg;
  --dur: 6.1s;
  --delay: -4.1s;
}

.hero .line-f {
  --x: 82%;
  --y: 47.6%;
  --w: 36%;
  --r: 0deg;
  --dur: 5.4s;
  --delay: -3.8s;
}

@media (max-width: 899px) {
  .hero .hero-light-lines {
    width: 100%;
    opacity: .72;
    clip-path: none;
  }
}

/* Expertise cards back to photo stories */
.expertise-card {
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(8,17,31,.18);
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(7,18,32,.02) 0%, rgba(7,18,32,.22) 28%, rgba(7,18,32,.78) 70%, rgba(7,18,32,.98) 100%),
    var(--bg);
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.04);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .65s cubic-bezier(.2,.7,.2,1);
}

.expertise-card::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 14px;
  right: 14px;
  z-index: 3;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #fff 58%, var(--green));
  box-shadow: 0 0 14px rgba(255,255,255,.42);
  transform: scaleX(0);
  transform-origin: left center;
  animation: storyProgress 6.4s linear infinite;
  animation-delay: var(--story-delay, 0s);
}

.expertise-card > .card-cleaner {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 62%;
  background:
    linear-gradient(180deg, rgba(7,18,32,0), rgba(7,18,32,.76) 20%, rgba(7,18,32,.97) 62%, var(--navy) 100%);
  pointer-events: none;
}

.story-bar {
  display: flex;
  color: #fff;
}

.story-bar::before {
  background: rgba(255,255,255,.18);
}

.story-bar b {
  color: #fff;
  background: var(--red);
}

.expertise-card svg {
  color: #fff;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}

.expertise-card h3 {
  color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,.48);
}

.expertise-card h3::after {
  background: var(--green);
}

.expertise-card a {
  color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.expertise-card a::before {
  content: "+";
  color: #fff;
  border-color: rgba(255,255,255,.78);
  background: rgba(182,7,18,.72);
}

.expertise-card:hover::before {
  filter: saturate(1.14) contrast(1.12);
  transform: scale(1.1);
}

.expertise-card:hover {
  border-color: rgba(255,255,255,.38);
}

@media (min-width: 900px) {
  .expertise-card {
    height: 430px;
  }

  .expertise-card svg {
    width: 76px;
    height: 76px;
    margin-top: 118px;
  }

  .expertise-card h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .expertise-card h3::after {
    width: 48px;
    height: 3px;
    margin-top: 18px;
  }

  .expertise-card a {
    bottom: 48px;
    font-size: 12px;
  }

  .expertise-card a::before {
    width: 31px;
    height: 31px;
    line-height: 31px;
    margin-bottom: 10px;
  }
}

@media (max-width: 899px) {
  .expertise-card {
    height: 300px;
    min-height: 300px;
  }

  .story-bar {
    font-size: 7px;
  }

  .expertise-card svg {
    width: 58px;
    height: 58px;
    margin-top: 80px;
  }

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

  .expertise-card a {
    bottom: 32px;
  }
}

.hero .nav a.is-active {
  color: #fff;
}

.hero .nav a.is-active::before {
  top: 32px;
  background: #fff;
}

/* Mega menu restored to the reference visual. */
.hero .mega-menu {
  --mega-gold: #e0a044;
  --mega-ink: #111a2c;
  z-index: 60;
  left: 4px;
  right: 4px;
  top: 3px;
  height: min(760px, calc(100vh - 6px));
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 25.25%) 1fr;
  grid-template-rows: 1fr 104px;
  color: var(--mega-ink);
  background: rgba(250,249,247,.985);
  border: 1px solid rgba(14,24,40,.2);
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0,0,0,.3);
}

.hero .mega-intro {
  grid-row: 1 / 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0 59%, rgba(255,255,255,.58) 70%, rgba(255,255,255,.06) 100%);
  border-right: 1px solid rgba(17,26,44,.13);
}

.hero .mega-intro-copy {
  padding: clamp(28px, 3vw, 48px) clamp(26px, 3.1vw, 56px) 0;
}

.hero .mega-intro h2 {
  color: var(--mega-ink);
  font-family: var(--serif);
  font-size: clamp(32px, 2.9vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.hero .mega-intro h2 span {
  color: var(--mega-gold);
}

.hero .mega-intro i,
.hero .mega-card i {
  width: 50px;
  height: 2px;
  margin: 24px 0 25px;
  background: var(--mega-gold);
}

.hero .mega-intro p {
  color: #222d3e;
  font-size: clamp(15px, 1.02vw, 20px);
  font-weight: 700;
  line-height: 1.55;
}

.hero .mega-divider {
  display: block;
  height: 1px;
  margin: clamp(42px, 4vw, 70px) 0 34px;
  background: rgba(17,26,44,.13);
}

.hero .mega-integrated {
  display: grid;
  grid-template-columns: clamp(58px, 4.7vw, 78px) 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.hero .mega-integrated svg {
  width: clamp(54px, 4.7vw, 76px);
  height: clamp(54px, 4.7vw, 76px);
  color: var(--mega-gold);
  stroke-width: 1.5;
}

.hero .mega-integrated h3 {
  margin: 6px 0 18px;
  color: var(--mega-ink);
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero .mega-integrated p {
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.55;
}

.hero .mega-approach {
  width: min(100%, 344px);
  height: 56px;
  margin-top: clamp(28px, 3vw, 44px);
  padding: 0 24px;
  color: var(--mega-gold);
  background: rgba(255,255,255,.6);
  border: 2px solid rgba(224,160,68,.65);
  border-radius: 0;
  font-size: clamp(12px, .9vw, 16px);
  font-weight: 900;
  letter-spacing: .1px;
  backdrop-filter: none;
}

.hero .mega-approach span {
  width: 62px;
  height: 54px;
  margin-right: -24px;
  border-left: 1px solid rgba(224,160,68,.36);
  font-size: 27px;
}

.hero .mega-intro img {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 1;
}

.hero .mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero .mega-card {
  justify-content: flex-start;
  padding: clamp(28px, 3vw, 54px) clamp(26px, 3.15vw, 56px) 26px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.955), rgba(255,255,255,.9)),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  border-color: rgba(17,26,44,.13);
  box-shadow: none;
}

.hero .mega-card::before,
.hero .mega-card::after {
  display: none;
}

.hero .mega-card svg {
  width: clamp(48px, 4.2vw, 72px);
  height: clamp(48px, 4.2vw, 72px);
  color: var(--mega-gold);
  stroke-width: 1.45;
}

.hero .mega-card h3 {
  margin: clamp(24px, 2.6vw, 38px) 0 0;
  color: var(--mega-ink);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: .1px;
  text-transform: uppercase;
}

.hero .mega-card i {
  width: 38px;
  margin: 20px 0 24px;
}

.hero .mega-card p,
.hero .mega-card ul {
  display: block;
}

.hero .mega-card p {
  max-width: 300px;
  margin: 0 0 25px;
  color: #253044;
  font-size: clamp(14px, 1.02vw, 19px);
  font-weight: 700;
  line-height: 1.42;
}

.hero .mega-card ul {
  margin: 0 0 26px;
  padding-left: 18px;
}

.hero .mega-card li {
  margin: 0 0 9px;
  color: #1d2738;
  font-size: clamp(12px, .88vw, 16px);
  font-weight: 700;
  line-height: 1.22;
  list-style: disc;
}

.hero .mega-card a {
  margin-top: auto;
  gap: 15px;
  color: var(--mega-gold);
  font-size: clamp(13px, .95vw, 18px);
  font-weight: 900;
}

.hero .mega-card a span {
  font-size: clamp(22px, 1.45vw, 30px);
  line-height: 1;
}

.hero .mega-benefits {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(17,26,44,.13);
}

.hero .mega-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 clamp(22px, 2.1vw, 36px);
  border-right: 1px solid rgba(17,26,44,.13);
}

.hero .mega-benefits span {
  width: 52px;
  height: 52px;
  color: #fff;
  background: #071220;
  border-radius: 50%;
}

.hero .mega-benefits svg {
  width: 29px;
  height: 29px !important;
  color: #fff;
  stroke-width: 1.8;
}

.hero .mega-benefits h3 {
  margin: 0 0 6px;
  color: var(--mega-ink);
  font-size: clamp(12px, .82vw, 16px);
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero .mega-benefits p {
  margin: 0;
  color: #253044;
  font-size: clamp(11px, .78vw, 15px);
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .hero .mega-menu {
    grid-template-columns: 280px 1fr;
    height: 590px;
  }

  .hero .mega-card {
    padding: 28px 26px 22px;
  }

  .hero .mega-benefits article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .hero .mega-benefits span {
    width: 42px;
    height: 42px;
  }
}

.hero .mega-grid {
  min-height: 0;
  height: 100%;
}

.hero .mega-card {
  min-height: 0;
  padding: 26px 38px 22px;
}

.hero .mega-card svg {
  width: 46px;
  height: 46px !important;
  aspect-ratio: 1;
  flex: 0 0 46px;
}

.hero .mega-card h3 {
  margin-top: 20px;
  font-size: 21px;
  line-height: 1.12;
}

.hero .mega-card i {
  width: 38px;
  margin: 15px 0 17px;
}

.hero .mega-card p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.34;
}

.hero .mega-card ul {
  margin-bottom: 14px;
  padding-left: 17px;
}

.hero .mega-card li {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.18;
}

.hero .mega-card a {
  font-size: 15px;
}

.hero .mega-card a span {
  font-size: 22px;
}

.hero .mega-intro h2 {
  font-size: 42px;
}

.hero .mega-intro i {
  margin: 22px 0 24px;
}

.hero .mega-intro p {
  font-size: 16px;
}

.hero .mega-divider {
  margin: 46px 0 30px;
}

.hero .mega-integrated {
  grid-template-columns: 62px 1fr;
  gap: 22px;
}

.hero .mega-integrated svg {
  width: 58px;
  height: 58px !important;
  aspect-ratio: 1;
  flex: 0 0 58px;
}

.hero .mega-integrated h3 {
  font-size: 20px;
}

.hero .mega-integrated p {
  font-size: 14px;
}

.hero .mega-approach {
  height: 46px;
  margin-top: 24px;
  font-size: 13px;
}

.hero .mega-approach span {
  height: 44px;
}

.hero .mega-benefits h3 {
  font-size: 13px;
}

.hero .mega-benefits p {
  font-size: 12px;
}

@media (min-width: 900px) {
  .hero .mega-menu {
    left: 50%;
    right: auto;
    top: 112px;
    width: min(1120px, calc(100vw - 96px));
    height: 540px;
    min-height: 0;
    grid-template-columns: 260px 1fr;
    grid-template-rows: 1fr 74px;
    transform: translate(-50%, -8px);
    box-shadow: 0 18px 48px rgba(0,0,0,.28);
  }

  .hero:has(.nav-expertise:hover) .mega-menu,
  .hero:has(.nav-expertise:focus-visible) .mega-menu,
  .hero:has(.mega-menu:hover) .mega-menu,
  .hero:has(.mega-menu:focus-within) .mega-menu,
  .hero:has(.mega-anchor:target) .mega-menu {
    transform: translate(-50%, 0);
  }

  .hero .mega-intro-copy {
    padding: 24px 28px 0;
  }

  .hero .mega-intro h2 {
    font-size: 30px;
  }

  .hero .mega-intro i {
    width: 34px;
    margin: 16px 0 16px;
  }

  .hero .mega-intro p {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero .mega-divider {
    margin: 27px 0 20px;
  }

  .hero .mega-integrated {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .hero .mega-integrated svg {
    width: 40px;
    height: 40px !important;
    flex-basis: 40px;
  }

  .hero .mega-integrated h3 {
    margin: 2px 0 8px;
    font-size: 13px;
  }

  .hero .mega-integrated p {
    font-size: 10.5px;
    line-height: 1.38;
  }

  .hero .mega-approach {
    width: 206px;
    height: 34px;
    margin-top: 16px;
    padding: 0 13px;
    border-width: 1px;
    font-size: 9.5px;
  }

  .hero .mega-approach span {
    width: 40px;
    height: 32px;
    margin-right: -13px;
    font-size: 19px;
  }

  .hero .mega-intro img {
    height: 24%;
  }

  .hero .mega-card {
    padding: 16px 26px 12px;
  }

  .hero .mega-card svg {
    width: 30px;
    height: 30px !important;
    flex-basis: 30px;
  }

  .hero .mega-card h3 {
    margin-top: 11px;
    font-size: 15.5px;
    line-height: 1.1;
  }

  .hero .mega-card i {
    width: 27px;
    height: 1px;
    margin: 8px 0 9px;
  }

  .hero .mega-card p {
    margin-bottom: 8px;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .hero .mega-card ul {
    margin-bottom: 7px;
    padding-left: 13px;
  }

  .hero .mega-card li {
    margin-bottom: 2px;
    font-size: 9.2px;
    line-height: 1.16;
  }

  .hero .mega-card a {
    gap: 9px;
    font-size: 10px;
  }

  .hero .mega-card a span {
    font-size: 17px;
  }

  .hero .mega-benefits article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 0 15px;
  }

  .hero .mega-benefits span {
    width: 34px;
    height: 34px;
  }

  .hero .mega-benefits svg {
    width: 20px;
    height: 20px !important;
  }

  .hero .mega-benefits h3 {
    margin-bottom: 3px;
    font-size: 9px;
  }

  .hero .mega-benefits p {
    font-size: 8.8px;
    line-height: 1.28;
  }
}

@media (max-width: 899px) {
  .hero .mega-menu {
    display: none;
  }
}

/* Compact footer without the right presence card. */
.footer-presence {
  display: none !important;
}

.footer-cta {
  padding-top: 13px;
  padding-bottom: 10px;
}

.footer-main {
  grid-template-columns: 220px 98px 102px 128px;
  padding-top: 14px;
  padding-bottom: 15px;
}

.footer-logo {
  margin-bottom: 7px;
}

.footer-brand p {
  margin-bottom: 9px;
}

.contact-lines {
  grid-column: 2 / 5;
  margin-top: 7px;
  padding-top: 8px;
}

.socials {
  grid-column: 4;
  grid-row: 2;
  align-self: center;
}

@media (min-width: 900px) {
  .footer-cta {
    grid-template-columns: 1fr 200px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .footer-cta h2 {
    font-size: 30px;
  }

  .footer-cta a {
    height: 44px;
  }

  .footer-main {
    grid-template-columns: minmax(270px, 1.35fr) minmax(140px, .62fr) minmax(140px, .62fr) minmax(180px, .82fr);
    gap: 40px;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .footer-logo img {
    width: 54px;
    height: 58px;
  }

  .footer-logo strong {
    font-size: 22px;
  }

  .footer-brand p {
    max-width: 310px;
    margin-bottom: 10px;
  }

  .footer-main h3 {
    margin-top: 2px;
    margin-bottom: 9px;
  }

  .contact-lines {
    grid-column: 2 / 5;
    margin-top: 18px;
    padding-top: 16px;
  }

  .socials {
    grid-column: 4;
    justify-self: end;
    align-self: center;
  }
}

/* About history: balanced text plus generated field image. */
.about-history {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(360px, 1fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: clamp(54px, 6vw, 88px) var(--edge, 47px);
  background:
    linear-gradient(110deg, rgba(7,18,32,1) 0 52%, rgba(7,18,32,.96) 52% 100%),
    var(--navy);
}

.about-history::before {
  background:
    radial-gradient(circle at 15% 16%, rgba(22,73,112,.34), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.035), transparent 46%),
    linear-gradient(135deg, rgba(182,7,18,.2) 0 16%, transparent 16% 100%);
}

.about-history-copy {
  width: auto;
  max-width: 590px;
  padding: 0;
}

.about-history h2 {
  max-width: 560px;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: .98;
}

.about-history-copy p:not(:first-child) {
  max-width: 520px;
}

.about-history-copy .button {
  margin-top: 12px;
}

.about-history-visual {
  position: relative;
  z-index: 1;
  min-height: 360px;
  height: clamp(360px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
}

.about-history-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,32,.78) 0 14%, rgba(7,18,32,.22) 34%, rgba(7,18,32,0) 62%),
    linear-gradient(180deg, rgba(7,18,32,.08), rgba(7,18,32,.36));
  pointer-events: none;
}

.about-history-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 16px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--green));
  pointer-events: none;
}

.about-history-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

@media (max-width: 899px) {
  .about-history {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px 52px;
  }

  .about-history-copy {
    width: auto;
    padding: 0;
  }

  .about-history h2 {
    font-size: 34px;
  }

  .about-history-visual {
    min-height: 240px;
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Expertises page premium motion design. */
.expertises-page {
  background:
    linear-gradient(90deg, rgba(7,18,32,.035) 0 1px, transparent 1px 68px),
    var(--paper-2);
}

.expertises-page .sub-hero {
  min-height: clamp(560px, 62vw, 740px);
  isolation: isolate;
  background:
    linear-gradient(103deg, rgba(7,18,32,1) 0 43%, rgba(7,18,32,.82) 58%, rgba(7,18,32,.25) 100%),
    var(--sub-bg, url("assets/hero-charte-collage.png")) center / cover no-repeat,
    var(--navy);
}

.expertises-page .sub-hero::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(182,7,18,.24), transparent 27%),
    radial-gradient(circle at 70% 25%, rgba(72,100,49,.22), transparent 26%),
    linear-gradient(180deg, rgba(7,18,32,.98), rgba(7,18,32,.24) 58%, rgba(7,18,32,.78));
  animation: expertisesGlow 7s ease-in-out infinite alternate;
}

.expertises-page .sub-hero::after {
  z-index: 1;
  top: -12%;
  right: 22%;
  width: 82px;
  height: 126%;
  opacity: .9;
  background:
    linear-gradient(90deg, transparent 0 18%, var(--red) 18% 48%, var(--green) 48% 68%, transparent 68% 100%);
  transform: skewX(-22deg);
}

.expertises-page .sub-hero-copy {
  padding-top: clamp(86px, 8vw, 130px);
  padding-bottom: clamp(84px, 8vw, 132px);
}

.expertises-page .sub-kicker,
.expertises-page .content-kicker {
  color: var(--red);
}

.expertises-page .sub-hero h1 {
  max-width: 780px;
  font-size: 106px;
  line-height: .86;
  letter-spacing: 0;
}

.expertises-page .sub-hero h1 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 28px rgba(72,100,49,.28);
}

.expertises-page .sub-lead {
  max-width: 640px;
  font-size: 20px;
  line-height: 1.5;
}

.sub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.expertises-hero-motion {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.expertises-hero-motion span {
  position: absolute;
  right: -18%;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.88), transparent);
  filter: drop-shadow(0 0 12px rgba(255,255,255,.55));
  opacity: .72;
  transform: rotate(-62deg) translateX(-120%);
  animation: expertisesLightSweep 5.8s cubic-bezier(.4,0,.2,1) infinite;
}

.expertises-hero-motion span:nth-child(1) {
  top: 4%;
  animation-delay: -.2s;
}

.expertises-hero-motion span:nth-child(2) {
  top: 27%;
  animation-delay: -2.1s;
}

.expertises-hero-motion span:nth-child(3) {
  top: 49%;
  animation-delay: -3.4s;
}

.expertises-hero-motion span:nth-child(4) {
  top: 73%;
  animation-delay: -4.7s;
}

.expertises-hero-panel {
  position: absolute;
  z-index: 2;
  right: var(--edge, 72px);
  bottom: clamp(56px, 7vw, 96px);
  width: min(360px, 26vw);
  min-width: 280px;
  padding: 24px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(7,18,32,.9), rgba(7,18,32,.55)),
    rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 58px rgba(0,0,0,.34);
  animation: expertisesFloat 4.8s ease-in-out infinite;
}

.expertises-hero-panel b {
  display: block;
  color: #fff;
  font-size: 64px;
  line-height: .9;
}

.expertises-hero-panel p {
  margin: 10px 0 20px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.panel-pulse {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(182,7,18,.46);
  animation: expertisesPulse 2.2s ease-out infinite;
}

.panel-bars {
  display: grid;
  gap: 8px;
}

.panel-bars span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform-origin: left center;
  animation: expertisesBar 2.8s ease-in-out infinite;
}

.panel-bars span:nth-child(2) {
  width: 78%;
  animation-delay: -.8s;
}

.panel-bars span:nth-child(3) {
  width: 58%;
  animation-delay: -1.5s;
}

.expertises-page .expertises-intro {
  padding-bottom: 32px;
}

.expertises-page .expertises-overview {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(280px, 430px) 1fr;
  padding: clamp(34px, 4vw, 58px);
  color: #fff;
  border: 0;
  background:
    linear-gradient(135deg, rgba(7,18,32,.98), rgba(7,18,32,.88)),
    url("assets/about/about-history-field.png") right center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(7,18,32,.22);
}

.expertises-page .expertises-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,32,.96) 0 48%, rgba(7,18,32,.48) 74%, rgba(7,18,32,.16)),
    linear-gradient(135deg, rgba(182,7,18,.24) 0 16%, transparent 16% 100%);
  pointer-events: none;
}

.expertises-page .expertises-overview > * {
  position: relative;
  z-index: 1;
}

.expertises-page .expertises-overview h2,
.expertises-page .expertises-overview p {
  color: #fff;
}

.expertises-page .expertises-overview h2 span {
  color: var(--green-2);
}

.expertises-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.expertises-metrics article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 118px;
  color: var(--ink);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(8,17,31,.1);
  box-shadow: 0 16px 42px rgba(8,17,31,.08);
}

.expertises-metrics article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform-origin: left center;
  animation: expertisesMetric 4s ease-in-out infinite;
}

.expertises-metrics strong {
  display: block;
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

.expertises-metrics span {
  display: block;
  margin-top: 10px;
  color: #4a5365;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.expertises-page .section-copy {
  align-items: end;
}

.expertises-page .section-copy h2 {
  font-size: 54px;
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
}

.expertises-page .section-copy p:not(.content-kicker) {
  font-size: 15px;
}

.expertises-page .expertise-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.expertises-page .overview-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7,18,32,.08) 0 32%, rgba(7,18,32,.82) 72%, rgba(7,18,32,.98) 100%),
    var(--visual) center / cover no-repeat,
    var(--navy);
  box-shadow: 0 22px 56px rgba(7,18,32,.18);
  transform: translateY(20px);
}

.expertises-page .overview-card::before {
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(182,7,18,.72) 0 22%, rgba(72,100,49,.72) 22% 38%, transparent 38% 100%) top left / 100% 5px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 38%);
}

.expertises-page .overview-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.22) 48%, transparent 60% 100%);
  opacity: 0;
  transform: translateX(-120%) skewX(-12deg);
  transition: opacity .2s ease, transform .8s ease;
}

.expertises-page .overview-card:hover,
.expertises-page .overview-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 30px 74px rgba(7,18,32,.28);
}

.expertises-page .overview-card:hover::after,
.expertises-page .overview-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%) skewX(-12deg);
}

.expertises-page .overview-card .card-num {
  width: 42px;
  height: 42px;
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(7,18,32,.36);
}

.expertises-page .overview-card h3 {
  color: #fff;
  font-size: 25px;
}

.expertises-page .overview-card p {
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.expertises-page .overview-card a {
  color: #fff;
}

.expertises-page .overview-card a span {
  color: var(--red-2);
  font-size: 18px;
}

.expertises-page .value-grid {
  gap: 18px;
}

.expertises-page .value-card {
  min-height: 210px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,245,242,.88));
  transform: translateY(18px);
}

.expertises-page .value-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--red), var(--green), rgba(7,18,32,.12), var(--red));
  opacity: .16;
  animation: expertisesSpin 7s linear infinite;
}

.expertises-page .value-card h3 {
  font-size: 18px;
}

.expertises-final {
  position: relative;
  overflow: hidden;
}

.expertises-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,32,.92), rgba(7,18,32,.52)),
    url("assets/hero-charte-collage.png") center / cover no-repeat;
  opacity: .62;
  transform: scale(1.04);
  animation: expertisesBackdrop 9s ease-in-out infinite alternate;
}

.expertises-final .quote-strip {
  position: relative;
  z-index: 1;
  grid-template-columns: 180px 1fr auto;
  min-height: 190px;
}

.expertises-final .quote-strip b {
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.expertises-final .quote-strip p {
  max-width: 860px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.expertises-page [data-reveal],
.expertises-page .section-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--card-delay, 0s);
}

.expertises-page [data-reveal].is-visible,
.expertises-page .section-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes expertisesGlow {
  from {
    opacity: .72;
    filter: saturate(1);
  }
  to {
    opacity: 1;
    filter: saturate(1.25);
  }
}

@keyframes expertisesLightSweep {
  0%, 22% {
    opacity: 0;
    transform: rotate(-62deg) translateX(-120%);
  }
  42% {
    opacity: .82;
  }
  78% {
    opacity: .36;
    transform: rotate(-62deg) translateX(105%);
  }
  100% {
    opacity: 0;
    transform: rotate(-62deg) translateX(130%);
  }
}

@keyframes expertisesFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes expertisesPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(182,7,18,.46);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(182,7,18,0);
  }
}

@keyframes expertisesBar {
  0%, 100% {
    transform: scaleX(.52);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes expertisesMetric {
  0%, 100% {
    transform: scaleX(.18);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes expertisesSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes expertisesBackdrop {
  from {
    transform: scale(1.04) translateX(-1%);
  }
  to {
    transform: scale(1.08) translateX(1%);
  }
}

@media (min-width: 900px) {
  .expertises-page .sub-hero-copy,
  .expertises-page .content-section {
    width: min(1280px, calc(100vw - (var(--edge) * 2)));
  }
}

@media (max-width: 1100px) {
  .expertises-hero-panel {
    display: none;
  }

  .expertises-page .expertise-overview-grid,
  .expertises-page .value-grid,
  .expertises-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .expertises-page .sub-hero {
    min-height: 650px;
  }

  .expertises-page .sub-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: 56px;
    line-height: .9;
  }

  .expertises-page .sub-lead {
    max-width: calc(100vw - 48px);
    font-size: 21px;
    line-height: 1.38;
  }

  .sub-hero-actions {
    flex-direction: column;
  }

  .expertises-page .section-copy h2 {
    font-size: 34px;
  }

  .expertises-final .quote-strip p {
    font-size: 30px;
  }

  .expertises-page .expertises-overview,
  .expertises-page .section-copy,
  .expertises-final .quote-strip {
    grid-template-columns: 1fr;
  }

  .expertises-page .expertise-overview-grid,
  .expertises-page .value-grid,
  .expertises-metrics {
    grid-template-columns: 1fr;
  }

  .expertises-page .overview-card {
    min-height: 320px;
  }

  .expertises-final .quote-strip {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .expertises-page *,
  .expertises-page *::before,
  .expertises-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Technologies page: animated campaign OS direction. */
.technologies-page {
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(7,18,32,.035) 0 1px, transparent 1px 68px),
    linear-gradient(180deg, #f7f5f2, #ebe9e4 58%, #f7f5f2);
}

.technologies-page .sub-hero {
  min-height: 740px;
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(7,18,32,1) 0 42%, rgba(7,18,32,.82) 58%, rgba(7,18,32,.2) 100%),
    var(--sub-bg, url("assets/hero-collage.png")) center / cover no-repeat,
    var(--navy);
}

.technologies-page .sub-hero::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(182,7,18,.25), transparent 28%),
    radial-gradient(circle at 74% 28%, rgba(72,100,49,.24), transparent 27%),
    linear-gradient(180deg, rgba(7,18,32,.98), rgba(7,18,32,.2) 58%, rgba(7,18,32,.82));
  animation: techAura 7s ease-in-out infinite alternate;
}

.technologies-page .sub-hero::after {
  z-index: 1;
  top: -12%;
  right: 18%;
  width: 78px;
  height: 126%;
  opacity: .92;
  background:
    linear-gradient(90deg, transparent 0 18%, var(--red) 18% 48%, var(--green) 48% 68%, transparent 68% 100%);
  transform: skewX(-22deg);
}

.technologies-page .sub-hero-copy {
  padding-top: 118px;
  padding-bottom: 132px;
}

.technologies-page .sub-kicker,
.technologies-page .content-kicker {
  color: var(--red);
}

.technologies-page .sub-hero h1 {
  max-width: 840px;
  font-size: 96px;
  line-height: .86;
  letter-spacing: 0;
}

.technologies-page .sub-hero h1 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 30px rgba(72,100,49,.3);
}

.technologies-page .sub-lead {
  max-width: 670px;
  font-size: 20px;
  line-height: 1.5;
}

.tech-hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: .58;
  background:
    linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 74px),
    linear-gradient(180deg, rgba(255,255,255,.08) 0 1px, transparent 1px 74px);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.85), transparent 72%);
}

.tech-hero-grid span {
  position: absolute;
  right: -20%;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  filter: drop-shadow(0 0 14px rgba(255,255,255,.55));
  transform: rotate(-62deg) translateX(-120%);
  animation: techLightSweep 6s cubic-bezier(.4,0,.2,1) infinite;
}

.tech-hero-grid span:nth-child(1) {
  top: 11%;
  animation-delay: -.4s;
}

.tech-hero-grid span:nth-child(2) {
  top: 32%;
  animation-delay: -2.2s;
}

.tech-hero-grid span:nth-child(3) {
  top: 55%;
  animation-delay: -3.7s;
}

.tech-hero-grid span:nth-child(4) {
  top: 78%;
  animation-delay: -5s;
}

.tech-orbit {
  position: absolute;
  z-index: 2;
  right: 9%;
  top: 172px;
  width: 214px;
  height: 214px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,18,32,.72) 0 38%, rgba(7,18,32,.08) 39% 100%);
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.35));
  animation: techFloat 5.2s ease-in-out infinite;
}

.tech-orbit b {
  position: relative;
  z-index: 2;
  font-size: 58px;
  line-height: .9;
}

.tech-orbit em {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  color: rgba(255,255,255,.76);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.orbit-ring {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  animation: techOrbit 9s linear infinite;
}

.ring-one::before,
.ring-two::before,
.ring-three::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(182,7,18,.75);
}

.ring-two {
  inset: 34px;
  border-color: rgba(72,100,49,.46);
  animation-duration: 6.6s;
  animation-direction: reverse;
}

.ring-two::before {
  background: var(--green);
  box-shadow: 0 0 18px rgba(72,100,49,.75);
}

.ring-three {
  inset: 58px;
  border-color: rgba(255,255,255,.18);
  animation-duration: 4.7s;
}

.ring-three::before {
  background: #fff;
  box-shadow: 0 0 16px rgba(255,255,255,.76);
}

.tech-hero-console {
  position: absolute;
  z-index: 2;
  right: var(--edge, 72px);
  bottom: 78px;
  width: 372px;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(135deg, rgba(7,18,32,.92), rgba(7,18,32,.56)),
    rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 68px rgba(0,0,0,.34);
  animation: techConsoleIn .9s cubic-bezier(.2,.7,.2,1) both;
}

.tech-hero-console p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.console-screen {
  display: grid;
  gap: 9px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(255,255,255,.07) 0 1px, transparent 1px 28px),
    rgba(255,255,255,.04);
}

.console-screen span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform-origin: left center;
  animation: techSignal 2.8s ease-in-out infinite;
}

.console-screen span:nth-child(2) {
  width: 64%;
  animation-delay: -.6s;
}

.console-screen span:nth-child(3) {
  width: 82%;
  animation-delay: -1.1s;
}

.console-screen span:nth-child(4) {
  width: 48%;
  animation-delay: -1.7s;
}

.console-stats {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.console-stats strong {
  color: #fff;
  font-size: 44px;
  line-height: .9;
}

.console-stats small {
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.technologies-page .tech-intro {
  padding-bottom: 30px;
}

.technologies-page .tech-overview {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(280px, 420px) 1fr;
  padding: 54px;
  color: #fff;
  border: 0;
  background:
    linear-gradient(125deg, rgba(7,18,32,.98) 0 52%, rgba(7,18,32,.68) 100%),
    url("assets/stories/story-data-ai.png") right 34% / cover no-repeat;
  box-shadow: 0 30px 80px rgba(7,18,32,.23);
}

.technologies-page .tech-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,32,.98) 0 54%, rgba(7,18,32,.36) 82%, rgba(7,18,32,.08)),
    linear-gradient(135deg, rgba(182,7,18,.24) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(72,100,49,.2) 0 15%, transparent 15% 100%);
  pointer-events: none;
}

.technologies-page .tech-overview::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -20%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  animation: techOrbit 12s linear infinite;
}

.technologies-page .tech-overview > * {
  position: relative;
  z-index: 1;
}

.technologies-page .tech-overview h2,
.technologies-page .tech-overview p {
  color: #fff;
}

.technologies-page .tech-overview h2 span {
  color: var(--green-2);
}

.tech-signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tech-signal-strip article {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(8,17,31,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,245,242,.88));
  box-shadow: 0 16px 42px rgba(8,17,31,.08);
}

.tech-signal-strip article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform-origin: left center;
  animation: techSignal 3.8s ease-in-out infinite;
}

.tech-signal-strip article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(182,7,18,.2);
  box-shadow: inset 0 0 0 10px rgba(72,100,49,.08);
}

.tech-signal-strip strong {
  display: block;
  color: var(--red);
  font-size: 35px;
  line-height: 1;
}

.tech-signal-strip span {
  display: block;
  max-width: 160px;
  margin-top: 12px;
  color: #4a5365;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.technologies-page .section-copy {
  align-items: end;
}

.technologies-page .section-copy h2 {
  font-size: 54px;
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
}

.technologies-page .section-copy p:not(.content-kicker) {
  font-size: 15px;
}

.technologies-page .technology-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.technologies-page .technology-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  isolation: isolate;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7,18,32,.1) 0 24%, rgba(7,18,32,.8) 70%, rgba(7,18,32,.98) 100%),
    var(--visual) center / cover no-repeat,
    var(--navy);
  box-shadow: 0 20px 52px rgba(7,18,32,.18);
  transform: translateY(20px);
}

.technologies-page .technology-card::before {
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(182,7,18,.76) 0 48%, rgba(72,100,49,.78) 48% 68%, transparent 68% 100%) top left / 100% 5px no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.14), transparent 38%);
}

.technologies-page .technology-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.22) 47%, transparent 60% 100%),
    linear-gradient(90deg, rgba(255,255,255,.09) 0 1px, transparent 1px 42px);
  opacity: 0;
  transform: translateX(-120%) skewX(-12deg);
  transition: opacity .2s ease, transform .8s ease;
}

.technologies-page .technology-card:hover,
.technologies-page .technology-card:focus-within {
  transform: translateY(-9px);
  box-shadow: 0 30px 74px rgba(7,18,32,.28);
}

.technologies-page .technology-card:hover::after,
.technologies-page .technology-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%) skewX(-12deg);
}

.technologies-page .technology-card .card-num {
  width: 42px;
  height: 42px;
  margin-bottom: 72px;
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(7,18,32,.36);
}

.tech-chip {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(7,18,32,.46);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.technologies-page .technology-card h3 {
  color: #fff;
  font-size: 20px;
}

.technologies-page .technology-card p {
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.tech-lab {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 42px;
  align-items: center;
}

.tech-lab-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-lab-copy p:not(.content-kicker) {
  margin: 20px 0 0;
  color: #4a5365;
  font-size: 15px;
  line-height: 1.7;
}

.tech-lab-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7,18,32,.98), rgba(7,18,32,.82)),
    url("assets/hero-charte-collage.png") center / cover no-repeat;
  box-shadow: 0 28px 72px rgba(7,18,32,.22);
}

.tech-lab-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 56px),
    linear-gradient(180deg, rgba(255,255,255,.07) 0 1px, transparent 1px 56px);
  opacity: .5;
}

.tech-lab-panel::after {
  content: "";
  position: absolute;
  left: -15%;
  top: -40%;
  width: 46%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform: rotate(22deg);
  animation: techPanelSweep 5.8s ease-in-out infinite;
}

.lab-topline {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.lab-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}

.lab-topline span:first-child {
  background: var(--red);
}

.lab-topline span:nth-child(2) {
  background: var(--green);
}

.lab-topline strong {
  margin-left: auto;
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.8px;
}

.lab-radar {
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: 34px;
  width: 182px;
  height: 182px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.lab-radar::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.lab-radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  transform-origin: left center;
  animation: techRadar 3.8s linear infinite;
}

.lab-radar span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(182,7,18,.8);
  animation: techBlink 2s ease-in-out infinite;
}

.lab-radar span:nth-child(1) {
  left: 42px;
  top: 38px;
}

.lab-radar span:nth-child(2) {
  right: 38px;
  top: 70px;
  background: var(--green);
  animation-delay: -.6s;
}

.lab-radar span:nth-child(3) {
  left: 78px;
  bottom: 34px;
  animation-delay: -1.1s;
}

.lab-radar span:nth-child(4) {
  right: 58px;
  bottom: 54px;
  background: #fff;
  animation-delay: -1.6s;
}

.lab-feed {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 46px;
  width: min(330px, 44%);
  display: grid;
  gap: 14px;
}

.lab-feed span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red), var(--green) var(--feed), rgba(255,255,255,.16) var(--feed));
  transform-origin: left center;
  animation: techSignal 3.2s ease-in-out infinite;
}

.technologies-final {
  position: relative;
  overflow: hidden;
}

.technologies-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,32,.95), rgba(7,18,32,.48)),
    url("assets/hero-collage.png") center / cover no-repeat;
  opacity: .62;
  transform: scale(1.04);
  animation: techBackdrop 9s ease-in-out infinite alternate;
}

.technologies-final .quote-strip {
  position: relative;
  z-index: 1;
  grid-template-columns: 150px 1fr auto;
  min-height: 190px;
}

.technologies-final .quote-strip b {
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
}

.technologies-final .quote-strip p {
  max-width: 860px;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.technologies-page [data-reveal],
.technologies-page .section-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--card-delay, 0s);
}

.technologies-page [data-reveal].is-visible,
.technologies-page .section-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes techAura {
  from {
    opacity: .74;
    filter: saturate(1);
  }
  to {
    opacity: 1;
    filter: saturate(1.25);
  }
}

@keyframes techLightSweep {
  0%, 22% {
    opacity: 0;
    transform: rotate(-62deg) translateX(-120%);
  }
  42% {
    opacity: .86;
  }
  78% {
    opacity: .34;
    transform: rotate(-62deg) translateX(105%);
  }
  100% {
    opacity: 0;
    transform: rotate(-62deg) translateX(130%);
  }
}

@keyframes techFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes techOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes techConsoleIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes techSignal {
  0%, 100% {
    transform: scaleX(.5);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes techPanelSweep {
  0%, 28% {
    opacity: 0;
    transform: translateX(-20%) rotate(22deg);
  }
  48% {
    opacity: .82;
  }
  86% {
    opacity: 0;
    transform: translateX(340%) rotate(22deg);
  }
  100% {
    opacity: 0;
    transform: translateX(340%) rotate(22deg);
  }
}

@keyframes techRadar {
  to {
    transform: rotate(360deg);
  }
}

@keyframes techBlink {
  0%, 100% {
    opacity: .38;
    transform: scale(.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes techBackdrop {
  from {
    transform: scale(1.04) translateX(-1%);
  }
  to {
    transform: scale(1.08) translateX(1%);
  }
}

@media (min-width: 900px) {
  .technologies-page .sub-hero-copy,
  .technologies-page .content-section {
    width: min(1280px, calc(100vw - (var(--edge) * 2)));
  }
}

@media (max-width: 1180px) {
  .tech-orbit {
    right: 4%;
    width: 178px;
    height: 178px;
  }

  .tech-hero-console {
    width: 320px;
  }

  .technologies-page .technology-grid,
  .tech-signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .technologies-page .sub-hero {
    min-height: 660px;
  }

  .technologies-page .sub-hero::after {
    display: none;
  }

  .technologies-page .sub-hero-copy {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .technologies-page .sub-hero h1 {
    max-width: calc(100vw - 48px);
    font-size: 44px;
    line-height: .9;
  }

  .technologies-page .sub-lead {
    max-width: calc(100vw - 48px);
    font-size: 20px;
    line-height: 1.38;
  }

  .tech-orbit,
  .tech-hero-console {
    display: none;
  }

  .technologies-page .tech-overview,
  .technologies-page .section-copy,
  .tech-lab,
  .technologies-final .quote-strip {
    grid-template-columns: 1fr;
  }

  .technologies-page .tech-overview {
    padding: 30px;
  }

  .tech-signal-strip,
  .technologies-page .technology-grid {
    grid-template-columns: 1fr;
  }

  .technologies-page .section-copy h2,
  .tech-lab-copy h2 {
    font-size: 34px;
  }

  .technologies-page .technology-card {
    min-height: 300px;
  }

  .tech-lab-panel {
    min-height: 300px;
  }

  .lab-radar {
    left: 24px;
    bottom: 24px;
    width: 142px;
    height: 142px;
  }

  .lab-feed {
    right: 24px;
    bottom: 38px;
    width: 42%;
  }

  .technologies-final .quote-strip {
    gap: 18px;
  }

  .technologies-final .quote-strip p {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technologies-page *,
  .technologies-page *::before,
  .technologies-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Contact page form */
.contact-form-section {
  width: min(1180px, calc(100vw - (var(--edge, 47px) * 2)));
}

.contact-form-layout {
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  align-items: stretch;
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: clamp(30px, 3.4vw, 48px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7,18,32,.98), rgba(7,18,32,.88)),
    url("assets/stories/story-data-ai.png") center / cover no-repeat;
  box-shadow: 0 28px 72px rgba(7,18,32,.24);
  isolation: isolate;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 52px),
    linear-gradient(180deg, rgba(255,255,255,.07) 0 1px, transparent 1px 52px),
    linear-gradient(135deg, rgba(182,7,18,.24) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(72,100,49,.22) 0 15%, transparent 15% 100%);
  opacity: .78;
}

.contact-form-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--green));
}

.form-head {
  max-width: 620px;
  margin-bottom: 28px;
}

.form-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 48px);
  line-height: .98;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head p:not(.content-kicker) {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.65;
}

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

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field.wide {
  grid-column: 1 / -1;
}

.form-field span,
.form-consent span {
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  background: rgba(255,255,255,.075);
  outline: none;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: var(--ink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,.46);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(182,7,18,.22);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 20px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--red);
}

.contact-form-panel .button {
  width: min(100%, 250px);
  height: 54px;
  border-radius: 0;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.js-cb-form button:disabled,
.js-cb-form .button:disabled {
  cursor: wait;
  opacity: .68;
}

.contact-form-layout .office-globe-panel {
  grid-column: 1;
  grid-row: 2;
}

@media (max-width: 899px) {
  .contact-form-section {
    width: calc(100vw - 48px);
  }

  .contact-form-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel,
  .contact-form-layout .office-globe-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form-panel {
    padding: 26px;
  }

  .form-field.wide {
    grid-column: auto;
  }

  .contact-form-panel .button {
    width: 100%;
  }
}

/* Restore the original Carter & Blake serif display typography. */
.hero-copy h1,
.section-heading h2,
.about-hero h1,
.about-history h2,
.about-team h2,
.about-mission h2,
.sub-hero h1,
.section-copy h2,
.overview-panel h2,
.contact-panel h2,
.office-globe-panel h2,
.footer-cta h2,
.newsletter-copy h2,
.quote-strip p,
.war-hero-copy h1,
.war-section-copy h2,
.war-ai-head h2,
.war-final-cta h2,
.tech-lab-copy h2,
.form-head h2,
.expertises-page .section-copy h2,
.technologies-page .section-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy h1 {
  font-size: clamp(56px, 5.25vw, 92px);
  line-height: .94;
}

.hero::before,
.hero::after {
  z-index: 1;
}

.hero-light-lines {
  z-index: 2;
}

.hero-copy,
.hero .topbar,
.hero .mega-menu {
  z-index: 5;
}

.hero-copy h1 span,
.sub-hero h1 span,
.war-hero-copy h1 span {
  display: block;
}

.section-heading h2,
.about-history h2,
.about-team h2,
.about-mission h2,
.section-copy h2,
.overview-panel h2,
.tech-lab-copy h2,
.form-head h2 {
  line-height: 1.02;
}

.expertises-page .sub-hero h1,
.technologies-page .sub-hero h1 {
  font-family: var(--serif);
  font-size: clamp(68px, 7vw, 104px);
  font-weight: 400;
  line-height: .9;
  text-transform: none;
}

.expertises-final .quote-strip p,
.technologies-final .quote-strip p {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

@media (max-width: 899px) {
  .hero-copy h1 {
    font-size: 44px;
    line-height: .96;
  }

  .sub-hero h1,
  .expertises-page .sub-hero h1,
  .technologies-page .sub-hero h1 {
    font-size: 48px;
    line-height: .94;
  }

  .section-heading h2,
  .about-history h2,
  .about-team h2,
  .about-mission h2,
  .section-copy h2,
  .overview-panel h2,
  .tech-lab-copy h2,
  .form-head h2,
  .expertises-page .section-copy h2,
  .technologies-page .section-copy h2 {
    font-size: 36px;
  }
}

/* Shared shell: keep the same header and mega menu on every page. */
.site-header-shell {
  position: relative;
  z-index: 120;
}

.site-header-shell .topbar {
  position: relative;
  z-index: 130;
}

.site-header-shell .mega-menu {
  --mega-gold: #e0a044;
  --mega-ink: #111a2c;
  position: fixed;
  z-index: 9998 !important;
  left: 50%;
  right: auto;
  top: 112px;
  width: min(1120px, calc(100vw - 96px));
  height: 540px;
  min-height: 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr 74px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -10px);
  color: var(--mega-ink);
  background: rgba(250,249,247,.992);
  border: 1px solid rgba(14,24,40,.2);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-header-shell .mega-intro {
  grid-row: 1 / 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0 59%, rgba(255,255,255,.58) 70%, rgba(255,255,255,.06) 100%);
  border-right: 1px solid rgba(17,26,44,.13);
}

.site-header-shell .mega-intro h2,
.site-header-shell .mega-card h3,
.site-header-shell .mega-benefits h3 {
  color: var(--mega-ink);
}

.site-header-shell .mega-intro h2 span,
.site-header-shell .mega-card svg,
.site-header-shell .mega-integrated svg,
.site-header-shell .mega-card a {
  color: var(--mega-gold);
}

.site-header-shell .mega-intro i,
.site-header-shell .mega-card i {
  background: var(--mega-gold);
}

.site-header-shell .mega-card {
  justify-content: flex-start;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.955), rgba(255,255,255,.9)),
    var(--card-bg);
  background-position: center;
  background-size: cover;
  border-color: rgba(17,26,44,.13);
  box-shadow: none;
}

.site-header-shell .mega-card::before,
.site-header-shell .mega-card::after {
  display: none;
}

.site-header-shell .mega-benefits {
  grid-column: 2;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(17,26,44,.13);
}

.site-header-shell .mega-benefits article {
  border-right: 1px solid rgba(17,26,44,.13);
}

.site-header-shell .mega-benefits article:last-child {
  border-right: 0;
}

.site-header-shell .mega-benefits span {
  color: #fff;
  background: #071220;
  border-radius: 50%;
}

.site-header-shell .mega-benefits svg {
  color: #fff;
}

:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:hover) .site-header-shell .mega-menu,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:focus-visible) .site-header-shell .mega-menu,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:hover) .site-header-shell .mega-menu,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:focus-within) .site-header-shell .mega-menu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:hover) .nav-expertise,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:focus-visible) .nav-expertise,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:hover) .nav-expertise,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:focus-within) .nav-expertise {
  color: var(--gold);
}

:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:hover) .nav-expertise::before,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.nav-expertise:focus-visible) .nav-expertise::before,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:hover) .nav-expertise::before,
:is(.hero, .sub-hero, .about-hero, .war-hero):has(.mega-menu:focus-within) .nav-expertise::before {
  opacity: 1;
}

.site-header-shell .mega-intro-copy {
  padding: 24px 28px 0;
}

.site-header-shell .mega-intro h2 {
  font-size: 30px;
}

.site-header-shell .mega-intro i {
  width: 34px;
  margin: 16px 0;
}

.site-header-shell .mega-intro p {
  font-size: 12px;
  line-height: 1.45;
}

.site-header-shell .mega-divider {
  margin: 27px 0 20px;
}

.site-header-shell .mega-integrated {
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.site-header-shell .mega-integrated svg {
  width: 40px;
  height: 40px !important;
  flex-basis: 40px;
}

.site-header-shell .mega-integrated h3 {
  margin: 2px 0 8px;
  font-size: 13px;
}

.site-header-shell .mega-integrated p {
  font-size: 10.5px;
  line-height: 1.38;
}

.site-header-shell .mega-intro img {
  height: 24%;
}

.site-header-shell .mega-card {
  min-height: 0;
  padding: 16px 26px 12px;
}

.site-header-shell .mega-card svg {
  width: 30px;
  height: 30px !important;
  flex-basis: 30px;
}

.site-header-shell .mega-card h3 {
  margin-top: 11px;
  font-size: 15.5px;
  line-height: 1.1;
}

.site-header-shell .mega-card i {
  width: 27px;
  height: 1px;
  margin: 8px 0 9px;
}

.site-header-shell .mega-card p {
  margin-bottom: 8px;
  font-size: 10.5px;
  line-height: 1.22;
}

.site-header-shell .mega-card ul {
  margin-bottom: 7px;
  padding-left: 13px;
}

.site-header-shell .mega-card li {
  margin-bottom: 2px;
  font-size: 9.2px;
  line-height: 1.16;
}

.site-header-shell .mega-card a {
  gap: 9px;
  font-size: 10px;
}

.site-header-shell .mega-card a span {
  font-size: 17px;
}

.site-header-shell .mega-benefits article {
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 0 15px;
}

.site-header-shell .mega-benefits span {
  width: 34px;
  height: 34px;
}

.site-header-shell .mega-benefits svg {
  width: 20px;
  height: 20px !important;
}

.site-header-shell .mega-benefits h3 {
  margin-bottom: 3px;
  font-size: 9px;
}

.site-header-shell .mega-benefits p {
  font-size: 8.8px;
  line-height: 1.28;
}

@media (min-width: 900px) {
  .page .topbar {
    display: flex;
    align-items: flex-start;
    height: 86px;
    padding: 21px 28px 0 31px;
  }

  .page .nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    padding-top: 12px;
  }
}

@media (max-width: 1180px) {
  .site-header-shell .mega-menu {
    top: 100px;
    width: min(1030px, calc(100vw - 48px));
    height: 515px;
    grid-template-columns: 236px 1fr;
  }
}

@media (max-width: 899px) {
  .site-header-shell .mega-menu {
    display: none;
  }
}

/* Rich expertise page: Digital Campaigns */
.digital-hero {
  min-height: 560px;
  background:
    linear-gradient(100deg, rgba(1,16,34,.99) 0 41%, rgba(1,16,34,.76) 58%, rgba(1,16,34,.16) 100%),
    var(--sub-bg) 60% center / cover no-repeat,
    #011022;
}

.digital-hero::before {
  background:
    linear-gradient(135deg, rgba(188,22,33,.52) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(145deg, transparent 0 15%, rgba(18,93,55,.48) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 26% 44%, rgba(231,162,58,.18), transparent 28%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(90deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.digital-hero .sub-hero-copy {
  padding-bottom: 58px;
}

.digital-hero h1 {
  max-width: 650px;
  font-size: 50px;
}

.digital-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.digital-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(231,162,58,.85);
  color: #071425;
  background: linear-gradient(180deg, #f6c979, #dfa13e);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.digital-hero-actions a + a {
  color: #fff;
  background: rgba(1,16,34,.48);
  backdrop-filter: blur(8px);
}

.digital-hero-actions a:hover,
.digital-hero-actions a:focus-visible {
  transform: translateY(-2px);
}

.digital-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 126px));
  gap: 10px;
  max-width: 430px;
  margin-top: 28px;
}

.digital-hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,16,34,.45);
  backdrop-filter: blur(10px);
}

.digital-hero-metrics b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.digital-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.digital-intro {
  padding-bottom: 42px;
}

.digital-proof-strip,
.digital-model-lab,
.digital-case-grid,
.digital-deliverable-grid {
  display: grid;
}

.digital-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.digital-proof-strip article,
.digital-model-lab article,
.digital-case-grid article,
.digital-deliverable-grid span {
  border: 1px solid rgba(1,16,34,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,246,238,.86)),
    #fff;
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.digital-proof-strip article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  min-height: 116px;
  padding: 18px;
}

.digital-proof-strip span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.digital-proof-strip strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.digital-proof-strip p {
  margin: 0;
  color: #4a5365;
  font-size: 10px;
  line-height: 1.5;
}

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

.digital-service-grid .feature-card {
  min-height: 178px;
  padding: 18px;
}

.digital-service-grid .feature-card h3 {
  font-size: 13px;
}

.digital-service-grid .feature-card p {
  font-size: 10px;
}

.digital-model-lab {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.digital-model-lab article {
  position: relative;
  min-height: 218px;
  padding: 18px;
  overflow: hidden;
}

.digital-model-lab article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(1,16,34,.05), transparent 38%, rgba(231,162,58,.13));
  pointer-events: none;
}

.digital-model-lab b,
.digital-case-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(231,162,58,.38);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.digital-model-lab h3,
.digital-case-grid h3,
.digital-creative h2 {
  position: relative;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.digital-model-lab p,
.digital-case-grid p,
.digital-creative p {
  position: relative;
  margin: 0;
  color: #4a5365;
  font-size: 10.5px;
  line-height: 1.62;
}

.digital-simulation-band {
  background:
    linear-gradient(135deg, rgba(188,22,33,.14) 0 12%, transparent 12.2%),
    linear-gradient(150deg, transparent 0 68%, rgba(18,93,55,.2) 68.2% 79%, transparent 79.2%),
    radial-gradient(circle at 77% 38%, rgba(231,162,58,.12), transparent 24%),
    linear-gradient(90deg, #011022, #041b34);
}

.digital-simulation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.digital-simulation-layout figure,
.digital-creative figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.25);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.digital-simulation-layout img,
.digital-creative img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.digital-simulation-layout h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.digital-simulation-layout p:not(.content-kicker) {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.68;
}

.digital-simulation-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.digital-simulation-cards article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}

.digital-simulation-cards strong {
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.digital-simulation-cards span {
  color: rgba(255,255,255,.74);
  font-size: 9.5px;
  line-height: 1.4;
}

.digital-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.digital-case-grid article {
  min-height: 310px;
  padding: 22px;
}

.digital-case-grid span {
  width: auto;
  height: auto;
  padding: 8px 11px;
  border-radius: 99px;
  font-size: 7.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.digital-case-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.digital-case-grid li {
  position: relative;
  padding-left: 15px;
  color: #334155;
  font-size: 9.5px;
  line-height: 1.38;
}

.digital-case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.digital-creative {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
}

.digital-creative figure {
  border-color: rgba(1,16,34,.12);
  box-shadow: 0 22px 48px rgba(1,16,34,.13);
}

.digital-creative h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
}

.creative-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.creative-checklist span {
  padding: 12px 13px;
  border: 1px solid rgba(1,16,34,.08);
  color: var(--ink);
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(1,16,34,.06);
}

.digital-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.digital-deliverable-grid span {
  min-height: 92px;
  padding: 17px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.digital-next {
  background:
    linear-gradient(135deg, rgba(1,16,34,.98), rgba(2,28,54,.92)),
    #011022;
}

.digital-next h2,
.digital-next p {
  color: #fff;
}

.digital-next p {
  color: rgba(255,255,255,.76);
}

@media (max-width: 899px) {
  .digital-hero {
    min-height: 760px;
    background-position: 68% center;
  }

  .digital-hero h1 {
    font-size: 39px;
  }

  .digital-hero-actions a {
    width: 100%;
  }

  .digital-hero-metrics,
  .digital-proof-strip,
  .digital-service-grid,
  .digital-model-lab,
  .digital-simulation-layout,
  .digital-case-grid,
  .digital-creative,
  .digital-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .digital-hero-metrics {
    max-width: none;
  }

  .digital-service-grid .feature-card,
  .digital-model-lab article,
  .digital-case-grid article {
    min-height: 0;
  }

  .digital-simulation-layout img,
  .digital-creative img {
    height: 230px;
  }

  .digital-simulation-layout h2,
  .digital-creative h2 {
    font-size: 28px;
  }

  .creative-checklist {
    grid-template-columns: 1fr;
  }
}

/* Rich expertise page: Data & AI Intelligence */
.intelligence-hero {
  min-height: 560px;
  background:
    linear-gradient(100deg, rgba(1,16,34,.99) 0 41%, rgba(1,16,34,.78) 58%, rgba(1,16,34,.16) 100%),
    var(--sub-bg) 60% center / cover no-repeat,
    #011022;
}

.intelligence-hero::before {
  background:
    linear-gradient(135deg, rgba(188,22,33,.5) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(145deg, transparent 0 15%, rgba(18,93,55,.48) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 28% 42%, rgba(85,196,210,.15), transparent 26%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(90deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.intelligence-hero .sub-hero-copy {
  padding-bottom: 58px;
}

.intelligence-hero h1 {
  max-width: 650px;
  font-size: 50px;
}

.intelligence-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.intelligence-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(231,162,58,.85);
  color: #071425;
  background: linear-gradient(180deg, #f6c979, #dfa13e);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.intelligence-hero-actions a + a {
  color: #fff;
  background: rgba(1,16,34,.48);
  backdrop-filter: blur(8px);
}

.intelligence-hero-actions a:hover,
.intelligence-hero-actions a:focus-visible {
  transform: translateY(-2px);
}

.intelligence-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 138px));
  gap: 10px;
  max-width: 460px;
  margin-top: 28px;
}

.intelligence-hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,16,34,.45);
  backdrop-filter: blur(10px);
}

.intelligence-hero-metrics b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.intelligence-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.intelligence-intro {
  padding-bottom: 42px;
}

.intelligence-proof-strip,
.intelligence-model-lab,
.intelligence-case-grid,
.intelligence-deliverable-grid {
  display: grid;
}

.intelligence-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.intelligence-proof-strip article,
.intelligence-model-lab article,
.intelligence-case-grid article,
.intelligence-deliverable-grid span {
  border: 1px solid rgba(1,16,34,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,250,249,.9)),
    #fff;
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.intelligence-proof-strip article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  min-height: 116px;
  padding: 18px;
}

.intelligence-proof-strip span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.intelligence-proof-strip strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intelligence-proof-strip p {
  margin: 0;
  color: #4a5365;
  font-size: 10px;
  line-height: 1.5;
}

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

.intelligence-service-grid .feature-card {
  min-height: 178px;
  padding: 18px;
}

.intelligence-service-grid .feature-card h3 {
  font-size: 13px;
}

.intelligence-service-grid .feature-card p {
  font-size: 10px;
}

.intelligence-model-lab {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.intelligence-model-lab article {
  position: relative;
  min-height: 226px;
  padding: 18px;
  overflow: hidden;
}

.intelligence-model-lab article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(1,16,34,.05), transparent 38%, rgba(85,196,210,.12));
  pointer-events: none;
}

.intelligence-model-lab b,
.intelligence-case-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(231,162,58,.38);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.intelligence-model-lab h3,
.intelligence-case-grid h3,
.intelligence-agents h2 {
  position: relative;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.intelligence-model-lab p,
.intelligence-case-grid p,
.intelligence-agents p {
  position: relative;
  margin: 0;
  color: #4a5365;
  font-size: 10.5px;
  line-height: 1.62;
}

.intelligence-simulation-band {
  background:
    linear-gradient(135deg, rgba(188,22,33,.14) 0 12%, transparent 12.2%),
    linear-gradient(150deg, transparent 0 68%, rgba(18,93,55,.2) 68.2% 79%, transparent 79.2%),
    radial-gradient(circle at 74% 38%, rgba(85,196,210,.12), transparent 24%),
    linear-gradient(90deg, #011022, #041b34);
}

.intelligence-simulation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.intelligence-simulation-layout figure,
.intelligence-agents figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.25);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.intelligence-simulation-layout img,
.intelligence-agents img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.intelligence-simulation-layout h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.intelligence-simulation-layout p:not(.content-kicker) {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.68;
}

.intelligence-simulation-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.intelligence-simulation-cards article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}

.intelligence-simulation-cards strong {
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.intelligence-simulation-cards span {
  color: rgba(255,255,255,.74);
  font-size: 9.5px;
  line-height: 1.4;
}

.intelligence-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intelligence-case-grid article {
  min-height: 310px;
  padding: 22px;
}

.intelligence-case-grid span {
  width: auto;
  height: auto;
  padding: 8px 11px;
  border-radius: 99px;
  font-size: 7.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intelligence-case-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.intelligence-case-grid li {
  position: relative;
  padding-left: 15px;
  color: #334155;
  font-size: 9.5px;
  line-height: 1.38;
}

.intelligence-case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.intelligence-agents {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
}

.intelligence-agents figure {
  border-color: rgba(1,16,34,.12);
  box-shadow: 0 22px 48px rgba(1,16,34,.13);
}

.intelligence-agents h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
}

.agents-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.agents-checklist span {
  padding: 12px 13px;
  border: 1px solid rgba(1,16,34,.08);
  color: var(--ink);
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(1,16,34,.06);
}

.intelligence-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.intelligence-deliverable-grid span {
  min-height: 92px;
  padding: 17px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.intelligence-next {
  background:
    linear-gradient(135deg, rgba(1,16,34,.98), rgba(2,28,54,.92)),
    #011022;
}

.intelligence-next h2,
.intelligence-next p {
  color: #fff;
}

.intelligence-next p {
  color: rgba(255,255,255,.76);
}

@media (max-width: 899px) {
  .intelligence-hero {
    min-height: 760px;
    background-position: 68% center;
  }

  .intelligence-hero h1 {
    font-size: 39px;
  }

  .intelligence-hero-actions a {
    width: 100%;
  }

  .intelligence-hero-metrics,
  .intelligence-proof-strip,
  .intelligence-service-grid,
  .intelligence-model-lab,
  .intelligence-simulation-layout,
  .intelligence-case-grid,
  .intelligence-agents,
  .intelligence-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .intelligence-hero-metrics {
    max-width: none;
  }

  .intelligence-service-grid .feature-card,
  .intelligence-model-lab article,
  .intelligence-case-grid article {
    min-height: 0;
  }

  .intelligence-simulation-layout img,
  .intelligence-agents img {
    height: 230px;
  }

  .intelligence-simulation-layout h2,
  .intelligence-agents h2 {
    font-size: 28px;
  }

  .agents-checklist {
    grid-template-columns: 1fr;
  }
}

/* Rich expertise page: Political Strategy */
.strategy-hero {
  min-height: 560px;
  background:
    linear-gradient(100deg, rgba(1,16,34,.99) 0 41%, rgba(1,16,34,.78) 58%, rgba(1,16,34,.16) 100%),
    var(--sub-bg) 60% center / cover no-repeat,
    #011022;
}

.strategy-hero::before {
  background:
    linear-gradient(135deg, rgba(188,22,33,.5) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(145deg, transparent 0 15%, rgba(18,93,55,.46) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 27% 43%, rgba(231,162,58,.18), transparent 27%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(90deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.strategy-hero .sub-hero-copy {
  padding-bottom: 58px;
}

.strategy-hero h1 {
  max-width: 680px;
  font-size: 50px;
}

.strategy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.strategy-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(231,162,58,.85);
  color: #071425;
  background: linear-gradient(180deg, #f6c979, #dfa13e);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.strategy-hero-actions a + a {
  color: #fff;
  background: rgba(1,16,34,.48);
  backdrop-filter: blur(8px);
}

.strategy-hero-actions a:hover,
.strategy-hero-actions a:focus-visible {
  transform: translateY(-2px);
}

.strategy-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 132px));
  gap: 10px;
  max-width: 440px;
  margin-top: 28px;
}

.strategy-hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,16,34,.45);
  backdrop-filter: blur(10px);
}

.strategy-hero-metrics b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.strategy-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.strategy-intro {
  padding-bottom: 42px;
}

.strategy-proof-strip,
.strategy-model-lab,
.strategy-case-grid,
.strategy-deliverable-grid {
  display: grid;
}

.strategy-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.strategy-proof-strip article,
.strategy-model-lab article,
.strategy-case-grid article,
.strategy-deliverable-grid span {
  border: 1px solid rgba(1,16,34,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,246,238,.86)),
    #fff;
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.strategy-proof-strip article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  min-height: 116px;
  padding: 18px;
}

.strategy-proof-strip span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.strategy-proof-strip strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategy-proof-strip p {
  margin: 0;
  color: #4a5365;
  font-size: 10px;
  line-height: 1.5;
}

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

.strategy-service-grid .feature-card {
  min-height: 190px;
  padding: 18px;
}

.strategy-service-grid .feature-card h3 {
  font-size: 13px;
}

.strategy-service-grid .feature-card p {
  font-size: 10px;
}

.strategy-model-lab {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.strategy-model-lab article {
  position: relative;
  min-height: 226px;
  padding: 18px;
  overflow: hidden;
}

.strategy-model-lab article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(1,16,34,.05), transparent 38%, rgba(231,162,58,.14));
  pointer-events: none;
}

.strategy-model-lab b,
.strategy-case-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(231,162,58,.38);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.strategy-model-lab h3,
.strategy-case-grid h3,
.strategy-field h2 {
  position: relative;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.strategy-model-lab p,
.strategy-case-grid p,
.strategy-field p {
  position: relative;
  margin: 0;
  color: #4a5365;
  font-size: 10.5px;
  line-height: 1.62;
}

.strategy-simulation-band {
  background:
    linear-gradient(135deg, rgba(188,22,33,.14) 0 12%, transparent 12.2%),
    linear-gradient(150deg, transparent 0 68%, rgba(18,93,55,.2) 68.2% 79%, transparent 79.2%),
    radial-gradient(circle at 76% 38%, rgba(231,162,58,.12), transparent 24%),
    linear-gradient(90deg, #011022, #041b34);
}

.strategy-simulation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.strategy-simulation-layout figure,
.strategy-field figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.25);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.strategy-simulation-layout img,
.strategy-field img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.strategy-simulation-layout h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.strategy-simulation-layout p:not(.content-kicker) {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.68;
}

.strategy-simulation-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.strategy-simulation-cards article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}

.strategy-simulation-cards strong {
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.strategy-simulation-cards span {
  color: rgba(255,255,255,.74);
  font-size: 9.5px;
  line-height: 1.4;
}

.strategy-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strategy-case-grid article {
  min-height: 318px;
  padding: 22px;
}

.strategy-case-grid span {
  width: auto;
  height: auto;
  padding: 8px 11px;
  border-radius: 99px;
  font-size: 7.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.strategy-case-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-case-grid li {
  position: relative;
  padding-left: 15px;
  color: #334155;
  font-size: 9.5px;
  line-height: 1.38;
}

.strategy-case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.strategy-field {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
}

.strategy-field figure {
  border-color: rgba(1,16,34,.12);
  box-shadow: 0 22px 48px rgba(1,16,34,.13);
}

.strategy-field h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
}

.strategy-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.strategy-checklist span {
  padding: 12px 13px;
  border: 1px solid rgba(1,16,34,.08);
  color: var(--ink);
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(1,16,34,.06);
}

.strategy-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strategy-deliverable-grid span {
  min-height: 92px;
  padding: 17px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.strategy-next {
  background:
    linear-gradient(135deg, rgba(1,16,34,.98), rgba(2,28,54,.92)),
    #011022;
}

.strategy-next h2,
.strategy-next p {
  color: #fff;
}

.strategy-next p {
  color: rgba(255,255,255,.76);
}

@media (max-width: 899px) {
  .strategy-hero {
    min-height: 760px;
    background-position: 68% center;
  }

  .strategy-hero h1 {
    font-size: 39px;
  }

  .strategy-hero-actions a {
    width: 100%;
  }

  .strategy-hero-metrics,
  .strategy-proof-strip,
  .strategy-service-grid,
  .strategy-model-lab,
  .strategy-simulation-layout,
  .strategy-case-grid,
  .strategy-field,
  .strategy-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .strategy-hero-metrics {
    max-width: none;
  }

  .strategy-service-grid .feature-card,
  .strategy-model-lab article,
  .strategy-case-grid article {
    min-height: 0;
  }

  .strategy-simulation-layout img,
  .strategy-field img {
    height: 230px;
  }

  .strategy-simulation-layout h2,
  .strategy-field h2 {
    font-size: 28px;
  }

  .strategy-checklist {
    grid-template-columns: 1fr;
  }
}

/* Rich expertise page: Political Influence */
.influence-hero {
  min-height: 560px;
  background:
    linear-gradient(100deg, rgba(1,16,34,.99) 0 41%, rgba(1,16,34,.78) 58%, rgba(1,16,34,.16) 100%),
    var(--sub-bg) 60% center / cover no-repeat,
    #011022;
}

.influence-hero::before {
  background:
    linear-gradient(135deg, rgba(188,22,33,.5) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(145deg, transparent 0 15%, rgba(18,93,55,.48) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 28% 42%, rgba(231,162,58,.16), transparent 26%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(90deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.influence-hero .sub-hero-copy {
  padding-bottom: 58px;
}

.influence-hero h1 {
  max-width: 690px;
  font-size: 50px;
}

.influence-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.influence-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(231,162,58,.85);
  color: #071425;
  background: linear-gradient(180deg, #f6c979, #dfa13e);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.influence-hero-actions a + a {
  color: #fff;
  background: rgba(1,16,34,.48);
  backdrop-filter: blur(8px);
}

.influence-hero-actions a:hover,
.influence-hero-actions a:focus-visible {
  transform: translateY(-2px);
}

.influence-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 142px));
  gap: 10px;
  max-width: 470px;
  margin-top: 28px;
}

.influence-hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(1,16,34,.45);
  backdrop-filter: blur(10px);
}

.influence-hero-metrics b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.influence-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.influence-intro {
  padding-bottom: 42px;
}

.influence-proof-strip,
.influence-model-lab,
.influence-case-grid,
.influence-deliverable-grid {
  display: grid;
}

.influence-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.influence-proof-strip article,
.influence-model-lab article,
.influence-case-grid article,
.influence-deliverable-grid span {
  border: 1px solid rgba(1,16,34,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,249,.9)),
    #fff;
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.influence-proof-strip article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
  min-height: 116px;
  padding: 18px;
}

.influence-proof-strip span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.influence-proof-strip strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.influence-proof-strip p {
  margin: 0;
  color: #4a5365;
  font-size: 10px;
  line-height: 1.5;
}

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

.influence-service-grid .feature-card {
  min-height: 184px;
  padding: 18px;
}

.influence-service-grid .feature-card h3 {
  font-size: 13px;
}

.influence-service-grid .feature-card p {
  font-size: 10px;
}

.influence-model-lab {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.influence-model-lab article {
  position: relative;
  min-height: 232px;
  padding: 18px;
  overflow: hidden;
}

.influence-model-lab article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(1,16,34,.05), transparent 38%, rgba(18,93,55,.12));
  pointer-events: none;
}

.influence-model-lab b,
.influence-case-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(231,162,58,.38);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.influence-model-lab h3,
.influence-case-grid h3,
.influence-media-room h2 {
  position: relative;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.influence-model-lab p,
.influence-case-grid p,
.influence-media-room p {
  position: relative;
  margin: 0;
  color: #4a5365;
  font-size: 10.5px;
  line-height: 1.62;
}

.influence-simulation-band {
  background:
    linear-gradient(135deg, rgba(188,22,33,.14) 0 12%, transparent 12.2%),
    linear-gradient(150deg, transparent 0 68%, rgba(18,93,55,.2) 68.2% 79%, transparent 79.2%),
    radial-gradient(circle at 75% 38%, rgba(231,162,58,.12), transparent 24%),
    linear-gradient(90deg, #011022, #041b34);
}

.influence-simulation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.influence-simulation-layout figure,
.influence-media-room figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.25);
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.influence-simulation-layout img,
.influence-media-room img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.influence-simulation-layout h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.influence-simulation-layout p:not(.content-kicker) {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.68;
}

.influence-simulation-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.influence-simulation-cards article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
}

.influence-simulation-cards strong {
  color: var(--gold-2);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.influence-simulation-cards span {
  color: rgba(255,255,255,.74);
  font-size: 9.5px;
  line-height: 1.4;
}

.influence-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.influence-case-grid article {
  min-height: 326px;
  padding: 22px;
}

.influence-case-grid span {
  width: auto;
  height: auto;
  padding: 8px 11px;
  border-radius: 99px;
  font-size: 7.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.influence-case-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.influence-case-grid li {
  position: relative;
  padding-left: 15px;
  color: #334155;
  font-size: 9.5px;
  line-height: 1.38;
}

.influence-case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.influence-media-room {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding-top: 18px;
}

.influence-media-room figure {
  border-color: rgba(1,16,34,.12);
  box-shadow: 0 22px 48px rgba(1,16,34,.13);
}

.influence-media-room h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  text-transform: none;
}

.influence-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.influence-checklist span {
  padding: 12px 13px;
  border: 1px solid rgba(1,16,34,.08);
  color: var(--ink);
  background: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(1,16,34,.06);
}

.influence-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.influence-deliverable-grid span {
  min-height: 92px;
  padding: 17px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.influence-next {
  background:
    linear-gradient(135deg, rgba(1,16,34,.98), rgba(2,28,54,.92)),
    #011022;
}

.influence-next h2,
.influence-next p {
  color: #fff;
}

.influence-next p {
  color: rgba(255,255,255,.76);
}

@media (max-width: 899px) {
  .influence-hero {
    min-height: 760px;
    background-position: 68% center;
  }

  .influence-hero h1 {
    font-size: 39px;
  }

  .influence-hero-actions a {
    width: 100%;
  }

  .influence-hero-metrics,
  .influence-proof-strip,
  .influence-service-grid,
  .influence-model-lab,
  .influence-simulation-layout,
  .influence-case-grid,
  .influence-media-room,
  .influence-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .influence-hero-metrics {
    max-width: none;
  }

  .influence-service-grid .feature-card,
  .influence-model-lab article,
  .influence-case-grid article {
    min-height: 0;
  }

  .influence-simulation-layout img,
  .influence-media-room img {
    height: 230px;
  }

  .influence-simulation-layout h2,
  .influence-media-room h2 {
    font-size: 28px;
  }

  .influence-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  .references-band {
    padding: 28px 0 32px;
  }

  .references-shell {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }

  .references-shell > p {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .reference-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .reference-logo {
    min-height: 78px;
    padding: 12px;
  }

  .reference-logo:last-child {
    grid-column: 1 / -1;
  }

  .reference-logo img {
    max-height: 48px;
  }
}

/* War Room page refresh */
.war-page {
  color: #fff;
  background:
    radial-gradient(circle at 14% 24%, rgba(231,162,58,.08), transparent 28%),
    linear-gradient(180deg, #02101d 0%, #011022 48%, #03182b 100%);
}

.war-hero {
  isolation: isolate;
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(1,16,34,.99) 0 34%, rgba(1,16,34,.78) 52%, rgba(1,16,34,.18) 100%),
    linear-gradient(180deg, rgba(1,16,34,.84), rgba(1,16,34,.12) 45%, rgba(1,16,34,.9)),
    url("assets/war-room/hero-war-room-command.jpg") 62% center / cover no-repeat,
    #011022;
}

.war-hero::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(1,16,34,.94) 0, rgba(1,16,34,.18) 36%, rgba(1,16,34,.88) 100%),
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(255,255,255,.035) 77px 78px);
}

.war-hero::after {
  display: none;
}

.war-hero .site-header-shell {
  position: relative;
  z-index: 5;
}

.war-hero-grid {
  position: relative;
  z-index: 2;
  align-items: end;
  width: var(--content-wide);
  padding: clamp(74px, 7vw, 112px) 0 62px;
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 110px);
}

.war-hero-copy {
  max-width: 560px;
}

.war-hero-copy h1 {
  max-width: 560px;
  font-size: clamp(52px, 4.65vw, 78px);
  line-height: .96;
}

.war-hero-copy h1 span,
.war-section-copy h2 span {
  display: inline;
  color: #f4a43a;
}

.war-kicker {
  color: #f4a43a;
  letter-spacing: 2px;
}

.war-hero-copy i {
  width: 44px;
  height: 2px;
  background: #f4a43a;
}

.war-hero-copy p:not(.war-kicker),
.war-section-copy > p,
.war-ai-head > p,
.war-final-cta p {
  max-width: 520px;
  color: rgba(255,255,255,.86);
}

.war-actions {
  gap: 14px;
  margin-top: 28px;
}

.war-command {
  min-height: 365px;
  align-content: end;
}

.command-wall {
  min-height: 292px;
  border-color: rgba(255,255,255,.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(5,24,43,.78), rgba(3,16,31,.86)),
    radial-gradient(circle at 50% 26%, rgba(98,135,255,.22), transparent 44%);
  box-shadow:
    0 24px 70px rgba(0,0,0,.34),
    inset 0 0 0 1px rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
}

.command-wall > strong {
  font-size: 22px;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.wall-score b {
  color: #6bd49d;
}

.command-desk span {
  height: 54px;
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(98,135,255,.2), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.war-capabilities {
  width: var(--content-wide);
  padding: 32px 0 36px;
  border-top-color: rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.12);
}

.war-capabilities article {
  padding: 0 18px;
}

.war-capabilities span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #f4a43a;
}

.war-capabilities span svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.1;
}

.war-capabilities h3 {
  font-size: 10px;
  letter-spacing: .7px;
}

.war-capabilities p {
  max-width: 150px;
  margin: 0 auto;
  font-size: 9.5px;
}

.war-dashboard-section {
  grid-template-columns: minmax(270px, 340px) minmax(0, 1fr);
  gap: clamp(46px, 6vw, 82px);
  width: var(--content-wide);
  padding: 58px 0 64px;
}

.war-section-copy h2 {
  font-size: clamp(38px, 3.4vw, 56px);
}

.war-section-copy li {
  font-size: 11px;
}

.war-section-copy li::before {
  color: #f4a43a;
}

.war-dashboard {
  min-height: 430px;
  padding: 18px;
  border-color: rgba(255,255,255,.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 76% 0%, rgba(98,135,255,.11), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    #03182b;
  box-shadow:
    0 28px 80px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

.dashboard-top {
  margin-bottom: 4px;
  letter-spacing: .8px;
}

.dashboard-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-tools span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  color: rgba(255,255,255,.7);
  background: rgba(1,16,34,.45);
}

.dash-card {
  min-height: 136px;
  border-color: rgba(255,255,255,.12);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012)),
    rgba(1,16,34,.58);
}

.dash-card h3 {
  color: rgba(255,255,255,.78);
  font-size: 7px;
  letter-spacing: .7px;
}

.donut,
.gauge {
  background: conic-gradient(#6bd49d 0 43%, #7c8dff 43% 73%, rgba(255,255,255,.12) 73% 100%);
}

.gauge {
  background: conic-gradient(#6bd49d 0 68%, rgba(255,255,255,.12) 68% 100%);
}

.mini-lines {
  background:
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,.055) 19px 20px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.035) 45px 46px);
}

.mini-lines span,
.wall-line {
  background: linear-gradient(90deg, #6bd49d, #6388ff, #f4a43a);
}

.morocco-map {
  background: linear-gradient(150deg, #65cba0, #e5b75c 68%, #be6c2c);
}

.war-ai-section {
  width: var(--content-wide);
  padding: 60px 0 66px;
}

.war-ai-head h2 {
  font-size: clamp(36px, 3.2vw, 50px);
}

.war-ai-grid {
  gap: 18px;
}

.war-ai-grid article {
  min-height: 270px;
  padding: 18px;
  border-color: rgba(255,255,255,.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(2,21,38,.72);
}

.network-visual,
.recommendation-card {
  position: relative;
  height: 126px;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(1,16,34,.56);
}

.network-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    radial-gradient(circle at 22% 58%, rgba(231,162,58,.95) 0 3px, transparent 4px),
    radial-gradient(circle at 40% 34%, rgba(98,135,255,.95) 0 3px, transparent 4px),
    radial-gradient(circle at 62% 52%, rgba(231,86,86,.9) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.72) 0 2px, transparent 3px),
    linear-gradient(30deg, transparent 0 48%, rgba(231,162,58,.36) 49% 50%, transparent 51%),
    linear-gradient(130deg, transparent 0 48%, rgba(98,135,255,.28) 49% 50%, transparent 51%);
  opacity: .9;
}

.war-ai-grid h3 {
  color: rgba(255,255,255,.92);
  font-size: 10.5px;
  letter-spacing: .7px;
}

.war-ai-grid p {
  color: rgba(255,255,255,.76);
  font-size: 11px;
}

.recommendation-card {
  border-color: rgba(255,255,255,.13);
  background:
    radial-gradient(circle at 92% 88%, rgba(98,135,255,.2), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #051a30;
}

.recommendation-card b,
.recommendation-card span {
  color: #f4a43a;
}

.war-final-cta {
  grid-template-columns: minmax(0, 1fr) 285px;
  padding: 46px max(28px, calc((100vw - var(--content-wide)) / 2));
  background:
    linear-gradient(90deg, rgba(1,16,34,.96), rgba(1,16,34,.7) 48%, rgba(1,16,34,.22)),
    url("assets/about/about-history-bg.png") center bottom / cover no-repeat;
}

.war-final-cta h2 {
  font-size: clamp(32px, 2.6vw, 44px);
}

.war-final-cta .button {
  min-height: 48px;
}

@media (max-width: 899px) {
  .war-hero {
    min-height: auto;
    background-position: 66% center;
  }

  .war-hero-grid,
  .war-capabilities,
  .war-dashboard-section,
  .war-ai-section {
    width: min(100%, calc(100vw - 44px));
  }

  .war-hero-grid,
  .war-dashboard-section,
  .war-ai-grid,
  .war-final-cta {
    grid-template-columns: 1fr;
  }

  .war-hero-grid {
    padding: 54px 0 42px;
  }

  .war-hero-copy h1 {
    font-size: 42px;
  }

  .war-actions {
    flex-wrap: wrap;
  }

  .war-actions .button {
    width: 100%;
  }

  .war-command {
    min-height: 300px;
  }

  .war-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .war-capabilities article:nth-child(2n) {
    border-right: 0;
  }

  .war-capabilities article {
    padding: 0 12px;
  }

  .war-dashboard-section {
    gap: 32px;
    padding: 42px 0;
  }

  .war-dashboard {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dashboard-top {
    display: grid;
    gap: 10px;
  }

  .intention {
    grid-template-columns: 90px 1fr;
  }

  .war-ai-section {
    padding: 44px 0;
  }

  .war-ai-grid article {
    min-height: 0;
  }

  .war-final-cta {
    padding: 36px 22px;
  }

  .war-contact-link {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 899px) {
  .footer-cta,
  .footer-main {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 20px;
  }

  .footer-cta h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .footer-cta p {
    font-size: 11px;
    line-height: 1.45;
  }

  .footer-cta a {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0 26px;
  }

  .footer-main section,
  .contact-lines,
  .socials {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .footer-logo strong {
    font-size: 20px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-brand p,
  .footer-main section p,
  .footer-main a,
  .footer-brand small {
    font-size: 10.5px;
  }

  .contact-lines {
    flex-wrap: wrap;
    gap: 8px 12px;
    white-space: normal;
  }

  .socials {
    justify-content: flex-start;
  }
}

/* Final responsive guardrails for the refreshed War Room page. */
@media (min-width: 900px) {
  .war-page .topbar {
    gap: clamp(18px, 2.2vw, 36px);
  }

  .war-page .brand {
    width: clamp(300px, 23vw, 340px);
    min-width: clamp(300px, 23vw, 340px);
  }

  .war-page .brand-copy strong {
    font-size: clamp(23px, 2vw, 28px);
  }

  .war-page .brand-copy small {
    font-size: clamp(8px, .72vw, 10px);
  }

  .war-page .nav {
    gap: clamp(12px, 1vw, 20px);
    font-size: clamp(9px, .72vw, 11px);
  }

  .war-page .nav-cta {
    width: clamp(134px, 9vw, 154px);
    font-size: clamp(9px, .72vw, 11px);
  }
}

@media (max-width: 899px) {
  .war-page .brand-copy strong {
    font-size: 19px;
    white-space: normal;
  }

  .war-page .brand-copy small {
    font-size: 6px;
    white-space: normal;
  }

  .war-page .brand-copy small::before,
  .war-page .brand-copy small::after {
    display: none;
  }

  .war-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .war-hero-copy h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  .war-hero-copy h1 span {
    display: block;
  }

  .war-hero-copy p:not(.war-kicker) {
    max-width: 100%;
    font-size: 11px;
  }

  .war-command,
  .command-wall {
    width: 100%;
    min-width: 0;
  }

  .command-wall {
    min-height: 272px;
    padding: 18px;
  }

  .command-wall > strong {
    max-width: calc(100% - 36px);
    font-size: 18px;
    white-space: nowrap;
  }

  .wall-map {
    left: 34%;
    width: 130px;
    height: 88px;
  }

  .wall-line.line-one {
    width: 112px;
  }

  .wall-line.line-two {
    right: 18px;
    width: 98px;
  }

  .wall-bars {
    right: 18px;
  }
}

/* Global hero title guardrails: keep page-opening titles compact and balanced. */
.hero-copy h1,
.about-hero h1,
.sub-hero h1,
.expertises-page .sub-hero h1,
.technologies-page .sub-hero h1,
.war-hero-copy h1 {
  max-width: min(100%, 980px);
  line-height: .96;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .hero-copy h1 {
    font-size: clamp(42px, 3.8vw, 58px);
  }

  .about-hero h1,
  .sub-hero h1,
  .expertises-page .sub-hero h1,
  .technologies-page .sub-hero h1 {
    font-size: clamp(44px, 4.1vw, 56px);
  }

  .war-hero-grid {
    grid-template-columns: minmax(560px, 640px) minmax(0, 1fr);
    gap: clamp(34px, 4.8vw, 76px);
    align-items: center;
  }

  .war-hero-copy {
    max-width: 640px;
  }

  .war-hero-copy h1 {
    max-width: 640px;
    font-size: clamp(46px, 4vw, 58px);
  }
}

@media (max-width: 899px) {
  .hero-copy h1,
  .about-hero h1,
  .sub-hero h1,
  .expertises-page .sub-hero h1,
  .technologies-page .sub-hero h1,
  .war-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(24px, 6.6vw, 38px);
    line-height: 1;
  }

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

.war-hero-copy p:not(.war-kicker) {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

@media (max-width: 899px) {
  .war-hero-copy p:not(.war-kicker) {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Global section title downscale. */
.section-heading h2,
.about-history h2,
.about-team h2,
.about-mission h2,
.section-copy h2,
.overview-panel h2,
.contact-panel h2,
.office-globe-panel h2,
.tech-lab-copy h2,
.form-head h2,
.war-section-copy h2,
.war-ai-head h2,
.war-final-cta h2,
.expertises-page .section-copy h2,
.technologies-page .section-copy h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  text-wrap: balance;
}

@media (max-width: 899px) {
  .section-heading h2,
  .about-history h2,
  .about-team h2,
  .about-mission h2,
  .section-copy h2,
  .overview-panel h2,
  .contact-panel h2,
  .office-globe-panel h2,
  .tech-lab-copy h2,
  .form-head h2,
  .war-section-copy h2,
  .war-ai-head h2,
  .war-final-cta h2,
  .expertises-page .section-copy h2,
  .technologies-page .section-copy h2 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.1;
  }
}

/* Expertises value cards redesign. */
.expertises-page .expertises-values {
  padding-top: clamp(34px, 4vw, 58px);
}

.expertises-page .expertises-values .section-copy {
  margin-bottom: 22px;
}

.expertises-page .value-grid {
  gap: 14px;
}

.expertises-page .value-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  align-content: start;
  min-height: 150px;
  padding: 22px 24px 22px 28px;
  border-color: rgba(7,18,32,.1);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.93)),
    linear-gradient(90deg, rgba(205,35,43,.06), transparent 44%, rgba(72,100,49,.06));
  box-shadow: 0 16px 34px rgba(1,16,34,.08);
  transform: none;
}

.expertises-page .value-card::before {
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
  opacity: .92;
}

.expertises-page .value-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  top: auto;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--green));
  opacity: .28;
  animation: none;
}

.expertises-page .value-card .card-num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--red);
  border-color: rgba(205,35,43,.36);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(1,16,34,.08);
}

.expertises-page .value-card h3 {
  grid-column: 2;
  margin: 2px 0 8px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.12;
}

.expertises-page .value-card p {
  grid-column: 2;
  max-width: 430px;
  color: #424b5e;
  font-size: 12px;
  line-height: 1.58;
}

.expertises-page .value-card:hover {
  border-color: rgba(205,35,43,.32);
  box-shadow: 0 22px 42px rgba(1,16,34,.12);
  transform: translateY(-3px);
}

@media (max-width: 899px) {
  .expertises-page .value-card {
    min-height: 0;
    padding: 20px 20px 20px 24px;
  }
}

/* Strategy page modernization. */
.strategy-hero {
  min-height: clamp(560px, 46vw, 700px);
  background:
    linear-gradient(100deg, rgba(1,16,34,.98) 0 43%, rgba(1,16,34,.72) 58%, rgba(1,16,34,.24) 100%),
    radial-gradient(circle at 74% 34%, rgba(205,35,43,.28), transparent 26%),
    var(--sub-bg) 64% center / cover no-repeat,
    #011022;
}

.strategy-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(205,35,43,.48) 13.2% 15.8%, transparent 16%),
    linear-gradient(90deg, transparent 0 18%, rgba(72,100,49,.5) 18.2% 20%, transparent 20.2%),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255,255,255,.04) 89px 90px),
    linear-gradient(180deg, rgba(1,16,34,.96), rgba(1,16,34,.44) 48%, rgba(1,16,34,.86));
}

.strategy-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto;
  top: auto;
  left: auto;
  right: max(36px, calc((100vw - var(--content-wide)) / 2));
  bottom: clamp(46px, 5vw, 86px);
  width: clamp(330px, 30vw, 500px);
  height: clamp(190px, 18vw, 280px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255,255,255,.14) 6.4% 7%, transparent 7.4%),
    linear-gradient(90deg, transparent 0 30%, rgba(72,100,49,.8) 30% 31.5%, transparent 31.8%),
    linear-gradient(90deg, transparent 0 58%, rgba(205,35,43,.72) 58% 59.5%, transparent 59.8%),
    radial-gradient(circle at 22% 28%, rgba(231,162,58,.7) 0 4px, transparent 5px),
    radial-gradient(circle at 39% 54%, rgba(72,100,49,.8) 0 4px, transparent 5px),
    radial-gradient(circle at 67% 36%, rgba(205,35,43,.76) 0 4px, transparent 5px),
    linear-gradient(18deg, transparent 0 48%, rgba(255,255,255,.2) 48.3% 49%, transparent 49.3%),
    linear-gradient(154deg, transparent 0 48%, rgba(231,162,58,.28) 48.3% 49%, transparent 49.3%),
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    rgba(1,16,34,.58);
  box-shadow:
    0 28px 80px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  transform: none;
}

.strategy-hero .sub-hero-copy {
  z-index: 2;
  padding-bottom: clamp(70px, 7vw, 118px);
}

.strategy-hero h1 {
  max-width: 760px;
}

.strategy-hero .sub-lead {
  max-width: 650px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.65;
}

.strategy-hero-actions a {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 3px;
  border-color: rgba(205,35,43,.92);
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

.strategy-hero-actions a + a {
  border-color: rgba(255,255,255,.42);
  background: rgba(1,16,34,.58);
}

.strategy-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 150px));
  max-width: 500px;
}

.strategy-hero-metrics span {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    rgba(1,16,34,.55);
}

.strategy-hero-metrics span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.strategy-hero-metrics b {
  color: #fff;
  font-family: var(--sans);
  font-weight: 900;
}

.strategy-intro {
  position: relative;
  padding-top: clamp(50px, 5vw, 78px);
}

.strategy-proof-strip {
  gap: 12px;
}

.strategy-proof-strip article {
  min-height: 112px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, #071425, #0b2038),
    #011022;
  box-shadow: 0 18px 38px rgba(1,16,34,.12);
}

.strategy-proof-strip span {
  color: var(--red-2);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
}

.strategy-proof-strip strong {
  color: #fff;
}

.strategy-proof-strip p {
  color: rgba(255,255,255,.72);
}

.strategy-service-grid {
  gap: 14px;
}

.strategy-service-grid .feature-card {
  min-height: 172px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(247,245,242,.9)),
    linear-gradient(90deg, rgba(205,35,43,.08), transparent 48%, rgba(72,100,49,.08));
  box-shadow: 0 15px 32px rgba(1,16,34,.08);
}

.strategy-service-grid .feature-card::before {
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
  opacity: .9;
}

.strategy-service-grid .feature-card .card-num {
  color: var(--red);
  border-color: rgba(205,35,43,.28);
}

.strategy-service-grid .feature-card h3 {
  font-size: 12px;
  letter-spacing: .2px;
}

.strategy-models {
  width: 100%;
  margin-top: 12px;
  padding: clamp(58px, 6vw, 86px) max(28px, calc((100vw - var(--content-wide)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(205,35,43,.2), transparent 28%),
    radial-gradient(circle at 20% 72%, rgba(72,100,49,.2), transparent 30%),
    linear-gradient(135deg, #011022, #071b30);
}

.strategy-models .section-copy {
  width: min(100%, var(--content-wide));
}

.strategy-models .section-copy h2,
.strategy-models .section-copy p:not(.content-kicker) {
  color: #fff;
}

.strategy-models .section-copy p:not(.content-kicker) {
  color: rgba(255,255,255,.72);
}

.strategy-model-lab {
  position: relative;
  gap: 10px;
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255,255,255,.035) 89px 90px),
    rgba(255,255,255,.045);
}

.strategy-model-lab::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.28), var(--green));
  opacity: .7;
}

.strategy-model-lab article {
  min-height: 210px;
  border-radius: 10px;
  border-color: rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    rgba(1,16,34,.7);
  box-shadow: none;
}

.strategy-model-lab article::before {
  background: radial-gradient(circle at 80% 15%, rgba(205,35,43,.18), transparent 38%);
}

.strategy-model-lab b {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(180deg, var(--red), var(--green));
}

.strategy-model-lab h3,
.strategy-model-lab p {
  color: #fff;
}

.strategy-model-lab p {
  color: rgba(255,255,255,.72);
}

.strategy-simulation-band {
  background:
    linear-gradient(90deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 76% 38%, rgba(205,35,43,.2), transparent 26%),
    #011022;
}

.strategy-simulation-layout figure,
.strategy-field figure {
  border-radius: 12px;
}

.strategy-simulation-layout img,
.strategy-field img {
  filter: saturate(1.05) contrast(1.04);
}

.strategy-simulation-cards article {
  border-radius: 8px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.strategy-case-grid {
  gap: 14px;
}

.strategy-case-grid article {
  position: relative;
  min-height: 292px;
  border-radius: 12px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,245,242,.92)),
    linear-gradient(135deg, rgba(205,35,43,.07), transparent 52%, rgba(72,100,49,.08));
}

.strategy-case-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
}

.strategy-case-grid span {
  color: var(--red);
  border-color: rgba(205,35,43,.28);
  background: rgba(205,35,43,.06);
}

.strategy-case-grid h3 {
  font-size: 16px;
}

.strategy-field {
  position: relative;
  isolation: isolate;
  padding: clamp(42px, 5vw, 70px) 0;
}

.strategy-field::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 0%, rgba(205,35,43,.08), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(247,245,242,.58));
}

.strategy-checklist span,
.strategy-deliverable-grid span {
  border-radius: 8px;
}

.strategy-checklist span {
  background:
    linear-gradient(90deg, rgba(205,35,43,.07), transparent 54%),
    #fff;
}

.strategy-deliverable-grid {
  gap: 10px;
}

.strategy-deliverable-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.92));
}

.strategy-next {
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 0%, rgba(205,35,43,.2), transparent 30%),
    linear-gradient(135deg, #071425, #011022);
}

@media (max-width: 899px) {
  .strategy-hero::after {
    display: none;
  }

  .strategy-hero .sub-lead {
    font-size: 14px;
  }

  .strategy-models {
    padding-inline: 22px;
  }

  .strategy-models .section-copy,
  .strategy-model-lab {
    width: 100%;
  }

  .strategy-model-lab::before {
    display: none;
  }

  .strategy-field::before {
    inset: 14px -10px;
  }
}

/* Stable mega-menu hover intent. */
.site-header-shell.is-mega-open .mega-menu {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-header-shell.is-mega-open .nav-expertise {
  color: var(--gold);
}

.site-header-shell.is-mega-open .nav-expertise::before {
  opacity: 1;
}

/* Make every mega-menu card fully clickable through its existing link. */
.site-header-shell .mega-card {
  cursor: pointer;
}

.site-header-shell .mega-card a::after {
  content: "";
  position: absolute;
  z-index: 6;
  inset: 0;
}

.site-header-shell .mega-card a {
  position: static;
  z-index: 7;
}

.nav-toggle {
  display: none;
}

@media (max-width: 899px) {
  .site-header-shell {
    width: 100%;
    position: relative;
    z-index: 160;
  }

  .site-header-shell .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    column-gap: 12px;
    height: auto;
    padding: 16px 20px 0;
  }

  .site-header-shell .brand {
    width: auto;
    min-width: 0;
  }

  .site-header-shell .brand img {
    width: 46px;
    height: 54px;
    flex: 0 0 auto;
  }

  .site-header-shell .brand-rule {
    height: 42px;
    margin: 0 11px;
    flex: 0 0 1px;
  }

  .site-header-shell .brand-copy {
    min-width: 0;
    max-width: 100%;
  }

  .site-header-shell .brand-copy strong {
    font-size: clamp(18px, 5.8vw, 24px);
    line-height: .95;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .site-header-shell .brand-copy small {
    margin-top: 4px;
    font-size: clamp(6px, 1.75vw, 7.2px);
    line-height: 1.25;
    letter-spacing: .2px;
    white-space: normal;
  }

  .site-header-shell .brand-copy small::before {
    margin: 4px 0 5px;
    background:
      linear-gradient(var(--green-2), var(--green-2)) left center / 32px 1px no-repeat,
      linear-gradient(var(--green-2), var(--green-2)) right center / 32px 1px no-repeat;
    font-size: .9em;
    letter-spacing: 4px;
  }

  .site-header-shell .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 2px;
    color: #fff;
    background: rgba(7,18,32,.66);
    box-shadow: 0 10px 26px rgba(0,0,0,.24);
    cursor: pointer;
  }

  .site-header-shell .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
  }

  .site-header-shell.is-mobile-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header-shell.is-mobile-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header-shell.is-mobile-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header-shell .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border: 0 solid rgba(255,255,255,.16);
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    color: #fff;
    background: rgba(7,18,32,.97);
    box-shadow: 0 18px 34px rgba(0,0,0,.28);
    font-size: 10px;
    transition: max-height .24s ease, margin-top .2s ease, padding .2s ease, border-width .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header-shell.is-mobile-menu-open .nav {
    max-height: 430px;
    margin-top: 14px;
    padding: 8px;
    border-width: 1px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header-shell .nav a {
    display: flex;
    align-items: center;
    min-height: 40px;
    min-width: 0;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 10px;
    letter-spacing: .4px;
    white-space: nowrap;
  }

  .site-header-shell .nav .language-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 9px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header-shell .nav .language-switcher a {
    min-height: 34px;
    min-width: 0;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 3px;
    justify-content: center;
    font-size: 10px;
  }

  .site-header-shell .nav a:last-child {
    border-bottom: 0;
  }

  .site-header-shell .nav-expertise {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .site-header-shell .nav-expertise::after {
    display: none;
  }

  .site-header-shell .nav a::before,
  .site-header-shell .nav a.is-active::before,
  .site-header-shell .nav-expertise::before {
    left: 0;
    right: auto;
    top: 8px;
    width: 3px;
    height: 24px;
    opacity: 0;
    background: var(--red);
  }

  .site-header-shell .nav a.is-active::before {
    opacity: 1;
  }

  .site-header-shell .nav-cta {
    justify-content: center;
    width: 100%;
    height: 42px;
    margin: 8px 0 0;
    border-color: rgba(255,255,255,.58);
    font-size: 10px;
    background: linear-gradient(180deg, var(--red-2), var(--red));
  }

  .site-header-shell .mega-menu {
    display: none !important;
  }
}

/* Mobile site-wide polish: one clean responsive layer across shared pages. */
@media (max-width: 899px) {
  :root {
    --mobile-gutter: 20px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    display: block;
    min-width: 0;
    background: var(--navy);
  }

  .page {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-shadow: none;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .hero,
  .sub-hero,
  .about-hero,
  .war-hero {
    height: auto;
    overflow: hidden;
  }

  .hero {
    min-height: 640px;
  }

  .sub-hero,
  .about-hero,
  .war-hero,
  .digital-hero,
  .intelligence-hero,
  .strategy-hero,
  .influence-hero {
    min-height: 0;
  }

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

  .hero-copy,
  .sub-hero-copy,
  .about-hero-copy,
  .war-hero-copy,
  .content-section,
  .section-heading,
  .about-values,
  .about-history-copy,
  .about-team,
  .about-team-head,
  .team-grid,
  .about-mission,
  .cards,
  .proofs,
  .expertise-directory,
  .method-steps,
  .partner-logos,
  .references-shell,
  .insights-head,
  .article-grid,
  .newsletter-shell,
  .footer-cta,
  .footer-main {
    width: calc(100% - (var(--mobile-gutter) * 2));
    max-width: calc(100% - (var(--mobile-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    margin-top: clamp(58px, 13vh, 92px);
  }

  .sub-hero-copy,
  .about-hero-copy,
  .war-hero-copy {
    padding: 54px 0 48px;
  }

  .about-history,
  .about-team,
  .about-mission,
  .partners {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1,
  .about-hero h1,
  .sub-hero h1,
  .expertises-page .sub-hero h1,
  .technologies-page .sub-hero h1,
  .war-hero-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: .98;
  }

  .hero-copy p,
  .sub-lead,
  .about-hero-copy p:not(.breadcrumb):not(.about-kicker),
  .war-hero-copy p:not(.war-kicker) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading i {
    margin-left: 0;
  }

  .section-heading p,
  .insights-head p,
  .partners > p,
  .references-shell > p,
  .sub-kicker,
  .content-kicker,
  .war-kicker {
    letter-spacing: 2px;
  }

  .hero-actions,
  .sub-hero-actions,
  .war-actions,
  [class*="-hero-actions"] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .button,
  .hero-actions .button,
  .sub-hero-actions a,
  .war-actions .button,
  [class*="-hero-actions"] a {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding-inline: 16px;
  }

  .expertise,
  .insights,
  .newsletter,
  .references-band {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .cards,
  .proofs,
  .expertise-directory,
  .expertise-directory-list,
  .stats,
  .method-steps,
  .partner-logos,
  .reference-logos,
  .article-grid,
  .newsletter-shell,
  .section-copy,
  .overview-panel,
  .quote-strip,
  .contact-layout,
  .contact-form-layout,
  .feature-grid,
  .expertise-overview-grid,
  .technology-grid,
  .technologies-page .technology-grid,
  .value-grid,
  .steps-detailed,
  .tech-signal-strip,
  .tech-lab,
  .war-hero-grid,
  .war-capabilities,
  .war-dashboard-section,
  .war-ai-section,
  .war-ai-grid,
  .war-final-cta,
  [class*="-hero-metrics"],
  [class*="-proof-strip"],
  [class*="-service-grid"],
  [class*="-model-lab"],
  [class*="-simulation-layout"],
  [class*="-case-grid"],
  [class*="-deliverable-grid"],
  [class*="-field"],
  [class*="-creative"],
  [class*="-agents"],
  [class*="-media-room"] {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-copy {
    gap: 16px;
    margin-bottom: 22px;
  }

  .cards {
    gap: 14px;
    margin-top: 24px;
  }

  .expertise-card {
    height: 236px;
    min-height: 236px;
    border-radius: 8px;
  }

  .expertise-card svg {
    width: 50px;
    height: 50px;
    margin-top: 50px;
  }

  .expertise-card h3 {
    font-size: 18px;
    line-height: 1;
  }

  .proofs {
    gap: 14px;
  }

  .proofs article,
  .stats article {
    border-right: 0;
  }

  .proofs article::after,
  .stats article::after,
  .method-steps::before,
  .method-steps::after,
  .method-steps article::after {
    display: none !important;
  }

  .stats {
    height: auto;
    gap: 1px;
    padding: 0;
    background: var(--navy);
  }

  .stats article {
    grid-template-columns: 36px 1fr;
    min-height: 82px;
    padding: 14px;
    background: rgba(255,255,255,.04);
  }

  .stats strong {
    font-size: 26px;
  }

  .stats span {
    font-size: 9px;
    line-height: 1.25;
  }

  .method {
    height: auto;
    padding: 38px 0 42px;
  }

  .method .section-heading h2 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .method-steps {
    gap: 12px;
    padding: 14px;
    text-align: left;
  }

  .method-steps article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 14px;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(1,16,34,.08);
    background: rgba(255,255,255,.74);
  }

  .round {
    position: static;
    grid-row: 1 / 4;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .method-steps h3 {
    font-size: 12px;
  }

  .method-steps p {
    font-size: 11px;
  }

  .partners {
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .partner-logos,
  .reference-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logos a {
    min-height: 44px;
    border-radius: 6px;
  }

  .reference-logo {
    min-height: 66px;
    padding: 8px;
  }

  .insights-head {
    gap: 14px;
  }

  .article-grid article {
    min-height: 0;
    border-radius: 8px;
  }

  .newsletter-shell {
    gap: 16px;
    padding: 20px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
    height: auto;
  }

  .newsletter-form input,
  .newsletter-form button {
    min-height: 42px;
  }

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

  .newsletter-signal b {
    grid-column: 1 / -1;
  }

  .contact-form-panel,
  .contact-form-layout .office-globe-panel,
  .contact-panel,
  .office-globe-panel,
  .tech-lab-panel,
  .war-command,
  .war-dashboard,
  [class*="-model-lab"] article,
  [class*="-case-grid"] article,
  [class*="-service-grid"] .feature-card {
    min-width: 0;
  }

  [class*="-simulation-layout"] img,
  [class*="-field"] img,
  [class*="-creative"] img,
  [class*="-agents"] img,
  [class*="-media-room"] img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-gutter: 16px;
  }

  .site-header-shell .topbar {
    grid-template-columns: minmax(0, 1fr) 40px;
    column-gap: 10px;
    padding-inline: 16px;
  }

  .site-header-shell .brand img {
    width: 38px;
    height: 46px;
  }

  .site-header-shell .brand-rule {
    height: 36px;
    margin: 0 8px;
  }

  .site-header-shell .brand-copy strong {
    font-size: clamp(17px, 5.7vw, 21px);
  }

  .site-header-shell .brand-copy small {
    font-size: 5.8px;
  }

  .site-header-shell .brand-copy small::before {
    background:
      linear-gradient(var(--green-2), var(--green-2)) left center / 24px 1px no-repeat,
      linear-gradient(var(--green-2), var(--green-2)) right center / 24px 1px no-repeat;
    letter-spacing: 3px;
  }

  .site-header-shell .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-copy h1,
  .about-hero h1,
  .sub-hero h1,
  .expertises-page .sub-hero h1,
  .technologies-page .sub-hero h1,
  .war-hero-copy h1 {
    font-size: clamp(28px, 9.5vw, 36px);
  }

  .partner-logos,
  .reference-logos,
  .newsletter-signal {
    grid-template-columns: 1fr;
  }
}

/* AI-generated Insights images: clean crops and sharper editorial cards. */
.article-grid figure {
  background: #071220;
}

.article-grid img {
  display: block;
  object-position: center center;
}

.article-grid article:nth-child(1) img {
  object-position: center 52%;
}

.article-grid article:nth-child(2) img,
.article-grid article:nth-child(5) img,
.article-grid article:nth-child(6) img {
  object-position: center 50%;
}

.article-grid article:nth-child(4) img {
  object-position: center 56%;
}

@media (max-width: 899px) {
  .article-grid figure {
    height: clamp(132px, 38vw, 170px);
  }
}

/* Arabic homepage refresh */
.home-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.home-ar .page {
  background:
    linear-gradient(180deg, #f8f7f4 0%, #eeece7 52%, #f8f7f4 100%);
}

.home-ar .hero {
  min-height: 670px;
  background:
    radial-gradient(circle at 24% 18%, rgba(205,35,43,.22), transparent 26%),
    linear-gradient(118deg, #071220 0 48%, #0b1d31 48% 100%);
}

.home-ar .hero-veil {
  background:
    linear-gradient(90deg, rgba(7,18,32,.18) 0%, rgba(7,18,32,.26) 34%, rgba(7,18,32,.78) 60%, rgba(7,18,32,.98) 100%),
    linear-gradient(180deg, rgba(7,18,32,.56), rgba(7,18,32,.2) 46%, rgba(7,18,32,.62));
}

.home-ar .hero-visual,
.home-ar .hero-light-lines {
  right: auto;
  left: -3px;
  transform: scaleX(-1);
  transform-origin: center;
}

.home-ar .hero-visual {
  filter: saturate(1.12) contrast(1.05) brightness(1.18);
}

.home-ar .topbar,
.home-ar .nav,
.home-ar .site-header-shell .mega-menu,
.home-ar .footer,
.home-ar .references-band {
  direction: rtl;
}

.home-ar .brand-copy strong,
.home-ar .hero-copy h1,
.home-ar .section-heading h2,
.home-ar .expertise-directory-head h3,
.home-ar .insights-head h2,
.home-ar .newsletter-copy h2,
.home-ar .footer-cta h2,
.home-ar .article-grid h3 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.home-ar .brand-copy small {
  letter-spacing: 0;
}

.home-ar .brand-copy small::before {
  letter-spacing: 5px;
}

.home-ar .hero-copy {
  width: min(620px, 58vw);
  margin: 92px 44px 0 0;
  padding-right: 22px;
  border-right: 3px solid var(--red);
}

.home-ar .hero-copy h1 {
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 800;
  line-height: 1.08;
}

.home-ar .hero-copy h1 span:last-child {
  color: var(--green-2);
}

.home-ar .hero-copy i,
.home-ar .section-heading i {
  margin-right: 0;
  margin-left: auto;
  background: linear-gradient(90deg, var(--green), var(--red));
}

.home-ar .hero-copy p {
  max-width: 470px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
}

.home-ar .hero-actions {
  gap: 12px;
}

.home-ar .button {
  min-height: 40px;
  font-size: 10px;
  letter-spacing: 0;
}

.home-ar .button-filled {
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

.home-ar .button-outline {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.06);
}

.home-ar .expertise {
  padding-top: 44px;
  background:
    radial-gradient(circle at 78% 0%, rgba(72,100,49,.14), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f1efe9 100%);
}

.home-ar .section-heading {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  text-align: right;
}

.home-ar .section-heading p,
.home-ar .insights-head p,
.home-ar .partners > p,
.home-ar .references-shell > p,
.home-ar .newsletter-copy p {
  letter-spacing: 0;
  font-size: 11px;
}

.home-ar .section-heading h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.28;
}

.home-ar .cards {
  gap: 13px;
}

.home-ar .expertise-card h3 {
  font-size: 16px;
  line-height: 1.25;
}

.home-ar .expertise-card a {
  width: auto;
  min-width: 92px;
}

.home-ar .expertise-directory {
  border-color: rgba(205,35,43,.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.92)),
    radial-gradient(circle at 84% 8%, rgba(205,35,43,.08), transparent 28%);
}

.home-ar .expertise-directory-head {
  padding: 5px 3px 5px 15px;
  border-right: 0;
  border-left: 1px solid rgba(205,35,43,.2);
}

.home-ar .expertise-directory-list a {
  grid-template-columns: 25px 28px 1fr;
  text-align: right;
}

.home-ar .expertise-directory-list strong {
  font-size: 9.4px;
  line-height: 1.35;
}

.home-ar .expertise-directory-list p {
  font-size: 7.6px;
}

.home-ar .stats {
  min-height: 146px;
  height: auto;
  padding: 20px 52px 18px;
  gap: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(205,35,43,.18), transparent 28%),
    linear-gradient(90deg, #071220, #0b1d31 52%, #071220);
}

.home-ar .stats article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 38px 46px minmax(18px, auto);
  min-width: 0;
  min-height: 108px;
  align-content: center;
  align-items: center;
  justify-items: center;
  justify-content: center;
  row-gap: 6px;
  padding: 8px 22px;
  text-align: center;
}

.home-ar .stats article:not(:last-child)::after {
  top: 12px;
  right: auto;
  left: 0;
  height: calc(100% - 24px);
}

.home-ar .stats svg {
  grid-row: 1;
  display: block;
  width: 34px;
  height: 34px;
  padding: 7px;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(205,35,43,.72);
  background: rgba(205,35,43,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.home-ar .stats strong,
.home-ar .stats span {
  text-align: center;
}

.home-ar .stats strong {
  grid-row: 2;
  direction: rtl;
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.home-ar .stats span {
  grid-row: 3;
  display: block;
  max-width: 130px;
  font-size: 11px;
  line-height: 1.35;
}

.home-ar .method {
  height: auto;
  padding-bottom: 36px;
}

.home-ar .method-steps {
  direction: rtl;
  box-shadow: 0 18px 46px rgba(7,18,32,.1);
}

.home-ar .method-steps article {
  text-align: right;
}

.home-ar .method-steps article:not(:last-child)::after {
  right: auto;
  left: -10px;
  transform: rotate(-135deg);
}

.home-ar .method-steps h3 {
  font-size: 10px;
}

.home-ar .method-steps p {
  text-align: right;
  font-size: 8px;
  line-height: 1.75;
}

.home-ar .partners {
  background:
    linear-gradient(90deg, #071220, #0b1d31 50%, #071220);
}

.home-ar .insights {
  background:
    radial-gradient(circle at 88% 0%, rgba(205,35,43,.08), transparent 32%),
    linear-gradient(180deg, #f8f7f4, #ebe8e1);
}

.home-ar .insights-head {
  align-items: end;
  direction: rtl;
}

.home-ar .insights-head h2 {
  max-width: 520px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.28;
}

.home-ar .insights-head a {
  font-size: 10px;
  letter-spacing: 0;
}

.home-ar .article-grid article {
  border-radius: 8px;
}

.home-ar .article-grid figure span {
  left: auto;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0;
}

.home-ar .article-grid h3 {
  font-size: 17px;
  line-height: 1.35;
}

.home-ar .article-grid a {
  display: inline-flex;
  margin-right: 20px;
  margin-left: 0;
  color: var(--red);
  font-size: 10px;
}

.home-ar .newsletter {
  background: linear-gradient(180deg, #ebe8e1 0%, #f8f7f4 100%);
}

.home-ar .newsletter-shell {
  direction: ltr;
  grid-template-columns: minmax(150px, .36fr) minmax(340px, .95fr) minmax(340px, 1fr);
  grid-template-areas: "signal form copy";
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  min-height: 220px;
  padding: clamp(28px, 3.2vw, 46px);
  background:
    radial-gradient(circle at 12% 16%, rgba(205,35,43,.22), transparent 28%),
    linear-gradient(112deg, #071220 0%, #0b1d31 58%, #061122 100%);
}

.home-ar .newsletter-copy {
  grid-area: copy;
  direction: rtl;
  justify-self: end;
  max-width: 430px;
  text-align: right;
}

.home-ar .newsletter-form {
  grid-area: form;
  direction: rtl;
  width: min(100%, 430px);
  justify-self: center;
  text-align: right;
}

.home-ar .newsletter-signal {
  grid-area: signal;
  direction: rtl;
  width: min(100%, 170px);
  justify-self: start;
}

.home-ar .newsletter-form label,
.home-ar .newsletter-form input,
.home-ar .newsletter-form button,
.home-ar .newsletter-form small {
  letter-spacing: 0;
}

.home-ar .newsletter-form input {
  direction: ltr;
  text-align: left;
}

.home-ar .newsletter-copy p {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0;
}

.home-ar .newsletter-copy h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
}

.home-ar .newsletter-copy span {
  max-width: 400px;
  font-size: 13px;
  line-height: 1.75;
}

.home-ar .newsletter-form div {
  grid-template-columns: 1fr 138px;
}

.home-ar .newsletter-form button {
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), var(--red));
}

.home-ar .newsletter-signal b,
.home-ar .newsletter-signal span {
  justify-content: flex-start;
  min-height: 42px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  font-size: 12px;
}

.home-ar .newsletter-signal b {
  color: var(--red-2);
  background: rgba(255,255,255,.11);
}

.home-ar .newsletter-signal span::before {
  order: 2;
  margin-right: 7px;
  margin-left: 0;
  background: var(--red);
  box-shadow: 0 0 12px rgba(205,35,43,.68);
}

.home-ar .footer-main,
.home-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.home-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .home-ar .hero {
    min-height: 660px;
  }

  .home-ar .hero-veil {
    background:
      linear-gradient(180deg, rgba(7,18,32,.95) 0 38%, rgba(7,18,32,.62) 70%, rgba(7,18,32,.92) 100%),
      linear-gradient(90deg, rgba(7,18,32,.24) 0%, rgba(7,18,32,.95) 100%);
  }

  .home-ar .hero-copy {
    width: calc(100% - 40px);
    margin: 64px auto 0;
    padding-right: 16px;
  }

  .home-ar .hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .home-ar .hero-copy p {
    font-size: 15px;
  }

  .home-ar .site-header-shell .nav a {
    justify-content: flex-end;
    white-space: normal;
  }

  .home-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .home-ar .section-heading,
  .home-ar .insights-head {
    text-align: right;
  }

  .home-ar .expertise-directory-head {
    border-left: 0;
    border-bottom: 1px solid rgba(205,35,43,.18);
  }

  .home-ar .expertise-directory-list a {
    grid-template-columns: 32px 34px 1fr;
  }

  .home-ar .stats article {
    min-height: 118px;
    padding: 16px 12px;
  }

  .home-ar .method-steps article {
    grid-template-columns: 1fr 52px;
  }

  .home-ar .round {
    grid-column: 2;
  }

  .home-ar .newsletter-shell {
    direction: rtl;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "signal";
    min-height: 0;
  }

  .home-ar .newsletter-copy,
  .home-ar .newsletter-form,
  .home-ar .newsletter-signal {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .home-ar .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .home-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic About page */
.about-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.about-ar .topbar,
.about-ar .nav,
.about-ar .site-header-shell .mega-menu,
.about-ar .footer,
.about-ar .references-band {
  direction: rtl;
}

.about-ar .brand-copy strong,
.about-ar .about-hero h1,
.about-ar .section-heading h2,
.about-ar .about-history h2,
.about-ar .about-team h2,
.about-ar .about-mission h2,
.about-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.about-ar .brand-copy small,
.about-ar .breadcrumb,
.about-ar .about-kicker,
.about-ar .section-heading p,
.about-ar .about-history-copy > p:first-child,
.about-ar .about-team-head > div > p,
.about-ar .about-mission > div p,
.about-ar .team-cta {
  letter-spacing: 0;
  text-transform: none;
}

.about-ar .about-hero::before {
  inset: 0 32% 0 0;
  background-position: left center;
}

.about-ar .about-hero::after {
  background:
    linear-gradient(90deg, rgba(1,16,34,.08) 0%, rgba(1,16,34,.56) 46%, rgba(1,16,34,1) 100%),
    linear-gradient(180deg, rgba(1,16,34,.92), rgba(1,16,34,.24) 35%, rgba(1,16,34,.2));
}

.about-ar .about-hero-copy {
  width: min(590px, 43vw);
  margin: 46px var(--edge) 0 0;
}

.about-ar .breadcrumb {
  flex-direction: row;
  font-size: 12px;
}

.about-ar .about-hero h1 {
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.08;
}

.about-ar .about-hero-copy i,
.about-ar .about-history-copy i,
.about-ar .section-heading i {
  margin-right: 0;
  margin-left: auto;
  background: linear-gradient(90deg, var(--green), var(--red));
}

.about-ar .about-kicker {
  color: var(--green-2);
  font-size: clamp(14px, 1.15vw, 18px);
}

.about-ar .about-hero-copy p:not(.breadcrumb):not(.about-kicker) {
  max-width: 560px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.8;
}

.about-ar .section-heading {
  text-align: right;
}

.about-ar .section-heading h2 {
  line-height: 1.28;
}

.about-ar .section-heading h2 span,
.about-ar .about-team h2 span {
  color: var(--green-2);
}

.about-ar .about-values {
  direction: rtl;
}

.about-ar .about-values article {
  border-right: 0;
  border-left: 1px solid rgba(205,35,43,.26);
}

.about-ar .about-values article:last-child {
  border-left: 0;
}

.about-ar .about-values h3 {
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0;
}

.about-ar .about-values p {
  font-size: clamp(11px, .82vw, 13px);
  line-height: 1.72;
}

.about-ar .about-history {
  background:
    linear-gradient(90deg, rgba(1,16,34,.08) 0%, rgba(1,16,34,.78) 49%, rgba(1,16,34,1) 66%),
    url("assets/about/about-history-bg.png") left center / auto 100% no-repeat,
    var(--navy);
}

.about-ar .about-history::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(20,72,112,.44), transparent 34%),
    linear-gradient(270deg, rgba(255,255,255,.04), transparent 42%);
}

.about-ar .about-history-copy {
  width: min(520px, 43vw);
  padding: 64px var(--edge) 0 0;
}

.about-ar .about-history-copy p:not(:first-child) {
  font-size: clamp(13px, .98vw, 15px);
  line-height: 1.82;
}

.about-ar .about-history-copy .button {
  color: #fff;
  border-color: rgba(255,255,255,.56);
}

.about-ar .about-team-head {
  direction: rtl;
  grid-template-columns: minmax(360px, 480px) 1fr;
  text-align: right;
}

.about-ar .about-team-head > p {
  font-size: clamp(13px, .98vw, 15px);
  line-height: 1.75;
}

.about-ar .team-grid {
  direction: rtl;
}

.about-ar .team-grid h3 {
  font-size: clamp(13px, 1vw, 14px);
}

.about-ar .team-grid p {
  font-size: clamp(11px, .86vw, 12px);
}

.about-ar .about-mission {
  direction: rtl;
  grid-template-columns: 120px 260px 1fr;
}

.about-ar .about-mission > p {
  padding-right: 44px;
  padding-left: 0;
  border-right: 1px solid rgba(231,162,58,.48);
  border-left: 0;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.8;
}

.about-ar .about-partners > p,
.about-ar .references-shell > p {
  letter-spacing: 0;
}

.about-ar .footer-main,
.about-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.about-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .about-ar .about-hero::before {
    inset: 112px 0 0;
    background-position: center bottom;
    opacity: .58;
  }

  .about-ar .about-hero::after {
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 38%, rgba(1,16,34,.78) 62%, rgba(1,16,34,.34) 100%),
      linear-gradient(90deg, rgba(1,16,34,.52), rgba(1,16,34,.94));
  }

  .about-ar .about-hero-copy {
    width: calc(100% - 40px);
    margin: 42px auto 0;
    text-align: right;
  }

  .about-ar .about-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .about-ar .about-page .nav a {
    justify-content: flex-end;
  }

  .about-ar .about-page .nav .language-switcher a {
    justify-content: center;
  }

  .about-ar .about-values article {
    border-left: 0;
  }

  .about-ar .about-values p {
    max-width: none;
  }

  .about-ar .about-history {
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 56%, rgba(1,16,34,.48) 100%),
      url("assets/about/about-history-bg.png") center bottom / auto 58% no-repeat,
      var(--navy);
  }

  .about-ar .about-history-copy {
    width: calc(100% - 40px);
    padding: 40px 0 0;
    margin-inline: auto;
  }

  .about-ar .about-team-head {
    grid-template-columns: 1fr;
  }

  .about-ar .about-mission {
    grid-template-columns: 1fr;
  }

  .about-ar .about-mission > p {
    padding-right: 0;
    border-right: 0;
  }

  .about-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Expertises page */
.expertises-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.expertises-ar .topbar,
.expertises-ar .nav,
.expertises-ar .site-header-shell .mega-menu,
.expertises-ar .footer,
.expertises-ar .references-band {
  direction: rtl;
}

.expertises-ar .brand-copy strong,
.expertises-ar .sub-hero h1,
.expertises-ar .section-copy h2,
.expertises-ar .overview-panel h2,
.expertises-ar .overview-card h3,
.expertises-ar .value-card h3,
.expertises-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.expertises-ar .brand-copy small,
.expertises-ar .breadcrumb,
.expertises-ar .sub-kicker,
.expertises-ar .content-kicker,
.expertises-ar .overview-card a,
.expertises-ar .quote-strip b {
  letter-spacing: 0;
  text-transform: none;
}

.expertises-ar .sub-hero {
  background:
    linear-gradient(100deg, rgba(1,16,34,.18) 0%, rgba(1,16,34,.7) 46%, rgba(1,16,34,.98) 100%),
    radial-gradient(circle at 22% 35%, rgba(205,35,43,.24), transparent 28%),
    var(--sub-bg) left center / cover no-repeat,
    var(--navy);
}

.expertises-ar .sub-hero::before {
  background:
    radial-gradient(circle at 78% 38%, rgba(231,162,58,.16), transparent 28%),
    linear-gradient(180deg, rgba(1,16,34,.92) 0, rgba(1,16,34,.42) 34%, transparent 70%);
}

.expertises-ar .sub-hero-copy {
  direction: rtl;
  text-align: right;
}

.expertises-ar .breadcrumb {
  flex-direction: row;
}

.expertises-ar .sub-hero h1 {
  font-weight: 800;
  line-height: 1.12;
}

.expertises-ar .sub-hero h1 span,
.expertises-ar .section-copy h2 span,
.expertises-ar .overview-panel h2 span {
  color: var(--green-2);
}

.expertises-ar .sub-lead {
  max-width: 640px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.8;
}

.expertises-ar .sub-hero-actions {
  justify-content: flex-start;
}

.expertises-ar .expertises-hero-panel {
  direction: rtl;
  left: max(36px, calc((100vw - var(--content-wide)) / 2));
  right: auto;
}

.expertises-ar .panel-bars {
  direction: ltr;
}

.expertises-ar .expertises-hero-motion span {
  transform: scaleX(-1);
}

.expertises-ar .overview-panel,
.expertises-ar .section-copy {
  direction: rtl;
  text-align: right;
}

.expertises-ar .overview-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  background:
    radial-gradient(circle at 86% 18%, rgba(205,35,43,.1), transparent 28%),
    linear-gradient(135deg, #fff, #f7f2e9);
}

.expertises-ar .expertises-metrics,
.expertises-ar .expertise-overview-grid,
.expertises-ar .value-grid {
  direction: rtl;
}

.expertises-ar .overview-card,
.expertises-ar .value-card {
  text-align: right;
}

.expertises-ar .overview-card::before,
.expertises-ar .value-card::before {
  right: 0;
  left: auto;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.expertises-ar .overview-card a {
  color: var(--red);
}

.expertises-ar .overview-card a:hover,
.expertises-ar .overview-card a:focus-visible {
  transform: translateX(-4px);
}

.expertises-ar .expertises-page .value-card {
  grid-template-columns: minmax(0, 1fr) 46px;
  padding: 22px 28px 22px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.93)),
    linear-gradient(270deg, rgba(205,35,43,.06), transparent 44%, rgba(72,100,49,.06));
}

.expertises-ar .expertises-page .value-card .card-num {
  grid-column: 2;
}

.expertises-ar .expertises-page .value-card h3,
.expertises-ar .expertises-page .value-card p {
  grid-column: 1;
}

.expertises-ar .expertises-page .value-card::after {
  right: auto;
  left: 22px;
}

.expertises-ar .expertises-final .quote-strip {
  direction: rtl;
  grid-template-columns: 170px 1fr auto;
}

.expertises-ar .quote-strip p {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.expertises-ar .footer-main,
.expertises-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.expertises-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .expertises-ar .sub-hero {
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 42%, rgba(1,16,34,.76) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      var(--navy);
  }

  .expertises-ar .sub-hero-copy {
    width: calc(100% - 40px);
  }

  .expertises-ar .sub-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .expertises-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .expertises-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .expertises-ar .expertises-hero-panel {
    display: none;
  }

  .expertises-ar .overview-panel,
  .expertises-ar .expertises-final .quote-strip {
    grid-template-columns: 1fr;
  }

  .expertises-ar .expertises-page .value-card {
    grid-template-columns: minmax(0, 1fr) 42px;
    padding: 20px 24px 20px 20px;
  }

  .expertises-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Technologies page */
.technologies-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.technologies-ar .topbar,
.technologies-ar .nav,
.technologies-ar .site-header-shell .mega-menu,
.technologies-ar .footer,
.technologies-ar .references-band {
  direction: rtl;
}

.technologies-ar .brand-copy strong,
.technologies-ar .sub-hero h1,
.technologies-ar .section-copy h2,
.technologies-ar .overview-panel h2,
.technologies-ar .technology-card h3,
.technologies-ar .tech-lab-copy h2,
.technologies-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.technologies-ar .brand-copy small,
.technologies-ar .breadcrumb,
.technologies-ar .sub-kicker,
.technologies-ar .content-kicker,
.technologies-ar .tech-chip,
.technologies-ar .tech-orbit em,
.technologies-ar .tech-hero-console p,
.technologies-ar .console-stats small,
.technologies-ar .tech-signal-strip span,
.technologies-ar .quote-strip b {
  letter-spacing: 0;
  text-transform: none;
}

.technologies-ar .sub-hero {
  background:
    linear-gradient(100deg, rgba(7,18,32,.2) 0%, rgba(7,18,32,.72) 46%, rgba(7,18,32,.99) 100%),
    var(--sub-bg, url("assets/hero-collage.png")) left center / cover no-repeat,
    var(--navy);
}

.technologies-ar .sub-hero::before {
  background:
    radial-gradient(circle at 80% 34%, rgba(182,7,18,.24), transparent 28%),
    radial-gradient(circle at 28% 34%, rgba(72,100,49,.2), transparent 28%),
    linear-gradient(180deg, rgba(7,18,32,.96), rgba(7,18,32,.28) 58%, rgba(7,18,32,.82));
}

.technologies-ar .sub-hero::after {
  right: auto;
  left: 18%;
  transform: skewX(22deg);
}

.technologies-ar .sub-hero-copy {
  direction: rtl;
  text-align: right;
}

.technologies-ar .breadcrumb {
  flex-direction: row;
}

.technologies-ar .sub-hero h1 {
  margin-inline-start: auto;
  font-weight: 800;
  line-height: 1.08;
}

.technologies-ar .sub-hero h1 span,
.technologies-ar .section-copy h2 span,
.technologies-ar .overview-panel h2 span {
  color: var(--green-2);
}

.technologies-ar .sub-lead {
  margin-inline-start: auto;
  max-width: 660px;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.85;
}

.technologies-ar .sub-hero-actions {
  justify-content: flex-start;
}

.technologies-ar .tech-hero-grid {
  mask-image: linear-gradient(270deg, rgba(0,0,0,.86), transparent 72%);
}

.technologies-ar .tech-hero-grid span {
  right: auto;
  left: -20%;
  transform: rotate(62deg) translateX(120%);
}

.technologies-ar .tech-orbit {
  right: auto;
  left: 9%;
}

.technologies-ar .tech-orbit em {
  font-size: 11px;
  font-weight: 800;
}

.technologies-ar .tech-hero-console {
  right: auto;
  left: var(--edge, 72px);
  text-align: right;
}

.technologies-ar .console-screen span,
.technologies-ar .lab-feed span {
  transform-origin: right center;
}

.technologies-ar .console-stats {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.technologies-ar .overview-panel,
.technologies-ar .section-copy,
.technologies-ar .tech-signal-strip,
.technologies-ar .technology-grid,
.technologies-ar .tech-lab,
.technologies-ar .quote-strip {
  direction: rtl;
  text-align: right;
}

.technologies-ar .technologies-page .tech-overview {
  background:
    linear-gradient(255deg, rgba(7,18,32,.99) 0 48%, rgba(7,18,32,.64) 74%, rgba(7,18,32,.22) 100%),
    url("assets/stories/story-data-ai.png") left 34% / cover no-repeat;
}

.technologies-ar .technologies-page .tech-overview::before {
  background:
    linear-gradient(270deg, rgba(7,18,32,.98) 0 54%, rgba(7,18,32,.36) 82%, rgba(7,18,32,.08)),
    linear-gradient(225deg, rgba(182,7,18,.24) 0 18%, transparent 18% 100%),
    linear-gradient(45deg, rgba(72,100,49,.2) 0 15%, transparent 15% 100%);
}

.technologies-ar .technologies-page .tech-overview::after {
  right: auto;
  left: -14%;
}

.technologies-ar .tech-signal-strip article {
  text-align: right;
}

.technologies-ar .tech-signal-strip article::before {
  transform-origin: right center;
  background: linear-gradient(270deg, var(--red), var(--green));
}

.technologies-ar .tech-signal-strip article::after {
  right: auto;
  left: 18px;
}

.technologies-ar .tech-signal-strip span {
  max-width: 190px;
  line-height: 1.5;
}

.technologies-ar .technologies-page .section-copy {
  align-items: start;
}

.technologies-ar .technologies-page .section-copy h2,
.technologies-ar .tech-lab-copy h2 {
  line-height: 1.16;
  text-transform: none;
}

.technologies-ar .technologies-page .section-copy p:not(.content-kicker),
.technologies-ar .tech-lab-copy p:not(.content-kicker),
.technologies-ar .technologies-page .technology-card p {
  line-height: 1.75;
}

.technologies-ar .technologies-page .technology-card {
  text-align: right;
}

.technologies-ar .technologies-page .technology-card::before {
  background:
    linear-gradient(270deg, rgba(182,7,18,.76) 0 48%, rgba(72,100,49,.78) 48% 68%, transparent 68% 100%) top right / 100% 5px no-repeat,
    linear-gradient(225deg, rgba(255,255,255,.14), transparent 38%);
}

.technologies-ar .technologies-page .technology-card::after {
  transform: translateX(120%) skewX(12deg);
}

.technologies-ar .technologies-page .technology-card:hover::after,
.technologies-ar .technologies-page .technology-card:focus-within::after {
  transform: translateX(-120%) skewX(12deg);
}

.technologies-ar .tech-chip {
  right: auto;
  left: 22px;
}

.technologies-ar .tech-lab {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.technologies-ar .tech-lab-panel {
  direction: ltr;
}

.technologies-ar .lab-topline {
  direction: ltr;
}

.technologies-ar .technologies-final::before {
  background:
    linear-gradient(270deg, rgba(7,18,32,.95), rgba(7,18,32,.5)),
    url("assets/hero-collage.png") center / cover no-repeat;
}

.technologies-ar .technologies-final .quote-strip {
  direction: rtl;
  grid-template-columns: 170px 1fr auto;
}

.technologies-ar .technologies-final .quote-strip p {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  line-height: 1.45;
  text-transform: none;
}

.technologies-ar .footer-main,
.technologies-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.technologies-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .technologies-ar .tech-orbit {
    left: 4%;
    right: auto;
  }
}

@media (max-width: 899px) {
  .technologies-ar .sub-hero {
    background:
      linear-gradient(180deg, rgba(7,18,32,.99) 0 42%, rgba(7,18,32,.78) 72%, rgba(7,18,32,.42) 100%),
      var(--sub-bg, url("assets/hero-collage.png")) center bottom / cover no-repeat,
      var(--navy);
  }

  .technologies-ar .sub-hero-copy {
    width: calc(100% - 40px);
  }

  .technologies-ar .sub-hero h1 {
    margin-inline-start: 0;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.12;
  }

  .technologies-ar .sub-lead {
    margin-inline-start: 0;
  }

  .technologies-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .technologies-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .technologies-ar .technologies-page .tech-overview,
  .technologies-ar .tech-lab,
  .technologies-ar .technologies-final .quote-strip {
    grid-template-columns: 1fr;
  }

  .technologies-ar .technologies-page .tech-overview {
    background:
      linear-gradient(180deg, rgba(7,18,32,.98) 0 60%, rgba(7,18,32,.68) 100%),
      url("assets/stories/story-data-ai.png") center / cover no-repeat;
  }

  .technologies-ar .technologies-page .section-copy h2,
  .technologies-ar .tech-lab-copy h2 {
    font-size: 32px;
  }

  .technologies-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic War Room page */
.war-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.war-ar .topbar,
.war-ar .nav,
.war-ar .site-header-shell .mega-menu,
.war-ar .footer,
.war-ar .references-band {
  direction: rtl;
}

.war-ar .brand-copy strong,
.war-ar .war-hero-copy h1,
.war-ar .war-section-copy h2,
.war-ar .war-ai-head h2,
.war-ar .war-final-cta h2,
.war-ar .war-capabilities h3,
.war-ar .dash-card h3,
.war-ar .war-ai-grid h3,
.war-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.war-ar .brand-copy small,
.war-ar .war-kicker,
.war-ar .dashboard-top,
.war-ar .dash-card h3,
.war-ar .war-capabilities h3,
.war-ar .war-ai-grid h3 {
  letter-spacing: 0;
  text-transform: none;
}

.war-ar .war-hero {
  background:
    linear-gradient(270deg, rgba(1,16,34,.99) 0 35%, rgba(1,16,34,.76) 53%, rgba(1,16,34,.18) 100%),
    linear-gradient(180deg, rgba(1,16,34,.84), rgba(1,16,34,.12) 45%, rgba(1,16,34,.9)),
    url("assets/war-room/hero-war-room-command.jpg") 38% center / cover no-repeat,
    #011022;
}

.war-ar .war-hero::before {
  background:
    linear-gradient(180deg, rgba(1,16,34,.94) 0, rgba(1,16,34,.18) 36%, rgba(1,16,34,.88) 100%),
    repeating-linear-gradient(270deg, transparent 0 76px, rgba(255,255,255,.035) 77px 78px);
}

.war-ar .war-hero-grid,
.war-ar .war-dashboard-section,
.war-ar .war-ai-section,
.war-ar .war-ai-grid,
.war-ar .war-final-cta {
  direction: rtl;
  text-align: right;
}

.war-ar .war-hero-copy {
  margin-inline-start: auto;
}

.war-ar .war-hero-copy h1,
.war-ar .war-section-copy h2,
.war-ar .war-ai-head h2,
.war-ar .war-final-cta h2 {
  line-height: 1.12;
}

.war-ar .war-hero-copy h1 span,
.war-ar .war-section-copy h2 span {
  color: var(--green-2);
}

.war-ar .war-hero-copy i {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.war-ar .war-hero-copy p:not(.war-kicker),
.war-ar .war-section-copy > p,
.war-ar .war-ai-head > p,
.war-ar .war-final-cta p {
  margin-inline-start: auto;
  margin-inline-end: 0;
  line-height: 1.8;
}

.war-ar .war-actions {
  justify-content: flex-start;
}

.war-ar .war-command {
  direction: ltr;
}

.war-ar .command-wall > strong,
.war-ar .wall-score em {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

.war-ar .war-capabilities {
  direction: rtl;
}

.war-ar .war-capabilities article {
  border-right: 0;
  border-left: 1px solid rgba(255,255,255,.09);
}

.war-ar .war-capabilities article:last-child {
  border-left: 0;
}

.war-ar .war-capabilities p {
  max-width: 160px;
  margin-inline: auto;
  line-height: 1.65;
}

.war-ar .war-section-copy ul {
  padding: 0;
}

.war-ar .war-section-copy li {
  padding-left: 0;
  padding-right: 18px;
}

.war-ar .war-section-copy li::before {
  left: auto;
  right: 0;
}

.war-ar .war-dashboard {
  direction: rtl;
  text-align: right;
}

.war-ar .dashboard-tools {
  direction: rtl;
}

.war-ar .intention {
  grid-template-columns: 1fr 82px;
}

.war-ar .intention h3 {
  grid-column: 1 / -1;
}

.war-ar .intention ul {
  padding: 0;
  text-align: right;
}

.war-ar .donut,
.war-ar .gauge,
.war-ar .mini-lines,
.war-ar .morocco-map,
.war-ar .volume-bars {
  direction: ltr;
}

.war-ar .volume-bars {
  right: auto;
  left: 12px;
}

.war-ar .trends p {
  direction: ltr;
}

.war-ar .trends p span {
  direction: rtl;
}

.war-ar .war-ai-head {
  text-align: right;
}

.war-ar .war-ai-grid article {
  text-align: right;
}

.war-ar .network-visual,
.war-ar .recommendation-card {
  direction: rtl;
}

.war-ar .recommendation-card p {
  line-height: 1.55;
}

.war-ar .war-final-cta {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.7) 48%, rgba(1,16,34,.22)),
    url("assets/about/about-history-bg.png") center bottom / cover no-repeat;
}

.war-ar .war-contact-link {
  text-align: center;
}

.war-ar .war-contact-link:hover,
.war-ar .war-contact-link:focus-visible {
  transform: translateX(-4px);
}

.war-ar .footer-main,
.war-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.war-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (min-width: 900px) {
  .war-ar .war-hero-grid {
    grid-template-columns: minmax(560px, 640px) minmax(0, 1fr);
  }
}

@media (max-width: 899px) {
  .war-ar .war-hero {
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 48%, rgba(1,16,34,.74) 74%, rgba(1,16,34,.38) 100%),
      url("assets/war-room/hero-war-room-command.jpg") center / cover no-repeat,
      #011022;
  }

  .war-ar .war-hero-copy {
    margin-inline-start: 0;
  }

  .war-ar .war-hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

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

  .war-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .war-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .war-ar .war-capabilities article {
    border-left: 1px solid rgba(255,255,255,.09);
    border-right: 0;
  }

  .war-ar .war-capabilities article:nth-child(2n),
  .war-ar .war-capabilities article:last-child {
    border-left: 0;
  }

  .war-ar .intention {
    grid-template-columns: 1fr 90px;
  }

  .war-ar .war-final-cta {
    text-align: right;
  }

  .war-ar .war-contact-link {
    grid-column: auto;
    text-align: right;
  }

  .war-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Contact page */
.contact-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.contact-ar .topbar,
.contact-ar .nav,
.contact-ar .site-header-shell .mega-menu,
.contact-ar .footer,
.contact-ar .references-band {
  direction: rtl;
}

.contact-ar .brand-copy strong,
.contact-ar .sub-hero h1,
.contact-ar .contact-panel h2,
.contact-ar .office-globe-panel h2,
.contact-ar .form-head h2,
.contact-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.contact-ar .brand-copy small,
.contact-ar .breadcrumb,
.contact-ar .sub-kicker,
.contact-ar .content-kicker,
.contact-ar .form-field span,
.contact-ar .form-consent span,
.contact-ar .contact-list strong,
.contact-ar .social-list strong {
  letter-spacing: 0;
  text-transform: none;
}

.contact-ar .sub-hero {
  background:
    linear-gradient(100deg, rgba(1,16,34,.18) 0%, rgba(1,16,34,.7) 46%, rgba(1,16,34,.98) 100%),
    radial-gradient(circle at 22% 35%, rgba(205,35,43,.22), transparent 28%),
    var(--sub-bg, url("assets/hero-charte-collage.png")) left center / cover no-repeat,
    var(--navy);
}

.contact-ar .sub-hero::before {
  background:
    radial-gradient(circle at 78% 38%, rgba(231,162,58,.16), transparent 28%),
    linear-gradient(180deg, rgba(1,16,34,.92) 0, rgba(1,16,34,.42) 34%, transparent 70%);
}

.contact-ar .sub-hero-copy {
  direction: rtl;
  text-align: right;
}

.contact-ar .breadcrumb {
  flex-direction: row;
}

.contact-ar .sub-hero h1 {
  margin-inline-start: auto;
  font-weight: 800;
  line-height: 1.12;
}

.contact-ar .sub-hero h1 span {
  color: var(--green-2);
}

.contact-ar .sub-lead {
  margin-inline-start: auto;
  max-width: 620px;
  line-height: 1.85;
}

.contact-ar .contact-layout,
.contact-ar .contact-form-layout,
.contact-ar .contact-panel,
.contact-ar .office-globe-panel,
.contact-ar .contact-form-panel {
  direction: rtl;
  text-align: right;
}

.contact-ar .contact-form-layout {
  grid-template-columns: minmax(420px, 1.18fr) minmax(280px, .82fr);
}

.contact-ar .contact-form-panel {
  grid-column: 1;
  grid-row: 1 / span 2;
  background:
    linear-gradient(225deg, rgba(7,18,32,.98), rgba(7,18,32,.88)),
    url("assets/stories/story-data-ai.png") center / cover no-repeat;
}

.contact-ar .contact-form-panel::before {
  background:
    linear-gradient(270deg, rgba(255,255,255,.08) 0 1px, transparent 1px 52px),
    linear-gradient(180deg, rgba(255,255,255,.07) 0 1px, transparent 1px 52px),
    linear-gradient(225deg, rgba(182,7,18,.24) 0 18%, transparent 18% 100%),
    linear-gradient(45deg, rgba(72,100,49,.22) 0 15%, transparent 15% 100%);
}

.contact-ar .contact-form-panel::after {
  background: linear-gradient(270deg, var(--red), var(--green));
}

.contact-ar .contact-form-layout .office-globe-panel {
  grid-column: 2;
  grid-row: 2;
}

.contact-ar .contact-form-layout > .contact-panel {
  grid-column: 2;
  grid-row: 1;
}

.contact-ar .contact-panel h2,
.contact-ar .office-globe-panel h2,
.contact-ar .form-head h2 {
  line-height: 1.15;
}

.contact-ar .form-head p:not(.content-kicker),
.contact-ar .contact-list a,
.contact-ar .social-list a,
.contact-ar .contact-list em {
  line-height: 1.7;
}

.contact-ar .contact-list li,
.contact-ar .social-list li {
  grid-template-columns: 1fr 32px;
}

.contact-ar .contact-list li > span,
.contact-ar .social-list li > span {
  grid-column: 2;
}

.contact-ar .contact-list li > div,
.contact-ar .social-list li > div {
  grid-column: 1;
  min-width: 0;
}

.contact-ar .contact-list a,
.contact-ar .social-list a {
  overflow-wrap: anywhere;
}

.contact-ar .form-field input,
.contact-ar .form-field select,
.contact-ar .form-field textarea {
  direction: rtl;
  text-align: right;
}

.contact-ar .form-field input[type="email"],
.contact-ar .form-field input[type="tel"] {
  direction: ltr;
  text-align: right;
}

.contact-ar .form-field select {
  background-position:
    18px 21px,
    24px 21px;
}

.contact-ar .form-consent {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.contact-ar .form-status {
  line-height: 1.6;
}

.contact-ar .office-dot {
  padding-left: 0;
  padding-right: 22px;
}

.contact-ar .office-dot::before {
  left: auto;
  right: 0;
}

.contact-ar .footer-main,
.contact-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.contact-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .contact-ar .sub-hero {
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 42%, rgba(1,16,34,.76) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg, url("assets/hero-charte-collage.png")) center bottom / cover no-repeat,
      var(--navy);
  }

  .contact-ar .sub-hero-copy {
    width: calc(100% - 40px);
  }

  .contact-ar .sub-hero h1,
  .contact-ar .sub-lead {
    margin-inline-start: 0;
  }

  .contact-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .contact-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .contact-ar .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-ar .contact-form-panel,
  .contact-ar .contact-form-layout .office-globe-panel,
  .contact-ar .contact-form-layout > .contact-panel {
    grid-column: auto;
    grid-row: auto;
  }

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

  .contact-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Political Strategy detail page */
.strategy-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.strategy-ar .topbar,
.strategy-ar .nav,
.strategy-ar .site-header-shell .mega-menu,
.strategy-ar .footer,
.strategy-ar .references-band {
  direction: rtl;
}

.strategy-ar .brand-copy strong,
.strategy-ar .sub-hero h1,
.strategy-ar .section-copy h2,
.strategy-ar .strategy-proof-strip strong,
.strategy-ar .strategy-service-grid .feature-card h3,
.strategy-ar .strategy-model-lab h3,
.strategy-ar .strategy-simulation-layout h2,
.strategy-ar .strategy-case-grid h3,
.strategy-ar .strategy-field h2,
.strategy-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.strategy-ar .brand-copy small,
.strategy-ar .breadcrumb,
.strategy-ar .sub-kicker,
.strategy-ar .content-kicker,
.strategy-ar .strategy-hero-actions a,
.strategy-ar .strategy-hero-metrics small,
.strategy-ar .strategy-proof-strip strong,
.strategy-ar .strategy-model-lab h3,
.strategy-ar .strategy-simulation-cards strong,
.strategy-ar .strategy-case-grid span,
.strategy-ar .strategy-checklist span,
.strategy-ar .strategy-deliverable-grid span {
  letter-spacing: 0;
  text-transform: none;
}

.strategy-ar .strategy-hero {
  background:
    linear-gradient(100deg, rgba(1,16,34,.2) 0%, rgba(1,16,34,.72) 45%, rgba(1,16,34,.99) 100%),
    radial-gradient(circle at 25% 34%, rgba(205,35,43,.24), transparent 26%),
    var(--sub-bg) 38% center / cover no-repeat,
    #011022;
}

.strategy-ar .strategy-hero::before {
  background:
    linear-gradient(270deg, transparent 0 13%, rgba(205,35,43,.48) 13.2% 15.8%, transparent 16%),
    linear-gradient(270deg, transparent 0 18%, rgba(72,100,49,.5) 18.2% 20%, transparent 20.2%),
    repeating-linear-gradient(270deg, transparent 0 88px, rgba(255,255,255,.04) 89px 90px),
    linear-gradient(180deg, rgba(1,16,34,.96), rgba(1,16,34,.44) 48%, rgba(1,16,34,.86));
}

.strategy-ar .strategy-hero::after {
  right: auto;
  left: max(36px, calc((100vw - var(--content-wide)) / 2));
}

.strategy-ar .sub-hero-copy {
  direction: rtl;
  text-align: right;
}

.strategy-ar .breadcrumb {
  flex-direction: row;
}

.strategy-ar .strategy-hero h1 {
  margin-inline-start: auto;
  font-weight: 800;
  line-height: 1.12;
}

.strategy-ar .strategy-hero .sub-lead {
  margin-inline-start: auto;
  line-height: 1.85;
}

.strategy-ar .strategy-hero-actions {
  justify-content: flex-start;
}

.strategy-ar .strategy-hero-metrics {
  direction: rtl;
}

.strategy-ar .strategy-hero-metrics span::before {
  inset: 0 0 0 auto;
}

.strategy-ar .section-copy,
.strategy-ar .strategy-proof-strip,
.strategy-ar .strategy-service-grid,
.strategy-ar .strategy-model-lab,
.strategy-ar .strategy-simulation-layout,
.strategy-ar .strategy-case-grid,
.strategy-ar .strategy-field,
.strategy-ar .strategy-deliverable-grid,
.strategy-ar .strategy-next {
  direction: rtl;
  text-align: right;
}

.strategy-ar .strategy-proof-strip article {
  grid-template-columns: 1fr 34px;
}

.strategy-ar .strategy-proof-strip span {
  grid-column: 2;
}

.strategy-ar .strategy-proof-strip strong,
.strategy-ar .strategy-proof-strip p {
  grid-column: 1;
}

.strategy-ar .strategy-service-grid .feature-card::before {
  right: 0;
  left: auto;
}

.strategy-ar .strategy-model-lab::before {
  background: linear-gradient(270deg, var(--red), rgba(255,255,255,.28), var(--green));
}

.strategy-ar .strategy-model-lab article::before {
  background: radial-gradient(circle at 20% 15%, rgba(205,35,43,.18), transparent 38%);
}

.strategy-ar .strategy-simulation-band {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 24% 38%, rgba(205,35,43,.2), transparent 26%),
    #011022;
}

.strategy-ar .strategy-case-grid article::before {
  background: linear-gradient(270deg, var(--red), var(--green));
}

.strategy-ar .strategy-case-grid ul {
  padding: 0;
}

.strategy-ar .strategy-case-grid li {
  padding-left: 0;
  padding-right: 15px;
}

.strategy-ar .strategy-case-grid li::before {
  left: auto;
  right: 0;
}

.strategy-ar .strategy-field::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(205,35,43,.08), transparent 28%),
    linear-gradient(225deg, rgba(255,255,255,.74), rgba(247,245,242,.58));
}

.strategy-ar .strategy-checklist span {
  background:
    linear-gradient(270deg, rgba(205,35,43,.07), transparent 54%),
    #fff;
}

.strategy-ar .strategy-next {
  background:
    radial-gradient(circle at 10% 0%, rgba(205,35,43,.2), transparent 30%),
    linear-gradient(225deg, #071425, #011022);
}

.strategy-ar .page-link:hover,
.strategy-ar .page-link:focus-visible {
  transform: translateX(-4px);
}

.strategy-ar .footer-main,
.strategy-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.strategy-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .strategy-ar .strategy-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 44%, rgba(1,16,34,.78) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      #011022;
  }

  .strategy-ar .strategy-hero h1,
  .strategy-ar .strategy-hero .sub-lead {
    margin-inline-start: 0;
  }

  .strategy-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .strategy-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .strategy-ar .strategy-proof-strip article {
    grid-template-columns: 42px 1fr;
  }

  .strategy-ar .strategy-proof-strip span {
    grid-column: 1;
  }

  .strategy-ar .strategy-proof-strip strong,
  .strategy-ar .strategy-proof-strip p {
    grid-column: 2;
  }

  .strategy-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Political Marketing detail page */
.marketing-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.marketing-ar .topbar,
.marketing-ar .nav,
.marketing-ar .site-header-shell .mega-menu,
.marketing-ar .footer,
.marketing-ar .references-band {
  direction: rtl;
}

.marketing-ar .brand-copy strong,
.marketing-ar .sub-hero h1,
.marketing-ar .section-copy h2,
.marketing-ar .political-proof-strip strong,
.marketing-ar .political-service-grid .feature-card h3,
.marketing-ar .model-lab h3,
.marketing-ar .simulation-layout h2,
.marketing-ar .case-grid h3,
.marketing-ar .political-field h2,
.marketing-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.marketing-ar .brand-copy small,
.marketing-ar .breadcrumb,
.marketing-ar .sub-kicker,
.marketing-ar .content-kicker,
.marketing-ar .political-hero-actions a,
.marketing-ar .political-hero-metrics small,
.marketing-ar .political-proof-strip strong,
.marketing-ar .model-lab h3,
.marketing-ar .simulation-cards strong,
.marketing-ar .case-grid span,
.marketing-ar .field-checklist span,
.marketing-ar .deliverable-grid span {
  letter-spacing: 0;
  text-transform: none;
}

.marketing-ar .political-hero {
  min-height: clamp(560px, 46vw, 700px);
  background:
    linear-gradient(100deg, rgba(1,16,34,.2) 0%, rgba(1,16,34,.72) 45%, rgba(1,16,34,.99) 100%),
    radial-gradient(circle at 24% 34%, rgba(205,35,43,.24), transparent 26%),
    var(--sub-bg) 38% center / cover no-repeat,
    #011022;
}

.marketing-ar .political-hero::before {
  z-index: 1;
  background:
    linear-gradient(270deg, transparent 0 13%, rgba(205,35,43,.48) 13.2% 15.8%, transparent 16%),
    linear-gradient(270deg, transparent 0 18%, rgba(72,100,49,.5) 18.2% 20%, transparent 20.2%),
    repeating-linear-gradient(270deg, transparent 0 88px, rgba(255,255,255,.04) 89px 90px),
    linear-gradient(180deg, rgba(1,16,34,.96), rgba(1,16,34,.44) 48%, rgba(1,16,34,.86));
}

.marketing-ar .political-hero .sub-hero-copy {
  z-index: 2;
  direction: rtl;
  text-align: right;
  padding-bottom: clamp(70px, 7vw, 118px);
}

.marketing-ar .breadcrumb {
  flex-direction: row;
}

.marketing-ar .political-hero h1 {
  margin-inline-start: auto;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.12;
}

.marketing-ar .political-hero .sub-lead {
  margin-inline-start: auto;
  max-width: 650px;
  line-height: 1.85;
}

.marketing-ar .political-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.marketing-ar .political-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(205,35,43,.92);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.marketing-ar .political-hero-actions a + a {
  border-color: rgba(255,255,255,.42);
  background: rgba(1,16,34,.58);
}

.marketing-ar .political-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  max-width: 500px;
  margin-top: 28px;
}

.marketing-ar .political-hero-metrics span {
  position: relative;
  display: grid;
  gap: 4px;
  overflow: hidden;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    rgba(1,16,34,.55);
  backdrop-filter: blur(10px);
}

.marketing-ar .political-hero-metrics span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.marketing-ar .political-hero-metrics b {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.marketing-ar .political-hero-metrics small {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
}

.marketing-ar .section-copy,
.marketing-ar .political-proof-strip,
.marketing-ar .political-service-grid,
.marketing-ar .model-lab,
.marketing-ar .simulation-layout,
.marketing-ar .case-grid,
.marketing-ar .political-field,
.marketing-ar .deliverable-grid,
.marketing-ar .political-next {
  direction: rtl;
  text-align: right;
}

.marketing-ar .political-intro {
  padding-top: clamp(50px, 5vw, 78px);
}

.marketing-ar .political-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.marketing-ar .political-proof-strip article {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px 12px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(1,16,34,.1);
  border-radius: 10px;
  background:
    linear-gradient(135deg, #071425, #0b2038),
    #011022;
  box-shadow: 0 18px 38px rgba(1,16,34,.12);
}

.marketing-ar .political-proof-strip span {
  grid-column: 2;
  grid-row: span 2;
  color: var(--red-2);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.marketing-ar .political-proof-strip strong {
  grid-column: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.marketing-ar .political-proof-strip p {
  grid-column: 1;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.7;
}

.marketing-ar .political-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.marketing-ar .political-service-grid .feature-card {
  min-height: 172px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(247,245,242,.9)),
    linear-gradient(270deg, rgba(205,35,43,.08), transparent 48%, rgba(72,100,49,.08));
  box-shadow: 0 15px 32px rgba(1,16,34,.08);
}

.marketing-ar .political-service-grid .feature-card::before {
  right: 0;
  left: auto;
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.marketing-ar .political-service-grid .feature-card p {
  line-height: 1.7;
}

.marketing-ar .political-models {
  width: 100%;
  margin-top: 12px;
  padding: clamp(58px, 6vw, 86px) max(28px, calc((100vw - var(--content-wide)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 22% 16%, rgba(205,35,43,.2), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(72,100,49,.2), transparent 30%),
    linear-gradient(225deg, #011022, #071b30);
}

.marketing-ar .political-models .section-copy {
  width: min(100%, var(--content-wide));
}

.marketing-ar .political-models .section-copy h2,
.marketing-ar .political-models .section-copy p:not(.content-kicker) {
  color: #fff;
}

.marketing-ar .political-models .section-copy p:not(.content-kicker) {
  color: rgba(255,255,255,.72);
}

.marketing-ar .model-lab {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, var(--content-wide));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background:
    repeating-linear-gradient(270deg, transparent 0 88px, rgba(255,255,255,.035) 89px 90px),
    rgba(255,255,255,.045);
}

.marketing-ar .model-lab::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 48px;
  height: 1px;
  background: linear-gradient(270deg, var(--red), rgba(255,255,255,.28), var(--green));
  opacity: .7;
}

.marketing-ar .model-lab article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    rgba(1,16,34,.7);
}

.marketing-ar .model-lab article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(205,35,43,.18), transparent 38%);
  pointer-events: none;
}

.marketing-ar .model-lab b,
.marketing-ar .case-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red), var(--green));
  font-size: 10px;
  font-weight: 900;
}

.marketing-ar .model-lab h3,
.marketing-ar .model-lab p {
  position: relative;
  color: #fff;
}

.marketing-ar .model-lab p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.marketing-ar .political-simulation-band {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 24% 38%, rgba(205,35,43,.2), transparent 26%),
    #011022;
}

.marketing-ar .simulation-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.marketing-ar .simulation-layout figure,
.marketing-ar .political-field figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231,162,58,.25);
  border-radius: 12px;
  box-shadow: 0 22px 44px rgba(0,0,0,.22);
}

.marketing-ar .simulation-layout img,
.marketing-ar .political-field img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.marketing-ar .simulation-layout h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 31px;
  line-height: 1.18;
}

.marketing-ar .simulation-layout p:not(.content-kicker) {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.8;
}

.marketing-ar .simulation-cards {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.marketing-ar .simulation-cards article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.marketing-ar .simulation-cards strong {
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 900;
}

.marketing-ar .simulation-cards span {
  color: rgba(255,255,255,.74);
  font-size: 9.5px;
  line-height: 1.6;
}

.marketing-ar .case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.marketing-ar .case-grid article {
  position: relative;
  min-height: 292px;
  padding: 22px;
  border: 1px solid rgba(1,16,34,.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,245,242,.92)),
    linear-gradient(225deg, rgba(205,35,43,.07), transparent 52%, rgba(72,100,49,.08));
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.marketing-ar .case-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(270deg, var(--red), var(--green));
}

.marketing-ar .case-grid span {
  width: auto;
  height: auto;
  padding: 8px 11px;
  color: var(--red);
  border-color: rgba(205,35,43,.28);
  border-radius: 99px;
  background: rgba(205,35,43,.06);
  font-size: 8px;
}

.marketing-ar .case-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.marketing-ar .case-grid p {
  color: #4a5365;
  font-size: 11px;
  line-height: 1.7;
}

.marketing-ar .case-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.marketing-ar .case-grid li {
  position: relative;
  padding-right: 15px;
  color: #334155;
  font-size: 10px;
  line-height: 1.5;
}

.marketing-ar .case-grid li::before {
  content: "";
  position: absolute;
  right: 0;
  top: .48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.marketing-ar .political-field {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 30px;
  align-items: center;
  padding-top: clamp(42px, 5vw, 70px);
}

.marketing-ar .political-field::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(205,35,43,.08), transparent 28%),
    linear-gradient(225deg, rgba(255,255,255,.74), rgba(247,245,242,.58));
}

.marketing-ar .political-field h2 {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.2;
}

.marketing-ar .political-field p:not(.content-kicker) {
  color: #4a5365;
  line-height: 1.8;
}

.marketing-ar .field-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.marketing-ar .field-checklist span {
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(1,16,34,.08);
  border-radius: 8px;
  background:
    linear-gradient(270deg, rgba(205,35,43,.07), transparent 54%),
    #fff;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(1,16,34,.06);
}

.marketing-ar .deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.marketing-ar .deliverable-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 17px;
  color: var(--ink);
  border: 1px solid rgba(1,16,34,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.92));
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 15px 32px rgba(1,16,34,.07);
}

.marketing-ar .political-next {
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(205,35,43,.2), transparent 30%),
    linear-gradient(225deg, #071425, #011022);
}

.marketing-ar .political-next h2,
.marketing-ar .political-next p {
  color: #fff;
}

.marketing-ar .political-next p {
  color: rgba(255,255,255,.76);
}

.marketing-ar .page-link:hover,
.marketing-ar .page-link:focus-visible {
  transform: translateX(-4px);
}

.marketing-ar .footer-main,
.marketing-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.marketing-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .marketing-ar .political-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 44%, rgba(1,16,34,.78) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      #011022;
  }

  .marketing-ar .political-hero h1,
  .marketing-ar .political-hero .sub-lead {
    margin-inline-start: 0;
  }

  .marketing-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .marketing-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .marketing-ar .political-hero-actions,
  .marketing-ar .political-hero-metrics,
  .marketing-ar .political-proof-strip,
  .marketing-ar .political-service-grid,
  .marketing-ar .model-lab,
  .marketing-ar .simulation-layout,
  .marketing-ar .case-grid,
  .marketing-ar .political-field,
  .marketing-ar .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .marketing-ar .political-hero-actions a {
    width: 100%;
  }

  .marketing-ar .political-proof-strip article {
    grid-template-columns: 42px 1fr;
  }

  .marketing-ar .political-proof-strip span {
    grid-column: 1;
  }

  .marketing-ar .political-proof-strip strong,
  .marketing-ar .political-proof-strip p {
    grid-column: 2;
  }

  .marketing-ar .model-lab::before {
    display: none;
  }

  .marketing-ar .model-lab article,
  .marketing-ar .case-grid article,
  .marketing-ar .political-service-grid .feature-card {
    min-height: 0;
  }

  .marketing-ar .simulation-layout img,
  .marketing-ar .political-field img {
    height: 230px;
  }

  .marketing-ar .field-checklist {
    grid-template-columns: 1fr;
  }

  .marketing-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Digital Campaigns detail page */
.digital-ar {
  direction: rtl;
  text-align: right;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.digital-ar .topbar,
.digital-ar .nav,
.digital-ar .site-header-shell .mega-menu,
.digital-ar .footer,
.digital-ar .references-band {
  direction: rtl;
}

.digital-ar .brand-copy strong,
.digital-ar .sub-hero h1,
.digital-ar .section-copy h2,
.digital-ar .digital-proof-strip strong,
.digital-ar .digital-service-grid .feature-card h3,
.digital-ar .digital-model-lab h3,
.digital-ar .digital-simulation-layout h2,
.digital-ar .digital-case-grid h3,
.digital-ar .digital-creative h2,
.digital-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.digital-ar .brand-copy small,
.digital-ar .breadcrumb,
.digital-ar .sub-kicker,
.digital-ar .content-kicker,
.digital-ar .digital-hero-actions a,
.digital-ar .digital-hero-metrics small,
.digital-ar .digital-proof-strip strong,
.digital-ar .digital-model-lab h3,
.digital-ar .digital-simulation-cards strong,
.digital-ar .digital-case-grid span,
.digital-ar .creative-checklist span,
.digital-ar .digital-deliverable-grid span {
  letter-spacing: 0;
  text-transform: none;
}

.digital-ar .digital-hero {
  min-height: clamp(560px, 46vw, 700px);
  background:
    linear-gradient(100deg, rgba(1,16,34,.2) 0%, rgba(1,16,34,.72) 45%, rgba(1,16,34,.99) 100%),
    radial-gradient(circle at 24% 34%, rgba(205,35,43,.24), transparent 26%),
    var(--sub-bg) 38% center / cover no-repeat,
    #011022;
}

.digital-ar .digital-hero::before {
  z-index: 1;
  background:
    linear-gradient(270deg, transparent 0 13%, rgba(205,35,43,.48) 13.2% 15.8%, transparent 16%),
    linear-gradient(270deg, transparent 0 18%, rgba(72,100,49,.5) 18.2% 20%, transparent 20.2%),
    repeating-linear-gradient(270deg, transparent 0 88px, rgba(255,255,255,.04) 89px 90px),
    linear-gradient(180deg, rgba(1,16,34,.96), rgba(1,16,34,.44) 48%, rgba(1,16,34,.86));
}

.digital-ar .digital-hero .sub-hero-copy {
  z-index: 2;
  direction: rtl;
  text-align: right;
  padding-bottom: clamp(70px, 7vw, 118px);
}

.digital-ar .breadcrumb {
  flex-direction: row;
}

.digital-ar .digital-hero h1 {
  margin-inline-start: auto;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.12;
}

.digital-ar .digital-hero .sub-lead {
  margin-inline-start: auto;
  max-width: 650px;
  line-height: 1.85;
}

.digital-ar .digital-hero-actions {
  justify-content: flex-start;
}

.digital-ar .digital-hero-actions a {
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  border-color: rgba(205,35,43,.92);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  font-size: 10px;
}

.digital-ar .digital-hero-actions a + a {
  border-color: rgba(255,255,255,.42);
  background: rgba(1,16,34,.58);
}

.digital-ar .digital-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 150px));
  max-width: 500px;
}

.digital-ar .digital-hero-metrics span {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    rgba(1,16,34,.55);
}

.digital-ar .digital-hero-metrics span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.digital-ar .digital-hero-metrics b {
  color: #fff;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.digital-ar .digital-hero-metrics small {
  font-size: 9px;
  line-height: 1.35;
}

.digital-ar .section-copy,
.digital-ar .digital-proof-strip,
.digital-ar .digital-service-grid,
.digital-ar .digital-model-lab,
.digital-ar .digital-simulation-layout,
.digital-ar .digital-case-grid,
.digital-ar .digital-creative,
.digital-ar .digital-deliverable-grid,
.digital-ar .digital-next {
  direction: rtl;
  text-align: right;
}

.digital-ar .digital-proof-strip article {
  grid-template-columns: 1fr 34px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, #071425, #0b2038),
    #011022;
}

.digital-ar .digital-proof-strip span {
  grid-column: 2;
  color: var(--red-2);
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.digital-ar .digital-proof-strip strong,
.digital-ar .digital-proof-strip p {
  grid-column: 1;
}

.digital-ar .digital-proof-strip strong {
  color: #fff;
}

.digital-ar .digital-proof-strip p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.digital-ar .digital-service-grid {
  gap: 14px;
}

.digital-ar .digital-service-grid .feature-card {
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(247,245,242,.9)),
    linear-gradient(270deg, rgba(205,35,43,.08), transparent 48%, rgba(72,100,49,.08));
}

.digital-ar .digital-service-grid .feature-card::before {
  right: 0;
  left: auto;
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--green));
}

.digital-ar .digital-service-grid .feature-card p {
  line-height: 1.7;
}

.digital-ar .digital-models {
  background:
    radial-gradient(circle at 22% 16%, rgba(205,35,43,.2), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(72,100,49,.2), transparent 30%),
    linear-gradient(225deg, #011022, #071b30);
}

.digital-ar .digital-model-lab {
  background:
    repeating-linear-gradient(270deg, transparent 0 88px, rgba(255,255,255,.035) 89px 90px),
    rgba(255,255,255,.045);
}

.digital-ar .digital-model-lab::before {
  background: linear-gradient(270deg, var(--red), rgba(255,255,255,.28), var(--green));
}

.digital-ar .digital-model-lab article::before {
  background: radial-gradient(circle at 20% 15%, rgba(205,35,43,.18), transparent 38%);
}

.digital-ar .digital-model-lab b {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(180deg, var(--red), var(--green));
}

.digital-ar .digital-model-lab p {
  line-height: 1.7;
}

.digital-ar .digital-simulation-band {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 24% 38%, rgba(205,35,43,.2), transparent 26%),
    #011022;
}

.digital-ar .digital-simulation-layout figure,
.digital-ar .digital-creative figure {
  border-radius: 12px;
}

.digital-ar .digital-simulation-layout h2,
.digital-ar .digital-creative h2 {
  line-height: 1.2;
}

.digital-ar .digital-simulation-layout p:not(.content-kicker) {
  line-height: 1.8;
}

.digital-ar .digital-simulation-cards article {
  border-radius: 8px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.digital-ar .digital-simulation-cards span {
  line-height: 1.6;
}

.digital-ar .digital-case-grid article {
  position: relative;
  border-radius: 12px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,245,242,.92)),
    linear-gradient(225deg, rgba(205,35,43,.07), transparent 52%, rgba(72,100,49,.08));
}

.digital-ar .digital-case-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(270deg, var(--red), var(--green));
}

.digital-ar .digital-case-grid span {
  color: var(--red);
  border-color: rgba(205,35,43,.28);
  background: rgba(205,35,43,.06);
}

.digital-ar .digital-case-grid h3 {
  line-height: 1.25;
}

.digital-ar .digital-case-grid p {
  line-height: 1.7;
}

.digital-ar .digital-case-grid ul {
  padding: 0;
}

.digital-ar .digital-case-grid li {
  padding-left: 0;
  padding-right: 15px;
  line-height: 1.5;
}

.digital-ar .digital-case-grid li::before {
  left: auto;
  right: 0;
}

.digital-ar .digital-creative {
  position: relative;
  isolation: isolate;
  padding-block: clamp(42px, 5vw, 70px);
}

.digital-ar .digital-creative::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(205,35,43,.08), transparent 28%),
    linear-gradient(225deg, rgba(255,255,255,.74), rgba(247,245,242,.58));
}

.digital-ar .digital-creative p:not(.content-kicker) {
  line-height: 1.8;
}

.digital-ar .creative-checklist span {
  border-radius: 8px;
  background:
    linear-gradient(270deg, rgba(205,35,43,.07), transparent 54%),
    #fff;
  font-size: 10px;
  line-height: 1.45;
}

.digital-ar .digital-deliverable-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.92));
  line-height: 1.45;
}

.digital-ar .digital-next {
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(205,35,43,.2), transparent 30%),
    linear-gradient(225deg, #071425, #011022);
}

.digital-ar .page-link:hover,
.digital-ar .page-link:focus-visible {
  transform: translateX(-4px);
}

.digital-ar .footer-main,
.digital-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.digital-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .digital-ar .digital-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 44%, rgba(1,16,34,.78) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      #011022;
  }

  .digital-ar .digital-hero h1,
  .digital-ar .digital-hero .sub-lead {
    margin-inline-start: 0;
  }

  .digital-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .digital-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .digital-ar .digital-hero-actions,
  .digital-ar .digital-hero-metrics,
  .digital-ar .digital-proof-strip,
  .digital-ar .digital-service-grid,
  .digital-ar .digital-model-lab,
  .digital-ar .digital-simulation-layout,
  .digital-ar .digital-case-grid,
  .digital-ar .digital-creative,
  .digital-ar .digital-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .digital-ar .digital-proof-strip article {
    grid-template-columns: 42px 1fr;
  }

  .digital-ar .digital-proof-strip span {
    grid-column: 1;
  }

  .digital-ar .digital-proof-strip strong,
  .digital-ar .digital-proof-strip p {
    grid-column: 2;
  }

  .digital-ar .digital-model-lab::before {
    display: none;
  }

  .digital-ar .digital-service-grid .feature-card,
  .digital-ar .digital-model-lab article,
  .digital-ar .digital-case-grid article {
    min-height: 0;
  }

  .digital-ar .creative-checklist {
    grid-template-columns: 1fr;
  }

  .digital-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Political Influence page */
.influence-ar,
.influence-ar h1,
.influence-ar h2,
.influence-ar h3,
.influence-ar p,
.influence-ar a,
.influence-ar span,
.influence-ar strong,
.influence-ar small,
.influence-ar b,
.influence-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.influence-ar .brand-copy small,
.influence-ar .breadcrumb,
.influence-ar .sub-kicker,
.influence-ar .content-kicker,
.influence-ar .influence-hero-actions a,
.influence-ar .influence-hero-metrics small,
.influence-ar .influence-proof-strip strong,
.influence-ar .influence-model-lab h3,
.influence-ar .influence-simulation-cards strong,
.influence-ar .influence-case-grid span,
.influence-ar .influence-checklist span,
.influence-ar .influence-deliverable-grid span {
  text-transform: none;
}

.influence-ar .influence-hero {
  min-height: clamp(560px, 46vw, 700px);
  background:
    linear-gradient(100deg, rgba(1,16,34,.2) 0%, rgba(1,16,34,.72) 45%, rgba(1,16,34,.99) 100%),
    radial-gradient(circle at 24% 34%, rgba(231,162,58,.18), transparent 26%),
    var(--sub-bg) 38% center / cover no-repeat,
    #011022;
}

.influence-ar .influence-hero::before {
  z-index: 1;
  background:
    linear-gradient(225deg, rgba(188,22,33,.45) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(215deg, transparent 0 15%, rgba(18,93,55,.44) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 72% 42%, rgba(231,162,58,.16), transparent 26%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(270deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.influence-ar .influence-hero .sub-hero-copy {
  z-index: 2;
  direction: rtl;
  text-align: right;
  padding-bottom: clamp(70px, 7vw, 118px);
}

.influence-ar .breadcrumb {
  flex-direction: row;
}

.influence-ar .influence-hero h1 {
  margin-inline-start: auto;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.14;
}

.influence-ar .influence-hero .sub-lead {
  margin-inline-start: auto;
  max-width: 650px;
  line-height: 1.85;
}

.influence-ar .influence-hero-actions {
  justify-content: flex-start;
}

.influence-ar .influence-hero-actions a {
  min-height: 44px;
  padding: 0 22px;
  border-color: rgba(231,162,58,.9);
  border-radius: 3px;
  color: #071425;
  font-size: 10px;
}

.influence-ar .influence-hero-actions a + a {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(1,16,34,.58);
}

.influence-ar .influence-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 150px));
  max-width: 500px;
}

.influence-ar .influence-hero-metrics span {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    rgba(1,16,34,.55);
}

.influence-ar .influence-hero-metrics span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-2), var(--green));
}

.influence-ar .influence-hero-metrics b {
  color: #fff;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.influence-ar .influence-hero-metrics small {
  font-size: 9px;
  line-height: 1.35;
}

.influence-ar .section-copy,
.influence-ar .influence-proof-strip,
.influence-ar .influence-service-grid,
.influence-ar .influence-model-lab,
.influence-ar .influence-simulation-layout,
.influence-ar .influence-case-grid,
.influence-ar .influence-media-room,
.influence-ar .influence-deliverable-grid,
.influence-ar .influence-next {
  direction: rtl;
  text-align: right;
}

.influence-ar .influence-proof-strip article {
  grid-template-columns: 1fr 34px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, #071425, #0b2038),
    #011022;
}

.influence-ar .influence-proof-strip span {
  grid-column: 2;
  color: var(--gold-2);
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.influence-ar .influence-proof-strip strong,
.influence-ar .influence-proof-strip p {
  grid-column: 1;
}

.influence-ar .influence-proof-strip strong {
  color: #fff;
}

.influence-ar .influence-proof-strip p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.influence-ar .influence-service-grid {
  gap: 14px;
}

.influence-ar .influence-service-grid .feature-card {
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(247,245,242,.9)),
    linear-gradient(270deg, rgba(231,162,58,.08), transparent 48%, rgba(72,100,49,.08));
}

.influence-ar .influence-service-grid .feature-card::before {
  right: 0;
  left: auto;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-2), var(--green));
}

.influence-ar .influence-service-grid .feature-card p {
  line-height: 1.7;
}

.influence-ar .influence-models {
  background:
    radial-gradient(circle at 22% 16%, rgba(231,162,58,.18), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(72,100,49,.18), transparent 30%),
    linear-gradient(225deg, #011022, #071b30);
}

.influence-ar .influence-model-lab article {
  border-radius: 12px;
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #071425;
}

.influence-ar .influence-model-lab article::before {
  background: radial-gradient(circle at 20% 15%, rgba(231,162,58,.18), transparent 38%);
}

.influence-ar .influence-model-lab b {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(180deg, var(--gold-2), var(--green));
}

.influence-ar .influence-model-lab h3,
.influence-ar .influence-model-lab p {
  color: #fff;
}

.influence-ar .influence-model-lab p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.influence-ar .influence-simulation-band {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 24% 38%, rgba(231,162,58,.16), transparent 26%),
    #011022;
}

.influence-ar .influence-simulation-layout figure,
.influence-ar .influence-media-room figure {
  border-radius: 12px;
}

.influence-ar .influence-simulation-layout h2,
.influence-ar .influence-media-room h2 {
  line-height: 1.2;
}

.influence-ar .influence-simulation-layout p:not(.content-kicker),
.influence-ar .influence-media-room p:not(.content-kicker) {
  line-height: 1.8;
}

.influence-ar .influence-simulation-cards article {
  border-radius: 8px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.influence-ar .influence-simulation-cards span {
  line-height: 1.6;
}

.influence-ar .influence-case-grid article {
  position: relative;
  border-radius: 12px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,245,242,.92)),
    linear-gradient(225deg, rgba(231,162,58,.08), transparent 52%, rgba(72,100,49,.08));
}

.influence-ar .influence-case-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(270deg, var(--gold-2), var(--green));
}

.influence-ar .influence-case-grid span {
  color: var(--gold);
  border-color: rgba(231,162,58,.32);
  background: rgba(231,162,58,.08);
}

.influence-ar .influence-case-grid h3 {
  line-height: 1.25;
}

.influence-ar .influence-case-grid p {
  line-height: 1.7;
}

.influence-ar .influence-case-grid ul {
  padding: 0;
}

.influence-ar .influence-case-grid li {
  padding-left: 0;
  padding-right: 15px;
  line-height: 1.5;
}

.influence-ar .influence-case-grid li::before {
  left: auto;
  right: 0;
}

.influence-ar .influence-media-room {
  position: relative;
  isolation: isolate;
  padding-block: clamp(42px, 5vw, 70px);
}

.influence-ar .influence-media-room::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(231,162,58,.08), transparent 28%),
    linear-gradient(225deg, rgba(255,255,255,.74), rgba(247,245,242,.58));
}

.influence-ar .influence-checklist span {
  border-radius: 8px;
  background:
    linear-gradient(270deg, rgba(231,162,58,.08), transparent 54%),
    #fff;
  font-size: 10px;
  line-height: 1.45;
}

.influence-ar .influence-deliverable-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,245,242,.92));
  line-height: 1.45;
}

.influence-ar .influence-next {
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(231,162,58,.18), transparent 30%),
    linear-gradient(225deg, #071425, #011022);
}

.influence-ar .page-link:hover,
.influence-ar .page-link:focus-visible {
  transform: translateX(-4px);
}

.influence-ar .footer-main,
.influence-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.influence-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .influence-ar .influence-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 44%, rgba(1,16,34,.78) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      #011022;
  }

  .influence-ar .influence-hero h1,
  .influence-ar .influence-hero .sub-lead {
    margin-inline-start: 0;
  }

  .influence-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .influence-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .influence-ar .influence-hero-actions,
  .influence-ar .influence-hero-metrics,
  .influence-ar .influence-proof-strip,
  .influence-ar .influence-service-grid,
  .influence-ar .influence-model-lab,
  .influence-ar .influence-simulation-layout,
  .influence-ar .influence-case-grid,
  .influence-ar .influence-media-room,
  .influence-ar .influence-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .influence-ar .influence-proof-strip article {
    grid-template-columns: 42px 1fr;
  }

  .influence-ar .influence-proof-strip span {
    grid-column: 1;
  }

  .influence-ar .influence-proof-strip strong,
  .influence-ar .influence-proof-strip p {
    grid-column: 2;
  }

  .influence-ar .influence-service-grid .feature-card,
  .influence-ar .influence-model-lab article,
  .influence-ar .influence-case-grid article {
    min-height: 0;
  }

  .influence-ar .influence-checklist {
    grid-template-columns: 1fr;
  }

  .influence-ar .contact-lines {
    justify-content: flex-start;
  }
}

/* Arabic Data & AI Intelligence page */
.intelligence-ar,
.intelligence-ar h1,
.intelligence-ar h2,
.intelligence-ar h3,
.intelligence-ar p,
.intelligence-ar a,
.intelligence-ar span,
.intelligence-ar strong,
.intelligence-ar small,
.intelligence-ar b,
.intelligence-ar .footer-cta h2 {
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.intelligence-ar .brand-copy small,
.intelligence-ar .breadcrumb,
.intelligence-ar .sub-kicker,
.intelligence-ar .content-kicker,
.intelligence-ar .intelligence-hero-actions a,
.intelligence-ar .intelligence-hero-metrics small,
.intelligence-ar .intelligence-proof-strip strong,
.intelligence-ar .intelligence-model-lab h3,
.intelligence-ar .intelligence-simulation-cards strong,
.intelligence-ar .intelligence-case-grid span,
.intelligence-ar .agents-checklist span,
.intelligence-ar .intelligence-deliverable-grid span {
  text-transform: none;
}

.intelligence-ar .intelligence-hero {
  min-height: clamp(560px, 46vw, 700px);
  background:
    linear-gradient(100deg, rgba(1,16,34,.2) 0%, rgba(1,16,34,.72) 45%, rgba(1,16,34,.99) 100%),
    radial-gradient(circle at 24% 34%, rgba(85,196,210,.2), transparent 26%),
    var(--sub-bg) 38% center / cover no-repeat,
    #011022;
}

.intelligence-ar .intelligence-hero::before {
  z-index: 1;
  background:
    linear-gradient(225deg, rgba(188,22,33,.45) 0 5.5%, transparent 5.7% 100%),
    linear-gradient(215deg, transparent 0 15%, rgba(18,93,55,.44) 15.2% 20%, transparent 20.2% 100%),
    radial-gradient(circle at 72% 42%, rgba(85,196,210,.16), transparent 26%),
    linear-gradient(180deg, rgba(1,16,34,.98) 0, rgba(1,16,34,.54) 38%, rgba(1,16,34,.12) 76%),
    linear-gradient(270deg, rgba(1,16,34,.99) 0 39%, rgba(1,16,34,.1) 72%, transparent);
}

.intelligence-ar .intelligence-hero .sub-hero-copy {
  z-index: 2;
  direction: rtl;
  text-align: right;
  padding-bottom: clamp(70px, 7vw, 118px);
}

.intelligence-ar .breadcrumb {
  flex-direction: row;
}

.intelligence-ar .intelligence-hero h1 {
  margin-inline-start: auto;
  max-width: 760px;
  font-weight: 800;
  line-height: 1.14;
}

.intelligence-ar .intelligence-hero .sub-lead {
  margin-inline-start: auto;
  max-width: 680px;
  line-height: 1.85;
}

.intelligence-ar .intelligence-hero-actions {
  justify-content: flex-start;
}

.intelligence-ar .intelligence-hero-actions a {
  min-height: 44px;
  padding: 0 22px;
  border-color: rgba(85,196,210,.75);
  border-radius: 3px;
  color: #071425;
  background: linear-gradient(180deg, #9ae8f1, #55c4d2);
  font-size: 10px;
}

.intelligence-ar .intelligence-hero-actions a + a {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(1,16,34,.58);
}

.intelligence-ar .intelligence-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 150px));
  max-width: 500px;
}

.intelligence-ar .intelligence-hero-metrics span {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    rgba(1,16,34,.55);
}

.intelligence-ar .intelligence-hero-metrics span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3px;
  background: linear-gradient(180deg, #55c4d2, var(--green));
}

.intelligence-ar .intelligence-hero-metrics b {
  color: #fff;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.intelligence-ar .intelligence-hero-metrics small {
  font-size: 9px;
  line-height: 1.35;
}

.intelligence-ar .section-copy,
.intelligence-ar .intelligence-proof-strip,
.intelligence-ar .intelligence-service-grid,
.intelligence-ar .intelligence-model-lab,
.intelligence-ar .intelligence-simulation-layout,
.intelligence-ar .intelligence-case-grid,
.intelligence-ar .intelligence-agents,
.intelligence-ar .intelligence-deliverable-grid,
.intelligence-ar .intelligence-next {
  direction: rtl;
  text-align: right;
}

.intelligence-ar .intelligence-proof-strip article {
  grid-template-columns: 1fr 34px;
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, #071425, #0b2038),
    #011022;
}

.intelligence-ar .intelligence-proof-strip span {
  grid-column: 2;
  color: #55c4d2;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.intelligence-ar .intelligence-proof-strip strong,
.intelligence-ar .intelligence-proof-strip p {
  grid-column: 1;
}

.intelligence-ar .intelligence-proof-strip strong {
  color: #fff;
}

.intelligence-ar .intelligence-proof-strip p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.intelligence-ar .intelligence-service-grid {
  gap: 14px;
}

.intelligence-ar .intelligence-service-grid .feature-card {
  border-radius: 10px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(140deg, rgba(255,255,255,.98), rgba(245,250,249,.9)),
    linear-gradient(270deg, rgba(85,196,210,.08), transparent 48%, rgba(72,100,49,.08));
}

.intelligence-ar .intelligence-service-grid .feature-card::before {
  right: 0;
  left: auto;
  width: 5px;
  background: linear-gradient(180deg, #55c4d2, var(--green));
}

.intelligence-ar .intelligence-service-grid .feature-card p {
  line-height: 1.7;
}

.intelligence-ar .intelligence-models {
  background:
    radial-gradient(circle at 22% 16%, rgba(85,196,210,.2), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(72,100,49,.18), transparent 30%),
    linear-gradient(225deg, #011022, #071b30);
}

.intelligence-ar .intelligence-models .section-copy h2,
.intelligence-ar .intelligence-models .section-copy > p {
  color: #fff;
}

.intelligence-ar .intelligence-models .content-kicker {
  color: #55c4d2;
}

.intelligence-ar .intelligence-model-lab article {
  border-radius: 12px;
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #071425;
}

.intelligence-ar .intelligence-model-lab article::before {
  background: radial-gradient(circle at 20% 15%, rgba(85,196,210,.18), transparent 38%);
}

.intelligence-ar .intelligence-model-lab b {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(180deg, #55c4d2, var(--green));
}

.intelligence-ar .intelligence-model-lab h3,
.intelligence-ar .intelligence-model-lab p {
  color: #fff;
}

.intelligence-ar .intelligence-model-lab p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.intelligence-ar .intelligence-simulation-band {
  background:
    linear-gradient(270deg, rgba(1,16,34,.96), rgba(1,16,34,.82)),
    radial-gradient(circle at 24% 38%, rgba(85,196,210,.18), transparent 26%),
    #011022;
}

.intelligence-ar .intelligence-simulation-layout figure,
.intelligence-ar .intelligence-agents figure {
  border-radius: 12px;
}

.intelligence-ar .intelligence-simulation-layout h2,
.intelligence-ar .intelligence-agents h2 {
  line-height: 1.2;
}

.intelligence-ar .intelligence-simulation-layout p:not(.content-kicker),
.intelligence-ar .intelligence-agents p:not(.content-kicker) {
  line-height: 1.8;
}

.intelligence-ar .intelligence-simulation-cards article {
  border-radius: 8px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.intelligence-ar .intelligence-simulation-cards strong {
  color: #9ae8f1;
}

.intelligence-ar .intelligence-simulation-cards span {
  line-height: 1.6;
}

.intelligence-ar .intelligence-case-grid article {
  position: relative;
  border-radius: 12px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,250,249,.92)),
    linear-gradient(225deg, rgba(85,196,210,.08), transparent 52%, rgba(72,100,49,.08));
}

.intelligence-ar .intelligence-case-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(270deg, #55c4d2, var(--green));
}

.intelligence-ar .intelligence-case-grid span {
  color: #137988;
  border-color: rgba(85,196,210,.34);
  background: rgba(85,196,210,.08);
}

.intelligence-ar .intelligence-case-grid h3 {
  line-height: 1.25;
}

.intelligence-ar .intelligence-case-grid p {
  line-height: 1.7;
}

.intelligence-ar .intelligence-case-grid ul {
  padding: 0;
}

.intelligence-ar .intelligence-case-grid li {
  padding-left: 0;
  padding-right: 15px;
  line-height: 1.5;
}

.intelligence-ar .intelligence-case-grid li::before {
  left: auto;
  right: 0;
  background: #55c4d2;
}

.intelligence-ar .intelligence-agents {
  position: relative;
  isolation: isolate;
  padding-block: clamp(42px, 5vw, 70px);
}

.intelligence-ar .intelligence-agents::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(85,196,210,.08), transparent 28%),
    linear-gradient(225deg, rgba(255,255,255,.74), rgba(245,250,249,.58));
}

.intelligence-ar .agents-checklist span {
  border-radius: 8px;
  background:
    linear-gradient(270deg, rgba(85,196,210,.08), transparent 54%),
    #fff;
  font-size: 10px;
  line-height: 1.45;
}

.intelligence-ar .intelligence-deliverable-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border-color: rgba(1,16,34,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,250,249,.92));
  line-height: 1.45;
}

.intelligence-ar .intelligence-next {
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(85,196,210,.18), transparent 30%),
    linear-gradient(225deg, #071425, #011022);
}

.intelligence-ar .page-link:hover,
.intelligence-ar .page-link:focus-visible {
  transform: translateX(-4px);
}

.intelligence-ar .footer-main,
.intelligence-ar .footer-cta {
  direction: rtl;
  text-align: right;
}

.intelligence-ar .contact-lines {
  direction: ltr;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .intelligence-ar .intelligence-hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(1,16,34,.98) 0 44%, rgba(1,16,34,.78) 72%, rgba(1,16,34,.42) 100%),
      var(--sub-bg) center bottom / cover no-repeat,
      #011022;
  }

  .intelligence-ar .intelligence-hero h1,
  .intelligence-ar .intelligence-hero .sub-lead {
    margin-inline-start: 0;
  }

  .intelligence-ar .site-header-shell .nav a {
    justify-content: flex-end;
  }

  .intelligence-ar .site-header-shell .nav .language-switcher a {
    justify-content: center;
  }

  .intelligence-ar .intelligence-hero-actions,
  .intelligence-ar .intelligence-hero-metrics,
  .intelligence-ar .intelligence-proof-strip,
  .intelligence-ar .intelligence-service-grid,
  .intelligence-ar .intelligence-model-lab,
  .intelligence-ar .intelligence-simulation-layout,
  .intelligence-ar .intelligence-case-grid,
  .intelligence-ar .intelligence-agents,
  .intelligence-ar .intelligence-deliverable-grid {
    grid-template-columns: 1fr;
  }

  .intelligence-ar .intelligence-proof-strip article {
    grid-template-columns: 42px 1fr;
  }

  .intelligence-ar .intelligence-proof-strip span {
    grid-column: 1;
  }

  .intelligence-ar .intelligence-proof-strip strong,
  .intelligence-ar .intelligence-proof-strip p {
    grid-column: 2;
  }

  .intelligence-ar .intelligence-service-grid .feature-card,
  .intelligence-ar .intelligence-model-lab article,
  .intelligence-ar .intelligence-case-grid article {
    min-height: 0;
  }

  .intelligence-ar .agents-checklist {
    grid-template-columns: 1fr;
  }

  .intelligence-ar .contact-lines {
    justify-content: flex-start;
  }
}
