:root {
  --red: #ef1735;
  --red-dark: #bb0b25;
  --red-soft: #fff1f3;
  --ink: #111113;
  --muted: #60636c;
  --soft: #f6f6f7;
  --line: #dedfe3;
  --dark: #0d0d0f;
  --dark-card: #151518;
  --white: #fff;
  --container: 1510px;
  --radius: 10px;
  --shadow: 0 20px 55px rgba(14, 15, 20, .10);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

html,
body {
  overflow-x: hidden
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

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

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

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

button {
  cursor: pointer
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: #111;
  color: #fff;
  border-radius: 6px
}

.skip-link:focus {
  transform: none
}

.wide-container,
.container {
  width: min(calc(100% - 112px), var(--container));
  margin-inline: auto
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase
}

.eyebrow-light {
  color: #fff
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: .18s ease
}

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

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(239, 23, 53, .22)
}

.button-primary:hover {
  background: #db102c
}

.button-outline {
  background: #fff;
  border: 1px solid #bfc1c6;
  color: #17171a
}

.button-outline:hover {
  border-color: var(--red);
  color: var(--red)
}

.button-light {
  background: #fff;
  color: var(--red-dark)
}

.icon {
  width: 22px;
  height: 22px
}

.icon-sm {
  width: 16px;
  height: 16px
}

.icon-xl {
  width: 58px;
  height: 58px
}

/* Header and exact mega-navigation language */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #ececef;
  backdrop-filter: blur(14px)
}

.site-header-inner {
  height: 80px;
  width: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 260px;
  white-space: nowrap
}

.brand-text {
  display: flex;
  align-items: baseline;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.045em
}

.brand-text strong {
  font-weight: 800
}

.brand-text em {
  font-style: normal;
  font-weight: 800;
  color: var(--red);
  margin-left: 5px
}

.brand img {
  width: 20px;
  height: 27px;
  object-fit: contain;
  object-position: center;
  transform: rotate(13deg)
}

.primary-nav {
  margin-left: auto
}

.primary-nav>ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none
}

.nav-item {
  position: relative
}

.nav-item>a {
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap
}

.nav-item.active>a,
.nav-item:hover>a {
  color: var(--red)
}

.has-mega>a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 0 3px 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg)
}

.header-cta {
  margin-left: 22px;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 21px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(239, 23, 53, .24)
}

.mega-menu {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 630px;
  padding: 25px 28px 27px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  background: #fff;
  border: 1px solid #d7d8dd;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(17, 18, 24, .15);
  transition: .18s ease
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.nav-item:nth-child(2) .mega-menu {
  left: 0;
  transform: translate(0, 12px);
  width: 560px
}

.nav-item:nth-child(2):hover .mega-menu,
.nav-item:nth-child(2):focus-within .mega-menu,
.nav-item:nth-child(2).open .mega-menu {
  transform: translate(0, 0)
}

.nav-item:nth-child(4) .mega-menu {
  left: 50%;
  width: 630px
}

.nav-item:nth-child(5) .mega-menu {
  left: auto;
  right: -130px;
  transform: translate(0, 12px)
}

.nav-item:nth-child(5):hover .mega-menu,
.nav-item:nth-child(5):focus-within .mega-menu,
.nav-item:nth-child(5).open .mega-menu {
  transform: translate(0, 0)
}

.mega-kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em
}

.mega-grid {
  display: grid;
  gap: 23px 32px
}

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

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

/* .mega-link {
  display: block
} */

.mega-link strong {
  display: block;
  font-size: 15px;
  line-height: 1.15
}

.mega-link span {
  display: block;
  margin-top: 7px;
  color: #5e6068;
  font-size: 12px;
  line-height: 1.35
}

.mega-link:hover strong {
  color: var(--red)
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 9px
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #111
}

/* Homepage */
.home-hero {
  overflow: hidden;
  background: linear-gradient(105deg, #fff 0%, #fff 58%, #fbf8fa 100%);
  padding: 58px 0 56px
}

.home-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 68px;
  align-items: center
}

.home-hero-copy {
  max-width: 600px
}

.home-hero h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(52px, 5.45vw, 70px);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 800
}

.home-hero-copy>p:not(.eyebrow) {
  max-width: 565px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 13px
}

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

.trust-row {
  display: flex;
  gap: 26px;
  margin-top: 29px;
  color: #24252b;
  font-size: 11px;
  font-weight: 700
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px
}

.trust-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f2;
  color: var(--red);
  font-size: 8px;
  font-style: normal
}

.trust-icon.ms {
  grid-template-columns: repeat(2, 5px);
  grid-template-rows: repeat(2, 5px);
  gap: 1px;
  border-radius: 0;
  background: transparent
}

.trust-icon.ms i:nth-child(1) {
  background: #f25022
}

.trust-icon.ms i:nth-child(2) {
  background: #7fba00
}

.trust-icon.ms i:nth-child(3) {
  background: #00a4ef
}

.trust-icon.ms i:nth-child(4) {
  background: #ffb900
}

.trust-icon.outcome {
  font-size: 15px
}

.home-hero-art {
  min-height: 365px;
  position: relative;
  display: grid;
  place-items: center
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 330px;
  background: radial-gradient(circle, rgba(117, 102, 255, .24), rgba(124, 118, 255, .06) 42%, transparent 68%);
  filter: blur(3px)
}

.hero-network {
  position: relative;
  width: min(100%, 570px);
  height: 360px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .85), rgba(242, 242, 255, .72));
  border-radius: 8px;
  box-shadow: 0 28px 75px rgba(88, 78, 180, .08)
}

.network-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 185px;
  height: 210px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff, #f2efff);
  border: 1px solid #d7d0ff;
  border-radius: 14px;
  box-shadow: 0 22px 45px rgba(93, 76, 235, .25)
}

.network-core::before,
.network-core::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #685cff;
  top: 17px
}

.network-core::before {
  left: 16px
}

.network-core::after {
  left: 28px;
  opacity: .4
}

.network-core img {
  width: 96px
}

.network-node {
  position: absolute;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dad8ff;
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(80, 68, 190, .12);
  color: #6b61ff;
  font-weight: 800
}

.network-node img {
  width: 29px;
  height: 29px;
  object-fit: contain
}

.node-doc {
  left: 35px;
  top: 56px
}

.node-data {
  left: 35px;
  top: 151px
}

.node-user {
  left: 35px;
  bottom: 56px
}

.node-app {
  right: 35px;
  top: 56px
}

.node-flow {
  right: 35px;
  top: 151px
}

.node-sp {
  right: 35px;
  bottom: 56px
}

.node-bi {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%)
}

.wire {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: #6e62ff
}

.w1 {
  left: 89px;
  top: 82px;
  width: 117px
}

.w2 {
  left: 89px;
  top: 177px;
  width: 117px
}

.w3 {
  right: 89px;
  top: 82px;
  width: 117px
}

.w4 {
  right: 89px;
  top: 177px;
  width: 117px
}

.wire::before,
.wire::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #6e62ff;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%)
}

.wire::before {
  left: -4px
}

.wire::after {
  right: -4px
}

.triad-grid {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px
}

.triad-grid article {
  min-height: 178px;
  padding: 29px 28px;
  background: #fff;
  border: 1px solid #dfe0e4;
  border-radius: 8px;
  box-shadow: 0 15px 42px rgba(25, 26, 31, .05)
}

.triad-grid article>span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  float: left;
  margin-right: 14px;
  border-radius: 50%;
  background: #fff0f2;
  color: var(--red);
  font-size: 21px
}

.triad-grid h2 {
  margin: 7px 0 0;
  font-size: 22px
}

.triad-grid p {
  clear: both;
  margin: 22px 0 18px;
  color: var(--muted);
  font-size: 12px
}

.triad-grid article div {
  display: flex;
  gap: 8px
}

.triad-grid article a {
  padding: 4px 8px;
  border: 1px solid #dedfe3;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.triad-grid article a:hover {
  border-color: var(--red);
  color: var(--red)
}

.business-first {
  padding: 0px 0 75px
}

.business-first-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end
}

.business-first h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -.05em
}

.business-first p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  max-width: 640px
}

.business-first a {
  color: var(--red);
  font-size: 13px;
  font-weight: 700
}

.applied-band {
  padding: 70px 0 72px;
  color: #fff;
  background: linear-gradient(112deg, #0c0c0f 0%, #0c0c0f 63%, #3c1118 100%)
}

.applied-band h2 {
  margin: 0;
  font-size: 39px;
  line-height: 1.03;
  letter-spacing: -.05em
}

.band-lead {
  max-width: 600px;
  margin: 13px 0 33px;
  color: #b9bbc2;
  font-size: 13px
}

.applied-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #29292e
}

.applied-cards a {
  min-height: 185px;
  padding: 25px 27px;
  border-right: 1px solid #29292e;
  background: #141417
}

.applied-cards a:last-child {
  border-right: 0
}

.applied-cards span {
  display: block;
  color: #8e9099;
  font-size: 9px
}

.applied-cards b {
  display: block;
  margin-top: 27px;
  font-size: 17px
}

.applied-cards p {
  margin: 10px 0 16px;
  color: #b3b5bd;
  font-size: 11px
}

.applied-cards em {
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700
}

.applied-cards a:hover b,
.applied-cards a:hover em {
  color: #ff5a70
}

.business-apps-home {
  padding: 72px 0 80px
}

.business-apps-home h2 {
  margin: 0;
  font-size: 39px;
  line-height: 1.04;
  letter-spacing: -.05em
}

.section-intro {
  max-width: 610px;
  margin: 13px 0 31px;
  color: var(--muted);
  font-size: 13px
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px
}

.product-card {
  position: relative;
  min-height: 160px;
  padding: 22px 22px 20px;
  border: 1px solid #dedfe3;
  border-radius: 7px;
  background: #fff
}

.product-card>span {
  display: block;
  color: #a4a6ae;
  font-size: 9px
}

.product-card>i {
  position: absolute;
  right: 16px;
  top: 14px;
  color: var(--red);
  font-style: normal
}

.product-card img {
  width: 34px;
  height: 34px;
  margin-top: 21px;
  object-fit: contain
}

.product-card b {
  display: block;
  margin-top: 8px;
  font-size: 15px
}

.product-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px
}

.product-card:hover {
  border-color: #ff9aa7;
  box-shadow: var(--shadow)
}

.microsoft-note {
  margin: 14px 0 0;
  color: #9b9da4;
  font-size: 8px
}

.outcome-band {
  padding: 54px 0;
  background: linear-gradient(112deg, #0d0d10 0%, #0d0d10 63%, #3b1118 100%);
  color: #fff
}

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

.outcome-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.01;
  letter-spacing: -.05em
}

.outcome-grid dl {
  margin: 0
}

.outcome-grid dl div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .26)
}

.outcome-grid dt {
  font-size: 11px;
  font-weight: 700
}

.outcome-grid dd {
  margin: 0;
  font-size: 11px
}

.latest-home {
  padding: 59px 0
}

.latest-home h2 {
  margin: 0 0 30px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -.05em
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.insight-grid a {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #f5f5f6;
  border-radius: 6px
}

.insight-grid span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em
}

.insight-grid b {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.15
}

.insight-grid em {
  margin-top: auto;
  color: var(--red);
  font-size: 10px;
  font-style: normal;
  font-weight: 700
}

.insight-grid a:hover {
  background: #efeff1
}

.home-faq {
  padding: 0px 0 74px
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px
}

.faq-grid h2 {
  margin: 0;
  font-size: 39px;
  line-height: 1.03;
  letter-spacing: -.05em
}

.faq-grid>div:first-child>p:last-child {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px
}

.faq {
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 700
}

.faq-plus {
  color: var(--red);
  font-size: 19px;
  font-weight: 400;
  transition: .18s ease
}

.faq-question[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg)
}

.faq-answer {
  display: none;
  padding: 0 45px 19px 0;
  color: var(--muted);
  font-size: 13px
}

.faq-answer.open {
  display: block
}

.faq-answer p {
  margin: 0
}

/* Editorial Blog / About – Image 2 language */
.editorial-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, #fff 0%, #fff 62%, #f8f8f9 100%)
}

.editorial-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -.06em;
  font-weight: 500
}

.editorial-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px
}

.editorial-list {
  padding: 0px 0 80px
}

.editorial-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 55px;
  align-items: start
}

.editorial-layout aside {
  display: grid;
  gap: 13px;
  position: sticky;
  top: 112px
}

.editorial-layout aside strong {
  margin-bottom: 4px;
  font-size: 13px
}

.editorial-layout aside a {
  color: #555861;
  font-size: 12px
}

.editorial-layout aside a:hover {
  color: var(--red)
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.editorial-card {
  overflow: hidden;
  border: 1px solid #dbdce0;
  border-radius: 9px;
  background: #fff
}

.editorial-card.featured {
  grid-column: 1/-1
}

.editorial-visual {
  height: 132px;
  display: grid;
  place-items: center;
  background: linear-gradient(105deg, #190f12, #ef1735);
  color: #fff
}

.featured .editorial-visual {
  height: 132px
}

.editorial-visual span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em
}

.editorial-card>div {
  padding: 14px 17px 17px
}

.editorial-card small {
  color: var(--red);
  font-size: 10px
}

.editorial-card h2 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 500
}

.editorial-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px
}

.read-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700
}

.editorial-card:hover {
  box-shadow: var(--shadow)
}

.about-story {
  padding: 0 0 30px
}

.about-story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px
}

.about-story h2,
.about-values h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -.055em
}

.about-story p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px
}

.about-values {
  padding: 74px 0;
  background: #f5f5f6
}

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

.value-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #d9dadd;
  background: #fff;
  border-radius: 8px
}

.value-grid span {
  color: var(--red);
  font-size: 10px
}

.value-grid h3 {
  margin: 55px 0 0;
  font-size: 19px
}

.value-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px
}

.about-mission {
  padding: 70px 0;
  background: linear-gradient(110deg, #0d0d0f, #401118);
  color: #fff
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 110px;
  align-items: center
}

.mission-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.05em
}

.mission-grid p {
  color: #c4c5ca;
  font-size: 15px
}

/* Shared solution pages – Image 3 language, preserving all source sections */
.breadcrumbs {
  padding-top: 18px;
  color: #777981;
  font-size: 11px
}

.breadcrumbs a:hover {
  color: var(--red)
}

.crumb-sep {
  margin: 0 7px;
  color: #b8bac0
}

.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(110deg, #fff 0%, #fff 55%, #faf9fb 100%)
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 25px 0 0px
}

.page-hero-copy {
  max-width: 670px
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 5vw, 56px);
  line-height: .99;
  letter-spacing: -.06em;
  font-weight: 500
}

.page-hero-copy>p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px
}

.solution-mockup {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center
}

.mockup-card {
  width: min(100%, 650px);
  min-height: 292px;
  display: grid;
  grid-template-columns: 125px 1fr;
  overflow: hidden;
  border: 1px solid #d8d9dd;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(25, 27, 38, .12);
  transform: rotate(2deg)
}

.mockup-card aside {
  padding: 23px 17px;
  background: #111114;
  color: #fff
}

.mockup-card aside strong {
  display: block;
  margin-bottom: 32px;
  font-size: 13px
}

.mockup-card aside span {
  display: block;
  margin-top: 20px;
  color: #dedee4;
  font-size: 10px
}

.mockup-main {
  position: relative;
  padding: 52px 30px 30px
}

.mockup-product-icon {
  position: absolute;
  right: 27px;
  top: 24px;
  width: 46px;
  height: 46px;
  object-fit: contain
}

.mockup-main small {
  color: #7f8189;
  font-size: 10px
}

.mockup-main h2 {
  margin: 6px 0 23px;
  font-size: 23px;
  font-weight: 500
}

.mockup-main i {
  display: block;
  height: 33px;
  margin-top: 12px;
  border-radius: 6px;
  background: #f2f2f3
}

.ai-visual-card {
  position: relative;
  z-index: 3;
  width: 300px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #fff;
  border: 1px solid #dadbdf;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(24, 25, 34, .13)
}

.ai-visual-card>img {
  width: 120px
}

.ai-visual-card>strong {
  margin-top: 24px;
  text-align: center;
  font-size: 18px
}

.ai-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0f2;
  color: var(--red);
  font-size: 9px;
  font-weight: 800
}

.ai-rail {
  display: flex;
  gap: 6px;
  margin-top: 23px
}

.ai-rail b {
  width: 44px;
  height: 6px;
  border-radius: 5px;
  background: #eeeef1
}

.ai-rail b:first-child {
  background: #ef1735
}

.orbit {
  position: absolute;
  border: 1px dashed #cabfff;
  border-radius: 50%
}

.o1 {
  width: 390px;
  height: 290px
}

.o2 {
  width: 500px;
  height: 230px;
  transform: rotate(25deg)
}

.spark {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #59dbef;
  box-shadow: 0 0 0 7px rgba(89, 219, 239, .12)
}

.s1 {
  right: 8%;
  top: 20%
}

.s2 {
  left: 10%;
  bottom: 12%;
  background: #ef1735;
  box-shadow: 0 0 0 7px rgba(239, 23, 53, .12)
}

.section {
  padding: 40px 0;
}


.section-soft {
  background: #f5f5f6
}

.section-wash {
  background: #fff7f8
}

.section-dark {
  background: #0e0e11;
  color: #fff
}

.section-head {
  margin-bottom: 42px;
  text-align: left
}

.section-head p>a {
 text-decoration: underline;
 font-weight: 700
}

.section-head .section-title {
  max-width: 780px
}

.section-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -.05em;
  font-weight: 500
}

.section-lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px
}

.section-dark .section-title {
  color: #fff
}

.section-dark .section-lead {
  color: #bfc0c6
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 15px
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr)
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr)
}

.content-card,
.service-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid #d9dade;
  border-radius: 8px;
  background: #fff
}

.content-card h3,
.service-card h3 {
  margin: 34px 0 0;
  font-size: 19px
}

.content-card p,
.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px
}

.icon-disc {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f2;
  color: var(--red)
}

.service-card {
  display: block
}

.service-card:hover,
.content-card:hover {
  border-color: #fa8b9a;
  box-shadow: var(--shadow)
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start
}

.sticky {
  position: sticky;
  top: 115px
}

.sticky .button-primary{
  margin-top: 20px;
}

.left-copy {
  margin-left: 0
}

.deliverable-panel,
.dark-panel {
  padding: 30px;
  border: 1px solid #d9dade;
  border-radius: 9px;
  background: #fff
}

.dark-panel {
  border-color: #2b2b30;
  background: #151518
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #313239;
  font-size: 14px
}

.check-list .icon {
  width: 24px;
  height: 24px;
  padding: 5px;
  border-radius: 50%;
  background: #e7faf3;
  color: #148c65
}

.dark-panel .check-list li {
  color: #e2e2e6
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #2a2a2f
}

.process {
  min-height: 170px;
  padding: 27px;
  border-right: 1px solid #2a2a2f
}

.process:last-child {
  border-right: 0
}

.process::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  color: #888a93;
  font-size: 10px
}

.process-grid {
  counter-reset: process
}

.process h3 {
  margin: 48px 0 0;
  font-size: 18px
}

.process p {
  margin: 8px 0 0;
  color: #bcbec5;
  font-size: 12px
}

.hub-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.hub-card,
.related-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid #d9dade;
  border-radius: 8px;
  background: #fff
}

.hub-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px
}

.hub-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff0f2;
  color: var(--red)
}

.hub-card strong,
.related-card h3 {
  font-size: 17px
}

.hub-card small,
.related-card p {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px
}

.hub-arrow {
  color: var(--red)
}

.related-kicker {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em
}

.related-card h3 {
  margin: 40px 0 0
}

.related-card .link-arrow {
  margin-top: 25px
}

.hub-card:hover,
.related-card:hover {
  border-color: #fa8b9a;
  box-shadow: var(--shadow)
}

.faq .faq-question {
  font-size: 14px
}

.solution-page .section:has(.faq) {
  display: block
}

.solution-page .section:has(.faq)>.container {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px
}

.solution-page .section:has(.faq) .section-head {
  margin: 0
}

.solution-page .section:has(.faq) .faq {
  margin: 0
}

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

.industry {
  min-height: 200px;
  padding: 25px;
  background: #111114;
  color: #fff;
  border-radius: 8px
}

.industry h3 {
  margin: 70px 0 0;
  font-size: 17px
}

.industry p {
  color: #b9bbc2;
  font-size: 12px
}

.industry-detail-grid {
  display: grid;
  gap: 14px
}

.industry-detail-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 25px;
  border: 1px solid #d9dade;
  border-radius: 8px
}

.industry-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff0f2;
  color: var(--red)
}

.industry-detail-card h2 {
  margin: 0;
  font-size: 23px
}

.industry-detail-card p {
  color: var(--muted)
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 25px
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d9dade;
  border-radius: 8px
}

.contact-item h3 {
  margin: 0
}

.contact-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px
}

.form-card {
  padding: 30px;
  border: 1px solid #d9dade;
  border-radius: 8px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: grid;
  gap: 7px
}

.field-full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 700
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd0d5;
  border-radius: 5px
}

.field textarea {
  min-height: 130px
}

.form-note {
  color: var(--muted);
  font-size: 11px
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px;
  background: #eaf8f1;
  color: #106c4d
}

.form-status.show {
  display: block
}

/* Blog post / legal */
.article-hero {
  padding: 75px 0;
  background: linear-gradient(110deg, #fff, #f8f8f9)
}

.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center
}

.article-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 500
}

.article-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted)
}

.article-hero-icon {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 18px;
  background: #fff;
  color: var(--red)
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 780px);
  justify-content: center;
  gap: 70px;
  padding: 75px 0
}

.article-aside {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 11px
}

.article-aside a {
  color: var(--muted);
  font-size: 12px
}

.prose {
  font-size: 16px;
  color: #303137
}

.prose section {
  margin-bottom: 52px
}

.prose h2 {
  font-size: 31px;
  letter-spacing: -.04em
}

.callout {
  padding: 22px;
  background: #fff1f3;
  border-left: 3px solid var(--red)
}

.legal-hero {
  padding: 35px 0;
  background: #f8f8f9
}

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

.legal-hero h1 {
  font-size: 56px;
  letter-spacing: -.055em;
  margin: 0px;
}


.legal-content section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.legal-content p {
  color: var(--muted)
}

.sitemap-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 55px
}

.sitemap-summary {
  position: sticky;
  top: 110px
}

.sitemap-group {
  margin-bottom: 40px
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr auto;
  gap: 20px;
  padding: 17px;
  border-top: 1px solid var(--line)
}

/* Footer */
.footer-cta {
  padding: 48px 0;
  background: linear-gradient(105deg, #ef1735, #b40e27);
  color: #fff
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: center
}

.footer-cta h2 {
  max-width: 750px;
  margin: 0;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -.05em
}

.footer-cta p:not(.eyebrow) {
  margin: 0 0 18px;
  font-size: 13px
}

.site-footer {
  padding: 54px 0 0;
  background: #0d0d0f;
  color: #fff
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 70px
}

.brand-footer {
  min-width: 0
}

.brand-footer .brand-text strong {
  color: #fff
}

.footer-brand>p,
.footer-brand address {
  margin: 19px 0 0;
  color: #aaaeb8;
  font-size: 12px;
  font-style: normal
}

.footer-brand address a {
  color: #fff;
  font-weight: 700
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px
}

.footer-column h2 {
  margin: 0 0 9px;
  font-size: 10px;
  letter-spacing: .14em
}

.footer-column a {
  color: #c3c5cb;
  font-size: 11px
}

.footer-column a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding: 20px 0;
  border-top: 1px solid #29292d;
  color: #858890;
  font-size: 9px
}

@media(max-width:1200px) {

  .wide-container,
  .container {
    width: min(calc(100% - 56px), var(--container))
  }

  .site-header-inner {
    padding: 0 20px
  }

  .brand {
    min-width: 210px;
    margin: 0px;
  }

  .primary-nav>ul {
    gap: 20px
  }

  .header-cta {
    margin-left: 10px
  }

  .home-hero-grid {
    gap: 30px
  }

  .home-hero h1 {
    font-size: 60px
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:980px) {
  .menu-toggle {
    display: block
  }

  .header-cta {
    display: none
  }

  .brand {
    min-width: 0;
    padding-left: 0px;
  }

  .primary-nav {
    position: fixed;
    display: none;
    top: 80px;
    left: 18px;
    right: 18px;
    max-height: calc(100vh - 100px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow)
  }

  .primary-nav.open {
    display: block
  }

  .primary-nav>ul {
    display: block;
    padding: 10px
  }

  .nav-item>a {
    height: 48px;
    padding: 0 10px
  }

  .mega-menu,
  .nav-item:nth-child(2) .mega-menu,
  .nav-item:nth-child(4) .mega-menu,
  .nav-item:nth-child(5) .mega-menu {
    position: static;
    width: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    padding: 14px;
    margin: 0 5px 8px;
    box-shadow: none;
    border-radius: 8px
  }

  .has-mega.open .mega-menu {
    display: block
  }

  .mega-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .home-hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr
  }

  .home-hero-art {
    order: -1;
    min-height: 320px
  }

  .hero-network {
    height: 320px
  }

  .home-hero-copy {
    max-width: none
  }

  .triad-grid {
    grid-template-columns: 1fr
  }

  .business-first-grid,
  .outcome-grid,
  .faq-grid,
  .footer-cta-inner,
  .about-story-grid,
  .mission-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .applied-cards {
    grid-template-columns: 1fr
  }

  .applied-cards a {
    border-right: 0;
    border-bottom: 1px solid #29292e
  }

  .applied-cards a:last-child {
    border-bottom: 0
  }

  .editorial-layout {
    grid-template-columns: 1fr
  }

  .editorial-layout aside {
    position: static;
    display: flex;
    flex-wrap: wrap
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .page-hero {
    min-height: auto
  }

  .solution-page .section:has(.faq)>.container {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .cards-3 {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .process:nth-child(2) {
    border-right: 0
  }

  .process:nth-child(-n+2) {
    border-bottom: 1px solid #2a2a2f
  }

  .hub-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .article-layout {
    grid-template-columns: 1fr
  }

  .article-aside {
    position: static
  }

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

@media(max-width:640px) {

  .wide-container,
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

  .site-header-inner {
    height: 70px;
    padding: 0 14px
  }

  .primary-nav {
    top: 70px;
    left: 10px;
    right: 10px
  }

  .brand-text {
    font-size: 19px
  }

  .brand img {
    width: 17px;
    height: 23px
  }

  .mega-grid-2,
  .mega-grid-3 {
    grid-template-columns: 1fr
  }

  .home-hero {
    padding-top: 32px
  }

  .home-hero h1,
  .page-hero-copy h1,
  .editorial-hero h1,
  .article-hero h1 {
    font-size: 42px
  }

  .home-hero-art {
    min-height: 260px
  }

  .hero-network {
    transform: scale(.78);
    width: 530px
  }

  .trust-row {
    display: grid;
    gap: 10px
  }

  .business-first h2,
  .applied-band h2,
  .business-apps-home h2,
  .outcome-grid h2,
  .latest-home h2,
  .faq-grid h2,
  .about-story h2,
  .about-values h2,
  .mission-grid h2,
  .section-title,
  .footer-cta h2 {
    font-size: 32px
  }

  .product-grid,
  .insight-grid,
  .editorial-grid,
  .value-grid,
  .cards-3,
  .cards-4,
  .hub-grid,
  .related-grid,
  .industry-grid {
    grid-template-columns: 1fr
  }

  .editorial-card.featured {
    grid-column: auto
  }

  .outcome-grid dl div {
    grid-template-columns: 1fr;
    gap: 5px
  }

  .page-hero-grid {
    padding-top: 35px
  }

  .mockup-card {
    grid-template-columns: 95px 1fr;
    min-height: 250px
  }

  .mockup-main {
    padding: 45px 18px 22px
  }

  .mockup-product-icon {
    width: 38px;
    height: 38px
  }

  .solution-mockup {
    min-height: 290px
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .process {
    border-right: 0;
    border-bottom: 1px solid #2a2a2f
  }

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

  .field-full {
    grid-column: auto
  }

  .article-hero-inner {
    grid-template-columns: 1fr
  }

  .article-hero-icon {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

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

  .footer-bottom {
    display: grid;
    gap: 8px
  }

  .sitemap-layout {
    grid-template-columns: 1fr
  }

  .sitemap-row {
    grid-template-columns: 1fr
  }

  .about-hero br,
  .editorial-hero br {
    display: none
  }
}

@media(min-width:981px) {
  .nav-item:nth-child(4) .mega-menu {
    position: fixed;
    left: 74px;
    right: auto;
    top: 68px;
    width: 630px;
    transform: translateY(12px)
  }

  .nav-item:nth-child(4):hover .mega-menu,
  .nav-item:nth-child(4):focus-within .mega-menu,
  .nav-item:nth-child(4).open .mega-menu {
    transform: translateY(0)
  }
}


/* v4 brand, navigation and service-directory refinements */
.brand {
  min-width: 250px;
  gap: 0;
  padding-left: 150px;
}

.brand-logo {
  display: block;
  width: 218px;
  height: 48px;
  object-fit: contain;
  object-position: left center
}

.brand-footer .brand-logo {
  width: 205px;
  height: 56px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 8px
}

.brand-text {
  display: none
}

.business-apps-nav>.mega-menu {
  width: min(820px, calc(100vw - 48px));
  padding: 24px 28px 27px
}

.business-apps-nav .mega-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px
}

.business-apps-nav .mega-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 13px 10px;
  border-radius: 9px
}

.business-apps-nav .mega-link:hover {
  background: #fff3f5
}

.mega-link-icon {
  grid-row: 1/3;
  width: 40px;
  height: 40px;
  /* display: grid; */
  place-items: left;
  border-radius: 9px;
  /* background: #fff0f2; */
  color: var(--red)
}

.mega-link-icon .icon {
  width: 21px;
  height: 21px
}

.business-apps-nav .mega-link strong {
  align-self: end
}

.business-apps-nav .mega-link span:not(.mega-link-icon) {
  align-self: start
}

.home-hero-art {
  min-height: 430px
}

.home-hero-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: saturate(.98);
  mix-blend-mode: multiply
}

.home-hero-grid {
  grid-template-columns: .92fr 1.08fr;
  gap: 42px
}

.service-directory {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  border-top: 1px solid #f0f0f2;
  border-bottom: 1px solid #f0f0f2
}

.service-directory::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 23, 53, .1), transparent 68%);
  pointer-events: none
}

.service-directory-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 42px
}

.service-directory-head .section-title {
  max-width: 650px;
  margin-bottom: 0
}

.service-directory-lead p {
  max-width: 570px;
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.7;
}

.service-directory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.service-tile {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid #dedfe3;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff7287);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: #f3a1ad;
  box-shadow: 0 22px 55px rgba(36, 18, 22, .11)
}

.service-tile:hover::before {
  transform: scaleX(1)
}

.service-tile-featured {
  grid-column: 1 / -1;
  width: 100%;
  background: linear-gradient(135deg, #151518 0%, #2a1015 100%);
  color: #fff;
  border-color: #1a1a1e
}

/* .service-tile-featured p {
  color: #c6c7cd
} */

.service-tile-wide {
  grid-column: span 2
}

.service-number {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #a2a4ac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em
}

.service-product-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #fff0f2
}

.service-tile-featured .service-product-icon {
  background: rgba(255, 255, 255, .1)
}

.service-product-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain
}

.service-tile h3 {
  max-width: 430px;
  margin: 27px 0 10px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.035em
}

.service-tile p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65
}

/* Place this AFTER the rule above */
.service-tile-featured p.service-directory-lead-text {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 27px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800
}

.service-link .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s ease
}

.service-tile:hover .service-link .icon {
  transform: translateX(4px)
}

@media(min-width:981px) {
  .business-apps-nav>.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: 68px;
    transform: translate(-50%, 12px)
  }

  .business-apps-nav:hover>.mega-menu,
  .business-apps-nav:focus-within>.mega-menu,
  .business-apps-nav.open>.mega-menu {
    transform: translate(-50%, 0)
  }
}

@media(max-width:1200px) {
  .brand {
    min-width: 210px
  }

  .brand-logo {
    width: 188px
  }

  .business-apps-nav>.mega-menu {
    width: min(760px, calc(100vw - 40px))
  }

  .home-hero-image {
    max-width: 620px
  }
}

@media(max-width:980px) {
  .brand-logo {
    width: 190px;
    height: 46px
  }

  .business-apps-nav .mega-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .service-directory-head {
    grid-template-columns: 1fr;
    gap: 22px
  }

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

  .service-tile-featured,
  .service-tile-wide {
    grid-column: span 2
  }

  .home-hero-art {
    order: -1;
    min-height: auto
  }

  .home-hero-image {
    max-width: 680px;
    margin-inline: auto
  }
}

@media(max-width:640px) {
  .brand-logo {
    width: 158px;
    height: 42px
  }

  .business-apps-nav .mega-grid-3 {
    grid-template-columns: 1fr
  }

  .business-apps-nav .mega-link {
    grid-template-columns: 38px 1fr
  }

  .service-directory-grid {
    grid-template-columns: 1fr
  }

  .service-tile-featured,
  .service-tile-wide {
    grid-column: auto
  }

  .service-tile {
    min-height: 255px;
    padding: 23px
  }

  .service-directory-head {
    margin-bottom: 28px
  }

  .home-hero-image {
    width: 115%;
    max-width: none;
    margin-left: -7.5%
  }
}

/* specificity fixes for legacy selectors */
.brand img.brand-logo {
  display: block;
  width: 218px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  transform: none
}

.brand-footer img.brand-logo {
  width: 205px;
  height: 56px;
  transform: none
}

@media(min-width:981px) {
  li.nav-item.business-apps-nav>.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: 68px;
    width: min(820px, calc(100vw - 48px));
    transform: translate(-50%, 12px)
  }

  li.nav-item.business-apps-nav:hover>.mega-menu,
  li.nav-item.business-apps-nav:focus-within>.mega-menu,
  li.nav-item.business-apps-nav.open>.mega-menu {
    transform: translate(-50%, 0)
  }
}

@media(max-width:1200px) {
  .brand img.brand-logo {
    width: 188px
  }

  .brand-footer img.brand-logo {
    width: 190px
  }
}

@media(max-width:980px) {
  .brand img.brand-logo {
    width: 190px;
    height: 46px
  }
}

@media(max-width:640px) {
  .brand img.brand-logo {
    width: 158px;
    height: 42px
  }
}


/* alignment-only refinements for the requested AI hub pages */
.hub-grid-services,
.hub-grid-single {
  align-items: stretch
}

.hub-grid-services .hub-card,
.hub-grid-single .hub-card {
  position: relative;
  min-width: 0;
  min-height: 226px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 25px 62px 25px 25px;
}

.hub-grid-services .hub-card>span:nth-child(2),
.hub-grid-single .hub-card>span:nth-child(2) {
  display: block;
  min-width: 0;
  width: 100%
}

.hub-grid-services .hub-icon,
.hub-grid-single .hub-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px
}

.hub-grid-services .hub-card strong,
.hub-grid-single .hub-card strong {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.hub-grid-services .hub-card small,
.hub-grid-single .hub-card small {
  display: block;
  max-width: 100%;
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.55;
}

.hub-grid-services .hub-arrow,
.hub-grid-single .hub-arrow {
  position: absolute;
  right: 22px;
  top: 24px;
  width: 28px;
  height: 28px;
  color: var(--red);
  transition: transform .18s ease;
}

.hub-grid-services .hub-card:hover .hub-arrow,
.hub-grid-single .hub-card:hover .hub-arrow {
  transform: translateX(4px)
}

.hub-grid-single {
  grid-template-columns: minmax(0, 560px);
  max-width: 560px;
}

.hub-grid-single .hub-card {
  min-height: 210px
}

@media(max-width:980px) {
  .hub-grid-single {
    grid-template-columns: 1fr;
    max-width: 560px
  }
}

@media(max-width:640px) {

  .hub-grid-services .hub-card,
  .hub-grid-single .hub-card {
    min-height: 0;
    padding: 22px 55px 22px 22px
  }

  .hub-grid-services .hub-card strong,
  .hub-grid-single .hub-card strong {
    margin-top: 16px;
    font-size: 17px
  }

  .hub-grid-services .hub-arrow,
  .hub-grid-single .hub-arrow {
    right: 18px;
    top: 20px;
    width: 25px;
    height: 25px
  }
}

/* Landing page reference alignment — 2026-07-29 */
.home-page,
.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* The rules below are scoped to the landing page so the user's other edited
   pages and intentionally hidden content remain unchanged. */
.home-page {
  --home-max: 1510px;
}

.home-page .wide-container {
  width: min(calc(100% - 72px), var(--home-max));
}

.home-page .site-header-inner {
  height: 64px;
  padding-inline: 32px;
  gap: 22px;
}

.home-page .brand {
  min-width: 238px;
}

.home-page .brand img.brand-logo {
  width: 225px;
  height: 44px;
}

.home-page .primary-nav>ul {
  gap: 28px;
}

.home-page .nav-item>a {
  height: 64px;
  font-size: 14px;
  letter-spacing: -.015em;
}

.home-page .header-cta {
  min-height: 40px;
  margin-left: 18px;
  padding-inline: 20px;
  border-radius: 6px;
  font-size: 11px;
}

@media (min-width: 981px) {

  .home-page .mega-menu,
  .home-page li.nav-item.business-apps-nav>.mega-menu {
    top: 56px;
  }
}

.home-page .home-hero {
  padding: 47px 0 54px;
  background: linear-gradient(104deg, #fff 0%, #fff 54%, #fbf9fb 100%);
}

.home-page .home-hero-grid {
  min-height: 390px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.home-page .home-hero-copy {
  max-width: 550px;
  align-self: center;
}

.home-page .eyebrow {
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: .22em;
}

.home-page .home-hero h1 {
  max-width: 535px;
  margin: 0;
  font-size: clamp(57px, 5vw, 72px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.064em;
}

.home-page .home-hero-copy>p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 23px;
  font-size: 13px;
  line-height: 1.56;
}

.home-page .hero-actions {
  gap: 13px;
  margin-top: 26px;
}

.home-page .button {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
}

.home-page .trust-row {
  gap: 25px;
  margin-top: 26px;
  font-size: 10px;
}

.home-page .trust-icon {
  width: 26px;
  height: 26px;
}

.home-page .trust-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.home-page .home-hero-art {
  min-height: 390px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-page .home-hero-image {
  width: min(100%, 690px);
  max-width: 690px;
  height: auto;
  margin-left: auto;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.home-page .triad-grid {
  gap: 16px;
  margin-top: 24px;
}

.home-page .triad-grid article {
  min-height: 202px;
  padding: 28px 27px 25px;
  border-radius: 8px;
  box-shadow: 0 13px 38px rgba(25, 26, 31, .045);
}

.home-page .triad-grid article>span {
  width: 42px;
  height: 42px;
  margin-right: 15px;
  font-size: 22px;
}

.home-page .triad-grid h2 {
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: -.035em;
}

.home-page .triad-grid p {
  margin: 23px 0 20px;
  font-size: 11px;
  line-height: 1.55;
}

.home-page .triad-grid article a {
  padding: 4px 8px;
  font-size: 7px;
}

.home-page .business-first {
  padding: 0 0 78px;
}

.home-page .business-first-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: 108px;
  align-items: center;
}

.home-page .business-first h2 {
  font-size: 41px;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.home-page .business-first p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 17px;
  font-size: 13px;
  line-height: 1.58;
}

.home-page .business-first a {
  font-size: 12px;
}

.home-page .applied-band {
  padding: 72px 0 74px;
  background: linear-gradient(112deg, #0d0d10 0%, #0d0d10 63%, #3b1118 100%);
}

.home-page .applied-band h2 {
  font-size: 41px;
  line-height: 1.02;
}

.home-page .band-lead {
  margin: 13px 0 34px;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .applied-cards a {
  min-height: 212px;
  padding: 27px 28px 26px;
}

.home-page .applied-cards b {
  margin-top: 28px;
  font-size: 16px;
}

.home-page .applied-cards p,
.home-page .applied-cards em {
  font-size: 10px;
  line-height: 1.55;
}

.home-page .business-apps-home {
  padding: 75px 0 78px;
}

.home-page .business-apps-home h2 {
  font-size: 41px;
  line-height: 1.02;
}

.home-page .section-intro {
  margin: 13px 0 31px;
  font-size: 12px;
  line-height: 1.55;
}

.home-page .product-grid {
  gap: 13px;
}

.home-page .product-card {
  min-height: 174px;
  padding: 21px 22px 20px;
}

.home-page .product-card img {
  width: 35px;
  height: 35px;
  margin-top: 21px;
}

.home-page .product-card b {
  font-size: 14px;
}

.home-page .product-card p {
  font-size: 9.5px;
  line-height: 1.5;
}

.home-page .footer-cta {
  padding: 55px 0;
}

.home-page .footer-cta-inner {
  gap: 90px;
  align-items: center;
}

.home-page .footer-cta h2 {
  max-width: 680px;
  font-size: 40px;
  line-height: 1.02;
}


.home-page .brand-footer img.brand-logo {
  width: 220px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 1280px) {
  .home-page .wide-container {
    width: min(calc(100% - 52px), var(--home-max));
  }

  .home-page .site-header-inner {
    padding-inline: 22px;
  }

  .home-page .brand {
    min-width: 190px;
    padding-left: 0;
  }

  .home-page .brand img.brand-logo {
    width: 184px;
  }

  .home-page .primary-nav>ul {
    gap: 18px;
  }

  .home-page .header-cta {
    margin-left: 8px;
  }

  .home-page .home-hero-grid {
    gap: 30px;
  }

  .home-page .home-hero h1 {
    font-size: 60px;
  }

  .home-page .home-hero-image {
    max-width: 620px;
  }
}

@media (max-width: 980px) {
  .home-page .site-header-inner {
    height: 72px;
  }

  .home-page .primary-nav {
    top: 72px;
  }

  .home-page .home-hero {
    padding: 42px 0 50px;
  }

  .home-page .home-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .home-hero-copy {
    max-width: 690px;
  }

  .home-page .home-hero h1 {
    max-width: 680px;
    font-size: clamp(54px, 8vw, 68px);
  }

  .home-page .home-hero-art {
    order: initial;
    min-height: auto;
    justify-content: center;
  }

  .home-page .home-hero-image {
    width: min(100%, 760px);
    max-width: 760px;
    margin-inline: auto;
  }

  .home-page .triad-grid {
    grid-template-columns: 1fr;
  }

  .home-page .triad-grid article {
    min-height: 0;
  }

  .home-page .business-first-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page .business-first-grid>div:last-child {
    max-width: 720px;
  }

  .home-page .applied-cards {
    grid-template-columns: 1fr;
  }

  .home-page .applied-cards a {
    min-height: 175px;
  }

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

@media (max-width: 640px) {
  .home-page .wide-container {
    width: min(calc(100% - 28px), var(--home-max));
  }

  .home-page .site-header-inner {
    height: 68px;
    padding-inline: 14px;
  }

  .home-page .primary-nav {
    top: 68px;
  }

  .home-page .brand img.brand-logo {
    width: 160px;
    height: 40px;
  }

  .home-page .home-hero {
    padding: 34px 0 42px;
  }

  .home-page .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(42px, 13.2vw, 56px);
    line-height: .94;
  }

  .home-page .home-hero-copy>p:not(.eyebrow) {
    margin-top: 19px;
    font-size: 12px;
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .button {
    width: 100%;
  }

  .home-page .trust-row {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 21px;
  }

  .home-page .home-hero-image {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .home-page .triad-grid {
    margin-top: 18px;
  }

  .home-page .triad-grid article {
    padding: 24px 22px;
  }

  .home-page .business-first,
  .home-page .applied-band,
  .home-page .business-apps-home {
    padding-block: 58px;
  }

  .home-page .business-first h2,
  .home-page .applied-band h2,
  .home-page .business-apps-home h2,
  .home-page .footer-cta h2 {
    font-size: 34px;
  }

  .home-page .product-grid {
    grid-template-columns: 1fr;
  }

  .home-page .product-card {
    min-height: 160px;
  }

  .home-page .footer-cta-inner {
    gap: 26px;
  }
}


/* Readability, delivery and industries refinement — 2026-07-29 */
/* Supporting copy is intentionally kept smaller than headings, but no longer tiny. */
.mega-link span {
  font-size: 13px;
  line-height: 1.45;
}

.home-page .home-hero-copy>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.6;
}

.home-page .trust-row {
  font-size: 13px;
  line-height: 1.35;
}

.home-page .triad-grid p {
  font-size: 14px;
  line-height: 1.6;
}

.home-page .triad-grid article a {
  font-size: 9.5px;
}

.home-page .business-first p:not(.eyebrow),
.home-page .band-lead,
.home-page .section-intro,
.home-page .footer-cta p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.6;
}

.home-page .applied-cards p {
  font-size: 13px;
  line-height: 1.58;
}

.home-page .applied-cards em {
  font-size: 12px;
}

.home-page .product-card p {
  font-size: 12px;
  line-height: 1.55;
}

.home-page .outcome-grid dt,
.home-page .outcome-grid dd {
  font-size: 14px;
  line-height: 1.5;
}

.home-page .insight-grid em {
  font-size: 11px;
}

.home-page .faq-grid>div:first-child>p:last-child,
.home-page .faq-answer {
  font-size: 13.5px;
  line-height: 1.58;
}

.section-lead {
  font-size: 16px;
  line-height: 1.6;
}

.content-card p,
.service-card p,
.hub-card small,
.related-card p,
.industry p,
.industry-detail-card p,
.process p,
.faq-answer,
.footer-cta p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.58;
}

.link-arrow,
.related-card .link-arrow {
  font-size: 13px;
}

.footer-brand>p,
.footer-brand address {
  font-size: 13px;
  line-height: 1.55;
}

.footer-column a {
  font-size: 12px;
}

/* Delivery sections now use the same premium black-to-maroon visual language
   as the approved Applied AI section, while retaining each page's own steps. */
.solution-page .section-dark {
  padding: 52px 0 74px;
  background: linear-gradient(112deg, #0d0d10 0%, #0d0d10 63%, #3b1118 100%);
}

.solution-page .section-dark .section-head {
  margin-bottom: 34px;
}

.solution-page .section-dark .section-title {
  max-width: 780px;
  font-size: 41px;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.solution-page .section-dark .section-lead {
  max-width: 680px;
  margin-top: 13px;
  color: #b9bbc2;
  font-size: 14px;
}

.solution-page .process-grid {
  border-color: #2c2c31;
}

.solution-page .process {
  min-height: 212px;
  padding: 27px 28px 26px;
  background: #141417;
  border-color: #2c2c31;
}

.solution-page .process::before {
  font-size: 10px;
  color: #8e9099;
}

.solution-page .process h3 {
  margin-top: 34px;
  font-size: 18px;
}

.solution-page .process p {
  margin-top: 10px;
  color: #b9bbc2;
  font-size: 13px;
  line-height: 1.58;
}

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

@media (max-width: 980px) {
  .home-page .trust-row {
    font-size: 12.5px;
  }

  .solution-page .section-dark .section-title {
    font-size: 36px;
  }

  .industries-mega-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .home-page .home-hero-copy>p:not(.eyebrow),
  .home-page .triad-grid p,
  .home-page .business-first p:not(.eyebrow),
  .home-page .band-lead,
  .home-page .section-intro,
  .home-page .applied-cards p,
  .home-page .faq-answer,
  .section-lead,
  .content-card p,
  .service-card p,
  .hub-card small,
  .related-card p,
  .industry p,
  .industry-detail-card p,
  .process p {
    font-size: 13px;
  }

  .home-page .trust-row {
    font-size: 12px;
  }

  .solution-page .section-dark {
    padding: 58px 0;
  }

  .solution-page .section-dark .section-title {
    font-size: 32px;
  }

  .solution-page .process {
    min-height: 170px;
  }
}

/* Remaining editorial and utility supporting copy */
.mega-menu {
  z-index: 980;
  background: #fff;
}

.editorial-hero p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.6;
}

.editorial-layout aside a,
.article-aside a {
  font-size: 13px;
}

.editorial-card p,
.value-grid p,
.contact-item p {
  font-size: 13px;
  line-height: 1.55;
}

.editorial-card small,
.read-link {
  font-size: 11.5px;
}

.form-note {
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   Business Applications conversion redesign + global type rule
   ========================================================= */

/* User-requested consistency: every HTML paragraph is 16px. */
p {
  font-size: 16px !important;
}

/* Use the approved Geist-first family throughout the site. */
body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-reveal] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}

[data-reveal="up"] {
  transform: translateY(28px);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal="scale"] {
  transform: scale(.965);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.business-applications-page .breadcrumbs {
  margin-bottom: 0;
}

.ba-hero {
  position: relative;
  padding: 30px 0 92px;
  overflow: hidden;
  background: radial-gradient(circle at 87% 15%, rgba(239, 23, 53, .09), transparent 27%), linear-gradient(180deg, #fff 0%, #fafafb 100%);
}

.ba-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -45% 50%;
  height: 620px;
  background: repeating-radial-gradient(circle at center, rgba(239, 23, 53, .08) 0 1px, transparent 1px 15px);
  opacity: .26;
  transform: rotate(-9deg);
  pointer-events: none;
}

.ba-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

.ba-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 600;
}

.ba-hero-copy>p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.ba-hero .hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ba-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.ba-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #34363c;
}

.ba-trust-row .icon {
  color: var(--red);
}

.ba-hero-visual {
  position: relative;
}

.ba-system-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(17, 17, 19, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 34px 80px rgba(20, 20, 25, .13);
  backdrop-filter: blur(15px);
}

.ba-system-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -35px;
  right: -25px;
  border-radius: 50%;
  background: rgba(239, 23, 53, .1);
  filter: blur(5px);
  z-index: -1;
}

.ba-system-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.ba-system-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
}

.ba-system-top div {
  display: grid;
  gap: 4px;
}

.ba-system-top small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.ba-system-top strong {
  font-size: 22px;
}

.ba-system-flow {
  display: grid;
  grid-template-columns: 84px 1fr 180px 1fr 84px;
  align-items: center;
  gap: 12px;
  padding: 38px 0;
}

.ba-flow-node {
  display: grid;
  place-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.ba-flow-node img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ba-flow-line {
  display: flex;
  align-items: center;
  gap: 0;
}

.ba-flow-line::before,
.ba-flow-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--red), rgba(239, 23, 53, .18));
}

.ba-flow-line.reverse::before,
.ba-flow-line.reverse::after {
  background: linear-gradient(90deg, rgba(239, 23, 53, .18), var(--red));
}

.ba-flow-line i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: ba-pulse 2.2s infinite ease-in-out;
}

.ba-flow-line i:nth-child(2) {
  animation-delay: .25s;
}

.ba-flow-line i:nth-child(3) {
  animation-delay: .5s;
}

@keyframes ba-pulse {

  0%,
  100% {
    transform: scale(.75);
    opacity: .35
  }

  50% {
    transform: scale(1.25);
    opacity: 1
  }
}

.ba-flow-centre {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 9px;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid rgba(239, 23, 53, .22);
  background: radial-gradient(circle, #fff 35%, #fff1f3 100%);
  box-shadow: 0 15px 40px rgba(239, 23, 53, .14);
}

.ba-flow-centre .icon {
  color: var(--red);
}

.ba-flow-centre b {
  font-size: 18px;
}

.ba-flow-centre small {
  color: var(--muted);
  font-size: 11px;
}

.ba-system-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ba-system-bottom span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ba-system-bottom img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ba-why .section-head,
.ba-before-after .section-head,
.ba-challenges .section-head,
.ba-industries .section-head,
.ba-engagements .section-head,
.ba-faq .section-head {
  max-width: 860px;
}

.section-head.left>p:not(.eyebrow),
.service-directory-head p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 760px;
}

.ba-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.ba-difference-card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: .25s ease;
}

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

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

.ba-difference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(17, 17, 19, .08);
  z-index: 1;
}

.ba-difference-card>span {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 10px;
  color: #9a9ca4;
  letter-spacing: .12em;
}

.ba-difference-card>.icon {
  width: 30px;
  height: 30px;
  color: var(--red);
  margin-bottom: 30px;
}

.ba-difference-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
}

.ba-difference-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.ba-compare-grid {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  align-items: stretch;
  gap: 18px;
}

.ba-compare-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.ba-compare-panel.after {
  border-color: rgba(239, 23, 53, .24);
  box-shadow: 0 24px 55px rgba(239, 23, 53, .09);
}

.ba-compare-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.ba-compare-heading span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  color: #8b8e96;
}

.ba-compare-panel.after .ba-compare-heading span {
  color: var(--red);
}

.ba-compare-heading h3 {
  margin: 0;
  font-size: 28px;
}

.ba-compare-panel ul {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ba-compare-panel li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #4e5159;
}

.ba-compare-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8bac0;
}

.ba-compare-panel.after li::before {
  background: var(--red);
  box-shadow: 0 0 0 6px var(--red-soft);
}

.ba-transform-arrow {
  display: grid;
  place-items: center;
  color: var(--red);
}

.ba-services .service-directory-grid {
  margin-top: 34px;
}

.ba-services .service-tile {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ba-services .service-tile:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 23, 53, .35);
  box-shadow: 0 20px 50px rgba(17, 17, 19, .1);
}

.ba-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ba-challenge-grid article {
  min-height: 215px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.ba-challenge-grid .icon {
  color: var(--red);
  margin-bottom: 32px;
}

.ba-challenge-grid h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.ba-challenge-grid p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
}

.ba-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.ba-industry-grid a {
  min-height: 245px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: .22s ease;
}

.ba-industry-grid a:last-child {
  border-right: 0;
}

.ba-industry-grid a:hover {
  background: #fff8f9;
  transform: translateY(-3px);
}

.ba-industry-grid>a>.icon {
  color: var(--red);
  width: 30px;
  height: 30px;
  margin-bottom: 34px;
}

.ba-industry-grid h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.ba-industry-grid p {
  min-height: 62px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.65;
}

.ba-industry-grid span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.ba-outcome-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.ba-outcome-grid>div:first-child p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.ba-outcome-grid .link-arrow {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
}

.ba-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, .18);
}

.ba-outcome-list article {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.ba-outcome-list article:nth-child(2n) {
  border-right: 0
}

.ba-outcome-list article:nth-child(n+3) {
  border-bottom: 0
}

.ba-outcome-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.ba-outcome-list p {
  color: rgba(255, 255, 255, .7);
  margin: 0;
  line-height: 1.7;
}

.ba-engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ba-engagement-grid a {
  position: relative;
  min-height: 300px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: .25s ease;
}

.ba-engagement-grid a:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(239, 23, 53, .35)
}

.ba-engagement-grid>a>span {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 10px;
  color: #9a9ca4;
}

.ba-engagement-grid>a>.icon {
  width: 34px;
  height: 34px;
  color: var(--red);
  margin-bottom: 44px;
}

.ba-engagement-grid h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.ba-engagement-grid p {
  color: var(--muted);
  line-height: 1.75;
  min-height: 74px;
}

.ba-engagement-grid b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
}

.ba-delivery .section-head>p:not(.eyebrow) {
  color: rgba(255, 255, 255, .66)
}

.ba-delivery .process span {
  font-size: 10px;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .12em
}

.ba-delivery .process h3 {
  margin-top: 24px
}

.offer-hero {
  padding: 36px 0 92px;
  background: linear-gradient(135deg, #fff, #f8f8fa);
}

.offer-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.offer-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
}

.offer-hero p>a {
  text-decoration: underline;
  font-weight: 700
}

.offer-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75
}

.offer-hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px
}

.offer-hero-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-hero-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 36px
}

.offer-hero-panel small {
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--red)
}

.offer-hero-panel strong {
  font-size: 32px;
  margin: 8px 0 12px
}

.offer-hero-panel p {
  margin: 0;
  color: var(--muted)
}

.case-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.case-placeholder-grid article {
  padding: 34px;
  border: 1px dashed #c9cbd1;
  border-radius: 14px;
  background: #fff
}

.case-placeholder-grid span {
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--red)
}

.case-placeholder-grid h3 {
  font-size: 22px;
  margin: 18px 0 12px
}

.case-placeholder-grid p {
  color: var(--muted);
  margin: 0
}

@media (max-width: 1180px) {
  .ba-hero-grid {
    grid-template-columns: 1fr;
  }

  .ba-hero-visual {
    max-width: 760px
  }

  .ba-industry-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .ba-industry-grid a:nth-child(3) {
    border-right: 0
  }

  .ba-industry-grid a {
    border-bottom: 1px solid var(--line)
  }

  .ba-industry-grid a:nth-child(n+4) {
    border-bottom: 0
  }

  .ba-difference-grid,
  .ba-challenge-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ba-difference-card:nth-child(3n) {
    border-right: 1px solid var(--line)
  }

  .ba-difference-card:nth-child(2n) {
    border-right: 0
  }

  .ba-difference-card:nth-child(n+4) {
    border-bottom: 1px solid var(--line)
  }

  .ba-difference-card:nth-child(n+5) {
    border-bottom: 0
  }

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

  .offer-hero-panel {
    max-width: 620px
  }

  .ba-outcome-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width: 760px) {
  .ba-hero {
    padding: 54px 0 64px
  }

  .ba-hero-grid {
    gap: 45px
  }

  .ba-hero-copy h1 {
    font-size: 46px
  }

  .ba-system-card {
    padding: 18px;
    border-radius: 18px
  }

  .ba-system-flow {
    grid-template-columns: 55px 1fr 115px 1fr 55px;
    gap: 5px;
    padding: 28px 0
  }

  .ba-flow-node img {
    width: 34px;
    height: 34px
  }

  .ba-flow-centre {
    min-height: 115px;
    padding: 10px
  }

  .ba-flow-centre .icon {
    width: 34px;
    height: 34px
  }

  .ba-flow-centre b {
    font-size: 13px
  }

  .ba-flow-centre small {
    font-size: 9px
  }

  .ba-system-bottom {
    grid-template-columns: 1fr
  }

  .ba-system-bottom span {
    justify-content: flex-start
  }

  .ba-difference-grid,
  .ba-challenge-grid,
  .ba-engagement-grid,
  .case-placeholder-grid {
    grid-template-columns: 1fr
  }

  .ba-difference-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important
  }

  .ba-difference-card:last-child {
    border-bottom: 0 !important
  }

  .ba-compare-grid {
    grid-template-columns: 1fr
  }

  .ba-transform-arrow {
    transform: rotate(90deg);
    min-height: 52px
  }

  .ba-industry-grid {
    grid-template-columns: 1fr
  }

  .ba-industry-grid a {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important
  }

  .ba-industry-grid a:last-child {
    border-bottom: 0 !important
  }

  .ba-outcome-list {
    grid-template-columns: 1fr
  }

  .ba-outcome-list article {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important
  }

  .ba-outcome-list article:last-child {
    border-bottom: 0 !important
  }

  .offer-hero {
    padding: 54px 0 66px
  }

  .offer-hero h1 {
    font-size: 44px
  }

  .offer-hero-panel {
    min-height: 280px;
    padding: 30px
  }

  .offer-hero-grid {
    gap: 42px
  }

  .ba-trust-row {
    display: grid
  }

  .ba-compare-panel {
    padding: 28px
  }
}

@media (prefers-reduced-motion: reduce) {

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.ba-outcomes {
  background: linear-gradient(115deg, #0d0d10 0%, #171015 58%, #381018 100%);
  color: #fff;
}

.ba-outcomes .section-title {
  color: #fff;
}

.ba-outcomes .eyebrow {
  color: #ff526a;
}

.ba-outcomes .ba-outcome-grid>div:first-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

/* =========================================================
   August 2026 minor refinements: typography, footer and Industries
   ========================================================= */

body,
button,
input,
select,
textarea {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Maintain the requested paragraph baseline everywhere. */
p {
  font-size: 16px !important;
}

/* Use one consistent footer treatment across every page. */
.site-footer {
  border-top: 2px solid var(--red);
}

.brand-footer img.brand-logo,
.home-page .brand-footer img.brand-logo {
  width: 224px;
  height: auto;
  max-height: 72px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.footer-brand>p,
.footer-brand address {
  font-size: 14px;
  line-height: 1.55;
}

/* Industries landing-page hero redesign. */
.industries-page .breadcrumbs {
  margin-bottom: 0;
}

.industries-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 88px;
  background:
    radial-gradient(circle at 88% 14%, rgba(239, 23, 53, .10), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fafafb 100%);
}

.industries-hero-lines {
  position: absolute;
  right: -4%;
  bottom: -16%;
  width: 52%;
  height: 78%;
  opacity: .36;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(239, 23, 53, .10) 48.2% 48.5%, transparent 48.7%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(20, 24, 32, .035) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(20, 24, 32, .035) 42px 43px);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  transform: skewY(-7deg);
}

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

.industries-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(52px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 520;
}

.industries-hero-lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.industries-hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.industries-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.industries-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #343740;
  font-size: 12px;
  font-weight: 650;
}

.industries-trust-row .icon {
  width: 21px;
  height: 21px;
  color: var(--red);
}

.industries-hero-visual {
  overflow: hidden;
  border: 1px solid rgba(20, 24, 32, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 80px rgba(18, 20, 28, .11);
  backdrop-filter: blur(14px);
}

.industries-visual-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px 25px;
  border-bottom: 1px solid var(--line);
}

.industries-visual-head .eyebrow {
  margin-bottom: 9px;
}

.industries-visual-head h2 {
  max-width: 520px;
  margin: 0;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -.035em;
}

.industries-visual-badge {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industries-sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.industries-sector-grid a {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 23px 18px;
  border-right: 1px solid var(--line);
  transition: background .25s ease, transform .25s ease;
}

.industries-sector-grid a:last-child {
  border-right: 0;
}

.industries-sector-grid a:hover,
.industries-sector-grid a:focus-visible {
  background: #fff6f7;
  transform: translateY(-3px);
}

.industries-sector-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 7px;
  border: 1px solid #ececf0;
  border-radius: 12px;
  background: #fafafb;
  color: var(--red);
}

.industries-sector-icon .icon {
  width: 23px;
  height: 23px;
}

.industries-sector-grid strong {
  font-size: 13px;
}

.industries-sector-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.industries-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industries-capability-grid article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.industries-capability-grid article:last-child {
  border-right: 0;
}

.industries-capability-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}

.industries-capability-icon .icon {
  width: 23px;
  height: 23px;
}

.industries-capability-grid strong {
  display: block;
  margin: 4px 0 8px;
  font-size: 16px;
}

.industries-capability-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1280px) {
  .industries-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industries-hero-copy {
    max-width: 880px;
  }

  .industries-hero-visual {
    max-width: 980px;
  }
}

@media (max-width: 820px) {
  .industries-hero {
    padding: 54px 0 66px;
  }

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

  .industries-visual-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .industries-sector-grid a {
    border-bottom: 1px solid var(--line);
  }

  .industries-sector-grid a:nth-child(2n) {
    border-right: 0;
  }

  .industries-sector-grid a:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .industries-capability-grid {
    grid-template-columns: 1fr;
  }

  .industries-capability-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industries-capability-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 540px) {
  .industries-hero-copy h1 {
    font-size: 42px;
  }

  .industries-hero .hero-actions {
    display: grid;
  }

  .industries-hero .button {
    width: 100%;
  }

  .industries-trust-row {
    display: grid;
    gap: 14px;
  }

  .industries-visual-head,
  .industries-capability-grid article {
    padding-inline: 20px;
  }

  .industries-sector-grid {
    grid-template-columns: 1fr;
  }

  .industries-sector-grid a,
  .industries-sector-grid a:nth-child(2n) {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industries-sector-grid .industries-sector-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .industries-sector-grid a:last-child {
    grid-column: auto;
  }
}


/* =========================================================
   Final minor alignment and animation refinements
   ========================================================= */

/* Homepage card numbering removed: restore intentional spacing. */
.home-page .applied-cards b {
  margin-top: 0;
}

.home-page .applied-cards a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 214px;
}

.home-page .applied-cards p {
  flex: 1;
  max-width: 430px;
}

.home-page .product-card img {
  margin-top: 0;
}

.home-page .product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
  padding-top: 28px;
}

.home-page .product-card p {
  margin-top: 10px;
}

/* Industries hero: prevent fixed-width overflow and keep both columns aligned. */
.industries-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 5vw, 84px);
}

.industries-hero-copy,
.industries-hero-visual {
  width: 100%;
  min-width: 0;
}

.industries-hero-copy {
  align-self: center;
}

.industries-hero-visual {
  justify-self: stretch;
}

.industries-visual-head {
  align-items: center;
}

.industries-sector-grid a {
  height: 100%;
}

.industries-capability-grid {
  align-items: stretch;
}

.industries-capability-grid article {
  height: 100%;
  align-content: start;
}

/* Dedicated industry cards: balanced three-over-two layout on desktop. */
.industries-page #industry-pages .section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.industries-page .industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.industries-page .industry-detail-card {
  grid-column: span 2;
  min-width: 0;
  min-height: 238px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.industries-page .industry-detail-card:nth-child(4),
.industries-page .industry-detail-card:nth-child(5) {
  grid-column: span 2;
}

.industries-page .industry-detail-card:hover,
.industries-page .industry-detail-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(239, 23, 53, .32);
  box-shadow: 0 20px 48px rgba(17, 17, 19, .09);
}

.industries-page .industry-detail-card>div:last-child {
  min-width: 0;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industries-page .industry-detail-card h2 {
  margin: 2px 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.industries-page .industry-detail-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.industries-page .industry-detail-card .link-arrow {
  margin-top: auto;
}

.industries-page .industry-icon {
  width: 54px;
  height: 54px;
}

/* Slightly smoother reveal timing for automatically animated sections. */
[data-reveal] {
  transition-duration: .72s;
}

@media (max-width: 1280px) {
  .industries-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .industries-hero-copy,
  .industries-hero-visual {
    max-width: 980px;
  }
}

@media (max-width: 980px) {
  .industries-page .industry-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-page .industry-detail-card,
  .industries-page .industry-detail-card:nth-child(4),
  .industries-page .industry-detail-card:nth-child(5) {
    grid-column: auto;
  }

  .industries-page .industry-detail-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .industries-page .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .industries-page .industry-detail-card,
  .industries-page .industry-detail-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .industries-page .industry-detail-card>div:last-child {
    min-height: auto;
  }
}

/* =========================================================
   Dedicated industry pages: aligned hero + animation polish
   ========================================================= */
.industry-detail-page .page-hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(239, 23, 53, .09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafafb 100%);
}

.industry-detail-page .page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(239, 23, 53, .08) 0 1px, transparent 1px 18px);
  opacity: .22;
  pointer-events: none;
}

.industry-detail-page .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, .98fr);
  gap: clamp(52px, 6vw, 96px);
  padding: 0 0 76px;
}

.industry-detail-page .page-hero-copy {
  max-width: 760px;
}

.page-hero-copy p>a  {
  text-decoration: underline;
  font-weight: 700
}

.industry-detail-page .page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(50px, 4.65vw, 76px);
  line-height: 1.01;
  letter-spacing: -.058em;
  font-weight: 560;
}

.industry-detail-page .page-hero-copy>p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 25px;
  line-height: 1.72;
}

.industry-detail-page .page-hero-copy .hero-actions {
  margin-top: 30px;
}

.industry-detail-page .page-hero-art {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(17, 17, 19, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 30px 75px rgba(20, 20, 26, .12);
  backdrop-filter: blur(14px);
}

.industry-detail-page .page-hero-art::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -55px;
  border-radius: 50%;
  background: rgba(239, 23, 53, .12);
  filter: blur(5px);
  pointer-events: none;
}

.industry-detail-page .art-orbit {
  position: absolute;
  border: 1px solid rgba(239, 23, 53, .12);
  border-radius: 50%;
  pointer-events: none;
}

.industry-detail-page .art-orbit-a {
  width: 250px;
  height: 250px;
  right: -125px;
  top: -125px;
}

.industry-detail-page .art-orbit-b {
  width: 150px;
  height: 150px;
  right: -75px;
  top: -75px;
}

.industry-detail-page .art-core {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  padding: 4px 2px 26px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.industry-detail-page .art-core .icon {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  color: var(--red);
}

.industry-detail-page .art-core strong {
  display: block;
  min-width: 0;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.industry-detail-page .art-core span {
  display: block;
  margin-top: 7px;
  color: #565860;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.industry-detail-page .art-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 170px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-content: start;
  column-gap: 13px;
  padding: 26px 20px 18px;
  border-right: 1px solid var(--line);
}

.industry-detail-page .art-node:last-child {
  border-right: 0;
}

.industry-detail-page .art-node .icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
}

.industry-detail-page .art-node span {
  align-self: end;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.2;
}

.industry-detail-page .art-node small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.industry-detail-page .section-head {
  max-width: 820px;
}

.industry-detail-page .content-card,
.industry-detail-page .deliverable-panel,
.industry-detail-page .related-card,
.industry-detail-page .faq-item,
.industry-detail-page .process {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.industry-detail-page .content-card:hover,
.industry-detail-page .related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 23, 53, .28);
  box-shadow: 0 18px 44px rgba(17, 17, 19, .08);
}

@media (max-width: 1180px) {
  .industry-detail-page .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-page .page-hero-copy,
  .industry-detail-page .page-hero-copy h1 {
    max-width: 900px;
  }

  .industry-detail-page .page-hero-art {
    max-width: 900px;
  }
}

@media (max-width: 760px) {
  .industry-detail-page .page-hero {
    min-height: auto;
  }

  .industry-detail-page .page-hero-grid {
    gap: 38px;
    padding: 45px 0 58px;
  }

  .industry-detail-page .page-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .industry-detail-page .page-hero-art {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .industry-detail-page .art-core {
    grid-column: auto;
  }

  .industry-detail-page .art-node {
    min-height: auto;
    padding: 20px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-detail-page .art-node:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .industry-detail-page .content-card,
  .industry-detail-page .related-card {
    transition: none;
  }
}


/* =========================================================
   Site-wide alignment and related-insights consistency
   Approved August 2026
   ========================================================= */

/* Match the homepage reference across every index page. */
.home-page .wide-container,
.home-page .container,
.wide-container,
.container {
  width: min(calc(100% - 72px), var(--container));
  margin-inline: auto;
}

.home-page .site-header-inner,
.site-header-inner {
  width: min(calc(100% - 72px), var(--container));
  height: 64px;
  margin-inline: auto;
  padding-inline: 0;
  gap: 22px;
}

.home-page .brand,
.brand {
  min-width: 238px;
  padding-left: 0;
}

.home-page .brand img.brand-logo,
.brand img.brand-logo {
  width: 225px;
  height: 44px;
}

.home-page .nav-item>a,
.nav-item>a {
  height: 64px;
  font-size: 14px;
  letter-spacing: -.015em;
}

.home-page .primary-nav>ul,
.primary-nav>ul {
  gap: 28px;
}

/* The consultation action remains in the hero and footer CTA; the crossed-out header duplicate is removed. */
.home-page .header-cta,
.header-cta {
  display: none;
}

@media (min-width: 981px) {

  .home-page .mega-menu,
  .mega-menu,
  .home-page li.nav-item.business-apps-nav>.mega-menu,
  li.nav-item.business-apps-nav>.mega-menu {
    top: 56px;
  }
}

/* One reusable insight pattern for the homepage, category pages and detail pages. */
.insights-section {
  padding: 56px 0 82px;
  background: linear-gradient(180deg, #f8f8f9 0%, #fff 100%);
  border-top: 1px solid #ececef;
}

.insights-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

.insights-head>div {
  max-width: 790px;
}

.insights-head .section-title {
  margin-bottom: 14px;
}

.insights-head>div>p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.insights-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.insight-card {
  min-width: 0;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 16px 42px rgba(20, 22, 28, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 23, 53, .42);
  box-shadow: 0 24px 58px rgba(20, 22, 28, .10);
}

.insight-card-top,
.insight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.insight-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.insight-status {
  color: #858891;
  font-size: 10px;
  white-space: nowrap;
}

.insight-card h3 {
  margin: 38px 0 14px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.insight-card-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #ececef;
  color: #777a83;
  font-size: 11px;
}

.insight-card-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 12px;
}

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

/* Blog library filters and larger catalogue. */
.blog-library .editorial-layout {
  align-items: start;
}

.blog-filter-panel {
  position: sticky;
  top: 92px;
}

.blog-filter-list {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.filter-chip {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #4e515a;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: #f2bdc5;
  background: var(--red-soft);
  color: var(--red);
}

.blog-filter-panel>p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.6;
}

.editorial-card[hidden] {
  display: none;
}

.editorial-card>div>small+small {
  display: block;
  margin-top: 5px;
  color: #8b8e97;
}

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

.article-sitemap-grid a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.article-sitemap-grid a:hover strong {
  color: var(--red);
}

.article-sitemap-grid strong {
  line-height: 1.3;
}

.article-sitemap-grid span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prose .source-note a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1280px) {

  .home-page .wide-container,
  .home-page .container,
  .wide-container,
  .container {
    width: min(calc(100% - 52px), var(--container));
  }

  .home-page .site-header-inner,
  .site-header-inner {
    width: min(calc(100% - 52px), var(--container));
    padding-inline: 0;
  }

  .home-page .brand,
  .brand {
    min-width: 190px;
  }

  .home-page .brand img.brand-logo,
  .brand img.brand-logo {
    width: 184px;
  }

  .home-page .primary-nav>ul,
  .primary-nav>ul {
    gap: 18px;
  }
}

@media (max-width: 980px) {

  .home-page .site-header-inner,
  .site-header-inner {
    height: 68px;
  }

  .home-page .primary-nav,
  .primary-nav {
    top: 68px;
    left: 26px;
    right: 26px;
  }

  .home-page .brand,
  .brand {
    min-width: 0;
  }

  .insights-grid,
  .home-insights .insights-grid,
  .article-sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-filter-panel {
    position: static;
  }

  .blog-filter-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {

  .home-page .wide-container,
  .home-page .container,
  .wide-container,
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .home-page .site-header-inner,
  .site-header-inner {
    width: min(calc(100% - 28px), var(--container));
    padding-inline: 0;
  }

  .home-page .primary-nav,
  .primary-nav {
    left: 14px;
    right: 14px;
  }

  .home-page .brand img.brand-logo,
  .brand img.brand-logo {
    width: 160px;
    height: 40px;
  }

  .insights-section {
    padding: 56px 0 62px;
  }

  .insights-grid,
  .home-insights .insights-grid,
  .article-sitemap-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 0;
    padding: 24px;
  }

  .insight-card h3 {
    margin-top: 28px;
    font-size: 22px;
  }

  .blog-filter-list {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================================
   Approved consultation form redesign — August 2026
   Scoped to book-consultation/index.html only.
   ========================================================= */
.consultation-page main {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 8%, rgba(239, 23, 53, .045), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fff 62%, #fbfbfc 100%);
}

.consultation-page .breadcrumbs {
  position: relative;
  z-index: 2;
}

.consultation-hero {
  position: relative;
  padding: 42px 0 24px;
}

.consultation-hero::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -40px;
  width: min(44vw, 650px);
  height: 270px;
  opacity: .45;
  pointer-events: none;
  background-image: radial-gradient(rgba(21, 22, 27, .12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
}

.consultation-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.consultation-hero-copy .eyebrow {
  margin-bottom: 14px;
}

.consultation-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.06em;
}

.consultation-hero-copy>p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px !important;
  line-height: 1.65;
}

.consultation-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.consultation-option {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dedfe3;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(18, 19, 24, .045);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.consultation-option:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 23, 53, .35);
  box-shadow: 0 22px 45px rgba(18, 19, 24, .075);
}

.consultation-option-icon,
.consultation-heading-icon,
.consultation-support-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff0f2;
  color: var(--red);
}

.consultation-option-icon svg,
.consultation-heading-icon svg,
.consultation-support-mark svg {
  width: 20px;
  height: 20px;
}

.consultation-option h2 {
  margin: 17px 0 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.consultation-option p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px !important;
  line-height: 1.55;
}

.consultation-option>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.consultation-option>a svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.consultation-option>a:hover svg {
  transform: translateX(3px);
}

.consultation-content {
  padding-top: 18px;
  padding-bottom: 82px;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(330px, .88fr);
  gap: 22px;
  align-items: stretch;
}

.consultation-form-panel,
.consultation-support-panel {
  border: 1px solid #dcdde2;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(22, 24, 31, .055);
}

.consultation-form-panel {
  scroll-margin-top: 105px;
  overflow: hidden;
}

.consultation-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid #e5e5e8;
}

.consultation-panel-heading h2,
.consultation-support-panel h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.consultation-panel-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px !important;
}

.consultation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 26px 26px;
}

.consultation-form-panel .field label {
  color: #202126;
  font-size: 12px;
}

.consultation-form-panel .field input,
.consultation-form-panel .field select,
.consultation-form-panel .field textarea {
  min-height: 46px;
  padding: 12px 13px;
  border-color: #d4d5da;
  border-radius: 7px;
  background: #fff;
  color: #15161a;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.consultation-form-panel .field textarea {
  min-height: 138px;
  resize: vertical;
}

.consultation-form-panel .field input:focus,
.consultation-form-panel .field select:focus,
.consultation-form-panel .field textarea:focus {
  outline: none;
  border-color: rgba(239, 23, 53, .72);
  box-shadow: 0 0 0 3px rgba(239, 23, 53, .09);
}

.consultation-form-panel .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.consultation-form-panel .consent input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  padding: 0;
}

.consultation-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.consultation-form-actions .button,
.consultation-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.consultation-form-actions .button {
  min-width: 190px;
}

.consultation-form-actions .button svg,
.consultation-support-button svg {
  width: 15px;
  height: 15px;
}

.consultation-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 11px !important;
}

.consultation-secure-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.consultation-support-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 23, 53, .11), transparent 34%),
    #fff;
}

.consultation-support-panel::after {
  content: "";
  position: absolute;
  top: -45px;
  right: -55px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(239, 23, 53, .10);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(239, 23, 53, .035), 0 0 0 68px rgba(239, 23, 53, .02);
  pointer-events: none;
}

.consultation-support-panel>* {
  position: relative;
  z-index: 1;
}

.consultation-support-panel .eyebrow {
  margin: 18px 0 10px;
}

.consultation-support-panel>p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px !important;
  line-height: 1.6;
}

.consultation-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 28px 0;
}

.consultation-benefits>div {
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid #e1e2e6;
  border-radius: 9px;
  background: rgba(255, 255, 255, .86);
  text-align: center;
}

.consultation-benefits svg {
  width: 22px;
  height: 22px;
  margin-bottom: 9px;
  color: var(--red);
}

.consultation-benefits strong,
.consultation-benefits span {
  display: block;
}

.consultation-benefits strong {
  font-size: 14px;
}

.consultation-benefits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: #e9f8f1;
  border: 1px solid #b8e5cf;
  color: #177a50;
}

.form-status.error {
  display: block;
  background: #fff0f1;
  border: 1px solid #f4c1c7;
  color: #c6283d;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consultation-support-button {
  width: 100%;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .consultation-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-support-panel {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .consultation-hero {
    padding-top: 30px;
  }

  .consultation-hero::after {
    display: none;
  }

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

  .consultation-options {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .consultation-option {
    min-height: 0;
  }

  .consultation-content {
    padding-top: 10px;
    padding-bottom: 58px;
  }

  .consultation-panel-heading,
  .consultation-form-grid,
  .consultation-support-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .consultation-form-grid .field-full {
    grid-column: auto;
  }

  .consultation-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .consultation-form-actions .button {
    width: 100%;
  }

  .consultation-secure-note {
    justify-content: center;
    text-align: center;
  }

  .consultation-benefits {
    grid-template-columns: 1fr;
  }

  .consultation-benefits>div {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
    text-align: left;
  }

  .consultation-benefits svg {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .consultation-benefits span {
    margin-top: 1px;
  }
}


/* =========================================================
   Approved AI Consulting editorial redesign + global footer — August 2026
   ========================================================= */

/* Global footer approved for every page. */
.footer-cta {
  display: none;
}

.site-footer.global-site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(169, 14, 37, .38), transparent 29%),
    linear-gradient(112deg, #091323 0%, #0c111c 47%, #210b12 100%);
  color: #fff;
}

.site-footer.global-site-footer::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -115px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(239, 23, 53, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(239, 23, 53, .035), 0 0 0 84px rgba(239, 23, 53, .025), 0 0 0 126px rgba(239, 23, 53, .018);
  pointer-events: none;
}

.global-site-footer>* {
  position: relative;
  z-index: 1;
}

.global-footer-contact {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(170px, .68fr) minmax(220px, .92fr) minmax(390px, 1.65fr);
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.global-footer-intro {
  padding-right: 34px;
}

.global-footer-kicker {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: .2em;
}

.global-footer-intro h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.global-footer-intro>p:last-child {
  margin: 5px 0 0;
  color: #c0c5cf;
  font-size: 11px !important;
}

.global-footer-contact-item,
.global-footer-chat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 58px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .19);
}

.global-footer-contact-item {
  transition: background .18s ease;
}

.global-footer-contact-item:hover {
  background: rgba(255, 255, 255, .035);
}

.global-footer-contact-item>span:last-child,
.global-footer-chat>span:nth-child(2) {
  min-width: 0;
}

.global-footer-contact-item strong,
.global-footer-contact-item small,
.global-footer-chat strong,
.global-footer-chat small {
  display: block;
}

.global-footer-contact-item strong,
.global-footer-chat strong {
  font-size: 12px;
  line-height: 1.2;
}

.global-footer-contact-item small,
.global-footer-chat small {
  margin-top: 4px;
  color: #d4d7dd;
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.global-footer-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 23, 53, .42);
  border-radius: 7px;
  color: var(--red);
}

.global-footer-icon svg {
  width: 20px;
  height: 20px;
}

.global-footer-chat {
  padding-right: 0;
}

.global-footer-chat .global-footer-book {
  margin-left: auto;
}

.global-footer-book {
  min-height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border-radius: 5px;
  background: #fff;
  color: #17171a;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transition: transform .18s ease, color .18s ease;
}

.global-footer-book:hover {
  transform: translateY(-2px);
  color: var(--red);
}

.global-footer-book svg {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.global-footer-main {
  display: grid;
  grid-template-columns: 1.18fr .72fr .72fr .72fr .72fr 1.2fr;
  gap: 38px;
  align-items: start;
  padding-top: 26px;
  padding-bottom: 24px;
}

.global-footer-brand .brand-footer {
  min-width: 0;
  display: inline-flex;
}

.global-footer-brand .brand-footer img.brand-logo,
.home-page .global-footer-brand .brand-footer img.brand-logo {
  width: 142px;
  height: auto;
  max-height: none;
  padding: 0;
  object-fit: contain;
  object-position: left center;
}

.global-footer-brand>p {
  max-width: 230px;
  margin: 13px 0 0;
  color: #c3c7d0;
  font-size: 11px !important;
  line-height: 1.45;
}

.global-footer-address {
  margin: 26px 0 0;
  color: #d4d7dd;
  font-size: 10px;
  font-style: normal;
  line-height: 1.5;
}

.global-footer-address a {
  color: #fff;
  font-weight: 750;
}

.global-footer-column {
  display: grid;
  align-content: start;
  gap: 6px;
}

.global-footer-column h2,
.global-footer-newsletter h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.global-footer-column a {
  color: #d0d3d9;
  font-size: 10px;
  line-height: 1.38;
}

.global-footer-column a:hover {
  color: #fff;
}

.global-footer-newsletter {
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.global-footer-newsletter>p {
  max-width: 210px;
  margin: 0 0 11px;
  color: #cbd0d8;
  font-size: 10px !important;
  line-height: 1.42;
}

.global-footer-newsletter-field {
  display: flex;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  overflow: hidden;
}

.global-footer-newsletter-field input {
  min-width: 0;
  flex: 1;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background: rgba(255, 255, 255, .035);
  color: #fff;
  font-size: 10px;
}

.global-footer-newsletter-field input::placeholder {
  color: #aeb4bf;
}

.global-footer-newsletter-field button {
  width: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: var(--red);
}

.global-footer-newsletter-field button:hover {
  background: rgba(239, 23, 53, .12);
}

.global-footer-newsletter-field svg {
  width: 14px;
  height: 14px;
}

.global-footer-form-status {
  margin-top: 6px;
  color: #cbd0d8;
  font-size: 8px;
  line-height: 1.35;
}

.global-footer-form-status:not(.show) {
  display: none;
}

.global-footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 11px;
}

.global-footer-socials span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #15161a;
  font-size: 8px;
  font-weight: 800;
}

.global-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 13px 0 15px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8f96a3;
  font-size: 8px;
}

.global-footer-bottom>span:last-child {
  display: flex;
  gap: 16px;
}

.global-footer-bottom a:hover {
  color: #fff;
}

/* Approved AI Consulting page. */
.ai-consulting-redesign {
  overflow: hidden;
  background: #fff;
}

.ai-consulting-redesign .breadcrumbs {
  position: relative;
  z-index: 3;
}

.ai-editorial-hero {
  position: relative;
  padding: 46px 0 76px;
}

.ai-editorial-hero::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -4%;
  width: 48%;
  height: 116%;
  opacity: .55;
  background: repeating-radial-gradient(ellipse at 62% 54%, transparent 0 29px, rgba(239, 23, 53, .08) 30px 31px, transparent 32px 46px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.ai-editorial-hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 80px;
  align-items: center;
}

.ai-editorial-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ai-editorial-hero-copy h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(54px, 5.3vw, 82px);
  font-weight: 570;
  line-height: .98;
  letter-spacing: -.062em;
}

.ai-editorial-hero-copy>p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px !important;
  line-height: 1.65;
}

.ai-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.ai-editorial-actions .button {
  gap: 10px;
}

.ai-editorial-actions svg {
  width: 15px;
  height: 15px;
}

.ai-editorial-visual {
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.ai-editorial-orbit {
  position: absolute;
  width: 410px;
  height: 230px;
  border: 1px dashed rgba(239, 23, 53, .35);
  border-radius: 50%;
}

.ai-editorial-orbit-one {
  transform: rotate(36deg);
}

.ai-editorial-orbit-two {
  transform: rotate(-26deg);
  border-color: rgba(55, 126, 255, .22);
}

.ai-editorial-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
}

.ai-editorial-dot-one {
  left: 14%;
  bottom: 24%;
  background: var(--red);
}

.ai-editorial-dot-two {
  right: 8%;
  top: 29%;
  background: #22c4e6;
}

.ai-editorial-card {
  position: relative;
  width: 300px;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid #e1e2e6;
  border-radius: 17px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 68px rgba(20, 22, 28, .15);
  text-align: center;
}

.ai-editorial-card>span {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.ai-editorial-card>svg {
  width: 112px;
  height: 112px;
  color: var(--red);
}

.ai-editorial-card strong {
  margin-top: 28px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.ai-editorial-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.ai-editorial-card i {
  display: flex;
  gap: 7px;
  margin-top: 26px;
}

.ai-editorial-card i b {
  width: 42px;
  height: 5px;
  border-radius: 5px;
  background: #e7e8eb;
}

.ai-editorial-card i b:first-child {
  background: var(--red);
}

.ai-approach-editorial {
  position: relative;
  padding: 70px 0;
  border-top: 1px solid #f0f0f2;
  border-bottom: 1px solid #f0f0f2;
  background: linear-gradient(90deg, #fff 0%, #fbfbfc 55%, #fff 100%);
}

.ai-approach-editorial::before {
  content: "";
  position: absolute;
  left: -9%;
  bottom: -74px;
  width: 44%;
  height: 210px;
  opacity: .65;
  background: repeating-radial-gradient(ellipse at 35% 60%, transparent 0 20px, rgba(239, 23, 53, .11) 21px 22px, transparent 23px 35px);
  transform: rotate(4deg);
  pointer-events: none;
}

.ai-approach-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(0, 3.4fr);
  align-items: stretch;
}

.ai-approach-intro {
  position: relative;
  z-index: 1;
  padding-right: 54px;
}

.ai-approach-intro h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1.04;
  letter-spacing: -.05em;
}

.ai-approach-intro>p:last-child {
  max-width: 340px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px !important;
  line-height: 1.55;
}

.ai-approach-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-approach-steps li {
  min-width: 0;
  padding: 0 35px;
  border-left: 1px solid #d7d9de;
}

.ai-approach-steps span {
  display: block;
  color: var(--red);
  font-size: 42px;
  font-weight: 350;
  line-height: 1;
  letter-spacing: -.04em;
}

.ai-approach-steps span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 13px 0 20px;
  background: var(--red);
}

.ai-approach-steps h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.025em;
}

.ai-approach-steps p {
  max-width: 170px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.5;
}

.ai-editorial-section {
  position: relative;
  padding: 82px 0;
}

.ai-editorial-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -45px;
  width: 48%;
  height: 250px;
  opacity: .46;
  background: repeating-radial-gradient(ellipse at 70% 50%, transparent 0 23px, rgba(239, 23, 53, .08) 24px 25px, transparent 26px 39px);
  transform: rotate(-6deg);
  pointer-events: none;
}

.ai-editorial-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 100px;
  align-items: center;
}

.ai-editorial-copy h2,
.ai-outcomes-primary h2 {
  max-width: 570px;
  margin: 0;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -.052em;
}

.ai-editorial-copy>p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px !important;
  line-height: 1.68;
}

.ai-editorial-list-panel {
  padding: 25px 34px 25px 42px;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 55px rgba(18, 20, 26, .055);
}

.ai-editorial-list-panel ul,
.ai-outcomes-primary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-editorial-list-panel li {
  position: relative;
  padding: 13px 0 13px 38px;
  color: #353840;
  font-size: 13px;
  border-bottom: 1px solid #ececef;
}

.ai-editorial-list-panel li:last-child {
  border-bottom: 0;
}

.ai-editorial-list-panel li::before,
.ai-outcomes-primary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

.ai-outcomes-section {
  border-top: 1px solid #ececef;
}

.ai-outcomes-section::after {
  display: none;
}

.ai-outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .95fr);
  gap: 100px;
  align-items: center;
}

.ai-outcomes-primary ul {
  margin-top: 26px;
}

.ai-outcomes-primary li {
  position: relative;
  max-width: 560px;
  padding: 9px 0 9px 38px;
  color: var(--muted);
  font-size: 13px;
}

.ai-outcomes-proof {
  padding-left: 50px;
  border-left: 1px solid #d9dbe0;
}

.ai-outcomes-proof article {
  padding: 18px 0;
  border-bottom: 1px solid #dfe1e5;
}

.ai-outcomes-proof article:last-child {
  border-bottom: 0;
}

.ai-outcomes-proof h3 {
  margin: 0;
  font-size: 16px;
}

.ai-outcomes-proof p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px !important;
}

.ai-delivery-editorial {
  padding: 68px 0 72px;
  background: radial-gradient(circle at 92% 20%, rgba(145, 17, 37, .28), transparent 30%), #0d0f13;
  color: #fff;
}

.ai-delivery-editorial h2 {
  margin: 0;
  font-size: 39px;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.ai-delivery-editorial ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 36px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .11);
  list-style: none;
}

.ai-delivery-editorial li {
  min-height: 175px;
  padding: 26px 28px;
  border-left: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .018);
}

.ai-delivery-editorial li:first-child {
  border-left: 0;
}

.ai-delivery-editorial li>span {
  color: #8b919d;
  font-size: 10px;
}

.ai-delivery-editorial h3 {
  margin: 27px 0 0;
  font-size: 17px;
}

.ai-delivery-editorial li p {
  max-width: 220px;
  margin: 12px 0 0;
  color: #c8cbd2;
  font-size: 12px !important;
  line-height: 1.55;
}

@media (max-width: 1250px) {
  .global-footer-contact {
    grid-template-columns: 1.2fr .75fr 1fr 1.55fr;
  }

  .global-footer-main {
    grid-template-columns: 1.1fr .75fr .75fr .75fr 1.1fr;
  }

  .global-footer-address {
    display: none;
  }

  .ai-editorial-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 45px;
  }

  .ai-approach-steps li {
    padding-inline: 24px;
  }
}

@media (max-width: 1000px) {
  .global-footer-contact {
    grid-template-columns: 1fr 1fr;
    padding-block: 22px;
  }

  .global-footer-intro {
    grid-column: 1 / -1;
    padding: 0 0 20px;
  }

  .global-footer-contact-item,
  .global-footer-chat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 18px 14px;
  }

  .global-footer-chat {
    grid-column: 1 / -1;
  }

  .global-footer-main {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }

  .global-footer-newsletter {
    grid-column: 1 / -1;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .global-footer-newsletter>p {
    max-width: 430px;
  }

  .global-footer-newsletter form {
    max-width: 430px;
  }

  .ai-editorial-hero {
    padding-bottom: 58px;
  }

  .ai-editorial-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ai-editorial-visual {
    min-height: 360px;
  }

  .ai-approach-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-approach-intro {
    padding-right: 0;
  }

  .ai-approach-steps li:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .ai-editorial-split,
  .ai-outcomes-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ai-editorial-list-panel {
    max-width: none;
  }

  .ai-outcomes-proof {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .global-footer-contact {
    grid-template-columns: 1fr;
    padding-block: 26px 14px;
  }

  .global-footer-intro {
    grid-column: auto;
  }

  .global-footer-contact-item,
  .global-footer-chat {
    grid-column: auto;
    padding-inline: 0;
  }

  .global-footer-chat {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .global-footer-chat .global-footer-book {
    width: 100%;
    margin: 7px 0 0;
  }

  .global-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding-top: 30px;
  }

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

  .global-footer-column:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .global-footer-newsletter {
    grid-column: 1 / -1;
  }

  .global-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .global-footer-bottom>span:last-child {
    flex-wrap: wrap;
  }

  .ai-editorial-hero {
    padding-top: 30px;
  }

  .ai-editorial-hero-copy h1 {
    font-size: 46px;
  }

  .ai-editorial-hero-grid {
    gap: 25px;
  }

  .ai-editorial-visual {
    min-height: 310px;
    transform: scale(.88);
  }

  .ai-approach-editorial {
    padding: 56px 0;
  }

  .ai-approach-steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 38px;
  }

  .ai-approach-steps li,
  .ai-approach-steps li:first-child {
    padding: 0 20px;
    border-left: 1px solid #d7d9de;
  }

  .ai-approach-steps li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .ai-editorial-section {
    padding: 62px 0;
  }

  .ai-editorial-copy h2,
  .ai-outcomes-primary h2 {
    font-size: 38px;
  }

  .ai-editorial-list-panel {
    padding: 22px 20px 22px 28px;
  }

  .ai-delivery-editorial ol {
    grid-template-columns: 1fr 1fr;
  }

  .ai-delivery-editorial li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .ai-delivery-editorial li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }
}

@media (max-width: 480px) {
  .global-footer-main {
    grid-template-columns: 1fr;
  }

  .global-footer-column:nth-of-type(3) {
    grid-column: auto;
  }

  .global-footer-newsletter {
    grid-column: auto;
  }

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

  .ai-editorial-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ai-editorial-actions .button {
    width: 100%;
  }

  .ai-editorial-visual {
    min-height: 270px;
    transform: scale(.74);
    margin-inline: -42px;
  }

  .ai-approach-steps {
    grid-template-columns: 1fr;
  }

  .ai-approach-steps li,
  .ai-approach-steps li:first-child,
  .ai-approach-steps li:nth-child(odd) {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid #d7d9de;
  }

  .ai-approach-steps li:first-child {
    border-top: 0;
  }

  .ai-delivery-editorial ol {
    grid-template-columns: 1fr;
  }

  .ai-delivery-editorial li,
  .ai-delivery-editorial li:nth-child(3),
  .ai-delivery-editorial li:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .ai-delivery-editorial li:first-child {
    border-top: 0;
  }
}


/* === Approved AI Consulting redesign === */
.aic-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 42px;
  background: #fff
}

.aic-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  gap: 80px;
  align-items: center
}

.aic-hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 22px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: .98;
  letter-spacing: -.055em
}

.aic-hero-copy>p:not(.eyebrow) {
  max-width: 650px;
  color: #656873;
  font-size: 17px;
  line-height: 1.7
}

.aic-hero-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center
}

.aic-visual-card {
  position: relative;
  z-index: 2;
  width: 260px;
  min-height: 300px;
  border: 1px solid #e3e4e8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(20, 24, 35, .14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px
}

.aic-visual-card small {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #ef1735;
  font-weight: 800
}

.aic-visual-card img {
  width: 112px;
  height: 112px;
  margin-bottom: 24px
}

.aic-visual-card strong {
  font-size: 22px
}

.aic-visual-card span {
  margin-top: 8px;
  color: #6b6e77;
  font-size: 13px
}

.aic-visual-card i {
  width: 48px;
  height: 4px;
  background: #ef1735;
  border-radius: 4px;
  margin-top: 24px
}

.aic-orbit {
  position: absolute;
  border: 1px dashed rgba(239, 23, 53, .28);
  border-radius: 50%
}

.aic-orbit-one {
  width: 360px;
  height: 220px;
  transform: rotate(24deg)
}

.aic-orbit-two {
  width: 300px;
  height: 340px;
  transform: rotate(-32deg)
}

.aic-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ef1735;
  background: #ef1735
}

.aic-dot-one {
  left: 10%;
  top: 58%
}

.aic-dot-two {
  right: 8%;
  top: 25%;
  background: #17cde0;
  box-shadow: 0 0 0 1px #17cde0
}

.aic-approach {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: linear-gradient(90deg, #fff 0, #fbfbfc 100%);
  padding: 58px 0
}

.aic-approach:before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -75px;
  width: 500px;
  height: 210px;
  background: repeating-radial-gradient(ellipse at center, transparent 0 19px, rgba(239, 23, 53, .13) 20px 21px);
  opacity: .55
}

.aic-approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: stretch
}

.aic-approach-intro {
  padding-right: 44px
}

.aic-approach-intro h2 {
  font-size: 31px;
  line-height: 1.08;
  margin: 12px 0 18px
}

.aic-approach-intro>p:last-child {
  max-width: 330px;
  color: #70727a;
  line-height: 1.65
}

.aic-stage {
  border-left: 1px solid #d9dade;
  padding: 0 32px
}

.aic-stage b {
  display: block;
  color: #ef1735;
  font-size: 34px;
  font-weight: 400;
  line-height: 1
}

.aic-stage i {
  display: block;
  width: 25px;
  height: 2px;
  background: #ef1735;
  margin: 13px 0 22px
}

.aic-stage h3 {
  font-size: 18px;
  margin: 0 0 13px
}

.aic-stage p {
  color: #747780;
  line-height: 1.55
}

.aic-editorial,
.aic-outcomes {
  padding: 48px 0
}

.aic-split {
  display: grid;
  grid-template-columns: .9fr 1.15fr;
  gap: 95px;
  align-items: start
}

.aic-split h2 {
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 14px 0 22px
}

.aic-split>div:first-child>p:not(.eyebrow) {
  max-width: 590px;
  color: #686b75;
  line-height: 1.75
}

.aic-lined-list {
  border-left: 2px solid #ef1735;
  padding: 12px 0 12px 38px
}

.aic-lined-list p {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid #ececf0
}

.aic-lined-list p:last-child {
  border-bottom: 0
}

.aic-lined-list p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #ef1735
}

.aic-check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0
}

.aic-check-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  color: #565963
}

.aic-check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 2px;
  background: #ef1735
}

.aic-proof {
  border-left: 1px solid #d9dade;
  padding-left: 50px
}

.aic-proof article {
  padding: 0 0 25px;
  margin: 0 0 25px;
  border-bottom: 1px solid #d9dade
}

.aic-proof article:last-child {
  border-bottom: 0;
  margin-bottom: 0
}

.aic-proof h3 {
  font-size: 20px;
  margin: 0 0 8px
}

.aic-proof p {
  color: #70727a
}

.aic-delivery {
  padding: 72px 0 78px;
  color: #fff;
  background: radial-gradient(circle at 100% 50%, rgba(122, 15, 35, .4), transparent 35%), #0d0f13
}

.aic-delivery .eyebrow {
  color: #ff4b65
}

.aic-delivery h2 {
  font-size: 36px;
  margin: 12px 0 35px
}

.aic-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .1)
}

.aic-delivery-grid article {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, .13)
}

.aic-delivery-grid article:last-child {
  border-right: 0
}

.aic-delivery-grid small {
  color: #8f929a
}

.aic-delivery-grid h3 {
  margin: 12px 0;
  font-size: 19px
}

.aic-delivery-grid p {
  color: #b7bac2;
  line-height: 1.6
}

.aic-final-cta {
  padding: 42px 0;
  background: linear-gradient(110deg, #ef1735, #c50d29)
}

.aic-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff
}

.aic-final-cta h2 {
  font-size: 34px;
  margin: 0 0 8px
}

.aic-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .85)
}

.button-light {
  background: #fff;
  color: #111;
  border-color: #fff;
  min-width: 235px;
  justify-content: center
}

/* === Approved shared footer === */
.global-contact-strip,
.site-footer-v2 {
  color: #fff;
  background: radial-gradient(circle at 100% 10%, rgba(131, 14, 35, .45), transparent 42%), linear-gradient(110deg, #0b1221, #111117 64%, #2a0d14)
}

.global-contact-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.global-contact-strip-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1.45fr .85fr 1.2fr 1.15fr auto;
  gap: 28px;
  align-items: center
}

.global-contact-lead p {
  margin: 0 0 9px;
  color: #ef1735;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em
}

.global-contact-lead h2 {
  margin: 0 0 5px;
  font-size: 24px
}

.global-contact-lead span,
.global-contact-item em,
.global-contact-book em {
  display: block;
  color: #c2c5cd;
  font-style: normal;
  font-size: 13px
}

.global-contact-item,
.global-contact-book {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  text-decoration: none
}

.global-contact-item b,
.global-contact-book b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px
}

.global-contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 23, 53, .55);
  border-radius: 8px;
  color: #ef1735;
  flex: 0 0 auto
}

.global-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7
}

.global-contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 205px;
  padding: 16px 22px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none
}

.global-contact-button span {
  color: #ef1735
}

.site-footer-v2 {
  padding: 0 0 20px
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr .85fr 1fr .9fr 1.25fr;
  gap: 48px;
  padding-top: 32px;
  padding-bottom: 28px
}

.footer-v2-brand img {
  width: 205px;
  max-width: 100%;
  height: auto
}

.footer-v2-brand p,
.footer-v2-grid address,
.footer-v2-news p {
  color: #c1c4cc;
  font-style: normal;
  line-height: 1.65
}

.footer-v2-grid address a {
  color: #fff;
  font-weight: 800
}

.footer-v2-column,
.footer-v2-news {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-v2-column h2,
.footer-v2-news h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .16em
}

.footer-v2-column a {
  color: #d8dae0;
  text-decoration: none;
  font-size: 13px
}

.footer-v2-news {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, .25)
}

.footer-v2-news form div {
  display: flex;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  overflow: hidden
}

.footer-v2-news input {
  min-width: 0;
  flex: 1;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: #fff
}

.footer-v2-news button {
  width: 42px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #ef1735;
  font-size: 20px
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.footer-social a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800
}

.footer-v2-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #888d98;
  font-size: 11px
}

.footer-v2-bottom span:last-child {
  display: flex;
  gap: 18px
}

.footer-v2-bottom a {
  color: #aeb1b9;
  text-decoration: none
}

@media(max-width:1100px) {
  .aic-hero-grid {
    grid-template-columns: 1fr .75fr;
    gap: 35px
  }

  .aic-approach-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr)
  }

  .aic-stage:nth-of-type(4) {
    border-left: 0
  }

  .aic-stage {
    padding-bottom: 30px
  }

  .global-contact-strip-inner {
    grid-template-columns: 1fr 1fr 1fr
  }

  .global-contact-lead {
    grid-column: 1/-1;
    padding-top: 25px
  }

  .global-contact-button {
    margin-bottom: 25px
  }

  .footer-v2-grid {
    grid-template-columns: 1.4fr 1fr 1fr
  }

  .footer-v2-news {
    padding-left: 0;
    border-left: 0
  }
}

@media(max-width:760px) {
  .aic-hero {
    padding: 35px 0 55px
  }

  .aic-hero-grid,
  .aic-split {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .aic-hero-copy h1 {
    font-size: 45px
  }

  .aic-hero-art {
    min-height: 300px
  }

  .aic-visual-card {
    width: 220px;
    min-height: 255px
  }

  .aic-approach-grid {
    grid-template-columns: 1fr
  }

  .aic-approach-intro {
    padding: 0 0 30px
  }

  .aic-stage {
    border-left: 0;
    border-top: 1px solid #ddd;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 0 15px
  }

  .aic-stage b {
    grid-row: 1/4
  }

  .aic-stage i {
    display: none
  }

  .aic-stage h3,
  .aic-stage p {
    grid-column: 2
  }

  .aic-proof {
    border-left: 0;
    padding-left: 0
  }

  .aic-delivery-grid {
    grid-template-columns: 1fr 1fr
  }

  .aic-delivery-grid article:nth-child(2) {
    border-right: 0
  }

  .aic-final-cta-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .global-contact-strip-inner {
    grid-template-columns: 1fr;
    padding-top: 25px;
    padding-bottom: 25px
  }

  .global-contact-lead {
    grid-column: auto;
    padding-top: 0
  }

  .global-contact-item,
  .global-contact-book {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15)
  }

  .global-contact-button {
    margin: 0;
    width: 100%
  }

  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .footer-v2-brand,
  .footer-v2-news {
    grid-column: 1/-1
  }

  .footer-v2-bottom {
    gap: 18px;
    flex-direction: column
  }

  .footer-v2-bottom span:last-child {
    flex-wrap: wrap
  }
}

@media(max-width:460px) {
  .aic-hero-copy h1 {
    font-size: 38px
  }

  .aic-delivery-grid,
  .footer-v2-grid {
    grid-template-columns: 1fr
  }

  .footer-v2-brand,
  .footer-v2-news {
    grid-column: auto
  }

  .aic-delivery-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13)
  }
}


/* Navbar-only correction — 2026-08-13
   The primary navigation was reduced from seven items to four. Legacy
   nth-child mega-menu positioning still referenced the old item order,
   causing dropdowns to anchor under the wrong part of the header.
   These desktop-only overrides align each remaining mega menu with its
   current navigation item. Mobile behavior is intentionally unchanged. */
@media (min-width: 981px) {
  .primary-nav>ul>.nav-item:nth-child(1)>.mega-menu {
    position: absolute;
    left: 0;
    right: auto;
    width: min(560px, calc(100vw - 48px));
    transform: translate(0, 12px);
  }

  .primary-nav>ul>.nav-item:nth-child(1):hover>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(1):focus-within>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(1).open>.mega-menu {
    transform: translate(0, 0);
  }

  .primary-nav>ul>.nav-item:nth-child(2)>.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    width: min(630px, calc(100vw - 48px));
    transform: translate(-50%, 12px);
  }

  .primary-nav>ul>.nav-item:nth-child(2):hover>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(2):focus-within>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(2).open>.mega-menu {
    transform: translate(-50%, 0);
  }

  .primary-nav>ul>li.nav-item.business-apps-nav>.mega-menu {
    position: absolute;
    left: auto;
    right: -120px;
    width: min(820px, calc(100vw - 48px));
    transform: translate(0, 12px);
  }

  .primary-nav>ul>li.nav-item.business-apps-nav:hover>.mega-menu,
  .primary-nav>ul>li.nav-item.business-apps-nav:focus-within>.mega-menu,
  .primary-nav>ul>li.nav-item.business-apps-nav.open>.mega-menu {
    transform: translate(0, 0);
  }

  .primary-nav>ul>.nav-item:nth-child(4)>.mega-menu {
    position: absolute;
    left: auto;
    right: 0;
    width: min(630px, calc(100vw - 48px));
    transform: translate(0, 12px);
  }

  .primary-nav>ul>.nav-item:nth-child(4):hover>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(4):focus-within>.mega-menu,
  .primary-nav>ul>.nav-item:nth-child(4).open>.mega-menu {
    transform: translate(0, 0);
  }
}


/* Approved footer social follow-up */
.footer-social-copy {
  margin: 0 0 4px;
  color: #c1c4cc;
  line-height: 1.65
}

/* Approved Business Applications hero visual update */
.ba-system-card-image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
  backdrop-filter: none
}

.ba-system-card-image::before {
  display: none
}

.ba-system-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(20, 20, 25, .13);
  border: 1px solid rgba(17, 17, 19, .1)
}

@media(max-width:880px) {
  .ba-system-image {
    border-radius: 20px
  }
}

@media(max-width:640px) {
  .ba-system-image {
    border-radius: 18px
  }
}


/* Business Applications approved visual final fix */
.ba-system-image {
  border: 0 !important;
  box-shadow: 0 34px 80px rgba(20, 20, 25, .13)
}

.ba-delivery .process>span {
  display: none !important
}


/* Approved Book Consultation combined layout — August 2026 */
.consultation-page .consultation-hero {
  padding-bottom: 14px;
}

.consultation-page .consultation-content {
  padding-top: 10px;
}

.consultation-page .consultation-support-panel {
  align-self: stretch;
}

.consultation-page .consultation-support-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 4px;
}

.consultation-page .consultation-support-contact {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e1e2e6;
  border-radius: 9px;
  background: rgba(255, 255, 255, .88);
  color: #15161a;
  text-decoration: none;
}

.consultation-page .consultation-support-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff0f2;
  color: var(--red);
}

.consultation-page .consultation-support-contact-icon svg {
  width: 17px;
  height: 17px;
}

.consultation-page .consultation-support-contact>span:last-child {
  display: grid;
  gap: 5px;
}

.consultation-page .consultation-support-contact strong {
  font-size: 13px;
}

.consultation-page .consultation-support-contact small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consultation-page .consultation-support-contact b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: var(--red);
  font-size: 10px;
}

.consultation-page .consultation-support-contact b svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 1100px) {
  .consultation-page .consultation-support-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .consultation-page .consultation-hero {
    padding-bottom: 6px;
  }

  .consultation-page .consultation-content {
    padding-top: 4px;
  }
}


/* Approved sticky desktop header + full-screen animated mobile navigation */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1200;
}

.mobile-nav-brand,
.mobile-nav-secondary {
  display: none;
}

@media (max-width: 980px) {

  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body.menu-open {
    height: 100dvh;
    touch-action: none;
  }

  .site-header {
    z-index: 1400;
    background: rgba(255, 255, 255, .98);
  }

  .site-header-inner {
    height: 72px;
    padding: 0 18px;
  }

  .site-header .brand {
    position: relative;
    z-index: 1410;
  }

  .site-header .brand-logo {
    width: auto;
    height: 48px;
    max-width: 190px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1420;
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    transition: border-color .2s ease, background .2s ease;
  }

  .menu-toggle span {
    height: 2px;
    margin: 4px 0;
    background: #111;
    transform-origin: center;
    transition: transform .28s ease, opacity .2s ease, background .2s ease;
  }

  .primary-nav {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100dvh;
    max-height: none !important;
    margin: 0 !important;
    padding: 106px 34px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 105% 18%, rgba(166, 11, 38, .8), transparent 37%),
      radial-gradient(circle at 95% 76%, rgba(101, 7, 27, .35), transparent 38%),
      linear-gradient(135deg, #080b12 0%, #0b0d12 56%, #210a11 100%);
    color: #fff;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      transform .52s cubic-bezier(.22, 1, .36, 1),
      opacity .3s ease,
      visibility 0s linear .52s;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      transform .52s cubic-bezier(.22, 1, .36, 1),
      opacity .3s ease,
      visibility 0s linear 0s;
  }

  .mobile-nav-brand {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 2;
    display: block;
    width: 178px;
    min-width: 0;
    padding: 0;
  }

  .mobile-nav-brand img,
  .mobile-nav-brand .brand-logo {
    width: 178px !important;
    height: auto !important;
    max-width: none;
    transform: none;
  }

  body.menu-open>.site-header .site-header-inner>.brand {
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    border-color: transparent;
    background: transparent;
  }

  body.menu-open .menu-toggle span {
    background: #fff;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav>ul {
    /* display: flex !important; */
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: start;
    width: min(100%, 570px);
    gap: 0 !important;
    margin: 0 auto;
    padding: 45px 0 28px !important;
    list-style: none;
  }

  .primary-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .primary-nav .nav-item>a {
    min-height: 76px;
    height: auto;
    padding: 22px 4px;
    color: #fff;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 22px;
    /* line-height: 1.08; */
    /* font-weight: 600; */
    letter-spacing: -.025em;
  }

  .primary-nav .nav-item.active>a {
    color: var(--red);
  }

  .primary-nav .nav-item:hover>a {
    color: #fff;
  }

  .primary-nav .has-mega>a::after {
    width: 12px;
    height: 12px;
    margin: 0 7px 5px auto;
    border-right-width: 2px;
    border-bottom-width: 2px;
    transition: transform .22s ease;
  }

  .primary-nav .has-mega.open>a::after {
    transform: rotate(225deg);
  }

  .primary-nav .mega-menu,
  .primary-nav .nav-item:nth-child(2) .mega-menu,
  .primary-nav .nav-item:nth-child(4) .mega-menu,
  .primary-nav .nav-item:nth-child(5) .mega-menu {
    position: static !important;
    display: none;
    width: auto !important;
    padding: 0 4px 24px;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-nav .has-mega.open .mega-menu {
    display: block;
  }

  .primary-nav .mega-kicker {
    margin: 0 0 14px;
    color: var(--red);
  }

  .primary-nav .mega-grid,
  .primary-nav .mega-grid-2,
  .primary-nav .mega-grid-3 {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .primary-nav .mega-link {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .primary-nav .mega-link:last-child {
    border-bottom: 0;
  }

  .primary-nav .mega-link strong {
    color: #fff;
    font-size: 15px;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .primary-nav .mega-link span:not(.mega-link-icon) {
    color: rgba(255, 255, 255, .58);
  }

  .primary-nav .mega-link-icon img {
    width: 30px;
    height: 30px;
  }

  .mobile-nav-secondary {
    display: grid;
    width: min(100%, 570px);
    margin: 20px auto 0;
    padding: 24px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-nav-secondary a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 8px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 16px;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: -.01em;
  }

  .mobile-nav-secondary a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .primary-nav {
    padding: 96px 24px 26px;
  }

  .mobile-nav-brand {
    top: 22px;
    left: 22px;
    width: 160px;
  }

  .mobile-nav-brand img,
  .mobile-nav-brand .brand-logo {
    width: 160px !important;
  }

  .primary-nav .nav-item>a {
    min-height: 70px;
    font-size: clamp(22px, 7.8vw, 22px);
  }

  .mobile-nav-secondary {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .primary-nav,
  .menu-toggle span {
    transition: none !important;
  }
}


/* Mobile overlay mega-menu interaction fix */
@media (max-width: 980px) {

  .primary-nav .mega-link:hover,
  .primary-nav .mega-link:active,
  .primary-nav .mega-link:focus,
  .primary-nav .mega-link:focus-visible,
  .primary-nav .business-apps-nav .mega-link:hover,
  .primary-nav .business-apps-nav .mega-link:active,
  .primary-nav .business-apps-nav .mega-link:focus,
  .primary-nav .business-apps-nav .mega-link:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    outline-color: var(--red);
  }

  .primary-nav .mega-link:hover strong,
  .primary-nav .mega-link:active strong,
  .primary-nav .mega-link:focus strong {
    color: #fff;
  }
}


/* Final static footer/contact consolidation */
@media (min-width:1101px) {
  .global-contact-strip-inner {
    grid-template-columns: 1.45fr 1.2fr 1.15fr auto;
  }

  .footer-v2-grid {
    grid-template-columns: 1.35fr .85fr 1fr .9fr 1.25fr;
  }
}

/* Footer social links moved into the contact strip on non-consultation pages */
.global-contact-social .footer-social {
  margin-top: 8px;
}

@media (min-width:1101px) {
  .global-contact-strip + .site-footer-v2 .footer-v2-grid {
    grid-template-columns: 1.35fr .85fr 1fr .9fr;
  }
}


/* Footer Business Apps two-column links */
.footer-v2-business-apps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 9px;
  align-content: start;
}

.footer-v2-business-apps h2 {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .footer-v2-business-apps {
    display: flex;
  }
}
