:root {
  --wpb-navy: #0b2f4f;
  --wpb-navy-deep: #06223a;
  --wpb-mint: #2d6fb5;
  --wpb-lime: #1f8cff;
  --wpb-sand: #f5f8fc;
  --wpb-ink: #102436;
  --wpb-muted: #5f7285;
  --wpb-border: rgba(16, 36, 54, 0.12);
  --wpb-shadow: 0 18px 60px rgba(7, 28, 46, 0.12);
  --wpb-radius: 28px;
  --wpb-radius-sm: 18px;
  --wpb-container: min(1200px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--wpb-ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: var(--wpb-container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(6, 34, 58, 0.98), rgba(6, 34, 58, 0.94));
  color: #fff;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(4, 19, 33, 0.28);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: linear-gradient(180deg, rgba(4, 21, 36, 0.92), rgba(4, 21, 36, 0.62) 68%, transparent);
  box-shadow: none;
}

.home .site-header.is-scrolled {
  box-shadow: none;
}

.home .utility-bar,
.home .header-actions {
  display: none;
}

.home .header-main__inner {
  min-height: 108px;
  gap: 28px;
}

.home .nav-link {
  min-height: 108px;
}

.home .site-brand__text,
.home .custom-logo-link {
  font-size: 1.45rem;
  letter-spacing: 0.18em;
}

.home .site-brand__logo,
.home .wpb-brand-logo--full {
  height: 46px;
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner,
.header-main__inner,
.footer-main,
.footer-meta,
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar__inner {
  min-height: 42px;
  font-size: 13px;
}

.utility-links,
.utility-actions,
.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.utility-links a,
.utility-actions button,
.utility-language {
  color: rgba(255, 255, 255, 0.78);
}

.utility-action {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.utility-action--search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-meta__search,
.header-meta__language {
  min-height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-meta__search {
  width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
}

.header-meta__search-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.header-meta__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.header-meta__language {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-meta__language::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.language-switcher {
  position: relative;
  display: inline-flex;
}

.language-switcher__toggle {
  gap: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}

.language-switcher.is-open .language-switcher__toggle {
  color: #fff;
}

.language-switcher.is-open .language-switcher__toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  min-width: 126px;
  padding: 8px;
  border: 1px solid rgba(223, 231, 240, 0.96);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(4, 20, 34, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher__menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(223, 231, 240, 0.96);
  border-left: 1px solid rgba(223, 231, 240, 0.96);
  background: #fff;
  transform: rotate(45deg);
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher__link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 4px;
  color: #0b223d;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-current {
  background: #eef5fc;
  color: #075fc9;
}

.header-main__inner {
  min-height: 88px;
}

.header-main {
  position: relative;
}

.site-brand__text,
.custom-logo-link {
  font: 800 2rem/1 "Manrope", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}

.site-brand__logo-link {
  display: inline-flex;
  align-items: center;
}

.site-brand__logo,
.wpb-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.site-brand__logo,
.wpb-brand-logo--full {
  height: 42px;
  max-width: min(220px, 26vw);
}

.wpb-brand-logo--mark {
  height: 36px;
}

.primary-navigation {
  flex: 1;
}

.nav-list,
.nav-list ul,
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: static;
}

.nav-item {
  position: relative;
}

.nav-item--has-panel {
  position: static;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
  font: 700 0.93rem/1 "Manrope", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.nav-link--has-panel::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-item--has-panel.is-open > .nav-link {
  color: var(--wpb-lime);
}

.nav-item--has-panel.is-open > .nav-link--has-panel::after {
  transform: rotate(-135deg) translateY(1px);
}

.nav-item__toggle,
.mobile-menu-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.nav-item__toggle {
  display: none;
}

.mega-panel {
  position: absolute;
  inset: calc(100% - 1px) 0 auto 0;
  min-width: 0;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  background: #fff;
  box-shadow: 0 28px 50px rgba(7, 28, 46, 0.12);
}

.nav-item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: start;
  gap: 24px 56px;
  width: var(--wpb-container);
  margin: 0 auto;
  padding: 30px 0 38px;
  background: transparent;
  color: var(--wpb-ink);
  border-radius: 0;
  box-shadow: none;
}

.mega-panel__heading {
  margin: 0 0 16px;
  font: 800 0.92rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0;
  text-transform: none;
  color: #0a69b8;
}

.mega-panel__heading a {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid #0a7fd8;
  color: inherit;
}

.mega-panel__links {
  display: grid;
  gap: 16px;
}

.mega-panel__links a {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #173f66;
}

.mega-panel__image {
  display: block;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0, 68, 124, 0.08);
  aspect-ratio: 16 / 9;
}

.mega-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.mega-panel__image:hover img,
.mega-panel__image:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.mega-panel__lead {
  display: none;
}

.mega-panel__lead-kicker {
  display: none;
}

.mega-panel__lead-title {
  display: none;
}

.mega-panel__lead-body {
  display: none;
}

.mega-panel__description {
  display: block;
  margin: -6px 0 16px;
  color: rgba(23, 63, 102, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mega-panel__link-description {
  display: block;
  margin-top: 4px;
  color: rgba(23, 63, 102, 0.62);
  font-size: 0.8rem;
  font-weight: 500;
}

.wpb-mirror-footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.wpb-mirror-footer-contact__item {
  color: currentColor;
  opacity: 0.84;
}

.header-search {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 21, 36, 0.94);
}

.header-search__inner {
  display: grid;
  gap: 14px;
  padding: 20px 0 26px;
}

.header-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.header-search__input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: 500 1rem/1 "IBM Plex Sans", sans-serif;
}

.header-search__input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.header-search__input--light {
  border-color: var(--wpb-border);
  background: #fff;
  color: var(--wpb-ink);
}

.header-search__input--light::placeholder {
  color: var(--wpb-muted);
}

.header-search__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.header-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: #065fd3;
  color: #fff;
}

.button--ghost {
  border-color: rgba(11, 47, 79, 0.18);
  color: var(--wpb-navy);
}

.button--text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--wpb-navy);
}

.section-shell {
  padding: 88px 0;
}

.section-shell--light { background: #fff; }
.section-shell--white { background: #fff; }
.section-shell--neutral { background: var(--wpb-sand); }
.section-shell--dark { background: var(--wpb-navy-deep); color: #fff; }
.section-shell--dark-accent { background: linear-gradient(160deg, var(--wpb-navy), var(--wpb-navy-deep)); color: #fff; }
.section-shell--contact { background: linear-gradient(135deg, #eef5fc, #f8fbfe); }
.section-shell--industry-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 27, 49, 0.78), rgba(3, 27, 49, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #123b60 0%, #0d2e4f 44%, #071c31 100%);
  background-size: auto, 104px 104px, 104px 104px, auto;
  color: #fff;
}

.section-shell--industry-showcase::before,
.section-shell--industry-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-shell--industry-showcase::before {
  background:
    linear-gradient(118deg, transparent 16%, rgba(111, 207, 255, 0.22) 34%, transparent 46%),
    linear-gradient(132deg, transparent 58%, rgba(47, 140, 255, 0.16) 66%, transparent 74%);
  opacity: 0.58;
}

.section-shell--industry-showcase::after {
  display: none;
}

.section-kicker {
  margin: 0 0 16px;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #075fc9;
}

.section-shell--dark .section-kicker,
.section-shell--dark-accent .section-kicker,
.section-shell--industry-showcase .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.section-shell--industry-showcase .section-title,
.section-shell--industry-showcase .section-text,
.section-shell--industry-showcase .button--text {
  color: #fff;
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.9rem, 4.7vw, 5rem);
  line-height: 0.98;
  color: #fff;
}

.section-title,
.page-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.section-text,
.hero-body p,
.contact-band__body,
.content-shell {
  font-size: 1.06rem;
  line-height: 1.8;
  color: inherit;
}

.section-text--narrow {
  max-width: 760px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading__copy {
  flex: 1;
  min-width: 0;
}

.section-heading__actions {
  flex-shrink: 0;
}

.page-summary {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.archive-meta,
.archive-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.archive-meta {
  margin-top: 24px;
}

.archive-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.archive-meta__label {
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.archive-meta__value {
  font: 700 0.9rem/1 "IBM Plex Sans", sans-serif;
  color: #fff;
}

.archive-pills {
  margin-top: 18px;
}

.archive-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.archive-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 140, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.archive-pill--active {
  border-color: transparent;
  background: #065fd3;
  color: #fff;
}

.hero-section {
  padding: 38px 0 76px;
  background: linear-gradient(160deg, #061d33 0%, #0b2f4f 52%, #082641 100%);
  color: #fff;
}

.home .hero-section {
  padding-top: 122px;
}

.hero-grid,
.split-section,
.cta-feature,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  min-height: auto;
  margin: 92px 0 72px 64px;
  padding: 0;
  background: none;
  clip-path: none;
  box-shadow: none;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.34);
}

.hero-copy .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-body {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-section .button-row {
  margin-top: 30px;
}

.hero-media,
.split-visual,
.cta-feature__visual {
  min-height: 520px;
}

.hero-media--stack {
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--wpb-radius);
  background: linear-gradient(145deg, #d7e1e8 0%, #f8fbfd 56%, #c8d6df 100%);
  box-shadow: var(--wpb-shadow);
  isolation: isolate;
}

.visual-panel__caption:empty {
  display: none;
}

.visual-panel__mesh,
.visual-panel__backdrop,
.visual-panel__subject,
.visual-panel__foreground,
.visual-panel__cut,
.visual-panel__caption {
  position: absolute;
}

.hero-section .visual-panel {
  min-height: 700px;
  border-radius: 0 0 var(--wpb-radius) var(--wpb-radius);
}

.visual-panel__mesh {
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.visual-panel__backdrop {
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, rgba(13, 37, 58, 0.08), rgba(255, 255, 255, 0.08));
}

.visual-panel__subject {
  inset: auto 7% 12% auto;
  width: min(56%, 360px);
  height: 70%;
  z-index: 2;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, #8aa0b1 0%, #566f82 42%, #30475a 100%);
  box-shadow: -18px 28px 80px rgba(8, 24, 36, 0.28);
}

.visual-panel__foreground {
  inset: auto -8% -4% -6%;
  height: 28%;
  z-index: 2;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06) 54%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #dfe8ee 0%, #96abbb 42%, #627989 100%);
  transform: rotate(-8deg);
}

.visual-panel__cut {
  inset: auto auto 10% -16%;
  width: 74%;
  height: 24%;
  z-index: 3;
  border-radius: 0 28px 28px 0;
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(-14deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.visual-panel__caption {
  left: 28px;
  right: auto;
  bottom: 24px;
  max-width: 280px;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 34, 58, 0.9);
  color: #fff;
  font: 600 0.95rem/1.5 "IBM Plex Sans", sans-serif;
}

.visual-panel--hero {
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(47, 140, 255, 0.08), transparent 34%),
    linear-gradient(145deg, #2a4054 0%, #6a8396 42%, #1a2c3d 100%);
}

.visual-panel--hero .visual-panel__mesh {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.14;
}

.visual-panel--hero .visual-panel__backdrop {
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 255, 255, 0.22), transparent 14%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(4, 21, 36, 0.06), rgba(4, 21, 36, 0.28)),
    linear-gradient(150deg, #31495c 0%, #7d95a7 36%, #102333 100%);
}

.visual-panel--hero .visual-panel__subject {
  inset: auto 4% 8% auto;
  width: 46%;
  height: 78%;
  border-radius: 34px 34px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #70889b 0%, #32475a 44%, #182937 100%);
  box-shadow: -24px 34px 88px rgba(2, 12, 20, 0.48);
}

.visual-panel--hero .visual-panel__foreground {
  inset: auto -8% 7% 18%;
  height: 18%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 74%),
    linear-gradient(135deg, #8498a8 0%, #2a4053 100%);
  transform: skewX(-18deg);
}

.visual-panel--hero .visual-panel__cut {
  inset: 11% 10% auto auto;
  width: 28%;
  height: 54%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.visual-panel--hero::before,
.visual-panel--split::before,
.visual-panel--careers::before,
.visual-panel--contact::before {
  content: "";
  position: absolute;
  inset: 36px 34px auto auto;
  width: 148px;
  height: 148px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.visual-panel--split {
  background:
    linear-gradient(160deg, rgba(8, 31, 51, 0.08), rgba(8, 31, 51, 0.32)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d2dde5 0%, #8aa0b1 38%, #33495c 100%);
}

.visual-panel--split .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.08), rgba(5, 22, 36, 0.36)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(145deg, #d8e2ea 0%, #93a8b8 42%, #355064 100%);
}

.visual-panel--split .visual-panel__subject {
  inset: auto 8% 14% auto;
  width: 42%;
  height: 66%;
  border-radius: 30px 30px 20px 20px;
  background:
    radial-gradient(circle at 54% 18%, rgba(255, 244, 236, 0.48), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #a4b6c2 0%, #61798b 42%, #344c60 100%);
}

.visual-panel--split .visual-panel__foreground {
  inset: auto 14% -3% -12%;
  height: 22%;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(135deg, #eff4f7 0%, #b4c3ce 40%, #708493 100%);
  transform: rotate(-11deg);
}

.visual-panel--split .visual-panel__cut,
.visual-panel--careers .visual-panel__cut,
.visual-panel--contact .visual-panel__cut {
  inset: auto auto 0 -12%;
  width: 92%;
  height: 42%;
  border-radius: 0 26px 0 0;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(-12deg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.visual-panel--careers {
  background:
    linear-gradient(150deg, rgba(5, 30, 48, 0.08), rgba(5, 30, 48, 0.46)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d4e0e8 0%, #99afbe 42%, #3a5163 100%);
}

.visual-panel--careers .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.12), rgba(5, 22, 36, 0.44)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 14%),
    linear-gradient(145deg, #dae3ea 0%, #9cb0be 40%, #3d5667 100%);
}

.visual-panel--careers .visual-panel__subject {
  inset: auto auto 13% 10%;
  width: 72%;
  height: 58%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 34%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 34% 26%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 53% 38%, rgba(248, 225, 207, 0.9) 0 7%, transparent 8%),
    radial-gradient(circle at 73% 26%, rgba(248, 225, 207, 0.92) 0 7%, transparent 8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 16%),
    linear-gradient(145deg, #9eafba 0%, #5f7381 42%, #334c5e 100%);
  box-shadow: -14px 26px 72px rgba(5, 20, 31, 0.32);
}

.visual-panel--careers .visual-panel__foreground {
  inset: auto -10% -2% 20%;
  height: 20%;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #edf3f6 0%, #b9c7d1 40%, #738897 100%);
  transform: rotate(-8deg);
}

.visual-panel--contact {
  background:
    linear-gradient(150deg, rgba(5, 30, 48, 0.12), rgba(5, 30, 48, 0.42)),
    linear-gradient(120deg, rgba(47, 140, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #d6e1e8 0%, #8ea5b6 46%, #31475a 100%);
}

.visual-panel--contact .visual-panel__backdrop {
  background:
    linear-gradient(180deg, rgba(5, 22, 36, 0.1), rgba(5, 22, 36, 0.36)),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(145deg, #d7e2ea 0%, #93aaba 42%, #324a5e 100%);
}

.visual-panel--contact .visual-panel__subject {
  inset: auto 8% 14% auto;
  width: 56%;
  height: 54%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, #a9bac6 0%, #627888 42%, #354d61 100%);
}

.visual-panel--contact .visual-panel__foreground {
  inset: auto -10% 0 -6%;
  height: 24%;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(145deg, #ecf2f5 0%, #b5c5cf 38%, #718593 100%);
  transform: rotate(-7deg);
}

.hero-signal-panel {
  padding: 24px;
  border-radius: var(--wpb-radius-sm);
  background: linear-gradient(160deg, rgba(6, 34, 58, 0.96), rgba(11, 47, 79, 0.92));
  color: #fff;
  box-shadow: var(--wpb-shadow);
}

.hero-signal-panel__eyebrow,
.story-card__eyebrow,
.card-sequence {
  margin: 0 0 14px;
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-panel__eyebrow,
.story-card__eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-signal-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-signal-card__value {
  font: 800 1.8rem/1 "Manrope", sans-serif;
}

.hero-signal-card__label {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-signal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-signal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font: 700 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-section .button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.hero-section .button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid,
.archive-grid,
.card-grid,
.link-columns {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.section-shell--stats .section-kicker {
  color: var(--wpb-navy);
}

.section-shell--stats .stat-card {
  padding: 12px 0 22px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--wpb-border);
  border-radius: 0;
  box-shadow: none;
}

.section-shell--stats .stat-card::before {
  display: none;
}

.section-shell--stats .stat-card__value {
  color: var(--wpb-navy-deep);
  font-size: clamp(2.3rem, 3vw, 3.4rem);
}

.section-shell--stats .stat-card__label {
  color: var(--wpb-muted);
}

.card-grid--capabilities,
.card-grid--stories,
.archive-grid,
.link-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.capability-slider {
  margin-top: 34px;
}

.capability-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.capability-slider__viewport::-webkit-scrollbar {
  display: none;
}

.capability-slider__track {
  display: flex;
  gap: 22px;
}

.capability-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.capability-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

.capability-slider__control {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wpb-muted);
  cursor: pointer;
  font: 800 0.76rem/1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
}

.capability-slider__control:hover {
  color: var(--wpb-navy-deep);
}

.stat-card,
.feature-card,
.industry-card,
.story-card,
.content-shell,
.redirect-panel,
.footer-contact,
.page-hero,
.link-column {
  border-radius: var(--wpb-radius-sm);
}

.stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card__value {
  font: 800 clamp(2rem, 3vw, 3rem)/1 "Manrope", sans-serif;
}

.stat-card__label {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-card,
.industry-card,
.story-card,
.content-shell,
.redirect-panel,
.link-column {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.card-sequence {
  color: rgba(11, 47, 79, 0.42);
}

.feature-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-top: 0;
  color: #fff;
  background: #112b41;
}

.feature-card--plain {
  min-height: 0;
  color: var(--wpb-ink);
  background: #fff;
  border-top: 1px solid var(--wpb-border);
}

.feature-card--plain .feature-card__content {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.feature-card--plain p {
  color: var(--wpb-muted);
}

.feature-card--plain .button--text {
  color: var(--wpb-navy);
}

.feature-card__media,
.feature-card__content {
  position: relative;
  z-index: 1;
}

.feature-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(7, 29, 46, 0.08), rgba(7, 29, 46, 0.32)),
    linear-gradient(145deg, #698397 0%, #264761 100%);
}

.feature-card__media::before,
.feature-card__media::after,
.story-card__media::before,
.story-card__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-card__media::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 24%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08) 100%);
}

.feature-card__media::after {
  inset: auto -8% 12% auto;
  width: 52%;
  height: 28%;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  transform: skewX(-18deg);
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 184px 30px 30px;
  background: linear-gradient(180deg, rgba(7, 29, 46, 0.02) 0%, rgba(7, 29, 46, 0.14) 30%, rgba(7, 29, 46, 0.92) 100%);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card .button--text {
  color: #fff;
}

.feature-card:nth-child(2) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #61778b 0%, #1f3d58 100%);
}

.feature-card:nth-child(3) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #7991a0 0%, #31536f 100%);
}

.feature-card:nth-child(4) .feature-card__media {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.12), rgba(7, 29, 46, 0.9)),
    linear-gradient(145deg, #788ea4 0%, #223e57 100%);
}

.feature-card,
.industry-card,
.story-card,
.redirect-panel,
.link-column,
.contact-band,
.entry-stat-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover,
.industry-card:hover,
.story-card:hover,
.redirect-panel:hover,
.link-column:hover,
.contact-band:hover,
.entry-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 24px 70px rgba(7, 28, 46, 0.16);
}

.feature-card h3,
.industry-card h3,
.story-card h3,
.story-card h2,
.link-column h3 {
  margin: 0 0 14px;
  font: 800 1.35rem/1.2 "Manrope", sans-serif;
}

.industry-card__icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 34px;
  color: #35d0ff;
}

.industry-card__icon::before,
.industry-card__icon::after,
.industry-index__icon::before,
.industry-index__icon::after,
.industry-showcase__eyebrow-icon::before,
.industry-showcase__eyebrow-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.industry-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
  grid-template-areas:
    "eyebrow featured"
    "index featured";
  gap: 20px 40px;
  margin-top: 34px;
}

.industry-showcase__eyebrow {
  grid-area: eyebrow;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  margin: 0;
  padding: 0 26px;
  border: 1px solid rgba(53, 208, 255, 0.48);
  background: rgba(5, 39, 67, 0.44);
  font: 800 1rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #35d0ff;
}

.industry-showcase__eyebrow-icon {
  position: relative;
  width: 46px;
  height: 46px;
  color: #35d0ff;
  flex-shrink: 0;
}

.industry-showcase__eyebrow-icon::before {
  inset: 2px 8px 10px;
  border: 2px solid currentColor;
  border-radius: 24px 24px 20px 20px;
  clip-path: polygon(50% 0, 82% 26%, 76% 58%, 56% 100%, 22% 72%, 18% 30%);
}

.industry-showcase__eyebrow-icon::after {
  inset: 14px 16px 14px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 16px 16px;
  clip-path: polygon(50% 0, 80% 36%, 54% 100%, 26% 58%);
}

.industry-showcase__eyebrow-text {
  flex: 1;
}

.industry-showcase__eyebrow-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.industry-showcase__featured {
  grid-area: featured;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.industry-card--featured {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 36px 40px 34px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 44px) 100%, 0 100%);
  background: rgba(6, 40, 68, 0.74);
  color: #fff;
  border: 1px solid rgba(53, 208, 255, 0.42);
  box-shadow: none;
}

.industry-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(8, 31, 51, 0.02), rgba(8, 31, 51, 0.22)),
    linear-gradient(155deg, rgba(17, 59, 92, 0.12) 0%, rgba(17, 59, 92, 0.02) 100%);
}

.industry-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(53, 208, 255, 0.42);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), calc(100% - 44px) 100%, 0 100%);
}

.industry-card--featured > * {
  position: relative;
  z-index: 1;
}

.industry-card--featured .card-sequence {
  color: rgba(255, 255, 255, 0.46);
}

.industry-card--featured h3 {
  max-width: 280px;
  margin-bottom: 26px;
  font-size: clamp(1.85rem, 2.1vw, 2.35rem);
  line-height: 1.16;
}

.industry-card--featured .button--text {
  color: var(--wpb-lime);
  letter-spacing: 0.03em;
}

.industry-card--featured .button--text::after {
  content: "";
  width: 13px;
  height: 13px;
  margin-left: 8px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-index {
  grid-area: index;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
}

.industry-index__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 0 24px 0 0;
  border-top: 1px solid rgba(53, 208, 255, 0.34);
  color: #fff;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.industry-index__item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(53, 208, 255, 0.48);
}

.industry-index__icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-left: 4px;
  color: #27c8ff;
  flex-shrink: 0;
}

.industry-index__chevron {
  position: relative;
  width: 15px;
  height: 15px;
  margin-left: auto;
  color: var(--wpb-lime);
  flex-shrink: 0;
}

.industry-index__chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-index__label {
  font: 700 1.15rem/1.3 "IBM Plex Sans", sans-serif;
  color: #fff;
}

.industry-card__icon--1::before,
.industry-card__icon--1::after,
.industry-index__icon--1::before,
.industry-index__icon--1::after {
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-card__icon--1::before,
.industry-index__icon--1::before {
  inset: 14px 24px 14px 24px;
}

.industry-card__icon--1::after,
.industry-index__icon--1::after {
  inset: 22px 12px 22px 12px;
}

.industry-card__icon--2::before,
.industry-index__icon--2::before {
  inset: 10px 12px 10px 12px;
  border: 4px solid currentColor;
  border-radius: 50%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
}

.industry-card__icon--2::after,
.industry-index__icon--2::after {
  left: 48%;
  top: 34px;
  width: 22px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.industry-card__icon--3::before,
.industry-index__icon--3::before {
  inset: 18px 18px 22px 20px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-card__icon--3::after,
.industry-index__icon--3::after {
  left: 42px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: rotate(45deg);
}

.industry-card__icon--4::before,
.industry-index__icon--4::before {
  inset: 18px 20px 20px 20px;
  border: 4px solid currentColor;
  border-radius: 4px;
  transform: skewY(-12deg);
}

.industry-card__icon--4::after,
.industry-index__icon--4::after {
  inset: 6px 30px 42px 30px;
  border: 4px solid currentColor;
  border-radius: 4px;
}

.industry-index__icon--5::before {
  inset: 20px 16px 24px;
  border: 4px solid currentColor;
  border-radius: 999px;
}

.industry-index__icon--5::after {
  left: 28px;
  top: 16px;
  width: 20px;
  height: 28px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.industry-index__icon--6::before {
  inset: 20px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.industry-index__icon--6::after {
  left: 16px;
  right: 16px;
  top: 34px;
  height: 4px;
  background: currentColor;
}

.story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(11, 47, 79, 0.96), rgba(47, 87, 122, 0.88));
}

.story-card__media::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.08) 100%);
}

.story-card__media::after {
  inset: auto -6% 10% auto;
  width: 42%;
  height: 30%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
  transform: skewX(-18deg);
}

.story-card__meta,
.story-card__date,
.page-meta,
.redirect-note {
  margin: 0 0 12px;
  color: var(--wpb-muted);
  font-size: 0.92rem;
}

.story-card__eyebrow {
  color: #2f8cff;
}

.story-card__meta {
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card__date {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.story-card__link {
  display: block;
  color: inherit;
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
}

.story-card__content {
  padding: 22px 22px 26px;
}

.story-card--newsroom {
  padding: 0;
  overflow: hidden;
}

.story-card--newsroom .story-card__link {
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.story-card--newsroom .story-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 140, 255, 0.34);
  box-shadow: 0 24px 70px rgba(7, 28, 46, 0.16);
}

.story-card--newsroom .story-card__meta {
  color: var(--wpb-navy);
}

.story-card--newsroom h3 {
  margin-bottom: 0;
  color: var(--wpb-navy-deep);
}

.story-card--newsroom .story-card__media {
  aspect-ratio: 16 / 9;
}

.story-card--newsroom:nth-child(2) .story-card__media {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(11, 47, 79, 0.92), rgba(61, 98, 126, 0.86));
}

.story-card--newsroom:nth-child(3) .story-card__media {
  background:
    linear-gradient(120deg, rgba(47, 140, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(23, 57, 82, 0.96), rgba(102, 132, 154, 0.78));
}

.story-card--newsroom:nth-child(4) .story-card__media {
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(145deg, rgba(10, 42, 67, 0.96), rgba(50, 79, 106, 0.82));
}

.story-card--newsroom:nth-child(5) .story-card__media {
  background:
    linear-gradient(120deg, rgba(47, 140, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(12, 44, 67, 0.96), rgba(34, 86, 112, 0.8));
}

.story-card--newsroom:nth-child(6) .story-card__media {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(145deg, rgba(7, 33, 53, 0.96), rgba(74, 120, 146, 0.78));
}

.story-card--archive .story-card__media {
  position: relative;
  overflow: hidden;
}

.story-card--archive .story-card__media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 3px;
  border-radius: 999px;
  background: #065fd3;
}

.cta-feature {
  align-items: center;
}

.section-shell--people {
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
}

.contact-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 340px) auto;
  gap: 30px;
}

.contact-band,
.footer-contact {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.page-hero {
  margin: 28px auto 0;
  padding: 40px;
  width: var(--wpb-container);
  background: linear-gradient(135deg, var(--wpb-navy), var(--wpb-navy-deep));
  color: #fff;
}

.page-main .page-hero,
.archive-main .page-hero,
.single-main .page-hero {
  margin-bottom: 24px;
}

.content-shell {
  max-width: 880px;
}

.content-shell p {
  line-height: 1.9;
}

.link-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.link-column__list a {
  color: var(--wpb-navy);
  font-weight: 600;
}

.link-column__pending {
  display: inline-flex;
  color: var(--wpb-muted);
  font-weight: 600;
}

.split-photo,
.entry-gallery__lead,
.entry-gallery__tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #eef4f6;
}

.split-photo {
  min-height: 420px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.split-photo img,
.entry-gallery__lead img,
.entry-gallery__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-photo figcaption,
.entry-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.45;
}

.split-photo::after,
.entry-gallery__lead::after,
.entry-gallery__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.02), rgba(4, 15, 26, 0.42));
  pointer-events: none;
}

.archive-pagination {
  margin-top: 34px;
}

.archive-empty {
  grid-column: 1 / -1;
  padding: 42px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  background: linear-gradient(160deg, #f4f9f8, #ffffff);
  box-shadow: var(--wpb-shadow);
}

.archive-empty h2 {
  margin: 0;
  font: 800 clamp(1.8rem, 3vw, 2.5rem)/1.08 "Manrope", sans-serif;
  letter-spacing: 0;
  color: var(--wpb-navy-deep);
}

.archive-empty p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--wpb-muted);
  line-height: 1.8;
}

.archive-empty .button {
  margin-top: 24px;
}

.archive-pagination .nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--wpb-border);
  background: #fff;
  box-shadow: var(--wpb-shadow);
}

.archive-pagination .current {
  background: var(--wpb-navy-deep);
  color: #fff;
}

.single-featured-image {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--wpb-radius-sm);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.form-shell__copy,
.form-shell__panel {
  padding: 32px;
  border-radius: var(--wpb-radius-sm);
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.form-shell__copy {
  background: linear-gradient(160deg, #f3f8f7, #ffffff);
}

.form-shell__panel {
  background: #fff;
}

.form-shell__note {
  margin: 20px 0 0;
  color: var(--wpb-muted);
  line-height: 1.8;
}

.form-shell__empty {
  min-height: 240px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 12px;
  color: var(--wpb-muted);
}

.form-shell .ff-default .ff-el-form-control,
.form-shell .ff-default select {
  min-height: 52px;
  border-radius: 14px;
  border-color: rgba(16, 36, 54, 0.14);
}

.form-shell .ff-default textarea.ff-el-form-control {
  min-height: 160px;
}

.form-shell .ff-btn-submit,
.form-shell .ff-btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  font: 700 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.single-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.entry-anchor-targets {
  position: relative;
  height: 0;
}

.entry-anchor-target {
  display: block;
  position: relative;
  top: -118px;
  height: 0;
  overflow: hidden;
}

.entry-sidebar {
  position: sticky;
  top: 126px;
}

.entry-panel {
  padding: 28px;
  border-radius: var(--wpb-radius-sm);
  background: var(--wpb-sand);
  border: 1px solid var(--wpb-border);
}

.entry-fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.entry-fact {
  display: grid;
  gap: 6px;
}

.entry-fact__label {
  font: 800 0.76rem/1 "Manrope", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--wpb-muted);
}

.entry-fact__value {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wpb-ink);
}

.entry-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.entry-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: 700 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

.entry-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 34px;
}

.entry-gallery__lead {
  min-height: 520px;
  border-radius: 24px;
}

.entry-gallery__trail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.entry-gallery__tile {
  min-height: 250px;
  border-radius: 18px;
}

.entry-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.entry-stat-card {
  padding: 28px;
  border-radius: var(--wpb-radius-sm);
  background: #fff;
  border: 1px solid var(--wpb-border);
  box-shadow: var(--wpb-shadow);
}

.entry-stat-card__value {
  font: 800 clamp(1.8rem, 3vw, 2.8rem)/1 "Manrope", sans-serif;
  color: var(--wpb-navy-deep);
}

  .entry-stat-card__label {
    margin-top: 12px;
    color: var(--wpb-muted);
    line-height: 1.6;
  }

  body.single-industry .nexa-site-header,
  body.single-solution .nexa-site-header {
    background: #021d34;
    box-shadow: none;
  }

  body.single-industry .nexa-site-header .header-main__inner,
  body.single-solution .nexa-site-header .header-main__inner {
    min-height: 72px;
    gap: 28px;
  }

  body.single-industry .nexa-site-header .nexa-nav-list,
  body.single-solution .nexa-site-header .nexa-nav-list {
    gap: 34px;
  }

  body.single-industry .nexa-site-header .nexa-nav-list .nav-link,
  body.single-solution .nexa-site-header .nexa-nav-list .nav-link {
    min-height: 72px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.83rem;
    letter-spacing: 0;
    text-transform: none;
  }

  body.single-industry .nexa-site-header .nexa-nav-list .nav-link--has-panel::after,
  body.single-solution .nexa-site-header .nexa-nav-list .nav-link--has-panel::after {
    border-color: #7ac321;
  }

  body.single-industry .nexa-site-header .header-actions .button,
  body.single-solution .nexa-site-header .header-actions .button {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 4px;
    background: #74bd20;
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nexa-solution-main {
    --nexa-product-green: #74bd20;
    --nexa-product-navy: #041f38;
    --wpb-lime: var(--nexa-product-green);
    background: #fff;
  }

  .nexa-solution-main .container {
    width: min(1320px, calc(100vw - 56px));
  }

  .nexa-solution-hero {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(2, 22, 40, 0.98) 0%, rgba(3, 26, 47, 0.94) 40%, rgba(3, 26, 47, 0.18) 67%),
      linear-gradient(135deg, #021d34 0%, #062b4b 58%, #021827 100%);
    color: #fff;
  }

  .nexa-solution-hero__inner {
    display: grid;
    grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
    min-height: 560px;
    align-items: stretch;
  }

  .nexa-solution-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 500px;
    padding: 58px 0 56px;
  }

  .nexa-solution-hero__title {
    margin: 0;
    font: 800 4.25rem/0.98 "Manrope", sans-serif;
    letter-spacing: 0;
  }

  .nexa-solution-hero__summary {
    margin: 24px 0 0;
    max-width: 480px;
    font-size: 1.06rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
  }

  .nexa-solution-hero__points {
    display: grid;
    gap: 15px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
  }

  .nexa-solution-point {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .nexa-solution-point__icon,
  .nexa-layout-point__icon {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--wpb-lime);
    border-radius: 50%;
    color: var(--wpb-lime);
    flex: 0 0 auto;
  }

  .nexa-solution-point__icon.dashicons,
  .nexa-layout-point__icon.dashicons {
    font-size: 17px;
    line-height: 1;
  }

  .nexa-solution-point__icon:not(.dashicons)::before,
  .nexa-layout-point__icon:not(.dashicons)::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    width: 9px;
    height: 15px;
    border-right: 2px solid var(--wpb-lime);
    border-bottom: 2px solid var(--wpb-lime);
    transform: rotate(38deg);
  }

  .nexa-solution-point strong {
    display: block;
    font: 800 0.93rem/1.26 "Manrope", sans-serif;
  }

  .nexa-solution-point small {
    display: block;
    margin-top: 3px;
    font-size: 0.82rem;
    line-height: 1.38;
    color: rgba(255, 255, 255, 0.82);
  }

  .nexa-solution-hero__media {
    position: relative;
    z-index: 1;
    min-height: 560px;
    height: 560px;
    margin: 0;
  }

  .nexa-solution-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center right;
  }

  .nexa-solution-section {
    padding: 34px 0;
    border-bottom: 1px solid var(--wpb-border);
    background: #fff;
  }

  .nexa-solution-section__title {
    margin: 0 0 18px;
    font: 800 1.08rem/1.2 "Manrope", sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--wpb-navy-deep);
  }

  .nexa-solution-section__intro {
    max-width: 780px;
    margin: -8px 0 28px;
    color: var(--wpb-muted);
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .nexa-solution-section--architecture {
    padding: 24px 0;
  }

  .nexa-solution-section--architecture .nexa-solution-section__title {
    margin-bottom: 14px;
  }

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

  .nexa-variant-card {
    overflow: hidden;
    border: 1px solid #d7e1eb;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 28, 46, 0.06);
  }

  .nexa-variant-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .nexa-variant-card__media {
    margin: 0;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #eef4f6;
  }

  .nexa-variant-card__media img,
  .nexa-layout-photo img,
  .nexa-architecture-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nexa-variant-card__body {
    padding: 16px 18px 18px;
  }

  .nexa-variant-card h3 {
    margin: 0 0 8px;
    color: var(--wpb-navy-deep);
    font: 800 1.02rem/1.2 "Manrope", sans-serif;
  }

  .nexa-variant-card p {
    margin: 0;
    color: #16304d;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .nexa-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: center;
  }

  .nexa-layout-grid__visuals {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.66fr);
    gap: 16px;
  }

  .nexa-layout-photo {
    margin: 0;
    overflow: hidden;
    border: 1px solid #d7e1eb;
    border-radius: 5px;
    background: #eef4f6;
  }

  .nexa-layout-photo--lead {
    grid-row: span 2;
    min-height: 0;
    height: 366px;
  }

  .nexa-layout-photo--tile {
    min-height: 0;
    height: 175px;
  }

  .nexa-layout-grid__points {
    display: grid;
    gap: 22px;
  }

  .nexa-layout-point {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
  }

  .nexa-layout-point h3 {
    margin: 0 0 6px;
    color: var(--wpb-navy-deep);
    font: 800 0.92rem/1.25 "Manrope", sans-serif;
  }

  .nexa-layout-point p {
    margin: 0;
    color: #16304d;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .nexa-architecture-grid {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
  }

  .nexa-architecture-copy > p {
    margin: 0 0 20px;
    color: var(--wpb-muted);
    line-height: 1.7;
  }

  .nexa-architecture-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nexa-architecture-list li {
    position: relative;
    padding-left: 28px;
  }

  .nexa-architecture-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wpb-lime);
  }

  .nexa-architecture-list strong,
  .nexa-architecture-list span {
    display: block;
  }

  .nexa-architecture-list strong {
    color: var(--wpb-navy-deep);
    font: 800 0.76rem/1.22 "Manrope", sans-serif;
  }

  .nexa-architecture-list span {
    margin-top: 2px;
    color: #16304d;
    font-size: 0.7rem;
    line-height: 1.32;
  }

  .nexa-architecture-visual {
    min-height: 0;
    height: 250px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d7e1eb;
    border-radius: 5px;
    background: #fff;
  }

  .nexa-architecture-visual img {
    object-fit: contain;
  }

  .nexa-solution-cta {
    padding: 24px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 88% 88%, rgba(116, 189, 32, 0.18), transparent 22%),
      linear-gradient(135deg, #021d34 0%, #06233c 58%, #041727 100%);
    color: #fff;
  }

  .nexa-solution-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
  }

  .nexa-solution-cta h2 {
    margin: 0;
    font: 800 1.75rem/1.2 "Manrope", sans-serif;
  }

  .nexa-solution-cta p {
    max-width: 640px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .nexa-solution-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
  }

  .nexa-solution-cta .button--ghost {
    border-color: rgba(255, 255, 255, 0.56);
    color: #fff;
  }

  .nexa-solution-cta .button--primary {
    min-width: 250px;
    border-radius: 5px;
    background: var(--nexa-product-green);
    color: #fff;
    box-shadow: none;
  }

  .nexa-solution-cta .button--ghost {
    min-width: 205px;
    border-radius: 5px;
    background: transparent;
  }

  .nexa-solution-cta__button .dashicons {
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 1;
  }

  .site-footer {
    padding: 0 0 36px;
    background: #081f33;
  color: rgba(255, 255, 255, 0.82);
}

.home .site-footer {
  padding-top: 20px;
}

.home .footer-brand p {
  display: none;
}

.footer-contact {
  transform: translateY(-44px);
}

.footer-main {
  align-items: start;
  padding-top: 10px;
}

.footer-main--home {
  display: block;
}

.footer-brand {
  max-width: 340px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  flex: 1;
}

.footer-home {
  display: grid;
  gap: 26px;
  width: 100%;
}

.footer-home__social,
.footer-home__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-home__social a,
.footer-home__links a {
  color: rgba(255, 255, 255, 0.84);
  font: 700 0.84rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-home__links {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links h3 {
  margin: 0 0 12px;
  color: #fff;
  font: 800 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links li + li,
.mega-panel__links li + li {
  margin-top: 10px;
}

.footer-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 20px;
  }

  .hero-grid,
  .split-section,
  .cta-feature,
  .contact-band,
  .form-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .hero-media,
  .split-visual,
  .cta-feature__visual {
    min-height: 360px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 28px;
    padding: 0;
  }

  .hero-section .visual-panel {
    min-height: 560px;
  }

  .hero-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--capabilities,
  .card-grid--stories,
  .archive-grid,
  .link-columns,
  .stats-grid,
  .entry-stat-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-slide {
    flex-basis: 100%;
  }

  .industry-showcase__featured,
  .industry-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "featured"
      "index";
  }

  .industry-index {
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }

  .industry-index__item {
    border-bottom: 1px solid rgba(53, 208, 255, 0.28);
  }

  .footer-main--home {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .single-layout {
    grid-template-columns: 1fr;
  }

  .entry-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .utility-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .primary-navigation {
    position: fixed;
    inset: 88px 0 0 auto;
    width: min(420px, 100vw);
    padding: 22px 24px 40px;
    background: #071d31;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
  }

  .header-actions {
    display: none;
  }

  .header-meta {
    display: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    min-height: 58px;
  }

  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item--has-panel {
    position: relative;
  }

  .nav-item__toggle {
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item__toggle::before {
    content: "+";
    margin: auto;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
  }

  .nav-item.is-open .nav-item__toggle::before {
    content: "-";
  }

  .mega-panel {
    position: static;
    min-width: 0;
    padding: 0 0 16px;
    max-height: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
  }

  .nav-item.is-open .mega-panel {
    max-height: 1200px;
  }

  .mega-panel__inner {
    grid-template-columns: 1fr;
    width: auto;
    padding: 10px 0 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.88);
  }

  .mega-panel__heading {
    color: rgba(255, 255, 255, 0.54);
  }

  .mega-panel__heading a {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mega-panel__links a {
    color: rgba(255, 255, 255, 0.88);
  }

  .mega-panel__description {
    color: rgba(255, 255, 255, 0.64);
  }

  .mega-panel__image {
    max-width: 260px;
    margin-bottom: 12px;
  }

  .mega-panel__link-description {
    color: rgba(255, 255, 255, 0.58);
  }

  .mega-panel__lead {
    padding: 18px 0 0;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-search__form {
    grid-template-columns: 1fr;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  :root {
    --wpb-container: min(100vw - 28px, 100vw - 28px);
  }

  .card-grid--capabilities,
  .card-grid--stories,
  .archive-grid,
  .link-columns,
  .stats-grid,
  .entry-stat-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 64px 0;
  }

  .hero-copy {
    margin: 16px;
    padding: 0;
    clip-path: none;
  }

  .hero-section .visual-panel {
    min-height: 460px;
  }

  .industry-showcase__featured,
  .industry-index {
    grid-template-columns: 1fr;
  }

  .industry-card--featured {
    min-height: 340px;
    padding: 28px 28px 26px;
  }

  .industry-showcase__eyebrow {
    min-height: 72px;
    padding: 0 20px;
  }

  .industry-index__item {
    min-height: 74px;
    padding-right: 16px;
  }

  .industry-index__label {
    font-size: 1rem;
  }

  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .contact-band,
  .footer-contact,
  .feature-card,
  .industry-card,
  .story-card,
  .content-shell,
  .redirect-panel,
  .link-column {
    padding: 22px;
  }

  .footer-home__social,
  .footer-home__links {
    gap: 14px 18px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .hero-media,
  .split-visual,
  .cta-feature__visual {
    min-height: 280px;
  }
}

.media-groups {
  display: grid;
  gap: 48px;
}

.media-group {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: stretch;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(12, 44, 71, 0.96), rgba(7, 24, 40, 0.94));
  border: 1px solid rgba(47, 140, 255, 0.18);
  box-shadow: 0 24px 60px rgba(8, 19, 32, 0.22);
}

.media-group--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.media-group--reverse .media-group__copy {
  order: 2;
}

.media-group--reverse .media-group__visuals {
  order: 1;
}

.media-group__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.media-group__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.media-group__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.media-group__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  min-height: 420px;
}

.media-group__lead,
.media-group__tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.media-group__lead {
  min-height: 420px;
}

.media-group__trail {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
}

.media-group__tile:last-child:nth-child(odd) {
  grid-column: span 2;
}

.media-group__lead img,
.media-group__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-group__lead::after,
.media-group__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.04), rgba(4, 15, 26, 0.44));
}

.media-group__lead figcaption,
.media-group__tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .media-group,
  .media-group--reverse {
    grid-template-columns: 1fr;
  }

  .media-group--reverse .media-group__copy,
  .media-group--reverse .media-group__visuals {
    order: initial;
  }
}

@media (max-width: 720px) {
  .media-group {
    padding: 24px;
  }

  .media-group__visuals {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .media-group__lead {
    min-height: 280px;
  }

  .media-group__trail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .media-group__tile:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .media-group__trail {
    grid-template-columns: 1fr;
  }

  .media-group__tile {
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .entry-gallery {
    grid-template-columns: 1fr;
  }

  .entry-gallery__lead {
    min-height: 340px;
  }
}

  @media (max-width: 560px) {
    .entry-gallery__trail {
      grid-template-columns: 1fr;
    }

  .entry-gallery__tile {
    min-height: 210px;
  }

    .split-photo {
      min-height: 300px;
    }
  }

  @media (max-width: 1100px) {
    .nexa-solution-hero__inner,
    .nexa-layout-grid,
    .nexa-architecture-grid,
    .nexa-solution-cta__inner {
      grid-template-columns: 1fr;
    }

    .nexa-solution-hero__copy {
      max-width: 720px;
      padding-bottom: 36px;
    }

    .nexa-solution-hero__media img {
      min-height: 360px;
      aspect-ratio: 16 / 9;
    }

    .nexa-solution-cta__actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 900px) {
    .nexa-variant-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nexa-layout-grid__visuals {
      grid-template-columns: 1fr;
    }

    .nexa-layout-photo--lead,
    .nexa-layout-photo--tile {
      min-height: 0;
      aspect-ratio: 16 / 9;
    }
  }

  @media (max-width: 640px) {
    .nexa-solution-hero__inner {
      min-height: 0;
    }

    .nexa-solution-hero__copy {
      padding: 52px 0 28px;
    }

    .nexa-solution-hero__title {
      font-size: 2.65rem;
    }

    .nexa-solution-hero__points,
    .nexa-layout-grid__points {
      gap: 16px;
    }

    .nexa-solution-section {
      padding: 42px 0;
    }

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

    .nexa-variant-card__media {
      aspect-ratio: 16 / 9;
    }

    .nexa-architecture-visual {
      min-height: 0;
      aspect-ratio: 16 / 9;
    }

    .nexa-solution-cta__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .nexa-solution-cta__actions .button {
      justify-content: center;
      width: 100%;
    }
  }

  /* Block template compatibility
     Keeps the new templates/*.html and templates/page/*.html files visually aligned
   with the original WPB Corporate theme shell. */
.wpb-block-template {
  background: #fff;
}

.wpb-block-header .wp-block-navigation,
.wpb-block-header .wp-block-navigation__container {
  gap: 22px;
}

.wpb-block-header .wp-block-navigation a {
  color: rgba(255, 255, 255, 0.88);
  font: 700 0.86rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wpb-block-header .wp-block-site-title,
.wpb-block-header .wp-block-site-title a,
.wpb-block-footer .wp-block-site-title,
.wpb-block-footer .wp-block-site-title a {
  color: inherit;
  text-decoration: none;
}

.wpb-block-header .wp-block-button__link {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wpb-block-page-hero {
  color: var(--wpb-ink);
}

.wpb-block-page-title {
  overflow-wrap: anywhere;
}

.wpb-block-page-content > .wp-block-post-content {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.wpb-block-page-content .wp-block-post-content > * + * {
  margin-block-start: 1.25em;
}

.wpb-block-page-content .wp-block-post-content a {
  color: var(--wpb-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.wpb-block-query-grid {
  width: var(--wpb-container);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.wpb-block-query-grid .wp-block-post-title {
  margin: 0 0 14px;
  font: 800 1.24rem/1.18 "Manrope", sans-serif;
  color: var(--wpb-navy-deep);
}

.wpb-block-query-grid .wp-block-post-title a {
  color: inherit;
}

.wpb-block-query-grid .wp-block-post-excerpt {
  color: var(--wpb-muted);
}

.wpb-block-query-grid .wp-block-post-excerpt__more-link {
  color: var(--wpb-navy);
  font-weight: 800;
}

.wpb-block-footer .wp-block-site-title {
  margin: 0 0 18px;
}

.wpb-block-footer__links {
  width: min(760px, 100%);
  margin: 0;
}

.wpb-block-footer__links .wp-block-column {
  min-width: 0;
}

.wpb-block-footer__links h3 {
  margin: 0 0 12px;
}

.wpb-block-footer__links ul {
  padding: 0;
}

.wpb-block-footer__links li {
  list-style: none;
}

.wpb-block-footer__links a {
  color: rgba(255, 255, 255, 0.74);
}

.wpb-block-front-hero {
  color: #fff;
}

.wpb-block-front-hero .wp-block-cover__inner-container {
  width: var(--wpb-container);
}

@media (max-width: 900px) {
  .wpb-block-header__inner {
    align-items: flex-start;
  }

  .wpb-block-header .wp-block-navigation {
    flex-basis: 100%;
    order: 3;
  }

  .wpb-block-header-actions {
    display: none;
  }
}

/* NEXA screenshot-style front page
   Keeps the previous WordPress/ACF home content but renders it through the
   block-template front page as a compact industrial homepage. */
.home .nexa-site-header,
.is-wpb-front-page .nexa-site-header {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #06223d 0%, #061c33 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home .nexa-site-header.is-scrolled,
.is-wpb-front-page .nexa-site-header.is-scrolled {
  box-shadow: 0 18px 38px rgba(4, 18, 31, 0.22);
}

.home .nexa-site-header .header-main__inner,
.is-wpb-front-page .nexa-site-header .header-main__inner {
  min-height: 78px;
  gap: 30px;
}

.home .nexa-site-header .site-brand,
.is-wpb-front-page .nexa-site-header .site-brand {
  flex: 0 0 auto;
}

.home .nexa-site-header .site-brand__logo,
.is-wpb-front-page .nexa-site-header .site-brand__logo,
.home .nexa-site-header .wpb-brand-logo--full,
.is-wpb-front-page .nexa-site-header .wpb-brand-logo--full {
  height: 46px;
  width: auto;
}

.home .nexa-site-header .primary-navigation,
.is-wpb-front-page .nexa-site-header .primary-navigation {
  flex: 1 1 auto;
  justify-content: center;
}

.nexa-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.nexa-nav-list .nav-link {
  min-height: 78px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.nexa-nav-list .nav-link:hover,
.nexa-nav-list .nav-link:focus-visible {
  color: #fff;
}

.nexa-nav-list .nav-link--has-panel::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.8px solid #1f8cff;
  border-bottom: 1.8px solid #1f8cff;
  transform: rotate(45deg) translateY(-2px);
}

.home .nexa-site-header .header-actions,
.is-wpb-front-page .nexa-site-header .header-actions {
  display: flex;
  flex: 0 0 auto;
}

.home .nexa-site-header .header-actions .button,
.is-wpb-front-page .nexa-site-header .header-actions .button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

.nexa-header-meta {
  gap: 8px;
}

.nexa-header-meta .header-meta__language {
  min-height: 40px;
  color: #fff;
  text-decoration: none;
}

.nexa-home-main {
  overflow: hidden;
  background: #f4f7fb;
}

.nexa-home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 52vw, 620px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #061d33;
}

.nexa-home-hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #061d33;
}

.nexa-home-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 0.78s ease, transform 6s ease;
}

.nexa-home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.nexa-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.7) 38%, rgba(4, 20, 34, 0.24) 73%, rgba(4, 20, 34, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.18), rgba(5, 21, 36, 0.26));
}

.nexa-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 78%, rgba(245, 248, 252, 0.12) 100%);
}

.nexa-home-hero__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.nexa-home-hero__copy {
  width: min(700px, 100%);
  padding: 48px 0 54px;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.36);
}

.nexa-home-hero .section-kicker {
  color: #2488f7;
}

.nexa-home-hero .hero-title {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.3rem, 3.45vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.nexa-home-hero .hero-body {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.nexa-home-hero .button-row {
  margin-top: 34px;
  gap: 16px;
}

.nexa-home-hero .button {
  min-height: 52px;
  min-width: 184px;
  justify-content: center;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nexa-home-hero .button--ghost {
  background: rgba(6, 24, 40, 0.22);
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
}

.nexa-home-hero__dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--wpb-container)) / 2));
  bottom: 28px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.nexa-home-hero__dot {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.nexa-home-hero__dot.is-active {
  width: 54px;
  background: #2f8cff;
}

.nexa-home-intro {
  padding: 54px 0;
}

.nexa-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.nexa-home-intro .section-text {
  margin-top: 0;
  color: #384a5f;
}

.nexa-home-positioning {
  padding: 44px 0 42px;
  background: #fff;
}

.nexa-home-positioning__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.65fr);
  gap: 42px;
  align-items: center;
}

.nexa-home-positioning__heading .section-title {
  max-width: 390px;
  font-size: clamp(1.78rem, 2.35vw, 2.35rem);
  letter-spacing: 0;
}

.nexa-home-positioning__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.nexa-positioning-card {
  min-height: 166px;
  padding: 10px 26px 4px;
  border-left: 1px solid #dbe4ee;
}

.nexa-positioning-card__icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #2d6fb5;
}

.nexa-positioning-card__icon::before,
.nexa-positioning-card__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
}

.nexa-positioning-card--1 .nexa-positioning-card__icon::before {
  transform: rotate(30deg) skewY(25deg);
}

.nexa-positioning-card--2 .nexa-positioning-card__icon::before {
  border-radius: 11px;
}

.nexa-positioning-card--2 .nexa-positioning-card__icon::after {
  inset: 20px;
  border-radius: 6px;
  background: #fff;
}

.nexa-positioning-card--3 .nexa-positioning-card__icon::before {
  border-radius: 999px;
}

.nexa-positioning-card--3 .nexa-positioning-card__icon::after {
  inset: 8px 22px;
  border-width: 0 2px;
}

.nexa-positioning-card--4 .nexa-positioning-card__icon::before {
  clip-path: polygon(50% 0, 86% 14%, 80% 76%, 50% 100%, 20% 76%, 14% 14%);
  border-radius: 6px;
}

.nexa-positioning-card h3 {
  margin: 0 0 10px;
  text-align: center;
  color: #0b223d;
  font: 800 1.02rem/1.2 "Manrope", sans-serif;
  letter-spacing: 0;
}

.nexa-positioning-card p {
  margin: 0;
  text-align: center;
  color: #536477;
  font-size: 0.88rem;
  line-height: 1.56;
}

.nexa-home-solutions,
.nexa-home-products {
  padding: 54px 0 58px;
}

.nexa-home-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.nexa-home-section-heading .section-title {
  max-width: 520px;
  font-size: clamp(1.85rem, 2.55vw, 2.55rem);
  letter-spacing: 0;
}

.nexa-home-link,
.nexa-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #075fc9;
  font: 800 0.82rem/1.1 "Manrope", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.nexa-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.nexa-solution-card {
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.06);
}

.nexa-solution-card__media {
  height: 224px;
  margin: 0;
  overflow: hidden;
  background: #dfe8f1;
}

.nexa-solution-card__media img,
.nexa-product-tile__media img,
.nexa-insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nexa-solution-card__media img,
.nexa-product-tile__media img,
.nexa-insight-card__media img,
.nexa-listing-card .wp-block-post-featured-image img,
.nexa-content-shell .wp-block-image img,
.nexa-content-shell img,
.nexa-single-featured-image img,
.nexa-page-module-stack .split-photo img,
.nexa-page-module-stack .media-group__lead img,
.nexa-page-module-stack .media-group__tile img {
  transition: transform 0.42s ease, filter 0.42s ease;
  will-change: transform;
}

.nexa-solution-card:hover .nexa-solution-card__media img,
.nexa-product-tile:hover .nexa-product-tile__media img,
.nexa-insight-card:hover .nexa-insight-card__media img,
.nexa-listing-card:hover .wp-block-post-featured-image img,
.nexa-content-shell .wp-block-image:hover img,
.nexa-single-featured-image:hover img,
.nexa-page-module-stack .split-photo:hover img,
.nexa-page-module-stack .media-group__lead:hover img,
.nexa-page-module-stack .media-group__tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.nexa-solution-card,
.nexa-insight-card,
.nexa-listing-card,
.nexa-page-module-stack .feature-card,
.nexa-page-module-stack .story-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nexa-solution-card:hover,
.nexa-insight-card:hover,
.nexa-listing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 140, 255, 0.3);
  box-shadow: 0 18px 42px rgba(12, 35, 58, 0.12);
}

.nexa-solution-card__body {
  min-height: 190px;
  padding: 26px 30px 26px;
}

.nexa-solution-card h3 {
  margin: 0 0 15px;
  color: #075fc9;
  font: 800 1rem/1.25 "Manrope", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nexa-solution-card p {
  min-height: 58px;
  margin: 0 0 22px;
  color: #3e5063;
  line-height: 1.6;
}

.nexa-home-products {
  background: #f3f6fa;
}

.nexa-product-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.nexa-product-tile {
  display: block;
  color: #0b223d;
  text-decoration: none;
}

.nexa-product-tile__media {
  display: block;
  height: 104px;
  overflow: hidden;
  border-radius: 5px;
  background: #dce6ef;
  box-shadow: 0 8px 18px rgba(12, 35, 58, 0.08);
}

.nexa-product-tile__title {
  display: block;
  margin-top: 14px;
  font: 800 0.98rem/1.18 "Manrope", sans-serif;
}

.nexa-product-tile__body {
  display: none;
  margin-top: 8px;
  color: #536477;
  font-size: 0.9rem;
  line-height: 1.5;
}

.nexa-home-insights {
  padding: 58px 0 72px;
  background:
    linear-gradient(135deg, #061d33 0%, #04233e 60%, #031727 100%);
  color: #fff;
}

.nexa-home-insights .section-kicker,
.nexa-home-insights .nexa-home-link {
  color: #2f8cff;
}

.nexa-home-insights .section-title,
.nexa-home-insights .section-text {
  color: #fff;
}

.nexa-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nexa-insight-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.nexa-insight-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.nexa-insight-card__media {
  display: block;
  height: 156px;
  overflow: hidden;
  background: #dce6ef;
}

.nexa-insight-card__body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 22px 22px 20px;
  color: #0b223d;
}

.nexa-insight-card .story-card__meta {
  margin: 0 0 10px;
  color: #075fc9;
  font: 800 0.74rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexa-insight-card strong {
  color: #0b223d;
  font: 800 1rem/1.34 "Manrope", sans-serif;
}

.nexa-insight-card .story-card__date {
  margin-top: 16px;
  color: #69788a;
  font-size: 0.84rem;
}

.nexa-insight-card .nexa-card-link {
  margin-top: auto;
  justify-content: flex-end;
}

.nexa-home-cta {
  padding: 56px 0;
  background: #fff;
}

.nexa-home-cta--contact {
  background: #eef5fc;
}

.nexa-home-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 6px;
  background: #06223d;
  color: #fff;
}

.nexa-home-cta__panel .section-title,
.nexa-home-cta__panel .section-text {
  color: #fff;
}

.nexa-home-cta__panel .section-text {
  max-width: 700px;
}

.nexa-home-downloads {
  padding: 58px 0 64px;
  background: #fff;
}

.nexa-home-downloads__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.nexa-home-downloads__copy .section-title {
  max-width: 620px;
}

.nexa-download-list {
  display: grid;
  gap: 16px;
}

.nexa-download-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 26px 28px;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff 100%);
  color: #0b223d;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(12, 35, 58, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nexa-download-card:hover,
.nexa-download-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(47, 140, 255, 0.36);
  box-shadow: 0 20px 46px rgba(12, 35, 58, 0.13);
}

.nexa-download-card__type {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 3px;
  background: #075fc9;
  color: #fff;
  font: 800 0.72rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexa-download-card__title {
  color: #0b223d;
  font: 800 1.14rem/1.25 "Manrope", sans-serif;
}

.nexa-download-card__description {
  color: #536477;
  line-height: 1.58;
}

.nexa-home-meta {
  padding: 56px 0 70px;
}

.nexa-home-meta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .nexa-nav-list {
    gap: 16px;
  }

  .nexa-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home .nexa-site-header .header-main__inner,
  .is-wpb-front-page .nexa-site-header .header-main__inner {
    min-height: 72px;
  }

  .nexa-site-header .primary-navigation {
    display: none;
    inset: 72px 0 0 auto;
    width: min(360px, 100vw);
    justify-content: flex-start;
    transform: none;
  }

  .nexa-site-header .primary-navigation.is-open {
    display: block;
  }

  .nexa-site-header .primary-navigation.is-open .nexa-nav-list {
    display: block;
  }

  .nexa-nav-list {
    display: none;
  }

  .nexa-site-header .nexa-header-meta {
    display: flex;
    margin-left: auto;
  }

  .nexa-site-header .language-switcher__menu {
    right: 0;
    max-width: calc(100vw - 28px);
  }

  .nexa-home-positioning__grid,
  .nexa-home-intro__grid {
    grid-template-columns: 1fr;
  }

  .nexa-home-positioning__cards,
  .nexa-solution-grid,
  .nexa-product-strip,
  .nexa-home-meta__grid,
  .nexa-home-downloads__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nexa-home-section-heading,
  .nexa-home-cta__panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nexa-site-header .header-main__inner {
    gap: 10px;
  }

  .nexa-site-header .nexa-brand {
    gap: 8px;
  }

  .nexa-site-header .nexa-brand__mark {
    width: 38px;
    height: 38px;
  }

  .nexa-site-header .nexa-brand__name {
    font-size: 1.45rem;
  }

  .home .nexa-site-header .header-actions .button,
  .is-wpb-front-page .nexa-site-header .header-actions .button,
  body:not(.home) .nexa-site-header .header-actions .button {
    min-width: 0;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .nexa-site-header .nexa-header-actions {
    display: none;
  }

  .nexa-home-hero {
    min-height: 580px;
  }

  .nexa-home-hero__copy {
    padding-top: 64px;
  }

  .nexa-home-hero .hero-title {
    max-width: 350px;
    font-size: 2.18rem;
    line-height: 1.1;
  }

  .nexa-home-hero__dots {
    right: 24px;
    bottom: 22px;
  }

  .nexa-home-hero__dot {
    width: 26px;
  }

  .nexa-home-hero__dot.is-active {
    width: 38px;
  }

  .nexa-home-positioning__cards,
  .nexa-solution-grid,
  .nexa-product-strip,
  .nexa-insight-grid,
  .nexa-home-meta__grid,
  .nexa-home-downloads__grid {
    grid-template-columns: 1fr;
  }

  .nexa-positioning-card {
    border-left: 0;
    border-top: 1px solid #dbe4ee;
  }
}

.nexa-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.nexa-brand__mark {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 10px;
}

.nexa-brand__text {
  display: grid;
  gap: 4px;
  text-transform: uppercase;
}

.nexa-brand__name {
  color: #fff;
  font: 850 1.74rem/0.82 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.nexa-brand__descriptor {
  color: rgba(255, 255, 255, 0.86);
  font: 800 0.62rem/1 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.nexa-site-footer .nexa-brand__mark {
  width: 34px;
  height: 34px;
}

.nexa-site-footer .nexa-brand__name {
  font-size: 1.34rem;
}

.nexa-home-main .button--primary {
  background: #065fd3;
  color: #fff;
  box-shadow: 0 16px 30px rgba(6, 95, 211, 0.2);
}

.nexa-home-main .button--primary:hover,
.nexa-home-main .button--primary:focus-visible {
  background: #0b70ee;
  color: #fff;
}

/* Homepage visual rhythm aligned with BESS Containers detail pages. */
.nexa-home-main {
  --nexa-home-green: #74bd20;
  --nexa-home-green-dark: #63a91d;
  --nexa-home-navy: #041f38;
  --nexa-home-ink: #16304d;
  --nexa-home-muted: #536477;
  --nexa-home-border: #d7e1eb;
  background: #fff;
}

.nexa-home-main .container {
  width: min(1320px, calc(100vw - 56px));
}

.nexa-home-main .section-kicker {
  margin-bottom: 12px;
  color: var(--nexa-home-green);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.nexa-home-main .section-title {
  color: var(--nexa-home-navy);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.nexa-home-main .section-text {
  color: var(--nexa-home-ink);
  font-size: 0.98rem;
  line-height: 1.62;
}

.nexa-home-hero {
  min-height: clamp(560px, 52vw, 620px);
  background:
    linear-gradient(135deg, #021d34 0%, #062b4b 58%, #021827 100%);
}

.nexa-home-hero__slide {
  object-position: center right;
}

.nexa-home-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 22, 40, 0.98) 0%, rgba(3, 26, 47, 0.94) 40%, rgba(3, 26, 47, 0.2) 68%, rgba(3, 26, 47, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 22, 40, 0.1), rgba(2, 22, 40, 0.24));
}

.nexa-home-hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.08) 100%);
}

.nexa-home-hero__copy {
  width: min(520px, 100%);
  padding: 58px 0 56px;
  text-shadow: none;
}

.nexa-home-hero .section-kicker {
  color: var(--nexa-home-green);
}

.nexa-home-hero .hero-title {
  max-width: 520px;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.nexa-home-hero .hero-body {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  line-height: 1.5;
}

.nexa-home-hero .button-row {
  margin-top: 32px;
  gap: 18px;
}

.nexa-home-hero .button,
.nexa-home-main .button {
  min-height: 50px;
  min-width: 205px;
  border-radius: 5px;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.nexa-home-main .button--primary {
  border-color: transparent;
  background: var(--nexa-home-green);
  box-shadow: none;
}

.nexa-home-main .button--primary:hover,
.nexa-home-main .button--primary:focus-visible {
  background: var(--nexa-home-green-dark);
  box-shadow: 0 14px 28px rgba(99, 169, 29, 0.22);
}

.nexa-home-hero .button--ghost {
  min-width: 165px;
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
}

.nexa-home-hero__dot.is-active {
  background: var(--nexa-home-green);
}

.nexa-home-intro,
.nexa-home-positioning,
.nexa-home-solutions,
.nexa-home-products,
.nexa-home-downloads,
.nexa-home-insights,
.nexa-home-cta,
.nexa-home-meta {
  padding-top: 42px;
  padding-bottom: 42px;
}

.nexa-home-section-heading {
  align-items: flex-end;
  margin-bottom: 24px;
}

.nexa-home-section-heading .section-title {
  max-width: 580px;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.nexa-home-link,
.nexa-card-link {
  color: var(--nexa-home-green);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.nexa-solution-grid,
.nexa-insight-grid {
  gap: 20px;
}

.nexa-solution-card,
.nexa-insight-card,
.nexa-download-card,
.nexa-home-meta .link-column,
.nexa-product-tile {
  border: 1px solid var(--nexa-home-border);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 28, 46, 0.06);
}

.nexa-solution-card:hover,
.nexa-insight-card:hover,
.nexa-download-card:hover,
.nexa-download-card:focus-visible,
.nexa-product-tile:hover,
.nexa-product-tile:focus-visible {
  border-color: rgba(116, 189, 32, 0.36);
  box-shadow: 0 18px 38px rgba(7, 28, 46, 0.12);
}

.nexa-solution-card__media,
.nexa-product-tile__media,
.nexa-insight-card__media {
  height: auto;
  aspect-ratio: 1.45 / 1;
  border-radius: 5px 5px 0 0;
  background: #eef4f6;
  box-shadow: none;
}

.nexa-solution-card__body,
.nexa-insight-card__body {
  min-height: 0;
  padding: 18px 20px 20px;
}

.nexa-solution-card h3,
.nexa-product-tile__title,
.nexa-insight-card strong,
.nexa-download-card__title,
.nexa-home-meta .link-column h3 {
  color: var(--nexa-home-navy);
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.nexa-solution-card p,
.nexa-download-card__description,
.nexa-home-meta .link-column__list a {
  color: var(--nexa-home-ink);
  font-size: 0.86rem;
  line-height: 1.5;
}

.nexa-solution-card p {
  min-height: 0;
  margin-bottom: 18px;
}

.nexa-product-strip {
  gap: 20px;
}

.nexa-product-tile {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nexa-product-tile:hover,
.nexa-product-tile:focus-visible {
  transform: translateY(-3px);
}

.nexa-product-tile__title {
  margin: 0;
  padding: 14px 16px 16px;
}

.nexa-home-products {
  background: #f5f8fb;
}

.nexa-home-insights {
  background:
    radial-gradient(circle at 88% 88%, rgba(116, 189, 32, 0.12), transparent 22%),
    linear-gradient(135deg, #021d34 0%, #06233c 58%, #041727 100%);
}

.nexa-home-insights .section-kicker,
.nexa-home-insights .nexa-home-link {
  color: var(--nexa-home-green);
}

.nexa-insight-card__body {
  color: var(--nexa-home-navy);
}

.nexa-insight-card .story-card__meta {
  color: var(--nexa-home-green);
  letter-spacing: 0.06em;
}

.nexa-download-card {
  min-height: 0;
  padding: 20px 22px;
  background: #fff;
}

.nexa-download-card__type {
  background: var(--nexa-home-green);
}

.nexa-home-cta__panel {
  border-radius: 5px;
  background:
    radial-gradient(circle at 88% 88%, rgba(116, 189, 32, 0.18), transparent 22%),
    linear-gradient(135deg, #021d34 0%, #06233c 58%, #041727 100%);
}

.nexa-home-meta .link-column {
  min-height: 0;
  padding: 20px;
}

@media (max-width: 900px) {
  .nexa-home-main .container {
    width: calc(100vw - 48px);
  }

  .nexa-home-hero {
    min-height: 560px;
  }

  .nexa-home-hero__copy {
    padding: 62px 0 64px;
  }

  .nexa-home-hero .hero-title {
    max-width: 620px;
    font-size: clamp(2.45rem, 8vw, 3.35rem);
  }

  .nexa-home-hero .hero-body {
    max-width: 560px;
    font-size: 1rem;
  }

  .nexa-home-intro,
  .nexa-home-positioning,
  .nexa-home-solutions,
  .nexa-home-products,
  .nexa-home-downloads,
  .nexa-home-insights,
  .nexa-home-cta,
  .nexa-home-meta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .nexa-home-main .container {
    width: calc(100vw - 28px);
  }

  .nexa-home-hero {
    min-height: 540px;
  }

  .nexa-home-hero::before {
    background:
      linear-gradient(90deg, rgba(2, 22, 40, 0.98) 0%, rgba(3, 26, 47, 0.9) 58%, rgba(3, 26, 47, 0.34) 100%),
      linear-gradient(180deg, rgba(2, 22, 40, 0.1), rgba(2, 22, 40, 0.24));
  }

  .nexa-home-hero__copy {
    padding-top: 68px;
  }

  .nexa-home-hero .hero-title {
    max-width: 360px;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .nexa-home-hero .hero-body {
    max-width: 340px;
    font-size: 0.96rem;
  }

  .nexa-home-hero .button-row {
    align-items: stretch;
    gap: 12px;
  }

  .nexa-home-hero .button,
  .nexa-home-main .button {
    width: 100%;
    min-width: 0;
  }

  .nexa-home-section-heading {
    gap: 16px;
    margin-bottom: 22px;
  }

  .nexa-solution-card__media,
  .nexa-product-tile__media,
  .nexa-insight-card__media {
    aspect-ratio: 16 / 9;
  }

  .nexa-home-cta__panel {
    padding: 28px 24px;
  }
}

/* NEXA unified inner page, archive, search and single templates */
.nexa-page-main {
  overflow: hidden;
  background: #f5f8fc;
}

.nexa-page-hero {
  position: relative;
  min-height: clamp(330px, 34vw, 460px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.72) 42%, rgba(4, 20, 34, 0.22) 78%, rgba(4, 20, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/industrial-module.jpg") center center / cover no-repeat;
}

.nexa-page-hero--archive,
.nexa-page-hero--search,
.nexa-page-hero--single {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.9) 0%, rgba(4, 20, 34, 0.72) 42%, rgba(4, 20, 34, 0.22) 78%, rgba(4, 20, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/data-center-module.jpg");
}

.nexa-page-hero--error {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.92) 0%, rgba(4, 20, 34, 0.78) 48%, rgba(4, 20, 34, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 21, 36, 0.16), rgba(5, 21, 36, 0.34)),
    url("../branding/home/energy-storage-overview.jpg");
}

.nexa-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 140, 255, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(245, 248, 252, 0.12) 100%);
}

.nexa-page-hero__inner {
  padding: clamp(58px, 8vw, 92px) 0;
}

.nexa-page-hero .section-kicker {
  color: #2a9dff;
}

.nexa-page-hero .section-title {
  max-width: 820px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.25vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(4, 20, 34, 0.36);
}

.nexa-page-hero .section-text {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.nexa-page-content-section,
.nexa-listing-section {
  padding: clamp(58px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

.nexa-content-shell {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-content-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: #065fd3;
}

.nexa-content-shell > * {
  position: relative;
}

.nexa-content-shell h1,
.nexa-content-shell h2,
.nexa-content-shell h3,
.nexa-content-shell h4,
.nexa-content-shell .wp-block-heading {
  color: #0b223d;
  letter-spacing: 0;
}

.nexa-content-shell p,
.nexa-content-shell li,
.nexa-content-shell figcaption {
  color: #3e5063;
  line-height: 1.75;
}

.nexa-content-shell a {
  color: #075fc9;
  font-weight: 800;
}

.nexa-content-shell .wp-block-image img,
.nexa-content-shell img {
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-single-featured-image {
  margin: 0 0 34px;
}

.nexa-single-featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(12, 35, 58, 0.16);
}

.nexa-archive-grid,
.wpb-block-query-grid.nexa-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: var(--wpb-container);
  max-width: none;
  margin: 0 auto;
}

.nexa-listing-card {
  overflow: hidden;
  min-height: 360px;
  padding: 0 0 24px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-listing-card .nexa-listing-card__image,
.nexa-listing-card .wp-block-post-featured-image {
  height: 190px;
  margin: 0 0 24px;
  background:
    linear-gradient(135deg, rgba(6, 95, 211, 0.08), rgba(47, 140, 255, 0.1)),
    #dce6ef;
}

.nexa-listing-card .wp-block-post-featured-image a,
.nexa-listing-card .wp-block-post-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.nexa-listing-card .wp-block-post-featured-image img {
  object-fit: cover;
}

.nexa-listing-card .wp-block-post-title,
.nexa-listing-card .wp-block-post-excerpt {
  padding-right: 24px;
  padding-left: 24px;
}

.nexa-listing-card .wp-block-post-title {
  margin: 0 0 14px;
  color: #0b223d;
  font: 800 1.14rem/1.28 "Manrope", sans-serif;
  letter-spacing: 0;
}

.nexa-listing-card .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}

.nexa-listing-card .wp-block-post-excerpt,
.nexa-listing-card .wp-block-post-excerpt p {
  color: #536477;
  line-height: 1.62;
}

.nexa-listing-card .wp-block-post-excerpt__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #075fc9;
  font: 800 0.78rem/1 "Manrope", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nexa-listing-card .wp-block-post-excerpt__more-link::after {
  content: "→";
}

.nexa-pagination {
  margin-top: 42px;
  gap: 12px;
}

.nexa-pagination a,
.nexa-pagination .page-numbers,
.nexa-pagination .wp-block-query-pagination-previous,
.nexa-pagination .wp-block-query-pagination-next {
  min-height: 42px;
  padding: 12px 16px;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  background: #fff;
  color: #075fc9;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(12, 35, 58, 0.06);
}

.nexa-search-panel,
.nexa-empty-state {
  margin-bottom: 34px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-search-section .wp-block-search__inside-wrapper {
  display: flex;
  gap: 12px;
}

.nexa-search-section .wp-block-search__input {
  min-height: 52px;
  border: 1px solid #cfdae6;
  border-radius: 6px;
  padding: 0 16px;
  color: #0b223d;
  font: 600 1rem/1.2 "Manrope", sans-serif;
}

.nexa-search-section .wp-block-search__button {
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  background: #065fd3;
  color: #fff;
  font: 800 0.82rem/1 "Manrope", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nexa-empty-state h2 {
  margin-top: 0;
  color: #0b223d;
}

.nexa-empty-state p {
  color: #536477;
}

body:not(.home) .nexa-site-header .header-main__inner {
  min-height: 78px;
}

body:not(.home) .nexa-site-header .header-actions {
  display: flex;
}

body:not(.home) .nexa-site-header .header-actions .button {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 3px;
  background: #065fd3;
  color: #fff;
  box-shadow: none;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nexa-page-hero__inner {
    padding: 56px 0;
  }

  .nexa-archive-grid,
  .wpb-block-query-grid.nexa-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nexa-search-section .wp-block-search__inside-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nexa-page-hero {
    min-height: 380px;
  }

  body:not(.home) .nexa-site-header .nexa-header-actions,
  .home .nexa-site-header .nexa-header-actions,
  .is-wpb-front-page .nexa-site-header .nexa-header-actions {
    display: none;
  }

  .nexa-archive-grid,
  .wpb-block-query-grid.nexa-archive-grid {
    grid-template-columns: 1fr;
  }

  .nexa-content-shell {
    padding: 30px 24px;
  }
}

/* NEXA inner-page module rendering
   The block templates call the original ACF-style page modules so existing
   page content stays intact while the presentation matches the new home page. */
.nexa-page-module-stack {
  background: #f5f8fc;
}

.nexa-page-module-stack > .section-shell {
  padding: clamp(54px, 6.5vw, 78px) 0;
}

.nexa-page-module-stack > .section-shell:nth-child(odd) {
  background: #fff;
}

.nexa-page-module-stack > .section-shell:nth-child(even),
.nexa-page-module-stack .section-shell--light,
.nexa-page-module-stack .section-shell--industry-showcase {
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fc 100%);
}

.nexa-page-module-stack .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.nexa-page-module-stack .section-kicker {
  color: #075fc9;
}

.nexa-page-module-stack .section-title {
  max-width: 720px;
  color: #0b223d;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.nexa-page-module-stack .section-text {
  color: #3e5063;
  line-height: 1.7;
}

.nexa-page-module-stack .button--primary,
.nexa-page-module-stack .form-shell button,
.nexa-page-module-stack .fluentform .ff-btn-submit {
  border-radius: 4px;
  background: #065fd3;
  color: #fff;
  box-shadow: 0 14px 30px rgba(6, 95, 211, 0.18);
}

.nexa-page-module-stack .button--text {
  color: #075fc9;
}

.nexa-page-module-stack .split-section,
.nexa-page-module-stack .form-shell,
.nexa-page-module-stack .contact-band,
.nexa-page-module-stack .redirect-panel {
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-page-module-stack .split-section {
  align-items: start;
}

.nexa-page-module-stack .split-copy {
  max-width: 680px;
}

.nexa-page-module-stack .split-visual {
  min-height: clamp(260px, 30vw, 360px);
}

.nexa-page-module-stack .split-photo,
.nexa-page-module-stack .media-group__lead,
.nexa-page-module-stack .media-group__tile {
  overflow: hidden;
  border-radius: 6px;
  background: #dce6ef;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-page-module-stack .split-photo img,
.nexa-page-module-stack .media-group__lead img,
.nexa-page-module-stack .media-group__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nexa-page-module-stack .visual-panel {
  min-height: clamp(260px, 30vw, 360px);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.55), rgba(4, 20, 34, 0.08)),
    url("../branding/home/data-center-module.jpg") center center / cover no-repeat;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.1);
}

.nexa-page-module-stack .visual-panel > * {
  opacity: 0.08;
}

.nexa-page-module-stack .stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.nexa-page-module-stack .stat-card {
  min-height: 150px;
  padding: 28px;
  border: 1px solid #dfe7f0;
  border-top: 4px solid #0b70ee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 58, 0.07);
}

.nexa-page-module-stack .stat-card__value {
  color: #075fc9;
  font-size: clamp(2rem, 3vw, 3rem);
}

.nexa-page-module-stack .stat-card__label {
  color: #536477;
}

.nexa-page-module-stack .capability-slider__track,
.nexa-page-module-stack .card-grid--capabilities,
.nexa-page-module-stack .card-grid--stories,
.nexa-page-module-stack .link-columns {
  gap: 24px;
}

.nexa-page-module-stack .feature-card,
.nexa-page-module-stack .industry-card,
.nexa-page-module-stack .story-card,
.nexa-page-module-stack .link-column {
  overflow: hidden;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  color: #0b223d;
  box-shadow: 0 12px 32px rgba(12, 35, 58, 0.07);
}

.nexa-page-module-stack .feature-card {
  min-height: 0;
  padding: 0;
}

.nexa-page-module-stack .feature-card__media {
  position: relative;
  inset: auto;
  height: 190px;
  transform-origin: center;
  transition: transform 0.42s ease, filter 0.42s ease;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-energy-infrastructure.jpg") center center / cover no-repeat;
}

.nexa-page-module-stack .story-card--newsroom .story-card__media {
  transform-origin: center;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.nexa-page-module-stack .feature-card:hover .feature-card__media,
.nexa-page-module-stack .story-card:hover .story-card__media {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.nexa-page-module-stack .feature-card:nth-child(2n) .feature-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-data-center-infrastructure.jpg");
}

.nexa-page-module-stack .feature-card:nth-child(3n) .feature-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.2), rgba(4, 20, 34, 0.02)),
    url("../branding/home/solution-industrial-modular-systems.jpg");
}

.nexa-page-module-stack .feature-card__content {
  min-height: 220px;
  padding: 28px;
  background: transparent;
}

.nexa-page-module-stack .feature-card__content h3,
.nexa-page-module-stack .industry-card h3,
.nexa-page-module-stack .story-card h3,
.nexa-page-module-stack .link-column h3 {
  color: #0b223d;
}

.nexa-page-module-stack .feature-card__content p,
.nexa-page-module-stack .industry-card p,
.nexa-page-module-stack .story-card p {
  color: #536477;
}

.nexa-page-module-stack .industry-showcase {
  grid-template-columns: 1fr;
}

.nexa-page-module-stack .industry-showcase__eyebrow {
  border-color: #dfe7f0;
  border-radius: 6px;
  background: #fff;
  color: #075fc9;
  box-shadow: 0 10px 24px rgba(12, 35, 58, 0.06);
}

.nexa-page-module-stack .industry-showcase__featured,
.nexa-page-module-stack .industry-index {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nexa-page-module-stack .industry-card--featured {
  min-height: 260px;
  clip-path: none;
  color: #0b223d;
  border-color: #dfe7f0;
  background: #fff;
}

.nexa-page-module-stack .media-group {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 35, 58, 0.08);
}

.nexa-page-module-stack .media-group + .media-group {
  margin-top: 28px;
}

.nexa-page-module-stack .form-shell__panel {
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #f8fbfe;
  box-shadow: none;
}

.nexa-page-module-stack .fluentform input,
.nexa-page-module-stack .fluentform textarea,
.nexa-page-module-stack .fluentform select {
  border-color: #cfdae6;
  border-radius: 6px;
}

.nexa-page-module-stack .contact-band,
.nexa-page-module-stack .section-shell--contact .contact-band {
  background: linear-gradient(135deg, #061d33 0%, #04233e 70%, #031727 100%);
  color: #fff;
}

.nexa-page-module-stack .contact-band .contact-band__title,
.nexa-page-module-stack .contact-band .contact-band__body {
  color: #fff;
}

.nexa-page-module-stack .link-column {
  padding: 28px;
}

.nexa-page-module-stack .link-column__list a {
  color: #075fc9;
}

.nexa-page-module-stack .story-card--newsroom .story-card__media {
  height: 170px;
  background:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/industrial-module.jpg") center center / cover no-repeat;
}

.nexa-page-module-stack .story-card--newsroom:nth-child(2n) .story-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/data-center-module.jpg");
}

.nexa-page-module-stack .story-card--newsroom:nth-child(3n) .story-card__media {
  background-image:
    linear-gradient(90deg, rgba(4, 20, 34, 0.18), rgba(4, 20, 34, 0.02)),
    url("../branding/home/energy-storage-overview.jpg");
}

@media (max-width: 900px) {
  .nexa-page-module-stack .section-heading,
  .nexa-page-module-stack .split-section,
  .nexa-page-module-stack .form-shell,
  .nexa-page-module-stack .contact-band {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }

  .nexa-page-module-stack .card-grid--capabilities,
  .nexa-page-module-stack .card-grid--stories,
  .nexa-page-module-stack .link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nexa-page-module-stack .card-grid--capabilities,
  .nexa-page-module-stack .card-grid--stories,
  .nexa-page-module-stack .link-columns {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexa-solution-card,
  .nexa-insight-card,
  .nexa-listing-card,
  .nexa-page-module-stack .feature-card,
  .nexa-page-module-stack .story-card,
  .nexa-solution-card__media img,
  .nexa-product-tile__media img,
  .nexa-insight-card__media img,
  .nexa-listing-card .wp-block-post-featured-image img,
  .nexa-content-shell .wp-block-image img,
  .nexa-content-shell img,
  .nexa-single-featured-image img,
  .nexa-page-module-stack .split-photo img,
  .nexa-page-module-stack .media-group__lead img,
  .nexa-page-module-stack .media-group__tile img,
  .nexa-page-module-stack .feature-card__media,
  .nexa-page-module-stack .story-card--newsroom .story-card__media {
    transition: none;
  }
}

/* Backend-managed module media */
.module-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 34vw, 520px);
  margin: 0;
  border: 1px solid var(--wpb-border);
  border-radius: var(--wpb-radius-sm);
  background: #e6eef5;
  box-shadow: var(--wpb-shadow);
}

.module-photo img,
.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-photo img,
.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  transition: transform 0.42s ease, filter 0.42s ease;
  will-change: transform;
}

.module-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 15, 26, 0.02), rgba(4, 15, 26, 0.38));
}

.module-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.module-photo--hero {
  min-height: clamp(420px, 46vw, 700px);
  border-radius: 0 0 var(--wpb-radius) var(--wpb-radius);
}

.module-photo--contact,
.module-photo--redirect {
  min-height: 220px;
}

.feature-card__media img,
.story-card__media img,
.industry-card__image img {
  position: absolute;
  inset: 0;
}

.feature-card__media::before,
.feature-card__media::after,
.story-card__media::before,
.story-card__media::after {
  z-index: 1;
}

.story-card__excerpt {
  margin: 10px 0 0;
  color: var(--wpb-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.industry-card__image {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #e9f2f8;
}

.redirect-panel__visual {
  min-width: min(280px, 100%);
}

.module-photo:hover img,
.feature-card:hover .feature-card__media img,
.story-card:hover .story-card__media img,
.industry-card:hover .industry-card__image img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 1024px) {
  .module-photo--hero {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .module-photo,
  .module-photo--hero {
    min-height: 280px;
  }
}

.wp-site-blocks > header.wp-block-template-part + main.wpb-block-template,
.wp-site-blocks > header.wp-block-template-part + main.nexa-home-main,
.wp-site-blocks > .wp-block-template-part + main.wpb-block-template,
.wp-site-blocks > .wp-block-template-part + main.nexa-home-main {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

body.single-industry .wp-site-blocks > main.wpb-block-single-template,
body.single-solution .wp-site-blocks > main.wpb-block-single-template {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
  background: #fff;
}

body.single-industry .wpb-block-single-template > .entry-anchor-targets + .nexa-solution-main,
body.single-solution .wpb-block-single-template > .entry-anchor-targets + .nexa-solution-main {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

body.single-industry .nexa-site-header .header-actions .button,
body.single-solution .nexa-site-header .header-actions .button {
  min-height: 42px;
  padding: 0 22px;
  border-color: #74bd20;
  border-radius: 4px;
  background: #74bd20;
  color: #fff;
  box-shadow: none;
}

.landing-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px 0 104px;
  background-color: #061f34;
  background-image:
    linear-gradient(90deg, rgba(5, 28, 48, 0.94) 0%, rgba(7, 40, 68, 0.86) 48%, rgba(6, 34, 58, 0.42) 100%),
    linear-gradient(135deg, #061d33 0%, #0b2f4f 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.landing-hero__inner {
  position: relative;
  z-index: 1;
}

.landing-hero__copy {
  max-width: 760px;
}

.landing-hero .section-kicker {
  color: #83c934;
}

.landing-hero__title {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-hero__body {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.landing-hero__actions {
  margin-top: 34px;
}

.landing-hero__actions .button--primary,
.contact-band__actions .button--primary,
.redirect-panel__actions .button--primary {
  border-color: #74bd20;
  border-radius: 4px;
  background: #74bd20;
  color: #fff;
}

.landing-hero__actions .button--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  color: #fff;
}

.landing-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.landing-hero__signals li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font: 700 0.82rem/1.2 "Manrope", sans-serif;
}

.section-shell--icon-cards,
.section-shell--contact-cards,
.section-shell--process-flow,
.section-shell--global-presence {
  background: #fff;
}

.card-grid--icon-cards,
.card-grid--process-flow {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.feature-card--plain.feature-card--has-icon,
.link-columns--contact-cards .link-column,
.link-columns--global-presence .link-column {
  border-radius: 8px;
  border: 1px solid rgba(13, 48, 79, 0.12);
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 28, 46, 0.08);
}

.feature-card--plain.feature-card--has-icon {
  min-height: 100%;
  padding: 28px;
}

.feature-card--plain.feature-card--has-icon .feature-card__content {
  padding: 0;
}

.feature-card__icon,
.link-column__icon,
.stat-card__icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(116, 189, 32, 0.12);
  color: #2c7a20;
  font-size: 24px;
  line-height: 1;
}

.card-grid--process-flow {
  counter-reset: nexa-step;
}

.card-grid--process-flow .feature-card--has-icon {
  position: relative;
}

.card-grid--process-flow .feature-card--has-icon::before {
  counter-increment: nexa-step;
  content: counter(nexa-step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(6, 34, 58, 0.14);
  font: 800 1.85rem/1 "Manrope", sans-serif;
}

.link-columns--contact-cards,
.link-columns--global-presence {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.link-columns--contact-cards .link-column,
.link-columns--global-presence .link-column {
  padding: 28px;
}

.link-column__body {
  margin: 10px 0 0;
  color: var(--wpb-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.link-columns--contact-cards .link-column__list {
  margin-top: 18px;
}

.stats-grid--global-capability .stat-card {
  border-radius: 8px;
  text-align: left;
}

.stats-grid--global-capability .stat-card__value {
  color: var(--wpb-navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.media-groups .media-group__lead,
.media-groups .media-group__tile {
  border-radius: 8px;
}

.contact-band__actions,
.redirect-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button--has-icon {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.button__icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}

.contact-band__actions .button--ghost,
.redirect-panel__actions .button--ghost {
  border-color: rgba(11, 47, 79, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wpb-navy);
}

.landing-hero--poster-hero {
  min-height: 270px;
  padding: 54px 0 34px;
  background-position: center right;
}

.landing-hero--poster-hero .section-kicker,
.landing-hero--poster-hero .landing-hero__actions {
  display: none;
}

.landing-hero--poster-hero .landing-hero__copy {
  max-width: 620px;
}

.landing-hero--poster-hero .landing-hero__title {
  font-size: clamp(3.1rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.landing-hero--poster-hero .landing-hero__body {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  font-weight: 650;
  line-height: 1.42;
}

.landing-hero--poster-hero .landing-hero__signals {
  gap: clamp(24px, 5vw, 58px);
  margin-top: 30px;
}

.landing-hero--poster-hero .landing-hero__signals li {
  min-height: 0;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.landing-hero--poster-hero .landing-hero__signals strong {
  display: block;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.2;
}

.landing-hero--poster-hero .landing-hero__signals small {
  display: block;
  max-width: 150px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.landing-hero__signal-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #8cc63f;
  font-size: 38px;
  line-height: 1;
}

.nexa-page-module-stack .section-shell--poster-intro,
.nexa-page-module-stack .section-shell--poster-focus,
.nexa-page-module-stack .section-shell--poster-strength,
.nexa-page-module-stack .section-shell--poster-media-row,
.nexa-page-module-stack .section-shell--poster-contact-cards,
.nexa-page-module-stack .section-shell--poster-form,
.nexa-page-module-stack .section-shell--poster-global-stats,
.nexa-page-module-stack .section-shell--poster-process,
.nexa-page-module-stack .section-shell--poster-presence {
  padding: 30px 0;
  background: #fff;
}

.nexa-page-module-stack .section-shell--poster-intro {
  padding-top: 34px;
}

.nexa-page-module-stack .split-section--poster-intro,
.nexa-page-module-stack .form-shell.section-shell--poster-form {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nexa-page-module-stack .split-section--poster-intro {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 7vw, 86px);
  padding: 0;
}

.nexa-page-module-stack .split-section--poster-intro .section-kicker,
.nexa-page-module-stack .section-shell--poster-focus .section-title,
.nexa-page-module-stack .section-shell--poster-strength .section-title,
.nexa-page-module-stack .section-shell--poster-media-row .section-kicker,
.nexa-page-module-stack .section-shell--poster-contact-cards .section-title,
.nexa-page-module-stack .section-shell--poster-global-stats .section-title,
.nexa-page-module-stack .section-shell--poster-process .section-title,
.nexa-page-module-stack .section-shell--poster-presence .section-title {
  position: relative;
  display: inline-block;
  color: #071f3f;
  font-size: clamp(1.42rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.16;
}

.nexa-page-module-stack .split-section--poster-intro .section-kicker::after,
.nexa-page-module-stack .section-shell--poster-focus .section-title::after,
.nexa-page-module-stack .section-shell--poster-strength .section-title::after,
.nexa-page-module-stack .section-shell--poster-media-row .section-kicker::after,
.nexa-page-module-stack .section-shell--poster-contact-cards .section-title::after,
.nexa-page-module-stack .section-shell--poster-global-stats .section-title::after,
.nexa-page-module-stack .section-shell--poster-process .section-title::after,
.nexa-page-module-stack .section-shell--poster-presence .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: #2d66bc;
}

.nexa-page-module-stack .section-shell--poster-focus .section-title::after,
.nexa-page-module-stack .section-shell--poster-strength .section-title::after,
.nexa-page-module-stack .section-shell--poster-contact-cards .section-title::after,
.nexa-page-module-stack .section-shell--poster-global-stats .section-title::after,
.nexa-page-module-stack .section-shell--poster-process .section-title::after,
.nexa-page-module-stack .section-shell--poster-presence .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.nexa-page-module-stack .split-section--poster-intro .section-title {
  display: none;
}

.nexa-page-module-stack .split-section--poster-intro .section-text {
  max-width: 640px;
  margin-top: 28px;
  color: #1e2f45;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.86;
  white-space: pre-line;
}

.nexa-page-module-stack .split-section--poster-intro .split-photo {
  min-height: 263px;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(7, 28, 46, 0.13);
}

.nexa-page-module-stack .split-section--poster-intro .split-photo img {
  min-height: inherit;
}

.nexa-page-module-stack .section-shell--poster-focus .section-heading,
.nexa-page-module-stack .section-shell--poster-strength .section-heading,
.nexa-page-module-stack .section-shell--poster-contact-cards .section-heading,
.nexa-page-module-stack .section-shell--poster-global-stats .section-heading,
.nexa-page-module-stack .section-shell--poster-process .section-heading,
.nexa-page-module-stack .section-shell--poster-presence .section-heading {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.nexa-page-module-stack .section-shell--poster-focus .section-text,
.nexa-page-module-stack .section-shell--poster-strength .section-text,
.nexa-page-module-stack .section-shell--poster-contact-cards .section-text,
.nexa-page-module-stack .section-shell--poster-global-stats .section-text,
.nexa-page-module-stack .section-shell--poster-process .section-text,
.nexa-page-module-stack .section-shell--poster-presence .section-text {
  margin: 18px auto 0;
}

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

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

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

.card-grid--poster-focus .feature-card--plain.feature-card--has-icon {
  min-height: 188px;
  padding: 30px 34px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(7, 28, 46, 0.05);
}

.card-grid--poster-strength .feature-card--plain.feature-card--has-icon {
  min-height: 170px;
  padding: 8px 24px 6px;
  border: 0;
  border-right: 1px solid #d9e1ea;
  border-radius: 0;
  box-shadow: none;
}

.card-grid--poster-strength .feature-card--plain.feature-card--has-icon:last-child {
  border-right: 0;
}

.card-grid--poster-process .feature-card--plain.feature-card--has-icon {
  min-height: 188px;
  padding: 26px 20px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(7, 28, 46, 0.05);
}

.card-grid--poster-focus .feature-card__content,
.card-grid--poster-strength .feature-card__content,
.card-grid--poster-process .feature-card__content {
  text-align: center;
}

.card-grid--poster-focus .feature-card__icon,
.card-grid--poster-strength .feature-card__icon,
.card-grid--poster-process .feature-card__icon,
.link-columns--poster-contact-cards .link-column__icon,
.link-columns--poster-presence .link-column__icon,
.stats-grid--poster-global-stats .stat-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border: 0;
  background: transparent;
  color: #2e63b7;
  font-size: 44px;
}

.card-grid--poster-focus .feature-card:nth-child(1) .feature-card__icon,
.card-grid--poster-strength .feature-card:nth-child(1) .feature-card__icon,
.link-columns--poster-contact-cards .link-column:nth-child(1) .link-column__icon {
  color: #7ab53b;
}

.card-grid--poster-focus .feature-card:nth-child(3) .feature-card__icon,
.card-grid--poster-strength .feature-card:nth-child(5) .feature-card__icon {
  color: #2a9f95;
}

.card-grid--poster-focus .feature-card h3,
.card-grid--poster-strength .feature-card h3,
.card-grid--poster-process .feature-card h3,
.link-columns--poster-contact-cards .link-column h3,
.link-columns--poster-presence .link-column h3 {
  margin: 0;
  color: #071f3f;
  font-size: 0.98rem;
  line-height: 1.24;
}

.card-grid--poster-focus .feature-card p,
.card-grid--poster-strength .feature-card p,
.card-grid--poster-process .feature-card p,
.link-columns--poster-contact-cards .link-column__body,
.link-columns--poster-presence .link-column__body {
  margin-top: 9px;
  color: #30445d;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.48;
}

.nexa-page-module-stack .section-shell--poster-media-row {
  padding: 24px 0;
}

.nexa-page-module-stack .section-shell--poster-media-row .section-heading {
  margin-bottom: 16px;
}

.nexa-page-module-stack .section-shell--poster-media-row .section-kicker {
  font-size: clamp(1.35rem, 1.8vw, 1.62rem);
  letter-spacing: 0;
  text-transform: none;
}

.nexa-page-module-stack .section-shell--poster-media-row .section-title,
.nexa-page-module-stack .section-shell--poster-media-row .section-text {
  display: none;
}

.media-groups--poster-media-row {
  gap: 0;
}

.media-groups--poster-media-row .media-group {
  grid-template-columns: minmax(0, 0.74fr) minmax(250px, 0.26fr);
  gap: 32px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.media-groups--poster-media-row .media-group + .media-group {
  padding-top: 24px;
  border-top: 1px solid #dce5ef;
}

.media-groups--poster-media-row .media-group__copy {
  order: 2;
  gap: 0;
}

.media-groups--poster-media-row .media-group__visuals {
  order: 1;
}

.media-groups--poster-media-row .media-group__title {
  color: #071f3f;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.media-groups--poster-media-row .media-group__body {
  display: none;
  color: #2f435b;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.62;
  white-space: pre-line;
}

.media-groups--poster-media-row .media-group__copy .button--text {
  display: none;
}

.media-groups--poster-media-row .media-group__visuals {
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.92fr);
  gap: 22px;
  height: 293px;
  min-height: 0;
}

.media-groups--poster-media-row .media-group__lead,
.media-groups--poster-media-row .media-group__tile {
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(7, 28, 46, 0.12);
}

.media-groups--poster-media-row .media-group__lead {
  height: 293px;
}

.media-groups--poster-media-row .media-group__trail .media-group__tile {
  height: calc((293px - 36px) / 3);
}

.media-groups--poster-media-row .media-group__trail {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 96px 85px 76px;
  gap: 18px;
}

.media-groups--poster-media-row .media-group__tile:last-child:nth-child(odd) {
  grid-column: auto;
}

.media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__visuals {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 1.07fr);
  height: 270px;
}

.media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__lead {
  height: 270px;
}

.media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__trail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 90px 165px;
  gap: 15px;
}

.media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__trail .media-group__tile {
  height: auto;
}

.media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__trail .media-group__tile:first-child {
  grid-column: 1 / -1;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
  grid-template-columns: 248fr 247fr 220fr;
  gap: 16px;
  height: 210px;
  min-height: 0;
}

.media-groups--poster-media-row .media-group--visual-triptych {
  align-items: start;
  margin-top: -25px;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
.media-groups--poster-media-row .media-group--visual-triptych .media-group__tile {
  height: 210px;
  min-height: 0;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__points {
  gap: 18px;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__point strong {
  font-size: 0.9rem;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__point small {
  font-size: 0.78rem;
  line-height: 1.38;
}

.media-groups--poster-media-row .media-group--visual-triptych .media-group__trail {
  display: contents;
}

.media-groups--poster-media-row figcaption {
  display: none;
}

.media-groups--poster-media-row .media-group__points {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.media-groups--poster-media-row .media-group__point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.media-groups--poster-media-row .media-group__point-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #79b53d;
  font-size: 37px;
  line-height: 1;
}

.media-groups--poster-media-row .media-group__point strong {
  display: block;
  color: #071f3f;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
}

.media-groups--poster-media-row .media-group__point small {
  display: block;
  margin-top: 6px;
  color: #243a55;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.5;
}

.link-columns--poster-contact-cards,
.link-columns--poster-presence,
.stats-grid--poster-global-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.link-columns--poster-contact-cards .link-column,
.link-columns--poster-presence .link-column,
.stats-grid--poster-global-stats .stat-card {
  min-height: 176px;
  padding: 26px;
  border: 1px solid #dfe6ee;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(7, 28, 46, 0.05);
}

.stats-grid--poster-global-stats .stat-card__value {
  color: #071f3f;
  font-size: 1.2rem;
}

.stats-grid--poster-global-stats .stat-card__label {
  margin-top: 8px;
  color: #30445d;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.48;
}

.nexa-page-module-stack .section-shell--poster-form .form-shell {
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 0.62fr);
  padding: 28px;
  border-radius: 6px;
}

.nexa-page-module-stack .section-shell--contact.section-shell--poster-footer,
.nexa-page-module-stack .section-shell--poster-footer {
  padding: 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(54, 117, 197, 0.28), transparent 30%),
    linear-gradient(135deg, #063c78 0%, #032d5d 58%, #021d3f 100%);
}

.nexa-page-module-stack .contact-band--poster-footer,
.nexa-page-module-stack .section-shell--contact .contact-band--poster-footer {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 96px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-band--poster-footer .contact-band__mark {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1f5aa9;
}

.contact-band--poster-footer .contact-band__mark-icon {
  font-size: 28px;
}

.contact-band--poster-footer .contact-band__title {
  font-size: clamp(1.2rem, 2.05vw, 1.72rem);
  line-height: 1.14;
}

.contact-band--poster-footer .contact-band__body {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.46;
}

.contact-band--poster-footer .contact-band__actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 30px;
}

.contact-band--poster-footer .contact-band__actions .button {
  min-width: 205px;
  min-height: 44px;
  border-radius: 6px;
}

.contact-band--poster-footer .contact-band__actions .button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.page-id-441 .site-footer,
.page-id-1187 .site-footer {
  display: block;
  padding: 22px 0 24px;
  background: #061f34;
}

.page-id-441 .site-footer .footer-main,
.page-id-1187 .site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 2.28fr);
  gap: 26px;
  align-items: start;
  padding-top: 0;
  padding-bottom: 10px;
}

.page-id-441 .site-footer .footer-brand p,
.page-id-1187 .site-footer .footer-brand p {
  display: none;
}

.page-id-441 .site-footer .footer-brand,
.page-id-1187 .site-footer .footer-brand {
  max-width: none;
}

.page-id-441 .site-footer .footer-links,
.page-id-1187 .site-footer .footer-links {
  gap: clamp(46px, 8vw, 112px);
}

.page-id-441 .site-footer .footer-links h3,
.page-id-1187 .site-footer .footer-links h3 {
  margin-bottom: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.page-id-441 .site-footer .footer-links li,
.page-id-1187 .site-footer .footer-links li,
.page-id-441 .site-footer .footer-links a,
.page-id-1187 .site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.page-id-441 .site-footer .footer-links li + li,
.page-id-1187 .site-footer .footer-links li + li {
  margin-top: 6px;
}

.page-id-441 .site-footer .footer-meta,
.page-id-1187 .site-footer .footer-meta {
  padding-top: 16px;
}

.page-id-441 .site-footer .footer-meta p,
.page-id-1187 .site-footer .footer-meta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-band__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(20px, 4vw, 52px);
}

.contact-band__contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.contact-band__contact:hover {
  color: #fff;
}

.contact-band__contact-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 30px;
}

.contact-band__contact small {
  display: none;
}

.contact-band__contact strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.landing-hero--contact-screenshot-hero {
  min-height: 314px;
  padding: 48px 0 62px;
  background-position: center right;
  background-size: cover;
}

.landing-hero--contact-screenshot-hero .section-kicker,
.landing-hero--contact-screenshot-hero .landing-hero__actions,
.landing-hero--contact-screenshot-hero .landing-hero__signals {
  display: none;
}

.landing-hero--contact-screenshot-hero .landing-hero__copy {
  max-width: 620px;
}

.landing-hero--contact-screenshot-hero .landing-hero__title {
  font-size: clamp(3.35rem, 4.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-hero--contact-screenshot-hero .landing-hero__body {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.2rem, 1.7vw, 1.58rem);
  font-weight: 700;
  line-height: 1.38;
}

.landing-hero--contact-screenshot-hero .landing-hero__body::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 20px;
  border-radius: 999px;
  background: #8cc63f;
}

.landing-hero--contact-screenshot-hero .landing-hero__subbody {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 650;
  line-height: 1.5;
}

.nexa-page-module-stack .section-shell--contact-screenshot-cards {
  position: relative;
  z-index: 4;
  margin-top: -92px;
  padding: 0 0 24px;
  background: linear-gradient(180deg, transparent 0 92px, #fff 92px 100%);
}

.nexa-page-module-stack .section-shell--contact-screenshot-main {
  padding: 0 0 18px;
  background: #fff;
}

.nexa-page-module-stack .section-shell--contact-screenshot-cards > .container,
.nexa-page-module-stack .section-shell--contact-screenshot-main > .container {
  width: min(1364px, calc(100vw - 172px));
}

.link-columns--contact-screenshot-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 128px;
  padding: 24px 32px;
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 15px 38px rgba(7, 28, 46, 0.14);
}

.link-columns--contact-screenshot-cards .link-column {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  row-gap: 5px;
  align-items: start;
  min-height: 70px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #dfe7f0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.link-columns--contact-screenshot-cards .link-column:first-child {
  padding-left: 0;
}

.link-columns--contact-screenshot-cards .link-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.link-columns--contact-screenshot-cards .link-column__icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid #dbe7f5;
  border-radius: 50%;
  background: #edf4fb;
  color: #073774;
  font-size: 35px;
  line-height: 1;
  grid-row: 1 / span 3;
  align-self: center;
}

.link-columns--contact-screenshot-cards .link-column:nth-child(2) .link-column__icon {
  color: #5fa934;
}

.link-columns--contact-screenshot-cards .link-column:nth-child(3) .link-column__icon {
  color: #1f65b7;
}

.link-columns--contact-screenshot-cards .link-column h3 {
  grid-column: 2;
  margin: 0;
  color: #061f4a;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.link-columns--contact-screenshot-cards .link-column__body {
  grid-column: 2;
  margin: 0;
  color: #0f1f33;
  font-size: 0.85rem;
  font-weight: 650;
  line-height: 1.25;
}

.link-columns--contact-screenshot-cards .link-column__list {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-columns--contact-screenshot-cards .link-column__list li + li {
  margin-top: 0;
}

.link-columns--contact-screenshot-cards .link-column__pending,
.link-columns--contact-screenshot-cards .link-column__list a {
  color: #5c6a7d;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.28;
  text-decoration: none;
}

.contact-showcase--contact-screenshot-main {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 18px;
  align-items: stretch;
}

.contact-showcase--contact-screenshot-main .contact-showcase__panel {
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid #dfe7f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 28, 46, 0.04);
}

.contact-showcase--contact-screenshot-main .contact-showcase__heading h2 {
  margin: 0;
  color: #061f4a;
  font-size: clamp(1.38rem, 1.9vw, 1.74rem);
  font-weight: 800;
  line-height: 1.16;
}

.contact-showcase--contact-screenshot-main .contact-showcase__heading p {
  margin: 8px 0 0;
  color: #1d324a;
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-showcase--contact-screenshot-main .contact-showcase__form {
  margin-top: 16px;
}

.contact-showcase--contact-screenshot-main .contact-showcase__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-showcase--contact-screenshot-main .contact-showcase__field {
  min-width: 0;
}

.contact-showcase--contact-screenshot-main .contact-showcase__field--wide {
  grid-column: 1 / -1;
}

.contact-showcase--contact-screenshot-main input[type="text"],
.contact-showcase--contact-screenshot-main input[type="email"],
.contact-showcase--contact-screenshot-main input[type="tel"],
.contact-showcase--contact-screenshot-main textarea {
  width: 100%;
  border: 1px solid #cfdae8;
  border-radius: 4px;
  background: #fff;
  color: #0f1f33;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: none;
}

.contact-showcase--contact-screenshot-main input[type="text"],
.contact-showcase--contact-screenshot-main input[type="email"],
.contact-showcase--contact-screenshot-main input[type="tel"] {
  height: 34px;
  padding: 7px 12px;
}

.contact-showcase--contact-screenshot-main textarea {
  min-height: 102px;
  padding: 10px 12px;
  resize: vertical;
}

.contact-showcase--contact-screenshot-main ::placeholder {
  color: #60718a;
  opacity: 1;
}

.contact-showcase--contact-screenshot-main .contact-showcase__privacy {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 13px;
  color: #1d324a;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-showcase--contact-screenshot-main .contact-showcase__privacy input {
  width: 13px;
  height: 13px;
  margin: 0;
}

.contact-showcase--contact-screenshot-main .contact-showcase__privacy a {
  color: #0f5fb3;
  text-decoration: none;
}

.contact-showcase--contact-screenshot-main .contact-showcase__button {
  min-width: 218px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #073d7a 0%, #022b5b 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.contact-showcase__button-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.contact-showcase--contact-screenshot-main .contact-showcase__map {
  height: 260px;
  margin: 10px 0 14px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #eef4f8;
}

.contact-showcase--contact-screenshot-main .contact-showcase__map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-showcase--contact-screenshot-main .contact-showcase__location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f1f5f9;
}

.contact-showcase--contact-screenshot-main .contact-showcase__location-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 16px 28px;
}

.contact-showcase--contact-screenshot-main .contact-showcase__location-card + .contact-showcase__location-card {
  border-left: 1px solid #d8e2ec;
}

.contact-showcase__location-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f2fb;
  color: #0a4e9a;
  font-size: 34px;
  line-height: 1;
}

.contact-showcase__location-card strong {
  display: block;
  color: #061f4a;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.24;
}

.contact-showcase__location-card small {
  display: block;
  margin-top: 6px;
  color: #1d324a;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.34;
}

.landing-hero--global-screenshot-hero {
  min-height: 330px;
  padding: 58px 0 60px;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.landing-hero--global-screenshot-hero .section-kicker,
.landing-hero--global-screenshot-hero .landing-hero__actions {
  display: none;
}

.landing-hero--global-screenshot-hero .landing-hero__copy {
  max-width: 560px;
}

.landing-hero--global-screenshot-hero .landing-hero__title {
  max-width: 540px;
  color: #fff;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
  white-space: pre-line;
}

.landing-hero--global-screenshot-hero .landing-hero__body {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 650;
  line-height: 1.55;
}

.landing-hero--global-screenshot-hero .landing-hero__signals {
  gap: clamp(18px, 3.4vw, 42px);
  margin-top: 26px;
}

.landing-hero--global-screenshot-hero .landing-hero__signals li {
  max-width: 168px;
  min-height: 0;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.landing-hero--global-screenshot-hero .landing-hero__signal-icon {
  width: 35px;
  height: 35px;
  color: #8cc63f;
  font-size: 32px;
}

.landing-hero--global-screenshot-hero .landing-hero__signals strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.landing-hero--global-screenshot-hero .landing-hero__signals small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.35;
}

.nexa-page-module-stack .section-shell--global-screenshot-stats {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  padding: 0 0 30px;
  background: linear-gradient(180deg, transparent 0 20px, #fff 20px 100%);
}

.stats-grid--global-screenshot-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 108px;
  padding: 20px 28px;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 28, 46, 0.14);
}

.nexa-page-module-stack .stats-grid--global-screenshot-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.stats-grid--global-screenshot-stats .stat-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #d8e2ec;
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.stats-grid--global-screenshot-stats .stat-card:last-child {
  border-right: 0;
}

.stats-grid--global-screenshot-stats .stat-card__icon {
  grid-row: 1 / span 3;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  color: #0d3f90;
  font-size: 38px;
  line-height: 1;
}

.stats-grid--global-screenshot-stats .stat-card__value {
  color: #07307a;
  font-size: clamp(1.42rem, 2.2vw, 1.92rem);
  font-weight: 850;
  line-height: 1;
}

.stats-grid--global-screenshot-stats .stat-card__label {
  margin-top: 4px;
  color: #061f4a;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.25;
}

.stats-grid--global-screenshot-stats .stat-card__body {
  margin-top: 4px;
  color: #40536d;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.3;
}

.nexa-page-module-stack .section-shell--global-screenshot-partner {
  padding: 18px 0 22px;
  background: #fff;
}

.global-partner-showcase--global-screenshot-partner {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.global-partner-showcase--global-screenshot-partner .section-kicker,
.global-process--global-screenshot-process .section-kicker,
.global-presence--global-screenshot-presence .section-kicker {
  margin: 0 0 8px;
  color: #6cad36;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.global-partner-showcase--global-screenshot-partner .section-title {
  max-width: 360px;
  color: #061f4a;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.08;
}

.global-partner-showcase--global-screenshot-partner .section-text {
  max-width: 390px;
  margin-top: 20px;
  color: #10233a;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.58;
}

.global-partner-showcase__bullets {
  display: grid;
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.global-partner-showcase__bullets li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #10233a;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.global-partner-showcase__check {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  color: #60aa35;
  font-size: 15px;
}

.global-partner-showcase--global-screenshot-partner .button--ghost,
.global-presence--global-screenshot-presence .button--ghost {
  min-width: 136px;
  min-height: 38px;
  border: 1px solid #9cafc8;
  border-radius: 4px;
  background: #fff;
  color: #061f4a;
  font-size: 0.78rem;
  font-weight: 800;
}

.global-partner-showcase__media {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.global-partner-showcase__lead,
.global-partner-showcase__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #e8eef4;
  box-shadow: 0 9px 22px rgba(7, 28, 46, 0.08);
}

.global-partner-showcase__lead {
  aspect-ratio: 4.4 / 1;
}

.global-partner-showcase__tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.global-partner-showcase__tile {
  aspect-ratio: 1.7 / 1;
}

.global-partner-showcase__lead img,
.global-partner-showcase__tile img,
.global-presence__map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-partner-showcase__tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 7px 8px;
  background: linear-gradient(135deg, rgba(8, 49, 104, 0.97), rgba(4, 32, 72, 0.97));
  color: #fff;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.nexa-page-module-stack .section-shell--global-screenshot-process {
  padding: 22px 0 34px;
  background: #fff;
}

.global-process--global-screenshot-process .global-process__heading {
  margin-bottom: 22px;
  text-align: center;
}

.global-process--global-screenshot-process .section-title {
  color: #061f4a;
  font-size: clamp(1.65rem, 2.6vw, 2.12rem);
  font-weight: 850;
  line-height: 1.12;
}

.global-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-process__step {
  position: relative;
  min-width: 0;
  text-align: center;
}

.global-process__icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 24%, #0b4b9c 0%, #062d6d 62%, #041f4d 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(5, 31, 74, 0.2);
}

.global-process__icon-symbol {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.global-process__step h3 {
  margin: 13px 0 0;
  color: #061f4a;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
}

.global-process__step p {
  max-width: 132px;
  margin: 8px auto 0;
  color: #182f4a;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.38;
}

.global-process__arrow {
  position: absolute;
  top: 26px;
  right: calc(-1 * clamp(18px, 2.4vw, 38px));
  width: clamp(28px, 4vw, 46px);
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: #5fa734;
}

.global-process__arrow-icon {
  color: #5fa734;
  font-size: 22px;
  line-height: 1;
}

.nexa-page-module-stack .section-shell--global-screenshot-presence {
  padding: 22px 0 28px;
  background: #fff;
}

.global-presence--global-screenshot-presence {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.global-presence--global-screenshot-presence .section-title {
  max-width: 270px;
  color: #061f4a;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 850;
  line-height: 1.1;
}

.global-presence--global-screenshot-presence .section-text {
  max-width: 270px;
  margin: 18px 0 22px;
  color: #10233a;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.58;
}

.global-presence__map {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f8fb;
}

.global-presence__map img {
  object-fit: contain;
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: 0;
    padding: 92px 0 74px;
    background-position: center;
  }

  .landing-hero__title {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
    line-height: 1.02;
  }

  .landing-hero__body {
    font-size: 1rem;
  }

  .landing-hero__actions,
  .contact-band__actions,
  .redirect-panel__actions {
    align-items: stretch;
  }

  .landing-hero__actions .button,
  .contact-band__actions .button,
  .redirect-panel__actions .button {
    width: 100%;
  }

  .landing-hero--poster-hero {
    padding: 92px 0 58px;
  }

  .landing-hero--poster-hero .landing-hero__signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .landing-hero--contact-screenshot-hero {
    min-height: 340px;
    padding: 72px 0 78px;
    background-position: center right;
  }

  .landing-hero--contact-screenshot-hero .landing-hero__copy {
    max-width: 560px;
  }

  .landing-hero--global-screenshot-hero {
    padding: 72px 0 84px;
    background-position: center right;
  }

  .landing-hero--global-screenshot-hero .landing-hero__signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .stats-grid--global-screenshot-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .nexa-page-module-stack .stats-grid--global-screenshot-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid--global-screenshot-stats .stat-card {
    border-right: 0;
  }

  .stats-grid--global-screenshot-stats .stat-card:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid #d8e2ec;
  }

  .stats-grid--global-screenshot-stats .stat-card:nth-child(n + 3) {
    padding-top: 18px;
  }

  .stats-grid--global-screenshot-stats .stat-card:nth-child(odd) {
    border-right: 1px solid #d8e2ec;
  }

  .global-partner-showcase--global-screenshot-partner,
  .global-presence--global-screenshot-presence {
    grid-template-columns: 1fr;
  }

  .global-partner-showcase--global-screenshot-partner .section-title,
  .global-partner-showcase--global-screenshot-partner .section-text,
  .global-presence--global-screenshot-presence .section-title,
  .global-presence--global-screenshot-presence .section-text {
    max-width: 620px;
  }

  .global-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .global-process__arrow {
    display: none;
  }

  .nexa-page-module-stack .section-shell--contact-screenshot-cards > .container,
  .nexa-page-module-stack .section-shell--contact-screenshot-main > .container {
    width: min(100vw - 48px, 100vw - 48px);
  }

  .link-columns--contact-screenshot-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .link-columns--contact-screenshot-cards .link-column:nth-child(2) {
    border-right: 0;
  }

  .link-columns--contact-screenshot-cards .link-column:nth-child(n + 3) {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #dfe7f0;
  }

  .link-columns--contact-screenshot-cards .link-column:nth-child(3) {
    padding-left: 0;
  }

  .contact-showcase--contact-screenshot-main {
    grid-template-columns: 1fr;
  }

  .card-grid--poster-focus,
  .card-grid--poster-strength,
  .card-grid--poster-process,
  .link-columns--poster-contact-cards,
  .link-columns--poster-presence,
  .stats-grid--poster-global-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--poster-strength .feature-card--plain.feature-card--has-icon:nth-child(2n) {
    border-right: 0;
  }

  .media-groups--poster-media-row .media-group,
  .nexa-page-module-stack .contact-band--poster-footer,
  .nexa-page-module-stack .section-shell--contact .contact-band--poster-footer,
  .nexa-page-module-stack .section-shell--poster-form .form-shell {
    grid-template-columns: 1fr;
  }

  .media-groups--poster-media-row .media-group__visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    min-height: 0;
  }

  .media-groups--poster-media-row .media-group__trail .media-group__tile {
    height: auto;
  }

  .media-groups--poster-media-row .media-group__lead,
  .media-groups--poster-media-row .media-group__tile,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile {
    height: auto;
    min-height: 180px;
  }

  .media-groups--poster-media-row .media-group__trail,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail {
    display: contents;
  }

  .contact-band--poster-footer .contact-band__actions {
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 12px;
  }

  .contact-band--poster-footer .contact-band__actions .button {
    width: 100%;
    min-width: 0;
  }

  .contact-band__contacts {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .landing-hero--contact-screenshot-hero {
    min-height: 400px;
    padding: 78px 0 92px;
    background-position: 58% center;
  }

  .landing-hero--contact-screenshot-hero .landing-hero__title {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .landing-hero--contact-screenshot-hero .landing-hero__body {
    font-size: 1.08rem;
  }

  .landing-hero--contact-screenshot-hero .landing-hero__subbody {
    font-size: 0.96rem;
  }

  .landing-hero--global-screenshot-hero {
    min-height: 500px;
    padding: 74px 0 96px;
    background-position: 65% center;
  }

  .landing-hero--global-screenshot-hero .landing-hero__title {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .landing-hero--global-screenshot-hero .landing-hero__body {
    font-size: 0.92rem;
  }

  .landing-hero--global-screenshot-hero .landing-hero__signals {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .landing-hero--global-screenshot-hero .landing-hero__signals li {
    max-width: 100%;
  }

  .nexa-page-module-stack .section-shell--global-screenshot-stats {
    margin-top: -56px;
  }

  .stats-grid--global-screenshot-stats {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .nexa-page-module-stack .stats-grid--global-screenshot-stats {
    grid-template-columns: 1fr;
  }

  .stats-grid--global-screenshot-stats .stat-card,
  .stats-grid--global-screenshot-stats .stat-card:nth-child(odd) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid #d8e2ec;
  }

  .stats-grid--global-screenshot-stats .stat-card:first-child {
    padding-top: 0;
  }

  .stats-grid--global-screenshot-stats .stat-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .global-partner-showcase__tiles,
  .global-process__steps {
    grid-template-columns: 1fr;
  }

  .global-partner-showcase__lead,
  .global-partner-showcase__tile {
    aspect-ratio: 1.8 / 1;
  }

  .nexa-page-module-stack .section-shell--contact-screenshot-cards {
    margin-top: -54px;
  }

  .nexa-page-module-stack .section-shell--contact-screenshot-cards > .container,
  .nexa-page-module-stack .section-shell--contact-screenshot-main > .container {
    width: min(100vw - 28px, 100vw - 28px);
  }

  .link-columns--contact-screenshot-cards {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .link-columns--contact-screenshot-cards .link-column,
  .link-columns--contact-screenshot-cards .link-column:first-child,
  .link-columns--contact-screenshot-cards .link-column:last-child,
  .link-columns--contact-screenshot-cards .link-column:nth-child(3) {
    padding: 0;
    border-right: 0;
  }

  .link-columns--contact-screenshot-cards .link-column + .link-column {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #dfe7f0;
  }

  .contact-showcase--contact-screenshot-main .contact-showcase__panel {
    padding: 20px;
  }

  .contact-showcase--contact-screenshot-main .contact-showcase__fields,
  .contact-showcase--contact-screenshot-main .contact-showcase__location-cards {
    grid-template-columns: 1fr;
  }

  .contact-showcase--contact-screenshot-main .contact-showcase__location-card + .contact-showcase__location-card {
    border-top: 1px solid #d8e2ec;
    border-left: 0;
  }

  .contact-showcase--contact-screenshot-main .contact-showcase__map {
    height: 220px;
  }

  .contact-showcase--contact-screenshot-main .contact-showcase__button {
    width: 100%;
    min-width: 0;
  }

  .nexa-page-module-stack .split-section--poster-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nexa-page-module-stack .split-section--poster-intro .split-photo {
    min-height: 220px;
  }

  .card-grid--poster-focus,
  .card-grid--poster-strength,
  .card-grid--poster-process,
  .link-columns--poster-contact-cards,
  .link-columns--poster-presence,
  .stats-grid--poster-global-stats,
  .media-groups--poster-media-row .media-group__visuals,
  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__visuals,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
    grid-template-columns: 1fr;
  }

  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__visuals,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
    height: auto;
  }

  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__lead,
  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__tile,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile {
    height: auto;
    min-height: 180px;
  }

  .media-groups--poster-media-row .media-group__trail,
  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__trail,
  .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .media-groups--poster-media-row .media-group--visual-data-mosaic .media-group__trail .media-group__tile:first-child {
    grid-column: auto;
  }

  .card-grid--poster-strength .feature-card--plain.feature-card--has-icon {
    border-right: 0;
    border-bottom: 1px solid #d9e1ea;
  }

  .card-grid--poster-strength .feature-card--plain.feature-card--has-icon:last-child {
    border-bottom: 0;
  }

  .contact-band--poster-footer .contact-band__mark {
    width: 52px;
    height: 52px;
  }

  .contact-band__contacts {
    flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .landing-hero--global-screenshot-hero {
    min-height: 330px;
    padding: 48px 0 50px;
  }

  .landing-hero--global-screenshot-hero .landing-hero__copy {
    max-width: 660px;
  }

  .landing-hero--global-screenshot-hero .landing-hero__title {
    max-width: 660px;
    font-size: clamp(2.25rem, 5vw, 3.05rem);
  }

  .landing-hero--global-screenshot-hero .landing-hero__body {
    max-width: 480px;
    font-size: 0.9rem;
  }

  .landing-hero--global-screenshot-hero .landing-hero__signals {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
  }

  .landing-hero--global-screenshot-hero .landing-hero__signals li {
    max-width: 145px;
  }

  .stats-grid--global-screenshot-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 20px 22px;
  }

  .nexa-page-module-stack .stats-grid--global-screenshot-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-grid--global-screenshot-stats .stat-card,
  .stats-grid--global-screenshot-stats .stat-card:nth-child(-n + 2),
  .stats-grid--global-screenshot-stats .stat-card:nth-child(n + 3),
  .stats-grid--global-screenshot-stats .stat-card:nth-child(odd) {
    min-height: 78px;
    padding: 0 12px;
    border-bottom: 0;
    border-right: 1px solid #d8e2ec;
  }

  .stats-grid--global-screenshot-stats .stat-card:last-child {
    border-right: 0;
  }

  .stats-grid--global-screenshot-stats .stat-card__icon {
    width: 34px;
    height: 34px;
    font-size: 32px;
  }

  .stats-grid--global-screenshot-stats .stat-card__value {
    font-size: 1.26rem;
  }

  .stats-grid--global-screenshot-stats .stat-card__label {
    font-size: 0.62rem;
  }

  .stats-grid--global-screenshot-stats .stat-card__body {
    font-size: 0.58rem;
  }

  .global-partner-showcase--global-screenshot-partner {
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 0.64fr);
    gap: 24px;
  }

  .global-partner-showcase--global-screenshot-partner .section-title {
    font-size: 1.7rem;
  }

  .global-partner-showcase--global-screenshot-partner .section-text {
    font-size: 0.75rem;
  }

  .global-partner-showcase__bullets li {
    font-size: 0.7rem;
  }

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

  .global-process__step p {
    max-width: 110px;
    font-size: 0.58rem;
  }

  .global-process__arrow {
    display: inline-grid;
    right: -24px;
  }

  .global-presence--global-screenshot-presence {
    grid-template-columns: minmax(160px, 0.26fr) minmax(0, 0.74fr);
    gap: 22px;
  }
}

/* Projects / Media screenshot fidelity pass. */
body.page-id-441,
body.page-id-1187 {
  --projects-media-container: min(1050px, calc(100vw - 62px));
  --projects-media-green: #8cc63f;
  --projects-media-navy: #061f3c;
  --projects-media-deep: #001b35;
  background: #fff;
}

.page-id-441 .site-header,
.page-id-1187 .site-header {
  background: #052442;
  box-shadow: none;
}

.page-id-441 .site-header .utility-bar,
.page-id-1187 .site-header .utility-bar {
  display: none;
}

.page-id-441 .site-header .header-main__inner,
.page-id-1187 .site-header .header-main__inner {
  width: min(1120px, calc(100vw - 44px));
  min-height: 66px !important;
}

.page-id-441 .site-header .site-brand__logo--projects-media,
.page-id-1187 .site-header .site-brand__logo--projects-media {
  height: 42px;
  max-width: none;
}

.page-id-441 .site-header .nav-list--projects-media,
.page-id-1187 .site-header .nav-list--projects-media {
  gap: clamp(17px, 2.05vw, 28px);
}

.page-id-441 .site-header .nav-link,
.page-id-1187 .site-header .nav-link {
  position: relative;
  min-height: 66px !important;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.page-id-441 .site-header .nav-list--projects-media > .nav-item > .nav-link--current::after,
.page-id-1187 .site-header .nav-list--projects-media > .nav-item > .nav-link--current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  width: auto;
  height: 3px;
  margin: 0;
  border: 0;
  background: var(--projects-media-green);
  transform: none;
}

.page-id-441 .site-header .mega-panel,
.page-id-1187 .site-header .mega-panel {
  display: none;
}

.page-id-441 .site-header .nav-item.is-open .mega-panel,
.page-id-1187 .site-header .nav-item.is-open .mega-panel {
  display: block;
}

.page-id-441 .site-header .mega-panel__inner,
.page-id-1187 .site-header .mega-panel__inner {
  width: min(760px, calc(100vw - 96px));
}

.page-id-441 .site-header .header-meta,
.page-id-1187 .site-header .header-meta {
  display: none;
}

.page-id-441 .site-header .header-actions .button,
.page-id-1187 .site-header .header-actions .button {
  min-width: 108px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 4px;
  border-color: var(--projects-media-green) !important;
  background: var(--projects-media-green) !important;
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 850;
}

.page-id-441 .site-footer,
.page-id-1187 .site-footer,
.page-id-441 footer.wp-block-template-part,
.page-id-1187 footer.wp-block-template-part {
  display: none;
}

.page-id-441 .landing-hero--projects-media-hero,
.page-id-1187 .landing-hero--projects-media-hero {
  min-height: 296px;
  padding: 52px 0 32px;
  background-position: center, center right !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 100% 100%, cover !important;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__inner,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__inner,
.page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row > .container,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row > .container,
.page-id-441 .nexa-page-module-stack > .section-shell--poster-footer > .container,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-footer > .container {
  width: var(--projects-media-container);
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__copy,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__copy {
  max-width: 390px;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__title,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__title {
  font-size: clamp(2.35rem, 4.25vw, 3.25rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__body,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__body {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.32vw, 1.18rem);
  font-weight: 650;
  line-height: 1.42;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signals,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals {
  position: relative;
  gap: 0;
  margin-top: 34px;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signals::before,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--projects-media-green);
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signals li,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals li {
  gap: 9px;
  padding: 0 19px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signals li:first-child,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals li:first-child {
  padding-left: 0;
  border-left: 0;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signal-icon,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signal-icon {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 24px;
}

.page-id-441 .landing-hero--projects-media-hero .landing-hero__signals strong,
.page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals strong {
  max-width: 74px;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.1;
}

.page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row {
  padding: 22px 0 20px;
  background: #fff;
}

.page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row + .section-shell--poster-media-row,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row + .section-shell--poster-media-row {
  border-top: 1px solid #dfe5ec;
}

.page-id-441 .section-shell--poster-media-row .section-heading,
.page-id-1187 .section-shell--poster-media-row .section-heading {
  display: block;
  margin-bottom: 18px;
}

.page-id-441 .section-shell--poster-media-row .section-kicker,
.page-id-1187 .section-shell--poster-media-row .section-kicker {
  color: #061f3c;
  font-size: clamp(1.04rem, 1.48vw, 1.22rem);
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-id-441 .section-shell--poster-media-row .section-kicker::after,
.page-id-1187 .section-shell--poster-media-row .section-kicker::after {
  bottom: -10px;
  width: 25px;
  height: 3px;
  background: var(--projects-media-green);
}

.page-id-441 .media-groups--poster-media-row .media-group,
.page-id-1187 .media-groups--poster-media-row .media-group {
  grid-template-columns: minmax(0, 0.695fr) minmax(230px, 0.305fr);
  gap: 30px;
  align-items: start;
}

.page-id-441 .media-groups--poster-media-row .media-group__visuals,
.page-id-1187 .media-groups--poster-media-row .media-group__visuals {
  grid-template-columns: minmax(0, 1.72fr) minmax(0, 1fr);
  gap: 10px;
  height: clamp(220px, 26vw, 292px);
  min-height: 0;
  overflow: hidden;
}

.page-id-441 .media-groups--poster-media-row .media-group__lead,
.page-id-1187 .media-groups--poster-media-row .media-group__lead,
.page-id-441 .media-groups--poster-media-row .media-group__tile,
.page-id-1187 .media-groups--poster-media-row .media-group__tile {
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-id-441 .media-groups--poster-media-row .media-group__lead,
.page-id-1187 .media-groups--poster-media-row .media-group__lead {
  grid-column: 1;
  grid-row: 1 / -1;
  height: 100%;
  min-height: 0;
}

.page-id-441 .media-groups--poster-media-row .media-group__trail,
.page-id-1187 .media-groups--poster-media-row .media-group__trail {
  display: grid;
  grid-column: 2;
  grid-row: 1 / -1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail,
.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile {
  grid-column: auto;
  grid-row: auto;
}

.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail {
  display: contents;
}

.page-id-441 .media-groups--poster-media-row .media-group__trail .media-group__tile,
.page-id-1187 .media-groups--poster-media-row .media-group__trail .media-group__tile {
  height: 100%;
  min-height: 0;
}

.page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row:nth-of-type(3) .media-group__visuals,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row:nth-of-type(3) .media-group__visuals {
  height: clamp(196px, 23vw, 254px);
}

.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  height: clamp(150px, 17.5vw, 210px);
}

.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych {
  margin-top: 0;
}

.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__lead,
.page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile,
.page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__tile {
  height: 100%;
}

.page-id-441 .media-groups--poster-media-row .media-group__points,
.page-id-1187 .media-groups--poster-media-row .media-group__points {
  gap: clamp(19px, 2.6vw, 32px);
}

.page-id-441 .media-groups--poster-media-row .media-group__point,
.page-id-1187 .media-groups--poster-media-row .media-group__point {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.page-id-441 .media-groups--poster-media-row .media-group__point-icon,
.page-id-1187 .media-groups--poster-media-row .media-group__point-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--projects-media-deep);
  color: var(--projects-media-green);
  font-size: 34px;
}

.page-id-441 .media-groups--poster-media-row .media-group__point strong,
.page-id-1187 .media-groups--poster-media-row .media-group__point strong {
  color: #061f3c;
  font-size: clamp(0.84rem, 1.08vw, 1rem);
  font-weight: 850;
  line-height: 1.16;
}

.page-id-441 .media-groups--poster-media-row .media-group__point small,
.page-id-1187 .media-groups--poster-media-row .media-group__point small {
  margin-top: 6px;
  color: #0d2138;
  font-size: clamp(0.66rem, 0.84vw, 0.77rem);
  font-weight: 650;
  line-height: 1.36;
}

.page-id-441 .nexa-page-module-stack > .section-shell--poster-footer,
.page-id-1187 .nexa-page-module-stack > .section-shell--poster-footer {
  padding: 0;
  background:
    radial-gradient(circle at 0 50%, rgba(140, 198, 63, 0.24), transparent 70px),
    linear-gradient(135deg, #052b55 0%, #021d3f 100%);
}

.page-id-441 .contact-band--poster-footer,
.page-id-1187 .contact-band--poster-footer {
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 20px;
  min-height: 78px;
  padding: 8px 0;
}

.page-id-441 .contact-band--poster-footer .contact-band__mark,
.page-id-1187 .contact-band--poster-footer .contact-band__mark {
  width: 56px;
  height: 56px;
  border: 1px solid var(--projects-media-green);
  background: transparent;
  color: var(--projects-media-green);
}

.page-id-441 .contact-band--poster-footer .contact-band__mark-icon,
.page-id-1187 .contact-band--poster-footer .contact-band__mark-icon {
  font-size: 32px;
}

.page-id-441 .contact-band--poster-footer .contact-band__title,
.page-id-1187 .contact-band--poster-footer .contact-band__title {
  font-size: clamp(1.1rem, 1.7vw, 1.46rem);
}

.page-id-441 .contact-band--poster-footer .contact-band__body,
.page-id-1187 .contact-band--poster-footer .contact-band__body {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
}

.page-id-441 .contact-band--poster-footer .contact-band__actions,
.page-id-1187 .contact-band--poster-footer .contact-band__actions {
  gap: 18px;
}

.page-id-441 .contact-band--poster-footer .contact-band__actions .button,
.page-id-1187 .contact-band--poster-footer .contact-band__actions .button {
  min-width: 170px;
  min-height: 38px;
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-id-441 .contact-band--poster-footer .button--primary,
.page-id-1187 .contact-band--poster-footer .button--primary {
  background: var(--projects-media-green);
  color: #fff;
}

.page-id-441 .contact-band--poster-footer .button__icon,
.page-id-1187 .contact-band--poster-footer .button__icon {
  order: -1;
  margin: 0 8px 0 0;
}

.page-id-441 .contact-band--poster-footer .button__label,
.page-id-1187 .contact-band--poster-footer .button__label {
  white-space: nowrap;
}

@media (min-width: 901px) {
  body.page-id-441,
  body.page-id-1187 {
    --projects-media-container: calc(100vw - 72px);
  }

  .page-id-441 .site-header .header-main__inner,
  .page-id-1187 .site-header .header-main__inner {
    width: calc(100vw - 44px);
    justify-content: flex-start;
    gap: clamp(24px, calc(7vw - 39px), 50px);
  }

  .page-id-441 .site-header .primary-navigation,
  .page-id-1187 .site-header .primary-navigation {
    flex: 0 0 auto;
    width: auto;
  }

  .page-id-441 .site-header .nav-list,
  .page-id-1187 .site-header .nav-list {
    justify-content: flex-start;
  }

  .page-id-441 .site-header .header-actions,
  .page-id-1187 .site-header .header-actions {
    margin-left: auto;
  }

  .page-id-441 .landing-hero--projects-media-hero,
  .page-id-1187 .landing-hero--projects-media-hero {
    min-height: 260px;
    padding: 42px 0 26px;
    background-position: center, center center !important;
    background-size: 100% 100%, 100% 100% !important;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__copy,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__copy {
    max-width: 520px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__title,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__title {
    max-width: 520px;
    font-size: clamp(2.55rem, 3vw, 3.02rem);
    white-space: nowrap;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__body,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__body {
    max-width: 390px;
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    line-height: 1.42;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals {
    flex-wrap: nowrap;
    width: 430px;
    margin-top: 30px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals strong,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals strong {
    display: block;
    max-width: 76px;
  }
}

@media (min-width: 1200px) {
  body.page-id-441,
  body.page-id-1187 {
    --projects-media-container: min(1320px, calc(100vw - 150px));
  }

  .page-id-441 .site-header .header-main__inner,
  .page-id-1187 .site-header .header-main__inner {
    width: min(1480px, calc(100vw - 116px));
    min-height: 124px !important;
    gap: clamp(78px, 6.4vw, 88px);
  }

  .page-id-441 .site-header .site-brand,
  .page-id-1187 .site-header .site-brand,
  .page-id-441 .site-header .primary-navigation,
  .page-id-1187 .site-header .primary-navigation,
  .page-id-441 .site-header .header-actions,
  .page-id-1187 .site-header .header-actions {
    position: relative;
    top: 9px;
  }

  .page-id-441 .site-header .site-brand__logo--projects-media,
  .page-id-1187 .site-header .site-brand__logo--projects-media {
    width: 194px;
    height: 72px;
    object-fit: fill;
  }

  .page-id-441 .site-header .nav-link,
  .page-id-1187 .site-header .nav-link {
    min-height: 124px !important;
    font-size: 0.76rem;
  }

  .page-id-441 .site-header .nav-list--projects-media > .nav-item > .nav-link--current::after,
  .page-id-1187 .site-header .nav-list--projects-media > .nav-item > .nav-link--current::after {
    bottom: 26px;
  }

  .page-id-441 .site-header .header-actions .button,
  .page-id-1187 .site-header .header-actions .button {
    min-width: 148px;
    height: 52px;
    min-height: 52px;
    padding: 0 26px;
    font-size: 0.78rem;
  }

  .page-id-441 .landing-hero--projects-media-hero,
  .page-id-1187 .landing-hero--projects-media-hero {
    min-height: 350px;
    padding: 38px 0 42px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__title,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__title {
    font-size: clamp(3rem, 3.25vw, 3.25rem);
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__body,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__body {
    max-width: 430px;
    margin-top: 22px;
    font-size: clamp(1.1rem, 1.22vw, 1.18rem);
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals {
    width: 500px;
    margin-top: 78px;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  body.page-id-441,
  body.page-id-1187 {
    --projects-media-container: min(810px, calc(100vw - 62px));
  }

  .page-id-441 .site-header .primary-navigation,
  .page-id-1187 .site-header .primary-navigation {
    display: block !important;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    transform: none !important;
    overflow: visible !important;
  }

  .page-id-441 .site-header .header-main__inner,
  .page-id-1187 .site-header .header-main__inner {
    height: 66px !important;
  }

  .page-id-441 .site-header .nav-list,
  .page-id-1187 .site-header .nav-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px;
  }

  .page-id-441 .site-header .nav-list--projects-media,
  .page-id-1187 .site-header .nav-list--projects-media {
    gap: 18px;
  }

  .page-id-441 .site-header .nav-item,
  .page-id-1187 .site-header .nav-item {
    border-bottom: 0 !important;
  }

  .page-id-441 .site-header .nav-item__toggle,
  .page-id-1187 .site-header .nav-item__toggle {
    display: none !important;
  }

  .page-id-441 .site-header .mobile-menu-toggle,
  .page-id-1187 .site-header .mobile-menu-toggle {
    display: none !important;
  }

  .page-id-441 .site-header .header-actions,
  .page-id-1187 .site-header .header-actions {
    display: flex !important;
  }

  .page-id-441 .site-header .site-brand__logo,
  .page-id-1187 .site-header .site-brand__logo,
  .page-id-441 .site-header .wpb-brand-logo--full,
  .page-id-1187 .site-header .wpb-brand-logo--full {
    height: 39px;
    max-width: 145px;
  }

  .page-id-441 .site-header .site-brand__logo--projects-media,
  .page-id-1187 .site-header .site-brand__logo--projects-media {
    height: 42px;
    max-width: none;
  }

  .page-id-441 .site-header .header-actions .button,
  .page-id-1187 .site-header .header-actions .button {
    min-width: 88px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.62rem;
  }

  .page-id-441 .landing-hero--projects-media-hero,
  .page-id-1187 .landing-hero--projects-media-hero {
    min-height: 243px;
    padding: 38px 0 22px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__title,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__title {
    font-size: 2.38rem;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__body,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__body {
    max-width: 320px;
    font-size: 0.98rem;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals {
    flex-wrap: nowrap;
    width: 390px;
    margin-top: 28px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals li,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals li {
    gap: 7px;
    padding: 0 10px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals li:first-child,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals li:first-child {
    padding-left: 0;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals strong,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals strong {
    display: block;
    max-width: 66px;
    font-size: 0.58rem;
    line-height: 1.08;
  }

  .page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row,
  .page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row {
    padding: 8px 0 10px;
  }

  .page-id-441 .section-shell--poster-media-row .section-heading,
  .page-id-1187 .section-shell--poster-media-row .section-heading {
    display: block;
    margin-bottom: 6px;
  }

  .page-id-441 .section-shell--poster-media-row .section-kicker,
  .page-id-1187 .section-shell--poster-media-row .section-kicker {
    padding-bottom: 8px;
    font-size: 1rem;
    line-height: 1;
  }

  .page-id-441 .section-shell--poster-media-row .section-kicker::after,
  .page-id-1187 .section-shell--poster-media-row .section-kicker::after {
    bottom: 0;
    height: 2px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group,
  .page-id-1187 .media-groups--poster-media-row .media-group {
    grid-template-columns: minmax(0, 541fr) minmax(220px, 235fr);
    gap: 18px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__visuals,
  .page-id-1187 .media-groups--poster-media-row .media-group__visuals {
    height: 216px;
    gap: 9px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__trail,
  .page-id-1187 .media-groups--poster-media-row .media-group__trail {
    gap: 9px;
  }

  .page-id-441 .nexa-page-module-stack > .section-shell--poster-media-row:nth-of-type(3) .media-group__visuals,
  .page-id-1187 .nexa-page-module-stack > .section-shell--poster-media-row:nth-of-type(3) .media-group__visuals {
    height: 189px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals,
  .page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
    height: 135px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__points,
  .page-id-1187 .media-groups--poster-media-row .media-group__points {
    gap: 8px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__point,
  .page-id-1187 .media-groups--poster-media-row .media-group__point {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 9px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__point-icon,
  .page-id-1187 .media-groups--poster-media-row .media-group__point-icon {
    width: 43px;
    height: 43px;
    font-size: 24px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__point strong,
  .page-id-1187 .media-groups--poster-media-row .media-group__point strong {
    font-size: 0.68rem;
    line-height: 1.13;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__point small,
  .page-id-1187 .media-groups--poster-media-row .media-group__point small {
    margin-top: 2px;
    font-size: 0.5rem;
    line-height: 1.18;
  }

  .page-id-441 .nexa-page-module-stack > .section-shell--poster-footer,
  .page-id-1187 .nexa-page-module-stack > .section-shell--poster-footer {
    padding: 0;
  }

  .page-id-441 .nexa-page-module-stack .contact-band--poster-footer,
  .page-id-1187 .nexa-page-module-stack .contact-band--poster-footer,
  .page-id-441 .nexa-page-module-stack .section-shell--contact .contact-band--poster-footer,
  .page-id-1187 .nexa-page-module-stack .section-shell--contact .contact-band--poster-footer {
    grid-template-columns: 58px minmax(270px, 1fr) minmax(350px, 0.98fr) !important;
    min-height: 65px !important;
    height: 65px;
    gap: 16px;
    padding: 0;
  }

  .page-id-441 .contact-band--poster-footer .contact-band__mark,
  .page-id-1187 .contact-band--poster-footer .contact-band__mark {
    width: 50px;
    height: 50px;
  }

  .page-id-441 .contact-band--poster-footer .contact-band__actions .button,
  .page-id-1187 .contact-band--poster-footer .contact-band__actions .button {
    min-width: 168px;
    min-height: 36px;
    width: auto;
  }

  .page-id-441 .contact-band--poster-footer .contact-band__actions,
  .page-id-1187 .contact-band--poster-footer .contact-band__actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 14px;
  }
}

@media (max-width: 759px) {
  .page-id-441 .landing-hero--projects-media-hero,
  .page-id-1187 .landing-hero--projects-media-hero {
    min-height: 360px;
    padding: 70px 0 52px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-id-441 .landing-hero--projects-media-hero .landing-hero__signals li,
  .page-id-1187 .landing-hero--projects-media-hero .landing-hero__signals li {
    padding: 0;
    border-left: 0;
  }

  .page-id-441 .media-groups--poster-media-row .media-group,
  .page-id-1187 .media-groups--poster-media-row .media-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__visuals,
  .page-id-1187 .media-groups--poster-media-row .media-group__visuals,
  .page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals,
  .page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__visuals {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto !important;
    overflow: visible;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__lead,
  .page-id-1187 .media-groups--poster-media-row .media-group__lead,
  .page-id-441 .media-groups--poster-media-row .media-group__tile,
  .page-id-1187 .media-groups--poster-media-row .media-group__tile {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 10;
  }

  .page-id-441 .media-groups--poster-media-row .media-group__trail,
  .page-id-1187 .media-groups--poster-media-row .media-group__trail,
  .page-id-441 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail,
  .page-id-1187 .media-groups--poster-media-row .media-group--visual-triptych .media-group__trail {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    width: 100%;
    height: auto !important;
  }

  .page-id-441 .contact-band--poster-footer,
  .page-id-1187 .contact-band--poster-footer {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
}

/* Projects / Media uses the same top row as the current home header. */
.page-id-441 .nexa-site-header,
.page-id-1187 .nexa-site-header {
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #06223d 0%, #061c33 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-id-441 .nexa-site-header.is-scrolled,
.page-id-1187 .nexa-site-header.is-scrolled {
  box-shadow: 0 18px 38px rgba(4, 18, 31, 0.22);
}

.page-id-441 .nexa-site-header .header-main__inner,
.page-id-1187 .nexa-site-header .header-main__inner {
  width: var(--wpb-container);
  min-height: 78px !important;
  height: 78px !important;
  gap: 30px;
}

.page-id-441 .nexa-site-header .site-brand,
.page-id-1187 .nexa-site-header .site-brand,
.page-id-441 .nexa-site-header .primary-navigation,
.page-id-1187 .nexa-site-header .primary-navigation,
.page-id-441 .nexa-site-header .header-meta,
.page-id-1187 .nexa-site-header .header-meta,
.page-id-441 .nexa-site-header .header-actions,
.page-id-1187 .nexa-site-header .header-actions {
  position: static;
  top: auto;
}

.page-id-441 .nexa-site-header .site-brand,
.page-id-1187 .nexa-site-header .site-brand {
  flex: 0 0 auto;
}

.page-id-441 .nexa-site-header .nexa-brand,
.page-id-1187 .nexa-site-header .nexa-brand {
  gap: 11px;
}

.page-id-441 .nexa-site-header .nexa-brand__mark,
.page-id-1187 .nexa-site-header .nexa-brand__mark {
  width: 40px;
  height: 40px;
}

.page-id-441 .nexa-site-header .primary-navigation,
.page-id-1187 .nexa-site-header .primary-navigation {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

.page-id-441 .nexa-site-header .nexa-nav-list,
.page-id-1187 .nexa-site-header .nexa-nav-list {
  gap: clamp(18px, 2vw, 30px);
}

.page-id-441 .nexa-site-header .nav-link,
.page-id-1187 .nexa-site-header .nav-link {
  min-height: 78px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.page-id-441 .nexa-site-header .nav-list > .nav-item > .nav-link--current::after,
.page-id-1187 .nexa-site-header .nav-list > .nav-item > .nav-link--current::after {
  content: none;
}

.page-id-441 .nexa-site-header .header-meta,
.page-id-1187 .nexa-site-header .header-meta {
  display: flex;
  flex: 0 0 auto;
}

.page-id-441 .nexa-site-header .header-actions,
.page-id-1187 .nexa-site-header .header-actions {
  display: flex;
  flex: 0 0 auto;
}

.page-id-441 .nexa-site-header .header-actions .button,
.page-id-1187 .nexa-site-header .header-actions .button {
  width: auto;
  min-width: 0;
  height: 46px;
  min-height: 46px;
  padding: 0 22px;
  border-color: #065fd3 !important;
  border-radius: 3px;
  background: #065fd3 !important;
  color: #fff !important;
  font-size: 0.86rem;
  box-shadow: none;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .page-id-441 .nexa-site-header .header-main__inner,
  .page-id-1187 .nexa-site-header .header-main__inner {
    min-height: 72px !important;
    height: 72px !important;
  }

  .page-id-441 .nexa-site-header .primary-navigation,
  .page-id-1187 .nexa-site-header .primary-navigation {
    display: none;
    inset: 72px 0 0 auto;
    width: min(360px, 100vw);
    justify-content: flex-start;
  }

  .page-id-441 .nexa-site-header .primary-navigation.is-open,
  .page-id-1187 .nexa-site-header .primary-navigation.is-open {
    display: block;
  }

  .page-id-441 .nexa-site-header .primary-navigation.is-open .nexa-nav-list,
  .page-id-1187 .nexa-site-header .primary-navigation.is-open .nexa-nav-list {
    display: block;
  }

  .page-id-441 .nexa-site-header .nexa-nav-list,
  .page-id-1187 .nexa-site-header .nexa-nav-list {
    display: none;
  }

  .page-id-441 .nexa-site-header .nexa-header-meta,
  .page-id-1187 .nexa-site-header .nexa-header-meta {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .page-id-441 .nexa-site-header .header-main__inner,
  .page-id-1187 .nexa-site-header .header-main__inner {
    gap: 10px;
  }

  .page-id-441 .nexa-site-header .nexa-brand,
  .page-id-1187 .nexa-site-header .nexa-brand {
    gap: 8px;
  }

  .page-id-441 .nexa-site-header .nexa-brand__mark,
  .page-id-1187 .nexa-site-header .nexa-brand__mark {
    width: 38px;
    height: 38px;
  }

  .page-id-441 .nexa-site-header .nexa-brand__name,
  .page-id-1187 .nexa-site-header .nexa-brand__name {
    font-size: 1.45rem;
  }

  .page-id-441 .nexa-site-header .mobile-menu-toggle,
  .page-id-1187 .nexa-site-header .mobile-menu-toggle {
    display: block;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }

  .page-id-441 .nexa-site-header .nexa-header-actions,
  .page-id-1187 .nexa-site-header .nexa-header-actions {
    display: none;
  }
}

/* Projects / Media keeps its CTA band, then shows the shared home footer. */
.page-id-441 footer.wp-block-template-part,
.page-id-1187 footer.wp-block-template-part {
  display: block;
}

.page-id-441 footer.wp-block-template-part .site-footer,
.page-id-1187 footer.wp-block-template-part .site-footer {
  display: block;
  padding: 20px 0 36px;
  background: #081f33;
  color: rgba(255, 255, 255, 0.82);
}

.page-id-441 footer.wp-block-template-part .footer-main,
.page-id-1187 footer.wp-block-template-part .footer-main {
  display: flex;
  grid-template-columns: none;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 0;
}

.page-id-441 footer.wp-block-template-part .footer-brand,
.page-id-1187 footer.wp-block-template-part .footer-brand {
  max-width: 340px;
}

.page-id-441 footer.wp-block-template-part .footer-brand p,
.page-id-1187 footer.wp-block-template-part .footer-brand p {
  display: none;
}

.page-id-441 footer.wp-block-template-part .footer-links,
.page-id-1187 footer.wp-block-template-part .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  gap: 32px;
}

.page-id-441 footer.wp-block-template-part .footer-links h3,
.page-id-1187 footer.wp-block-template-part .footer-links h3 {
  margin: 0 0 12px;
  color: #fff;
  font: 800 0.9rem/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-id-441 footer.wp-block-template-part .footer-links li,
.page-id-1187 footer.wp-block-template-part .footer-links li,
.page-id-441 footer.wp-block-template-part .footer-links a,
.page-id-1187 footer.wp-block-template-part .footer-links a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.page-id-441 footer.wp-block-template-part .footer-links li + li,
.page-id-1187 footer.wp-block-template-part .footer-links li + li {
  margin-top: 10px;
}

.page-id-441 footer.wp-block-template-part .footer-meta,
.page-id-1187 footer.wp-block-template-part .footer-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-id-441 footer.wp-block-template-part .footer-meta p,
.page-id-1187 footer.wp-block-template-part .footer-meta p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

@media (max-width: 640px) {
  .page-id-441 footer.wp-block-template-part .footer-links,
  .page-id-1187 footer.wp-block-template-part .footer-links {
    grid-template-columns: 1fr;
  }
}

.contact-showcase--contact-screenshot-main select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(4, 34, 61, 0.14);
  border-radius: 0;
  background: #f7f9fc;
  color: #11243a;
  font: inherit;
  padding: 0 18px;
}

.contact-showcase--contact-screenshot-main select:focus,
.contact-showcase--contact-screenshot-main input:focus,
.contact-showcase--contact-screenshot-main textarea:focus {
  border-color: #7fbe26;
  outline: 2px solid rgba(127, 190, 38, 0.2);
  outline-offset: 2px;
}

.contact-showcase__error {
  margin: 0 0 18px;
  border-left: 4px solid #c2410c;
  background: #fff7ed;
  color: #7c2d12;
  padding: 12px 14px;
  font-weight: 700;
}

.landing-hero--legal-hero,
.landing-hero--thank-you-hero {
  min-height: 360px;
  background-color: #062441;
}

.landing-hero--legal-hero .landing-hero__copy,
.landing-hero--thank-you-hero .landing-hero__copy {
  max-width: 780px;
}

.nexa-legal-policy {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.nexa-legal-policy__toc {
  position: sticky;
  top: 128px;
  border-left: 4px solid #7fbe26;
  background: #f5f8fb;
  padding: 22px;
}

.nexa-legal-policy__updated {
  margin: 0 0 18px;
  color: #092746;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexa-legal-policy__toc nav {
  display: grid;
  gap: 10px;
}

.nexa-legal-policy__toc a {
  color: #17324d;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nexa-legal-policy__toc a:hover,
.nexa-legal-policy__toc a:focus {
  color: #6eaa17;
}

.nexa-legal-policy__body {
  display: grid;
  gap: 24px;
}

.nexa-legal-policy__section {
  border: 1px solid rgba(4, 34, 61, 0.1);
  background: #fff;
  padding: 30px;
}

.nexa-legal-policy__section h2 {
  margin: 0 0 14px;
  color: #062441;
  font-size: 1.6rem;
  line-height: 1.2;
}

.nexa-legal-policy__section p,
.nexa-legal-policy__section li,
.nexa-legal-policy__section td {
  color: #42566b;
  font-size: 1rem;
  line-height: 1.72;
}

.nexa-legal-policy__section p {
  margin: 0 0 14px;
}

.nexa-legal-policy__section p:last-child {
  margin-bottom: 0;
}

.nexa-legal-policy__section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.nexa-legal-policy__table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.nexa-legal-policy table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.nexa-legal-policy th,
.nexa-legal-policy td {
  border: 1px solid rgba(4, 34, 61, 0.1);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.nexa-legal-policy th {
  background: #062441;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nexa-legal-policy__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nexa-legal-contact-card {
  border: 1px solid rgba(4, 34, 61, 0.1);
  background: #f7f9fc;
  padding: 22px;
}

.nexa-legal-contact-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #062441;
  color: #7fbe26;
}

.nexa-legal-contact-card strong,
.nexa-legal-contact-card a,
.nexa-legal-contact-card span {
  display: block;
}

.nexa-legal-contact-card strong {
  color: #062441;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.nexa-legal-contact-card a,
.nexa-legal-contact-card span {
  margin-top: 8px;
  color: #31506d;
  font-weight: 700;
  text-decoration: none;
}

/* Terms of Use screenshot fidelity pass. */
body.page-id-17 {
  background: #fff;
}

.page-id-17 .landing-hero--terms-hero {
  min-height: 320px;
  padding: 74px 0 52px;
  background-color: #061f3c;
  background-position: center, center center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 100% 100%, cover !important;
}

.page-id-17 .landing-hero--terms-hero .landing-hero__inner,
.page-id-17 .section-shell--terms-policy > .container {
  width: min(1240px, calc(100vw - 56px));
}

.page-id-17 .landing-hero--terms-hero .landing-hero__copy {
  max-width: 620px;
}

.page-id-17 .landing-hero--terms-hero .section-kicker {
  display: none;
}

.page-id-17 .landing-hero--terms-hero .landing-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 5.15vw, 4.55rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-id-17 .landing-hero--terms-hero .landing-hero__body {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  font-weight: 750;
  line-height: 1.45;
}

.page-id-17 .section-shell--terms-policy {
  padding: 38px 0 28px;
  background: #fff;
}

.page-id-17 .nexa-legal-policy--terms-policy {
  grid-template-columns: minmax(230px, 285px) minmax(0, 1fr);
  gap: 74px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc {
  top: 108px;
  border-left: 0;
  background: transparent;
  padding: 0;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-title {
  margin: 0 0 22px;
  color: #065fd3;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc nav {
  gap: 4px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  color: #243b54;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.25;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-link:hover,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-link:focus,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-link--active {
  background: #eaf2ff;
  color: #065fd3;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-index {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support {
  margin-top: 44px;
  border: 1px solid #dce4ee;
  border-radius: 6px;
  background: #fff;
  padding: 24px 24px 22px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #065fd3;
  font-size: 34px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support h3 {
  margin: 0 0 12px;
  color: #065fd3;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.2;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support p {
  margin: 0 0 22px;
  color: #334b64;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #065fd3;
  font-size: 0.8rem;
  font-weight: 800;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support-link-icon {
  width: 24px;
  height: 24px;
  color: #065fd3;
  font-size: 24px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support-icon::before,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support-link-icon::before,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card__icon::before {
  color: #065fd3;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support a,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support span {
  color: inherit;
  text-decoration: none;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__body {
  gap: 26px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section {
  border: 0;
  background: transparent;
  padding: 0;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section h2 {
  margin: 0 0 11px;
  color: #065fd3;
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section-index {
  color: inherit;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section p,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section li,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section td {
  color: #18304a;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: 600;
  line-height: 1.48;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__section p {
  margin: 0;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__contacts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -8px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 62px;
  border: 1px solid #dce4ee;
  border-radius: 6px;
  background: #fff;
  padding: 11px 15px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card__icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: #065fd3;
  font-size: 32px;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card strong {
  color: #0b2340;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: none;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card a,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card span {
  min-width: 0;
  margin-top: 3px;
  color: #18304a;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card .nexa-legal-contact-card__icon,
.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-contact-card .nexa-legal-contact-card__icon::before {
  color: #065fd3;
}

.page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__updated--body {
  margin: -6px 0 0;
  color: #334b64;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 900px) {
  .page-id-17 .nexa-legal-policy--terms-policy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc {
    position: static;
  }

  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__support {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .page-id-17 .landing-hero--terms-hero {
    min-height: 292px;
    padding: 58px 0 42px;
    background-position: center, 58% center !important;
  }

  .page-id-17 .landing-hero--terms-hero .landing-hero__inner,
  .page-id-17 .section-shell--terms-policy > .container {
    width: min(100% - 32px, 1240px);
  }

  .page-id-17 .landing-hero--terms-hero .landing-hero__title {
    font-size: 2.75rem;
  }

  .page-id-17 .landing-hero--terms-hero .landing-hero__body {
    font-size: 1rem;
  }

  .page-id-17 .section-shell--terms-policy {
    padding: 30px 0 24px;
  }

  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc nav,
  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__contacts {
    grid-template-columns: 1fr;
  }

  .page-id-17 .nexa-legal-policy--terms-policy .nexa-legal-policy__toc-link {
    min-height: 40px;
  }
}

.link-columns--sitemap-directory {
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 16px;
}

.link-columns--sitemap-directory .link-column {
  padding: 22px;
  min-height: 100%;
}

.nexa-cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(760px, calc(100vw - 44px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #062441;
  color: #fff;
  padding: 20px;
  box-shadow: 0 22px 60px rgba(0, 20, 40, 0.28);
}

.nexa-cookie-banner[hidden],
.nexa-cookie-banner__prefs[hidden] {
  display: none;
}

.nexa-cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.nexa-cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.nexa-cookie-banner__copy a {
  color: #9fda3a;
  font-weight: 800;
}

.nexa-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: flex-end;
  gap: 10px;
}

.nexa-cookie-banner__actions .button,
.nexa-cookie-banner__prefs .button {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.nexa-cookie-banner__prefs {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.nexa-cookie-banner__prefs label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .link-columns--sitemap-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nexa-legal-policy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nexa-legal-policy__toc {
    position: static;
  }

  .nexa-legal-policy__contacts {
    grid-template-columns: 1fr;
  }

  .nexa-legal-policy__section h2 {
    font-size: 1.36rem;
  }

  .link-columns--sitemap-directory {
    grid-template-columns: 1fr;
  }

  .nexa-cookie-banner {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .nexa-cookie-banner__actions {
    justify-content: stretch;
  }

  .nexa-cookie-banner__actions .button,
  .nexa-cookie-banner__prefs .button {
    width: 100%;
  }
}
