:root {
  --navy-950: #0b1b2d;
  --navy-900: #10263e;
  --navy-800: #173653;
  --navy-700: #204866;
  --red-600: #d8322c;
  --red-500: #e34239;
  --gold-500: #dba843;
  --cream: #f5f2ed;
  --paper: #ffffff;
  --ink: #10263e;
  --muted: #647181;
  --line: rgba(16, 38, 62, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(11, 27, 45, 0.14);
  --container: min(1180px, calc(100vw - 48px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh"] body {
  font-family: "Noto Sans SC", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--red-600);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(11, 27, 45, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition);
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red-500);
  content: "";
  transition: width var(--transition);
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.is-active {
  color: white;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown-toggle.is-active::after {
  width: 100%;
}

.nav-dropdown {
  position: static;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-dropdown-toggle span[aria-hidden] {
  color: var(--red-500);
  font-size: 18px;
  font-weight: 500;
  line-height: 0.8;
  transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-toggle span[aria-hidden] {
  transform: rotate(45deg);
}

.solutions-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  display: grid;
  visibility: hidden;
  width: min(920px, calc(100vw - 48px));
  padding: 30px;
  color: white;
  background: rgba(11, 27, 45, 0.985);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown.is-open .solutions-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.solutions-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 20px;
}

.solutions-menu-top p {
  margin: 0;
  color: white;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.solutions-menu-top a {
  color: #f05a50;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.solutions-menu-grid a {
  display: grid;
  min-height: 100px;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
  transition: color var(--transition), background var(--transition);
}

.solutions-menu-grid a:hover,
.solutions-menu-grid a:focus-visible {
  color: white;
  background: var(--navy-800);
}

.solutions-menu-grid b {
  color: var(--red-500);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.solutions-menu-grid span {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.company-menu-grid {
  grid-template-columns: repeat(5, 1fr);
}

.insight-menu-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ============================================================
   Premium dropdown menus (Our Company, Business Solutions, Insight)
   ============================================================ */
.solutions-menu {
  width: min(960px, calc(100vw - 48px));
  padding: 32px 40px 40px;
  border: 1px solid rgba(229, 62, 62, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(35, 64, 96, 0.55) 0%, rgba(11, 27, 45, 0) 55%),
    linear-gradient(165deg, rgba(16, 38, 62, 0.98) 0%, rgba(9, 22, 37, 0.99) 100%);
  box-shadow:
    0 32px 64px rgba(6, 15, 26, 0.55),
    0 2px 0 rgba(229, 62, 62, 0.25) inset,
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  overflow: hidden;
}

/* Subtle red top accent line */
.solutions-menu::before {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(229, 62, 62, 0) 0%, rgba(229, 62, 62, 0.85) 50%, rgba(229, 62, 62, 0) 100%);
  content: "";
}

.solutions-menu .solutions-menu-top {
  align-items: center;
  border-bottom: 1px solid rgba(229, 62, 62, 0.2);
  padding-bottom: 24px;
}

.solutions-menu .solutions-menu-top p {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding-left: 16px;
}

.solutions-menu .solutions-menu-top p::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #e53e3e, var(--red-600));
  content: "";
}

.solutions-menu .solutions-menu-top a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e53e3e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition), gap var(--transition);
}

.solutions-menu .solutions-menu-top a:hover {
  color: #f06464;
  gap: 12px;
}

/* Grid: hairline dividers instead of heavy boxes */
.solutions-menu .solutions-menu-grid {
  margin-top: 24px;
  gap: 0;
  background: transparent;
}

.solutions-menu .solutions-menu-grid a {
  position: relative;
  min-height: 128px;
  align-content: flex-start;
  gap: 16px;
  padding: 8px 24px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-radius: 8px;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

/* Vertical hairline divider between columns.
   Default (3-col Business Solutions): skip first item of each row. */
.solutions-menu .solutions-menu-grid a:not(:nth-child(3n + 1))::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
  content: "";
}

/* 5-col grids (Company & Insight): skip first item of each row of 5. */
.solutions-menu .company-menu-grid a:not(:nth-child(3n + 1))::before,
.solutions-menu .insight-menu-grid a:not(:nth-child(3n + 1))::before {
  content: none;
}

.solutions-menu .company-menu-grid a:not(:nth-child(5n + 1))::before,
.solutions-menu .insight-menu-grid a:not(:nth-child(5n + 1))::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
  content: "";
}

.solutions-menu .solutions-menu-grid a:hover,
.solutions-menu .solutions-menu-grid a:focus-visible {
  background: rgba(229, 62, 62, 0.08);
  color: white;
  transform: translateY(-4px);
}

/* Numbers: red, with a refined underline that grows on hover */
.solutions-menu .solutions-menu-grid b {
  position: relative;
  display: inline-block;
  color: #e53e3e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding-bottom: 10px;
}

.solutions-menu .solutions-menu-grid b::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 2px;
  background: #e53e3e;
  content: "";
  transition: width var(--transition);
}

.solutions-menu .solutions-menu-grid a:hover b::after,
.solutions-menu .solutions-menu-grid a:focus-visible b::after {
  width: 32px;
}

.solutions-menu .solutions-menu-grid span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Staggered, refined entrance for each item */
.nav-dropdown.is-open .solutions-menu .solutions-menu-grid a {
  animation: companyItemIn 420ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.solutions-menu .solutions-menu-grid a:nth-child(1) { animation-delay: 60ms; }
.solutions-menu .solutions-menu-grid a:nth-child(2) { animation-delay: 110ms; }
.solutions-menu .solutions-menu-grid a:nth-child(3) { animation-delay: 160ms; }
.solutions-menu .solutions-menu-grid a:nth-child(4) { animation-delay: 210ms; }
.solutions-menu .solutions-menu-grid a:nth-child(5) { animation-delay: 260ms; }

@keyframes companyItemIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown.is-open .solutions-menu .solutions-menu-grid a {
    animation: none;
  }
}

.header-cta {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--red-500);
  background: var(--red-600);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch button {
  border: 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.lang-switch button:hover,
.lang-switch button:focus-visible {
  color: #fff;
}

.lang-switch button[aria-pressed="true"] {
  color: #fff;
  background: #e53e3e;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

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

.hero-media {
  background: url("assets/images/banner.jpg") center / cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 27, 45, 0.98) 5%, rgba(11, 27, 45, 0.85) 46%, rgba(11, 27, 45, 0.48) 100%),
    linear-gradient(0deg, rgba(11, 27, 45, 0.9), transparent 55%);
}

.hero-grid {
  opacity: 0.5;
  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: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--red-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span:not([data-i18n]) {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #f05a50;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(56px, 7.2vw, 96px);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

h1 em {
  display: block;
  color: #f05a50;
  font-family: Georgia, serif;
  font-size: 0.84em;
  font-weight: 400;
  letter-spacing: -0.07em;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

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

.button-primary {
  color: white;
  background: var(--red-600);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b92420;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--line-light);
  background: rgba(11, 27, 45, 0.55);
  backdrop-filter: blur(10px);
}

.hero-bottom-inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.35;
}

.hero-metrics {
  display: flex;
  align-self: stretch;
}

.hero-metrics div {
  display: grid;
  min-width: 176px;
  align-content: center;
  gap: 2px;
  border-left: 1px solid var(--line-light);
  padding: 0 26px;
}

.hero-metrics strong {
  color: white;
  font-size: 32px;
  line-height: 1;
}

.hero-metrics strong::after {
  color: var(--red-500);
  content: "+";
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: end;
}

.intro-copy .lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.intro-copy p:not(.lead) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(216, 50, 44, 0.3);
  padding-bottom: 4px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--transition), gap var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  gap: 18px;
  border-color: var(--red-600);
}

.intro-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(230px, 0.8fr);
  margin-top: 76px;
}

.intro-image {
  height: 440px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px;
  color: white;
  background: var(--red-600);
}

.intro-card strong {
  font-size: 74px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.intro-card span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.intro-statement {
  position: absolute;
  bottom: -36px;
  left: 46px;
  padding: 19px 24px;
  background: white;
  box-shadow: var(--shadow);
}

.intro-statement p {
  margin-bottom: 3px;
  color: var(--red-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-statement strong {
  font-size: 16px;
  line-height: 1.35;
}

.services {
  color: white;
  background: var(--navy-900);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  column-gap: 48px;
}

.services-heading .eyebrow {
  grid-column: 1 / -1;
}

.services-heading p:last-child {
  color: rgba(255, 255, 255, 0.57);
}

.service-list {
  margin-top: 58px;
}

.service-row {
  display: grid;
  grid-template-columns: 62px minmax(240px, 0.9fr) minmax(280px, 1fr) 52px;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line-light);
  padding: 26px 0;
  transition: background var(--transition), padding var(--transition);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.service-number {
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--red-500);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-row h3,
.service-row p {
  margin-bottom: 0;
}

.service-row p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.service-row > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 19px;
  transition: border-color var(--transition), background var(--transition);
}

.service-row > a:hover,
.service-row > a:focus-visible {
  border-color: var(--red-500);
  background: var(--red-600);
}

.feature {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  align-items: stretch;
  gap: 0;
}

.feature-image {
  min-height: 620px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  padding: 68px 0 54px 64px;
}

.feature-content p:not(.eyebrow) {
  color: var(--muted);
}

.feature-points {
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.feature-points div {
  display: flex;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.feature-points div:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-points strong {
  color: var(--red-600);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.feature-points span {
  color: var(--muted);
  font-size: 15px;
}

.feature-points b {
  color: var(--ink);
}

.numbers {
  color: white;
  background: var(--navy-950);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
}

.number-card {
  min-height: 186px;
  border-left: 1px solid var(--line-light);
  padding: 8px 30px;
}

.number-card:last-child {
  border-right: 1px solid var(--line-light);
}

.number-card strong {
  color: white;
  font-size: clamp(52px, 6vw, 78px);
  letter-spacing: -0.09em;
  line-height: 1;
}

.number-card strong::first-letter {
  color: var(--red-500);
}

.number-card p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.clients {
  background: white;
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 44px;
  align-items: end;
}

.clients-heading > p {
  color: var(--muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.logo-grid div {
  display: grid;
  height: 150px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.logo-grid img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.logo-grid div:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1fr);
  gap: 74px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
}

.process-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--red-600);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy-900);
}

.contact-media {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, var(--navy-900) 18%, rgba(16, 38, 62, 0.74)),
    url("assets/images/process-solution.jpg") center 48% / cover;
  filter: saturate(0);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: center;
  min-height: 430px;
  padding: 82px 0;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-email {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.contact-email:hover,
.contact-email:focus-visible {
  border-color: var(--red-500);
  background: rgba(216, 50, 44, 0.2);
  transform: translateY(-4px);
}

.contact-email span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-email strong {
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.4;
}

.contact-email b {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--red-500);
  font-size: 26px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #081727;
}

.solutions-hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

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

.solutions-hero-media {
  background: url("assets/images/service-permit.jpg") center / cover;
}

.solutions-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 27, 45, 0.98) 6%, rgba(11, 27, 45, 0.82) 52%, rgba(11, 27, 45, 0.44)),
    linear-gradient(0deg, rgba(11, 27, 45, 0.92), transparent 70%);
}

.solutions-hero-content {
  position: relative;
  z-index: 1;
  padding: 168px 0 160px;
}

.solutions-hero h1 {
  max-width: 960px;
}

.solutions-hero-content > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.solutions-hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
}

.solutions-hero-bottom p,
.solutions-hero-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-hero-bottom a {
  display: flex;
  gap: 14px;
  align-items: center;
  color: white;
}

.solutions-intro {
  background: var(--cream);
}

.solutions-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
}

.solutions-intro-copy .lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
}

.solutions-intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.capability-index {
  padding: 110px 0 0;
  color: white;
  background: var(--navy-900);
}

.capability-index h2 {
  margin-bottom: 54px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.capability-card {
  position: relative;
  display: grid;
  min-height: 310px;
  align-content: start;
  border-right: 1px solid var(--line-light);
  padding: 28px 22px 72px;
  transition: background var(--transition);
}

.capability-card:hover,
.capability-card:focus-visible {
  background: var(--red-600);
}

.capability-card > span {
  color: #f05a50;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  transition: color var(--transition);
}

.capability-card:hover > span,
.capability-card:focus-visible > span {
  color: white;
}

.capability-card h3 {
  margin: 28px 0 14px;
  color: white;
  font-size: 22px;
}

.capability-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.capability-card:hover p,
.capability-card:focus-visible p {
  color: rgba(255, 255, 255, 0.84);
}

.capability-card b {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: white;
  font-size: 22px;
}

.solution-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 630px;
  background: var(--cream);
}

.solution-detail-reverse .solution-detail-image {
  order: 2;
}

.solution-detail-image {
  overflow: hidden;
}

.solution-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-detail-copy {
  max-width: 670px;
  align-self: center;
  padding: 74px 64px;
}

.solution-number {
  margin-bottom: 20px;
  color: var(--red-600);
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.solution-detail-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.solution-detail-copy > p:not(.eyebrow, .solution-number) {
  color: var(--muted);
}

.solution-detail-copy ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 30px;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.solution-detail-copy li {
  position: relative;
  padding-left: 20px;
}

.solution-detail-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--red-600);
  content: "";
}

.solution-band {
  padding: 110px 0;
  color: white;
  background: var(--navy-950);
}

.solution-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 64px;
}

.solution-band-items article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line-light);
  padding: 28px 0;
}

.solution-band-items article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.solution-band-items span {
  color: var(--red-500);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.solution-band-items h3 {
  color: white;
}

.solution-band-items p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.solutions-process {
  background: white;
}

.solutions-process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.solutions-process-heading h2 {
  max-width: 720px;
}

.solutions-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solutions-process-grid article {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.solutions-process-grid span {
  color: var(--red-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.solutions-process-grid h3 {
  margin: 38px 0 10px;
  color: var(--ink);
}

.solutions-process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.company-hero {
  position: relative;
  display: flex;
  min-height: 740px;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

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

.company-hero-media {
  background: url("assets/images/company-hero-premium.png") center / cover;
}

.company-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 27, 45, 0.98) 4%, rgba(11, 27, 45, 0.85) 54%, rgba(11, 27, 45, 0.48)),
    linear-gradient(0deg, rgba(11, 27, 45, 0.88), transparent 72%);
}

.company-hero-content {
  position: relative;
  z-index: 1;
  padding: 174px 0 156px;
}

.company-hero h1 {
  max-width: 850px;
}

.company-hero-content > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.company-hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
}

.company-hero-bottom p,
.company-hero-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-hero-bottom a {
  display: flex;
  gap: 14px;
  align-items: center;
  color: white;
}

.company-about,
.company-journey {
  background: var(--cream);
}

.company-about-grid,
.company-journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 70px;
  align-items: end;
}

.company-about-copy .lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
}

.company-about-copy > p:not(.lead),
.company-journey-intro > p:last-child {
  color: var(--muted);
}

.company-about-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  min-height: 450px;
  margin-top: 68px;
}

.company-about-image {
  overflow: hidden;
}

.company-about-image img,
.company-leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-about-panel {
  display: grid;
  align-content: center;
  padding: 42px;
  color: white;
  background: var(--red-600);
}

.company-about-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-about-panel h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.company-about-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.company-values {
  color: white;
  background: var(--navy-900);
}

.company-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.company-values-grid article {
  min-height: 270px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 28px;
}

.company-values-grid span {
  color: var(--red-500);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.company-values-grid h3 {
  margin: 56px 0 14px;
  color: white;
  font-size: 31px;
}

.company-values-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.company-journey-grid {
  align-items: start;
}

.company-timeline article {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.company-timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.company-timeline strong {
  color: var(--red-600);
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.company-timeline h3 {
  margin-bottom: 8px;
}

.company-timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.company-numbers {
  color: white;
  background: var(--navy-950);
}

.company-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.company-number {
  min-height: 210px;
  border-left: 1px solid var(--line-light);
  padding: 40px 26px;
}

.company-number:last-child {
  border-right: 1px solid var(--line-light);
}

.company-number strong {
  color: white;
  font-size: clamp(54px, 6vw, 78px);
  letter-spacing: -0.09em;
  line-height: 1;
}

.company-number strong::first-letter {
  color: var(--red-500);
}

.company-number p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-leadership {
  background: white;
}

.company-leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: stretch;
}

.company-leadership-image {
  min-height: 480px;
  overflow: hidden;
}

.company-leadership-copy {
  align-self: center;
}

.company-leadership-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.home-capabilities {
  background: var(--cream);
}

.home-capabilities-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 64px;
  align-items: end;
}

.home-capabilities-heading p {
  color: var(--muted);
}

.home-capabilities-heading .text-link {
  margin-top: 8px;
}

.home-capabilities-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.92fr);
  min-height: 570px;
  margin-top: 58px;
}

.home-capabilities-image {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.home-capabilities-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 27, 45, 0.88), transparent 56%);
  content: "";
}

.home-capabilities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-capabilities-image > div {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.home-capabilities-image span {
  color: #f05a50;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-capabilities-image strong {
  color: white;
  font-size: 35px;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.home-capabilities-list {
  display: grid;
  background: var(--navy-900);
}

.home-capability {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding: 20px 26px;
  color: white;
  transition: background var(--transition), padding var(--transition);
}

.home-capability:last-child {
  border-bottom: 0;
}

.home-capability:hover,
.home-capability:focus-visible {
  padding-left: 32px;
  background: var(--red-600);
}

.home-capability b {
  color: var(--red-500);
  font-size: 12px;
  letter-spacing: 0.14em;
  transition: color var(--transition);
}

.home-capability:hover b,
.home-capability:focus-visible b {
  color: white;
}

.home-capability h3 {
  margin-bottom: 0;
  color: white;
  font-size: 21px;
}

.home-capability span {
  color: white;
  font-size: 19px;
  text-align: right;
}

.home-company {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  min-height: 650px;
  background: white;
}

.home-company-image {
  overflow: hidden;
}

.home-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-company-copy {
  align-self: center;
  max-width: 680px;
  padding: 74px 68px;
}

.home-company-copy .home-company-lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
}

.home-company-copy > p:not(.eyebrow, .home-company-lead) {
  color: var(--muted);
}

.home-values {
  color: white;
  background: var(--navy-900);
}

.home-values-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.08fr) repeat(3, minmax(0, 0.72fr));
  border-left: 1px solid var(--line-light);
}

.home-values-title,
.home-values article {
  min-height: 270px;
  border-right: 1px solid var(--line-light);
  padding: 30px;
}

.home-values-title {
  display: grid;
  align-content: center;
}

.home-values-title h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(38px, 4vw, 56px);
}

.home-values article {
  display: grid;
  align-content: end;
}

.home-values article span {
  align-self: start;
  color: var(--red-500);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.home-values article h3 {
  margin: 70px 0 10px;
  color: white;
  font-size: 25px;
}

.home-values article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.home-numbers {
  padding: 110px 0 0;
  background: var(--cream);
}

.home-numbers-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.home-numbers-heading h2 {
  max-width: 850px;
}

.home-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-number {
  min-height: 196px;
  border-right: 1px solid var(--line);
  padding: 32px 24px;
}

.home-number strong {
  color: var(--ink);
  font-size: clamp(54px, 6vw, 76px);
  letter-spacing: -0.09em;
  line-height: 1;
}

.home-number strong::first-letter {
  color: var(--red-600);
}

.home-number p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

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

.insight-hero-media {
  background: url("assets/images/banner.jpg") center / cover;
}

.insight-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 27, 45, 0.98) 4%, rgba(11, 27, 45, 0.84) 54%, rgba(11, 27, 45, 0.48)),
    linear-gradient(0deg, rgba(11, 27, 45, 0.9), transparent 70%);
}

.insight-hero-content {
  position: relative;
  z-index: 1;
  padding: 168px 0 150px;
}

.insight-hero h1 {
  max-width: 830px;
}

.insight-hero-content > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.insight-hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
}

.insight-hero-bottom p,
.insight-hero-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-hero-bottom a {
  display: flex;
  gap: 14px;
  align-items: center;
  color: white;
}

.insight-featured,
.insight-articles {
  background: var(--cream);
}

.insight-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 60px;
  align-items: end;
}

.insight-section-heading > p {
  color: var(--muted);
}

.insight-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.58fr);
  gap: 1px;
  margin-top: 52px;
  background: rgba(16, 38, 62, 0.14);
}

.insight-feature-main {
  background: white;
}

.insight-feature-image {
  height: 390px;
  overflow: hidden;
}

.insight-feature-image img,
.insight-article-card img,
.insight-resources-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-feature-copy {
  padding: 32px;
}

.insight-kicker {
  margin-bottom: 12px;
  color: var(--red-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-feature-copy h3 {
  max-width: 710px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 32px;
}

.insight-feature-copy > p:not(.insight-kicker) {
  color: var(--muted);
}

.insight-feature-side {
  display: grid;
  gap: 1px;
}

.insight-mini-card {
  display: grid;
  align-content: space-between;
  padding: 30px;
  background: white;
}

.insight-mini-card h3 {
  color: var(--ink);
  font-size: 23px;
}

.insight-mini-card a {
  color: var(--red-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-topics {
  color: white;
  background: var(--navy-900);
}

.insight-topics-grid {
  display: grid;
  grid-template-columns: minmax(290px, 1.05fr) repeat(3, minmax(0, 0.72fr));
  border-left: 1px solid var(--line-light);
}

.insight-topics-intro,
.insight-topic {
  min-height: 260px;
  border-right: 1px solid var(--line-light);
  padding: 28px;
}

.insight-topics-intro {
  display: grid;
  align-content: center;
}

.insight-topics-intro h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(38px, 4vw, 54px);
}

.insight-topic {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  color: white;
  transition: background var(--transition);
}

.insight-topic:hover,
.insight-topic:focus-visible {
  background: var(--red-600);
}

.insight-topic b {
  color: var(--red-500);
  font-size: 12px;
  letter-spacing: 0.14em;
  transition: color var(--transition);
}

.insight-topic:hover b,
.insight-topic:focus-visible b {
  color: white;
}

.insight-topic span {
  align-self: end;
  max-width: 160px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.insight-topic i {
  align-self: end;
  font-size: 18px;
  font-style: normal;
}

.insight-updates {
  background: white;
}

.insight-updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 68px;
}

.insight-updates-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.insight-update-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.insight-update-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.insight-update-list span {
  grid-column: 1 / -1;
  margin-bottom: 9px;
  color: var(--red-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-update-list h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 22px;
}

.insight-update-list a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--red-600);
  transition: color var(--transition), background var(--transition);
}

.insight-update-list a:hover,
.insight-update-list a:focus-visible {
  color: white;
  background: var(--red-600);
}

.insight-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 46px;
  background: rgba(16, 38, 62, 0.14);
}

.insight-article-card {
  background: white;
}

.insight-article-card img {
  height: 230px;
}

.insight-article-card > div {
  padding: 24px;
}

.insight-article-card h3 {
  color: var(--ink);
  font-size: 23px;
}

.insight-article-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.insight-resources {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: 560px;
  background: white;
}

.insight-resources-image {
  overflow: hidden;
}

.insight-resources-copy {
  align-self: center;
  max-width: 680px;
  padding: 68px;
}

.insight-resources-copy > p:not(.eyebrow) {
  color: var(--muted);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-loader-grid,
.social-connect-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-loader-grid {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.07) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(255, 255, 255, 0.07) 50%, transparent 50.1%);
  background-size: 180px 180px;
  opacity: 0.8;
}

.site-loader-grid::after {
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(255, 255, 255, 0.025),
    0 0 0 16vw rgba(255, 255, 255, 0.025);
  content: "";
}

.site-loader-inner {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: 100vh;
  margin-inline: auto;
  padding: 48px 0 42px;
}

.site-loader-brand {
  display: flex;
  gap: 13px;
  align-items: center;
  align-self: start;
}

.site-loader-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.site-loader-brand strong,
.site-loader-brand span {
  display: block;
}

.site-loader-brand strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.site-loader-brand span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-loader-message {
  align-self: center;
}

.site-loader-message p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-loader-message h2 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(70px, 8vw, 122px);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.site-loader-message em {
  color: var(--red-500);
  font-family: Georgia, serif;
  font-weight: 400;
}

.site-loader-progress {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) 42px;
  gap: 18px;
  align-items: center;
  align-self: end;
}

.site-loader-progress span,
.site-loader-progress b {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-loader-progress div {
  overflow: hidden;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.site-loader-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-500);
  transform: translateX(-100%);
  animation: loader-progress 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-loader-progress b {
  color: var(--red-500);
  text-align: right;
}

@keyframes loader-progress {
  to {
    transform: translateX(0);
  }
}

.testimonials {
  background: var(--cream);
}

.testimonials-heading,
.home-team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 68px;
  align-items: end;
}

.testimonials-heading h2,
.home-team-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.testimonials-heading > p,
.home-team-heading > div:last-child > p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
}

.testimonial-card {
  display: flex;
  min-height: 348px;
  flex-direction: column;
  padding: 30px;
  background: white;
}

.testimonial-label {
  margin: 0 0 28px;
  color: var(--red-600);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.36;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 14px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 12px;
}

.home-team {
  color: white;
  background: var(--navy-950);
}

.home-team-heading > div:last-child > p {
  color: rgba(255, 255, 255, 0.56);
}

.home-team-heading .text-link {
  margin-top: 22px;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.16);
}

.home-team-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--navy-900);
}

.home-team-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 27, 45, 0.96), rgba(11, 27, 45, 0.04) 65%);
  content: "";
}

.home-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 600ms ease, filter 600ms ease;
}

.home-team-card:hover img {
  filter: saturate(1);
  transform: scale(1.06);
}

.home-team-card div {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  z-index: 1;
}

.home-team-card span {
  color: var(--red-500);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.home-team-card h3 {
  margin: 8px 0 0;
  color: white;
  font-size: 23px;
  line-height: 1.12;
}

.social-connect {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: white;
  background: linear-gradient(125deg, var(--red-600) 0%, #b6292b 30%, var(--navy-800) 100%);
}

.social-connect-texture {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.17), transparent 33%),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.07) 50%, transparent 50.2%);
  background-size: auto, 92px 92px;
  opacity: 0.7;
}

.social-connect-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.4fr);
  gap: 80px;
  align-items: end;
}

.social-connect h2 {
  max-width: 760px;
  margin: 12px 0 24px;
  color: white;
  font-size: clamp(72px, 8vw, 116px);
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.social-connect-copy > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.45;
}

.social-connect-action {
  display: grid;
  gap: 34px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--red-600);
  background: white;
  transition: color var(--transition), transform var(--transition), background var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: white;
  background: var(--navy-950);
  transform: translateY(-5px);
}

.social-links svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-contact-button {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  padding: 0 28px 0 30px;
  color: var(--navy-950);
  background: white;
  font-size: 18px;
  font-weight: 850;
  transition: background var(--transition), transform var(--transition);
}

.social-contact-button:hover,
.social-contact-button:focus-visible {
  background: var(--cream);
  transform: translateY(-4px);
}

.social-contact-button span {
  font-size: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1.1fr;
  gap: 42px;
  padding: 74px 0 54px;
}

.footer-brand p,
.footer-grid p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 22px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    font-size: 11px;
  }

  .header-cta {
    display: none;
  }

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

  .social-connect-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 48px;
  }

  .service-row {
    grid-template-columns: 54px minmax(230px, 0.9fr) minmax(240px, 1fr) 48px;
    gap: 18px;
  }

  .feature-content {
    padding-left: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    margin-left: auto;
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    overflow: hidden auto;
    max-height: 0;
    margin-left: 0;
    padding-inline: 18px;
    background: rgba(11, 27, 45, 0.98);
    transition: max-height 320ms ease, padding var(--transition);
  }

  .main-nav.is-open {
    max-height: calc(100vh - 72px);
    padding-block: 10px 18px;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    text-align: left;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .lang-switch {
    justify-self: start;
    margin-top: 16px;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .solutions-menu {
    position: static;
    display: grid;
    visibility: visible;
    width: 100%;
    max-height: 0;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    transform: none;
    transition: max-height 320ms ease, padding var(--transition);
  }

  .nav-dropdown.is-open .solutions-menu {
    max-height: 540px;
    padding: 16px 0 4px;
    transform: none;
  }

  .solutions-menu-top {
    display: grid;
    gap: 8px;
    padding-bottom: 14px;
  }

  .solutions-menu-top p {
    font-size: 18px;
  }

  .solutions-menu-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-top: 14px;
  }

  .solutions-menu-grid a {
    display: flex;
    min-height: auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
  }

  /* Premium dropdowns collapse inline (flat) on mobile */
  .solutions-menu {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-dropdown.is-open .solutions-menu {
    padding: 16px 0 4px;
  }

  .solutions-menu::before {
    display: none;
  }

  .solutions-menu .solutions-menu-grid {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .solutions-menu .solutions-menu-grid a {
    display: flex;
    min-height: auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    transform: none;
  }

  .solutions-menu .solutions-menu-grid a:hover,
  .solutions-menu .solutions-menu-grid a:focus-visible {
    transform: none;
  }

  .solutions-menu .solutions-menu-grid a::before {
    display: none;
  }

  .solutions-menu .solutions-menu-grid b {
    padding-bottom: 0;
  }

  .solutions-menu .solutions-menu-grid b::after {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding: 122px 0 184px;
  }

  h1 {
    font-size: clamp(54px, 14vw, 82px);
  }

  h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

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

  .hero-bottom-inner {
    display: block;
  }

  .hero-bottom p {
    display: none;
  }

  .hero-metrics {
    width: 100%;
  }

  .hero-metrics div {
    min-width: 0;
    flex: 1;
    padding: 18px 11px;
  }

  .hero-metrics div:last-child {
    border-right: 1px solid var(--line-light);
  }

  .hero-metrics strong {
    font-size: 24px;
  }

  .hero-metrics span {
    font-size: 8px;
    line-height: 1.3;
  }

  .intro-grid,
  .services-heading,
  .feature-grid,
  .clients-heading,
  .process-grid,
  .contact-grid {
    display: block;
  }

  .solutions-hero {
    min-height: 680px;
  }

  .company-hero {
    min-height: 680px;
  }

  .company-hero-content {
    padding: 136px 0 132px;
  }

  .company-hero-content > p:last-child {
    font-size: 16px;
  }

  .company-hero-bottom {
    min-height: 70px;
  }

  .company-about-grid,
  .company-journey-grid,
  .company-leadership-grid {
    display: block;
  }

  .company-about-visual {
    display: block;
    min-height: 0;
    margin-top: 46px;
  }

  .company-about-image {
    height: 310px;
  }

  .company-about-panel {
    padding: 28px;
  }

  .company-values-grid,
  .company-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-values-grid article {
    min-height: 230px;
    padding: 22px;
  }

  .company-values-grid h3 {
    margin-top: 34px;
  }

  .company-timeline {
    margin-top: 36px;
  }

  .company-timeline article {
    grid-template-columns: 86px 1fr;
    gap: 16px;
  }

  .company-number {
    min-height: 150px;
    border-top: 1px solid var(--line-light);
    padding: 24px 18px;
  }

  .company-number:nth-child(2),
  .company-number:nth-child(4) {
    border-right: 1px solid var(--line-light);
  }

  .company-number strong {
    font-size: 54px;
  }

  .company-leadership-image {
    min-height: 310px;
  }

  .company-leadership-copy {
    padding-top: 38px;
  }

  .home-capabilities-heading,
  .home-capabilities-layout,
  .home-company,
  .home-numbers-heading {
    display: block;
  }

  .home-capabilities-layout {
    min-height: 0;
    margin-top: 38px;
  }

  .home-capabilities-image {
    min-height: 330px;
  }

  .home-capabilities-image > div {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .home-capabilities-image strong {
    font-size: 30px;
  }

  .home-capability {
    min-height: 88px;
    padding: 16px 18px;
  }

  .home-capability:hover,
  .home-capability:focus-visible {
    padding-left: 22px;
  }

  .home-capability h3 {
    font-size: 18px;
  }

  .home-company {
    min-height: 0;
  }

  .home-company-image {
    height: 330px;
  }

  .home-company-copy {
    padding: 54px 18px 64px;
  }

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

  .home-values-title,
  .home-values article {
    min-height: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 26px 22px;
  }

  .home-values-title {
    min-height: 210px;
  }

  .home-values article {
    display: block;
  }

  .home-values article h3 {
    margin: 30px 0 8px;
  }

  .home-numbers {
    padding-top: 78px;
  }

  .home-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .home-number {
    min-height: 148px;
    padding: 22px 16px;
  }

  .home-number strong {
    font-size: 53px;
  }

  .site-loader-inner {
    padding: 28px 0 26px;
  }

  .site-loader-message h2 {
    max-width: 560px;
    font-size: clamp(62px, 17vw, 94px);
  }

  .site-loader-progress {
    grid-template-columns: 1fr 38px;
    gap: 12px;
  }

  .site-loader-progress span {
    grid-column: 1 / -1;
  }

  .testimonials-heading,
  .home-team-heading,
  .social-connect-grid {
    display: block;
  }

  .testimonials-heading > p,
  .home-team-heading > div:last-child {
    margin-top: 20px;
  }

  .testimonial-grid {
    display: block;
    margin-top: 34px;
    background: transparent;
  }

  .testimonial-card {
    min-height: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-card blockquote {
    font-size: 21px;
  }

  .testimonial-card footer {
    margin-top: 30px;
  }

  .home-team-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .home-team-card {
    min-height: 320px;
  }

  .social-connect {
    padding: 82px 0;
  }

  .social-connect h2 {
    margin-bottom: 22px;
    font-size: clamp(62px, 17vw, 94px);
  }

  .social-connect-copy > p:last-child {
    font-size: 17px;
  }

  .social-connect-action {
    gap: 24px;
    margin-top: 32px;
  }

  .social-links a {
    width: 61px;
    height: 61px;
  }

  .insight-hero {
    min-height: 650px;
  }

  .insight-hero-content {
    padding: 136px 0 128px;
  }

  .insight-hero-content > p:last-child {
    font-size: 16px;
  }

  .insight-hero-bottom {
    min-height: 70px;
  }

  .insight-section-heading,
  .insight-feature-layout,
  .insight-updates-grid,
  .insight-resources {
    display: block;
  }

  .insight-feature-layout {
    margin-top: 34px;
  }

  .insight-feature-image {
    height: 280px;
  }

  .insight-feature-copy,
  .insight-mini-card {
    padding: 22px;
  }

  .insight-feature-copy h3 {
    font-size: 27px;
  }

  .insight-mini-card {
    min-height: 200px;
  }

  .insight-topics-grid {
    grid-template-columns: 1fr;
  }

  .insight-topics-intro,
  .insight-topic {
    min-height: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 24px 22px;
  }

  .insight-topics-intro {
    min-height: 210px;
  }

  .insight-topic {
    min-height: 126px;
  }

  .insight-update-list {
    margin-top: 32px;
  }

  .insight-update-list h3 {
    font-size: 19px;
  }

  .insight-article-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .insight-resources {
    min-height: 0;
  }

  .insight-resources-image {
    height: 310px;
  }

  .insight-resources-copy {
    padding: 52px 18px 64px;
  }

  .solutions-hero-content {
    padding: 136px 0 132px;
  }

  .solutions-hero-content > p:last-child {
    font-size: 16px;
  }

  .solutions-hero-bottom {
    min-height: 70px;
  }

  .solutions-intro-grid,
  .solution-band-grid {
    display: block;
  }

  .capability-index {
    padding-top: 80px;
  }

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

  .capability-card {
    min-height: 184px;
    padding: 20px 60px 20px 20px;
  }

  .capability-card h3 {
    margin: 20px 0 8px;
  }

  .capability-card b {
    top: 50%;
    right: 20px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .solution-detail {
    display: block;
    min-height: 0;
  }

  .solution-detail-reverse .solution-detail-image {
    order: initial;
  }

  .solution-detail-image {
    height: 310px;
  }

  .solution-detail-copy {
    padding: 52px 18px 62px;
  }

  .solution-number {
    font-size: 62px;
  }

  .solution-band {
    padding: 82px 0;
  }

  .solution-band-items {
    margin-top: 34px;
  }

  .solution-band-items article {
    grid-template-columns: 56px 1fr;
  }

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

  .solutions-process-heading {
    display: block;
  }

  .intro-visual {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .intro-image {
    height: 320px;
  }

  .intro-card {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
  }

  .intro-card strong {
    font-size: 56px;
  }

  .intro-statement {
    right: 18px;
    bottom: -52px;
    left: 18px;
  }

  .service-list {
    margin-top: 38px;
  }

  .service-row {
    grid-template-columns: 42px 1fr 42px;
    gap: 12px;
    padding: 20px 0;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

  .service-main {
    gap: 12px;
  }

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

  .service-row h3 {
    font-size: 19px;
  }

  .feature-image {
    min-height: 350px;
  }

  .feature-content {
    padding: 42px 0 0;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .number-card {
    min-height: 145px;
    border-top: 1px solid var(--line-light);
    padding: 20px;
  }

  .number-card:nth-child(2),
  .number-card:nth-child(4) {
    border-right: 1px solid var(--line-light);
  }

  .number-card strong {
    font-size: 54px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }

  .logo-grid div {
    height: 118px;
  }

  .process-steps {
    margin-top: 42px;
  }

  .process-step {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }

  .contact-grid {
    min-height: 0;
    padding: 74px 0;
  }

  .contact-action {
    margin-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
    padding-top: 60px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    padding: 15px 0;
  }
}

@media (max-width: 460px) {
  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 750px;
  }

  h1 {
    font-size: 57px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .service-row {
    grid-template-columns: 32px 1fr;
  }

  .service-row > a {
    display: none;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-icon {
    display: none;
  }

  .contact-email {
    padding: 22px;
  }

  .contact-email strong {
    max-width: 220px;
    font-size: 15px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
