:root {
  --navy: #004b93;
  --navy-900: #00366f;
  --blue: #005dab;
  --blue-700: #004987;
  --orange: #f39800;
  --orange-700: #d98300;
  --ink: #0c1b33;
  --muted: #5c6b7f;
  --line: #dbe4ee;
  --surface: #f4f8fc;
  --white: #ffffff;
  --card-lift: translateY(-4px) scale(1.01);
  --card-shadow: 0 18px 38px rgba(0, 54, 111, 0.1);
  --card-shadow-strong: 0 24px 48px rgba(0, 54, 111, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

body > iframe[width="0"],
body > iframe[height="0"],
body > iframe[style*="display: none"],
body > noscript iframe[width="0"],
body > noscript iframe[height="0"] {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

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

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a,
button,
summary,
input,
select,
textarea {
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 152, 0, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 70px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 93, 171, 0.14);
  box-shadow: 0 6px 18px rgba(0, 54, 111, 0.08);
  transition:
    min-height 0.24s ease,
    padding 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(0, 54, 111, 0.14);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 3px;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: 174px;
  height: auto;
  transition: transform 0.22s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.brand-main {
  font-size: 26px;
  font-weight: 800;
}

.brand-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 40px;
  font-size: 15px;
  font-weight: 600;
}

.nav li {
  list-style: none;
}

.nav a {
  position: relative;
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  content: "";
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after,
.nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav a.is-active,
.nav .current-menu-item > a {
  color: var(--blue);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 93, 171, 0.18);
  border-radius: 2px;
  background: #f7fbff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy-900);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.quote-button,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 2px;
  color: var(--white);
  font-weight: 700;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(243, 152, 0, 0.2);
}

.quote-button:hover,
.primary-action:hover {
  background: var(--orange-700);
  box-shadow: 0 16px 30px rgba(217, 131, 0, 0.24);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 0.92) 0%, rgba(3, 22, 47, 0.72) 37%, rgba(3, 22, 47, 0.22) 72%),
    linear-gradient(0deg, rgba(3, 22, 47, 0.2), rgba(3, 22, 47, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 96px));
  padding: 108px 0 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd08a;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(46px, 4.6vw, 68px);
  line-height: 1.05;
  max-width: 980px;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 28px;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-actions {
  flex-wrap: nowrap;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
  color: var(--white);
  font-weight: 700;
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 38px 78px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--blue) 100%);
}

.metrics div {
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.metrics div:first-child {
  border-left: 0;
}

.metrics strong {
  display: block;
  font-size: 35px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  opacity: 0.86;
}

.section {
  padding: 78px 86px;
}

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

.product-listing-hero {
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 0.94), rgba(3, 22, 47, 0.6)),
    url("../images/product-components.jpg") center / cover;
}

.factory-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  min-height: 650px;
  background: var(--navy-900);
  overflow: hidden;
}

.factory-showcase-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-showcase::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 0.94) 0%, rgba(3, 22, 47, 0.82) 42%, rgba(3, 22, 47, 0.42) 72%, rgba(3, 22, 47, 0.26) 100%),
    linear-gradient(0deg, rgba(0, 54, 111, 0.18), rgba(0, 54, 111, 0.18));
  content: "";
}

.factory-hero-panel,
.factory-video-panel {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
}

.factory-video-panel {
  align-self: center;
  justify-self: center;
  width: min(82%, 540px);
  min-height: 330px;
  padding: 0;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  color: inherit;
  font: inherit;
  text-align: inherit;
  background:
    linear-gradient(rgba(3, 22, 47, 0.2), rgba(3, 22, 47, 0.42)),
    url("../images/popula-building.jpg") center / cover;
  box-shadow: 0 28px 70px rgba(0, 18, 42, 0.42);
  cursor: pointer;
}

.video-play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: rgba(0, 54, 111, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.factory-video-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(3, 22, 47, 0.68);
  backdrop-filter: blur(8px);
}

.video-play-button::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--white);
  content: "";
}

.factory-video-panel:hover .video-play-button,
.factory-video-panel:focus-visible .video-play-button {
  border-color: var(--orange);
  background: var(--orange);
  transform: translate(-50%, -50%) scale(1.07);
}

.factory-video-panel:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -7px;
}

.video-modal {
  width: min(1080px, calc(100% - 36px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.video-modal::backdrop {
  background: rgba(3, 22, 47, 0.84);
}

.video-modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--navy-900);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
}

.video-modal-header h2 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.video-modal-close {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.home-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(72vh, 680px);
  border: 0;
  background: #000;
}

.factory-overlay {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  padding: 86px 0 72px 86px;
}

.factory-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.factory-overlay h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(38px, 4.2vw, 58px);
}

.factory-overlay h2 span {
  color: var(--orange);
}

.factory-overlay p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.72;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 24px;
  max-width: none;
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(3, 22, 47, 0.36);
  backdrop-filter: blur(10px);
}

.factory-stats div {
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.factory-stats div:last-child {
  padding-right: 0;
  border-right: 0;
}

.factory-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.factory-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.factory-stats span::after {
  display: none;
}

.product-section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.product-section-head p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.product-range-note {
  max-width: 860px;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.home-category-card {
  display: grid;
  grid-template-rows: 220px auto auto auto;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 54, 111, 0);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.home-category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
  transition: transform 0.28s ease, background-color 0.24s ease;
}

.home-category-card span {
  margin: 22px 22px 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-category-card h3 {
  margin: 0 22px 10px;
  font-size: 24px;
}

.home-category-card p {
  margin: 0 22px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-category-card:hover {
  border-color: #9bbce1;
  box-shadow: 0 22px 42px rgba(0, 54, 111, 0.12);
  transform: var(--card-lift);
}

.home-category-card:hover img {
  background: var(--white);
  transform: scale(1.02);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}

.section-intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.industries-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 54, 111, 0.96) 0%, rgba(0, 93, 171, 0.9) 54%, rgba(0, 93, 171, 0.64) 100%),
    url("../images/capabilities-workshop.jpg") center / cover;
}

.industries-section .section-intro {
  align-items: center;
  margin-bottom: 34px;
}

.industries-section .section-kicker {
  color: #ffd08a;
}

.industries-section h2 {
  max-width: 720px;
  color: var(--white);
}

.industries-section .section-intro p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.18);
}

.industry-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 30px;
  background: rgba(0, 35, 74, 0.68);
  backdrop-filter: blur(4px);
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.industry-card:hover {
  background: rgba(0, 75, 147, 0.78);
  box-shadow: 0 22px 38px rgba(0, 24, 52, 0.2);
  transform: translateY(-5px);
}

.industry-card span,
.project-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-card h3,
.project-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.industry-card h3 {
  color: var(--white);
}

.industry-card p,
.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.76);
}

.industry-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: #ffd08a;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  gap: 74px;
  align-items: center;
  background: var(--surface);
}

.split-copy p:not(.section-kicker),
.logistics-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  content: "";
}

.split-image {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.capability-carousel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: var(--white);
}

.carousel-track {
  display: flex;
  height: 100%;
  min-height: 390px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.carousel-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  background: rgba(0, 54, 111, 0.56);
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-control:hover {
  background: rgba(0, 54, 111, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.carousel-dots button.active {
  width: 24px;
  background: var(--orange);
}

.carousel-dots button:hover {
  transform: scale(1.18);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  gap: 58px;
  align-items: start;
  background: var(--navy-900);
}

.why-section h2 {
  color: var(--white);
}

.why-section .section-kicker {
  color: var(--orange);
}

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

.why-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.why-grid article:hover {
  border-color: rgba(243, 152, 0, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 20px;
}

.why-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.quality-section {
  text-align: center;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 44px auto 28px;
}

.cert-row div {
  min-width: 132px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.cert-row div:hover {
  border-color: rgba(0, 93, 171, 0.28);
  box-shadow: 0 18px 34px rgba(0, 54, 111, 0.1);
  transform: translateY(-4px);
}

.cert-row strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.cert-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quality-note {
  width: min(850px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.testing-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(920px, 100%);
  margin: 30px auto 0;
}

.testing-strip span {
  padding: 11px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  background: #edf5ff;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.testing-strip span:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.projects-section {
  background:
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.projects-section .section-intro {
  align-items: center;
}

.projects-section .section-intro p:not(.section-kicker) {
  max-width: 550px;
}

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

.project-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(0, 93, 171, 0.12);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 54, 111, 0.09);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.project-card:hover {
  border-color: rgba(0, 93, 171, 0.28);
  transform: var(--card-lift);
  box-shadow: var(--card-shadow-strong);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.project-card:hover img {
  transform: scale(1.02);
}

.project-card div {
  display: flex;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.project-card span {
  margin-bottom: 18px;
  color: var(--blue);
}

.project-card h3 {
  font-size: 23px;
}

.project-card small {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 10px 13px;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #edf5ff;
}

.logistics {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 450px;
  background: #eaf4fc;
}

.logistics-copy {
  align-self: center;
  padding: 70px 74px 70px 86px;
}

.logistics img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.delivery-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 32px;
}

.delivery-points span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 78px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--blue) 100%);
}

.final-cta h2 {
  color: var(--white);
  font-size: 34px;
}

.final-cta p {
  max-width: 610px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.secondary-action.light {
  border-color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 58px 78px 26px;
  color: var(--muted);
  background: var(--white);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  gap: 58px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-card {
  display: flex;
  align-items: center;
  width: fit-content;
}

.footer-brand-card .brand {
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
}

.footer-brand-card .brand-logo {
  width: 150px;
}

.footer-brand p {
  max-width: 620px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 38px 0;
}

.footer-links div {
  display: grid;
  gap: 11px;
}

.footer-links h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.page-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) 1.08fr;
  gap: 66px;
  align-items: center;
  padding: 86px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.about-report-hero {
  position: relative;
  display: block;
  min-height: 620px;
  margin: 4px;
  padding: 72px 82px 64px;
  overflow: hidden;
  border-radius: 38px;
  background: #edf3f7;
}

.about-report-background {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
}

.about-report-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 1) 0%, rgba(246, 250, 255, 0.98) 39%, rgba(246, 250, 255, 0.62) 58%, rgba(246, 250, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(237, 243, 247, 0.9) 0%, rgba(237, 243, 247, 0.2) 52%, rgba(237, 243, 247, 0.78) 100%);
  content: "";
}

.about-report-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.about-report-copy h1 {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.05;
}

.about-report-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

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

.about-hero-facts {
  display: none !important;
}

.page-hero h1,
.contact-hero h1 {
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow),
.contact-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-metrics {
  grid-template-columns: repeat(4, 1fr);
}

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

.proof-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}

.proof-heading p:not(.section-kicker),
.inspection-section > div:first-child p,
.timeline-section > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.proof-card {
  display: grid;
  grid-template-rows: 280px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fbfdff;
  box-shadow: 0 14px 32px rgba(0, 54, 111, 0);
}

.factory-gallery-trigger {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.proof-card.large {
  grid-row: span 2;
  grid-template-rows: 1fr auto;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.proof-card:hover {
  border-color: rgba(0, 93, 171, 0.28);
  box-shadow: var(--card-shadow);
  transform: var(--card-lift);
}

.proof-card:hover img {
  transform: scale(1.02);
}

.proof-card div {
  padding: 26px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.factory-gallery-modal {
  width: min(1120px, calc(100% - 36px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.factory-gallery-modal::backdrop {
  background: rgba(3, 22, 47, 0.88);
}

.factory-gallery-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

.factory-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: var(--navy-900);
}

.factory-gallery-header .section-kicker {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.7);
}

.factory-gallery-header h2 {
  margin: 0;
  color: var(--white);
  font-size: 24px;
}

.factory-gallery-close,
.factory-gallery-nav {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.factory-gallery-close {
  min-height: 38px;
  padding: 0 14px;
}

.factory-gallery-close:hover,
.factory-gallery-close:focus-visible,
.factory-gallery-nav:hover,
.factory-gallery-nav:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.factory-gallery-viewer {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  background: #071321;
}

.factory-gallery-main-image {
  display: block;
  width: 100%;
  max-height: min(68vh, 680px);
  object-fit: contain;
}

.factory-gallery-nav {
  position: absolute;
  top: 50%;
  min-height: 42px;
  padding: 0 13px;
  transform: translateY(-50%);
}

.factory-gallery-nav.prev { left: 16px; }
.factory-gallery-nav.next { right: 16px; }

.factory-gallery-caption {
  min-height: 50px;
  margin: 0;
  padding: 15px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.factory-gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 24px 22px;
}

.factory-gallery-thumbnails button {
  flex: 0 0 92px;
  height: 62px;
  padding: 0;
  border: 2px solid transparent;
  background: #eaf0f6;
  cursor: pointer;
}

.factory-gallery-thumbnails button.active {
  border-color: var(--orange);
}

.factory-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspection-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: start;
  background: var(--surface);
}

.inspection-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inspection-flow article {
  padding: 28px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.inspection-flow article:nth-child(odd) {
  border-left: 0;
}

.inspection-flow span,
.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 800;
}

.inspection-flow p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.certification-strip {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.about-export-section {
  border-top: 1px solid var(--line);
}

.honor-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
}

.honor-grid {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.honor-grid article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.honor-grid article:first-child {
  border-top: 0;
}

.honor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 34px 28px;
  border-left: 1px solid var(--line);
}

.timeline article:first-child {
  border-left: 0;
}

.timeline article::before {
  position: absolute;
  top: -6px;
  left: 28px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.story-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 74px;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 22px;
}

.story-copy p,
.value-grid p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.value-grid-section {
  background: var(--surface);
}

.value-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid article,
.process-grid article {
  padding: 30px 28px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.value-grid article:first-child,
.process-grid article:first-child {
  border-left: 0;
}

.value-grid span,
.process-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.contact-hero {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 0.92), rgba(3, 22, 47, 0.65)),
    url("../images/hero-manufacturing.jpg") center / cover;
}

.contact-hero h1,
.contact-hero .eyebrow {
  color: var(--white);
}

.contact-hero p,
.contact-details span,
.contact-details a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-details div {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details strong {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1.28fr;
  gap: 46px;
  align-items: start;
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-info-grid article {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-left: 1px solid var(--line);
  background: #fbfdff;
}

.contact-info-grid article:nth-child(odd) {
  border-left: 0;
}

.contact-info-grid strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-grid a,
.contact-info-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-info-grid a {
  color: var(--blue);
  font-weight: 800;
}

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

.social-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 20px 44px rgba(0, 35, 74, 0.16);
}

.inquiry-form h2,
.inquiry-form .wide,
.form-submit {
  grid-column: 1 / -1;
}

.inquiry-form h2 {
  font-size: 30px;
}

.inquiry-form label {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
}

.inquiry-form label.is-invalid input,
.inquiry-form label.is-invalid select,
.inquiry-form label.is-invalid textarea {
  border-color: #d94b3d;
  background: #fff8f7;
  box-shadow: 0 0 0 4px rgba(217, 75, 61, 0.1);
}

.field-message {
  min-height: 16px;
  color: #b4362b;
  font-size: 12px;
  font-weight: 700;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-form.is-success .form-status {
  color: #1c7a45;
  font-weight: 800;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.inquiry-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.floating-inquiry {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}

.floating-inquiry-trigger {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(192, 84, 19, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-inquiry-trigger:hover,
.floating-inquiry-trigger:focus-visible {
  background: #d55b12;
  box-shadow: 0 16px 32px rgba(192, 84, 19, 0.38);
  transform: translateY(-2px);
}

.floating-inquiry-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(350px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(0, 53, 99, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(0, 35, 74, 0.25);
}

.floating-inquiry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.floating-inquiry-head p {
  margin: 0 0 3px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-inquiry-head h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.2;
}

.floating-inquiry-close {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1;
  background: #edf4f9;
  cursor: pointer;
}

.floating-inquiry-close:hover,
.floating-inquiry-close:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.floating-inquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  box-shadow: none;
}

.floating-inquiry-form .form-submit {
  min-height: 42px;
  width: 100%;
  font-size: 14px;
}

.floating-inquiry-form label {
  gap: 5px;
  font-size: 12px;
}

.floating-inquiry-form label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.floating-inquiry-form input,
.floating-inquiry-form textarea {
  min-height: 40px;
  padding: 10px 11px;
  font-size: 14px;
}

.floating-inquiry-form textarea {
  min-height: 82px;
  line-height: 1.45;
}

.floating-inquiry-form .form-status {
  min-height: 0;
  font-size: 12px;
}

@media (max-width: 560px) {
  .floating-inquiry {
    right: 16px;
    bottom: 16px;
  }

  .floating-inquiry-panel {
    right: 0;
    bottom: 62px;
    padding: 16px;
  }
}

.process-section {
  text-align: center;
}

.contact-logistics {
  border-top: 1px solid var(--line);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1.28fr;
  gap: 42px;
  align-items: stretch;
  background: var(--white);
}

.map-copy {
  align-self: center;
}

.map-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.google-map {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--line);
}

.faq-section {
  background: var(--surface);
}

.faq-section h2 {
  max-width: 780px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.listing-hero {
  padding: 92px 86px 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 22, 47, 0.94), rgba(3, 22, 47, 0.68)),
    url("../images/hero-manufacturing.jpg") center / cover;
}

.listing-hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(42px, 4.8vw, 66px);
}

.listing-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.listing-section {
  background: var(--surface);
}

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

.content-card {
  display: grid;
  grid-template-rows: 260px auto;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-card div {
  padding: 30px;
}

.content-card h2 {
  font-size: 30px;
}

.content-card p:not(.section-kicker):not(.news-date) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.news-date {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  gap: 66px;
  align-items: center;
  padding: 64px 86px 86px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.article-hero h1 {
  color: var(--ink);
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.05;
}

.article-hero p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-hero img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.article-meta,
.article-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.article-meta span,
.article-checks span {
  padding: 10px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  background: #edf5ff;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
  background: var(--surface);
}

.article-main,
.article-sidebar {
  border: 1px solid var(--line);
  background: var(--white);
}

.article-main {
  padding: 42px;
}

.article-main h2 {
  margin-top: 34px;
  font-size: 32px;
}

.article-main h2:first-of-type {
  margin-top: 0;
}

.article-main p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.article-main img,
.article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-image {
  margin: 30px 0;
}

.article-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  padding: 30px;
}

.article-sidebar h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
}

.article-sidebar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.product-catalog-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
}

.category-panel {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 4px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.mobile-category-select {
  display: none;
}

.category-panel a,
.category-filter {
  display: block;
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.category-panel a:hover,
.category-filter:hover,
.category-filter.active,
.category-panel a.active {
  color: var(--blue);
}

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

.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.catalog-search {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.catalog-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-link {
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  background: var(--white);
}

.product-card div {
  padding: 22px;
}

.product-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 21px;
}

.product-title-link {
  color: inherit;
}

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

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-card dl {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.empty-state {
  display: none;
  margin: 30px 0 0;
  padding: 28px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--white);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  background: var(--white);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) 1.05fr;
  gap: 66px;
  align-items: center;
  min-width: 0;
  padding: 86px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 24px 86px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  background: #f6faff;
}

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

.breadcrumb span:last-child {
  color: var(--ink);
}

.product-detail-media {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.product-detail-media > img {
  width: 100%;
  min-height: 460px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.thumbnail-row button {
  height: 86px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.thumbnail-row button.active {
  border-color: var(--blue);
}

.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-summary h1 {
  color: var(--ink);
  font-size: clamp(40px, 4.4vw, 62px);
}

.product-detail-summary {
  min-width: 0;
}

.product-detail-summary > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 800;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-list div {
  padding: 18px 20px;
  border-left: 1px solid var(--line);
}

.summary-list div:first-child {
  border-left: 0;
}

.summary-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.secondary-action.dark {
  color: var(--ink);
  border-color: #8ca4bd;
}

.secondary-action.dark:hover {
  background: var(--surface);
}

.detail-content {
  display: grid;
  gap: 28px;
  min-width: 0;
  background: var(--surface);
}

.detail-panel {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.rich-content {
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.rich-content h2,
.rich-content h3 {
  margin-top: 28px;
  font-size: 26px;
}

.rich-content ul,
.rich-content ol {
  padding-left: 22px;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.table-fullscreen-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 12px auto;
  padding: 0 14px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: var(--white);
  cursor: pointer;
}

@media (max-width: 700px) {
  .table-fullscreen-toggle {
    display: inline-flex;
  }
}

.table-wrap:fullscreen,
.table-wrap.is-table-expanded {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  padding: 18px;
  background: var(--white);
}

.table-wrap.is-table-expanded {
  position: fixed;
  inset: 0;
  z-index: 110;
}

.table-wrap:fullscreen .table-fullscreen-toggle,
.table-wrap.is-table-expanded .table-fullscreen-toggle {
  display: inline-flex;
  width: fit-content;
}

.table-wrap:fullscreen .table-scroll,
.table-wrap.is-table-expanded .table-scroll {
  height: 100%;
}

.table-wrap:fullscreen .rich-content table,
.table-wrap:fullscreen table,
.table-wrap.is-table-expanded .rich-content table,
.table-wrap.is-table-expanded table {
  min-width: 760px;
}

.rich-content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.rich-content th,
.rich-content td {
  padding: 13px 14px;
  text-align: left;
  border: 1px solid var(--line);
  vertical-align: top;
}

.rich-content th {
  color: var(--ink);
  font-weight: 800;
  background: #edf4fb;
}

.rich-content tr:nth-child(even) td {
  background: #fbfdff;
}

.detail-content .woocommerce-product-gallery,
.detail-content .summary,
.detail-content .related,
.detail-content .upsells {
  display: none;
}

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

.illustration-card,
.illustration-reference {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fbfdff;
}

.illustration-card img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: var(--white);
}

.illustration-card figcaption,
.illustration-reference strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}

.illustration-reference span {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  color: var(--blue);
  font-weight: 800;
  background: #edf4fb;
}

.illustration-reference p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-card,
.content-card,
.proof-card,
.contact-info-grid article,
.value-grid article,
.process-grid article,
.inspection-flow article,
.timeline article,
.faq-list details {
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.product-card:hover,
.content-card:hover,
.proof-card:hover,
.contact-info-grid article:hover,
.value-grid article:hover,
.process-grid article:hover,
.inspection-flow article:hover,
.timeline article:hover,
.faq-list details:hover {
  border-color: rgba(0, 93, 171, 0.28);
  box-shadow: var(--card-shadow);
  transform: var(--card-lift);
}

.product-card img,
.content-card img,
.proof-card img {
  transition: transform 0.3s ease;
}

.product-card:hover img,
.content-card:hover img,
.proof-card:hover img {
  transform: scale(1.02);
}

.category-filter:hover,
.category-filter:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.catalog-search input:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(0, 93, 171, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 93, 171, 0.09);
}

.faq-list summary {
  position: relative;
  padding-right: 54px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.22s ease;
  content: "";
}

.faq-list details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-list details[open] {
  border-color: rgba(0, 93, 171, 0.32);
  box-shadow: 0 18px 38px rgba(0, 54, 111, 0.1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .factory-showcase {
    grid-template-columns: 1fr;
  }

  .about-report-hero {
    min-height: 0;
    padding-top: 52px;
    padding-bottom: 290px;
  }

  .about-report-background {
    width: 100%;
    height: 48%;
    opacity: 0.72;
  }

  .about-report-hero::after {
    background:
      linear-gradient(180deg, rgba(246, 250, 255, 1) 0%, rgba(246, 250, 255, 0.98) 53%, rgba(246, 250, 255, 0.18) 100%),
      linear-gradient(0deg, rgba(237, 243, 247, 0.2), rgba(237, 243, 247, 0.2));
  }

  .factory-video-panel {
    width: min(78%, 560px);
    margin: 0 0 52px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px 28px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 20px;
    overflow-x: auto;
  }

  .hero-content {
    width: min(820px, calc(100% - 48px));
    padding: 96px 24px 0;
  }

  .metrics,
  .product-catalog-section,
  .product-detail-hero,
  .article-hero,
  .article-layout,
  .split-section,
  .section-intro,
  .why-section,
  .logistics,
  .map-section,
  .contact-info-section,
  .about-report-hero,
  .proof-heading,
  .proof-grid,
  .inspection-section,
  .inspection-flow,
  .honor-section,
  .timeline,
  .page-hero,
  .contact-hero,
  .story-section,
  .value-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    padding: 28px;
  }

  .metrics div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .metrics div:first-child {
    border-top: 0;
  }

  .section,
  .logistics-copy,
  .final-cta,
  .about-report-hero,
  .page-hero,
  .contact-hero,
  .listing-hero,
  .article-hero,
  .product-detail-hero,
  .breadcrumb {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .category-panel {
    display: none;
  }

  .mobile-category-select {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-category-select select {
    width: 100%;
    min-height: 46px;
    padding: 0 38px 0 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    background: var(--white);
  }

  .mobile-category-select select:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 93, 171, 0.09);
  }

  .catalog-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .value-grid article,
  .process-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-card.large {
    grid-row: span 1;
  }

  .inspection-flow article,
  .inspection-flow article:nth-child(odd),
  .contact-info-grid article,
  .contact-info-grid article:nth-child(odd),
  .timeline article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .inspection-flow article:first-child,
  .contact-info-grid article:first-child,
  .timeline article:first-child {
    border-top: 0;
  }

  .value-grid article:first-child,
  .process-grid article:first-child {
    border-top: 0;
  }

  .factory-overlay {
    padding: 70px 28px 56px;
  }

  .factory-stats,
  .product-section-head,
  .home-category-grid,
  .industry-grid,
  .project-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 44px 28px 24px;
  }

  .footer-brand,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand-card {
    width: fit-content;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .section-intro {
    gap: 20px;
  }

  .project-card {
    grid-template-rows: 190px 1fr;
  }
}

@media (max-width: 620px) {
  .about-report-hero {
    gap: 26px;
    margin: 0;
    padding-top: 42px;
    padding-bottom: 230px;
    border-radius: 28px;
  }

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

  .quote-button {
    min-height: 44px;
    padding: 0 18px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-actions,
  .cta-actions,
  .delivery-points {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-card,
  .why-grid article {
    padding: 24px;
  }

  .project-card {
    grid-template-rows: 170px 1fr;
  }

  .project-card div {
    padding: 24px;
  }

  .footer-brand-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 0;
    padding: 11px 18px;
  }

  .brand-logo {
    width: 136px;
  }

  .brand {
    order: 1;
    align-self: center;
  }

  .header-actions {
    order: 2;
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .quote-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .menu-toggle {
    order: 3;
    display: inline-grid;
    align-content: center;
    gap: 4px;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    order: 4;
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    gap: 8px;
    opacity: 0;
    font-size: 13px;
    pointer-events: none;
    transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.18s ease;
  }

  body.nav-open .nav {
    max-height: 320px;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(0, 93, 171, 0.12);
    border-radius: 2px;
    background: #f7fbff;
  }

  .nav a.is-active,
  .nav .current-menu-item > a {
    border-color: rgba(0, 93, 171, 0.28);
    background: #edf5ff;
  }

  .nav a::after {
    display: none;
  }

  h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
  }

  h2,
  .content-card h2,
  .inquiry-form h2 {
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.16;
  }

  h3,
  .industry-card h3,
  .project-card h3,
  .product-card h3 {
    font-size: 20px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 11px;
    font-size: 11px;
  }

  .section,
  .logistics-copy,
  .final-cta,
  .about-report-hero,
  .page-hero,
  .contact-hero,
  .listing-hero,
  .product-detail-hero,
  .breadcrumb {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 22, 47, 0.9) 0%, rgba(3, 22, 47, 0.72) 56%, rgba(3, 22, 47, 0.5) 100%),
      linear-gradient(0deg, rgba(3, 22, 47, 0.18), rgba(3, 22, 47, 0.18));
  }

  .hero-content {
    width: 100%;
    padding: 64px 18px 70px;
  }

  .hero-copy,
  .listing-hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .contact-hero p,
  .about-report-copy p:not(.eyebrow),
  .product-detail-summary > p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.66;
  }

  .hero-actions,
  .cta-actions,
  .about-hero-actions,
  .detail-actions {
    gap: 12px;
  }

  .primary-action,
  .secondary-action {
    min-height: 46px;
    padding: 0 18px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    background: var(--navy-900);
  }

  .metrics div {
    padding: 13px 14px;
    border: 0;
    background: rgba(255, 255, 255, 0.06);
  }

  .metrics div:first-child {
    border-top: 0;
  }

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

  .about-metrics div:last-child {
    grid-column: auto;
  }

  .metrics strong {
    font-size: 25px;
  }

  .metrics span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  .factory-hero-panel,
  .factory-video-panel {
    min-height: auto;
  }

  .factory-overlay {
    width: 100%;
    padding: 52px 18px 46px;
  }

  .factory-overlay h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .factory-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .factory-stats div {
    padding: 13px 14px;
    border-right: 0;
    background: rgba(255, 255, 255, 0.08);
  }

  .factory-stats strong {
    font-size: 26px;
  }

  .factory-stats span {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
  }

  .factory-stats span::after {
    display: none;
  }

  .factory-video-panel {
    width: calc(100% - 36px);
    min-height: 230px;
    border-width: 7px;
    margin-bottom: 28px;
  }

  .product-section-head,
  .section-intro,
  .proof-heading,
  .story-section,
  .honor-section,
  .inspection-section,
  .contact-info-section,
  .map-section {
    gap: 18px;
    margin-bottom: 28px;
  }

  .home-category-grid,
  .industry-grid,
  .project-grid,
  .listing-grid,
  .catalog-grid,
  .proof-grid {
    gap: 14px;
  }

  .home-category-card {
    grid-template-rows: 170px auto auto auto;
  }

  .home-category-card:nth-child(n + 5) {
    display: none;
  }

  .home-category-card span,
  .home-category-card h3,
  .home-category-card p {
    margin-left: 18px;
    margin-right: 18px;
  }

  .home-category-card p {
    margin-bottom: 20px;
  }

  .industry-card,
  .why-grid article,
  .project-card div,
  .content-card div,
  .proof-card div,
  .detail-panel,
  .contact-info-grid article,
  .inspection-flow article,
  .value-grid article,
  .process-grid article {
    padding: 20px;
  }

  .industry-card {
    min-height: 0;
  }

  .split-section,
  .why-section {
    gap: 26px;
  }

  .split-image,
  .capability-carousel,
  .carousel-track,
  .carousel-slide {
    min-height: 260px;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .project-card,
  .content-card {
    grid-template-rows: 180px auto;
    min-height: 0;
  }

  .logistics {
    min-height: 0;
  }

  .logistics-copy {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .logistics img {
    min-height: 230px;
  }

  .delivery-points {
    gap: 10px;
  }

  .delivery-points span,
  .testing-strip span {
    padding: 11px 12px;
    background: #edf5ff;
  }

  .cert-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .cert-row div {
    min-width: 0;
  }

  .final-cta {
    gap: 22px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .site-footer {
    padding: 38px 18px 22px;
  }

  .footer-brand {
    gap: 22px;
    padding-bottom: 28px;
  }

  .footer-links {
    gap: 24px;
    padding: 30px 0;
  }

  .footer-links div {
    gap: 9px;
  }

  .about-report-hero,
  .page-hero,
  .contact-hero,
  .listing-hero,
  .article-hero,
  .product-detail-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-video-card,
  .page-hero img,
  .product-detail-media > img,
  .google-map {
    min-height: 280px;
  }

  .listing-hero {
    background-position: 58% center;
  }

  .product-catalog-section {
    gap: 22px;
  }

  .category-panel {
    display: none;
  }

  .mobile-category-select {
    gap: 8px;
    margin-bottom: 18px;
  }

  .catalog-head {
    gap: 16px;
    margin-bottom: 24px;
  }

  .catalog-search input,
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .product-image-link {
    padding: 10px;
  }

  .product-card div {
    padding: 14px;
  }

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

  .product-card {
    min-width: 0;
  }

  .product-card span,
  .product-card p,
  .product-card dl,
  .product-card .text-link {
    display: none;
  }

  .product-card h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.28;
  }

  .product-card:hover {
    transform: none;
  }

  .breadcrumb {
    padding-top: 16px;
    font-size: 13px;
  }

  .thumbnail-row {
    gap: 8px;
  }

  .thumbnail-row button {
    height: 68px;
  }

  .summary-list {
    margin: 24px 0;
  }

  .summary-list div {
    padding: 15px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .summary-list div:first-child {
    border-top: 0;
  }

  .rich-content table {
    min-width: 620px;
  }

  .inquiry-form {
    gap: 14px;
    padding: 20px;
  }

  .faq-list summary {
    padding: 18px 48px 18px 20px;
    font-size: 16px;
  }

  .faq-list summary::after {
    right: 22px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .quote-button {
    max-width: 124px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .section,
  .hero-content,
  .factory-overlay,
  .logistics-copy,
  .final-cta,
  .about-report-hero,
  .page-hero,
  .contact-hero,
  .listing-hero,
  .article-hero,
  .product-detail-hero,
  .breadcrumb,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .hero-copy {
    margin: 18px 0 22px;
  }

  .hero-actions,
  .cta-actions,
  .about-hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .factory-overlay {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .home-category-card {
    grid-template-rows: 150px auto auto auto;
  }

  .content-card,
  .project-card {
    grid-template-rows: 160px auto;
  }

  .cert-row,
  .delivery-points {
    grid-template-columns: 1fr;
  }

  .footer-brand-card {
    padding: 16px;
  }

  .footer-brand-card .brand-logo {
    width: 132px;
  }

  .category-panel {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .product-image-link {
    padding: 8px;
  }

  .product-card div {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .product-detail-media > img,
  .about-video-card,
  .google-map {
    min-height: 240px;
  }
}

@media (max-width: 780px) {
  .about-report-hero {
    min-height: 0;
    padding-top: 46px;
    padding-bottom: 260px;
  }

  .about-report-background {
    width: 100%;
    height: 46%;
    opacity: 0.72;
  }
}

@media (max-width: 620px) {
  .about-report-hero {
    gap: 26px;
    margin: 0;
    padding-top: 42px;
    padding-bottom: 230px;
    border-radius: 28px;
  }

}

