:root {
  --navy: #071b3a;
  --navy-2: #0c2b58;
  --blue: #0969f2;
  --blue-2: #2f82ff;
  --sky: #eaf4ff;
  --line: #d9e5f2;
  --muted: #60708a;
  --light: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(7, 27, 58, 0.12);
  --radius: 18px;
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--light);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
}

.page-shell {
  max-width: 1440px;
  padding-inline: clamp(16px, 4vw, 72px);
}

.section-pad {
  padding-block: clamp(51.2px, 7vw, 50px);
}

.eyebrow {
  margin: 0 0 13.6px;
  color: var(--blue);
  font-size: 12.48px;
  font-weight: 900;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.section-intro h2,
.cta-content h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 53.6px);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.section-intro p {
  margin: 16px 0 25.6px;
  color: var(--muted);
  max-width: 512px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11.2px;
  min-height: 50.4px;
  padding: 13.6px 23.2px;
  border-radius: 999px;
  border-width: 0;
  font-size: 13.44px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(9, 105, 242, 0.22);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #005ce0;
  color: var(--white);
}

.btn-outline-primary {
  color: var(--blue);
  border: 1px solid rgba(9, 105, 242, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background: var(--blue);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.site-header {
  background: rgba(247, 251, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 1030;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(7, 27, 58, 0.08);
  box-shadow: 0 12px 35px rgba(7, 27, 58, 0.08);
}

.navbar {
  min-height: var(--header-h);
  padding-block: 9.6px;
}

.logo-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  color: var(--navy);
  text-transform: uppercase;
}

.logo-main {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 900;
  letter-spacing: 0.48px;
}

.logo-sub {
  margin-top: 5.12px;
  font-size: 9.28px;
  font-weight: 800;
  letter-spacing: 5.44px;
}

.navbar-toggler {
  border: 0;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2.88px rgba(9, 105, 242, 0.18);
}

.navbar-nav {
  gap: 7.2px;
}

.navbar .nav-link {
  position: relative;
  padding: 8.8px 12px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 12.48px;
  font-weight: 900;
  text-transform: uppercase;
}

.navbar .nav-link i {
  font-size: 9.92px;
}

.navbar .nav-link::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4.48px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--blue);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nav-tree {
  position: relative;
}

.nav-tree-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
}

.nav-tree-toggle[aria-expanded="true"] {
  color: var(--blue);
}

.nav-dropdown,
.nav-submenu {
  position: absolute;
  z-index: 1050;
  display: grid;
  min-width: 250px;
  padding: 10.4px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(7, 27, 58, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown {
  top: 100%;
  left: 0;
}

.nav-menu,
.nav-submenu {
  padding: 10.4px;
}

.nav-menu {
  display: grid;
  gap: 2.4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6.4px;
}

.has-submenu::after {
  position: absolute;
  top: 0;
  right: -12.8px;
  bottom: 0;
  width: 12.8px;
  content: "";
}

.nav-menu-item > a,
.nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 41.6px;
  padding: 10.4px 12.8px;
  color: var(--navy);
  border-radius: 7px;
  font-size: 13.44px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu-item > a:hover,
.nav-submenu a:hover {
  color: var(--blue);
  background: var(--sky);
}

.nav-sub-toggle {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-sub-toggle:hover,
.has-submenu.is-open > .nav-sub-toggle {
  color: var(--blue);
  background: var(--sky);
}

.nav-submenu {
  top: 0;
  left: calc(100% - 1px);
}

.nav-tree:hover > .nav-dropdown,
.nav-tree.is-open > .nav-dropdown,
.has-submenu:hover > .nav-submenu,
.has-submenu.is-open > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7.2px;
  padding: 8.8px 6.4px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 13.12px;
  font-weight: 900;
}

.language-switch i {
  color: var(--blue);
  font-size: 10.56px;
}

.hero-section {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #f3f8fd;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(246, 250, 254, 0.98) 0%, rgba(246, 250, 254, 0.92) 28%, rgba(246, 250, 254, 0.35) 55%, rgba(246, 250, 254, 0.04) 100%),
    linear-gradient(180deg, rgba(246, 250, 254, 0.34) 0%, rgba(246, 250, 254, 0.1) 62%, rgba(246, 250, 254, 0.98) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(760px - var(--header-h));
  grid-template-rows: 1fr auto;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  padding-top: clamp(32px, 8vw, 80px);
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48.8px, 7.2vw, 106.4px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 500px;
  margin: 24.8px 0 32px;
  color: #1e3353;
  font-size: 16px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14.4px;
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
  padding: 32px 0 48px;
}

.feature-item {
  display: grid;
  gap: 12px;
  align-content: start;
}

.feature-item i {
  width: 49.6px;
  height: 49.6px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid rgba(9, 105, 242, 0.45);
  border-radius: 14px;
  font-size: 25.6px;
}

.feature-item h2 {
  max-width: 128px;
  margin: 0;
  color: var(--navy);
  font-size: 11.84px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: clamp(16px, 2.5vw, 56px);
  bottom: 120px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 9.6px;
  color: var(--blue);
  font-size: 11.84px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  animation: floatArrow 1.4s ease-in-out infinite;
}

.process-section {
  margin-top: 20px;
  padding-top: 0;
  background: linear-gradient(180deg, rgba(244, 248, 252, 0) 0%, var(--light) 30%);
}

.process-panel {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 19.2px;
  padding: clamp(19.2px, 2.5vw, 32px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 86px 0 86px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.process-intro {
  padding: 16px 8px;
}

.process-intro h2 {
  font-size: clamp(30.4px, 2.7vw, 46.4px);
}

.process-cards {
  display: grid;
  gap: 15.2px;
}

.process-card,
.sector-card,
.sector-lead {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.process-card {
  min-height: 320px;
  border-radius: 12px;
  background: var(--navy);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(7, 27, 58, 0.2);
}

.process-card img,
.sector-card img,
.sector-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.process-card img {
  position: absolute;
  inset: 0;
}

.process-card:hover img,
.sector-card:hover img,
.sector-lead:hover img {
  transform: scale(1.06);
}

.card-overlay,
.sector-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 27, 58, 0.08) 0%, rgba(7, 27, 58, 0.86) 100%);
}

.card-overlay.warm {
  background: linear-gradient(180deg, rgba(22, 36, 60, 0.08) 0%, rgba(7, 27, 58, 0.78) 62%, rgba(8, 13, 23, 0.96) 100%);
}

.process-content {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 34.4px;
  color: var(--white);
}

.process-content span {
  margin-bottom: 16px;
  font-size: 40.8px;
  font-weight: 900;
  line-height: 1;
}

.process-content h3 {
  margin: 0 0 8.8px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.process-content p {
  min-height: 48px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.6px;
}

.process-content a {
  width: 39.2px;
  height: 39.2px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.products-section {
  background: var(--light);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(217, 229, 242, 0.85);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(7, 27, 58, 0.14);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #edf3f8;
}

.product-body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 18.4px 76px 72px 18.4px;
}

.product-body h3 {
  margin: 0 0 10.4px;
  color: var(--navy);
  font-size: clamp(13.12px, 1vw, 15.2px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13.44px;
}

.product-body a {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 37.6px;
  height: 37.6px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(9, 105, 242, 0.18);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-body a {
  color: var(--white);
  background: var(--blue);
  transform: rotate(90deg);
}

.sectors-section {
  overflow: hidden;
  background: var(--navy);
}

.sector-layout {
  display: grid;
  grid-template-columns: minmax(330px, 380px) minmax(0, 1fr);
  align-items: stretch;
}

.sector-lead,
.sector-card {
  min-height: 320px;
}

.sector-lead {
  display: flex;
  align-items: end;
  padding: clamp(21.6px, 2.6vw, 44px);
}

.sector-lead > div:not(.sector-overlay) {
  position: relative;
  z-index: 2;
}

.sector-lead > img,
.sector-card > img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sector-lead .sector-overlay,
.sector-card .sector-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 27, 58, 0.92), rgba(7, 27, 58, 0.42)), linear-gradient(180deg, rgba(7, 27, 58, 0.08), rgba(0, 0, 0, 0.68));
}

.sector-lead h2 {
  max-width: 360px;
  margin: 0 0 18.4px;
  color: var(--white);
  font-size: clamp(34.4px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.sector-controls {
  display: flex;
  gap: 12px;
  margin: 0 0 21.6px;
}

.sector-control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.sector-control:hover,
.sector-control:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.sector-control:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.sector-carousel {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.sector-carousel-track {
  display: flex;
  height: 100%;
  min-height: 420px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.sector-carousel-track::-webkit-scrollbar {
  display: none;
}

.sector-card {
  flex: 0 0 clamp(235px, 22vw, 315px);
  display: flex;
  align-items: end;
  height: auto;
  padding: 32px 21.6px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  scroll-snap-align: start;
}

.sector-card h3 {
  position: relative;
  z-index: 2;
  max-width: 190px;
  margin: 0;
  font-size: 21.6px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.sector-card > i {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.why-section {
  position: relative;
  overflow: hidden;
  background: #eef6fe;
}

.why-section::before,
.why-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(120px, 14vw, 210px);
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.95;
  pointer-events: none;
}

.why-section::before {
  left: 0;
  background-image: url("assets/water-splash-left.png");
  background-position: left center;
}

.why-section::after {
  right: 0;
  background-image: url("assets/water-splash-right.png");
  background-position: right center;
}

.why-section .page-shell {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 27, 58, 0.08);
}

.counter-card {
  display: grid;
  place-items: center;
  gap: 7.2px;
  min-height: 155px;
  background: #eef6fe;
  text-align: center;
}

.counter-card i {
  color: var(--blue-2);
  font-size: 39.2px;
}

.counter-card strong {
  color: var(--navy);
  font-size: clamp(32px, 3vw, 49.6px);
  font-weight: 900;
  line-height: 1;
}

.counter-card span {
  color: var(--muted);
  font-size: 13.76px;
  font-weight: 700;
}

.references-section {
  background: var(--white);
}

.reference-card {
  position: relative;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid rgba(217, 229, 242, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 27, 58, 0.07);
  text-align: center;
}

.reference-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23.2px, 2vw, 35.2px);
  font-weight: 900;
  text-transform: uppercase;
}

.title-line {
  width: 54px;
  height: 3px;
  margin: 14.4px auto 32px;
  background: var(--blue);
  border-radius: 99px;
}

.reference-carousel-shell {
  position: relative;
  margin: 6.4px auto 18.4px;
  padding-inline: clamp(48.8px, 5vw, 72px);
}

.logo-carousel {
  overflow: hidden;
  padding-block: 12.8px 20px;
  scrollbar-width: none;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

.logo-track {
  display: flex;
  gap: clamp(32px, 5vw, 89.6px);
  align-items: center;
  width: max-content;
}

.logo-name {
  flex: 0 0 auto;
  min-width: 110px;
  color: var(--navy);
  font-size: clamp(24.8px, 3vw, 39.2px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  filter: saturate(1.2);
}

.reference-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(7, 27, 58, 0.12);
  transform: translateY(-50%);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.reference-control:hover,
.reference-control:focus-visible {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(9, 105, 242, 0.22);
  transform: translateY(-50%) scale(1.04);
}

.reference-control-prev {
  left: 0;
}

.reference-control-next {
  right: 0;
}

.logo-name.green {
  color: #168342;
}

.logo-name.blue {
  color: #164b97;
}

.logo-name.navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8.8px 14.4px;
  color: var(--white);
  background: #123c76;
  border-radius: 8px;
  font-size: 24px;
}

.logo-name.red,
.logo-name.script {
  color: #c7282e;
}

.logo-name.script {
  font-style: italic;
  font-weight: 800;
}

.logo-name.oval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 52px;
  color: var(--white);
  background: #289447;
  border-radius: 999px;
  font-size: 23.2px;
}

.logo-name.orange {
  color: #d74425;
  font-size: 24.8px;
}

.reference-link {
  display: inline-flex;
  align-items: center;
  gap: 11.2px;
  color: var(--blue);
  font-size: 13.44px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  padding-bottom: clamp(32px, 5vw, 64px);
  background: var(--white);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  background: var(--sky);
}

.cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}

.cta-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(234, 244, 255, 0.96) 0%, rgba(234, 244, 255, 0.84) 48%, rgba(234, 244, 255, 0.44) 70%, rgba(234, 244, 255, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
  padding: clamp(22.4px, 4vw, 48px);
}

.cta-copy {
  min-width: 0;
  max-width: 860px;
}

.cta-content h2 {
  max-width: 620px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, max-content));
  gap: 12.8px 25.6px;
  max-width: 860px;
  margin: 28.8px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: inline-flex;
  align-items: center;
  gap: 8.8px;
  min-width: 0;
  color: var(--navy);
  font-size: 12.48px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-list i {
  color: var(--blue);
  font-size: 26.4px;
}

.cta-actions {
  display: grid;
  gap: 17.6px;
  justify-items: start;
}

.cta-actions .pill-btn {
  min-width: min(100%, 290px);
  min-height: 67.2px;
  font-size: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding-block: clamp(38.4px, 5vw, 73.6px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 80% 0%, rgba(9, 105, 242, 0.26), transparent 352px),
    linear-gradient(135deg, #06172f 0%, #071d40 100%);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-logo {
  margin-bottom: 19.2px;
  color: var(--white);
}

.footer-brand p {
  max-width: 300px;
  margin: 0 0 21.6px;
}

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

.social-links a,
.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.25s ease;
}

.social-links a {
  font-size: 19.2px;
}

.social-links a:hover,
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 8.8px;
  align-content: start;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 12.8px;
  color: var(--white);
  font-size: 15.68px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact p {
  margin: 0;
  font-size: 14.88px;
  font-style: normal;
}

.footer-contact p {
  display: flex;
  gap: 12.8px;
}

.footer-contact i {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  background: #041126;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 15.2px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13.76px;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 14.4px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.76px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--white);
}

.about-page {
  padding-top: var(--header-h);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #ffffff 100%);
}

.about-hero {
  overflow: hidden;
  padding: 44px 0 32px;
}

.about-hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr);
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
}

.about-hero-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.52) 53%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 570px;
  padding: 42px 0 42px 4px;
}

.about-hero-copy .eyebrow::after,
.about-section-head .eyebrow::after,
.value-card .eyebrow::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 13px;
  content: "";
  background: var(--blue);
}

.about-hero-copy h1 {
  margin: 40px 0 20px;
  color: var(--navy);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.02;
}

.about-lead {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.about-hero-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 485px;
  margin: 0;
  color: #1e3353;
  font-size: 18px;
  line-height: 1.85;
}

.about-hero-media {
  position: relative;
  min-height: 560px;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin-top: 38px;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.88);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.1);
}

.about-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 4px 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(7, 27, 58, 0.11);
}

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

.about-stat i {
  grid-row: span 2;
  color: var(--blue);
  font-size: 36px;
}

.about-stat strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.about-stat span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.about-history {
  background: #ffffff;
}

.about-section-head {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.about-section-head .eyebrow::after {
  margin-inline: auto;
}

.about-section-head h2 {
  margin: 20px 0 22px;
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
}

.about-section-head p:not(.eyebrow) {
  margin: 0;
  color: #1e3353;
  font-size: 16px;
  line-height: 1.75;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.timeline::before {
  position: absolute;
  top: 31px;
  left: 9%;
  right: 9%;
  height: 2px;
  content: "";
  background: #9ab7d8;
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.timeline-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border: 8px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(9, 105, 242, 0.18);
}

.timeline-icon i {
  font-size: 24px;
}

.timeline-item h3 {
  margin: 28px 0 18px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.timeline-item p {
  max-width: 180px;
  margin: 0;
  color: #1e3353;
  font-size: 14px;
  line-height: 1.65;
}

.about-values {
  background: #f7fbff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.value-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 276px;
  padding: 46px 54px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.07);
}

.value-icon {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef5ff;
  border-radius: 50%;
}

.value-icon i {
  font-size: 58px;
}

.value-card .eyebrow {
  margin-bottom: 22px;
}

.value-card p:not(.eyebrow) {
  margin: 0;
  color: #1e3353;
  font-size: 16px;
  line-height: 1.75;
}

.about-experience {
  padding: 0 0 56px;
  background: #f7fbff;
}

.experience-banner {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 48px 64px;
  color: #ffffff;
  background: #005fe8;
  border-radius: 12px;
}

.experience-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 31, 90, 0.94) 0%, rgba(0, 78, 190, 0.72) 42%, rgba(0, 94, 226, 0.12) 100%);
}

.experience-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-banner > div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.experience-banner h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.experience-banner p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.solutions-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.solutions-hero {
  padding: 38px 0 28px;
  overflow: hidden;
}

.solutions-hero-panel {
  display: grid;
  grid-template-columns: minmax(330px, 0.34fr) minmax(0, 0.66fr);
  align-items: stretch;
  min-height: 320px;
  background: #ffffff;
}

.solutions-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px 36px 0;
}

.solutions-hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.solutions-title-line {
  width: 54px;
  height: 2px;
  margin: 34px 0 26px;
  background: var(--blue);
}

.solutions-hero-copy p {
  max-width: 440px;
  margin: 0;
  color: #1e3353;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.solutions-hero-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.solutions-hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.solutions-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions-grid-section {
  padding-top: 12px;
  background: #ffffff;
}

.solutions-section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.solutions-section-head h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.15;
}

.solutions-section-head p {
  margin: 0;
  color: #1e3353;
  font-size: 16px;
  font-weight: 600;
}

.solutions-row {
  align-items: stretch;
}

.solution-page-card {
  position: relative;
  display: block;
  min-height: 330px;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(7, 27, 58, 0.2);
}

.solution-page-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.solution-page-card:hover img {
  transform: scale(1.05);
}

.solution-page-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.12) 0%, rgba(7, 27, 58, 0.35) 38%, rgba(2, 13, 31, 0.94) 100%),
    linear-gradient(90deg, rgba(9, 105, 242, 0.28), rgba(7, 27, 58, 0));
}

.solution-page-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px 24px 26px;
}

.solution-page-content span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.solution-page-content h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
}

.solution-page-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.solutions-overview-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.solutions-overview-hero {
  padding: 0 0 70px;
  background: #ffffff;
}

.solutions-overview-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.39fr) minmax(0, 0.61fr);
  align-items: stretch;
  min-height: 420px;
}

.solutions-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 44px 46px 0;
}

.solutions-overview-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
}

.solutions-overview-line {
  width: 48px;
  height: 2px;
  margin: 28px 0 26px;
  background: var(--blue);
}

.solutions-overview-copy p {
  max-width: 420px;
  margin: 0;
  color: #1e3353;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.solutions-overview-media {
  position: relative;
  overflow: hidden;
}

.solutions-overview-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.76) 42%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.solutions-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.solution-areas-section {
  padding: 0 0 72px;
  background: #ffffff;
}

.solutions-overview-head {
  max-width: 740px;
  margin: 0 auto 34px;
  text-align: center;
}

.solutions-overview-head .eyebrow {
  margin-bottom: 8px;
}

.solutions-overview-head h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 900;
  line-height: 1.16;
}

.solutions-overview-head p:not(.eyebrow) {
  margin: 0;
  color: #1e3353;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.solution-overview-card {
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(7, 27, 58, 0.14);
}

.solution-overview-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  object-position: center;
}

.solution-overview-body {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 28px;
}

.solution-overview-body h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.solution-overview-body p {
  margin: 0 0 22px;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.solution-overview-body a {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.solution-overview-body a i {
  margin-left: 8px;
}

.solution-process-section {
  padding: 0 0 78px;
  background: #ffffff;
}

.solution-process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.26fr) minmax(0, 0.74fr);
  gap: 34px;
  align-items: start;
}

.solution-process-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1.18;
}

.solution-process-copy p:not(.eyebrow) {
  max-width: 330px;
  margin: 18px 0 0;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.solution-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding-top: 6px;
}

.solution-process-flow::before {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  content: "";
  background: #2a72d8;
}

.solution-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.solution-process-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #ffffff;
  border: 2px solid #2a72d8;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.solution-process-step i {
  margin: 22px 0 12px;
  color: var(--blue);
  font-size: 34px;
}

.solution-process-step h3 {
  min-height: 38px;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.solution-process-step p {
  max-width: 150px;
  margin: 0;
  color: #1e3353;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

.solution-detail-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.solution-detail-hero {
  padding: 46px 0 26px;
  background: #ffffff;
}

.solution-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr);
  gap: 58px;
  align-items: center;
}

.solution-detail-copy {
  padding: 18px 0 22px;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
}

.breadcrumb-nav a {
  color: var(--blue);
}

.breadcrumb-nav span {
  color: #1e3353;
}

.solution-detail-copy h1,
.detail-text-block h2,
.detail-usage h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.14;
}

.solution-detail-copy h1 {
  max-width: 430px;
  font-size: clamp(34px, 3.55vw, 54px);
}

.detail-title-line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 28px 0 28px;
  background: var(--blue);
}

.solution-detail-copy p,
.detail-text-block p,
.detail-check-item p,
.detail-note p {
  margin: 0;
  color: #1e3353;
}

.solution-detail-copy p {
  max-width: 430px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.solution-detail-media {
  overflow: hidden;
  border-radius: 10px;
}

.solution-detail-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.solution-detail-content {
  padding: 0 0 42px;
  background: #ffffff;
}

.detail-card {
  padding: 44px 38px 14px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.86);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(7, 27, 58, 0.08);
}

.detail-reason-grid,
.detail-foam-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 70px;
}

.detail-text-block h2 {
  max-width: 445px;
  font-size: clamp(28px, 2.8vw, 42px);
}

.detail-text-block p {
  max-width: 470px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
}

.detail-check-list {
  display: grid;
  gap: 0;
}

.detail-check-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(7, 27, 58, 0.08);
}

.detail-check-item:last-child {
  border-bottom: 0;
}

.detail-check-item i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 20px;
}

.detail-check-item h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.detail-check-item p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.detail-divider {
  height: 1px;
  margin: 42px 0 34px;
  background: rgba(7, 27, 58, 0.08);
}

.detail-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 390px;
  margin-top: 28px;
  padding: 18px 20px;
  background: #eef5ff;
  border-radius: 8px;
}

.detail-note i {
  color: var(--blue);
  font-size: 32px;
}

.detail-note p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.detail-usage {
  padding-top: 6px;
}

.detail-usage h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 19px;
}

.detail-usage ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-usage li {
  position: relative;
  padding-left: 22px;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
}

.detail-usage li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.detail-blue-banner {
  overflow: hidden;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 18px 35px rgba(0, 83, 214, 0.18);
}

.detail-blue-banner img {
  width: 100%;
  height: auto;
}

.products-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.products-hero-page {
  padding: 0 0 38px;
  background: #ffffff;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  min-height: 320px;
}

.products-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 44px 44px 0;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #1e3353;
  font-size: 14px;
  font-weight: 700;
}

.product-breadcrumb a {
  color: #1e3353;
}

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

.products-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.04;
}

.products-hero-copy p {
  max-width: 400px;
  margin: 0;
  color: #1e3353;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.products-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.products-hero-image::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.62) 44%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.products-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.products-catalog-section {
  padding: 34px 0 58px;
  background: #ffffff;
}

.products-catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.product-sidebar {
  display: grid;
  gap: 34px;
}

.product-category-list {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.96);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 27, 58, 0.06);
}

.product-category-list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 16px;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 16px 20px;
  color: var(--navy);
  border-bottom: 1px solid rgba(217, 229, 242, 0.78);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.product-category-list a:last-child {
  border-bottom: 0;
}

.product-category-list a > i:first-child {
  color: var(--navy);
  font-size: 19px;
}

.product-category-list a > i:last-child {
  justify-self: end;
  font-size: 14px;
}

.product-category-list a.active,
.product-category-list a:hover,
.product-category-list a:focus-visible {
  color: #ffffff;
  background: var(--blue);
}

.product-category-list a.active i,
.product-category-list a:hover i,
.product-category-list a:focus-visible i {
  color: #ffffff;
}

.product-help-card {
  padding: 38px 34px;
  background: #f3f7fd;
  border-radius: 10px;
}

.product-help-card > i {
  color: var(--blue);
  font-size: 42px;
}

.product-help-card h2 {
  margin: 16px 0 18px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.product-help-card p {
  margin: 0 0 26px;
  color: #1e3353;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.product-help-card .pill-btn {
  min-height: 48px;
  padding: 12px 20px;
  color: var(--navy);
  background: #ffffff;
}

.product-catalog-main {
  min-width: 0;
}

.product-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.74fr) minmax(150px, 0.62fr) minmax(190px, 0.82fr);
  gap: 22px;
  margin-bottom: 30px;
}

.product-search,
.product-filter-bar button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 22px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.96);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(7, 27, 58, 0.04);
  font-size: 14px;
  font-weight: 800;
}

.product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  font: inherit;
}

.product-search input::placeholder {
  color: #8b99ad;
  font-weight: 600;
}

.product-search i,
.product-filter-bar button i {
  color: var(--navy);
  font-size: 18px;
}

.product-filter-bar button {
  cursor: pointer;
}

.catalog-product-card {
  height: 100%;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 27, 58, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(7, 27, 58, 0.13);
}

.catalog-product-card img {
  width: 100%;
  height: 245px;
  padding: 18px 22px 10px;
  object-fit: contain;
  background: #ffffff;
}

.catalog-product-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 18px 74px 30px 30px;
}

.catalog-product-body h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.catalog-product-body p {
  margin: 0 0 24px;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.catalog-product-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.catalog-plus {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 27, 58, 0.12);
  font-size: 24px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.catalog-plus:hover,
.catalog-plus:focus-visible {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-2px);
}

.product-detail-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.product-detail-hero {
  padding: 46px 0 54px;
  background: #ffffff;
}

.detail-breadcrumb {
  margin-bottom: 62px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(300px, 0.48fr);
  gap: 64px;
  align-items: center;
}

.product-detail-visual {
  overflow: hidden;
  background: #fbfdff;
  border-radius: 8px;
}

.product-detail-visual img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center;
}

.product-detail-copy {
  max-width: 520px;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.15;
}

.product-detail-copy > p:not(.eyebrow) {
  margin: 0;
  color: #1e3353;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
}

.product-detail-actions .pill-btn {
  min-width: 190px;
  min-height: 60px;
}

.product-spec-section {
  padding: 0 0 48px;
  background: #ffffff;
}

.product-spec-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.48fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 420px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(7, 27, 58, 0.07);
}

.product-spec-table {
  position: relative;
  z-index: 1;
  padding: 42px 42px 40px;
  background: #ffffff;
}

.product-spec-table h2 {
  margin: 0 0 32px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-table dl {
  display: grid;
  margin: 0;
}

.product-spec-table dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(7, 27, 58, 0.1);
}

.product-spec-table dl div:last-child {
  border-bottom: 0;
}

.product-spec-table dt,
.product-spec-table dd {
  margin: 0;
  color: #1e3353;
  font-size: 14px;
  font-weight: 800;
}

.product-spec-table dd {
  font-weight: 600;
}

.product-spec-image {
  position: relative;
  overflow: hidden;
}

.product-spec-image::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.product-spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technical-doc-section {
  padding: 0 0 62px;
  background: #ffffff;
}

.technical-doc-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px 42px;
  background: #f8fbff;
  border: 1px solid rgba(217, 229, 242, 0.85);
  border-radius: 8px;
}

.technical-doc-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf4ff;
  border-radius: 8px;
  font-size: 34px;
}

.technical-doc-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-doc-card p {
  margin: 0;
  color: #1e3353;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.technical-doc-card .pill-btn {
  min-width: 188px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid rgba(9, 105, 242, 0.35);
}

.contact-page {
  padding-top: var(--header-h);
  background: #ffffff;
}

.contact-hero {
  padding: 54px 0 48px;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 46%, rgba(234, 244, 255, 0.65) 100%),
    url("assets/products-hero.jpg") center right / auto 100% no-repeat;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(300px, 0.44fr);
  gap: 52px;
  align-items: center;
  min-height: 430px;
}

.contact-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
}

.contact-title-line {
  display: block;
  width: 58px;
  height: 2px;
  margin: 28px 0 26px;
  background: var(--blue);
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: #1e3353;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.85;
}

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

.contact-hero-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 12px;
  box-shadow: 0 24px 58px rgba(7, 27, 58, 0.12);
}

.contact-quick-card {
  padding: 34px 34px 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #005be7 0%, #083e9d 100%);
}

.contact-quick-card i {
  font-size: 42px;
}

.contact-quick-card h2 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.contact-quick-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.contact-quick-list {
  display: grid;
  padding: 10px 26px;
}

.contact-quick-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  color: var(--navy);
  border-bottom: 1px solid rgba(217, 229, 242, 0.95);
  font-size: 15px;
  font-weight: 800;
}

.contact-quick-list a:last-child {
  border-bottom: 0;
}

.contact-quick-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef5ff;
  border-radius: 50%;
  font-size: 20px;
}

.contact-info-section {
  padding: 0 0 52px;
  background: #ffffff;
}

.contact-info-card {
  height: 100%;
  min-height: 205px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 27, 58, 0.07);
}

.contact-info-card > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef5ff;
  border-radius: 50%;
  font-size: 24px;
}

.contact-info-card h2 {
  margin: 22px 0 12px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: #1e3353;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.contact-form-section {
  padding: 0 0 58px;
  background: #ffffff;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: 46px;
  align-items: start;
  padding: 46px;
  background: #f7fbff;
  border: 1px solid rgba(217, 229, 242, 0.9);
  border-radius: 12px;
}

.contact-form-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 900;
  line-height: 1.14;
}

.contact-form-copy > p:not(.eyebrow) {
  margin: 22px 0 26px;
  color: #1e3353;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.contact-form-copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.contact-form-copy li i {
  color: var(--blue);
  font-size: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.08);
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(9, 105, 242, 0.65);
  box-shadow: 0 0 0 4px rgba(9, 105, 242, 0.1);
}

.contact-submit {
  justify-self: start;
  min-width: 180px;
  margin-top: 6px;
}

.contact-location-section {
  padding: 0 0 70px;
  background: #ffffff;
}

.contact-location-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.54fr) minmax(300px, 0.46fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(217, 229, 242, 0.95);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(7, 27, 58, 0.08);
}

.contact-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.86), rgba(9, 105, 242, 0.72)),
    url("assets/about-hero-factory.jpg") center / cover no-repeat;
}

.contact-map i {
  font-size: 52px;
}

.contact-map span {
  font-size: 24px;
  font-weight: 900;
}

.contact-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.contact-location-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.16;
}

.contact-location-copy p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: #1e3353;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.contact-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@keyframes floatArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (min-width: 576px) {
  .hero-feature-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (min-width: 768px) {
  .process-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .counter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cta-content {
    grid-template-columns: minmax(0, 860px) minmax(230px, 1fr);
  }

  .cta-actions {
    justify-self: end;
    justify-items: end;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    gap: 20.8px;
  }

  .hero-section {
    min-height: 850px;
  }

  .hero-grid {
    min-height: calc(850px - var(--header-h));
  }

  .scroll-cue {
    display: inline-flex;
  }

  .process-panel {
    grid-template-columns: minmax(285px, 320px) minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    min-height: 0;
    padding: 32px 38px 0 38px;
  }

  .process-intro {
    align-self: center;
    padding: 18px 0 24px 16px;
  }

  .process-intro h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .process-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    align-self: start;
    height: 300px;
    margin-bottom: -24px;
    padding-right: 6px;
    transform: translateY(24px);
  }

  .process-card {
    min-height: 0;
    height: 300px;
    clip-path: polygon(14% 0, 100% 0, 88% 100%, 0 100%);
  }

  .process-card:not(:first-child) {
    margin-left: -10px;
  }

  .process-card img {
    object-position: center center;
  }

  .process-content {
    min-height: 0;
    height: 300px;
    padding: 26px 42px 26px 42px;
  }

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

  .why-grid {
    grid-template-columns: 0.36fr 0.64fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 0.9fr 1.35fr;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 12.8px;
    padding: 16px;
    max-height: calc(100vh - var(--header-h) - 24px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 229, 242, 0.9);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(7, 27, 58, 0.1);
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-tree-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown,
  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 5.6px 0 8.8px;
    padding: 7.2px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-submenu::after {
    display: none;
  }

  .nav-submenu {
    grid-column: 1 / -1;
    margin: 0 0 7.2px 12px;
    background: #f5f9ff;
  }

  .nav-tree:hover > .nav-dropdown,
  .has-submenu:hover > .nav-submenu {
    display: none;
  }

  .nav-tree.is-open > .nav-dropdown,
  .has-submenu.is-open > .nav-submenu {
    display: grid;
  }

  .nav-menu-item > a,
  .nav-submenu a {
    white-space: normal;
  }

  .has-submenu.is-open > .nav-sub-toggle {
    transform: rotate(90deg);
  }

  .nav-actions {
    justify-content: space-between;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-media {
    inset: auto 0 0;
    height: 48%;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(246, 250, 254, 0.98) 0%, rgba(246, 250, 254, 0.95) 48%, rgba(246, 250, 254, 0.56) 72%, rgba(246, 250, 254, 0.96) 100%);
  }

  .hero-grid {
    min-height: 760px;
  }

  .process-card {
    clip-path: none;
  }

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

  .sector-carousel {
    height: auto;
  }

  .sector-carousel-track {
    height: auto;
    min-height: 320px;
  }

  .sector-lead {
    min-height: 300px;
  }

  .sector-card {
    flex-basis: clamp(245px, 42vw, 320px);
  }

  .why-section::before,
  .why-section::after {
    display: none;
  }

  .section-intro h2,
  .cta-content h2,
  .hero-copy h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .about-hero {
    padding-top: 28px;
  }

  .about-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-hero-panel::after {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 48%, rgba(255, 255, 255, 0.28) 100%);
  }

  .about-hero-copy {
    max-width: none;
    padding: 32px 0;
  }

  .about-hero-copy h1 {
    margin-top: 28px;
  }

  .about-hero-media {
    min-height: 420px;
    order: -1;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 18px;
  }

  .about-stat {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 27, 58, 0.11);
  }

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

  .timeline {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 560px;
    margin-inline: auto;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item {
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    gap: 0 22px;
    text-align: left;
  }

  .timeline-icon {
    grid-row: span 2;
  }

  .timeline-item h3 {
    margin: 3px 0 10px;
  }

  .timeline-item p {
    max-width: none;
  }

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

  .value-card {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 34px;
  }

  .solutions-hero {
    padding-top: 28px;
  }

  .solutions-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solutions-hero-copy {
    padding: 30px 0 20px;
  }

  .solutions-hero-media {
    min-height: 260px;
    order: -1;
  }

  .solutions-hero-media::before {
    width: 55%;
  }

  .solution-page-card,
  .solution-page-card img {
    min-height: 300px;
  }

  .solutions-overview-hero {
    padding-bottom: 46px;
  }

  .solutions-overview-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solutions-overview-copy {
    padding: 32px 0 22px;
  }

  .solutions-overview-media {
    order: -1;
  }

  .solutions-overview-media::before {
    width: 46%;
  }

  .solutions-overview-media img {
    min-height: 270px;
  }

  .solution-areas-section {
    padding-bottom: 54px;
  }

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

  .solution-process-copy p:not(.eyebrow) {
    max-width: 560px;
  }

  .solution-process-flow {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 620px;
  }

  .solution-process-flow::before {
    top: 18px;
    bottom: 18px;
    left: 18px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .solution-process-step {
    grid-template-columns: 36px 48px minmax(0, 1fr);
    align-items: start;
    justify-items: start;
    gap: 0 16px;
    text-align: left;
  }

  .solution-process-step span {
    grid-row: span 2;
  }

  .solution-process-step i {
    margin: 3px 0 0;
  }

  .solution-process-step h3 {
    min-height: 0;
    margin-top: 0;
  }

  .solution-process-step p {
    grid-column: 3;
    max-width: none;
  }

  .solution-detail-hero {
    padding-top: 30px;
  }

  .solution-detail-hero-grid,
  .detail-reason-grid,
  .detail-foam-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-detail-copy {
    padding-bottom: 0;
  }

  .solution-detail-copy h1,
  .solution-detail-copy p,
  .detail-text-block h2,
  .detail-text-block p {
    max-width: none;
  }

  .solution-detail-media img {
    height: 350px;
  }

  .detail-card {
    padding: 34px 26px 12px;
  }

  .detail-divider {
    margin: 34px 0 30px;
  }

  .products-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .products-hero-copy {
    padding: 32px 0 24px;
  }

  .products-hero-image {
    order: -1;
  }

  .products-hero-image::before {
    width: 46%;
  }

  .products-hero-image img {
    min-height: 260px;
  }

  .products-catalog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .detail-breadcrumb {
    margin-bottom: 34px;
  }

  .product-detail-grid,
  .product-spec-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-visual img {
    height: 420px;
  }

  .product-spec-image {
    min-height: 330px;
    order: -1;
  }

  .technical-doc-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .technical-doc-card .pill-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .contact-hero {
    padding-top: 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 62%, rgba(234, 244, 255, 0.78) 100%),
      url("assets/products-hero.jpg") center bottom / cover no-repeat;
  }

  .contact-hero-grid,
  .contact-form-layout,
  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    gap: 30px;
    min-height: 0;
  }

  .contact-form-layout {
    padding: 34px;
  }

  .contact-location-copy {
    padding: 34px;
  }

  .contact-map {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-h: 74px;
  }

  .logo-main {
    font-size: 22.72px;
  }

  .logo-sub {
    font-size: 7.68px;
  }

  .pill-btn {
    width: 100%;
  }

  .hero-copy {
    padding-top: 32px;
  }

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

  .hero-buttons {
    display: grid;
  }

  .hero-feature-row {
    padding-bottom: 32px;
  }

  .process-panel {
    border-radius: 0 42px 0 42px;
  }

  .process-content,
  .process-card {
    min-height: 280px;
  }

  .sector-lead {
    min-height: 335px;
  }

  .sector-card {
    flex-basis: 82vw;
  }

  .sector-control {
    width: 44.8px;
    height: 44.8px;
  }

  .reference-card {
    padding-inline: 16px;
  }

  .reference-carousel-shell {
    padding-inline: 42.4px;
  }

  .reference-control {
    width: 38.4px;
    height: 38.4px;
  }

  .logo-track {
    gap: 32px;
  }

  .logo-carousel {
    justify-content: flex-start;
  }

  .footer-grid {
    gap: 35.2px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .about-hero-media {
    min-height: 300px;
  }

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

  .about-lead {
    font-size: 21px;
  }

  .about-hero-copy > p:not(.eyebrow):not(.about-lead) {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-section-head {
    margin-bottom: 44px;
  }

  .about-section-head h2 {
    font-size: 30px;
  }

  .value-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px;
  }

  .value-icon {
    width: 98px;
    height: 98px;
  }

  .value-icon i {
    font-size: 46px;
  }

  .experience-banner {
    min-height: 210px;
    padding: 32px 26px;
  }

  .experience-banner h2 {
    font-size: 29px;
  }

  .experience-banner p {
    font-size: 23px;
  }

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

  .solutions-title-line {
    margin: 22px 0 20px;
  }

  .solutions-hero-copy p,
  .solutions-section-head p {
    font-size: 15px;
    line-height: 1.65;
  }

  .solutions-section-head h2 {
    font-size: 28px;
  }

  .solutions-hero-media {
    min-height: 210px;
  }

  .solution-page-card,
  .solution-page-card img {
    min-height: 285px;
  }

  .solution-page-content {
    padding: 22px 20px;
  }

  .solution-page-content h3 {
    font-size: 22px;
  }

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

  .solutions-overview-line {
    margin: 22px 0 20px;
  }

  .solutions-overview-copy p,
  .solutions-overview-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .solutions-overview-media img {
    min-height: 220px;
  }

  .solutions-overview-head h2 {
    font-size: 28px;
  }

  .solution-overview-body {
    min-height: 0;
    padding: 24px 22px;
  }

  .solution-overview-body h3 {
    font-size: 21px;
  }

  .solution-process-section {
    padding-bottom: 54px;
  }

  .solution-process-step {
    grid-template-columns: 36px 42px minmax(0, 1fr);
    gap: 0 12px;
  }

  .solution-process-step i {
    font-size: 30px;
  }

  .breadcrumb-nav {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .solution-detail-copy h1 {
    font-size: 34px;
  }

  .solution-detail-copy p,
  .detail-text-block p {
    font-size: 15px;
    line-height: 1.7;
  }

  .detail-title-line {
    margin: 22px 0 22px;
  }

  .solution-detail-media img {
    height: 260px;
  }

  .detail-card {
    padding: 28px 18px 10px;
    border-radius: 10px;
  }

  .detail-text-block h2 {
    font-size: 27px;
  }

  .detail-check-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .detail-check-item i {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .detail-note {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .detail-blue-banner {
    border-radius: 9px;
  }

  .products-hero-page {
    padding-bottom: 26px;
  }

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

  .products-hero-copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .product-breadcrumb {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .products-hero-image img {
    min-height: 220px;
  }

  .products-catalog-section {
    padding-top: 22px;
  }

  .product-filter-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-category-list a {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .product-help-card {
    padding: 28px 24px;
  }

  .catalog-product-card {
    min-height: 430px;
  }

  .catalog-product-card img {
    height: 220px;
  }

  .catalog-product-body {
    min-height: 210px;
    padding: 18px 70px 26px 24px;
  }

  .catalog-product-body h2 {
    font-size: 21px;
  }

  .product-detail-hero {
    padding: 30px 0 38px;
  }

  .product-detail-visual img {
    height: 330px;
  }

  .product-detail-copy h1 {
    font-size: 34px;
  }

  .product-detail-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .product-detail-actions {
    display: grid;
    gap: 14px;
    margin-top: 30px;
  }

  .product-spec-table {
    padding: 30px 22px;
  }

  .product-spec-table dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .product-spec-image {
    min-height: 260px;
  }

  .technical-doc-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .technical-doc-card .pill-btn {
    width: 100%;
  }

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

  .contact-title-line {
    margin: 22px 0 20px;
  }

  .contact-hero-copy > p:not(.eyebrow),
  .contact-form-copy > p:not(.eyebrow),
  .contact-location-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-hero-actions {
    display: grid;
    gap: 14px;
  }

  .contact-quick-card {
    padding: 28px 24px;
  }

  .contact-quick-card h2 {
    font-size: 23px;
  }

  .contact-info-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .contact-form-layout {
    padding: 24px 18px;
    border-radius: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-map {
    min-height: 230px;
  }

  .contact-map span {
    font-size: 20px;
  }

  .contact-location-copy {
    padding: 28px 22px;
  }

  .contact-location-actions {
    display: grid;
  }
}
