:root {
  --bg: #ffffff;
  --muted: #f4f6f8;
  --ink: #111827;
  --text: #4b5563;
  --line: #d9e1ea;
  --brand: #25465f;
  --brand-dark: #152d3f;
  --accent: #6f8798;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
p { color: var(--text); margin: 0 0 18px; }
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.18; }
h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: 0; }
h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: 0; }
h3 { font-size: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  column-gap: 32px;
  padding: 24px 4vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(15, 40, 60, 0.04);
  backdrop-filter: blur(14px);
}
.logo { display: inline-flex; align-items: center; justify-self: end; gap: 9px; margin-right: 8px; font-size: 21px; font-weight: 700; color: var(--brand-dark); }
.logo img { width: 49px; height: 49px; object-fit: contain; }
.site-nav { grid-column: 2; font-size: 15px; font-weight: 500; color: var(--text); white-space: nowrap; }
.nav-list, .product-dropdown, .dropdown-series { margin: 0; padding: 0; list-style: none; }
.nav-list { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2vw, 32px); }
.nav-item { position: relative; }
.nav-list > .nav-item > a,
.nav-primary > a { position: relative; display: inline-flex; align-items: center; padding: 10px 0; transition: color 0.25s ease; }
.nav-list > .nav-item > a::after,
.nav-primary > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-list > .nav-item > a:hover,
.nav-list > .nav-item > a:focus-visible,
.nav-list > .nav-item > a.is-active,
.nav-primary > a:hover,
.nav-primary > a:focus-visible,
.nav-primary > a.is-active,
.has-dropdown:is(:hover, :focus-within, .is-open) .nav-primary > a { color: var(--brand-dark); }
.nav-list > .nav-item > a:hover::after,
.nav-list > .nav-item > a:focus-visible::after,
.nav-list > .nav-item > a.is-active::after,
.nav-primary > a:hover::after,
.nav-primary > a:focus-visible::after,
.nav-primary > a.is-active::after,
.has-dropdown:is(:hover, :focus-within, .is-open) .nav-primary > a::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-primary { display: flex; align-items: center; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 32px;
  margin-left: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease;
}
.dropdown-chevron { display: block; width: 17px; height: 17px; flex: 0 0 auto; color: currentColor; transform: translateY(1px); transition: transform 0.2s ease, color 0.2s ease; }
.has-dropdown:is(:hover, :focus-within, .is-open) .dropdown-toggle { color: var(--brand-dark); }
.has-dropdown:is(:hover, :focus-within, .is-open) .dropdown-chevron { transform: translateY(1px) rotate(180deg); }
.has-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 18px; }
.product-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 370px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.foam-dropdown { width: 310px; }
.foam-dropdown-title { padding: 8px 10px 12px; color: var(--brand-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.dropdown-group + .dropdown-group { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.dropdown-category, .dropdown-series a { display: flex; align-items: center; border-radius: 6px; transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease; }
.dropdown-category { justify-content: flex-start; padding: 9px 10px; color: var(--brand-dark); font-size: 15px; font-weight: 600; }
.dropdown-series { padding: 2px 0 4px 14px; }
.dropdown-series a { padding: 7px 10px; color: var(--text); font-size: 14px; font-weight: 500; }
.dropdown-category:hover, .dropdown-category:focus-visible,
.dropdown-series a:hover, .dropdown-series a:focus-visible { color: var(--brand); background: #f4f7f9; transform: translateX(2px); }
@media (min-width: 1181px) {
  .has-dropdown:hover .product-dropdown,
  .has-dropdown:focus-within .product-dropdown,
  .has-dropdown.is-open .product-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
}
[id="external-spring"], [id="internal-spring"], [id^="series-"] { scroll-margin-top: 124px; }
.nav-cta, .footer-cta {
  background: var(--brand);
  color: #fff !important;
  min-height: 44px;
  padding: 10px 21px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}
.header-cta { grid-column: 3; justify-self: end; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease; }
.header-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: var(--brand); color: #fff; padding: 9px 12px; border-radius: var(--radius); font-size: 20px; }

.hero, .page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 80px 5vw;
  min-height: 650px;
  background: linear-gradient(180deg, #f9fbfc, #fff);
}
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  height: calc(100vh - 104px);
  min-height: min(720px, calc(100vh - 104px));
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #f3f5f7;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 25%, rgba(255, 255, 255, 0.58) 34%, rgba(255, 255, 255, 0) 47%);
  pointer-events: none;
}
.home-hero .hero-text { position: relative; z-index: 2; width: min(550px, 40vw); margin-left: clamp(40px, 6vw, 120px); padding: 52px 0 60px; }
.home-hero h1 { max-width: 550px; font-size: clamp(44px, 3.6vw, 62px); line-height: 1.02; letter-spacing: -0.035em; }
.home-hero .hero-description { max-width: 520px; font-size: 17px; line-height: 1.62; }
.home-hero .button-row { margin-top: 30px; }
.home-hero .btn { min-height: 46px; padding: 11px 20px; font-size: 14px; }
.home-hero .btn.secondary { background: rgba(255, 255, 255, 0.3); border-color: var(--brand); }
.home-hero .hero-trust-label { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 9px; margin: 17px 0 0; color: var(--brand); font-size: 12px; font-weight: 700; line-height: 1.4; letter-spacing: 0.045em; }
.home-hero .hero-trust-separator { color: var(--accent); font-weight: 400; }
.home-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.home-hero .hero-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; object-position: center right; opacity: 1; filter: none; transform: none; border-radius: 0; box-shadow: none; }
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-stats div { min-width: 0; padding: 0 14px; border-right: 1px solid var(--line); }
.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { padding-right: 0; border-right: 0; }
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { margin-bottom: 4px; color: var(--brand-dark); font-size: clamp(19px, 1.6vw, 25px); line-height: 1.15; }
.hero-stats span { color: var(--text); font-size: 12px; line-height: 1.4; }
#products { scroll-margin-top: 124px; }
.page-hero { min-height: 470px; }
.factory-manufacturing-hero { position: relative; display: flex; min-height: 720px; align-items: center; padding: 72px clamp(24px, 7vw, 134px); overflow: hidden; isolation: isolate; background: #183244; }
.factory-manufacturing-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8, 29, 44, 0.88) 0%, rgba(10, 34, 50, 0.74) 38%, rgba(12, 38, 54, 0.4) 68%, rgba(10, 31, 45, 0.28) 100%); pointer-events: none; }
.factory-manufacturing-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.factory-manufacturing-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,31,44,0.04) 45%, rgba(8,25,38,0.2) 100%); pointer-events: none; }
.factory-manufacturing-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: brightness(0.98) saturate(0.9) contrast(1.07) blur(0.45px); transform: scale(1.003); }
.factory-manufacturing-hero-copy { position: relative; z-index: 2; width: 100%; max-width: 520px; color: #fff; }
.factory-manufacturing-hero-copy .eyebrow { margin-bottom: 24px; color: rgba(255,255,255,0.84); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; }
.factory-manufacturing-hero-copy h1 { max-width: 520px; margin-bottom: 34px; color: #fff; font-size: clamp(38px, 3.1vw, 50px); line-height: 1.05; letter-spacing: -0.04em; text-shadow: 0 2px 18px rgba(0,0,0,0.2); }
.factory-manufacturing-hero-copy > p { max-width: 520px; margin: 0; color: rgba(255,255,255,0.92); font-size: 16px; line-height: 1.72; text-shadow: 0 1px 14px rgba(0,0,0,0.18); }
.factory-hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.3); }
.factory-hero-stats div { min-width: 0; padding: 0 18px; border-right: 1px solid rgba(255,255,255,0.22); }
.factory-hero-stats div:first-child { padding-left: 0; }
.factory-hero-stats div:last-child { padding-right: 0; border-right: 0; }
.factory-hero-stats strong, .factory-hero-stats span { display: block; }
.factory-hero-stats strong { margin-bottom: 5px; color: #fff; font-size: 28px; line-height: 1; letter-spacing: -0.03em; }
.factory-hero-stats span { color: rgba(255,255,255,0.76); font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: 0.045em; text-transform: uppercase; }
.factory-manufacturing-hero-copy .btn { min-height: 50px; margin-top: 30px; padding: 12px 22px; border-color: rgba(255,255,255,0.28); border-radius: 6px; background: #25465f; box-shadow: 0 10px 24px rgba(0,0,0,0.16); font-size: 13px; font-weight: 700; letter-spacing: 0.025em; }
.factory-manufacturing-hero-copy .btn:hover, .factory-manufacturing-hero-copy .btn:focus-visible { background: #17364d; transform: translateY(-2px); }
#manufacturing-capability { scroll-margin-top: 120px; }
.compact-hero { grid-template-columns: 1fr; min-height: 340px; }
.hero-media img, .page-hero img, .rounded-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e9eef2;
}
.page-hero .lotion-hero-image,
.page-hero .foam-hero-image {
  width: 100%;
  height: 500px;
  aspect-ratio: auto;
  object-fit: contain;
}
.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.hero-points, .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.hero-points span, .tag-list span {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button-row.compact { margin-top: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid var(--brand);
}
.btn.primary { background: var(--brand); color: #fff; }
.btn.secondary { background: #fff; color: var(--brand); }
.btn.small { min-height: 38px; padding: 9px 14px; font-size: 14px; }
.text-link { color: var(--brand); font-weight: 800; }

.section { padding: 72px 5vw; }
.section.muted, .muted { background: var(--muted); }
.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.foam-series-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -6px auto 36px;
}
.foam-series-tab {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.foam-series-tab:hover,
.foam-series-tab:focus-visible,
.foam-series-tab.is-active {
  border-color: var(--brand-dark);
  background: var(--brand);
  color: #fff;
}
.foam-series-intro { margin: 0 0 26px; text-align: left; }
.foam-series-intro h3 { margin-bottom: 8px; color: var(--brand-dark); font-size: clamp(24px, 3vw, 32px); }
.foam-series-intro p { margin: 0; color: var(--text); }
.foam-output-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}
.foam-output-heading:first-child { margin-top: 0; }
.foam-output-number { color: var(--brand); font-size: 13px; font-weight: 800; }
.foam-output-heading h3 { margin: 0; color: var(--brand-dark); font-size: 21px; }
.foam-catalog-card[hidden] { display: none; }
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.oem-customization-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}
.customization-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 660px;
  height: 460px;
  padding: 24px;
  justify-self: center;
}
.customization-image-wrap .rounded-img {
  width: 100%;
  height: 100%;
  max-height: 412px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  background: transparent;
}
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.card, .mini-card, .image-cards article, .contact-box, .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}
.product-card img, .image-cards img, .blog-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #e9eef2;
}
.home-products-section { padding-top: 55px; padding-bottom: 72px; }
.home-products-section .section-heading { margin-bottom: 38px; }
.home-products-section .section-heading .eyebrow { margin-bottom: 10px; }
.home-products-section .section-heading h2 { margin-bottom: 12px; }
.home-products-section .section-heading > p:last-child { margin-bottom: 0; }
.home-product-grid { align-items: stretch; }
.home-product-grid .product-card { display: flex; flex-direction: column; height: 100%; }
.home-product-grid .product-image-link { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 18px; overflow: hidden; border-radius: 6px; background: #edf1f4; }
.home-product-grid .product-image-link img { width: 100%; height: 100%; margin: 0; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; background: #edf1f4; }
.home-product-grid .product-card h3 { margin: 0 0 8px; }
.home-product-grid .product-card h3 a { color: inherit; }
.home-product-grid .product-card > p { margin: 0 0 18px; }
.product-category-tags { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: -6px; margin-bottom: 16px; }
.product-category-tags a { padding: 6px 9px; border-radius: 6px; background: #edf2f6; color: var(--brand-dark); font-size: 13px; font-weight: 500; line-height: 1.2; white-space: nowrap; transition: color 0.2s ease, background-color 0.2s ease; }
.product-category-tags a:hover, .product-category-tags a:focus-visible { background: #dfe9f0; color: var(--brand); }
.home-product-grid .product-card-actions { gap: 14px; margin-top: auto; padding-top: 4px; }
.home-product-grid .product-card-actions .btn { border-color: var(--brand); font-weight: 600; transition: color 0.2s ease, background-color 0.2s ease; }
.home-product-grid .product-card-actions .btn:hover, .home-product-grid .product-card-actions .btn:focus-visible { background: var(--brand); color: #fff; }
.home-product-grid .product-card-actions .text-link { font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.home-product-grid .product-card-actions .text-link:hover, .home-product-grid .product-card-actions .text-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }
.mini-card h3 { color: var(--brand-dark); font-size: 18px; }
.feature-list { display: grid; gap: 16px; margin: 24px 0; }
.feature-list div {
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.feature-list strong { display: block; margin-bottom: 4px; }
.feature-list span { color: var(--text); }
.manufacturing-strength-section { padding: 48px 5vw 88px; }
.manufacturing-strength-inner { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); grid-template-areas: "visual heading" "visual details"; column-gap: 64px; row-gap: 28px; align-items: center; width: 100%; max-width: 1500px; margin: 0 auto; }
.manufacturing-heading { grid-area: heading; align-self: end; }
.manufacturing-heading .eyebrow { margin-bottom: 10px; }
.manufacturing-heading h2 { max-width: 680px; margin-bottom: 14px; color: var(--brand-dark); font-size: clamp(34px, 3vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.manufacturing-heading > p:last-child { max-width: 620px; margin-bottom: 0; font-size: 16px; line-height: 1.65; }
.manufacturing-visual { position: relative; grid-area: visual; align-self: center; }
.manufacturing-collage { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; height: clamp(500px, 36vw, 540px); }
.manufacturing-collage img { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; border-radius: 12px; object-fit: cover; object-position: center; filter: saturate(0.84) brightness(0.98) contrast(0.96); }
.manufacturing-collage img:nth-child(2) { filter: saturate(0.72) brightness(0.98) contrast(0.94); }
.manufacturing-collage .factory-building-image { object-position: center 68%; }
.manufacturing-details { grid-area: details; align-self: start; }
.manufacturing-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.manufacturing-feature-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfd; transition: border-color 0.2s ease, transform 0.2s ease; }
.manufacturing-feature-grid article:hover { border-color: #b7c9d6; transform: translateY(-2px); }
.manufacturing-feature-grid .feature-number { display: block; margin-bottom: 11px; color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.manufacturing-feature-grid h3 { margin: 0 0 9px; color: var(--brand-dark); font-size: 18px; font-weight: 600; line-height: 1.3; }
.manufacturing-feature-grid p { margin: 0; font-size: 15px; line-height: 1.6; }
.manufacturing-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.manufacturing-actions .text-link { font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.manufacturing-actions .text-link:hover, .manufacturing-actions .text-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }
.clean-list { padding-left: 20px; color: var(--text); }
.clean-list li { margin-bottom: 8px; }
.center { text-align: center; margin-top: 28px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--brand); color: #fff; }
.spec-table tr:last-child td { border-bottom: 0; }

/* Lotion pump catalog */
.series-quick-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1040px; margin: 22px auto 0; }
.series-quick-nav > div { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.series-quick-nav strong { margin-right: auto; color: var(--brand-dark); }
.series-quick-nav a { color: var(--brand); font-size: 14px; font-weight: 800; }
.catalog-section { scroll-margin-top: 90px; }
.series-block { scroll-margin-top: 90px; }
.series-block + .series-block { margin-top: 52px; }
.series-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.series-heading h3 { margin-bottom: 0; font-size: clamp(26px, 3vw, 36px); }
.series-heading .eyebrow { margin-bottom: 6px; }
.series-heading > span { flex: 0 0 auto; color: var(--text); font-weight: 700; }
.catalog-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; max-width: 1500px; margin: 0 auto; }
.catalog-card { display: flex; flex-direction: column; min-width: 0; height: 390px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04); }
.product-image-box { flex: 0 0 240px; height: 240px; display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; background: #fff; }
.product-image-box img { display: block; width: auto; height: auto; max-width: 90%; max-height: 230px; object-fit: contain; }
.catalog-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; min-height: 0; padding: 9px 10px 10px; border-top: 1px solid var(--line); }
.catalog-card h4 { margin-bottom: 4px; overflow-wrap: anywhere; font-size: 13px; color: var(--brand-dark); }
.catalog-card p { margin-bottom: 4px; font-size: 12px; line-height: 1.35; }
.catalog-card .catalog-series { color: var(--brand); font-weight: 800; }
.catalog-card .catalog-series { font-size: 12px; }
.catalog-card .catalog-spec { color: var(--text); }
.catalog-card .btn { align-self: stretch; justify-content: center; margin-top: auto; padding: 7px 8px; font-size: 11px; white-space: nowrap; }
.foam-catalog-card { height: 405px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.foam-catalog-card:hover { border-color: var(--accent); box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08); }
.foam-catalog-card .catalog-name { color: var(--brand-dark); font-weight: 700; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* Lotion pump technical specifications */
.lotion-technical-section { padding-top: 76px; padding-bottom: 96px; background: #f7f9fa; }
.lotion-technical-heading { max-width: 900px; margin-bottom: 40px; }
.lotion-technical-heading h2 { margin-bottom: 15px; color: var(--brand-dark); font-size: clamp(30px, 2.8vw, 42px); line-height: 1.1; letter-spacing: -0.025em; white-space: nowrap; }
.lotion-technical-heading > p:last-child { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.lotion-specification-card { width: 100%; max-width: 1000px; margin: 0 auto; border-top: 1px solid #dde4e8; border-bottom: 1px solid #dde4e8; border-right: 0; border-left: 0; border-radius: 0; background: #fff; box-shadow: none; }
.lotion-specification-table { width: 100%; min-width: 680px; border-collapse: collapse; }
.lotion-specification-table th { height: 54px; padding: 0 28px; border-bottom: 1px solid #dfe6ea; color: #607889; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-align: left; text-transform: uppercase; }
.lotion-specification-table th:first-child { width: 30%; }
.lotion-specification-table th:last-child { width: 70%; }
.lotion-specification-table td { height: 60px; padding: 12px 28px; border-bottom: 1px solid #edf1f3; background: #fff; color: #486581; font-size: 15px; line-height: 1.5; }
.lotion-specification-table tr:last-child td { border-bottom: 0; }
.lotion-specification-table td:first-child { color: #27485f; font-weight: 700; }
.lotion-specification-table .priority-row td:last-child { color: #102a43; font-weight: 800; }
.lotion-technical-cta { display: flex; width: 100%; max-width: 1000px; margin: 34px auto 0; align-items: center; justify-content: space-between; gap: 34px; padding: 28px 0; border-top: 1px solid #dfe6ea; border-bottom: 1px solid #dfe6ea; border-radius: 0; background: transparent; }
.lotion-technical-cta h3 { margin-bottom: 7px; color: var(--brand-dark); font-size: 22px; }
.lotion-technical-cta p { margin: 0; color: #607583; font-size: 15px; }
.lotion-technical-cta .btn { min-width: 170px; min-height: 48px; flex: 0 0 auto; }

@media (max-width: 860px) {
  .lotion-technical-section { padding: 62px 20px 78px; }
  .lotion-technical-heading { margin-bottom: 36px; text-align: left; }
  .lotion-technical-heading > p:last-child { margin-left: 0; }
  .lotion-technical-cta { align-items: flex-start; flex-direction: column; padding: 26px 0; }
  .lotion-technical-cta .btn { width: auto; }
}

@media (max-width: 520px) {
  .lotion-technical-heading h2 { font-size: clamp(27px, 8vw, 30px); letter-spacing: -0.035em; white-space: normal; }
  .lotion-specification-table { min-width: 0; table-layout: fixed; }
  .lotion-specification-table th:first-child { width: 38%; }
  .lotion-specification-table th:last-child { width: 62%; }
  .lotion-specification-table th, .lotion-specification-table td { height: auto; min-height: 60px; padding: 17px 12px; overflow-wrap: anywhere; }
  .lotion-specification-table td { font-size: 14px; }
  .lotion-technical-cta .btn { width: 100%; }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.process-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.factory-process-section { padding: 56px 5vw 32px; background: #f8fafb; }
.factory-process-inner { width: 100%; max-width: 1500px; margin: 0 auto; }
.factory-process-heading { max-width: 760px; margin-bottom: 40px; text-align: left; }
.factory-process-heading .eyebrow { margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.factory-process-heading h2 { margin-bottom: 14px; font-size: clamp(36px, 3vw, 50px); line-height: 1.1; letter-spacing: -0.02em; }
.factory-process-heading > p:last-child { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.6; }
.factory-process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
.factory-process-grid .process-card { position: relative; min-width: 0; height: 100%; padding: 28px 24px 30px; border: 0; border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(17, 35, 52, 0.07); text-align: left; }

.factory-process-grid .process-number { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 32px; padding: 6px 10px; border-radius: 8px; background: #edf2f6; color: var(--brand-dark); font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: 0.06em; }
.factory-process-grid .process-card h3 { min-height: 2.6em; margin: 18px 0 10px; color: var(--brand-dark); font-size: 18px; font-weight: 600; line-height: 1.3; }
.factory-process-grid .process-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.55; }
.factory-process-link { display: inline-flex; margin-top: 30px; color: var(--brand); font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.factory-process-link:hover, .factory-process-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }

@media (min-width: 1201px) {
  .factory-process-grid .process-card:not(:last-child)::before { content: ""; position: absolute; z-index: 2; top: 50%; right: -25px; width: 26px; height: 1px; background: #aebfcb; pointer-events: none; }
  .factory-process-grid .process-card:not(:last-child)::after { content: ""; position: absolute; z-index: 3; top: calc(50% - 4px); right: -25px; width: 8px; height: 8px; border-top: 1px solid #aebfcb; border-right: 1px solid #aebfcb; transform: rotate(45deg); pointer-events: none; }
}

.inquiry-band {
  margin: 0;
  padding: 64px 5vw;
  background: var(--brand-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.inquiry-band p, .inquiry-band .eyebrow { color: #dce6ee; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}
.contact-qr-section {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
}
.contact-qr-heading { margin-bottom: 24px; text-align: center; }
.contact-qr-heading h2,
.contact-qr-heading h3 { margin-bottom: 9px; color: var(--brand-dark); }
.contact-qr-heading p { margin: 0; color: var(--text); }
.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: clamp(18px, 2.2vw, 28px);
}
.contact-qr-card {
  min-width: 0;
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  text-align: center;
}
.contact-qr-card img {
  width: clamp(160px, 16vw, 200px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
}
.contact-qr-card figcaption {
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 700;
}
.contact-qr-note { max-width: 620px; margin: 24px auto 0; text-align: center; }
.contact-qr-section-dark {
  border: 1px solid rgba(217, 225, 234, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}
.contact-qr-section-dark .contact-qr-heading h3 { color: #fff; }
.contact-qr-section-dark .contact-qr-heading p { color: #dce6ee; }

.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 800; color: var(--brand-dark); }
details p { margin: 12px 0 0; }

/* Homepage lower-section refinement */
.home-oem-section { padding-top: 58px; padding-bottom: 60px; }
.home-oem-section .section-heading { margin-bottom: 28px; }
.home-oem-section .mini-card { display: flex; min-height: 150px; flex-direction: column; justify-content: flex-start; padding: 30px 22px; }
.home-oem-section .mini-card h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.35; }
.home-oem-section .mini-card p { margin: 0; line-height: 1.65; }
.home-oem-section .center { margin-top: 28px; }
.home-quality-section { padding-top: 56px; padding-bottom: 56px; }
.home-quality-section .section-heading { margin-bottom: 28px; }
.home-quality-grid { align-items: stretch; }
.home-quality-grid .quality-card { display: flex; height: 100%; min-width: 0; overflow: hidden; flex-direction: column; padding: 0; border-color: #d9e2ec; border-radius: 12px; box-shadow: 0 8px 24px rgba(17,24,39,0.045); transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.home-quality-grid .quality-card:hover { border-color: #c4d0da; box-shadow: 0 14px 30px rgba(15,31,44,0.1); transform: translateY(-3px); }
.home-quality-grid .quality-card > img { display: block; width: 100%; height: 200px; flex: 0 0 auto; object-fit: cover; object-position: center; }
.quality-card-content { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.quality-card-content h3 { margin: 0 0 10px; color: var(--brand-dark); font-size: 18px; line-height: 1.35; }
.quality-card-content p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.65; }
.home-quality-section + .faq-section { padding-top: 54px; padding-bottom: 54px; }
.faq-section .section-heading { margin-bottom: 24px; }
.faq-section .faq-list { width: 100%; max-width: 1100px; }
.home-inquiry-band { grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); gap: clamp(40px, 4vw, 64px); margin-bottom: 14px; padding-top: 58px; padding-bottom: 58px; }
.home-inquiry-band > div { max-width: 660px; }
.home-inquiry-band h2 { margin-bottom: 16px; }
.home-inquiry-band > div > p:last-child { margin-bottom: 0; line-height: 1.7; }

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 54px 5vw 82px;
  background: #0f1f2c;
  color: #fff;
}
.site-footer p, .site-footer a { color: #d1dbe3; }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h3, .site-footer h4 { color: #fff; }
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  gap: 11px;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.floating-contact.is-over-footer { visibility: hidden; opacity: 0; pointer-events: none; }
.floating-contact-item { position: relative; }
.floating-contact-button {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid #ccd8e2;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 10px 28px rgba(15, 31, 44, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 31, 44, 0.22);
  transform: translateY(-2px);
}
.floating-contact-button:focus-visible { outline: 3px solid rgba(37, 70, 95, 0.22); outline-offset: 3px; }
.floating-contact-button svg { width: 29px; height: 29px; fill: currentColor; }
.floating-contact-popup {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  width: 224px;
  padding: 17px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 31, 44, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.floating-contact-popup::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 100%;
}
.floating-contact-popup strong,
.floating-contact-popup span { display: block; text-align: center; }
.floating-contact-popup strong { margin-bottom: 10px; color: var(--brand-dark); font-size: 16px; }
.floating-contact-popup span { margin-top: 9px; color: var(--text); font-size: 13px; }
.floating-contact-popup img {
  width: 176px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
}
.floating-contact-item.is-open .floating-contact-popup {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .floating-contact-item:hover .floating-contact-popup {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Shared compact B2B footer */
.site-footer.corporate-footer { display: block; padding: 44px 5vw 0; background: #0f1f2c; color: #fff; }
.corporate-footer-grid, .corporate-footer-bottom { width: 100%; max-width: 1500px; margin: 0 auto; }
.corporate-footer-grid { display: grid; grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.72fr) minmax(180px, 0.9fr) minmax(200px, 0.95fr) minmax(270px, 1.2fr); gap: clamp(30px, 2.8vw, 48px); align-items: start; }
.corporate-footer h3, .corporate-footer h4 { margin: 0 0 14px; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.4; }
.corporate-footer p, .corporate-footer a, .corporate-footer li, .corporate-footer dd { color: #d1dbe3; font-size: 14px; line-height: 1.55; }
.corporate-footer p { margin: 0; }
.footer-brand-block h3 { max-width: 420px; font-size: 17px; }
.footer-brand-block .footer-positioning { margin-bottom: 9px; color: #fff; font-weight: 600; }
.footer-brand-block p + p { margin-top: 8px; }
.footer-products a, .footer-company-links a { display: block; margin: 8px 0; }
.footer-manufacturing ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.footer-company-links { margin-top: 13px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.12); }
.corporate-footer a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease; }
.corporate-footer a:hover, .corporate-footer a:focus-visible { color: #fff; text-decoration-color: currentColor; }
.footer-contact-block dl, .footer-contact-block dd { margin: 0; }
.footer-contact-block dl { display: grid; gap: 10px; }
.footer-contact-block dt { margin-bottom: 2px; color: #fff; font-size: 13px; font-weight: 600; }
.footer-contact-block dd { overflow-wrap: anywhere; }
.footer-whatsapp-link { margin-top: -5px; }
.footer-quote-cta { display: inline-flex; min-height: 40px; margin-top: 15px; align-items: center; justify-content: center; padding: 8px 15px; border: 1px solid rgba(255,255,255,0.48); border-radius: 6px; color: #fff !important; font-size: 12px !important; font-weight: 700; }
.footer-quote-cta:hover, .footer-quote-cta:focus-visible { background: #fff; color: var(--brand-dark) !important; text-decoration-color: transparent !important; }
.footer-location-item + .footer-location-item { margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-location-item strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; font-weight: 600; }
.footer-location-item a { display: inline-block; margin-top: 6px; }
.corporate-footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 25px; padding: 16px 0 18px; border-top: 1px solid rgba(255,255,255,0.12); color: #aebbc5; font-size: 13px; line-height: 1.5; }

@media (max-width: 1250px) {
  .corporate-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 42px; }
  .footer-brand-block { grid-column: span 2; }
}

@media (max-width: 860px) {
  .site-footer.corporate-footer { padding: 40px 20px 0; }
  .corporate-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .corporate-footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 22px; padding: 15px 0 17px; }
}

@media (max-width: 600px) {
  .corporate-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-block { grid-column: auto; }
  .footer-location-item + .footer-location-item { margin-top: 15px; padding-top: 13px; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; column-gap: 12px; min-height: 88px; padding: 16px 5vw; }
  .logo { grid-column: 1; justify-self: start; margin-right: 0; }
  .logo img { width: 40px; height: 40px; }
  .header-cta { display: inline-flex; grid-column: 2; grid-row: 1; align-items: center; }
  .nav-toggle { display: inline-flex; grid-column: 3; justify-self: end; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 5vw 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: normal;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { width: 100%; flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-item { width: 100%; }
  .nav-list > .nav-item > a, .nav-primary > a { width: auto; padding: 9px 0; }
  .nav-primary { justify-content: space-between; width: 100%; }
  .dropdown-toggle { width: 40px; height: 40px; }
  .has-dropdown::before { display: none; }
  .product-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: hidden;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .has-dropdown.is-open .product-dropdown { max-height: 520px; padding-top: 6px; padding-bottom: 8px; pointer-events: auto; }
  .foam-dropdown { width: 100%; }
  .dropdown-category { padding: 8px 10px; }
  .dropdown-series { padding-left: 14px; }
}

/* About page */
.about-page main { overflow: hidden; }
.about-page .about-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 5vw, 84px);
  min-height: 650px;
  padding-top: 76px;
  padding-bottom: 76px;
  background: linear-gradient(135deg, #f7f9fb 0%, #fff 68%);
}
.about-hero-copy { max-width: 660px; justify-self: end; }
.about-hero-copy .eyebrow { margin-bottom: 18px; letter-spacing: 0.16em; }
.about-hero-copy h1 { max-width: 630px; margin-bottom: 26px; color: var(--brand-dark); font-size: clamp(42px, 4.2vw, 60px); line-height: 1.06; letter-spacing: -0.035em; }
.about-hero-intro { max-width: 620px; padding-left: 22px; border-left: 2px solid #b9c9d5; }
.about-hero-intro p { margin-bottom: 11px; font-size: 16px; line-height: 1.65; }
.about-hero-intro p:last-child { margin-bottom: 0; }
.about-hero-actions { gap: 14px; margin-top: 30px; }
.about-hero-actions .btn { min-height: 48px; padding: 12px 22px; font-size: 14px; letter-spacing: 0.02em; transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.about-hero-actions .btn:hover, .about-hero-actions .btn:focus-visible { transform: translateY(-2px); }
.about-hero-actions .btn.secondary { border-color: #afbdc8; color: var(--brand-dark); }
.about-hero-media { position: relative; width: 100%; max-width: 760px; justify-self: start; }
.about-hero-media::before { content: ""; position: absolute; top: -18px; right: -18px; width: 32%; height: 42%; border-top: 1px solid #b9c9d5; border-right: 1px solid #b9c9d5; pointer-events: none; }
.about-page .about-hero-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; object-fit: cover; object-position: center; box-shadow: 0 26px 60px rgba(21, 45, 63, 0.12); filter: brightness(1.03) saturate(0.96) contrast(1.03); }

.about-section-intro { max-width: 560px; }
.about-section-intro.centered { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.about-section-intro .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.16em; }
.about-section-intro h2 { margin-bottom: 15px; color: var(--brand-dark); font-size: clamp(34px, 3.2vw, 48px); line-height: 1.1; letter-spacing: -0.025em; }
.about-section-intro > p:last-child { max-width: 560px; margin-bottom: 0; line-height: 1.7; }

.about-snapshot-section { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(48px, 6vw, 96px); align-items: center; padding-top: 86px; padding-bottom: 86px; }
.about-snapshot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid #d4dee6; border-radius: 12px; background: #fff; overflow: hidden; box-shadow: 0 18px 48px rgba(21, 45, 63, 0.06); }
.about-snapshot-grid article { min-width: 0; padding: 30px 22px; border-right: 1px solid #dce4ea; }
.about-snapshot-grid article:last-child { border-right: 0; }
.snapshot-value { display: block; margin-bottom: 10px; color: var(--brand-dark); font-size: clamp(34px, 2.8vw, 44px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; white-space: nowrap; }
.about-snapshot-grid h3 { margin: 0; color: #657684; font-size: 12px; font-weight: 700; line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase; }

.about-products-section { padding-top: 92px; padding-bottom: 96px; background: #f5f7f9; }
.about-product-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr)); gap: 0; max-width: 1420px; margin: 0 auto; border: 1px solid #cfd9e1; border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.52); }
.about-product-grid article { position: relative; min-height: 230px; padding: 32px 30px 34px; border-right: 1px solid #cfd9e1; background: transparent; }
.about-product-grid article:last-child { border-right: 0; }
.about-product-grid span { display: block; margin-bottom: 36px; color: #8a9ba8; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }
.about-product-grid h3 { margin-bottom: 12px; color: var(--brand-dark); font-size: 21px; line-height: 1.25; }
.about-product-grid p { max-width: 31ch; margin: 0; font-size: 15px; line-height: 1.7; }
.about-product-grid article::after { content: ""; position: absolute; left: 30px; bottom: -1px; width: 0; height: 2px; background: var(--brand); transition: width 0.25s ease; }
.about-product-grid article:hover::after { width: calc(100% - 60px); }
.about-product-grid article:first-child { padding-right: 44px; padding-left: 38px; background: var(--brand-dark); }
.about-product-grid article:first-child span { color: #9fb5c5; }
.about-product-grid article:first-child h3 { color: #fff; font-size: 27px; }
.about-product-grid article:first-child p { max-width: 38ch; color: #dbe5ec; font-size: 16px; }
.about-product-grid article:first-child::after { left: 38px; background: #fff; }

.about-audience-section { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: clamp(52px, 6vw, 94px); align-items: center; padding-top: 104px; padding-bottom: 104px; }
.about-audience-media { position: relative; max-width: 720px; justify-self: end; }
.about-page .about-audience-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; object-fit: cover; box-shadow: 0 22px 54px rgba(21, 45, 63, 0.1); }
.about-audience-media::after { content: ""; position: absolute; left: -20px; bottom: -20px; z-index: -1; width: 52%; height: 48%; border-radius: 10px; background: #e8eef2; }
.about-audience-copy { max-width: 610px; }
.about-audience-copy .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.16em; }
.about-audience-copy h2 { margin-bottom: 30px; color: var(--brand-dark); font-size: clamp(36px, 3.3vw, 50px); letter-spacing: -0.03em; }
.about-audience-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.about-audience-list span { position: relative; padding: 10px 15px 10px 29px; border: 1px solid #d5dfe6; border-radius: 999px; background: #f7f9fa; color: var(--brand-dark); font-size: 14px; font-weight: 600; line-height: 1.35; }
.about-audience-list span::before { content: ""; position: absolute; top: 50%; left: 15px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); transform: translateY(-50%); }
.about-audience-summary { max-width: 58ch; margin: 0; font-size: 16px; line-height: 1.75; }

.about-advantages-section { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(50px, 6vw, 100px); align-items: start; padding-top: 96px; padding-bottom: 102px; background: #f5f7f9; }
.about-advantages-section .about-section-intro { position: sticky; top: 144px; }
.about-advantages-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 42px; }
.about-advantages-grid article { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; min-height: 164px; padding: 27px 2px 18px; border-top: 1px solid #cbd7df; background: transparent; }
.about-advantages-grid article > span { color: #8da0ad; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.about-advantages-grid h3 { margin-bottom: 11px; color: var(--brand-dark); font-size: 19px; line-height: 1.35; }
.about-advantages-grid p { margin: 0; font-size: 15px; line-height: 1.7; }

.about-final-cta { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: clamp(50px, 6vw, 92px); align-items: center; padding: 78px 6vw; background: var(--brand-dark); color: #fff; }
.about-final-cta-copy { max-width: 780px; }
.about-final-cta .eyebrow { margin-bottom: 12px; color: #9fb5c5; font-size: 12px; letter-spacing: 0.16em; }
.about-final-cta h2 { max-width: 760px; margin-bottom: 18px; font-size: clamp(36px, 3.5vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
.about-final-cta p { color: #d7e2ea; line-height: 1.7; }
.about-final-cta-copy > p:last-child { max-width: 660px; margin-bottom: 0; }
.about-final-cta-actions { padding: 30px 0 30px clamp(30px, 4vw, 58px); border-left: 1px solid rgba(255, 255, 255, 0.2); }
.about-final-cta-actions h3 { margin-bottom: 20px; color: #fff; font-size: 23px; }
.about-cta-trust { display: grid; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.about-cta-trust li { position: relative; padding-left: 26px; color: #d7e2ea; font-size: 15px; }
.about-cta-trust li::before { content: "✓"; position: absolute; left: 0; color: #fff; font-weight: 700; }
.about-final-cta-actions .button-row { margin-top: 0; }
.about-final-cta-actions .btn { min-height: 48px; }
.about-final-cta-actions .btn.primary { border-color: #fff; background: #fff; color: var(--brand-dark); }
.about-final-cta-actions .btn.secondary { border-color: rgba(255, 255, 255, 0.46); background: transparent; color: #fff; }
.about-page .site-footer.corporate-footer { padding-top: 56px; }
.about-page .corporate-footer-grid { gap: clamp(38px, 3.3vw, 56px); }
.about-page .corporate-footer p, .about-page .corporate-footer a, .about-page .corporate-footer li, .about-page .corporate-footer dd { line-height: 1.65; }
.about-page .footer-brand-block { max-width: 430px; }
.about-page .corporate-footer-bottom { margin-top: 34px; }

@media (max-width: 1100px) {
  .about-page .about-hero { gap: 40px; }
  .about-hero-copy h1 { font-size: clamp(40px, 5vw, 52px); }
  .about-snapshot-section, .about-advantages-section { grid-template-columns: 1fr; }
  .about-snapshot-section .about-section-intro, .about-advantages-section .about-section-intro { max-width: 720px; }
  .about-advantages-section .about-section-intro { position: static; }
  .about-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-product-grid article:first-child { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:nth-child(2), .about-product-grid article:nth-child(3) { border-right: 1px solid #cfd9e1; }
  .about-audience-section { gap: 44px; }
  .about-final-cta { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); }
  .card-grid.five, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .manufacturing-strength-section { padding-top: 48px; padding-bottom: 68px; }
  .manufacturing-strength-inner { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); column-gap: 40px; }
  .manufacturing-feature-grid { grid-template-columns: 1fr; }
  .manufacturing-collage { height: 500px; }
  .factory-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 860px) {
  .about-page .about-hero { grid-template-columns: 1fr; gap: 42px; padding: 56px 20px 62px; }
  .about-hero-copy { max-width: none; justify-self: stretch; }
  .about-hero-copy h1 { max-width: 680px; font-size: clamp(38px, 10vw, 50px); }
  .about-hero-intro { padding-left: 18px; }
  .about-hero-media { max-width: 720px; justify-self: stretch; }
  .about-hero-media::before { top: -12px; right: -10px; }
  .about-snapshot-section, .about-products-section, .about-audience-section, .about-advantages-section { padding: 68px 20px; }
  .about-snapshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-snapshot-grid article { border-bottom: 1px solid #dce4ea; }
  .about-snapshot-grid article:nth-child(2) { border-right: 0; }
  .about-snapshot-grid article:nth-child(n+3) { border-bottom: 0; }
  .about-product-grid { grid-template-columns: 1fr; }
  .about-product-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:nth-child(-n+3) { border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:last-child { border-bottom: 0; }
  .about-product-grid span { margin-bottom: 22px; }
  .about-audience-section { grid-template-columns: 1fr; gap: 52px; }
  .about-audience-media { max-width: 720px; justify-self: stretch; }
  .about-audience-copy { max-width: 680px; }
  .about-advantages-grid { grid-template-columns: 1fr; }
  .about-advantages-grid article { min-height: 0; }
  .about-final-cta { grid-template-columns: 1fr; gap: 38px; padding: 64px 20px; }
  .about-final-cta-actions { padding: 28px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .site-header { min-height: 72px; padding: 8px 5vw; }
  .hero, .page-hero, .split, .split.reverse, .inquiry-band, .contact-layout {
    grid-template-columns: 1fr;
  }
  .home-hero { display: flex; flex-direction: column; height: auto; min-height: auto; max-height: none; padding: 0; gap: 0; overflow: visible; }
  .home-hero::after { display: none; }
  .home-hero .hero-media { position: relative; inset: auto; order: 2; width: 100%; background: #f3f5f7; }
  .home-hero .hero-media img { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: contain; object-position: center; }
  .home-hero .hero-text { order: 1; width: 100%; margin-left: 0; padding: 42px 5vw 36px; }
  .home-hero h1 { font-size: clamp(36px, 10vw, 50px); line-height: 1.08; }
  .home-hero .hero-description { font-size: 16px; line-height: 1.65; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .hero-stats div { padding: 0 14px 0 0; }
  .hero-stats div:nth-child(2) { padding-right: 0; border-right: 0; }
  .oem-customization-section { grid-template-columns: 1fr; gap: 28px; }
  .customization-image-wrap { max-width: 100%; height: auto; min-height: 0; padding: 16px; }
  .customization-image-wrap .rounded-img { width: 100%; height: auto; max-height: 360px; object-fit: contain; }
  .hero, .page-hero { padding-top: 52px; min-height: auto; }
  .factory-page-hero { gap: 36px; padding: 52px 20px 60px; }
  .factory-hero-copy { max-width: none; }
  .factory-hero-copy > p { font-size: 16px; line-height: 1.65; }
  .page-hero.factory-page-hero > img { width: 100%; height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; }
  .hero.home-hero { padding-top: 0; }
  .page-hero .lotion-hero-image,
  .page-hero .foam-hero-image { width: 100%; height: auto; max-height: 500px; object-fit: contain; }
  .card-grid.three, .card-grid.four, .card-grid.five, .process-grid { grid-template-columns: 1fr; }
  .series-quick-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: 1fr; }
  .foam-series-tabs { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
  .foam-series-tab { width: 100%; }
  .foam-series-intro { margin-bottom: 20px; }
  .foam-output-heading { margin-top: 10px; padding-top: 16px; }
  .series-quick-nav > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .series-quick-nav strong { margin-right: 0; }
  .series-heading { align-items: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .floating-contact { right: 16px; bottom: 20px; gap: 10px; }
  .floating-contact-button { width: 52px; height: 52px; }
  .floating-contact-popup { right: calc(100% + 10px); width: min(240px, calc(100vw - 96px)); }
  .contact-qr-section { padding: 30px 24px; }
  .home-products-section { padding-top: 52px; padding-bottom: 72px; }
  .home-products-section .section-heading { margin-bottom: 36px; }
  .home-oem-section, .home-quality-section, .home-quality-section + .faq-section { padding: 48px 20px; }
  .home-oem-section .mini-card { min-height: 0; padding: 28px 22px; }
  .home-quality-grid .quality-card > img { height: 210px; }
  .faq-section .section-heading { margin-bottom: 22px; }
  .home-inquiry-band { grid-template-columns: 1fr; gap: 28px; margin-bottom: 10px; padding: 48px 20px; }
  .product-category-tags { flex-wrap: wrap; }
  .site-footer { padding-bottom: 100px; }
  .manufacturing-strength-section { padding: 40px 20px 52px; }
  .manufacturing-strength-inner { grid-template-columns: 1fr; grid-template-areas: "heading" "visual" "details"; gap: 28px; }
  .manufacturing-heading { align-self: auto; }
  .manufacturing-heading h2 { font-size: clamp(32px, 8vw, 42px); line-height: 1.15; }
  .manufacturing-visual { overflow: visible; }
  .manufacturing-collage { height: auto; gap: 10px; }
  .manufacturing-collage img { height: auto; aspect-ratio: 4 / 3; border-radius: 10px; object-position: center; }
  .manufacturing-collage .factory-building-image { object-position: center 68%; }
  .manufacturing-feature-grid { grid-template-columns: 1fr; }
  .manufacturing-feature-grid article { padding: 22px; }
  .manufacturing-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .factory-process-section { padding: 48px 20px 24px; }
  .factory-process-heading { margin-bottom: 36px; }
  .factory-process-heading h2 { font-size: clamp(34px, 9vw, 44px); line-height: 1.12; }
  .factory-process-heading > p:last-child { font-size: 16px; line-height: 1.6; }
  .factory-process-grid { grid-template-columns: 1fr; gap: 16px; }
  .factory-process-grid .process-card { padding: 24px; }
  .factory-process-grid .process-card h3 { min-height: 0; }
}

.tooling-gallery {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.tooling-gallery .rounded-img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
}
.tooling-gallery .tooling-main {
  grid-row: 1 / 3;
}

/* Factory page lower capability, inquiry and footer refinements */
.factory-capability-section { padding: 80px 5vw; background: #fff; }
.factory-capability-section.factory-capability-muted { background: #f7f9fb; }
.factory-capability-inner { width: 100%; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: clamp(56px, 4.4vw, 72px); align-items: center; }
.factory-capability-copy { max-width: 640px; }
.factory-capability-copy h2 { max-width: 18ch; margin: 0 0 20px; color: var(--brand-dark); font-size: clamp(32px, 2.5vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.factory-capability-copy p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.7; }
.factory-capability-copy p + p { margin-top: 16px; }
.factory-single-media { overflow: hidden; border-radius: 12px; background: #eef2f5; }
.factory-single-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.injection-capability-section .factory-capability-inner { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.08fr); }
.injection-capability-section { padding-top: 40px; }
.injection-capability-section .factory-single-media { width: 100%; max-width: 540px; justify-self: start; overflow: visible; background: transparent; }
.injection-capability-section .factory-single-media img { width: 100%; height: auto; aspect-ratio: auto; border-radius: 12px; object-fit: contain; object-position: center; }
.injection-capability-section .factory-capability-copy { width: 100%; max-width: 700px; }
.injection-capability-section .factory-capability-copy h2 { max-width: 22ch; }
.injection-capability-section .factory-capability-data li { padding-right: 14px; padding-left: 14px; }
.injection-capability-section .factory-capability-data li:first-child { padding-left: 0; }
.factory-capability-data { display: flex; margin: 28px 0 0; padding: 0; list-style: none; }
.factory-capability-data li { flex: 1 1 0; min-width: 0; padding: 0 18px; border-left: 1px solid var(--line); }
.factory-capability-data li:first-child { padding-left: 0; border-left: 0; }
.factory-capability-data strong, .factory-capability-data span { display: block; }
.factory-capability-data strong { margin-bottom: 5px; color: var(--brand-dark); font-size: 15px; font-weight: 700; }
.factory-capability-data span { color: var(--text); font-size: 14px; line-height: 1.45; }
.factory-media-collage { height: 520px; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; }
.factory-media-collage img { display: block; width: 100%; height: 100%; min-height: 0; border-radius: 12px; object-fit: cover; object-position: center; }
.factory-media-collage .tooling-main { grid-row: 1 / 3; }
.tooling-gallery .tooling-main { object-position: center; }
.automatic-assembly-section { min-height: 0; max-height: 650px; padding-top: 44px; padding-bottom: 44px; }
.automatic-assembly-section .factory-capability-inner { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; }
.automatic-assembly-section .factory-capability-copy { max-width: 660px; align-self: center; }
.automatic-assembly-section .factory-capability-copy h2 { max-width: 22ch; }
.automatic-assembly-grid { display: grid; width: min(100%, 520px); grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, 200px); gap: 20px; align-self: center; justify-self: center; }
.automatic-assembly-card { display: flex; width: 100%; height: 180px; align-items: center; justify-content: center; overflow: hidden; border-radius: 16px; background: #f7f9fb; box-shadow: 0 8px 22px rgba(15, 31, 44, 0.08); }
.automatic-assembly-card img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.automatic-assembly-grid .automatic-assembly-main { grid-column: 1; grid-row: 1 / 3; width: 100%; height: 420px; }
.automatic-assembly-grid .automatic-assembly-card:not(.automatic-assembly-main) { width: 100%; height: 200px; }
.final-inspection-section { padding-top: 76px; padding-bottom: 76px; }
.final-inspection-section .factory-capability-inner { grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: clamp(56px, 4.4vw, 72px); align-items: center; }
.final-inspection-section .factory-capability-copy { width: 100%; max-width: 620px; }
.final-inspection-section .factory-capability-copy h2 { max-width: 540px; margin-bottom: 24px; font-size: clamp(38px, 3vw, 48px); line-height: 1.12; letter-spacing: -0.02em; }
.final-inspection-section .factory-capability-copy p { max-width: 620px; font-size: 17px; line-height: 1.7; }
.final-inspection-section .factory-capability-copy p + p { margin-top: 18px; }
.final-inspection-media { overflow: hidden; border-radius: 12px; background: #eef2f5; }
.final-inspection-media img { display: block; width: 100%; height: auto; border-radius: 12px; object-fit: contain; object-position: center; }

.factory-inquiry-band { display: block; padding: 60px 5vw; }
.factory-inquiry-inner { width: 100%; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(48px, 5vw, 76px); align-items: center; }
.factory-inquiry-copy { min-width: 0; }
.factory-inquiry-inner h2 { max-width: 820px; min-width: 520px; margin: 0 0 20px; color: #fff; font-size: clamp(38px, 3vw, 54px); line-height: 1.1; letter-spacing: -0.02em; }
.factory-inquiry-copy > p { max-width: 720px; margin: 0; color: #dce6ee; font-size: 17px; line-height: 1.65; }
.factory-project-support { width: 100%; max-width: 420px; padding-left: clamp(32px, 3vw, 48px); border-left: 1px solid rgba(255,255,255,0.16); }
.factory-support-label { margin: 0 0 16px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; }
.factory-project-support ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.factory-project-support li { position: relative; padding-left: 16px; color: #dce6ee; font-size: 15px; line-height: 1.5; }
.factory-project-support li::before { content: ""; position: absolute; top: 0.68em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.7); }
.factory-inquiry-button { display: inline-flex; width: 220px; min-height: 52px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 7px; background: #fff; color: var(--brand-dark); font-size: 14px; font-weight: 700; text-align: center; transition: background-color 0.2s ease, transform 0.2s ease; }
.factory-inquiry-button:hover, .factory-inquiry-button:focus-visible { background: #edf3f7; transform: translateY(-1px); }

.factory-faq-section { padding: 64px 5vw 56px; background: #fff; }
.factory-faq-inner { width: 100%; max-width: 1000px; margin: 0 auto; }
.factory-faq-heading { margin-bottom: 32px; text-align: center; }
.factory-faq-heading .eyebrow { margin-bottom: 8px; }
.factory-faq-heading h2 { margin: 0; color: var(--brand-dark); font-size: clamp(34px, 3vw, 46px); line-height: 1.15; letter-spacing: -0.02em; }
.factory-faq-intro { max-width: 680px; margin: 16px auto 0; color: #5f7180; font-size: 16px; line-height: 1.65; }
.factory-faq-list { display: grid; gap: 12px; }
.factory-faq-item { overflow: hidden; padding: 0; border: 1px solid #d7e2eb; border-radius: 12px; background: #fff; box-shadow: 0 3px 12px rgba(15,31,44,0.04); transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease; }
.factory-faq-item:hover, .factory-faq-item[open] { border-color: #b8cad8; box-shadow: 0 10px 28px rgba(15,31,44,0.08); transform: translateY(-1px); }
.factory-faq-item summary { position: relative; display: grid; min-height: 68px; grid-template-columns: 48px minmax(0, 1fr) 32px; gap: 14px; align-items: center; padding: 0 22px; color: var(--brand-dark); cursor: pointer; list-style: none; transition: background-color 0.2s ease; }
.factory-faq-item summary::-webkit-details-marker { display: none; }
.factory-faq-item summary::after { content: "+"; display: inline-flex; width: 30px; height: 30px; grid-column: 3; grid-row: 1; align-items: center; justify-content: center; border: 1px solid #c9d7e2; border-radius: 50%; background: #f5f8fa; color: var(--brand-dark); font-size: 21px; font-weight: 400; line-height: 1; transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.25s ease; }
.factory-faq-item:hover summary::after { border-color: var(--brand-dark); background: var(--brand-dark); color: #fff; }
.factory-faq-item[open] summary::after { border-color: var(--brand-dark); background: var(--brand-dark); color: #fff; transform: rotate(45deg); }
.factory-faq-number { color: #71879a; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.factory-faq-question { font-size: 17px; font-weight: 700; line-height: 1.4; }
.factory-faq-answer { margin: 0 22px 0 84px; padding: 0 42px 20px 0; border-top: 1px solid #e8eef3; }
.factory-faq-answer p { max-width: 780px; margin: 16px 0 0; color: var(--text); font-size: 15px; line-height: 1.7; animation: factory-faq-answer-in 0.25s ease both; }
@keyframes factory-faq-answer-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.factory-faq-cta { display: flex; gap: 36px; align-items: center; justify-content: space-between; margin-top: 32px; padding: 26px 30px; border: 1px solid #d7e2eb; border-left: 4px solid var(--brand-dark); border-radius: 12px; background: #f4f7f9; }
.factory-faq-cta h3 { margin: 0 0 5px; color: var(--brand-dark); font-size: 21px; line-height: 1.3; }
.factory-faq-cta p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.6; }
.factory-faq-cta .btn { flex: 0 0 auto; white-space: nowrap; }

.site-footer.factory-footer { display: block; padding: 44px 5vw 0; }
.factory-footer-main, .factory-footer-locations, .factory-footer-bottom { width: 100%; max-width: 1500px; margin-right: auto; margin-left: auto; }
.factory-footer-main { display: grid; grid-template-columns: minmax(300px, 1.55fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr) minmax(220px, 1fr); gap: clamp(36px, 3.2vw, 52px); align-items: start; }
.factory-footer h3, .factory-footer h4 { margin: 0 0 18px; color: #fff; font-size: 16px; font-weight: 700; }
.factory-footer-company h3 { max-width: 430px; margin-bottom: 8px; font-size: 17px; line-height: 1.4; }
.factory-footer-company p { max-width: 460px; }
.factory-footer-company .factory-footer-positioning { margin-bottom: 10px; color: #fff; font-size: 14px; font-weight: 600; }
.factory-footer-oem { display: inline-flex; margin-top: 16px; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }
.factory-footer p, .factory-footer a, .factory-footer dd { color: #d1dbe3; font-size: 14px; line-height: 1.6; }
.factory-footer p { margin: 0; }
.factory-footer a { display: block; margin: 10px 0; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }
.factory-footer a:hover, .factory-footer a:focus-visible { color: #fff; text-decoration-color: currentColor; }
.factory-footer-contact dl, .factory-footer-contact dd { margin: 0; }
.factory-footer-manufacturing ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.factory-footer-manufacturing li { color: #d1dbe3; font-size: 14px; line-height: 1.55; }
.factory-footer-contact dl { display: grid; gap: 12px; }
.factory-footer-contact dt { margin-bottom: 4px; color: #fff; font-size: 14px; font-weight: 600; }
.factory-footer-contact a { margin: 0; overflow-wrap: anywhere; }
.factory-footer-contact .factory-footer-quote { display: inline-flex; min-height: 42px; margin-top: 18px; align-items: center; justify-content: center; padding: 9px 16px; border: 1px solid rgba(255,255,255,0.48); border-radius: 6px; color: #fff; font-size: 13px; font-weight: 700; }
.factory-footer-contact .factory-footer-quote:hover, .factory-footer-contact .factory-footer-quote:focus-visible { background: #fff; color: var(--brand-dark); text-decoration-color: transparent; }
.factory-footer-locations { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.factory-footer-locations h4 { margin-bottom: 12px; }
.factory-location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(44px, 4vw, 56px); }
.factory-location-grid strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }
.factory-location-grid p { max-width: 540px; }
.factory-location-grid a { display: inline-block; margin-top: 6px; }
.factory-footer-bottom { margin-top: 20px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.12); color: #aebbc5; font-size: 13px; line-height: 1.5; }

@media (max-width: 1100px) {
  .factory-capability-section { padding: 68px 5vw; }
  .factory-capability-inner { grid-template-columns: 1fr; gap: 36px; }
  .injection-capability-section .factory-capability-inner { grid-template-columns: 1fr; }
  .injection-capability-section { padding-top: 36px; }
  .injection-capability-section .factory-single-media { width: 100%; max-width: 560px; justify-self: center; }
  .automatic-assembly-section .factory-capability-inner { grid-template-columns: 1fr; }
  .automatic-assembly-section { max-height: none; min-height: 0; }
  .automatic-assembly-section .factory-capability-copy { max-width: 760px; }
  .automatic-assembly-grid { width: min(100%, 520px); max-width: 520px; }
  .factory-capability-copy { max-width: 760px; }
  .factory-capability-inner.media-first .factory-capability-copy, .factory-capability-section.media-first .factory-capability-copy { order: 1; }
  .factory-capability-section.media-first .factory-capability-media, .factory-capability-section.media-first .factory-media-collage { order: 2; }
  .factory-capability-section.media-first .final-inspection-media { order: 2; }
  .final-inspection-section { padding-top: 60px; padding-bottom: 60px; }
  .final-inspection-section .factory-capability-inner { grid-template-columns: 1fr; }
  .factory-media-collage { height: 500px; }
  .factory-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 48px; }
  .factory-inquiry-band { padding-top: 60px; padding-bottom: 60px; }
  .factory-inquiry-inner { gap: 40px; }
  .factory-inquiry-inner h2 { min-width: 0; font-size: clamp(36px, 4.4vw, 46px); }
}

@media (max-width: 860px) {
  .tooling-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .tooling-gallery .tooling-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .tooling-gallery .rounded-img:not(.tooling-main) {
    aspect-ratio: 4 / 3;
  }
  .factory-capability-section { padding: 52px 20px; }
  .final-inspection-section { padding: 44px 20px; }
  .final-inspection-section .factory-capability-copy h2 { margin-bottom: 22px; font-size: clamp(32px, 9vw, 38px); }
  .final-inspection-section .factory-capability-copy p { font-size: 16px; line-height: 1.65; }
  .injection-capability-section { padding-top: 36px; }
  .factory-capability-inner { gap: 28px; }
  .factory-capability-copy h2 { margin-bottom: 16px; font-size: clamp(30px, 8vw, 38px); }
  .factory-capability-copy p { font-size: 16px; line-height: 1.65; }
  .factory-capability-data { flex-direction: column; gap: 0; margin-top: 24px; }
  .factory-capability-data li { padding: 12px 0; border-top: 1px solid var(--line); border-left: 0; }
  .factory-capability-data li:first-child { padding-top: 0; border-top: 0; }
  .factory-media-collage { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; gap: 12px; }
  .factory-media-collage .tooling-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .factory-media-collage img:not(.tooling-main) { height: auto; aspect-ratio: 4 / 3; }
  .automatic-assembly-grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, 200px); gap: 20px; }


  .factory-inquiry-band { padding: 48px 20px; }
  .factory-inquiry-inner { grid-template-columns: 1fr; gap: 28px; }
  .factory-inquiry-inner h2 { max-width: 620px; min-width: 0; margin-bottom: 18px; font-size: clamp(32px, 9vw, 38px); }
  .factory-inquiry-copy > p { font-size: 16px; }
  .factory-inquiry-button { width: 100%; max-width: 320px; }
  .factory-faq-section { padding: 52px 20px 46px; }
  .factory-faq-heading { margin-bottom: 24px; text-align: left; }
  .factory-faq-item summary { grid-template-columns: 38px minmax(0, 1fr) 24px; gap: 10px; padding: 10px 16px; }
  .factory-faq-question { font-size: 16px; }
  .factory-faq-answer { margin-right: 16px; margin-left: 64px; padding-right: 28px; }
  .factory-faq-cta { align-items: flex-start; flex-direction: column; gap: 18px; padding: 22px; }
  .factory-faq-cta .btn { width: 100%; max-width: 260px; }
  .site-footer.factory-footer { padding: 40px 20px 0; }
  .factory-footer-main { grid-template-columns: 1fr; gap: 34px; }
  .factory-footer-locations { margin-top: 26px; padding-top: 22px; }
  .factory-location-grid { grid-template-columns: 1fr; gap: 26px; }
  .factory-footer-bottom { margin-top: 26px; padding: 17px 0; }
}

@media (max-width: 860px) {
  .factory-manufacturing-hero { min-height: 650px; padding: 64px 20px; }
  .factory-manufacturing-hero::after { background: linear-gradient(90deg, rgba(8,29,44,0.88) 0%, rgba(8,29,44,0.68) 72%, rgba(8,29,44,0.42) 100%); }
  .factory-manufacturing-hero-copy { max-width: 520px; }
  .factory-manufacturing-hero-copy h1 { font-size: clamp(38px, 8vw, 48px); }
}

@media (max-width: 520px) {
  .factory-manufacturing-hero { min-height: 600px; padding: 52px 20px 58px; }
  .factory-manufacturing-hero::after { background: rgba(8,29,44,0.74); }
  .factory-manufacturing-hero-media img { object-position: center; }
  .factory-manufacturing-hero-copy .eyebrow { margin-bottom: 16px; font-size: 11px; }
  .factory-manufacturing-hero-copy h1 { margin-bottom: 26px; font-size: clamp(34px, 9.5vw, 42px); }
  .factory-manufacturing-hero-copy > p { font-size: 15px; line-height: 1.65; }
  .factory-manufacturing-hero-copy .btn { width: auto; min-width: 210px; margin-top: 25px; }
}

/* About page — premium B2B manufacturer direction */
.about-page {
  --about-navy: #102a3d;
  --about-ink: #173247;
  --about-copy: #536573;
  --about-line: #d7e0e6;
  --about-soft: #f3f6f7;
}
.about-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #315d79;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}
.about-page .eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #8aa3b4;
}
.about-page .about-hero {
  grid-template-columns: minmax(0, 700px) minmax(0, 866px);
  gap: clamp(80px, 7.5vw, 144px);
  align-items: start;
  justify-content: space-between;
  min-height: 684px;
  padding: 80px 5.68vw 88px 5vw;
  background: #f8fafb;
}
.about-page .about-hero::after {
  content: none;
}
.about-hero-copy {
  width: 100%;
  max-width: 640px;
  justify-self: start;
}
.about-hero-copy h1.eyebrow {
  margin: 3px 0 27px;
  color: #163f5c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}
.about-hero-copy h1.eyebrow::before { content: none; }
.about-hero-intro {
  max-width: 640px;
  padding: 0;
  border: 0;
}
.about-hero-intro p {
  max-width: none;
  margin-bottom: 20px;
  color: #29475c;
  font-size: 17px;
  line-height: 1.68;
}
.about-hero-intro p:first-child {
  color: #29475c;
  font-size: 17px;
}
.about-hero-intro p:last-child { margin-bottom: 0; }
.about-hero-actions { margin-top: 24px; }
.about-hero-actions .btn {
  min-width: 238px;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 7px;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.about-hero-actions .btn.primary {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: none;
}
.about-hero-actions .btn.primary:hover,
.about-hero-actions .btn.primary:focus-visible {
  background: var(--brand-dark);
  box-shadow: none;
}
.about-hero-media {
  width: 100%;
  max-width: 866px;
  padding: 0;
  justify-self: end;
}
.about-hero-media::before {
  content: none;
}
.about-page .about-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1627 / 967;
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(17, 42, 59, 0.08);
  filter: none;
  transform: none;
}

.about-section-intro { max-width: 590px; }
.about-section-intro.centered { max-width: 790px; margin-bottom: 58px; }
.about-section-intro .eyebrow { margin-bottom: 14px; }
.about-section-intro h2,
.about-audience-copy h2 {
  color: var(--about-navy);
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.038em;
}
.about-section-intro > p:last-child { color: var(--about-copy); font-size: 16px; line-height: 1.75; }

.about-snapshot-section {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(64px, 6vw, 104px);
  padding: 108px 5.5vw 112px;
  background: #fff;
}
.about-snapshot-section .about-section-intro {
  max-width: 680px;
  padding-left: 26px;
  border-left: 1px solid #9eb0bc;
}
.about-snapshot-section .about-section-intro .eyebrow { margin-bottom: 16px; }
.about-snapshot-section .about-section-intro h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(32px, 2.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.about-snapshot-section .about-section-intro > p {
  max-width: 64ch;
  margin-bottom: 14px;
  color: var(--about-copy);
  font-size: 16px;
  line-height: 1.72;
}
.about-snapshot-section .about-section-intro > p:last-child { margin-bottom: 0; }
.about-snapshot-grid {
  position: relative;
  border: 0;
  border-top: 1px solid #aebdc6;
  border-bottom: 1px solid #d8e0e5;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.about-snapshot-grid::before {
  content: "MANUFACTURING CAPACITY";
  position: absolute;
  top: -30px;
  right: 0;
  color: #879aa7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.about-snapshot-grid article {
  min-height: 178px;
  padding: 43px 24px 32px;
  border-right: 1px solid #d8e0e5;
}
.about-snapshot-grid article:first-child { padding-left: 0; }
.about-snapshot-grid article:last-child { padding-right: 0; }
.snapshot-value {
  margin-bottom: 17px;
  color: var(--about-navy);
  font-size: clamp(42px, 3.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
}
.snapshot-value small { margin-left: 4px; font-size: 0.42em; font-weight: 600; letter-spacing: 0; vertical-align: 0.45em; }
.about-snapshot-grid h3 { color: #617583; font-size: 11px; letter-spacing: 0.13em; }

.about-products-section {
  position: relative;
  padding: 112px 5.5vw 120px;
  background: #f5f7f8;
  color: var(--about-ink);
}
.about-products-section::before {
  content: none;
}
.about-products-section .about-section-intro .eyebrow { color: #315d79; }
.about-products-section .about-section-intro .eyebrow::before { background: #8aa3b4; }
.about-products-section .about-section-intro h2 { color: #102a43; }
.about-products-section .about-section-intro > p:last-child { max-width: 720px; margin-inline: auto; color: #5b6b78; }
.about-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1460px;
  border: 0;
  background: transparent;
  overflow: visible;
}
.about-product-grid article {
  min-height: 300px;
  padding: 34px 30px 38px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.about-product-grid article:first-child {
  padding: 34px 30px 38px;
  border-color: #e5e7eb;
  background: #fff;
}
.about-product-grid article:last-child { padding-right: 30px; }
.about-product-grid article:hover { border-color: #cbd5dc; box-shadow: 0 14px 32px rgba(16,42,67,0.08); transform: translateY(-3px); }
.about-product-grid span,
.about-product-grid article:first-child span { margin-bottom: 52px; color: #829ab1; font-size: 11px; }
.about-product-grid h3,
.about-product-grid article:first-child h3 { color: #102a43; font-size: 23px; line-height: 1.22; }
.about-product-grid article:first-child h3 { max-width: 320px; color: #102a43; font-size: 23px; }
.about-product-grid p,
.about-product-grid article:first-child p { max-width: 34ch; color: #486581; font-size: 15px; line-height: 1.72; }
.about-product-grid article:first-child p { max-width: 34ch; color: #486581; font-size: 15px; }
.about-product-grid article::after { content: none; }

.about-audience-section { padding: 124px 5.5vw 132px; }
.about-audience-media { max-width: 760px; padding: 0 14px 14px 0; }
.about-page .about-audience-media img { border-radius: 3px; box-shadow: 0 24px 58px rgba(16, 42, 61, 0.12); }
.about-audience-media::after {
  left: 14px;
  bottom: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1px solid #b8c6cf;
  border-radius: 3px;
  background: transparent;
}
.about-audience-copy { max-width: 620px; }
.about-audience-copy h2 { margin-bottom: 34px; }
.about-audience-list { gap: 0; margin-bottom: 34px; border-top: 1px solid var(--about-line); }
.about-audience-list span {
  width: 50%;
  padding: 15px 12px 15px 20px;
  border: 0;
  border-bottom: 1px solid var(--about-line);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}
.about-audience-list span::before { left: 1px; width: 6px; height: 1px; border-radius: 0; }
.about-audience-summary { color: var(--about-copy); }

.about-advantages-section {
  padding: 118px 5.5vw 126px;
  background: var(--about-soft);
}
.about-advantages-grid { gap: 34px 54px; }
.about-advantages-grid article { min-height: 174px; padding: 29px 0 22px; border-top-color: #bac8d1; }
.about-advantages-grid article > span { color: #718895; }
.about-advantages-grid h3 { font-size: 21px; }
.about-advantages-grid p { color: var(--about-copy); }

.about-final-cta {
  padding: 96px 5.5vw;
  background: linear-gradient(118deg, #102a3d 0%, #183b52 100%);
}
.about-final-cta .eyebrow::before { background: #6f8b9e; }
.about-final-cta-actions .btn { border-radius: 3px; }
.about-cta-trust li::before { content: "—"; }

@media (max-width: 1100px) {
  .about-page .about-hero { grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr); gap: 44px; min-height: auto; padding-inline: 5vw; }
  .about-snapshot-grid article { padding-inline: 20px; }
  .about-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .about-product-grid article:first-child { padding: 34px 30px 38px; border-bottom-color: #e5e7eb; }
  .about-product-grid article:nth-child(2) { padding-left: 30px; }
}

@media (max-width: 860px) {
  .about-page .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    padding: 62px 20px 70px;
    background: #f8fafb;
  }
  .about-hero-copy { max-width: 680px; justify-self: stretch; }
  .about-hero-media { max-width: 720px; padding: 0; }
  .about-snapshot-section,
  .about-products-section,
  .about-audience-section,
  .about-advantages-section { padding: 84px 20px; }
  .about-snapshot-section { gap: 68px; }
  .about-snapshot-grid article { min-height: 150px; padding: 34px 22px; }
  .about-snapshot-grid article:first-child { padding-left: 0; }
  .about-snapshot-grid article:nth-child(2) { padding-right: 0; }
  .about-snapshot-grid article:nth-child(3) { padding-left: 0; }
  .about-product-grid { grid-template-columns: 1fr; }
  .about-product-grid article,
  .about-product-grid article:first-child,
  .about-product-grid article:nth-child(2),
  .about-product-grid article:last-child { min-height: 0; padding: 34px 28px 38px; border: 1px solid #e5e7eb; }
  .about-product-grid article:first-child { border-color: #e5e7eb; }
  .about-product-grid span,
  .about-product-grid article:first-child span { margin-bottom: 24px; }
  .about-audience-list span { width: 100%; }
  .about-advantages-grid { gap: 18px; }
  .about-final-cta { padding: 76px 20px; }
}

@media (max-width: 520px) {
  .about-hero-actions { align-items: stretch; flex-direction: column; }
  .about-hero-actions .btn { width: 100%; }
  .about-snapshot-grid { grid-template-columns: 1fr; }
  .about-snapshot-grid article,
  .about-snapshot-grid article:first-child,
  .about-snapshot-grid article:nth-child(2),
  .about-snapshot-grid article:nth-child(3) { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid #d8e0e5; }
  .about-snapshot-grid article:last-child { border-bottom: 0; }
  .snapshot-value { margin-bottom: 10px; }
}

/* Final system optimization: shared layout, interaction, and responsive guardrails. */
:root {
  --content-max: 1280px;
  --section-inline: clamp(20px, 3vw, 32px);
  --header-height: 76px;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { height: auto; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 70, 95, 0.35);
  outline-offset: 3px;
}

.site-header {
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(18px, 2.4vw, 36px);
  padding: 10px clamp(24px, 4vw, 64px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: #cbd7e0;
  box-shadow: 0 5px 18px rgba(15, 31, 44, 0.08);
}
.logo { grid-column: 1; justify-self: start; margin-right: 0; font-size: 22px; }
.logo img { width: 52px; height: 52px; }
.site-nav { grid-column: 2; justify-self: center; font-size: 14px; }
.nav-list { gap: clamp(14px, 1.5vw, 24px); }
.nav-list > .nav-item > a,
.nav-primary > a { min-height: 44px; padding: 10px 0; font-size: 14px; }
.dropdown-toggle { width: 44px; height: 44px; }
.nav-cta { min-height: 44px; }
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  cursor: pointer;
}
.nav-toggle-icon { display: grid; width: 20px; gap: 4px; }
.nav-toggle-icon span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; }
.nav-toggle-label { font-size: 13px; font-weight: 700; }
.menu-open { overflow: hidden; }

.home-hero {
  height: clamp(600px, calc(100vh - var(--header-height)), 720px);
  min-height: 600px;
  max-height: 720px;
}
.home-hero .hero-text {
  width: min(560px, 44vw);
  margin-left: clamp(32px, 6vw, 96px);
  padding: 44px 0 52px;
}
.home-hero h1 {
  max-width: 560px;
  font-size: clamp(48px, 4.3vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.home-hero .hero-description { max-width: 500px; font-size: 16px; line-height: 1.6; }
.home-hero .button-row { margin-top: 26px; }
.home-hero .btn { min-height: 46px; }
.hero-purchase-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin: 12px 0 0;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
.hero-purchase-info span[aria-hidden="true"] { color: var(--accent); font-weight: 400; }
.hero-stats { margin-top: 30px; padding-top: 20px; }
.hero-stats strong { font-size: clamp(21px, 1.8vw, 28px); }
.hero-stats span { font-size: 13px; }

.section { padding-inline: var(--section-inline); }
.section-heading { max-width: 900px; }
.section-heading > p:last-child { font-size: 16px; line-height: 1.65; }
.eyebrow { font-size: 12px; line-height: 1.4; letter-spacing: 0.08em; }
.btn,
.btn.small { min-height: 44px; }
.btn { transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn.primary:hover,
.btn.primary:focus-visible { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn.secondary:hover,
.btn.secondary:focus-visible { background: #edf3f7; border-color: var(--brand-dark); color: var(--brand-dark); }

.home-product-grid,
.home-oem-section .card-grid.five,
.home-quality-grid {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  justify-content: center;
}
.home-oem-section .card-grid.five {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 22px;
}
.home-oem-section .card-grid.five .mini-card {
  flex: 1 1 0;
  min-width: 0;
}
.home-product-grid { grid-auto-rows: 1fr; }
.home-product-grid .product-card { min-height: 500px; padding: 24px; }
.home-product-grid .product-image-link { aspect-ratio: 4 / 3; }
.home-product-grid .product-image-link img { padding: 10px; object-fit: contain; }
.home-product-grid .product-card > p { font-size: 15px; line-height: 1.65; }
.product-category-tags a { min-height: 32px; align-items: center; display: inline-flex; font-size: 13px; }

.manufacturing-strength-inner { max-width: var(--content-max); column-gap: clamp(40px, 4vw, 64px); }
.manufacturing-collage { height: auto; aspect-ratio: 4 / 3; }
.manufacturing-collage img { object-fit: contain; background: #edf1f4; }
.manufacturing-feature-grid article { min-height: 170px; padding: 24px; }
.manufacturing-feature-grid h3 { font-size: 18px; }
.manufacturing-feature-grid p { font-size: 15px; line-height: 1.65; }

.home-oem-section .card-grid.five { width: min(100%, var(--content-max)); }
.home-oem-section .mini-card { min-height: 164px; padding: 26px 22px; }
.home-oem-section .mini-card p { font-size: 15px; line-height: 1.65; }
.home-quality-grid { width: min(100%, var(--content-max)); }
.home-quality-grid .quality-card > img { height: 200px; object-fit: cover; }
.quality-card-content p { font-size: 15px; line-height: 1.65; }

.faq-list,
.faq-section .faq-list { max-width: 900px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list details summary {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 13px 52px 13px 18px;
  list-style: none;
  line-height: 1.45;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d7e2;
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; background: var(--brand-dark); color: #fff; }
.faq-list details > p { margin: 0; padding: 0 18px 17px; font-size: 14px; line-height: 1.65; }

.inquiry-band { padding-inline: var(--section-inline); }
.home-inquiry-band { width: 100%; }

.corporate-footer p,
.corporate-footer a,
.corporate-footer li,
.corporate-footer dd { font-size: 14px; line-height: 1.7; }
.corporate-footer-grid { max-width: var(--content-max); }
.corporate-footer-bottom { max-width: var(--content-max); }
.section-anchor { display: block; position: relative; height: 0; scroll-margin-top: 96px; }

@media (max-width: 1100px) and (min-width: 861px) {
  .home-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    height: auto;
    min-height: 600px;
    max-height: none;
    gap: 28px;
    padding: 56px 5vw;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fbfc, #eef2f5);
  }
  .home-hero::after { display: none; }
  .home-hero .hero-text { width: 100%; margin: 0; padding: 0; align-self: center; }
  .home-hero .hero-media { position: relative; inset: auto; align-self: stretch; }
  .home-hero .hero-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; }
  .home-hero h1 { font-size: clamp(38px, 4.8vw, 46px); }
  .home-hero .hero-description { max-width: 440px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  .hero-stats div:nth-child(2n) { padding-right: 0; border-right: 0; }
  .hero-stats div:nth-child(n + 3) { padding-top: 18px; border-top: 1px solid var(--line); }
  .home-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 0 1 270px; }
  .manufacturing-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1300px) and (min-width: 861px) {
  .corporate-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 32px; }
  .footer-brand-block { grid-column: span 2; }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px clamp(20px, 5vw, 40px);
  }
  .site-nav {
    top: 100%;
    padding: 16px clamp(20px, 5vw, 40px) 20px;
  }
  .logo img { width: 48px; height: 48px; }
}

@media (max-width: 860px) {
  .home-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .home-hero .hero-text {
    width: 100%;
    margin: 0;
    padding: 40px var(--section-inline) 34px;
  }
  .home-hero h1 { max-width: 680px; font-size: clamp(34px, 9vw, 40px); line-height: 1.08; }
  .home-hero .hero-description { font-size: 15px; line-height: 1.6; }
  .home-hero .hero-media img { aspect-ratio: 8 / 5; object-fit: contain; }
  .hero-stats { row-gap: 18px; }
  .hero-stats div { padding-right: 14px; }
  .hero-stats div:nth-child(2n) { padding-right: 0; border-right: 0; }
  .hero-stats div:nth-child(n + 3) { padding-top: 18px; border-top: 1px solid var(--line); }
  .home-product-grid .product-card { min-height: 0; }
  .manufacturing-collage { aspect-ratio: 4 / 3; }
  .manufacturing-collage img { object-fit: contain; }
  .about-snapshot-section { grid-template-columns: minmax(0, 1fr); }
  .corporate-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 521px) and (max-width: 860px) {
  .home-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 0 1 320px; }
}

@media (max-width: 520px) {
  .nav-toggle-label { display: none; }
  .nav-toggle { padding-inline: 11px; }
  .hero-purchase-info { font-size: 12px; }
  .home-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 1 1 100%; }
  .home-quality-grid .quality-card > img { height: auto; aspect-ratio: 4 / 3; }
  .contact-qr-grid { grid-template-columns: minmax(0, 260px); }
  .contact-qr-section { padding: 26px 18px; }
  .contact-qr-card img { width: min(200px, 100%); }
  .corporate-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 340px) {
  .site-header { column-gap: 8px; padding-inline: 16px; }
  .logo { gap: 6px; font-size: 18px; }
  .logo img { width: 40px; height: 40px; }
  .header-cta { padding-inline: 10px; font-size: 12px; }
}

/* Lotion pump searchable product catalog */
.lotion-catalog { background: var(--muted); }
.lotion-catalog-inner { width: min(100%, var(--content-max)); margin: 0 auto; scroll-margin-top: calc(var(--header-height) + 20px); }
.lotion-filter-toggle { display: none; }
.lotion-catalog-layout { display: grid; grid-template-columns: minmax(250px, 270px) minmax(0, 1fr); gap: 28px; align-items: start; }
.lotion-filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  max-height: calc(100vh - var(--header-height) - 40px);
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}
.lotion-filter-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.lotion-filter-header h2 { margin: 0; color: var(--brand-dark); font-size: 20px; }
.lotion-clear-filters { padding: 4px 0; border: 0; background: transparent; color: var(--brand); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.lotion-clear-filters:hover { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
.lotion-filter-group { min-width: 0; margin: 0; padding: 0; border: 0; }
.lotion-filter-group + .lotion-filter-group { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.lotion-filter-group > label:first-child,
.lotion-filter-group legend { display: block; width: 100%; margin-bottom: 11px; color: var(--brand-dark); font-size: 14px; font-weight: 800; }
.lotion-filter-group input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.lotion-filter-group input[type="search"]::placeholder { color: #8493a0; }
.lotion-filter-group[data-filter-group] > label { display: flex; align-items: center; gap: 9px; min-height: 34px; margin: 0; color: var(--text); font-size: 14px; cursor: pointer; }
.lotion-filter-group input[type="checkbox"] { width: 17px; height: 17px; margin: 0; accent-color: var(--brand); }
.lotion-filter-close { display: none; }
.lotion-product-listing { min-width: 0; }
.lotion-product-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.lotion-product-header .eyebrow { margin-bottom: 7px; }
.lotion-product-header h2 { margin: 0; color: var(--brand-dark); font-size: clamp(30px, 3vw, 40px); }
.lotion-product-description { max-width: 660px; margin: 9px 0 0; color: #6f8798; font-size: 14px; line-height: 1.55; }
.lotion-product-count { flex: 0 0 auto; margin: 0; color: var(--brand); font-size: 15px; font-weight: 800; }
.lotion-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.lotion-product-grid .series-block,
.lotion-product-grid .catalog-grid { display: contents; }
.lotion-product-grid .catalog-card { height: 390px; }
.lotion-product-grid .catalog-card[hidden] { display: none; }
.catalog-filter-anchor { grid-column: 1 / -1; height: 0; scroll-margin-top: calc(var(--header-height) + 20px); }
.lotion-no-results { padding: 64px 24px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.lotion-no-results p { margin-bottom: 18px; color: var(--brand-dark); font-size: 19px; font-weight: 700; }
.lotion-no-results .btn { min-width: 150px; }

@media (max-width: 1180px) and (min-width: 861px) {
  .lotion-catalog-layout { grid-template-columns: minmax(230px, 250px) minmax(0, 1fr); gap: 24px; }
  .lotion-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .lotion-filter-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 11px 16px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: #fff;
    color: var(--brand-dark);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }
  .lotion-active-filter-count:not(:empty) { display: inline-flex; min-width: 24px; min-height: 24px; align-items: center; justify-content: center; padding: 2px 7px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 12px; }
  .lotion-catalog-layout { display: block; }
  .lotion-filter-sidebar { display: none; position: static; max-height: none; margin-bottom: 28px; overflow: visible; }
  .lotion-filter-sidebar.is-open { display: block; }
  .lotion-filter-close { display: inline-flex; width: 100%; margin-top: 22px; }
  .lotion-product-header { align-items: flex-start; }
  .lotion-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 520px) {
  .lotion-catalog { padding-top: 54px; padding-bottom: 64px; }
  .lotion-filter-sidebar { padding: 20px; }
  .lotion-product-header { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .lotion-product-header h2 { font-size: 29px; }
  .lotion-product-grid { grid-template-columns: 1fr; }
  .lotion-product-grid .catalog-card { height: 390px; }
}

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