:root {
  color-scheme: light;
  --ink: #111318;
  --text: #2e3440;
  --muted: #687280;
  --line: #e3e6ea;
  --soft: #f5f6f8;
  --surface: #ffffff;
  --black: #030303;
  --graphite: #181a20;
  --red: #d83a31;
  --red-dark: #b62d26;
  --teal: #00766f;
  --teal-dark: #005d57;
  --gold: #f2b705;
  --blue: #2d68d8;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(45, 104, 216, 0.34);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #ffffff;
  background: var(--teal);
  border-radius: 6px;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.utility-inner,
.header-main,
.category-nav,
.hero-stage,
.service-strip,
.section,
.section-slim,
.site-footer {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.utility-links a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(280px, auto) minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #101010, #3e3e43 48%, #090909);
  border: 2px solid #ededed;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 2px;
  max-width: 320px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.94rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.brand-copy small {
  color: var(--muted);
  font-weight: 700;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  height: 48px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 6px;
  background: #ffffff;
}

.site-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--ink);
  outline: 0;
}

.site-search button {
  min-width: 92px;
  border: 0;
  color: #ffffff;
  background: var(--black);
  font-weight: 850;
}

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

.header-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #303642;
  font-size: 0.9rem;
  font-weight: 800;
}

.header-actions .solid-action,
.primary-button {
  color: #ffffff;
  border-color: var(--teal);
  background: var(--teal);
}

.header-actions a:hover,
.text-link:hover {
  color: var(--teal);
}

.header-actions .solid-action:hover,
.primary-button:hover {
  color: #ffffff;
  background: var(--teal-dark);
}

.red-button {
  border-color: var(--red);
  background: var(--red);
}

.red-button:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.category-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.category-nav a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: #4d5360;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.category-nav a:hover {
  color: var(--red);
  background: #fafafa;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.84), rgba(4, 4, 4, 0.54)),
    url("assets/factory-floor.webp") center / cover no-repeat;
  overflow: hidden;
}

.hero-stage {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0 70px;
}

.hero-copy-block {
  color: #ffffff;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  text-transform: none;
}

.hero h1,
.title-row h2,
.factory-content h2,
.split-section h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  font-size: 3.82rem;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 28px 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.34);
  backdrop-filter: blur(8px);
}

.hero-proof dt {
  color: var(--gold);
  font-size: 1.38rem;
  font-weight: 950;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.primary-button,
.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
}

.ghost-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.dark-ghost {
  color: var(--ink);
  border-color: #b8c0c8;
  background: #ffffff;
}

.dark-ghost:hover {
  color: #ffffff;
  border-color: var(--black);
  background: var(--black);
}

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

.hero-video-feature {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(180px, 1fr);
  gap: 22px;
  align-items: end;
  justify-content: center;
  min-width: 0;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.hero-video-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 2px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.78);
  text-align: left;
  backdrop-filter: blur(8px);
}

.hero-video-open span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-video-open strong {
  font-size: 1rem;
}

.hero-video-open:hover {
  border-color: #ffffff;
  background: rgba(0, 118, 111, 0.9);
}

.hero-video-sound,
.modal-sound-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.hero-video-sound {
  position: absolute;
  top: 14px;
  right: 14px;
}

.hero-video-sound[aria-pressed="true"],
.modal-sound-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  color: #111318;
  background: var(--gold);
}

.hero-video-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.52);
  backdrop-filter: blur(10px);
}

.hero-video-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-video-copy strong {
  font-size: 1.45rem;
  line-height: 1.12;
}

.hero-video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.showcase-main,
.showcase-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.showcase-main {
  grid-row: span 2;
  min-height: 520px;
}

.showcase-main img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  background: linear-gradient(135deg, #f6f8fa, #ffffff);
}

.showcase-main div,
.showcase-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.84);
  border-radius: 6px;
}

.showcase-main span,
.showcase-card span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.showcase-main strong,
.showcase-card strong {
  display: block;
  margin-top: 2px;
  font-size: 1.02rem;
}

.showcase-card {
  min-height: 250px;
}

.showcase-card.accent div {
  background: rgba(216, 58, 49, 0.92);
}

.hero-dots {
  position: absolute;
  right: 6vw;
  bottom: 28px;
  display: flex;
  gap: 9px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: transparent;
}

.hero-dots span:first-child {
  background: #ffffff;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 12px 22px;
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.strip-icon {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--black);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 950;
}

.service-strip strong {
  align-self: end;
  font-size: 0.96rem;
}

.service-strip small {
  color: var(--muted);
}

.buyer-brief {
  padding-top: 54px;
  border-bottom: 1px solid var(--line);
}

.buyer-brief-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.buyer-brief-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.buyer-brief-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.buyer-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.buyer-brief-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
}

.buyer-brief-grid span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--teal);
  font-weight: 950;
}

.buyer-brief-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.buyer-brief-grid p {
  margin: 0;
  color: var(--muted);
}

.video-section {
  border-bottom: 1px solid var(--line);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
}

.video-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.video-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.video-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.video-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 118, 111, 0.24);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 118, 111, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
}

.video-carousel {
  min-width: 0;
}

.video-track {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 22px 54px rgba(17, 19, 24, 0.14);
}

.video-slide {
  display: none;
  position: relative;
  min-width: 0;
}

.video-slide.active {
  display: block;
}

.video-slide video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #000000;
}

.video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(8px);
}

.video-caption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: 0.98rem;
  text-align: right;
}

.video-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.video-carousel-controls.is-hidden {
  display: none;
}

.video-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  background: #ffffff;
  font-size: 1rem;
  font-weight: 950;
}

.video-arrow:hover {
  color: #ffffff;
  background: var(--black);
}

.video-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.video-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: #ffffff;
}

.video-dot.active {
  background: var(--teal);
}

.lead-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 58, 49, 0.08), rgba(0, 118, 111, 0.09)),
    #ffffff;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.07);
}

.lead-box h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.lead-box p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: stretch;
}

.company-intro {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.07);
}

.company-intro h2,
.solution-section h2,
.rd-layout h2,
.quality-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.company-intro p,
.rd-layout p,
.quality-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.profile-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 58, 49, 0.22), rgba(0, 118, 111, 0.2)),
    var(--black);
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-panel ul {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.profile-panel li {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.solution-section {
  background: var(--soft);
  width: 100%;
  max-width: none;
}

.solution-section > .title-row,
.solution-grid {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

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

.solution-grid article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
}

.solution-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  color: #ffffff;
  background: var(--red);
  border-radius: 6px;
  font-weight: 950;
}

.solution-grid h3 {
  margin: 0 0 12px;
  font-size: 1.13rem;
}

.solution-grid p {
  margin: 0;
  color: var(--muted);
}

.section,
.section-slim {
  padding: 74px 0;
  scroll-margin-top: 130px;
}

.section-slim {
  padding-bottom: 48px;
}

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

.title-row h2,
.factory-content h2,
.split-section h2,
.contact-copy h2 {
  font-size: 2.45rem;
}

.title-row p,
.split-section p,
.contact-copy p,
.factory-content p {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

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

.series-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 24px;
  color: #ffffff;
  background: #101010;
  border-radius: 8px;
}

.series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.84) 100%);
}

.series-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease;
}

.series-card:hover img {
  transform: scale(1.04);
}

.series-card span,
.series-card strong {
  position: relative;
  z-index: 1;
}

.series-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.series-card strong {
  margin-top: 6px;
  font-size: 1.5rem;
  line-height: 1.14;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-cloud span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #39424e;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.incubator-section {
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f2ea;
}

.incubator-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.incubator-title-row {
  align-items: center;
}

.incubator-title-row .primary-button {
  flex: 0 0 auto;
}

.incubator-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.incubator-hero-image,
.incubator-gallery figure {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.12);
}

.incubator-hero-image img,
.incubator-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.incubator-hero-image {
  align-self: start;
  min-height: auto;
  aspect-ratio: 146 / 60;
}

.incubator-hero-image img {
  object-fit: contain;
  background: #f8efe2;
}

.incubator-story {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(14, 17, 22, 0.96), rgba(0, 118, 111, 0.88)),
    #111318;
}

.incubator-story span {
  color: #ffb23f;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.incubator-story h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.incubator-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.incubator-proof strong {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #111318;
  background: #ffb23f;
  font-size: 0.94rem;
  text-align: center;
}

.incubator-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.incubator-feature-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
}

.incubator-feature-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #ffffff;
  background: #f47a00;
  border-radius: 6px;
  font-weight: 950;
}

.incubator-feature-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.incubator-feature-grid p {
  margin: 0;
  color: var(--muted);
}

.incubator-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.incubator-gallery figure {
  aspect-ratio: 146 / 60;
  margin: 0;
}

.incubator-gallery figure.wide {
  grid-column: auto;
}

.incubator-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(17, 19, 24, 0.78);
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

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

.catalog-count {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 12px 14px;
  color: #ffffff;
  background: var(--black);
  border-radius: 6px;
  text-align: center;
  font-weight: 900;
}

.catalog-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.catalog-detail-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  background: #ffffff;
  font-weight: 950;
}

.catalog-detail-link:hover {
  color: #ffffff;
  background: var(--teal);
}

.catalog-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #4b5360;
  background: #ffffff;
  font-weight: 900;
}

.filter-button.active {
  color: #ffffff;
  border-color: var(--red);
  background: var(--red);
}

.catalog-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(17, 19, 24, 0.12);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.92;
  min-width: 0;
  padding: 18px;
  background: linear-gradient(135deg, #f4f7f8, #ffffff);
}

.product-media a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 950;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

.product-model {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 950;
}

.product-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

.product-card h3 a:hover,
.detail-model-link:hover,
.detail-product-card h3 a:hover {
  color: var(--teal);
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #333a45;
  background: #f9fafb;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: end;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price-summary small {
  color: var(--muted);
  font-weight: 800;
}

.price-summary strong {
  color: var(--red);
  font-size: 1.2rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.82rem;
}

.price-table th,
.price-table td {
  padding: 5px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  overflow-wrap: anywhere;
}

.price-table th {
  color: var(--muted);
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
}

.quote-button {
  min-height: 40px;
  border: 1px solid var(--black);
  border-radius: 6px;
  color: #ffffff;
  background: var(--black);
  font-weight: 950;
}

.quote-button:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.quote-button.is-added {
  border-color: var(--teal);
  background: var(--teal);
}

.product-actions,
.detail-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.detail-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  background: #ffffff;
  font-weight: 950;
  text-align: center;
}

.detail-button:hover {
  color: #ffffff;
  background: var(--teal);
}

.detail-row-actions {
  display: grid;
  gap: 8px;
  min-width: 92px;
}

.detail-small-link,
.detail-row-actions .quote-button {
  min-height: 34px;
  font-size: 0.8rem;
}

.detail-thumb-link,
.detail-card-image-link {
  display: block;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px dashed #b8c2cc;
  border-radius: 8px;
  color: var(--muted);
  background: #fafafa;
  text-align: center;
}

.detail-page {
  background: #ffffff;
}

.detail-hero {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.58)),
    url("assets/factory-floor.webp") center / cover no-repeat;
}

.detail-hero-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0;
}

.detail-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.detail-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.detail-summary-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.detail-summary-panel span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
}

.detail-summary-panel strong {
  display: block;
  margin-top: 18px;
  font-size: 1.6rem;
  line-height: 1.1;
}

.detail-summary-panel p {
  margin-top: 10px;
  font-size: 0.96rem;
}

.detail-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 19, 24, 0.08);
}

.detail-product-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.detail-product-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 14px 12px;
  color: #ffffff;
  background: var(--black);
  text-align: left;
}

.detail-product-table td {
  vertical-align: top;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}

.detail-product-table tr:nth-child(even) td {
  background: #fafbfc;
}

.detail-thumb {
  width: 92px;
  height: 78px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.detail-tag {
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 118, 111, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list-cell ul,
.detail-product-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 16px;
  color: #3e4652;
}

.detail-list-cell li,
.detail-product-card li {
  overflow-wrap: anywhere;
}

.detail-price {
  color: var(--red);
  white-space: nowrap;
}

.muted-cell {
  color: var(--muted);
}

.detail-empty {
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

.detail-card-grid {
  display: none;
}

.detail-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-top: 10px;
}

.detail-inquiry h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

.detail-inquiry p {
  margin: 10px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.detail-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.item-page {
  background: #f7f8fa;
}

.item-quick-search {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
  font-weight: 850;
}

.item-quick-search:hover {
  color: var(--teal);
  border-color: rgba(0, 118, 111, 0.34);
}

.item-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 64px;
}

.item-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.item-breadcrumb a:hover {
  color: var(--teal);
}

.item-shell {
  display: grid;
  gap: 22px;
}

.item-hero-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 19, 24, 0.08);
}

.item-media {
  display: grid;
  gap: 16px;
  align-content: start;
}

.item-media-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f2f5f6, #ffffff);
}

.item-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item-source-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  color: #47505b;
  background: #f3fbfa;
  font-size: 0.9rem;
}

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

.item-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-kicker-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 118, 111, 0.1);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.item-content h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.item-subtitle {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.item-price-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 16px;
  border: 1px solid #ffd7d2;
  border-radius: 8px;
  background: #fff7f5;
}

.item-price-highlight small {
  color: var(--muted);
  font-weight: 850;
}

.item-price-highlight strong {
  display: block;
  margin-top: 3px;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.item-price-highlight span {
  color: #7a342e;
  font-size: 0.88rem;
  font-weight: 850;
  text-align: right;
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.item-actions a {
  min-width: 150px;
}

.item-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 22px;
}

.item-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.item-panel h2 {
  margin: 0 0 16px;
  font-size: 1.22rem;
}

.item-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.item-price-table th,
.item-price-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.item-price-table th:last-child,
.item-price-table td:last-child {
  text-align: right;
}

.item-price-table td:last-child {
  color: var(--red);
  font-weight: 950;
}

.item-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #38414c;
}

.item-list li {
  overflow-wrap: anywhere;
}

.item-oem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.item-oem-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: #f8f9fa;
}

.related-card strong {
  line-height: 1.2;
}

.related-card span {
  color: var(--red);
  font-weight: 950;
}

.item-not-found {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.item-not-found h1 {
  margin-top: 0;
}

.factory-banner {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.54)),
    url("assets/factory-floor.webp") center / cover no-repeat;
}

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

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

.trust-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.trust-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #ffffff;
  background: var(--black);
  border-radius: 6px;
  font-weight: 950;
}

.trust-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.factory-content {
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  color: #ffffff;
}

.factory-content .section-kicker {
  color: var(--gold);
}

.factory-content p {
  color: rgba(255, 255, 255, 0.82);
}

.factory-copy {
  min-width: 0;
}

.factory-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.factory-video-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 950;
}

.factory-video-feature {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.factory-video-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: #000000;
}

.factory-video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(8px);
}

.factory-video-caption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.factory-video-caption strong {
  font-size: 0.98rem;
  text-align: right;
}

.process-section {
  padding-top: 54px;
}

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

.process-step,
.capability-grid article {
  min-height: 190px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.process-step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 950;
}

.process-step h3,
.capability-grid h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.process-step p,
.capability-grid p {
  margin: 0;
  color: var(--muted);
}

.oem-section {
  background: var(--soft);
  width: 100%;
  max-width: none;
}

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

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

.market-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.07);
}

.market-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(135deg, #f5f7f8, #ffffff);
}

.market-grid h3 {
  margin: 20px 20px 10px;
}

.market-grid p {
  margin: 0 20px 22px;
  color: var(--muted);
}

.faq-section {
  background: var(--soft);
  width: 100%;
  max-width: none;
}

.faq-section > .title-row,
.faq-list {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  padding: 18px 20px;
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.quality-copy {
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 118, 111, 0.2), rgba(45, 104, 216, 0.2)),
    var(--black);
}

.quality-copy .section-kicker {
  color: var(--gold);
}

.quality-copy p {
  color: rgba(255, 255, 255, 0.82);
}

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

.quality-steps span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
  font-weight: 900;
}

.regional-support {
  padding-top: 0;
}

.regional-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 135, 125, 0.08), rgba(45, 104, 216, 0.08)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.06);
}

.regional-card h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.12;
}

.regional-card p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.regional-details {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-style: normal;
}

.regional-details strong {
  font-size: 1.05rem;
}

.regional-details a {
  color: var(--blue);
  font-weight: 900;
}

.oem-section > .split-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

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

.capability-grid article:nth-child(1) {
  border-top: 4px solid var(--red);
}

.capability-grid article:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.capability-grid article:nth-child(3) {
  border-top: 4px solid var(--gold);
}

.capability-grid article:nth-child(4) {
  border-top: 4px solid var(--blue);
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.capability-list span {
  padding: 8px 10px;
  color: #202832;
  border: 1px solid #d0d7de;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
}

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

.rd-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

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

.rd-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 19, 24, 0.06);
}

.rd-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.06rem;
}

.rd-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 40px;
  align-items: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-copy address {
  margin-top: 22px;
  color: #3f4854;
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--teal);
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.selected-inquiry {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px dashed #aeb8c2;
  border-radius: 8px;
  background: #ffffff;
}

.selected-inquiry strong {
  color: var(--ink);
}

.selected-inquiry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #252b35;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cbd3dc;
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0 42px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

body > .site-footer {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
}

.site-footer strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 35;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #ffffff;
  background: #0aa05a;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 950;
}

.sticky-lead-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px max(24px, calc((100vw - 1280px) / 2));
  color: #ffffff;
  background: rgba(3, 3, 3, 0.96);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
}

.sticky-lead-bar span {
  font-weight: 950;
}

.sticky-lead-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-weight: 900;
}

.sticky-lead-bar .sticky-primary {
  border-color: var(--teal);
  background: var(--teal);
}

body.modal-open {
  overflow: hidden;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: #090909;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.48);
}

.video-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-modal-head span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-modal-head h2 {
  margin: 4px 0 0;
  font-size: 1.22rem;
  line-height: 1.15;
}

.video-modal-close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  color: #ffffff;
  background: transparent;
  font-weight: 950;
}

.video-modal-close:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.video-modal-body {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 18px;
  background: #000000;
}

.video-modal-body video {
  max-width: min(100%, 58vh);
  max-height: calc(100vh - 172px);
  aspect-ratio: 9 / 16;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #000000;
}

.modal-sound-toggle {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

@media (max-width: 1160px) {
  .utility-inner {
    display: grid;
  }

  .utility-links {
    justify-content: start;
  }

  .header-main {
    grid-template-columns: auto auto;
  }

  .site-search,
  .header-actions,
  .item-quick-search {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .category-nav {
    display: none;
    width: min(1280px, calc(100% - 48px));
    padding-bottom: 12px;
  }

  .site-header.nav-open .category-nav {
    display: grid;
    justify-content: stretch;
  }

  .category-nav a {
    min-height: 46px;
    padding: 0;
    border-top: 1px solid var(--line);
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-video-feature {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    justify-content: start;
  }

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

  .detail-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

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

  .buyer-brief-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .buyer-brief-actions {
    justify-content: start;
  }

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

  .detail-hero h1 {
    font-size: 3.25rem;
  }

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

  .lead-box {
    grid-template-columns: 1fr;
  }

  .lead-actions {
    justify-content: start;
  }

  .service-strip div:nth-child(2) {
    border-right: 0;
  }

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

  .item-hero-card,
  .item-detail-grid {
    grid-template-columns: 1fr;
  }

  .item-oem-grid,
  .related-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .company-layout,
  .rd-layout,
  .quality-layout,
  .factory-content,
  .regional-card,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .incubator-hero-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .detail-table-wrap {
    display: none;
  }

  .detail-card-grid {
    display: grid;
    gap: 18px;
  }

  .detail-toolbar {
    position: sticky;
    top: 80px;
    z-index: 5;
    box-shadow: 0 14px 34px rgba(17, 19, 24, 0.1);
  }

  .detail-product-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 19, 24, 0.08);
  }

  .detail-product-card img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  .detail-product-card h3 {
    margin: 0;
    font-size: 1.22rem;
  }

  .detail-mobile-prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
  }

  .detail-mobile-prices span {
    padding: 9px;
    border-radius: 6px;
    color: var(--red);
    background: #fff4f2;
    font-size: 0.82rem;
    font-weight: 950;
  }

  .detail-card-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
  }
}

@media (max-width: 720px) {
  .utility-inner,
  .header-main,
  .category-nav,
  .hero-stage,
  .detail-hero-inner,
  .service-strip,
  .section,
  .section-slim,
  .factory-content,
  .solution-section > .title-row,
  .incubator-shell,
  .solution-grid,
  .oem-section > .split-section,
  .quality-layout,
  .faq-section > .title-row,
  .faq-list {
    width: min(100% - 32px, 1280px);
  }

  .utility-bar {
    font-size: 0.78rem;
  }

  body {
    padding-bottom: 112px;
  }

  .utility-inner {
    gap: 8px;
    line-height: 1.45;
  }

  .utility-inner > * {
    min-width: 0;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner > span,
  .utility-links a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .utility-links {
    display: grid;
    justify-content: stretch;
    gap: 10px;
  }

  .brand-mark {
    min-width: 110px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 1rem;
  }

  .brand-copy {
    display: none;
  }

  .header-main {
    padding: 12px 0;
  }

  .hero-stage {
    min-height: auto;
    gap: 28px;
    padding: 44px 0 56px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .buyer-brief-head h2 {
    font-size: 1.82rem;
  }

  .buyer-brief-actions {
    display: grid;
  }

  .buyer-brief-actions a {
    width: 100%;
  }

  .incubator-title-row {
    display: grid;
    align-items: start;
  }

  .incubator-title-row .primary-button {
    width: 100%;
  }

  .incubator-hero-panel {
    gap: 16px;
  }

  .incubator-hero-image {
    min-height: auto;
    aspect-ratio: 146 / 60;
  }

  .incubator-story {
    gap: 14px;
    padding: 20px;
  }

  .incubator-story h3 {
    font-size: 1.55rem;
  }

  .incubator-proof,
  .incubator-feature-grid,
  .incubator-gallery {
    grid-template-columns: 1fr;
  }

  .incubator-feature-grid article {
    min-height: auto;
  }

  .incubator-gallery figure,
  .incubator-gallery figure.wide {
    grid-column: auto;
    min-height: auto;
    aspect-ratio: 146 / 60;
  }

  .incubator-gallery figcaption {
    position: static;
    border-radius: 0;
    background: #111318;
  }

  .detail-hero-inner {
    min-height: auto;
    padding: 56px 0 72px;
  }

  .detail-hero h1 {
    font-size: 2.25rem;
  }

  .detail-hero p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .detail-hero-actions {
    display: grid;
    gap: 10px;
  }

  .detail-hero-actions a {
    width: 100%;
  }

  .detail-summary-panel {
    padding: 22px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-video-feature {
    grid-template-columns: minmax(132px, 42vw) minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
    gap: 12px;
    order: -1;
  }

  .hero-video-frame {
    width: 100%;
    max-width: 176px;
    justify-self: end;
  }

  .hero-video-copy {
    width: 100%;
    align-content: center;
    gap: 8px;
    padding: 14px;
  }

  .hero-video-copy strong {
    font-size: 1.05rem;
  }

  .hero-video-copy p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-video-open {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 46px;
    padding: 8px 9px;
  }

  .hero-video-open span {
    font-size: 0.66rem;
  }

  .hero-video-open strong {
    font-size: 0.78rem;
  }

  .hero-video-sound {
    top: 8px;
    right: 8px;
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.74rem;
  }

  .video-copy h2 {
    font-size: 1.9rem;
    overflow-wrap: anywhere;
  }

  .video-layout {
    gap: 24px;
  }

  .video-caption {
    position: static;
    display: grid;
    border-radius: 0;
    background: #080808;
  }

  .video-caption strong {
    text-align: left;
  }

  .video-carousel-controls {
    margin-top: 12px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    min-height: 360px;
  }

  .showcase-card {
    min-height: 220px;
  }

  .hero-dots {
    display: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .service-strip div,
  .service-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .section-slim {
    padding: 52px 0;
    scroll-margin-top: 86px;
  }

  .title-row {
    display: grid;
    align-items: start;
  }

  .catalog-meta {
    justify-items: stretch;
  }

  .catalog-detail-link,
  .catalog-count {
    width: 100%;
  }

  .title-row h2,
  .factory-content h2,
  .split-section h2,
  .company-intro h2,
  .solution-section h2,
  .rd-layout h2,
  .quality-copy h2,
  .contact-copy h2 {
    font-size: 1.85rem;
  }

  .series-grid,
  .solution-grid,
  .buyer-brief-grid,
  .product-grid,
  .process-grid,
  .capability-grid,
  .rd-grid,
  .quality-steps,
  .item-oem-grid,
  .related-products,
  .trust-grid,
  .market-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .company-layout,
  .rd-layout,
  .quality-layout {
    grid-template-columns: 1fr;
  }

  .company-intro,
  .profile-panel,
  .regional-card,
  .quality-copy {
    padding: 22px;
  }

  .regional-details {
    padding: 18px;
    overflow-wrap: anywhere;
  }

  .lead-box {
    padding: 20px;
  }

  .lead-box h2 {
    font-size: 1.55rem;
  }

  .lead-actions {
    display: grid;
  }

  .catalog-panel {
    display: grid;
  }

  .product-actions,
  .detail-card-actions {
    grid-template-columns: 1fr;
  }

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

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

  .filter-button {
    width: 100%;
  }

  .detail-product-card {
    padding: 16px;
  }

  .detail-product-card img {
    aspect-ratio: 1.4 / 1;
  }

  .detail-card-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .detail-card-columns strong {
    display: block;
    margin-bottom: 8px;
  }

  .detail-inquiry {
    grid-template-columns: 1fr;
  }

  .detail-inquiry-actions {
    display: grid;
    justify-content: stretch;
  }

  .item-section {
    width: min(100% - 32px, 1280px);
    padding: 34px 0 52px;
  }

  .item-hero-card {
    gap: 22px;
    padding: 18px;
  }

  .item-media-frame {
    padding: 18px;
  }

  .item-content h1 {
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  .item-price-highlight {
    grid-template-columns: 1fr;
  }

  .item-price-highlight span {
    text-align: left;
  }

  .item-actions {
    display: grid;
  }

  .item-actions a {
    width: 100%;
  }

  .item-panel {
    padding: 18px;
  }

  .factory-banner {
    min-height: 360px;
    padding: 52px 0;
  }

  .factory-video-caption {
    position: static;
    display: grid;
    border-radius: 0;
    background: #080808;
  }

  .factory-video-caption strong {
    text-align: left;
  }

  .contact-layout {
    padding: 20px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .site-footer,
  body > .site-footer {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .floating-whatsapp {
    display: none;
  }

  .sticky-lead-bar {
    grid-template-columns: 1fr 1fr;
    padding: 10px 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .sticky-lead-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sticky-lead-bar span {
    grid-column: 1 / -1;
    font-size: 0.9rem;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal-head {
    display: grid;
    padding: 14px;
  }

  .video-modal-body {
    padding: 12px;
  }

  .video-modal-body video {
    max-width: min(100%, 48vh);
    max-height: calc(100vh - 190px);
  }

  .modal-sound-toggle {
    right: 22px;
    bottom: 22px;
  }
}

@media (max-width: 420px) {
  .hero-stage {
    gap: 22px;
    padding-top: 34px;
  }

  .hero-video-feature {
    grid-template-columns: minmax(118px, 40vw) minmax(0, 1fr);
  }

  .hero-video-frame {
    max-width: 150px;
  }

  .hero-video-copy span {
    font-size: 0.68rem;
  }

  .hero-video-copy strong {
    font-size: 0.96rem;
  }

  .hero-video-copy p {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 1.88rem;
  }

  .detail-mobile-prices {
    grid-template-columns: 1fr;
  }
}
