:root {
  --navy-950: #071923;
  --navy-900: #0b2434;
  --navy-800: #12384d;
  --navy-700: #1d4d64;
  --steel-700: #48626f;
  --steel-600: #5f7782;
  --accent: #147ba3;
  --accent-dark: #0f688b;
  --accent-soft: #e8f3f7;
  --ink: #17252d;
  --muted: #64727a;
  --line: #d8dfe2;
  --line-dark: #c3cdd1;
  --surface: #ffffff;
  --surface-alt: #f6f6f3;
  --surface-cool: #f3f6f7;
  --danger: #b42318;
  --success: #267a4d;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --container: 1180px;
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
svg { stroke-width: 1.8; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { color: white; background: var(--navy-950); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -70px;
  z-index: 250;
  padding: 9px 14px;
  color: white;
  background: var(--navy-900);
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

/* Typography */
.eyebrow,
.page-kicker,
.hero-kicker,
.footer-kicker,
.cta-kicker,
.category-index,
.product-group {
  display: block;
  color: var(--steel-600);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 13px; }
.eyebrow-light { color: #9bc5d5; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h1,
.section-heading h2,
.display-title,
.page-title,
.product-custom-grid h2,
.about-copy h2,
.capability-layout h2,
.contact-info h2,
.contact-form-heading h2,
.footer-inquiry h2,
.cta-band h2 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.12;
}
.section-heading h2,
.product-custom-grid h2,
.about-copy h2,
.capability-layout h2,
.contact-info h2,
.contact-form-heading h2 { font-size: clamp(1.95rem, 3.2vw, 2.75rem); }
.section-heading p,
.product-custom-grid p,
.capability-intro,
.contact-info > div > p,
.contact-form-heading p { margin: 14px 0 0; color: var(--muted); font-size: 1rem; }
.section-heading-row { max-width: none; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .6fr); gap: 64px; align-items: end; }
.section-heading-row > div:first-child { max-width: 720px; }
.heading-side { padding-left: 24px; border-left: 1px solid var(--line); }
.heading-side p { margin: 0 0 14px; }
.compact-heading { margin-bottom: 28px; }
.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .compact-heading h2,
.section-dark .compact-heading p { color: white; }

/* Buttons & links */
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 720;
  line-height: 1;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.button svg { width: 17px; height: 17px; }
.button:focus-visible,
.text-link:focus-visible,
.form-reset:focus-visible,
.modal-text-button:focus-visible { outline: 3px solid rgba(20,123,163,.2); outline-offset: 3px; }
.button-primary { color: white; background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { color: var(--navy-900); background: white; border-color: var(--line-dark); }
.button-secondary:hover { background: var(--surface-cool); border-color: #aebcc2; }
.button-secondary-on-dark { color: white; background: transparent; border-color: rgba(255,255,255,.34); }
.button-secondary-on-dark:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.58); }
.button-light { color: var(--navy-950); background: white; }
.button-light:hover { background: #f1f5f6; }
.button-footer-outline { color: white; border-color: rgba(255,255,255,.35); background: transparent; }
.button-footer-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.button-sm { min-height: 40px; padding: 0 16px; font-size: .84rem; }
.button-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: .9rem; font-weight: 720; }
.text-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.text-link:hover svg { transform: translateX(3px); }
.inline-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }

/* Header */
#header-placeholder { min-height: var(--header-height); }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(216,223,226,.95);
  backdrop-filter: blur(12px);
}
.site-header.scrolled { box-shadow: 0 5px 22px rgba(8,25,35,.055); }
.header-shell {
  min-height: var(--header-height);
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: white; border: 1px solid var(--line); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.03; }
.brand-copy strong { color: var(--navy-950); font-size: .91rem; font-weight: 780; letter-spacing: .035em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--steel-600); font-size: .62rem; font-weight: 780; letter-spacing: .21em; text-transform: uppercase; }
.brand-light .brand-copy strong { color: white; }
.brand-light .brand-copy small { color: #91b7c7; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: 29px; }
.desktop-nav a { position: relative; padding: 27px 0 25px; color: #53636b; font-size: .84rem; font-weight: 680; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--accent); transition: right .18s ease; }
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--navy-950); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 13px; }
.header-contact { display: inline-flex; align-items: center; gap: 7px; color: var(--steel-700); font-size: .78rem; font-weight: 690; }
.header-contact svg { width: 15px; height: 15px; color: var(--accent); }
.menu-toggle { display: none; width: 42px; height: 42px; place-items: center; color: var(--navy-900); background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.menu-toggle svg { width: 21px; height: 21px; }
.mobile-menu { position: fixed; right: 0; top: 0; width: min(380px, 92vw); height: 100dvh; z-index: 100; padding: 22px; background: white; box-shadow: -20px 0 50px rgba(7,25,35,.16); transform: translateX(105%); transition: transform .25s ease; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .74rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu-head button { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.mobile-menu nav { display: grid; padding: 20px 0; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid #edf0f1; color: var(--navy-900); font-size: 1.05rem; font-weight: 680; }
.mobile-menu nav a.active { color: var(--accent); }
.mobile-menu-actions { display: grid; gap: 16px; margin-top: 20px; }
.mobile-menu-actions .text-link { justify-self: start; }
.menu-backdrop { position: fixed; inset: 0; z-index: 90; visibility: hidden; opacity: 0; background: rgba(7,25,35,.46); transition: opacity .22s ease, visibility .22s ease; }
.menu-backdrop.open { visibility: visible; opacity: 1; }

/* Home hero */
.hero { color: white; background: var(--navy-950); }
.hero-grid { min-height: 610px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; padding: 70px 0; }
.hero-kicker { margin-bottom: 19px; color: #9bbdca; }
.display-title { max-width: 680px; color: white; font-size: clamp(2.8rem, 5vw, 4.35rem); }
.hero-lead { max-width: 610px; margin: 21px 0 0; color: #c5d0d5; font-size: clamp(1.02rem, 1.55vw, 1.17rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-catalog-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: #a8cbd8; font-size: .87rem; font-weight: 650; }
.hero-catalog-link svg { width: 16px; height: 16px; }
.hero-frame { overflow: hidden; border-radius: var(--radius-lg); background: #dfe7e9; border: 1px solid rgba(255,255,255,.12); }
.hero-frame img { width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; }

/* Home proof */
.proof-strip { background: white; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 116px; padding: 25px 25px 24px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-item + .proof-item { padding-left: 25px; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--navy-950); font-size: .98rem; font-weight: 730; }
.proof-item span { margin-top: 4px; color: var(--muted); font-size: .83rem; line-height: 1.45; }

/* Home product cards */
.product-overview { background: white; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.category-card-media { display: block; overflow: hidden; background: var(--surface-cool); }
.category-card-media img { width: 100%; height: 230px; object-fit: cover; }
.category-card-body { padding: 21px 21px 23px; }
.category-index { margin-bottom: 9px; color: #75858c; font-size: .67rem; }
.category-card h3 { margin: 0; color: var(--navy-950); font-size: 1.2rem; line-height: 1.25; }
.category-card p { min-height: 52px; margin: 9px 0 17px; color: var(--muted); font-size: .87rem; line-height: 1.55; }

/* Manufacturing */
.feature-split { display: grid; grid-template-columns: .94fr 1.06fr; gap: 72px; align-items: center; }
.feature-media-main { overflow: hidden; border-radius: var(--radius-lg); background: #e8edef; }
.feature-media-main img { width: 100%; min-height: 520px; object-fit: cover; }
.fact-list { border-top: 1px solid var(--line); }
.fact-row { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.fact-row > span { color: #91a0a7; font-size: .71rem; font-weight: 730; }
.fact-row h3 { margin: 0; color: var(--navy-950); font-size: 1rem; }
.fact-row p { margin: 5px 0 0; color: var(--muted); font-size: .86rem; }

/* Client marquee */
.clients-section { padding: 0; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-strip { min-height: 190px; display: grid; grid-template-columns: 28% 72%; align-items: stretch; }
.client-strip-heading { padding: 42px 38px 42px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.client-strip-heading .eyebrow { margin-bottom: 6px; }
.client-strip-heading h2 { margin: 0; color: var(--navy-950); font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.035em; line-height: 1.06; }
.client-strip-heading p { margin: 12px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.5; }
.client-marquee { position: relative; min-width: 0; display: flex; align-items: center; overflow: hidden; }
.client-marquee-viewport { width: 100%; overflow: hidden; padding-left: 54px; }
.client-marquee-track { width: max-content; display: flex; align-items: center; will-change: transform; animation: client-marquee 38s linear infinite; }
.client-marquee-group { display: flex; align-items: center; gap: 56px; padding: 30px 56px 30px 0; }
.client-marquee.is-static .client-marquee-track { animation: none; }
.client-logo { width: 150px; height: 74px; flex: 0 0 150px; display: grid; place-items: center; }
.client-logo img { max-width: 135px; max-height: 54px; width: auto; height: auto; object-fit: contain; filter: none; opacity: 1; }
.client-logo-dark { padding: 0; border-radius: 0; background: transparent; }
.client-logo-dark img { filter: none; opacity: 1; }
.client-marquee-fade { position: absolute; z-index: 2; top: 0; bottom: 0; width: 44px; pointer-events: none; }
.client-marquee-fade-left { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
.client-marquee-fade-right { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
@keyframes client-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* Industries */
.industries-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.industries-layout .compact-heading { margin-bottom: 0; }
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.industry-card { min-height: 190px; padding: 25px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.industry-card > span { color: #7fa2b1; font-size: .69rem; font-weight: 730; }
.industry-card h3 { margin: 42px 0 5px; color: white; font-size: 1.12rem; }
.industry-card p { margin: 0; color: #afbdc4; font-size: .84rem; }

/* CTA bands */
.cta-band { padding: 60px 0; color: white; background: var(--navy-800); }
.cta-band-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) auto; gap: 50px; align-items: center; }
.cta-band h2 { max-width: 720px; color: white; font-size: clamp(1.9rem, 3vw, 2.65rem); }
.cta-band p { max-width: 720px; margin: 12px 0 0; color: #c4d1d6; font-size: .94rem; }
.cta-kicker { margin-bottom: 10px; color: #98becd; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px; }
.home-cta { background: var(--navy-800); }
.subdued-cta { background: #183a4a; }

/* Page hero */
.page-hero { padding: 64px 0 60px; background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .55fr); gap: 72px; align-items: end; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #7a878d; font-size: .72rem; }
.breadcrumbs a:hover { color: var(--accent); }
.page-kicker { margin-bottom: 12px; color: var(--accent); }
.page-title { max-width: 800px; font-size: clamp(2.35rem, 4vw, 3.55rem); }
.page-hero p { max-width: 750px; margin: 16px 0 0; color: var(--muted); font-size: 1rem; }
.page-hero-aside { display: grid; gap: 8px; padding: 4px 0 4px 24px; border-left: 1px solid var(--line-dark); }
.page-hero-aside strong { color: var(--navy-950); font-size: .9rem; }
.page-hero-aside span { color: var(--muted); font-size: .84rem; }
.page-hero-aside .text-link { margin-top: 8px; }

/* Products page */
.product-family-section { padding-top: 58px; }
.product-family-list { border-top: 1px solid var(--line); }
.product-family-row { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; padding: 44px 0; border-bottom: 1px solid var(--line); }
.product-family-row.reverse { grid-template-columns: 1.18fr .82fr; }
.product-family-row.reverse .product-family-media { order: 2; }
.product-family-row.reverse .product-family-copy { order: 1; }
.product-family-media { overflow: hidden; border-radius: var(--radius-md); background: var(--surface-cool); }
.product-family-media img { width: 100%; height: 270px; object-fit: cover; }
.product-family-copy { max-width: 620px; }
.product-family-copy .category-index { margin-bottom: 12px; }
.product-family-copy h2 { margin: 0; color: var(--navy-950); font-size: clamp(1.75rem, 2.8vw, 2.35rem); letter-spacing: -.025em; line-height: 1.12; }
.product-family-copy p { margin: 13px 0 21px; color: var(--muted); font-size: .95rem; }
.product-custom-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: center; }
.product-custom-media { overflow: hidden; border-radius: var(--radius-lg); background: white; border: 1px solid var(--line); }
.product-custom-media img { width: 100%; min-height: 380px; object-fit: cover; }

/* Catalog */
.catalog-section { background: var(--surface); }
.catalog-toolbar { position: sticky; z-index: 25; top: calc(var(--header-height) + 12px); display: grid; grid-template-columns: 1fr 330px; gap: 10px; padding: 10px; margin-bottom: 18px; background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.search-wrap { position: relative; }
.search-wrap svg { position: absolute; left: 15px; top: 50%; width: 18px; height: 18px; color: #74868e; transform: translateY(-50%); pointer-events: none; }
.search-wrap input,
.catalog-toolbar select { width: 100%; height: 48px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 6px; outline: none; }
.search-wrap input { padding: 0 14px 0 44px; }
.catalog-toolbar select { padding: 0 38px 0 13px; }
.search-wrap input:focus,
.catalog-toolbar select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,123,163,.1); }
.catalog-summary { display: flex; justify-content: space-between; gap: 30px; margin-bottom: 30px; color: var(--muted); font-size: .82rem; }
.catalog-summary p { margin: 0; }
.catalog-summary strong { color: var(--navy-950); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.product-card[hidden] { display: none; }
.product-card-image { flex: 0 0 210px; height: 210px; min-height: 210px; overflow: hidden; display: grid; place-items: center; padding: 15px; background: var(--surface-cool); border-bottom: 1px solid var(--line); }
.product-card-image img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card-body { position: relative; z-index: 1; min-width: 0; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; padding: 20px; background: white; }
.product-group { color: #798a92; font-size: .65rem; }
.product-card h2 { overflow-wrap: anywhere; margin: 9px 0 0; color: var(--navy-950); font-size: 1.12rem; line-height: 1.25; }
.product-card p { flex: 1; margin: 10px 0 18px; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid #e9edef; }
.button-specs { min-height: 40px; padding: 0 13px; font-size: .8rem; }
.product-card-actions .text-link { white-space: nowrap; font-size: .79rem; }
.catalog-empty { display: none; margin-top: 28px; padding: 38px; text-align: center; background: var(--surface-alt); border: 1px dashed var(--line-dark); border-radius: var(--radius-sm); }
.catalog-empty.show { display: block; }
.catalog-empty strong { color: var(--navy-950); }
.catalog-empty p { margin: 5px 0 0; color: var(--muted); }

/* Product modal */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; visibility: hidden; opacity: 0; background: rgba(7,25,35,.68); transition: opacity .18s ease, visibility .18s ease; }
.modal.open { visibility: visible; opacity: 1; }
.modal-panel { width: min(780px, 100%); max-height: min(84vh, 780px); overflow: hidden; display: flex; flex-direction: column; background: white; border-radius: var(--radius-md); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px 24px; color: white; background: var(--navy-900); }
.modal-head .eyebrow { margin-bottom: 6px; color: #9cc7d6; }
.modal-head h2 { margin: 0; color: white; font-size: 1.55rem; line-height: 1.2; }
.modal-close { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; color: white; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm); }
.modal-close svg { width: 19px; height: 19px; }
.modal-body { overflow: auto; padding: 24px; color: var(--ink); font-size: .91rem; }
.modal-body ul { margin: 0; padding-left: 20px; }
.modal-body li + li { margin-top: 9px; }
.modal-body strong { color: var(--navy-950); }
.modal-body table { width: 100%; margin: 10px 0; border-collapse: collapse; font-size: .82rem; }
.modal-body th,
.modal-body td { padding: 10px 9px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.modal-body th { color: var(--navy-950); background: var(--surface-alt); }
.modal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; padding: 17px 24px; border-top: 1px solid var(--line); }
.modal-text-button { margin-left: auto; padding: 8px 2px; color: var(--muted); background: none; border: 0; font-size: .86rem; font-weight: 680; }
.modal-text-button:hover { color: var(--navy-950); }

/* About */
.about-lead { display: grid; grid-template-columns: .95fr 1.05fr; gap: 68px; align-items: center; }
.about-media { overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-cool); }
.about-media img { width: 100%; min-height: 500px; object-fit: cover; }
.about-copy h2 { max-width: 660px; }
.about-copy > p { color: var(--muted); font-size: .96rem; }
.about-copy > p:first-of-type { margin-top: 18px; }
.about-copy > p + p { margin-top: 14px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-facts > div { padding: 18px 16px 18px 0; }
.about-facts > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.about-facts strong { display: block; color: var(--navy-950); font-size: 1.05rem; }
.about-facts span { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { min-height: 235px; padding: 23px 21px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.process-step > span { color: var(--accent); font-size: .7rem; font-weight: 760; }
.process-step h3 { margin: 50px 0 8px; color: var(--navy-950); font-size: 1rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .82rem; }
.capability-layout { display: grid; grid-template-columns: 1.04fr .96fr; gap: 74px; align-items: center; }
.capability-intro { max-width: 680px; }
.capability-list { margin-top: 31px; border-top: 1px solid var(--line); }
.capability-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.capability-list > div > span { color: #8d9ba2; font-size: .7rem; font-weight: 730; }
.capability-list h3 { margin: 0; color: var(--navy-950); font-size: .98rem; }
.capability-list p { margin: 5px 0 0; color: var(--muted); font-size: .85rem; }
.capability-media { overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-alt); border: 1px solid var(--line); }
.capability-media img { width: 100%; min-height: 470px; object-fit: cover; }
.capability-caption { padding: 14px 16px; color: var(--muted); font-size: .79rem; border-top: 1px solid var(--line); }

/* Contact */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: start; }
.contact-info { min-width: 0; }
.contact-list { margin-top: 30px; border-top: 1px solid var(--line); }
.contact-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-item-icon { width: 34px; height: 34px; display: grid; place-items: center; color: var(--accent); background: var(--accent-soft); border-radius: var(--radius-sm); }
.contact-item-icon svg { width: 17px; height: 17px; }
.contact-item small { display: block; margin-bottom: 2px; color: #849198; font-size: .68rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.contact-item a,
.contact-item strong { color: var(--navy-950); font-size: .88rem; font-weight: 680; line-height: 1.45; }
.quote-guidance { margin-top: 30px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-guidance h3 { margin: 0 0 12px; color: var(--navy-950); font-size: .98rem; }
.quote-guidance ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 20px; margin: 0; padding-left: 18px; color: var(--muted); font-size: .82rem; }
.map-frame { overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-alt); }
.map-frame iframe { display: block; width: 100%; height: 280px; border: 0; }
.contact-form-wrap { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-alt); }
.contact-form-heading { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-950); font-size: .79rem; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; color: var(--ink); background: white; border: 1px solid #cfd7da; border-radius: var(--radius-sm); outline: none; }
.form-field input,
.form-field select { height: 48px; padding: 0 13px; }
.form-field textarea { min-height: 150px; resize: vertical; padding: 12px 13px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(20,123,163,.1); }
.iti { width: 100%; }
.iti input { width: 100%; }
.field-error { display: none; color: var(--danger); font-size: .73rem; }
.field-error.show { display: block; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.form-reset { color: var(--muted); background: none; border: 0; padding: 6px 0; font-size: .82rem; font-weight: 680; }
.form-reset:hover { color: var(--navy-950); }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 17px; color: #7a888f; font-size: .73rem; }
.form-note svg { width: 15px; height: 15px; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .82rem; }
.form-status.show { display: block; }
.form-status.success { color: var(--success); background: #edf7f1; border: 1px solid #cfe9d8; }
.form-status.error { color: var(--danger); background: #fff1f0; border: 1px solid #f4cbc7; }

/* Footer */
.site-footer { color: #d7e0e4; background: #081b26; }
.footer-inquiry { display: grid; grid-template-columns: minmax(0, 1.35fr) auto; gap: 50px; align-items: center; padding: 52px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-kicker { margin-bottom: 9px; color: #8fb5c5; }
.footer-inquiry h2 { max-width: 740px; color: white; font-size: clamp(1.65rem, 2.6vw, 2.3rem); }
.footer-inquiry p { max-width: 700px; margin: 11px 0 0; color: #aebfc7; font-size: .87rem; }
.footer-inquiry-actions { display: flex; gap: 11px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .72fr .72fr 1fr; gap: 58px; padding: 54px 0 42px; }
.footer-brand p { max-width: 320px; margin: 18px 0 0; color: #aebdc4; font-size: .82rem; }
.footer-brand .footer-note { color: #829ba6; font-size: .72rem; line-height: 1.55; }
.footer-title { margin: 0 0 16px; color: white; font-size: .8rem; font-weight: 740; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #afbec5; font-size: .8rem; }
.footer-links a:hover { color: white; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact > * { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #afbec5; font-size: .78rem; line-height: 1.55; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 3px; color: #79abc0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.11); color: #748d98; font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: white; }

/* No generic entrance animation */
.reveal,
.reveal.visible { opacity: 1; transform: none; transition: none; }

@media (max-width: 1120px) {
  .header-contact { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .client-strip { grid-template-columns: 31% 69%; }
  .footer-grid { grid-template-columns: 1.3fr .75fr .75fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; max-width: 520px; }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }
  .desktop-nav,
  .header-actions > .button { display: none; }
  .menu-toggle { display: grid; }
  .header-shell { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .section { padding: 76px 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 38px; padding: 56px 0 62px; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 720px; }
  .hero-frame img { aspect-ratio: 1.65 / 1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(3) { padding-left: 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .heading-side { max-width: 650px; padding: 0; border-left: 0; }
  .feature-split,
  .about-lead,
  .capability-layout,
  .product-custom-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .feature-media-main img,
  .about-media img,
  .capability-media img { min-height: 390px; }
  .client-strip { min-height: 0; grid-template-columns: 1fr; }
  .client-strip-heading { padding: 34px 0 25px; border-right: 0; border-bottom: 1px solid var(--line); }
  .client-strip-heading p { max-width: 550px; }
  .client-marquee-viewport { padding-left: 38px; }
  .client-marquee-group { padding-top: 26px; padding-bottom: 26px; }
  .industries-layout { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-aside { max-width: 620px; }
  .product-family-row,
  .product-family-row.reverse { grid-template-columns: .88fr 1.12fr; gap: 40px; }
  .process-line { grid-template-columns: repeat(3, 1fr); }
  .process-step { min-height: 215px; }
  .cta-band-grid,
  .footer-inquiry { grid-template-columns: 1fr; gap: 25px; }
  .cta-band-actions,
  .footer-inquiry-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 42px; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 62px 0; }
  .brand-copy strong { font-size: .83rem; }
  .brand-copy small { font-size: .56rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-grid { padding: 45px 0 50px; gap: 30px; }
  .display-title { font-size: clamp(2.3rem, 10.5vw, 3.15rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { width: 100%; padding-inline: 12px; }
  .hero-frame { border-radius: var(--radius-md); }
  .hero-frame img { aspect-ratio: 1.25 / 1; }
  .proof-item { min-height: 105px; padding: 19px 15px 19px 0; }
  .proof-item + .proof-item { padding-left: 15px; }
  .proof-item:nth-child(3) { padding-left: 0; }
  .proof-item strong { font-size: .88rem; }
  .proof-item span { font-size: .74rem; }
  .card-grid { grid-template-columns: 1fr; gap: 15px; }
  .category-card { display: grid; grid-template-columns: 125px 1fr; min-height: 155px; border-radius: 10px; }
  .category-card-media img { height: 100%; min-height: 155px; }
  .category-card-body { padding: 16px; }
  .category-card h3 { font-size: 1.05rem; }
  .category-card p { min-height: 0; margin: 7px 0 13px; font-size: .78rem; }
  .category-card .category-index { font-size: .61rem; margin-bottom: 7px; }
  .feature-media-main img { min-height: 315px; }
  .fact-row { grid-template-columns: 35px 1fr; gap: 12px; padding: 17px 0; }
  .client-strip-heading h2 { font-size: 2rem; }
  .client-strip-heading p { display: none; }
  .client-marquee-viewport { padding-left: 30px; }
  .client-marquee-track { animation-duration: 30s; }
  .client-marquee-group { gap: 35px; padding: 22px 35px 22px 0; }
  .client-logo { width: 120px; flex-basis: 120px; height: 62px; }
  .client-logo img { max-width: 108px; max-height: 44px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 150px; }
  .industry-card h3 { margin-top: 28px; }
  .cta-band { padding: 48px 0; }
  .cta-band-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .cta-band-actions .button { width: 100%; padding-inline: 12px; }
  .page-hero { padding: 48px 0 46px; }
  .page-title { font-size: clamp(2.15rem, 9vw, 2.85rem); }
  .page-hero-aside { padding-left: 17px; }
  .product-family-section { padding-top: 25px; }
  .product-family-row,
  .product-family-row.reverse { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; }
  .product-family-row.reverse .product-family-media,
  .product-family-row.reverse .product-family-copy { order: initial; }
  .product-family-media img { height: 225px; }
  .product-family-copy h2 { font-size: 1.7rem; }
  .product-custom-media img { min-height: 280px; }
  .catalog-toolbar { position: static; grid-template-columns: 1fr; padding: 0; border: 0; background: transparent; }
  .catalog-summary { align-items: flex-start; flex-direction: column; gap: 5px; margin: 14px 0 22px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 15px; }
  .product-card { display: flex; flex-direction: column; border-radius: 10px; }
  .product-card-image { flex: 0 0 190px; width: 100%; height: 190px; min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px; }
  .product-card-body { min-width: 0; padding: 16px; }
  .product-card h2 { font-size: 1rem; }
  .product-card p { font-size: .77rem; }
  .product-card-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .button-specs { width: 100%; }
  .product-card-actions .text-link { font-size: .76rem; }
  .modal { padding: 12px; }
  .modal-panel { max-height: 90vh; border-radius: 10px; }
  .modal-head { padding: 18px; }
  .modal-body { padding: 18px; }
  .modal-actions { padding: 14px 18px; }
  .modal-actions .button { min-height: 42px; font-size: .8rem; }
  .about-media img,
  .capability-media img { min-height: 320px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts > div,
  .about-facts > div + div { padding: 13px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .about-facts > div:last-child { border-bottom: 0; }
  .process-line { grid-template-columns: 1fr; }
  .process-step { min-height: auto; }
  .process-step h3 { margin-top: 24px; }
  .contact-grid { gap: 40px; }
  .quote-guidance ul { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px 18px; border-radius: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-actions { justify-content: space-between; }
  .footer-inquiry { padding: 43px 0; }
  .footer-inquiry-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding: 42px 0 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .client-marquee-track { animation: none !important; }
  * { transition-duration: .001ms !important; }
}

/* Home already ends with a dedicated inquiry section. Avoid repeating the same CTA in the footer. */
body[data-page="home"] .footer-inquiry { display: none; }


/* Discovery, SEO landing pages and technical content */
.footer-grid-expanded { grid-template-columns: 1.35fr .8fr .8fr 1.1fr; }
.developer-credit { color: #91a4ae; }
.developer-credit a { color: #c2dbe4; text-decoration: underline; text-decoration-color: rgba(194,219,228,.35); text-underline-offset: 3px; }
.developer-credit a:hover { color: #fff; text-decoration-color: #fff; }
.discovery-section { border-top: 1px solid var(--line); }
.discovery-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.discovery-grid article { background:#fff; padding:40px; }
.discovery-grid h2 { margin:0 0 12px; color:var(--navy-950); font-size:clamp(1.5rem,2.5vw,2rem); line-height:1.2; }
.discovery-grid p { color:var(--muted); margin:0 0 18px; }
.product-detail-hero .page-hero-grid { align-items:center; }
.product-detail-media { min-height:360px; display:grid; place-items:center; padding:28px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; }
.product-detail-media img { max-height:330px; width:auto; object-fit:contain; }
.product-detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:70px; align-items:start; }
.technical-content > h2 { margin:0 0 24px; color:var(--navy-950); font-size:clamp(1.7rem,2.6vw,2.25rem); }
.technical-specs > ul { list-style:none; margin:0; padding:0; border-top:1px solid var(--line); }
.technical-specs > ul > li { display:grid; grid-template-columns:minmax(150px,.38fr) 1fr; gap:24px; padding:14px 0; border-bottom:1px solid var(--line); }
.technical-specs li strong { color:var(--navy-900); }
.technical-specs ul ul { grid-column:1 / -1; margin:9px 0 0 22px; color:var(--muted); }
.technical-specs h4 { margin:34px 0 14px; color:var(--navy-950); font-size:1.15rem; }
.technical-specs table, .comparison-table { width:100%; border-collapse:collapse; font-size:.91rem; }
.technical-specs th, .technical-specs td, .comparison-table th, .comparison-table td { padding:12px 13px; border:1px solid var(--line); text-align:left; vertical-align:top; }
.technical-specs th, .comparison-table th { color:var(--navy-950); background:var(--surface-alt); }
.product-detail-aside { position:sticky; top:calc(var(--header-height) + 24px); display:grid; gap:12px; padding:24px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--surface-alt); }
.detail-fact { display:grid; gap:4px; padding-bottom:13px; border-bottom:1px solid var(--line); }
.detail-fact small { color:var(--muted); }
.detail-fact strong { color:var(--navy-950); font-size:.94rem; }
.answer-layout { display:grid; grid-template-columns:.62fr 1.38fr; gap:70px; }
.faq-list details { border-top:1px solid var(--line); }
.faq-list details:last-child { border-bottom:1px solid var(--line); }
.faq-list summary { cursor:pointer; list-style:none; padding:18px 30px 18px 0; color:var(--navy-950); font-weight:700; position:relative; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:'+'; position:absolute; right:4px; top:16px; color:var(--accent); font-size:1.25rem; }
.faq-list details[open] summary::after { content:'–'; }
.faq-list p { margin:0; padding:0 30px 20px 0; color:var(--muted); }
.knowledge-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.knowledge-card { padding:28px; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; }
.knowledge-card h2 { margin:10px 0 12px; color:var(--navy-950); font-size:1.35rem; line-height:1.25; }
.knowledge-card p { color:var(--muted); }
.application-guide { display:grid; gap:72px; }
.application-answer { max-width:850px; }
.application-answer h2 { margin:0 0 20px; color:var(--navy-950); font-size:clamp(1.8rem,3vw,2.5rem); }
.check-list { margin:0; padding-left:20px; color:var(--muted); }
.check-list li { margin:10px 0; padding-left:5px; }
.related-product-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.related-product-card { overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; }
.related-product-media { height:190px; display:grid; place-items:center; padding:20px; background:var(--surface-cool); }
.related-product-media img { max-height:150px; width:auto; object-fit:contain; }
.related-product-card > div { padding:20px; }
.related-product-card h3 { margin:7px 0 9px; color:var(--navy-950); font-size:1.05rem; line-height:1.3; }
.related-product-card p { margin:0 0 13px; color:var(--muted); font-size:.9rem; }
.industry-detail-list { display:grid; gap:72px; }
.industry-detail { padding-bottom:72px; border-bottom:1px solid var(--line); }
.industry-detail:last-child { border-bottom:0; padding-bottom:0; }
.industry-detail > div:first-child { max-width:760px; margin-bottom:28px; }
.industry-detail h2 { margin:0 0 10px; color:var(--navy-950); font-size:clamp(1.8rem,3vw,2.4rem); }
.industry-detail > div:first-child p { color:var(--muted); }
.resource-hero { padding:74px 0; background:var(--surface-alt); border-bottom:1px solid var(--line); }
.resource-hero-copy { max-width:880px; }
.resource-article { max-width:900px; }
.resource-article h2 { margin:42px 0 14px; color:var(--navy-950); font-size:1.65rem; }
.resource-article p, .resource-article li { color:#465861; }
.answer-lead { margin:0 0 32px; color:var(--navy-950)!important; font-size:1.18rem; line-height:1.75; }
.comparison-table-wrap { overflow-x:auto; margin:24px 0 36px; }
.selection-steps { display:grid; gap:14px; padding-left:24px; }
.resource-cta { margin-top:54px; padding:30px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--surface-alt); }
.resource-cta h2 { margin-top:0; }
.legal-hero { padding:70px 0; }
.legal-content { max-width:860px; }
.legal-content section { padding:0 0 28px; }
.legal-content h2 { margin:0 0 10px; color:var(--navy-950); font-size:1.4rem; }
.legal-content p { color:#465861; }
.legal-updated { margin-top:24px; padding-top:22px; border-top:1px solid var(--line); color:var(--muted)!important; font-size:.9rem; }
.not-found { min-height:65vh; display:grid; align-items:center; padding:100px 0; background:var(--surface-alt); }
.not-found .container { max-width:760px; }
.product-context { margin-bottom:20px; padding:12px 15px; border-left:3px solid var(--accent); background:var(--accent-soft); color:var(--navy-900); border-radius:0 var(--radius-sm) var(--radius-sm) 0; }
.catalog-grid .product-card-actions { align-items:center; }

@media (max-width: 1000px) {
  .footer-grid-expanded { grid-template-columns:1fr 1fr; }
  .knowledge-grid, .related-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-detail-layout { grid-template-columns:1fr; gap:36px; }
  .product-detail-aside { position:static; }
  .answer-layout { grid-template-columns:1fr; gap:20px; }
}
@media (max-width: 720px) {
  .discovery-grid, .knowledge-grid, .related-product-grid, .footer-grid-expanded { grid-template-columns:1fr; }
  .discovery-grid article { padding:28px 22px; }
  .product-detail-media { min-height:260px; }
  .product-detail-media img { max-height:240px; }
  .technical-specs > ul > li { grid-template-columns:1fr; gap:4px; }
  .related-product-media { height:170px; }
}

@media (max-width: 1120px) { .footer-grid-expanded { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-bottom { flex-direction: column; gap: 8px; } }

.form-context {
  margin: 0 0 18px;
  padding: 11px 13px;
  border: 1px solid rgba(70, 159, 199, 0.28);
  border-radius: 10px;
  background: #f4f9fb;
  color: #304653;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-context strong { color: #0b2434; }
