:root {
  --white: #f7f9fa;
  --paper: #ffffff;
  --graphite: #151a1e;
  --muted: #5b6670;
  --blue: #0b2d4d;
  --blue-2: #123d62;
  --green: #2e8b57;
  --amber: #c8a45d;
  --steel: #d8dee6;
  --line: #cbd3dc;
  --shadow: 0 18px 45px rgba(21, 26, 30, 0.12);
  --logo-blue: #1f5f97;
  --logo-blue-2: #2d75ad;
  --logo-steel: #8d98a3;
  --accent-rgb: 46, 139, 87;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.65;
}

.inner-page {
  --green: var(--logo-blue);
  --amber: var(--logo-steel);
  --blue-2: #17466f;
  --accent-rgb: 31, 95, 151;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(21, 26, 30, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: min(238px, calc(100vw - 128px));
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--green);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  line-height: 1;
  background: var(--paper);
  flex: none;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong,
.footer-brand span:last-child {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #263039;
  font-weight: 600;
  font-size: 14px;
}

.site-nav li.on a,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: #e8eef3;
  outline: none;
}

.site-nav .nav-cta {
  background: var(--blue);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--blue);
  border-radius: 6px;
  cursor: pointer;
}

.breadcrumb {
  background: #edf2f5;
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: #8a96a1;
}

.breadcrumb a {
  text-decoration: none;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
  padding: 80px 0 94px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
}

.hero h1,
.section-head h2,
.cta-band h2,
.not-found h1 {
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.04;
  margin: 0;
  color: var(--graphite);
}

.hero h1 {
  font-size: 60px;
  max-width: 680px;
  margin-top: 18px;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: #35414c;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue);
  outline: none;
}

.btn-outline {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-outline.light:hover,
.btn-outline.light:focus-visible {
  color: var(--blue);
  background: #fff;
}

.hero-visual {
  min-height: 520px;
  border: 1px solid rgba(11, 45, 77, 0.16);
  background-image: var(--hero-img);
  background-size: auto 112%;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: var(--blue);
  box-shadow: var(--shadow);
}

.engineering-full-hero {
  background-image:
    linear-gradient(90deg, rgba(247, 249, 250, 0.98) 0%, rgba(247, 249, 250, 0.92) 38%, rgba(247, 249, 250, 0.52) 62%, rgba(247, 249, 250, 0.08) 100%),
    var(--hero-img);
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}

.solutions-full-hero {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.industries-full-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  background-image: var(--hero-img);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: #eef2f5;
}

.contact-full-hero {
  min-height: 582px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f2f6f8;
}

.engineering-full-hero .hero-grid,
.solutions-full-hero .hero-grid {
  grid-template-columns: minmax(0, 860px);
  padding: 112px 0 120px;
}

.industries-full-hero .hero-grid {
  position: relative;
  z-index: 1;
  width: min(1740px, calc(100% - 96px));
  grid-template-columns: minmax(0, 575px);
  justify-content: start;
  min-height: 760px;
  padding: 92px 0 176px;
}

.contact-full-hero .hero-grid {
  width: min(1288px, 100%);
  grid-template-columns: minmax(0, 578px);
  justify-content: start;
  min-height: 582px;
  padding: 86px 0 78px;
}

.engineering-full-hero .hero-copy,
.solutions-full-hero .hero-copy {
  max-width: 860px;
}

.industries-full-hero .hero-copy {
  max-width: 575px;
}

.contact-full-hero .hero-copy {
  max-width: 472px;
  margin-left: clamp(40px, 7.6vw, 98px);
}

.solutions-full-hero .hero-copy {
  background: #fdfdfd;
  margin-left: clamp(-48px, -3.8vw, -12px);
  padding: 24px;
}

.engineering-full-hero h1,
.solutions-full-hero h1 {
  max-width: 860px;
}

.industries-full-hero h1 {
  max-width: 575px;
  color: #091018;
  line-height: 1.08;
}

.contact-full-hero h1 {
  max-width: 480px;
  color: #111820;
  font-size: 46px;
  line-height: 1.12;
  margin-top: 20px;
  white-space: pre-line;
}

.contact-full-hero h1::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 20px;
  background: #17466f;
}

.industries-full-hero .lead {
  max-width: 455px;
  color: #33414d;
  font-size: 18px;
  line-height: 1.66;
}

.contact-full-hero .lead {
  max-width: 455px;
  color: #35414c;
  font-size: 16px;
  line-height: 1.62;
  margin-top: 20px;
}

.contact-full-hero .hero-lead-extra {
  margin-top: 14px;
}

.industries-full-hero .hero-actions {
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.contact-full-hero .hero-actions {
  margin-top: 28px;
}

.industries-full-hero .btn {
  min-height: 58px;
}

.contact-full-hero .btn-primary {
  min-height: 44px;
  padding: 0 22px;
  background: #0b3560;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11, 45, 77, 0.14);
}

.contact-full-hero .btn-primary:hover,
.contact-full-hero .btn-primary:focus-visible {
  background: #082a4d;
}

.industries-full-hero .btn::after {
  content: "\2192";
  margin-left: 14px;
  font-size: 22px;
  line-height: 1;
}

.industries-full-hero .btn-primary {
  width: 292px;
  padding: 0 20px;
  background: #17466f;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(11, 45, 77, 0.18);
}

.industries-full-hero .btn-primary:hover,
.industries-full-hero .btn-primary:focus-visible {
  background: #0b2d4d;
}

.industries-full-hero .btn-outline {
  min-width: 0;
  padding: 0;
  color: #17466f;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.industries-full-hero .btn-outline:hover,
.industries-full-hero .btn-outline:focus-visible {
  color: #0b2d4d;
  background: transparent;
}

.engineering-full-hero .hero-visual,
.solutions-full-hero .hero-visual,
.industries-full-hero .hero-visual,
.contact-full-hero .hero-visual {
  display: none;
}

.industries-support-section {
  padding: 112px 0 126px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 95, 151, 0.08) 0, rgba(31, 95, 151, 0) 28%),
    linear-gradient(180deg, #f9fbfc 0%, #f4f7f9 100%);
}

.industries-support-section .container {
  width: min(1280px, calc(100% - 80px));
}

.industries-support-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.industries-support-head h2 {
  max-width: 820px;
  color: #101820;
  font-size: 48px;
  line-height: 1.08;
}

.industries-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.industries-support-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4eb;
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(11, 45, 77, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industries-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 151, 0.34);
  box-shadow: 0 24px 44px rgba(11, 45, 77, 0.14);
}

.industries-support-media {
  height: 174px;
  overflow: hidden;
  background: #dbe3ea;
}

.industries-support-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.4s ease;
}

.industries-support-card:hover .industries-support-media img {
  transform: scale(1.04);
}

.industries-support-body {
  position: relative;
  min-height: 196px;
  padding: 58px 24px 26px;
}

.industries-support-icon {
  position: absolute;
  top: -33px;
  left: 24px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent);
  background: #f3f8fb;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(11, 45, 77, 0.13);
}

.industries-support-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.industries-support-arrow {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f5f97;
  border: 1px solid rgba(31, 95, 151, 0.58);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.industries-support-card h3 {
  max-width: calc(100% - 38px);
  margin: 0;
  color: #101820;
  font-size: 24px;
  line-height: 1.16;
}

.industries-support-card p {
  margin: 12px 0 0;
  color: #56626d;
  font-size: 17px;
  line-height: 1.52;
}

.section.industries-challenges-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0 126px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 42, 72, 0.97) 0%, rgba(3, 27, 48, 0.98) 100%),
    linear-gradient(90deg, #062846 0%, #031d35 100%);
}

.industries-challenges-section::before,
.industries-challenges-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.industries-challenges-section::before {
  top: -74px;
  right: -58px;
  width: 660px;
  height: 360px;
  opacity: 0.28;
  background:
    radial-gradient(circle at 55% 42%, transparent 0 72px, rgba(98, 176, 239, 0.72) 74px 76px, transparent 78px),
    radial-gradient(circle at 55% 42%, transparent 0 116px, rgba(98, 176, 239, 0.42) 118px 120px, transparent 122px),
    radial-gradient(circle at 86% 45%, transparent 0 62px, rgba(98, 176, 239, 0.32) 64px 66px, transparent 68px),
    linear-gradient(90deg, transparent 0 52%, rgba(98, 176, 239, 0.24) 52% calc(52% + 1px), transparent calc(52% + 1px) 100%),
    linear-gradient(0deg, transparent 0 44%, rgba(98, 176, 239, 0.18) 44% calc(44% + 1px), transparent calc(44% + 1px) 100%);
}

.industries-challenges-section::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 28% 0%, rgba(72, 159, 229, 0.16) 0, rgba(72, 159, 229, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 100%);
  background-size: auto, 88px 88px, 88px 88px;
}

.industries-challenges-section .container {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 80px));
}

.industries-challenges-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.industries-challenges-section .kicker {
  color: #77bdf4;
}

.industries-challenges-section .kicker::before {
  background: #58aaf0;
}

.industries-challenges-head h2 {
  max-width: 760px;
  color: #fff;
  font-size: 48px;
  line-height: 1.14;
}

.industries-challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.industries-challenge-card {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 53, 88, 0.92) 0%, rgba(7, 43, 73, 0.86) 100%);
  border: 1px solid rgba(135, 188, 231, 0.22);
  border-radius: 5px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
}

.industries-challenge-media {
  height: 204px;
  overflow: hidden;
  background: #0c2f4d;
}

.industries-challenge-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04) brightness(0.82);
}

.industries-challenge-body {
  position: relative;
  min-height: 282px;
  padding: 104px 26px 34px;
}

.industries-challenge-icon {
  position: absolute;
  top: -52px;
  left: 26px;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #072a49;
  border: 2px solid #58aaf0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.industries-challenge-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.industries-challenge-rule {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 24px;
  background: #58aaf0;
}

.industries-challenge-card h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.16;
}

.industries-challenge-card p {
  margin: 18px 0 0;
  color: #e4eef7;
  font-size: 17px;
  line-height: 1.55;
}

.section.industries-engineering-matters-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 126px 0 132px;
  background: linear-gradient(180deg, #fbfcfd 0%, #f7f9fb 100%);
}

.industries-engineering-matters-section::before,
.industries-engineering-matters-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.industries-engineering-matters-section::before {
  left: -160px;
  bottom: -210px;
  width: 720px;
  height: 560px;
  opacity: 0.2;
  background: url("../images/why-blueprint-bg.png") left bottom / 720px auto no-repeat;
  mix-blend-mode: multiply;
}

.industries-engineering-matters-section::after {
  top: 208px;
  right: 76px;
  width: 260px;
  height: 470px;
  opacity: 0.26;
  background:
    radial-gradient(circle, rgba(31, 95, 151, 0.18) 1px, transparent 1.6px),
    linear-gradient(90deg, rgba(31, 95, 151, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(31, 95, 151, 0.08) 0 1px, transparent 1px 100%);
  background-size: 22px 22px, 86px 86px, 86px 86px;
}

.industries-engineering-matters-section .container {
  width: min(1480px, calc(100% - 96px));
}

.industries-engineering-matters-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.92fr);
  gap: 74px;
  align-items: center;
}

.industries-engineering-matters-media {
  min-width: 0;
  margin: 0;
}

.industries-engineering-matters-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 598;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(203, 211, 220, 0.62);
  box-shadow: 0 24px 54px rgba(11, 45, 77, 0.1);
}

.industries-engineering-matters-copy {
  min-width: 0;
}

.industries-engineering-matters-section .section-head {
  max-width: 670px;
  margin: 0;
}

.industries-engineering-matters-section .kicker {
  color: var(--logo-blue);
}

.industries-engineering-matters-section .kicker::before {
  background: var(--logo-blue);
}

.industries-engineering-matters-section .section-head h2 {
  max-width: 670px;
  margin-top: 24px;
  color: #111820;
  font-size: 52px;
  line-height: 1.12;
}

.industries-engineering-matters-section .section-head p {
  max-width: 620px;
  margin-top: 30px;
  color: #59636d;
  font-size: 18px;
  line-height: 1.75;
}

.section.industries-applications-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  background: linear-gradient(180deg, #fbfcfd 0%, #f6f9fb 100%);
}

.industries-applications-section .container {
  width: min(1390px, calc(100% - 80px));
}

.industries-applications-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.industries-applications-section .kicker {
  color: var(--logo-blue);
}

.industries-applications-section .kicker::before {
  background: var(--logo-blue);
}

.industries-applications-head h2 {
  max-width: 720px;
  color: #111820;
  font-size: 46px;
  line-height: 1.12;
}

.industries-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 22px;
}

.industries-application-card {
  position: relative;
  min-width: 0;
  min-height: 314px;
  overflow: hidden;
  border: 1px solid rgba(203, 211, 220, 0.72);
  border-radius: 7px;
  background: #0d2336;
  box-shadow: 0 18px 36px rgba(11, 45, 77, 0.1);
}

.industries-application-card::before {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 32, 50, 0) 0%, rgba(9, 30, 48, 0.88) 100%);
}

.industries-application-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 0.45s ease;
}

.industries-application-card:hover img {
  transform: scale(1.045);
}

.industries-application-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  min-height: 112px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  color: #fff;
  background: rgba(9, 35, 57, 0.9);
  box-shadow: 0 -18px 36px rgba(9, 35, 57, 0.28);
  backdrop-filter: blur(5px);
}

.industries-application-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.industries-application-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.industries-application-copy {
  min-width: 0;
}

.industries-application-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.industries-application-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.48;
}

.section.industries-priorities-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  background:
    radial-gradient(circle at 82% 15%, rgba(31, 95, 151, 0.08) 0, rgba(31, 95, 151, 0) 28%),
    linear-gradient(180deg, #fbfcfd 0%, #f7f9fb 100%);
}

.industries-priorities-section .container {
  width: min(1228px, calc(100% - 80px));
}

.industries-priorities-head {
  max-width: 690px;
  margin-bottom: 34px;
}

.industries-priorities-section .kicker {
  color: var(--logo-blue);
}

.industries-priorities-section .kicker::before {
  background: var(--logo-blue);
}

.industries-priorities-head h2 {
  max-width: 620px;
  color: #111820;
  font-size: 44px;
  line-height: 1.08;
}

.industries-priorities-head p {
  max-width: 600px;
  margin-top: 24px;
  color: #314150;
  font-size: 18px;
  line-height: 1.55;
}

.industries-priorities-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e1e8;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(11, 45, 77, 0.11);
}

.industries-priority-head {
  display: grid;
  grid-template-columns: 31% 32% minmax(0, 1fr) 68px;
  min-height: 58px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #092b4a 0%, #0b3558 100%);
}

.industries-priority-head span {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 17px 24px;
  font-weight: 800;
}

.industries-priority-head span:nth-child(3) {
  grid-column: 3 / 5;
}

.industries-priority-row {
  display: block;
  background: #fff;
  border-top: 1px solid #dfe6ec;
}

.industries-priority-row:first-of-type {
  border-top: 0;
}

.industries-priority-row summary {
  list-style: none;
}

.industries-priority-row summary::-webkit-details-marker {
  display: none;
}

.industries-priority-summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 31% 32% minmax(0, 1fr) 68px;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.industries-priority-summary:hover {
  background: #f8fbfd;
}

.industries-priority-summary:focus-visible {
  outline: 3px solid rgba(31, 95, 151, 0.28);
  outline-offset: -3px;
}

.industries-priority-cell {
  min-width: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  color: #162433;
  font-size: 17px;
  font-weight: 500;
  border-right: 1px solid #dfe6ec;
}

.industries-priority-cell::before {
  display: none;
}

.industries-priority-industry {
  font-weight: 800;
}

.industries-priority-focus {
  font-weight: 800;
}

.industries-priority-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #164f83;
  background: #eef5fb;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(31, 95, 151, 0.04);
}

.industries-priority-icon-dark {
  color: #fff;
  background: linear-gradient(135deg, #123c64 0%, #0b2d4d 100%);
  box-shadow: 0 10px 20px rgba(11, 45, 77, 0.16);
}

.industries-priority-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.industries-priority-toggle {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: #0b2d4d;
  background: #fff;
  border: 1px solid #d4dde6;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(11, 45, 77, 0.08);
}

.industries-priority-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.industries-priority-row[open] .industries-priority-toggle {
  color: #fff;
  background: #17466f;
  border-color: #17466f;
}

.industries-priority-row[open] .industries-priority-toggle::before {
  margin-top: 3px;
  transform: rotate(225deg);
}

.industries-priority-detail {
  padding: 20px 38px 24px;
  background:
    linear-gradient(90deg, rgba(238, 245, 251, 0.78) 0%, rgba(255, 255, 255, 0.94) 60%, #fff 100%);
  border-top: 1px solid #dfe6ec;
}

.industries-priority-detail p {
  max-width: 900px;
  margin: 0;
  color: #334656;
  font-size: 16px;
  line-height: 1.6;
}

.home-art-hero {
  background: #f3f8fb;
}

.home-art-frame {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100vh - 82px));
  background:
    linear-gradient(90deg, rgba(245, 250, 252, 0.96) 0%, rgba(245, 250, 252, 0.9) 34%, rgba(245, 250, 252, 0.36) 58%, rgba(245, 250, 252, 0) 100%),
    url("../images/hero-eversteel-global.webp") center center / cover no-repeat;
}

.home-hero-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: min(720px, calc(100vh - 82px));
  display: flex;
  align-items: center;
}

.home-hero-copy {
  width: min(780px, 58vw);
  padding: 68px 0 70px;
}

.home-hero-copy h1 {
  margin: 0;
  color: #030a24;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(48px, 4vw, 68px);
  line-height: 1.08;
}

.home-hero-tagline {
  max-width: 610px;
  margin: 24px 0 0;
  color: #053f93;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.home-hero-copy p:not(.home-hero-tagline) {
  max-width: 570px;
  margin: 30px 0 0;
  color: #1f2c37;
  font-size: 17px;
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-hero-btn {
  min-height: 58px;
  min-width: 248px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(5, 36, 63, 0.12);
}

.home-hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #05243f 0%, #063e99 100%);
}

.home-hero-btn-outline {
  color: #063e99;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid #063e99;
}

.home-hero-btn:hover,
.home-hero-btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.home-hero-btn-primary:hover,
.home-hero-btn-primary:focus-visible {
  background: linear-gradient(135deg, #063e99 0%, #05243f 100%);
}

.home-hero-btn-outline:hover,
.home-hero-btn-outline:focus-visible {
  color: #fff;
  background: #063e99;
}

.home-hero-labels {
  margin-top: 56px;
  display: grid;
  gap: 34px;
  color: rgba(30, 111, 174, 0.64);
  font-size: 17px;
  text-align: center;
}

.home-hero-labels span:first-child {
  transform: translateX(210px);
}

.home-hero-labels span:last-child {
  transform: translateX(330px);
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 78px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
  border-top: 1px solid rgba(11, 45, 77, 0.08);
}

.why-section::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: min(740px, 48vw);
  height: 420px;
  background: url("../images/why-blueprint-bg.png") center top / contain no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-intro {
  max-width: none;
}

.why-intro h2 {
  max-width: 870px;
  margin: 18px 0 0;
  color: #07112b;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 56px;
  line-height: 1.05;
}

.why-intro h2 span {
  color: var(--green);
}

.why-intro p {
  max-width: 100%;
  margin: 28px 0 0;
  color: #202b35;
  font-size: 18px;
  line-height: 1.72;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 78px;
}

.why-card {
  position: relative;
  min-height: 348px;
  padding: 62px 28px 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dde4ea;
  border-top: 4px solid #0b2d4d;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(11, 45, 77, 0.07);
  backdrop-filter: blur(8px);
}

.why-icon {
  position: absolute;
  top: -49px;
  left: 28px;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 14px 18px rgba(11, 45, 77, 0.08));
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-number {
  display: block;
  color: #118242;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 18px;
}

.why-card h3 {
  max-width: 240px;
  margin: 12px 0 0;
  color: #07112b;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 27px;
  line-height: 1.08;
}

.why-rule {
  display: block;
  width: 38px;
  height: 2px;
  margin: 16px 0 0;
  background: var(--green);
}

.why-card p {
  margin: 44px 0 0;
  color: #37424d;
  font-size: 17px;
  line-height: 1.45;
}

.why-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.why-more {
  min-width: 330px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 2px solid #071243;
  border-radius: 6px;
  color: #071243;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.why-more span {
  color: var(--green);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.why-more:hover,
.why-more:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.section-muted {
  background: #eef3f6;
}

.blueprint-section {
  background: var(--blue);
  color: #fff;
}

.solutions-outcomes-section {
  --green: #2e8b57;
  overflow: hidden;
  padding: 118px 0 126px;
  background: url("../images/solutions-bg1.webp") center top / cover no-repeat;
}

.solutions-outcomes-section .container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
}

.solutions-outcomes-section .section-head {
  max-width: 850px;
  margin-bottom: 48px;
}

.solutions-outcomes-section .section-head h2 {
  max-width: 760px;
  margin-top: 22px;
  color: #05080c;
  font-size: 48px;
  line-height: 1.08;
}

.solutions-outcomes-section .solutions-outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 18px;
}

.solutions-outcomes-section .solutions-outcome-card {
  position: relative;
  min-height: 360px;
  gap: 0;
  overflow: visible;
  padding: 74px 28px 58px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(203, 211, 220, 0.9);
  border-radius: 4px;
  box-shadow: 0 22px 46px rgba(11, 45, 77, 0.08);
}

.solutions-outcomes-section .solutions-outcome-icon {
  position: absolute;
  top: -36px;
  left: 28px;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #183448;
  background: linear-gradient(180deg, #f3f5f6 0%, #e7ecef 100%);
  box-shadow: 0 16px 28px rgba(11, 45, 77, 0.12);
}

.solutions-outcomes-section .solutions-outcome-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.solutions-outcomes-section .solutions-outcome-card h3 {
  max-width: 230px;
  font-size: 24px;
  line-height: 1.12;
}

.solutions-outcomes-section .solutions-outcome-card h3::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0 0 30px;
  background: var(--green);
}

.solutions-outcomes-section .solutions-outcome-card p {
  max-width: 260px;
  margin-top: 22px;
  color: #33424f;
  font-size: 16px;
  line-height: 1.72;
}

.solutions-outcomes-section .solutions-outcome-number {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.solutions-outcomes-section .solutions-outcome-number::before {
  content: "";
  position: absolute;
  top: -100%;
  right: calc(0% + 10px);
  width: 70px;
  height: 1px;
  background: #d6dde4;
  transform: translateY(-50%) rotate(-50deg);
  transform-origin: right center;
}

.solutions-support-section {
  --green: #2e8b57;
  padding: 112px 0 124px;
  background:
    linear-gradient(180deg, #11161a 0%, #0d1114 100%);
  color: #f7f9fa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.solutions-support-section .container {
  width: min(1280px, calc(100% - 80px));
}

.solutions-support-section .section-head {
  max-width: 720px;
  margin-bottom: 46px;
}

.solutions-support-section .section-head h2 {
  color: #f7f9fa;
  font-size: 48px;
  line-height: 1.08;
}

.solutions-support-section .section-head p {
  max-width: 600px;
  color: #b9c0c7;
  font-size: 18px;
  line-height: 1.72;
}

.solutions-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solutions-support-section .solutions-support-card {
  position: relative;
  min-height: 288px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  overflow: hidden;
  padding: 78px 28px 26px;
  background:
    linear-gradient(180deg, rgba(9, 12, 15, 0.68) 0%, rgba(9, 12, 15, 0.78) 46%, rgba(9, 12, 15, 0.9) 100%),
    var(--support-img) center / cover no-repeat;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  box-shadow: none;
}

.solutions-support-section .solutions-support-card::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 28px;
  width: 32px;
  height: 2px;
  background: var(--green);
}

.solutions-support-section .solutions-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 2px;
}

.solutions-support-section .solutions-support-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.solutions-support-section .solutions-support-card h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}

.solutions-support-section .solutions-support-card p {
  max-width: 250px;
  color: #d7dde3;
  font-size: 17px;
  line-height: 1.45;
}

.solutions-method-section {
  --green: #2e8b57;
  padding: 112px 0 96px;
  background: #fff;
  color: #05080c;
}

.solutions-method-section .container {
  width: min(1320px, calc(100% - 80px));
}

.solutions-method-section .section-head {
  max-width: 980px;
  margin-bottom: 46px;
}

.solutions-method-section .section-head h2 {
  max-width: none;
  color: #05080c;
  font-size: 54px;
  line-height: 1.08;
}

.solutions-method-section .section-head p {
  max-width: 620px;
  color: #59636d;
  font-size: 18px;
  line-height: 1.72;
}

.solutions-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: stretch;
}

.solutions-method-card {
  position: relative;
  min-height: 530px;
  overflow: visible;
  background: #fff;
  border: 1px solid #dfe5eb;
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(21, 26, 30, 0.08);
}

.solutions-method-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -45px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #343a40 0%, #111417 100%);
  box-shadow: 0 12px 26px rgba(21, 26, 30, 0.24);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.solutions-method-card h3 {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #3a3f44 0%, #171a1d 100%);
  border-radius: 5px 5px 0 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.solutions-method-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 28px;
  background: #171a1d;
  transform: translateX(-50%) rotate(45deg);
}

.solutions-method-list {
  padding: 34px 28px 24px;
}

.solutions-method-item {
  display: grid;
  grid-template-columns: 72px 1px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 10px 0;
  border-bottom: 1px solid #dfe5eb;
}

.solutions-method-item:last-child {
  border-bottom: 0;
}

.solutions-method-icon,
.solutions-method-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #151a1e;
  background: #f1f2f3;
}

.solutions-method-icon {
  width: 58px;
  height: 58px;
}

.solutions-method-icon svg,
.solutions-method-summary-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.solutions-method-icon svg {
  width: 34px;
  height: 34px;
}

.solutions-method-divider {
  width: 1px;
  height: 34px;
  background: #cbd3dc;
}

.solutions-method-item p {
  margin: 0;
  color: #05080c;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
}

.solutions-method-summary {
  display: grid;
  grid-template-columns: 58px 1px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 18px 34px;
  background: #f1f2f3;
  border-radius: 6px;
}

.solutions-method-summary-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: #262b2f;
}

.solutions-method-summary-icon svg {
  width: 30px;
  height: 30px;
}

.solutions-method-summary::before {
  content: "";
  width: 1px;
  height: 34px;
  background: #aeb7c0;
  grid-column: 2;
  grid-row: 1;
}

.solutions-method-summary p {
  margin: 0;
  color: #111417;
  font-size: 21px;
  line-height: 1.4;
}

.solutions-applications-section {
  --application-blue: #1f5f97;
  padding: 108px 0 118px;
  background: #eef5f8;
}

.solutions-applications-section .container {
  width: min(1420px, calc(100% - 80px));
}

.solutions-applications-section .section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.solutions-applications-section .kicker {
  color: var(--application-blue);
}

.solutions-applications-section .kicker::before {
  background: var(--application-blue);
}

.solutions-applications-section .section-head h2 {
  max-width: 790px;
  color: #05080c;
  font-size: 52px;
  line-height: 1.08;
}

.solutions-applications-section .section-head p {
  max-width: 680px;
  color: #5d6874;
  font-size: 18px;
  line-height: 1.72;
}

.solutions-applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.solutions-applications-section .solutions-application-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(15, 32, 45, 0.1);
}

.solutions-applications-section .solutions-application-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--application-blue);
}

.solutions-application-media {
  flex: none;
  height: clamp(214px, 18vw, 258px);
  background-image: var(--application-img);
  background-size: var(--application-size, cover);
  background-position: var(--application-position, center);
  filter: saturate(0.9) contrast(1.04);
}

.solutions-application-body {
  position: relative;
  flex: 1;
  padding: 72px 28px 40px;
  background: #fff;
  border: 1px solid #dfe5eb;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.solutions-application-icon {
  position: absolute;
  top: -44px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border: 1px solid #dfe5eb;
  border-radius: 50%;
  color: var(--application-blue);
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 32, 45, 0.1);
}

.solutions-application-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.solutions-application-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--application-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.solutions-application-number::after {
  content: "";
  width: 48px;
  height: 1px;
  background: #d6dde4;
}

.solutions-application-card h3 {
  max-width: 270px;
  color: #05080c;
  font-size: 28px;
  line-height: 1.1;
}

.solutions-application-card h3 span {
  display: block;
}

.solutions-application-card p {
  max-width: 282px;
  margin-top: 18px;
  color: #4d5965;
  font-size: 17px;
  line-height: 1.58;
}

.solutions-difference-section {
  --difference-blue: #1f5f97;
  padding: 108px 0 104px;
  background: #fff;
}

.solutions-difference-section .container {
  width: min(1440px, calc(100% - 80px));
}

.solutions-difference-section .section-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.solutions-difference-section .kicker {
  color: var(--difference-blue);
}

.solutions-difference-section .kicker::before {
  background: var(--difference-blue);
}

.solutions-difference-section .section-head h2 {
  max-width: 980px;
  color: #05080c;
  font-size: 52px;
  line-height: 1.08;
}

.solutions-difference-section .section-head p {
  max-width: 560px;
  color: #59636d;
  font-size: 20px;
  line-height: 1.6;
}

.solutions-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solutions-difference-section .solutions-difference-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 274px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid #dfe5eb;
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(15, 32, 45, 0.05);
}

.solutions-difference-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
}

.solutions-difference-icon img {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.solutions-difference-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.solutions-difference-number {
  margin-bottom: 14px;
  color: var(--difference-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.solutions-difference-card h3 {
  max-width: none;
  color: #05080c;
  font-size: 24px;
  line-height: 1.14;
}

.solutions-difference-line {
  width: 42px;
  height: 2px;
  margin: 20px 0 18px;
  background: var(--difference-blue);
}

.solutions-difference-card p {
  max-width: 310px;
  color: #4d5965;
  font-size: 16.5px;
  line-height: 1.55;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: 42px;
  margin-top: 12px;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.blueprint-section .section-head h2,
.blueprint-section .section-head p {
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.six,
.card-grid.twelve {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 4px;
}

.engineering-icon-grid .info-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(11, 45, 77, 0.07);
}

.engineering-icon-grid .info-card > * {
  position: relative;
  z-index: 1;
}

.engineering-icon-grid .info-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 82px;
  height: 82px;
  background:
    linear-gradient(rgba(11, 45, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 45, 77, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.72;
  pointer-events: none;
}

.engineering-overview-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 0;
}

.engineering-overview-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 45%;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 7px),
    linear-gradient(135deg, #0c385d 0%, var(--logo-blue) 56%, #082a46 100%);
  clip-path: polygon(0 28%, 9% 0, 100% 0, 100% 100%, 0 100%);
}

.engineering-overview-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 190px;
  z-index: 0;
  width: min(390px, 34vw);
  height: 290px;
  background: url("../images/engineering-bg1.webp") left center / cover no-repeat;
  pointer-events: none;
}

.engineering-overview-section .container {
  position: relative;
  z-index: 1;
}

.engineering-overview-section .section-head {
  max-width: 1080px;
}

.engineering-feature-grid {
  position: relative;
  isolation: isolate;
  gap: 0;
  padding: 0 0 18px;
}

.engineering-feature-grid::before,
.engineering-feature-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 18px;
  width: 88px;
}

.engineering-feature-grid::before {
  left: -1px;
  clip-path: polygon(0 34%, 100% 22%, 100% 100%, 0 100%);
}

.engineering-feature-grid::after {
  right: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.engineering-feature-grid .info-card {
  --feature-cut: 34px;
  position: relative;
  z-index: 1;
  min-height: 430px;
  padding: 0 28px 70px;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-right: 1px solid #dfe5eb;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(var(--feature-cut) 0, 100% 0, 100% 100%, 0 100%, 0 var(--feature-cut));
}

.engineering-feature-grid .info-card:last-child {
  border-right: 0;
  clip-path: polygon(var(--feature-cut) 0, calc(100% - var(--feature-cut)) 0, 100% var(--feature-cut), 100% calc(100% - var(--feature-cut)), calc(100% - var(--feature-cut)) 100%, 0 100%, 0 var(--feature-cut));
}

.info-card-media {
  position: relative;
  margin: 0 -28px 24px;
  aspect-ratio: 335 / 242;
  overflow: hidden;
  background: #f3f6f8;
}

.info-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card-number {
  position: absolute;
  top: 18px;
  left: 28px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #222d34;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.engineering-feature-grid .info-card h3 {
  max-width: 240px;
  font-size: 23px;
  line-height: 1.12;
}

.engineering-feature-grid .info-card h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 0 15px;
  background: var(--green);
}

.engineering-feature-grid .info-card p {
  margin-top: 18px;
  color: #3d4853;
  line-height: 1.65;
}

.info-card-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: #11181e;
  font-size: 30px;
  line-height: 1;
}

.blueprint-section .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.blueprint-section .info-card-icon {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.engineering-capabilities-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 45, 77, 0.96) 0%, rgba(11, 45, 77, 0.9) 52%, rgba(11, 45, 77, 0.78) 100%),
    url("../images/blueprint-bg.webp") right center / cover no-repeat;
}

.engineering-capabilities-section .engineering-icon-grid .info-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
}

.engineering-capabilities-section .info-card-icon {
  grid-row: 1 / span 2;
  width: 82px;
  height: 82px;
  max-width: none;
  margin: 0 0 0 -8px;
}

.engineering-capabilities-section .info-card p {
  font-size: 14px;
  line-height: 1.55;
}

.compact-card {
  min-height: 160px;
}

.home-quote-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(12, 30, 46, 0.08) 0 12%, transparent 12% 100%),
    linear-gradient(118deg, transparent 0 66%, rgba(10, 74, 125, 0.08) 66% 77%, rgba(137, 146, 154, 0.13) 77% 86%, transparent 86%),
    linear-gradient(180deg, #f8fbfd 0%, #eef4f7 100%);
}

.home-quote-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 0;
  z-index: -1;
  width: 520px;
  height: 140px;
  background:
    linear-gradient(116deg, transparent 0 24%, rgba(13, 48, 77, 0.12) 24% 30%, transparent 30% 35%, rgba(142, 151, 158, 0.16) 35% 41%, transparent 41% 46%, rgba(8, 72, 126, 0.16) 46% 53%, transparent 53% 100%);
  opacity: 0.9;
}

.home-quote-section .section-head {
  max-width: 780px;
}

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

.home-quote-card {
  position: relative;
  min-height: 84px;
  padding: 22px 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 249, 251, 0.94) 100%);
  border-color: rgba(11, 45, 77, 0.15);
  box-shadow: 0 18px 36px rgba(11, 45, 77, 0.08);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.home-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 12px;
  background: linear-gradient(90deg, #1c252f 0 30%, #9aa1a7 30% 57%, #07508a 57% 100%);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.home-quote-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 160px;
  height: 74px;
  background: linear-gradient(116deg, transparent 0 18%, rgba(11, 45, 77, 0.07) 18% 31%, transparent 31% 45%, rgba(7, 80, 138, 0.12) 45% 58%, transparent 58%);
}

.home-quote-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #083d6c;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0 50%, #e7eef4 50% 100%);
  border: 1px solid rgba(11, 77, 130, 0.18);
  border-radius: 6px;
}

.home-quote-icon svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-quote-card h3 {
  position: relative;
  z-index: 1;
  max-width: none;
}

.home-quote-note {
  max-width: none;
  margin: 24px 0 0;
  padding: 18px 22px;
  color: #233747;
  background: rgba(255, 255, 255, 0.86);
  border-left: 4px solid #07508a;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 14px 28px rgba(11, 45, 77, 0.06);
}

@media (min-width: 900px) {
  .home-quote-note {
    white-space: nowrap;
  }
}

.home-practice-section .section-head {
  max-width: 1120px;
}

.home-practice-section .section-head h2 {
  max-width: none;
}

@media (min-width: 1100px) {
  .home-practice-section .section-head h2 {
    white-space: nowrap;
  }
}

.home-practice-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, transparent 0 68%, rgba(8, 72, 126, 0.08) 68% 77%, rgba(142, 151, 158, 0.12) 77% 85%, transparent 85%),
    linear-gradient(180deg, #eef4f7 0%, #e8f0f4 100%);
}

.home-practice-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 86px;
  z-index: -1;
  width: 480px;
  height: 300px;
  background: linear-gradient(135deg, rgba(17, 26, 37, 0.72) 0 31%, rgba(148, 156, 163, 0.72) 31% 57%, rgba(7, 80, 138, 0.82) 57% 100%);
  clip-path: polygon(0 0, 100% 0, 86% 21%, 34% 21%, 29% 38%, 88% 38%, 74% 60%, 21% 60%, 16% 77%, 72% 77%, 58% 100%, 0 100%, 14% 50%);
  opacity: 0.07;
}

.home-practice-section .card-grid.three {
  gap: 20px;
}

.home-practice-section .info-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 251, 0.96) 100%);
  border-color: rgba(11, 45, 77, 0.18);
  box-shadow: 0 20px 42px rgba(11, 45, 77, 0.1);
}

.home-practice-section .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: linear-gradient(90deg, #1c252f 0 31%, #9aa1a7 31% 57%, #07508a 57% 100%);
}

.home-practice-section .info-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -14px;
  width: 190px;
  height: 92px;
  background: linear-gradient(116deg, transparent 0 18%, rgba(28, 37, 47, 0.06) 18% 31%, transparent 31% 44%, rgba(7, 80, 138, 0.12) 44% 58%, transparent 58% 100%);
}

.home-practice-section .info-card h3,
.home-practice-section .info-card p {
  position: relative;
  z-index: 1;
}

.home-practice-section .info-card h3 {
  padding-top: 8px;
  color: #092846;
}

.home-practice-section .info-card p {
  padding-left: 16px;
  line-height: 1.58;
}

.home-practice-section .info-card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  background: #07508a;
}

.home-practice-section .info-card p strong {
  color: #092846;
  font-weight: 800;
}

.home-workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(116deg, transparent 0 63%, rgba(8, 72, 126, 0.045) 63% 72%, rgba(142, 151, 158, 0.08) 72% 80%, transparent 80%),
    #fff;
}

.home-workflow-section .section-head {
  max-width: 1120px;
}

.home-global-section .section-head {
  max-width: 1120px;
}

.home-global-section .info-card {
  position: relative;
  overflow: hidden;
}

.home-global-section .info-card > :not(.home-global-icon) {
  position: relative;
  z-index: 1;
}

.home-global-icon {
  position: absolute;
  right: -34px;
  bottom: -36px;
  z-index: 0;
  width: 112px;
  height: 112px;
  object-fit: contain;
  opacity: 0.16;
  filter: saturate(0.9) contrast(1.05);
  pointer-events: none;
}

@media (min-width: 1100px) {
  .home-global-section .section-head h2 {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .home-global-icon {
    right: -28px;
    bottom: -30px;
    width: 92px;
    height: 92px;
    opacity: 0.12;
  }
}

.home-workflow-grid.card-grid.six {
  display: grid;
  grid-template-columns: 5fr 1fr 1fr 1fr 1fr;
  min-height: 320px;
  gap: 12px;
  align-items: stretch;
  transition: grid-template-columns 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: grid-template-columns;
}

.home-workflow-grid.card-grid.six[data-active="1"] {
  grid-template-columns: 1fr 5fr 1fr 1fr 1fr;
}

.home-workflow-grid.card-grid.six[data-active="2"] {
  grid-template-columns: 1fr 1fr 5fr 1fr 1fr;
}

.home-workflow-grid.card-grid.six[data-active="3"] {
  grid-template-columns: 1fr 1fr 1fr 5fr 1fr;
}

.home-workflow-grid.card-grid.six[data-active="4"] {
  grid-template-columns: 1fr 1fr 1fr 1fr 5fr;
}

.home-workflow-card {
  --workflow-accent: #07508a;
  position: relative;
  min-width: 0;
  min-height: 320px;
  padding: 30px 22px 26px 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 249, 0.96) 100%);
  border-color: rgba(11, 45, 77, 0.14);
  border-left: 0;
  box-shadow: 0 14px 30px rgba(11, 45, 77, 0.07);
  contain: paint;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.home-workflow-card:nth-child(1) {
  --workflow-accent: #052442;
}

.home-workflow-card:nth-child(2) {
  --workflow-accent: #052a55;
}

.home-workflow-card:nth-child(3) {
  --workflow-accent: #053068;
}

.home-workflow-card:nth-child(4) {
  --workflow-accent: #05357c;
}

.home-workflow-card:nth-child(5) {
  --workflow-accent: #063b8f;
}

.home-workflow-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--workflow-accent, #07508a);
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-workflow-card::after {
  content: attr(data-title);
  position: absolute;
  left: 50px;
  top: 96px;
  width: 250px;
  color: var(--workflow-accent, #0b2d4d);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.78;
  transform: rotate(90deg);
  transform-origin: left top;
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.28s ease;
}

.home-workflow-card.is-active {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border-color: var(--workflow-accent, #07508a);
  box-shadow: 0 24px 48px rgba(11, 45, 77, 0.14);
}

.home-workflow-card:hover::before,
.home-workflow-card:focus-visible::before {
  width: 16px;
}

.home-workflow-card.is-active::after {
  content: "";
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 36%, rgba(255, 255, 255, 0.48) 100%),
    url("../images/why-blueprint-bg.png") right center / contain no-repeat;
  opacity: 0.78;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  z-index: 0;
}

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

.home-workflow-card .card-tag {
  width: 46px;
  height: 38px;
  margin-bottom: 22px;
  padding: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: var(--workflow-accent, #07508a);
  border-color: rgba(7, 80, 138, 0.22);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(11, 45, 77, 0.08);
}

.home-workflow-card.is-active .card-tag {
  color: #fff;
  background: var(--workflow-accent, #07508a);
  border-color: var(--workflow-accent, #07508a);
}

.home-workflow-card h3 {
  max-width: 320px;
  color: #092846;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.28s ease;
}

.home-workflow-card p {
  max-width: 430px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease 0.04s,
    max-height 0.28s ease,
    transform 0.28s ease;
}

.home-workflow-card.is-active h3,
.home-workflow-card.is-active p {
  opacity: 1;
  transform: translateY(0);
}

.home-workflow-card.is-active p {
  max-height: 180px;
}

@media (max-width: 980px) {
  .home-workflow-grid.card-grid.six {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    transition: none;
  }

  .home-workflow-card,
  .home-workflow-card.is-active {
    min-height: auto;
  }

  .home-workflow-card::after {
    display: none;
  }

  .home-workflow-card h3,
  .home-workflow-card p,
  .home-workflow-card.is-active h3,
  .home-workflow-card.is-active p {
    opacity: 1;
    max-height: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-workflow-grid.card-grid.six,
  .home-workflow-card,
  .home-workflow-card p {
    transition: none;
  }
}

.card-tag {
  width: fit-content;
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.info-card h3,
.image-card h3,
.process-step h3,
.contact-aside h3 {
  margin: 0;
  color: var(--graphite);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.info-card p,
.image-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.blueprint-section .info-card h3,
.blueprint-section .info-card p {
  color: #fff;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.feature-media {
  margin: 0;
}

.feature-media img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(216, 222, 230, 0.44);
  box-shadow: var(--shadow);
}

.engineering-detail-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 104px 0 42px;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0) 0%, rgba(247, 250, 252, 0) 60%, rgba(247, 250, 252, 0.04) 82%, rgba(247, 250, 252, 0.08) 100%),
    linear-gradient(90deg, rgba(247, 250, 252, 0.96) 0%, rgba(247, 250, 252, 0.86) 28%, rgba(247, 250, 252, 0.3) 45%, rgba(247, 250, 252, 0.04) 64%, transparent 100%),
    url("../images/engineering-bg2.webp") right center / auto 100% no-repeat;
}

.engineering-detail-inner {
  min-height: 544px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.engineering-detail-copy {
  max-width: 570px;
}

.engineering-detail-section .section-head {
  max-width: 570px;
  margin-bottom: 0;
}

.engineering-detail-section .section-head h2 {
  font-size: 56px;
}

.engineering-detail-section .section-head p {
  max-width: 520px;
  font-size: 18px;
}

.engineering-detail-section .section-head p::before {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin: 0 0 24px;
  background: var(--logo-blue);
}

.engineering-detail-points {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: end;
  margin: 44px 88px 0 min(430px, 34vw);
}

.engineering-detail-point {
  min-height: 108px;
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid rgba(31, 95, 151, 0.2);
}

.engineering-detail-point:first-child {
  border-left: 0;
}

.engineering-detail-point img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.engineering-detail-point h3 {
  max-width: 150px;
  margin: 0 auto;
  color: var(--graphite);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.22;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.home-blueprint-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 82px;
  padding: 92px 0 78px;
  background: #edf4f8;
  color: #25313c;
  border-top: 1px solid rgba(11, 45, 77, 0.1);
  border-bottom: 1px solid rgba(11, 45, 77, 0.12);
}

.home-blueprint-section::before,
.home-blueprint-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-blueprint-section::before {
  left: auto;
  width: min(54vw, 820px);
  background: url("../images/blueprint-bg.webp") right center / cover no-repeat;
  z-index: -2;
}

.home-blueprint-section::after {
  background: linear-gradient(90deg, #edf4f8 0%, #edf4f8 51%, rgba(237, 244, 248, 0.86) 64%, rgba(237, 244, 248, 0.1) 100%);
  z-index: -1;
}

.home-blueprint-inner {
  position: relative;
  z-index: 1;
}

.home-blueprint-content {
  max-width: 1040px;
}

.home-blueprint-head {
  max-width: 1040px;
  margin-bottom: 28px;
}

.home-blueprint-head.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-blueprint-head .kicker {
  letter-spacing: 0.12em;
}

.blueprint-section .home-blueprint-head h2 {
  max-width: 1040px;
  margin-top: 18px;
  color: #082a4a;
  font-size: 58px;
  line-height: 1.08;
}

.blueprint-section .home-blueprint-head p {
  max-width: 820px;
  margin-top: 16px;
  color: #3f4b56;
  font-size: 18px;
  line-height: 1.7;
}

.blueprint-section .home-blueprint-head p + p {
  margin-top: 6px;
}

.blueprint-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.blueprint-solution-card {
  min-height: 218px;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(203, 211, 220, 0.68);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(11, 45, 77, 0.13);
  backdrop-filter: blur(8px);
}

.blueprint-solution-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.blueprint-solution-copy h3 {
  margin: 0;
  color: #082a4a;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.28;
}

.blueprint-card-rule {
  display: block;
  width: 18px;
  height: 2px;
  margin: 14px 0 13px;
  background: var(--green);
}

.blueprint-solution-copy p {
  margin: 0;
  color: #3d4853;
  font-size: 14px;
  line-height: 1.62;
}

.blueprint-cta {
  min-width: 274px;
  margin-top: 30px;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: #fff;
  background: linear-gradient(135deg, #05243f 0%, #0b3b64 100%);
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(5, 36, 63, 0.22);
  text-decoration: none;
  font-weight: 800;
}

.blueprint-cta:hover,
.blueprint-cta:focus-visible {
  background: linear-gradient(135deg, #0b3b64 0%, #05243f 100%);
  outline: none;
}

.blueprint-cta span {
  color: #dbeaf5;
  font-size: 22px;
  line-height: 1;
}

.home-industries-section {
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 222, 230, 0.34) 0, transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.home-industries-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.home-industries-head.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-industries-head h2 {
  color: #082a4a;
  font-size: 58px;
  line-height: 1.08;
}

.home-industries-head h2 span {
  color: var(--green);
}

.home-industries-head p {
  max-width: 780px;
  color: #2f3b46;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.industry-card {
  position: relative;
  aspect-ratio: 1.14;
  overflow: hidden;
  border-radius: 7px;
  background-image:
    linear-gradient(180deg, rgba(8, 22, 36, 0.08) 0%, rgba(7, 26, 43, 0.52) 54%, rgba(5, 24, 41, 0.94) 100%),
    var(--industry-img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(11, 45, 77, 0.14);
}

.industry-card-body {
  position: absolute;
  inset: 0;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  color: #fff;
}

.industry-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.industry-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #fff;
}

.industry-index {
  display: grid;
  gap: 8px;
  min-width: 48px;
}

.industry-number {
  color: #45ba73;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.industry-rule {
  width: 42px;
  height: 2px;
  background: #45ba73;
}

.industry-copy {
  min-width: 0;
}

.industry-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-copy h3 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.15;
}

.industry-copy p {
  max-width: none;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  line-height: 1.55;
}

.industries-cta {
  min-width: 258px;
  margin-top: 28px;
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: #fff;
  background: linear-gradient(135deg, #05243f 0%, #0b3b64 100%);
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(5, 36, 63, 0.18);
  text-decoration: none;
  font-weight: 800;
}

.industries-cta:hover,
.industries-cta:focus-visible {
  background: linear-gradient(135deg, #0b3b64 0%, #05243f 100%);
  outline: none;
}

.industries-cta span {
  color: #dbeaf5;
  font-size: 22px;
  line-height: 1;
}

.image-card-grid {
  display: grid;
  gap: 18px;
}

.image-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.image-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.image-card-link:focus-visible {
  outline: 3px solid rgba(11, 79, 134, 0.38);
  outline-offset: -3px;
}

.image-card-link .image-card-media-direct img {
  transition: transform 0.22s ease;
}

.image-card-link:hover .image-card-media-direct img,
.image-card-link:focus-visible .image-card-media-direct img {
  transform: scale(1.02);
}

.image-card-media {
  min-height: 180px;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  filter: saturate(0.88);
}

.image-card-body {
  padding: 20px;
}

.engineering-case-grid .image-card-body {
  display: grid;
  gap: 14px;
  padding: 22px 24px 24px;
}

.engineering-case-grid .image-card {
  box-shadow: 0 18px 38px rgba(11, 45, 77, 0.11);
}

.engineering-case-grid .image-card-media {
  min-height: 230px;
  filter: saturate(0.95);
}

.image-card-media-direct {
  display: block;
  min-height: 0;
  filter: none;
}

.engineering-case-grid .image-card-media-direct {
  min-height: 0;
}

.image-card-media-direct img {
  display: block;
  width: 100%;
  height: auto;
}

.image-card-feature {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.image-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0b4f86;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 24px rgba(11, 45, 77, 0.16);
}

.image-card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.image-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.engineering-case-grid .image-card h3 {
  overflow-wrap: break-word;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.engineering-approach-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 252, 0.94) 100%);
}

.engineering-approach-section::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: min(880px, 58vw);
  height: 480px;
  background: url("../images/why-blueprint-bg.png") right center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.engineering-approach-section .container {
  position: relative;
  z-index: 1;
}

.engineering-approach-section .section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.engineering-approach-section .section-head h2 {
  font-size: 56px;
}

.engineering-approach-section .process-line {
  position: relative;
  gap: 0;
  margin-top: 6px;
}

.engineering-approach-section .process-line::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(31, 95, 151, 0.34) 5%, rgba(31, 95, 151, 0.34) 95%, transparent 100%);
  pointer-events: none;
}

.process-step {
  min-height: 240px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: 6px;
}

.engineering-approach-section .process-step {
  position: relative;
  min-height: 0;
  padding: 0 20px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.engineering-approach-section .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: -15px;
  z-index: 3;
  width: 30px;
  height: 18px;
  background: url("../images/engineering-icon-arrow.webp") center / contain no-repeat;
}

.process-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.engineering-approach-section .process-step span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  color: var(--logo-blue);
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 95, 151, 0.32);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(11, 45, 77, 0.08);
}

.engineering-approach-section .process-step span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 2;
  width: 10px;
  height: 10px;
  background: var(--logo-blue);
  border-radius: 50%;
  transform: translateX(-50%);
}

.engineering-approach-section .process-step span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 17px);
  width: 1px;
  height: 42px;
  background: rgba(31, 95, 151, 0.28);
  transform: translateX(-50%);
}

.process-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: -2px 0 16px;
}

.engineering-approach-section .process-icon {
  width: 96px;
  height: 96px;
  padding: 4px;
  margin: 68px auto 30px;
  object-fit: contain;
  background:
    radial-gradient(circle at 62% 54%, rgba(31, 95, 151, 0.1) 0 23%, transparent 24%),
    rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(31, 95, 151, 0.26);
  border-radius: 50%;
}

.engineering-approach-section .process-step h3 {
  max-width: 176px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.12;
}

.engineering-approach-section .process-step h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 0 14px;
  background: var(--logo-blue);
}

.engineering-approach-section .process-step p {
  max-width: 184px;
  margin: 18px auto 0;
  color: #4e5d6d;
  font-size: 16px;
  line-height: 1.6;
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.csr-grid article {
  min-height: 190px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.csr-grid span,
.priority-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
}

.priority-table {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.priority-head,
.priority-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
}

.priority-head {
  background: var(--blue);
  color: #fff;
}

.priority-head span,
.priority-row span {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.priority-head span {
  color: #fff;
  margin: 0;
}

.priority-row + .priority-row {
  border-top: 1px solid var(--line);
}

.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}

.engineering-cta-band {
  background:
    linear-gradient(90deg, rgba(11, 45, 77, 0.92) 0%, rgba(11, 45, 77, 0.84) 48%, rgba(11, 45, 77, 0.68) 100%),
    url("../images/engineering-bg3.webp") center center / cover no-repeat;
}

.cta-inner {
  max-width: 800px;
}

.cta-band h2 {
  color: #fff;
  font-size: 48px;
  margin-top: 14px;
}

.cta-band p {
  color: #dbe6ee;
  font-size: 19px;
  margin: 22px auto 0;
}

.cta-band .hero-actions {
  justify-content: center;
}

.solutions-cta-band {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 132px 0 150px;
  overflow: hidden;
  text-align: left;
  background: #080a0c;
}

.solutions-cta-band::before,
.solutions-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.solutions-cta-band::before {
  z-index: -2;
  background: url("../images/solutions-bg2.webp") center center / cover no-repeat;
  filter: brightness(1.55) contrast(0.94);
  transform: scale(1.01);
}

.solutions-cta-band::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 9, 11, 0.98) 0%, rgba(9, 11, 13, 0.92) 35%, rgba(13, 16, 19, 0.42) 64%, rgba(13, 16, 19, 0.04) 100%);
}

.solutions-cta-band .cta-inner {
  position: relative;
  z-index: 1;
  width: min(1390px, 80%);
  max-width: none;
  margin: 0 auto;
}

.solutions-cta-band .kicker {
  color: #f5f8fb;
}

.solutions-cta-band .kicker::before {
  background: var(--logo-blue-2);
}

.solutions-cta-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: 60px;
  line-height: 1.12;
  margin-top: 26px;
}

.solutions-cta-highlight {
  color: #5ea1df;
}

.solutions-cta-band p {
  max-width: 590px;
  color: #e1e7ed;
  font-size: 19px;
  line-height: 1.68;
  margin: 34px 0 0;
}

.solutions-cta-band .hero-actions {
  justify-content: flex-start;
  margin-top: 36px;
}

.solutions-cta-band .btn-primary {
  min-height: 62px;
  gap: 14px;
  padding: 0 30px;
  color: #0c1722;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.solutions-cta-band .btn-primary:hover,
.solutions-cta-band .btn-primary:focus-visible {
  color: #0c1722;
  background: #eef3f7;
  border-color: #fff;
}

.solutions-cta-arrow {
  color: var(--logo-blue-2);
  font-size: 28px;
  line-height: 1;
}

.cta-band.industries-cta-band {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 118px 0 132px;
  overflow: hidden;
  text-align: left;
  background: #071f35;
}

.industries-cta-band::before,
.industries-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.industries-cta-band::before {
  z-index: -2;
  background: url("../images/solutions-bg3.webp") center center / cover no-repeat;
  filter: brightness(1.08) contrast(1.02);
}

.industries-cta-band::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 24, 42, 0.98) 0%, rgba(5, 28, 48, 0.94) 38%, rgba(6, 31, 52, 0.72) 62%, rgba(6, 31, 52, 0.36) 100%);
}

.industries-cta-band .cta-inner {
  position: relative;
  z-index: 1;
  width: min(1390px, calc(100% - 80px));
  max-width: none;
}

.industries-cta-band .kicker {
  color: #f5f8fb;
}

.industries-cta-band .kicker::before {
  background: var(--logo-blue-2);
}

.cta-band.industries-cta-band h2 {
  max-width: 760px;
  margin-top: 26px;
  color: #fff;
  font-size: 58px;
  line-height: 1.12;
}

.cta-band.industries-cta-band p {
  max-width: 610px;
  margin: 30px 0 0;
  color: #e2e8ee;
  font-size: 19px;
  line-height: 1.68;
}

.industries-cta-band .hero-actions {
  justify-content: flex-start;
  margin-top: 36px;
}

.industries-cta-band .btn-primary {
  background: #fff;
  color: #0c1722;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.industries-cta-band .btn-primary:hover,
.industries-cta-band .btn-primary:focus-visible {
  color: #0c1722;
  background: #eef3f7;
  border-color: #fff;
}

.contact-help-section {
  padding: 112px 0 126px;
  background: linear-gradient(180deg, #fbfcfd 0%, #f7f9fb 100%);
}

.contact-help-container {
  width: min(1386px, calc(100% - 80px));
}

.contact-help-section .section-head {
  max-width: 1060px;
  margin-bottom: 62px;
}

.contact-help-section .section-head h2 {
  max-width: 1060px;
  margin-top: 24px;
  color: #151a1e;
  font-size: 54px;
  line-height: 1.08;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.contact-help-card {
  min-width: 0;
  min-height: 424px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px 42px;
  background: #fff;
  border: 1px solid rgba(220, 227, 234, 0.74);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(11, 45, 77, 0.08);
}

.contact-help-icon {
  width: 138px;
  height: 138px;
  object-fit: contain;
  align-self: center;
  margin-bottom: 42px;
}

.contact-help-card h3 {
  margin: 0;
  color: #151a1e;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.18;
}

.contact-help-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 20px 0 22px;
  background: #1f5f97;
}

.contact-help-card p {
  margin: 0;
  color: #47535f;
  font-size: 18px;
  line-height: 1.48;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 46px;
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form label {
  display: block;
  margin-bottom: 6px;
  color: #27323b;
  font-weight: 700;
}

.quote-form label span {
  color: var(--muted);
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bdc7d1;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--graphite);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(var(--accent-rgb), 0.2);
  border-color: var(--green);
}

.form-captcha {
  display: grid;
  grid-template-columns: minmax(126px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.form-captcha .captcha-question {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #bdc7d1;
  border-radius: 6px;
  background: #edf3f7;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.notice {
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.notice.success {
  background: #e8f5ee;
  color: #144f31;
  border: 1px solid #b8dbc8;
}

.notice.error {
  background: #fff0ee;
  color: #8f271a;
  border: 1px solid #efc0ba;
}

.contact-aside {
  padding: 32px 30px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-aside p {
  color: var(--muted);
}

.contact-aside > h3 {
  max-width: 392px;
  color: #111820;
  font-size: 24px;
  line-height: 1.28;
}

.contact-aside > h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 22px 0 20px;
  background: #1f5f97;
}

.contact-aside > p {
  max-width: 310px;
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.trust-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: #edf5f1;
  font-weight: 700;
}

.inner-page .trust-list li {
  background: #edf4fa;
}

.contact-trust-list {
  gap: 34px;
  margin-top: 42px;
}

.contact-trust-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0;
  background: transparent;
  border-left: 0;
  font-weight: 400;
}

.inner-page .contact-trust-list li {
  background: transparent;
}

.contact-trust-list img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.contact-trust-list h4 {
  margin: 0;
  color: #111820;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.contact-trust-list p {
  max-width: 310px;
  margin: 8px 0 0;
  color: #5d6873;
  font-size: 13px;
  line-height: 1.52;
}

.contact-reasons-section {
  padding: 112px 0 126px;
  background: #fbfcfd;
}

.contact-reasons-container {
  width: min(1436px, calc(100% - 80px));
}

.contact-reasons-section .section-head {
  max-width: 820px;
  margin-bottom: 62px;
}

.contact-reasons-section .section-head h2 {
  max-width: 800px;
  margin-top: 24px;
  color: #151a1e;
  font-size: 48px;
  line-height: 1.14;
}

.contact-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-reason-card {
  position: relative;
  min-width: 0;
  min-height: 216px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  padding: 36px 34px 34px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(220, 227, 234, 0.76);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(11, 45, 77, 0.07);
}

.contact-reason-icon {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.contact-reason-copy {
  min-width: 0;
}

.contact-reason-card h3 {
  max-width: 285px;
  margin: 6px 0 0;
  color: #111820;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.14;
}

.contact-reason-card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 18px 0 24px;
  background: #1f5f97;
}

.contact-reason-card p {
  max-width: 260px;
  margin: 0;
  color: #52606d;
  font-size: 18px;
  line-height: 1.5;
}

.contact-global-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 82px;
  padding: 108px 0 116px;
  background:
    linear-gradient(135deg, #eef5f9 0%, #ffffff 54%, #edf4f8 100%);
  border-top: 1px solid rgba(11, 45, 77, 0.08);
}

.contact-global-container {
  width: min(1240px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.contact-global-map {
  position: relative;
  aspect-ratio: 1717 / 916;
  min-height: 360px;
  overflow: hidden;
  background: url("../images/contact-global-map-s.webp") center center / contain no-repeat;
}

.contact-global-copy {
  min-width: 0;
}

.contact-global-copy h2 {
  max-width: 560px;
  margin: 22px 0 0;
  color: #07112b;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.1;
}

.contact-global-copy p {
  max-width: 580px;
  margin: 24px 0 0;
  color: #3d4853;
  font-size: 19px;
  line-height: 1.72;
}

.contact-global-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-global-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #0b2d4d;
  background: #fff;
  border: 1px solid rgba(31, 95, 151, 0.22);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.contact-global-tags a:hover,
.contact-global-tags a:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.contact-faq-section {
  background: #062946 url("../images/contact-bg.webp") center center / cover no-repeat;
}

.contact-faq-section .container {
  width: min(1120px, calc(100% - 44px));
}

.contact-faq-section .section-head {
  max-width: 660px;
  margin-bottom: 34px;
}

.contact-faq-section .section-head h2 {
  max-width: 640px;
  font-size: 48px;
  line-height: 1.12;
}

.contact-faq-table {
  max-width: none;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: #e7eef4;
}

.contact-faq-row {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: rgba(7, 43, 73, 0.62);
  border-color: rgba(73, 153, 229, 0.34);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-faq-row[open] {
  background: rgba(8, 48, 82, 0.72);
  border-color: rgba(61, 153, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(0, 15, 32, 0.18);
}

.contact-faq-row summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 20px;
  padding: 0 32px 0 34px;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.contact-faq-row summary::-webkit-details-marker {
  display: none;
}

.contact-faq-row summary::marker {
  content: "";
}

.contact-faq-row summary:focus-visible {
  outline: 2px solid rgba(67, 160, 255, 0.9);
  outline-offset: -4px;
}

.contact-faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #278cff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(39, 140, 255, 0.2);
}

.contact-faq-toggle::before,
.contact-faq-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #4ba3ff;
  border-radius: 999px;
}

.contact-faq-toggle::after {
  transform: rotate(90deg);
  transition: opacity 0.2s ease;
}

.contact-faq-row[open] .contact-faq-toggle::after {
  opacity: 0;
}

.contact-faq-question {
  min-width: 0;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
}

.contact-faq-arrow {
  width: 16px;
  height: 16px;
  justify-self: end;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin 0.2s ease;
}

.contact-faq-row[open] .contact-faq-arrow {
  margin-top: 8px;
  transform: rotate(225deg);
}

.contact-faq-answer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 34px;
  padding: 0 38px 36px 82px;
}

.contact-faq-answer p {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(168, 206, 238, 0.24);
  color: #f1f7fd;
  font-size: 18px;
  line-height: 1.65;
}

.contact-faq-visual {
  width: 168px;
  height: 112px;
  justify-self: end;
  opacity: 0.36;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 140' fill='none' stroke='%2348a6ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 105h38M31 105V57M51 105V57M25 57h32M37 57V35h8v22M118 28h36l18 18-32 55h-36L86 83Z'/%3E%3Cpath d='M98 83h36l32-55M111 101l32-55M132 46l21 12M124 60l21 12M116 74l21 12M92 83l21 12M104 28l20 12M172 46l23 13-31 54-24-12M161 72l14 8M152 87l14 8M144 101l14 8'/%3E%3Cpath d='M20 24h68v74M20 24v74h68M34 38h40M34 48h26M36 122h130M166 122l20-34M186 88h18M28 18v-8M28 18h-8M78 24v-8M78 24h8M199 58v-9M199 58h9' opacity='.48'/%3E%3C/svg%3E") center center / contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(72, 166, 255, 0.22));
}

.not-found {
  min-height: 58vh;
}

.site-footer {
  background: #101519;
  color: #d6dde3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 34px;
  padding: 66px 0;
}

.footer-brand {
  color: #fff;
}

.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-radius: 6px;
}

.footer-logo {
  width: 230px;
}

.footer-about p {
  color: #b7c2cc;
  max-width: 390px;
}

.site-footer h2 {
  font-size: 15px;
  margin: 0 0 12px;
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #d6dde3;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #9faab4;
  font-size: 13px;
}

.footer-bottom-inner > span:last-child {
  text-align: right;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}

.footer-credit a {
  color: #d9efff;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
  outline: none;
}

.float-social {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: grid;
  gap: 8px;
}

.float-social a,
.float-social button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
}

.float-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.fs-top {
  background: var(--amber);
  font-weight: 900;
}

.fs-tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--graphite);
  color: #fff;
  border-radius: 4px;
  padding: 5px 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  font-size: 12px;
}

.float-social a:hover .fs-tip,
.float-social a:focus-visible .fs-tip {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 54px;
  }
  .brand-logo {
    width: min(210px, calc(100vw - 126px));
  }
  .hero-grid,
  .split-feature,
  .split-feature.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-global-container {
    grid-template-columns: 1fr;
  }
  .contact-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-visual {
    min-height: 420px;
    background-size: auto 116%;
  }
  .engineering-full-hero .hero-grid,
  .solutions-full-hero .hero-grid {
    padding: 88px 0 96px;
  }
  .industries-full-hero {
    min-height: 700px;
    background-position: 45% center;
  }
  .industries-full-hero .hero-grid {
    width: min(1280px, calc(100% - 40px));
    grid-template-columns: minmax(0, 470px);
    min-height: 700px;
    padding: 82px 0 150px;
  }
  .industries-full-hero h1 {
    max-width: 460px;
    font-size: 58px;
  }
  .industries-full-hero .lead {
    max-width: 440px;
    font-size: 17px;
  }
  .industries-support-section {
    padding: 92px 0 104px;
  }
  .industries-support-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .industries-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industries-support-media {
    height: 210px;
  }
  .section.industries-challenges-section {
    padding: 96px 0 106px;
  }
  .industries-challenges-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .industries-challenges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industries-challenge-media {
    height: 220px;
  }
  .industries-challenge-body {
    min-height: 244px;
  }
  .section.industries-engineering-matters-section {
    padding: 96px 0 106px;
  }
  .industries-engineering-matters-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .industries-engineering-matters-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .industries-engineering-matters-media {
    max-width: 760px;
  }
  .industries-engineering-matters-section::after {
    top: 52%;
    right: 30px;
  }
  .industries-engineering-matters-section .section-head {
    max-width: 760px;
  }
  .industries-engineering-matters-section .section-head h2 {
    max-width: 760px;
    font-size: 46px;
  }
  .section.industries-applications-section {
    padding: 92px 0 104px;
  }
  .industries-applications-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .industries-applications-head h2 {
    font-size: 42px;
  }
  .industries-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .industries-application-card {
    min-height: 320px;
  }
  .section.industries-priorities-section {
    padding: 92px 0 104px;
  }
  .industries-priorities-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .industries-priorities-head h2 {
    font-size: 42px;
  }
  .industries-priority-head,
  .industries-priority-summary {
    grid-template-columns: 30% 31% minmax(0, 1fr) 60px;
  }
  .industries-priority-head span,
  .industries-priority-cell {
    padding-right: 18px;
    padding-left: 18px;
  }
  .industries-priority-cell {
    gap: 16px;
    font-size: 16px;
  }
  .industries-priority-icon {
    width: 48px;
    height: 48px;
  }
  .industries-priority-icon svg {
    width: 31px;
    height: 31px;
  }
  .solutions-outcomes-section {
    padding: 94px 0 104px;
    background-position: 62% top;
  }
  .solutions-outcomes-section .container {
    width: min(1180px, calc(100% - 40px));
  }
  .solutions-outcomes-section .section-head h2 {
    font-size: 42px;
  }
  .solutions-outcomes-section .solutions-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-outcomes-section .solutions-outcome-card {
    min-height: 320px;
    padding: 72px 28px 56px;
  }
  .solutions-support-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .solutions-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-method-section .container {
    width: min(1320px, calc(100% - 40px));
  }
  .solutions-method-section .section-head h2 {
    font-size: 46px;
  }
  .solutions-method-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .solutions-method-card {
    min-height: 0;
  }
  .solutions-method-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .solutions-applications-section .container {
    width: min(1420px, calc(100% - 40px));
  }
  .solutions-applications-section .section-head h2 {
    font-size: 46px;
  }
  .solutions-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-application-media {
    height: 240px;
  }
  .solutions-difference-section .container {
    width: min(1440px, calc(100% - 40px));
  }
  .solutions-difference-section .section-head h2 {
    font-size: 46px;
  }
  .solutions-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solutions-difference-section .solutions-difference-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
    min-height: 252px;
  }
  .solutions-difference-icon,
  .solutions-difference-icon img {
    width: 118px;
    height: 118px;
  }
  .home-hero-copy {
    width: min(610px, 62vw);
  }
  .why-section::before {
    width: 560px;
    opacity: 0.2;
  }
  .home-blueprint-section::before {
    width: 100%;
    opacity: 0.22;
  }
  .home-blueprint-section::after {
    background: rgba(237, 244, 248, 0.92);
  }
  .home-blueprint-content {
    max-width: none;
  }
  .blueprint-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-intro h2 {
    font-size: 52px;
  }
  .why-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 78px;
  }
  .card-grid.four,
  .card-grid.eight,
  .image-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .engineering-feature-grid .info-card {
    min-height: 420px;
  }
  .engineering-detail-section {
    min-height: 620px;
    padding: 84px 0 40px;
    background-position: right center;
  }
  .engineering-detail-inner {
    min-height: 496px;
  }
  .engineering-detail-section .section-head h2 {
    max-width: 520px;
    font-size: 48px;
  }
  .engineering-detail-points {
    margin-right: 72px;
    margin-left: 0;
  }
  .engineering-detail-point {
    padding: 0 12px;
  }
  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .engineering-approach-section .process-line {
    row-gap: 46px;
  }
  .engineering-approach-section .process-line::before {
    display: none;
  }
  .engineering-approach-section .process-step:nth-child(3n)::after {
    display: none;
  }
  .solutions-cta-band {
    min-height: 620px;
    padding: 110px 0 128px;
  }
  .solutions-cta-band::before {
    background-position: 58% center;
  }
  .solutions-cta-band h2 {
    max-width: 680px;
    font-size: 52px;
  }
  .contact-help-section .section-head h2 {
    font-size: 48px;
  }
  .contact-help-grid {
    gap: 20px;
  }
  .contact-help-card {
    min-height: 386px;
    padding: 30px 24px 34px;
  }
  .contact-help-icon {
    width: 118px;
    height: 118px;
    margin-bottom: 34px;
  }
  .contact-help-card h3 {
    font-size: 22px;
  }
  .contact-help-card p {
    font-size: 17px;
  }
  .contact-reasons-section .section-head h2 {
    font-size: 44px;
  }
  .contact-reason-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    padding: 30px 28px;
  }
  .contact-reason-icon {
    width: 96px;
    height: 96px;
  }
  .contact-reason-card h3 {
    font-size: 22px;
  }
  .contact-reason-card p {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 68px;
    gap: 14px;
  }
  .brand-logo {
    width: min(208px, calc(100vw - 128px));
  }
  .brand-copy small {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    display: grid;
    gap: 6px;
  }
  .site-nav a {
    width: 100%;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 48px 0 64px;
    gap: 32px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .contact-full-hero h1 {
    white-space: normal;
  }
  .lead {
    font-size: 17px;
  }
  .hero-visual {
    min-height: 310px;
    background-size: auto 122%;
  }
  .engineering-full-hero .hero-grid,
  .solutions-full-hero .hero-grid {
    padding: 58px 0 72px;
  }
  .industries-full-hero {
    min-height: 720px;
    background-size: auto 100%;
    background-position: 16% center;
  }
  .industries-full-hero .hero-grid {
    width: calc(100% - 40px);
    min-height: 720px;
    padding: 64px 0 132px;
  }
  .industries-full-hero .hero-copy {
    max-width: 360px;
  }
  .industries-full-hero h1 {
    max-width: 340px;
    font-size: 44px;
    line-height: 1.08;
  }
  .industries-full-hero .lead {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.62;
  }
  .industries-full-hero .hero-actions {
    max-width: 340px;
    gap: 14px;
    margin-top: 28px;
  }
  .industries-full-hero .btn-primary {
    width: 100%;
    min-width: 0;
  }
  .industries-support-section {
    padding: 66px 0 74px;
  }
  .industries-support-head {
    margin-bottom: 32px;
  }
  .industries-support-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .industries-support-grid {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0 auto;
  }
  .industries-support-media {
    height: 200px;
  }
  .section.industries-challenges-section {
    padding: 70px 0 78px;
  }
  .industries-challenges-section::before {
    top: -120px;
    right: -240px;
    opacity: 0.18;
  }
  .industries-challenges-head {
    margin-bottom: 32px;
  }
  .industries-challenges-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.14;
  }
  .industries-challenges-grid {
    max-width: 520px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0 auto;
  }
  .industries-challenge-media {
    height: 194px;
  }
  .industries-challenge-body {
    min-height: 0;
    padding: 88px 22px 28px;
  }
  .industries-challenge-icon {
    top: -44px;
    left: 22px;
    width: 80px;
    height: 80px;
  }
  .industries-challenge-icon svg {
    width: 42px;
    height: 42px;
  }
  .industries-challenge-card h3 {
    font-size: 24px;
  }
  .industries-challenge-card p {
    font-size: 16px;
    line-height: 1.55;
  }
  .section.industries-engineering-matters-section {
    padding: 72px 0 80px;
  }
  .industries-engineering-matters-section::before {
    left: -260px;
    bottom: -240px;
    width: 620px;
    height: 470px;
    opacity: 0.14;
  }
  .industries-engineering-matters-section::after {
    display: none;
  }
  .industries-engineering-matters-section .container {
    width: calc(100% - 40px);
  }
  .industries-engineering-matters-inner {
    gap: 30px;
  }
  .industries-engineering-matters-media img {
    border-radius: 7px;
  }
  .industries-engineering-matters-section .section-head h2 {
    max-width: none;
    margin-top: 18px;
    font-size: 34px;
    line-height: 1.14;
  }
  .industries-engineering-matters-section .section-head p {
    max-width: none;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }
  .section.industries-applications-section {
    padding: 66px 0 76px;
  }
  .industries-applications-section .container {
    width: calc(100% - 40px);
  }
  .industries-applications-head {
    margin-bottom: 30px;
  }
  .industries-applications-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .industries-applications-grid {
    max-width: 560px;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0 auto;
  }
  .industries-application-card {
    min-height: 312px;
  }
  .industries-application-overlay {
    min-height: 122px;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    padding: 20px 22px;
  }
  .industries-application-icon {
    width: 60px;
    height: 60px;
  }
  .industries-application-icon svg {
    width: 35px;
    height: 35px;
  }
  .industries-application-card h3 {
    font-size: 22px;
  }
  .industries-application-card p {
    font-size: 15px;
    line-height: 1.48;
  }
  .section.industries-priorities-section {
    padding: 66px 0 76px;
  }
  .industries-priorities-section .container {
    width: calc(100% - 40px);
  }
  .industries-priorities-head {
    margin-bottom: 30px;
  }
  .industries-priorities-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .industries-priorities-head p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }
  .industries-priorities-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .industries-priority-head {
    display: none;
  }
  .industries-priority-row {
    overflow: hidden;
    border: 1px solid #d9e1e8;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(11, 45, 77, 0.09);
  }
  .industries-priority-row + .industries-priority-row {
    margin-top: 16px;
  }
  .industries-priority-summary {
    position: relative;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px 64px 16px 18px;
  }
  .industries-priority-cell {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 2px 16px;
    padding: 11px 0;
    border-right: 0;
    font-size: 16px;
  }
  .industries-priority-cell + .industries-priority-cell {
    border-top: 1px solid #edf2f6;
  }
  .industries-priority-cell::before {
    content: attr(data-label);
    display: block;
    grid-column: 2;
    color: var(--logo-blue);
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .industries-priority-cell > span:last-child {
    grid-column: 2;
    color: #162433;
  }
  .industries-priority-icon {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
  }
  .industries-priority-icon svg {
    width: 32px;
    height: 32px;
  }
  .industries-priority-toggle {
    position: absolute;
    top: 22px;
    right: 18px;
  }
  .industries-priority-detail {
    padding: 18px 20px 22px;
  }
  .industries-priority-detail p {
    font-size: 15px;
    line-height: 1.58;
  }
  .solutions-full-hero {
    background-image: var(--hero-img);
    background-size: cover;
    background-position: 76% center;
  }
  .solutions-outcomes-section {
    padding: 66px 0;
    background-position: 74% top;
  }
  .solutions-outcomes-section .container {
    width: min(1680px, calc(100% - 40px));
  }
  .solutions-outcomes-section .section-head {
    margin-bottom: 50px;
  }
  .solutions-outcomes-section .section-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .solutions-outcomes-section .solutions-outcome-grid {
    gap: 54px 16px;
  }
  .solutions-outcomes-section .solutions-outcome-card {
    min-height: auto;
    padding: 68px 24px 58px;
  }
  .solutions-outcomes-section .solutions-outcome-icon {
    top: -32px;
    left: 24px;
    width: 68px;
    height: 68px;
  }
  .solutions-outcomes-section .solutions-outcome-icon svg {
    width: 36px;
    height: 36px;
  }
  .solutions-outcomes-section .solutions-outcome-card h3 {
    max-width: none;
    font-size: 24px;
  }
  .solutions-outcomes-section .solutions-outcome-card h3::before {
    margin-bottom: 22px;
  }
  .solutions-outcomes-section .solutions-outcome-number::before {
    right: calc(0% + 10px);
    width: 70px;
  }
  .solutions-outcomes-section .solutions-outcome-card p {
    max-width: none;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }
  .solutions-support-section {
    padding: 66px 0;
  }
  .solutions-support-section .container {
    width: min(1280px, calc(100% - 40px));
  }
  .solutions-support-section .section-head {
    margin-bottom: 32px;
  }
  .solutions-support-section .section-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .solutions-support-section .section-head p {
    font-size: 16px;
    line-height: 1.62;
  }
  .solutions-support-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solutions-support-section .solutions-support-card {
    min-height: 270px;
    padding: 74px 24px 24px;
  }
  .solutions-support-section .solutions-support-card::before {
    top: 30px;
    left: 24px;
  }
  .solutions-support-section .solutions-support-icon {
    width: 68px;
    height: 68px;
  }
  .solutions-support-section .solutions-support-icon img {
    width: 68px;
    height: 68px;
  }
  .solutions-support-section .solutions-support-card h3 {
    font-size: 23px;
  }
  .solutions-method-section {
    padding: 66px 0;
  }
  .solutions-method-section .container {
    width: min(1320px, calc(100% - 40px));
  }
  .solutions-method-section .section-head {
    margin-bottom: 32px;
  }
  .solutions-method-section .section-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .solutions-method-section .section-head p {
    font-size: 16px;
    line-height: 1.62;
  }
  .solutions-method-grid {
    gap: 46px;
  }
  .solutions-method-card h3 {
    min-height: 66px;
    height: auto;
    font-size: 18px;
  }
  .solutions-method-list {
    padding: 30px 20px 20px;
  }
  .solutions-method-item {
    grid-template-columns: 58px 1px minmax(0, 1fr);
    gap: 16px;
    min-height: 72px;
  }
  .solutions-method-icon {
    width: 50px;
    height: 50px;
  }
  .solutions-method-icon svg {
    width: 30px;
    height: 30px;
  }
  .solutions-method-item p {
    font-size: 17px;
  }
  .solutions-method-summary {
    grid-template-columns: 48px 1px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 18px;
  }
  .solutions-method-summary p {
    font-size: 18px;
  }
  .solutions-applications-section {
    padding: 66px 0;
  }
  .solutions-applications-section .container {
    width: min(1420px, calc(100% - 40px));
  }
  .solutions-applications-section .section-head {
    margin-bottom: 32px;
  }
  .solutions-applications-section .section-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .solutions-applications-section .section-head p {
    font-size: 16px;
    line-height: 1.62;
  }
  .solutions-applications-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .solutions-applications-section .solutions-application-card {
    min-height: auto;
  }
  .solutions-application-media {
    height: 214px;
  }
  .solutions-application-body {
    padding: 62px 24px 34px;
  }
  .solutions-application-icon {
    top: -38px;
    left: 24px;
    width: 76px;
    height: 76px;
  }
  .solutions-application-icon svg {
    width: 42px;
    height: 42px;
  }
  .solutions-application-card h3,
  .solutions-application-card p {
    max-width: none;
  }
  .solutions-application-card h3 {
    font-size: 25px;
  }
  .solutions-application-card p {
    font-size: 16px;
  }
  .solutions-difference-section {
    padding: 66px 0;
  }
  .solutions-difference-section .container {
    width: min(1440px, calc(100% - 40px));
  }
  .solutions-difference-section .section-head {
    margin-bottom: 32px;
  }
  .solutions-difference-section .section-head h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .solutions-difference-section .section-head p {
    font-size: 16px;
    line-height: 1.62;
  }
  .solutions-difference-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .solutions-difference-section .solutions-difference-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 22px 20px;
  }
  .solutions-difference-icon,
  .solutions-difference-icon img {
    width: 86px;
    height: 86px;
  }
  .solutions-difference-number {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .solutions-difference-card h3 {
    max-width: none;
    font-size: 22px;
  }
  .solutions-difference-line {
    margin: 16px 0 14px;
  }
  .solutions-difference-card p {
    max-width: none;
    font-size: 16px;
  }
  .home-art-frame {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(245, 250, 252, 0.98) 0%, rgba(245, 250, 252, 0.94) 58%, rgba(245, 250, 252, 0.54) 100%),
      url("../images/hero-eversteel-global.webp") 47% center / auto 100% no-repeat;
  }
  .home-hero-inner {
    min-height: 620px;
  }
  .home-hero-copy {
    width: 100%;
    padding: 58px 0 54px;
  }
  .home-hero-copy h1 {
    max-width: 350px;
    font-size: 42px;
    line-height: 1.08;
  }
  .home-hero-tagline {
    max-width: 320px;
    margin-top: 18px;
    font-size: 21px;
  }
  .home-hero-copy p:not(.home-hero-tagline) {
    max-width: 330px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.62;
  }
  .home-hero-actions {
    max-width: 330px;
    gap: 10px;
    margin-top: 24px;
  }
  .home-hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
  }
  .home-hero-labels {
    display: none;
  }
  .why-section {
    padding: 70px 0 56px;
  }
  .why-section::before {
    top: 0;
    right: -210px;
    width: 520px;
    opacity: 0.1;
  }
  .why-intro h2 {
    font-size: 38px;
  }
  .why-intro p {
    font-size: 16px;
  }
  .why-card-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 62px;
  }
  .why-card {
    min-height: 260px;
    padding: 56px 24px 26px;
  }
  .why-icon {
    top: -42px;
    left: 24px;
    width: 84px;
    height: 84px;
  }
  .why-card h3 {
    font-size: 25px;
  }
  .why-card p {
    margin-top: 28px;
  }
  .why-more {
    width: 100%;
    min-width: 0;
  }
  .section {
    padding: 66px 0;
  }
  .home-blueprint-section {
    scroll-margin-top: 68px;
    padding: 64px 0 60px;
  }
  .home-blueprint-section::before {
    background-position: right top;
    background-size: auto 100%;
    opacity: 0.18;
  }
  .blueprint-section .home-blueprint-head h2 {
    font-size: 38px;
    line-height: 1.1;
  }
  .blueprint-section .home-blueprint-head p {
    font-size: 16px;
  }
  .blueprint-card-grid {
    grid-template-columns: 1fr;
  }
  .blueprint-solution-card {
    min-height: auto;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }
  .blueprint-solution-icon {
    width: 68px;
    height: 68px;
  }
  .blueprint-cta {
    width: 100%;
    min-width: 0;
  }
  .home-industries-section {
    padding: 66px 0;
  }
  .section-head.home-industries-head h2 {
    font-size: 38px;
    line-height: 1.1;
  }
  .home-industries-head p {
    font-size: 16px;
  }
  .industry-card-grid {
    grid-template-columns: 1fr;
  }
  .industry-card,
  .industry-card-body {
    min-height: 0;
  }
  .industry-card {
    aspect-ratio: 1.28;
  }
  .industries-cta {
    width: 100%;
    min-width: 0;
  }
  .section-head h2,
  .cta-band h2 {
    font-size: 34px;
  }
  .solutions-cta-band {
    min-height: 640px;
    padding: 84px 0 88px;
  }
  .solutions-cta-band::before {
    background-position: 64% center;
    filter: brightness(1.36) contrast(0.94);
  }
  .solutions-cta-band::after {
    background: linear-gradient(90deg, rgba(7, 9, 11, 0.96) 0%, rgba(9, 11, 13, 0.88) 58%, rgba(9, 11, 13, 0.64) 100%);
  }
  .solutions-cta-band .cta-inner {
    width: min(1420px, calc(100% - 40px));
  }
  .solutions-cta-band h2 {
    max-width: 560px;
    font-size: 40px;
    line-height: 1.14;
    margin-top: 22px;
  }
  .cta-band.industries-cta-band {
    min-height: 610px;
    padding: 84px 0 88px;
  }
  .industries-cta-band::before {
    background-position: 62% center;
  }
  .industries-cta-band::after {
    background: linear-gradient(90deg, rgba(4, 24, 42, 0.98) 0%, rgba(5, 28, 48, 0.92) 64%, rgba(6, 31, 52, 0.58) 100%);
  }
  .industries-cta-band .cta-inner {
    width: calc(100% - 40px);
  }
  .cta-band.industries-cta-band h2 {
    max-width: 560px;
    margin-top: 22px;
    font-size: 40px;
    line-height: 1.14;
  }
  .cta-band.industries-cta-band p {
    max-width: 560px;
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.65;
  }
  .industries-cta-band .hero-actions {
    width: 100%;
    margin-top: 30px;
  }
  .industries-cta-band .btn-primary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
  }
  .solutions-cta-band p {
    max-width: none;
    font-size: 16px;
    line-height: 1.65;
    margin-top: 26px;
  }
  .solutions-cta-band .hero-actions {
    width: 100%;
    margin-top: 30px;
  }
  .solutions-cta-band .btn-primary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
  }
  .engineering-detail-section {
    min-height: 0;
    padding: 66px 0;
    background:
      linear-gradient(180deg, rgba(247, 250, 252, 0.18) 0%, rgba(247, 250, 252, 0.62) 46%, rgba(247, 250, 252, 0.82) 72%, rgba(247, 250, 252, 0.9) 100%),
      linear-gradient(90deg, #f7fafc 0%, rgba(247, 250, 252, 0.96) 54%, rgba(247, 250, 252, 0.56) 100%),
      url("../images/engineering-bg2.webp") right top / auto 100% no-repeat;
  }
  .engineering-detail-inner {
    min-height: 0;
    display: block;
  }
  .engineering-detail-section .section-head {
    max-width: none;
  }
  .engineering-detail-section .section-head h2 {
    max-width: 420px;
    font-size: 38px;
  }
  .engineering-detail-section .section-head p {
    max-width: none;
    font-size: 16px;
  }
  .engineering-detail-section .section-head p::before {
    width: 58px;
    margin-bottom: 20px;
  }
  .engineering-detail-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    margin: 38px 64px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(31, 95, 151, 0.18);
  }
  .engineering-detail-point:nth-child(odd) {
    border-left: 0;
  }
  .engineering-detail-point img {
    width: 54px;
    height: 54px;
  }
  .engineering-detail-point h3 {
    font-size: 15px;
  }
  .card-grid.three,
  .card-grid.four,
  .card-grid.six,
  .card-grid.eight,
  .card-grid.twelve,
  .contact-help-grid,
  .contact-reasons-grid,
  .image-card-grid.three,
  .image-card-grid.four,
  .process-line,
  .csr-grid,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-help-section {
    padding: 66px 0 72px;
  }
  .contact-help-container {
    width: calc(100% - 32px);
  }
  .contact-help-section .section-head {
    margin-bottom: 34px;
  }
  .contact-help-section .section-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .contact-help-card {
    min-height: 0;
    padding: 30px 24px 32px;
  }
  .contact-help-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 26px;
  }
  .contact-help-card h3 {
    font-size: 24px;
  }
  .contact-help-card p {
    font-size: 16px;
    line-height: 1.56;
  }
  .contact-reasons-section {
    padding: 66px 0 72px;
  }
  .contact-reasons-container {
    width: calc(100% - 32px);
  }
  .contact-reasons-section .section-head {
    margin-bottom: 34px;
  }
  .contact-reasons-section .section-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .contact-reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-reason-card {
    min-height: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 20px 28px;
  }
  .contact-reason-card::after {
    right: 20px;
    bottom: 18px;
    font-size: 22px;
  }
  .contact-reason-icon {
    width: 86px;
    height: 86px;
  }
  .contact-reason-card h3 {
    max-width: none;
    margin-top: 2px;
    font-size: 21px;
  }
  .contact-reason-card h3::after {
    margin: 14px 0 16px;
  }
  .contact-reason-card p {
    max-width: none;
    padding-right: 16px;
    font-size: 15px;
    line-height: 1.52;
  }
  .contact-global-section {
    padding: 68px 0 74px;
  }
  .contact-global-container {
    width: calc(100% - 32px);
    gap: 32px;
  }
  .contact-global-map {
    min-height: 260px;
  }
  .contact-global-copy h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .contact-global-copy p {
    max-width: none;
    font-size: 16px;
    line-height: 1.64;
  }
  .contact-faq-section {
    padding: 70px 0 78px;
    background-position: center top;
  }
  .contact-faq-section .container {
    width: calc(100% - 32px);
  }
  .contact-faq-section .section-head {
    margin-bottom: 28px;
  }
  .contact-faq-section .section-head h2 {
    max-width: none;
    font-size: 34px;
    line-height: 1.12;
  }
  .contact-faq-table {
    gap: 12px;
  }
  .contact-faq-row summary {
    min-height: 64px;
    grid-template-columns: 30px minmax(0, 1fr) 16px;
    gap: 12px;
    padding: 0 16px;
  }
  .contact-faq-toggle {
    width: 28px;
    height: 28px;
  }
  .contact-faq-toggle::before,
  .contact-faq-toggle::after {
    width: 12px;
  }
  .contact-faq-question {
    font-size: 16px;
    line-height: 1.36;
  }
  .contact-faq-arrow {
    width: 12px;
    height: 12px;
  }
  .contact-faq-answer {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 18px 24px 58px;
  }
  .contact-faq-answer p {
    padding-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }
  .contact-faq-visual {
    display: none;
  }
  .priority-head,
  .priority-row {
    grid-template-columns: 1fr;
  }
  .priority-head span,
  .priority-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
  .engineering-feature-grid {
    gap: 14px;
    padding: 0;
    background: transparent;
  }
  .engineering-overview-section::before,
  .engineering-overview-section::after {
    display: none;
  }
  .engineering-feature-grid::before,
  .engineering-feature-grid::after {
    display: none;
  }
  .engineering-feature-grid .info-card,
  .engineering-feature-grid .info-card:last-child {
    min-height: auto;
    padding: 0 22px 62px;
    border: 1px solid var(--line);
    border-radius: 6px;
    clip-path: none;
  }
  .engineering-feature-grid .info-card h3,
  .engineering-feature-grid .info-card p {
    max-width: none;
  }
  .engineering-feature-grid .info-card p {
    margin-top: 14px;
  }
  .engineering-feature-grid .info-card-media {
    margin: 0 -22px 22px;
  }
  .engineering-feature-grid .info-card-number {
    left: 22px;
  }
  .engineering-approach-section::before {
    right: -220px;
    width: 560px;
    opacity: 0.1;
  }
  .engineering-approach-section {
    padding: 66px 0;
  }
  .engineering-approach-section .section-head {
    margin-bottom: 36px;
  }
  .engineering-approach-section .section-head h2 {
    font-size: 38px;
  }
  .engineering-approach-section .process-line {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 0;
  }
  .engineering-approach-section .process-line::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 95, 151, 0.18) 0%, rgba(31, 95, 151, 0.36) 16%, rgba(31, 95, 151, 0.36) 84%, rgba(31, 95, 151, 0.18) 100%);
  }
  .engineering-approach-section .process-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 18px;
    padding: 0;
  }
  .engineering-approach-section .process-step:not(:last-child)::after {
    display: none;
  }
  .engineering-approach-section .process-step span {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 60px;
    height: 60px;
    margin: 0;
    font-size: 18px;
  }
  .engineering-approach-section .process-step span::before,
  .engineering-approach-section .process-step span::after {
    display: none;
  }
  .engineering-approach-section .process-icon {
    grid-column: 2;
    width: 78px;
    height: 78px;
    padding: 4px;
    margin: 0 0 14px;
  }
  .engineering-approach-section .process-step h3,
  .engineering-approach-section .process-step p {
    grid-column: 2;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
  .engineering-approach-section .process-step p {
    margin-top: 12px;
  }
  .engineering-capabilities-section .engineering-icon-grid .info-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .engineering-capabilities-section .info-card-icon {
    width: 70px;
    height: 70px;
    margin-left: -6px;
  }
}

@media (max-width: 520px) {
  .float-social {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px 18px;
    background: #101519;
  }
  .float-social a,
  .float-social button {
    width: 42px;
    height: 42px;
  }
  .fs-tip {
    display: none;
  }
  .solutions-cta-band {
    min-height: 580px;
    padding: 72px 0 78px;
  }
  .industries-full-hero {
    min-height: 680px;
    background-position: 6% center;
  }
  .industries-full-hero .hero-grid {
    width: calc(100% - 32px);
    min-height: 680px;
    padding: 56px 0 118px;
  }
  .industries-full-hero .hero-copy,
  .industries-full-hero h1,
  .industries-full-hero .lead,
  .industries-full-hero .hero-actions {
    max-width: 300px;
  }
  .industries-full-hero h1 {
    font-size: 38px;
  }
  .industries-full-hero .lead {
    font-size: 15px;
    line-height: 1.58;
  }
  .industries-full-hero .btn {
    min-height: 54px;
    font-size: 14px;
  }
  .industries-full-hero .btn::after {
    margin-left: 10px;
    font-size: 20px;
  }
  .industries-full-hero .btn-outline {
    min-height: 36px;
  }
  .industries-support-section .container {
    width: calc(100% - 32px);
  }
  .industries-support-media {
    height: 174px;
  }
  .industries-support-body {
    min-height: 0;
    padding: 54px 20px 24px;
  }
  .industries-support-icon {
    left: 20px;
    width: 62px;
    height: 62px;
  }
  .industries-support-icon svg {
    width: 34px;
    height: 34px;
  }
  .industries-support-arrow {
    right: 20px;
  }
  .industries-support-card h3 {
    font-size: 23px;
  }
  .industries-support-card p {
    font-size: 16px;
    line-height: 1.5;
  }
  .industries-challenges-section .container {
    width: calc(100% - 32px);
  }
  .industries-challenges-head h2 {
    font-size: 32px;
  }
  .industries-challenge-media {
    height: 174px;
  }
  .industries-challenge-body {
    padding: 82px 20px 26px;
  }
  .industries-challenge-icon {
    left: 20px;
    width: 74px;
    height: 74px;
  }
  .industries-challenge-icon svg {
    width: 38px;
    height: 38px;
  }
  .industries-challenge-card h3 {
    font-size: 22px;
  }
  .section.industries-engineering-matters-section {
    padding: 64px 0 72px;
  }
  .industries-engineering-matters-section .container {
    width: calc(100% - 32px);
  }
  .industries-engineering-matters-media img {
    aspect-ratio: 1.16;
  }
  .industries-engineering-matters-section .section-head h2 {
    font-size: 30px;
    line-height: 1.16;
  }
  .industries-engineering-matters-section .section-head p {
    font-size: 15px;
    line-height: 1.62;
  }
  .industries-applications-section .container {
    width: calc(100% - 32px);
  }
  .industries-applications-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  .industries-application-card {
    min-height: 302px;
  }
  .industries-application-overlay {
    min-height: 132px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
  }
  .industries-application-icon {
    width: 54px;
    height: 54px;
  }
  .industries-application-icon svg {
    width: 31px;
    height: 31px;
  }
  .industries-application-card h3 {
    font-size: 20px;
    line-height: 1.14;
  }
  .industries-application-card p {
    font-size: 14px;
    line-height: 1.42;
  }
  .industries-priorities-section .container {
    width: calc(100% - 32px);
  }
  .industries-priorities-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  .industries-priorities-head p {
    font-size: 15px;
    line-height: 1.52;
  }
  .industries-priority-summary {
    padding: 14px 58px 14px 16px;
  }
  .industries-priority-cell {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 2px 14px;
    font-size: 15px;
  }
  .industries-priority-icon {
    width: 48px;
    height: 48px;
  }
  .industries-priority-icon svg {
    width: 30px;
    height: 30px;
  }
  .industries-priority-toggle {
    right: 16px;
  }
  .industries-priority-detail {
    padding: 17px 18px 20px;
  }
  .solutions-cta-band::before {
    background-position: 68% center;
  }
  .solutions-cta-band .cta-inner {
    width: calc(100% - 32px);
  }
  .cta-band.industries-cta-band {
    min-height: 560px;
    padding: 72px 0 78px;
  }
  .industries-cta-band::before {
    background-position: 68% center;
  }
  .industries-cta-band .cta-inner {
    width: calc(100% - 32px);
  }
  .cta-band.industries-cta-band h2 {
    font-size: 34px;
    line-height: 1.16;
  }
  .cta-band.industries-cta-band p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.62;
  }
  .industries-cta-band .btn-primary {
    min-height: 56px;
    padding: 0 16px;
    font-size: 15px;
  }
  .solutions-cta-band h2 {
    font-size: 34px;
    line-height: 1.16;
  }
  .solutions-cta-band p {
    font-size: 15px;
    line-height: 1.62;
    margin-top: 24px;
  }
  .solutions-cta-band .btn-primary {
    min-height: 56px;
    gap: 10px;
    padding: 0 16px;
    font-size: 15px;
  }
  .solutions-cta-arrow {
    font-size: 24px;
  }
  .home-blueprint-section .blueprint-card-grid,
  .home-blueprint-section .blueprint-cta {
    width: 100%;
  }
  .home-blueprint-section .blueprint-solution-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }
  .home-blueprint-section .blueprint-solution-icon {
    width: 64px;
    height: 64px;
  }
  .engineering-case-grid .image-card-body {
    padding: 20px;
  }
  .image-card-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }
  .image-card-icon {
    width: 52px;
    height: 52px;
  }
  .image-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .solutions-difference-section .solutions-difference-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 24px 22px 26px;
  }
  .solutions-difference-icon,
  .solutions-difference-icon img {
    width: 90px;
    height: 90px;
  }
  .solutions-difference-copy {
    width: 100%;
  }
  .engineering-detail-points {
    grid-template-columns: 1fr;
    gap: 0;
    margin-right: 0;
  }
  .engineering-detail-point,
  .engineering-detail-point:nth-child(odd) {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 0;
    padding: 16px 0;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(31, 95, 151, 0.16);
  }
  .engineering-detail-point:first-child {
    border-top: 0;
  }
  .engineering-detail-point img {
    margin: 0;
  }
  .engineering-detail-point h3 {
    max-width: none;
    margin: 0;
  }
}

/* SEO commercial pages, engineering resources, and capability navigation */
.site-nav > ul > li {
  position: relative;
}

.nav-dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #263039;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.on .nav-dropdown-toggle {
  background: #e8eef3;
  outline: none;
}

.nav-submenu,
.site-nav .nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  display: none;
  width: 280px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(21, 26, 30, 0.16);
}

.nav-dropdown.open .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown:hover .nav-submenu {
  display: grid;
}

.site-nav .nav-submenu a {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  font-weight: 600;
}

.blueprint-solution-card {
  color: inherit;
  text-decoration: none;
}

.home-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.content-narrow {
  max-width: 900px;
}

.hero-visual-note {
  max-width: 620px;
  margin: 20px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--green);
  color: #53616d;
  font-size: 13px;
  line-height: 1.55;
}

.seo-commercial-hero {
  min-height: 650px;
  background-image:
    linear-gradient(90deg, rgba(247, 249, 250, 0.99) 0%, rgba(247, 249, 250, 0.94) 43%, rgba(247, 249, 250, 0.62) 66%, rgba(247, 249, 250, 0.14) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}

.seo-commercial-hero .hero-grid {
  grid-template-columns: minmax(0, 760px);
  min-height: 650px;
  padding: 90px 0;
}

.seo-answer-section {
  padding: 92px 0;
}

.seo-answer-section h2,
.seo-engineering-section h2,
.seo-applications-section h2,
.seo-quality-section h2,
.resources-hub-intro h2,
.resource-section h2 {
  margin: 18px 0 20px;
  color: var(--graphite);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.answer-lead,
.resource-summary {
  margin: 0;
  color: #35414c;
  font-size: 20px;
  line-height: 1.75;
}

.seo-capability-section,
.seo-process-section,
.seo-quality-section {
  padding: 96px 0;
}

.seo-capability-grid .info-card {
  border-top: 3px solid var(--logo-blue);
}

.seo-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.seo-engineering-section,
.seo-applications-section {
  padding: 108px 0;
}

.seo-two-column p {
  color: #4c5964;
  font-size: 17px;
}

.engineering-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.engineering-checklist li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border-bottom: 1px solid var(--line);
  color: #2f3b44;
  font-weight: 600;
}

.engineering-checklist li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 16px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  color: var(--logo-blue);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.application-tag-list span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--logo-blue);
  background: #fff;
  font-weight: 700;
}

.related-links-section {
  padding: 96px 0;
}

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

.related-link-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--logo-blue);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-link-card:hover,
.related-link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  outline: none;
}

.related-link-card h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.related-link-card p {
  margin: 0;
  color: var(--muted);
}

.related-link-arrow {
  margin-top: auto;
  padding-top: 24px;
  color: var(--logo-blue);
  font-size: 26px;
}

.seo-faq-list .faq-item {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.seo-faq-list .faq-item summary {
  padding: 20px 4px;
  cursor: pointer;
  color: var(--graphite);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.seo-faq-list .faq-item p {
  max-width: 780px;
  padding: 0 4px 22px;
}

.seo-capability-section .reveal,
.seo-process-section .reveal,
.seo-faq-section .reveal,
.related-links-section .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.resources-hub-hero,
.resource-article-hero {
  padding: 112px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  color: #fff;
}

.resources-hub-hero h1,
.resource-article-hero h1 {
  max-width: 1050px;
  margin: 22px 0 24px;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.04;
}

.resources-hub-hero p,
.resource-article-hero .resource-summary {
  max-width: 900px;
  margin: 0;
  color: rgba(255,255,255,0.83);
  font-size: 20px;
  line-height: 1.75;
}

.resources-hub-hero .kicker,
.resource-article-hero .kicker {
  color: #9bc7ee;
}

.resources-hub-hero .kicker::before,
.resource-article-hero .kicker::before {
  background: #9bc7ee;
}

.resources-hub-intro {
  padding: 92px 0;
}

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

.resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.resource-card-number {
  color: var(--logo-blue);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.resource-card h2 {
  margin: 22px 0 14px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.resource-card h2 a {
  text-decoration: none;
}

.resource-card h2 a:hover,
.resource-card h2 a:focus-visible {
  color: var(--logo-blue);
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.resource-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.resource-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: rgba(255,255,255,0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.resource-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  gap: 70px;
  justify-content: center;
  padding-top: 92px;
  padding-bottom: 108px;
}

.resource-content {
  min-width: 0;
}

.resource-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--logo-blue);
  background: #fff;
}

.resource-toc strong {
  font-family: "Space Grotesk", Arial, sans-serif;
}

.resource-toc ol {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.resource-toc a {
  text-decoration: none;
}

.resource-toc a:hover,
.resource-toc a:focus-visible {
  color: var(--logo-blue);
  text-decoration: underline;
}

.resource-section {
  scroll-margin-top: 110px;
  padding: 0 0 66px;
  margin: 0 0 66px;
  border-bottom: 1px solid var(--line);
}

.resource-section:last-child {
  margin-bottom: 0;
}

.resource-section h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.resource-section p,
.resource-section li,
.resource-disclaimer p,
.engineering-note p {
  color: #3f4c56;
  font-size: 17px;
  line-height: 1.75;
}

.resource-section ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.resource-section .process-line {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
}

.resource-section .process-step {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 4px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.resource-section .process-step > span {
  grid-row: 1 / span 2;
}

.resource-section .process-step h3,
.resource-section .process-step p {
  margin: 0;
}

.table-scroll {
  max-width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}

.engineering-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.engineering-table th,
.engineering-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
}

.engineering-table th:last-child,
.engineering-table td:last-child {
  border-right: 0;
}

.engineering-table th {
  background: var(--blue);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.engineering-table tr:last-child td {
  border-bottom: 0;
}

.engineering-note,
.resource-disclaimer {
  margin-top: 30px;
  padding: 24px;
  border-left: 4px solid var(--logo-blue);
  background: #edf3f8;
}

.engineering-note strong,
.resource-disclaimer strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
}

.engineering-note p,
.resource-disclaimer p {
  margin: 8px 0 0;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav > ul {
    display: grid;
    gap: 6px;
  }
  .site-nav a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-submenu,
  .site-nav .nav-submenu {
    position: static;
    width: 100%;
    margin-top: 4px;
    padding: 6px 6px 6px 18px;
    border: 0;
    border-left: 2px solid var(--logo-blue);
    border-radius: 0;
    box-shadow: none;
  }
  .nav-dropdown:hover .nav-submenu {
    display: none;
  }
  .nav-dropdown.open .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: grid;
  }
  .related-link-grid,
  .resource-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .resource-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .resource-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }
  .seo-commercial-hero,
  .seo-commercial-hero .hero-grid {
    min-height: auto;
  }
  .seo-commercial-hero {
    background-position: 62% center;
  }
  .seo-commercial-hero .hero-grid {
    padding: 58px 0 66px;
  }
  .seo-commercial-hero .hero-copy {
    padding: 24px;
    background: rgba(247,249,250,0.9);
  }
  .seo-two-column {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .application-tag-list,
  .related-link-grid,
  .resource-card-grid {
    grid-template-columns: 1fr;
  }
  .resources-hub-hero,
  .resource-article-hero {
    padding: 78px 0 70px;
  }
  .resources-hub-hero h1,
  .resource-article-hero h1 {
    font-size: 42px;
  }
  .resources-hub-hero p,
  .resource-article-hero .resource-summary,
  .answer-lead {
    font-size: 17px;
  }
  .resource-layout {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .resource-section {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }
  .resource-card,
  .related-link-card {
    min-height: 0;
  }
}
