:root {
  --black: #101010;
  --ink: #202020;
  --muted: #6d6d6d;
  --line: #e5e0d8;
  --soft: #f7f4ef;
  --paper: #ffffff;
  --accent: #d5a253;
  --accent-dark: #ad7f35;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --container: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 70px;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  text-transform: uppercase;
}

h3 {
  font-size: 21px;
  text-transform: uppercase;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

.top-strip {
  color: #d8d8d8;
  background: var(--black);
  font-size: 13px;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.top-strip a:hover {
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  display: block;
  width: 150px;
  height: auto;
  filter: invert(1);
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--black);
  border-radius: 50%;
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  color: var(--black);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.brand__text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.button--dark {
  color: var(--paper);
  background: var(--black);
}

.header-cta:hover,
.button--dark:hover {
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.1) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-items: center;
  min-height: 650px;
  padding: 78px 0;
}

.hero__copy h1 {
  color: var(--paper);
}

.hero__copy h2 {
  margin-top: 8px;
  color: var(--accent);
  font-size: 34px;
}

.hero__lead {
  max-width: 580px;
  margin: 24px 0 32px;
  color: #d8d8d8;
  font-size: 20px;
}

.hero .button--dark {
  color: var(--black);
  background: var(--paper);
}

.hero .button--dark:hover {
  color: var(--paper);
  background: var(--accent-dark);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-slot {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #b8afa1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      135deg,
      #d9d3c8 0,
      #d9d3c8 16px,
      #c8c0b3 16px,
      #c8c0b3 32px
    );
  color: #3c3934;
  text-align: center;
}

.image-slot::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  content: "";
}

.image-slot span {
  position: relative;
  z-index: 1;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  min-height: 120px;
  padding: 26px 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.stat-item:last-child {
  border-right: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  color: var(--black);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.stat-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-title {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-title--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

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

.category-card,
.product-card,
.feature-card,
.factory-card,
.certificate-card,
.advantage-item,
.process-step,
.contact-card,
.inquiry-panel {
  background: var(--paper);
  border: 1px solid var(--line);
}

.category-card {
  display: grid;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.category-card--wide {
  grid-column: span 3;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 300px;
}

.category-card .image-slot {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.category-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.arrow-link,
.text-link {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrow-link::after,
.text-link::after {
  margin-left: 8px;
  content: ">";
}

.product-grid,
.feature-grid,
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
}

.product-card .image-slot {
  min-height: 250px;
  border: 0;
  border-radius: 0;
}

.product-card__body {
  padding: 24px;
}

.product-card__body h3 {
  margin: 8px 0 12px;
}

.product-card__body p:not(.product-tag) {
  margin-bottom: 20px;
  color: var(--muted);
}

.product-tag {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-choose {
  background: var(--black);
}

.why-choose h2,
.why-choose h3 {
  color: var(--paper);
}

.why-choose .eyebrow {
  color: var(--accent);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.advantage-item {
  min-height: 168px;
  padding: 24px;
  background: #181818;
  border: 0;
}

.advantage-item span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.advantage-item h3 {
  margin-top: 50px;
  font-size: 18px;
}

.feature-card {
  overflow: hidden;
}

.feature-card .image-slot {
  min-height: 240px;
  border: 0;
  border-radius: 0;
}

.feature-card h3,
.factory-card h3,
.certificate-card h3 {
  padding: 20px;
  font-size: 18px;
}

.factory-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.factory-card {
  overflow: hidden;
}

.factory-card--large {
  grid-row: span 2;
}

.factory-card .image-slot {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.factory-card--large .image-slot {
  min-height: 540px;
}

.process-section {
  background: var(--paper);
}

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

.process-step {
  min-height: 150px;
  padding: 22px;
  position: relative;
}

.process-step span {
  color: var(--accent-dark);
  font-weight: 800;
}

.process-step h3 {
  margin-top: 48px;
  font-size: 18px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 52px;
}

.image-slot--profile {
  min-height: 440px;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.profile-copy .button {
  margin-top: 28px;
}

.certificate-grid {
  grid-template-columns: repeat(5, 1fr);
}

.certificate-card .image-slot {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.certificate-card h3 {
  font-size: 15px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-grid .image-slot {
  min-height: 340px;
}

.team-panel h2 {
  margin-bottom: 24px;
  color: #333;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  text-transform: none;
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.inquiry-panel,
.contact-card {
  padding: 34px;
  box-shadow: var(--shadow);
}

.inquiry-panel > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.mock-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.mock-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

.mock-form .button {
  justify-self: start;
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-card a {
  color: var(--accent-dark);
}

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

.social-links a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 62px 0 22px;
  color: #d7d7d7;
  background: var(--black);
}

.site-footer h3,
.site-footer .brand__text strong {
  color: var(--paper);
}

.site-footer .brand__mark {
  color: var(--black);
  background: var(--paper);
}

.site-footer .brand__text em,
.site-footer p {
  color: #a6a6a6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 38px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  color: #d7d7d7;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  font-size: 13px;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

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

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

  .primary-nav {
    position: fixed;
    inset: 121px 0 auto;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .profile-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .category-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

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

  .factory-grid,
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-card--large {
    grid-row: auto;
  }

  .factory-card--large .image-slot {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-strip__inner {
    flex-direction: column;
    gap: 4px;
  }

  .primary-nav {
    inset: 143px 0 auto;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .hero__copy h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.36) 100%),
      url("../images/hero-car-interior.webp") 62% center / cover no-repeat;
  }

  .hero__grid {
    min-height: 560px;
    padding: 58px 0;
  }

  .hero__lead {
    font-size: 17px;
  }

  .image-slot--profile {
    min-height: 300px;
  }

  .stats-bar__grid,
  .category-grid,
  .product-grid,
  .feature-grid,
  .advantage-grid,
  .factory-grid,
  .process-grid,
  .certificate-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .category-card--wide {
    grid-column: span 1;
  }

  .section {
    padding: 64px 0;
  }

  .inquiry-panel,
  .contact-card {
    padding: 24px;
  }
}

/* Old-site replica tuning: keep this block at the end for easy comparison edits. */
.site-header {
  position: relative;
  background: var(--paper);
}

.header-main {
  grid-template-columns: auto 1fr;
  min-height: 86px;
}

.brand__text--logo strong {
  display: inline-block;
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.primary-nav {
  gap: 34px;
}

.primary-nav a {
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 33%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.02) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  min-height: 540px;
  padding: 84px 0;
}

.hero-logo {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero__copy h1 {
  color: var(--paper);
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  text-transform: none;
}

.hero__copy h2 {
  margin-top: 7px;
  color: var(--paper);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
}

.hero__lead {
  max-width: 420px;
  margin: 4px 0 22px;
  color: var(--paper);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.hero .button--dark {
  min-height: 42px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--black);
}

.section {
  padding: 84px 0;
}

.section-title {
  margin-bottom: 42px;
}

.section-title h2 {
  color: #333;
  font-size: 44px;
  font-weight: 900;
}

.section-title .eyebrow,
.product-categories .eyebrow,
.why-choose .eyebrow,
.product-features .eyebrow,
.factory-capability .eyebrow,
.process-section .eyebrow,
.certificates-section .eyebrow,
.team-exhibition .eyebrow {
  display: none;
}

.product-categories {
  background: #f4f4f4;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.category-card--wide {
  grid-column: auto;
  grid-template-columns: 1fr;
  min-height: 430px;
}

.category-card .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.category-card .image-slot::after,
.feature-card .image-slot::after,
.factory-card .image-slot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.45));
  content: "";
}

.category-card .image-slot span,
.feature-card .image-slot span,
.factory-card .image-slot span,
.certificate-card .image-slot span,
.team-grid .image-slot span {
  display: none;
}

.category-card .image-slot::before,
.feature-card .image-slot::before,
.factory-card .image-slot::before,
.certificate-card .image-slot::before,
.team-grid .image-slot::before {
  display: none;
}

.category-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px 30px;
  background: rgba(0, 0, 0, 0.54);
}

.category-card__body h3 {
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
}

.category-card__body .arrow-link {
  color: var(--paper);
  font-size: 0;
}

.category-card__body .arrow-link::after {
  color: var(--paper);
  font-size: 42px;
  line-height: 1;
  content: "→";
}

.category-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/oubiaomat_texture_fixed_500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC05285_original_color_under500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/%E8%84%9A%E5%9E%AB_3%E6%AF%944_%E7%99%BD%E5%BA%95%E5%B1%85%E4%B8%AD_%E9%AB%98%E6%B8%85-600x800.webp") center / cover no-repeat;
}

.category-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/vehicle_interior_fixed_under_500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/1.png") center / cover no-repeat;
}

.category-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/%E2%80%A6%E2%80%A6_%E5%89%AF%E6%9C%AC.png") center / cover no-repeat;
}

.category-card:nth-child(7) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC02486_under500kb.webp") center / cover no-repeat;
}

.why-choose {
  background: var(--paper);
}

.why-choose h2,
.why-choose h3 {
  color: #333;
}

.advantage-grid {
  gap: 22px;
  background: transparent;
}

.advantage-item {
  min-height: 170px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.advantage-item span {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  font-size: 15px;
  line-height: 52px;
}

.advantage-item h3 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 900;
}

.feature-grid,
.factory-grid,
.certificate-grid {
  gap: 26px;
}

.feature-card,
.factory-card,
.certificate-card {
  border: 0;
  box-shadow: none;
}

.feature-card .image-slot {
  min-height: 275px;
}

.feature-card h3,
.factory-card h3,
.certificate-card h3 {
  color: #333;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.feature-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/offroad_allweather_bw.webp") center / cover no-repeat;
}

.feature-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/orange_structure.webp") center / cover no-repeat;
}

.feature-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/mud_cleaning_mat.webp") center / cover no-repeat;
}

.feature-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp") center / cover no-repeat;
}

.feature-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/blue_grid_mat.webp") center / cover no-repeat;
}

.feature-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/anti_slip_texture.webp") center / cover no-repeat;
}

.factory-grid {
  grid-template-columns: repeat(3, 1fr);
}

.factory-card--large {
  grid-row: auto;
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  min-height: 255px;
}

.factory-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp") center / cover no-repeat;
}

.factory-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_panorama_2to1_under500kb.webp") center / cover no-repeat;
}

.process-grid {
  gap: 22px;
}

.process-step {
  min-height: 170px;
  border: 0;
  text-align: center;
}

.process-step span {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  font-weight: 900;
  line-height: 66px;
}

.process-step h3 {
  margin-top: 22px;
  color: #333;
  font-size: 17px;
  font-weight: 900;
}

.profile-grid {
  display: block;
  max-width: 920px;
  text-align: center;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: #555;
  font-size: 17px;
}

.certificate-grid {
  grid-template-columns: repeat(5, 1fr);
}

.certificate-card .image-slot {
  min-height: 270px;
  background-size: contain;
  background-color: #f8f8f8;
}

.certificate-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/8.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/7.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/6.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/5.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4-768x1024.png") center / contain no-repeat #f8f8f8;
}

.team-grid .image-slot:first-child {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5;
}

.team-grid .image-slot:last-child {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4_4x3.webp") center / cover no-repeat;
}

.team-panel:first-child .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_panorama_2to1_500kb.webp") center / cover no-repeat;
}

.team-panel:last-child .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4_4x3.webp") center / cover no-repeat;
}

.contact-section {
  background: #f4f4f4;
}

@media (max-width: 1020px) {
  .header-main {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    inset: 86px 0 auto;
  }

  .category-grid,
  .feature-grid,
  .factory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .primary-nav {
    inset: 86px 0 auto;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.12) 100%),
      url("../images/hero-car-interior.webp") center center / cover no-repeat;
  }

  .hero__grid {
    min-height: 350px;
    padding: 58px 0;
  }

  .hero-logo {
    font-size: 24px;
  }

  .hero__copy h1 {
    font-size: 20px;
  }

  .hero__copy h2,
  .hero__lead {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 380px;
  }
}

/* Screenshot replica pass: closer to the May 14 old homepage capture. */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  border: 0;
}

.header-main {
  width: min(100% - 240px, 1420px);
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.header-main .brand__logo {
  width: 150px;
}

.brand__text--logo strong {
  color: var(--paper);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  justify-content: center;
  gap: 22px;
}

.primary-nav a {
  color: var(--paper);
  font-size: 11px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  padding: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown__toggle span {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid var(--paper);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(1px);
}

.products-menu {
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: 330px;
  padding: 24px 40px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
}

.nav-dropdown.is-open .products-menu,
.nav-dropdown:focus-within .products-menu,
.nav-dropdown:hover .products-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.products-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.12;
  text-transform: none;
}

.products-menu a:hover {
  color: var(--paper);
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  width: 230px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  overflow: hidden;
}

.site-search input {
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 4px 0 15px;
  color: var(--paper);
  background: transparent;
  font-size: 11px;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.site-search button {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 25px;
  line-height: 1;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  width: min(100% - 240px, 1420px);
  min-height: 585px;
  padding: 125px 0 125px;
}

.hero-logo {
  margin-bottom: 12px;
  font-size: 58px;
  letter-spacing: 0.02em;
}

.hero__copy h1 {
  font-size: 42px;
}

.hero__copy h2 {
  margin-top: 9px;
  font-size: 28px;
  font-weight: 500;
}

.hero__lead {
  margin-top: 15px;
  font-size: 22px;
}

.hero .button--dark {
  min-height: 31px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: inline-grid;
  gap: 10px;
  justify-items: start;
}

.hero-actions .button {
  min-width: 118px;
  justify-content: center;
}

.hero .button--outline {
  min-height: 31px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: var(--paper);
  background: transparent;
  font-size: 11px;
}

.hero .button--outline:hover {
  color: var(--black);
  background: var(--paper);
}

.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -92px;
  background: transparent;
  border: 0;
}

.stats-bar__grid {
  width: min(100% - 40px, 760px);
  grid-template-columns: repeat(5, 1fr);
  border: 0;
}

.stat-item {
  min-height: 74px;
  padding: 0 10px 12px;
  border: 0;
  color: var(--paper);
}

.stat-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 5px;
  object-fit: contain;
}

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

.stat-item strong {
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.stat-item span {
  margin-top: 0;
  color: var(--paper);
  font-size: 7px;
}

.product-categories,
.product-features,
.process-section,
.certificates-section {
  background: #eeeeee;
}

.product-categories {
  padding-top: 36px;
  padding-bottom: 54px;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.section-title h2::after,
.team-panel h2::after {
  display: block;
  width: 48px;
  height: 2px;
  margin: 8px auto 0;
  background: #222;
  content: "";
}

.product-categories .container,
.product-features .container,
.factory-capability .container,
.process-section .container,
.company-profile .container,
.certificates-section .container,
.team-exhibition .container,
.contact-section .container,
.site-footer .container {
  width: min(100% - 40px, 930px);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 20px;
}

.category-card,
.category-card--wide {
  min-height: 248px;
}

.category-card__body {
  min-height: 42px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.5);
}

.category-card__body h3 {
  font-size: 14px;
}

.category-card__body .arrow-link::after {
  font-size: 24px;
}

.category-card--more {
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: none;
}

.category-card--more::before,
.category-card--more::after {
  display: none;
}

.category-more__content {
  display: grid;
  gap: 10px;
  color: #111;
  text-align: center;
}

.category-more__content span {
  font-size: 24px;
  letter-spacing: 0.08em;
}

.category-more__content strong {
  font-size: 21px;
  font-style: italic;
}

.why-choose {
  padding: 38px 0 32px;
  background: var(--black);
}

.why-choose .container {
  width: min(100% - 40px, 920px);
}

.why-choose h2 {
  color: var(--paper);
  font-size: 14px;
}

.why-choose h2::after {
  background: var(--paper);
}

.advantage-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.advantage-item {
  min-height: 58px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.advantage-item span {
  display: block;
}

.icon {
  display: block;
  width: auto;
  height: 31px;
  margin: 0 auto;
  border: 0;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 31px;
  object-fit: contain;
  text-align: center;
}

.icon::before {
  display: block;
}

.icon-oem::before {
  content: "✂";
}

.icon-factory::before {
  content: "▤";
}

.icon-production::before {
  content: "▥";
}

.icon-rd::before {
  content: "✧";
}

.icon-design::before {
  content: "✎";
}

.icon-assets::before {
  content: "▦";
}

.icon-quality::before {
  content: "◇";
}

.icon-time::before {
  content: "◷";
}

.icon-inquiry::before {
  content: "▱";
}

.icon-confirm::before {
  content: "☷";
}

.icon-sample::before {
  content: "✎";
}

.icon-inspection::before {
  content: "◈";
}

.icon-package::before {
  content: "⬡";
}

.icon-shipment::before {
  content: "▭";
}

.icon-support::before {
  content: "◔";
}

.advantage-item .icon {
  width: auto;
  height: 31px;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  font-size: 24px;
  line-height: 31px;
}

.advantage-item h3 {
  margin-top: 9px;
  color: var(--paper);
  font-size: 8px;
  line-height: 1.2;
}

.product-features {
  padding: 26px 0 34px;
}

.feature-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.feature-card .image-slot {
  min-height: 70px;
}

.feature-card h3 {
  padding: 9px 0 0;
  font-size: 9px;
  line-height: 1.18;
}

.factory-capability {
  padding: 38px 0 44px;
  background: var(--paper);
}

.factory-capability .section-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.factory-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  min-height: 126px;
}

.factory-card h3 {
  padding: 9px 0 0;
  font-size: 9px;
}

.factory-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_panorama_2to1_500kb.webp") center / cover no-repeat;
}

.process-section {
  padding: 34px 0;
}

.process-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 74px;
  padding: 0;
  background: transparent;
}

.process-step .icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  color: #283d50;
  font-size: 32px;
  line-height: 36px;
}

.process-step h3 {
  margin-top: 10px;
  font-size: 9px;
  line-height: 1.18;
}

.company-profile {
  padding: 38px 0 50px;
  background: var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  text-align: left;
}

.profile-video {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.profile-video video {
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-height: 234px;
  margin: -2px;
  border: 0;
  background: transparent;
  object-fit: cover;
}

.profile-copy h2 {
  margin-bottom: 10px;
  font-size: 33px;
  text-transform: none;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 10px;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.profile-copy .button {
  min-height: 38px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.certificates-section {
  padding: 34px 0 44px;
}

.certificate-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.certificate-card .image-slot {
  min-height: 160px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.certificate-card h3 {
  padding: 12px 0 0;
  font-size: 9px;
}

.team-exhibition {
  padding: 34px 0 58px;
}

.team-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-panel h2 {
  margin-bottom: 18px;
  font-size: 14px;
}

.team-panel .image-slot {
  min-height: 190px;
}

.team-panel:first-child .image-slot {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5;
}

.contact-section {
  display: none;
}

.site-footer {
  padding: 52px 0 22px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.88)),
    repeating-linear-gradient(135deg, #121212 0, #121212 14px, #171717 14px, #171717 28px);
}

.footer-grid {
  grid-template-columns: 0.85fr 1.15fr 1.1fr;
  gap: 54px;
}

.footer-grid h3 {
  margin-bottom: 9px;
  font-size: 20px;
  text-transform: none;
}

.footer-grid a,
.footer-grid p {
  font-size: 11px;
  line-height: 1.75;
}

.footer-inquiry {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  text-align: center;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
  text-align: left;
}

.footer-form label {
  display: grid;
  gap: 4px;
  color: #d8d8d8;
  font-size: 10px;
}

.footer-form label:nth-child(3),
.footer-form a {
  grid-column: span 2;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 8px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.footer-form a {
  display: block;
  padding: 8px;
  border-radius: 4px;
  color: #111;
  background: var(--paper);
  font-weight: 900;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.footer-socials a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--paper);
  font-size: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 52px;
  padding-top: 17px;
}

.footer-bottom a {
  color: #d7d7d7;
  font-size: 10px;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    background: var(--paper);
  }

  .header-main {
    width: min(100% - 28px, var(--container));
    grid-template-columns: auto auto;
  }

  .brand__text--logo strong {
    color: var(--black);
  }

  .menu-toggle {
    display: block;
  }

  .site-search {
    display: none;
  }

  .primary-nav {
    inset: 86px 0 auto;
  }

  .primary-nav a {
    color: var(--black);
  }

  .nav-dropdown__toggle {
    color: var(--black);
  }

  .nav-dropdown__toggle span {
    border-top-color: var(--black);
  }

  .products-menu {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 18px 22px;
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.9);
    transform: none;
  }

  .nav-dropdown.is-open .products-menu {
    transform: none;
  }

  .products-menu a {
    color: var(--paper);
    font-size: 22px;
  }

  .hero__grid {
    width: min(100% - 28px, var(--container));
    min-height: 430px;
    padding: 70px 0 110px;
  }

  .hero-logo {
    font-size: 30px;
  }

  .hero__copy h1 {
    font-size: 24px;
  }

  .hero__copy h2,
  .hero__lead {
    font-size: 14px;
  }

  .stats-bar {
    margin-top: -84px;
  }

  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .stat-item strong {
    font-size: 10px;
  }
}

/* Current static-site pages: product catalog, blog, contact, and aligned header/footer. */
.site-header .header-main {
  align-items: center;
}

.brand,
.brand__text,
.brand__text--logo strong {
  white-space: nowrap;
}

.brand {
  min-width: max-content;
}

.primary-nav {
  align-items: center;
}

.primary-nav > a,
.nav-dropdown,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  line-height: 1;
}

.nav-dropdown__toggle {
  justify-content: center;
}

.nav-dropdown__toggle span {
  flex: 0 0 auto;
  transform: translateY(0);
}

.site-search {
  align-self: center;
  flex: 0 0 auto;
}

.site-header--solid,
.catalog-page .site-header,
.contact-page .site-header,
.blog-page .site-header {
  position: relative;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--solid .header-main,
.catalog-page .header-main,
.contact-page .header-main,
.blog-page .header-main {
  width: min(100% - 72px, 1780px);
}

.site-header--solid .brand__text--logo strong,
.catalog-page .brand__text--logo strong,
.contact-page .brand__text--logo strong,
.blog-page .brand__text--logo strong,
.site-header--solid .primary-nav a,
.catalog-page .primary-nav a,
.contact-page .primary-nav a,
.blog-page .primary-nav a {
  color: var(--paper);
}

.site-header--solid .site-search,
.contact-page .site-search,
.blog-page .site-search {
  width: 330px;
}

.site-header--solid .site-search input,
.contact-page .site-search input,
.blog-page .site-search input {
  color: var(--paper);
}

.catalog-page,
.contact-page,
.blog-page {
  background: #f6f6f6;
}

/* Product catalog page */
.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  width: 300px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
}

.catalog-search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.catalog-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.catalog-search button {
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 30px;
}

.catalog-inquiry-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.92)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/anti_slip_texture.webp") center / cover no-repeat;
}

.catalog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  min-height: 184px;
  gap: 36px;
  width: min(100% - 72px, 1780px);
}

.catalog-hero h1 {
  color: var(--paper);
  font-size: 44px;
  letter-spacing: 0.02em;
}

.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  min-width: 190px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-button--light {
  color: #050505;
  background: var(--paper);
}

.catalog-button--dark {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.34);
}

.catalog-hero__note {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
  text-align: right;
}

.catalog-shell {
  background: var(--paper);
}

.catalog-shell__inner {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  width: min(100% - 72px, 1780px);
  min-height: 800px;
}

.catalog-sidebar {
  padding: 38px 34px 70px 0;
  border-right: 1px solid #e6e6e6;
}

.catalog-sidebar h2 {
  margin-bottom: 28px;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.catalog-category-list {
  display: grid;
}

.catalog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  color: #111;
  font-size: 16px;
}

.catalog-category-list a:nth-child(2) {
  padding-bottom: 18px;
  border-bottom: 1px solid #dfdfdf;
}

.catalog-category-list a:nth-child(3) {
  margin-top: 18px;
}

.catalog-category-list a span {
  font-size: 30px;
  line-height: 1;
}

.catalog-category-list a:hover,
.catalog-category-list a:target {
  color: #777;
}

.catalog-results {
  padding: 38px 0 70px 44px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.catalog-toolbar p {
  color: #333;
  font-size: 16px;
}

.catalog-toolbar select {
  min-width: 220px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 16px;
  color: #333;
  background: var(--paper);
  font: inherit;
}

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

.catalog-card {
  position: relative;
  min-height: 318px;
  padding: 22px 18px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: var(--paper);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-card__image {
  display: grid;
  height: 166px;
  place-items: center;
  overflow: hidden;
}

.catalog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  border-color: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.catalog-card:hover .catalog-card__image img,
.catalog-card:focus-within .catalog-card__image img {
  filter: contrast(1.04);
  transform: scale(1.08);
}

.catalog-card h3 {
  margin-top: 10px;
  color: #050505;
  font-size: 16px;
  font-weight: 900;
}

.catalog-card p {
  color: #111;
  font-size: 15px;
  line-height: 1.25;
}

.catalog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 2px;
  color: var(--paper);
  background: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.catalog-pagination a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #111;
  background: var(--paper);
  font-weight: 800;
}

.catalog-pagination a.is-active {
  color: var(--paper);
  background: #050505;
  border-color: #050505;
}

.catalog-pagination__next {
  border-color: transparent !important;
  font-size: 32px;
}

.catalog-inquiry {
  padding: 30px 0;
  color: var(--paper);
  background: #050505;
}

.catalog-inquiry__inner {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(100% - 72px, 1500px);
}

.catalog-inquiry h2 {
  color: var(--paper);
  font-size: 28px;
  text-transform: none;
}

.catalog-inquiry p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-inquiry__contact {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.catalog-inquiry__contact p {
  margin-top: 4px;
}

.catalog-inquiry__contact strong {
  color: var(--paper);
}

.catalog-inquiry__contact a {
  color: var(--paper);
}

.catalog-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.catalog-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.catalog-footer a {
  color: var(--paper);
}

.catalog-footer p {
  margin: 0;
}

.catalog-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

/* Homepage footer / inquiry area */
.site-footer {
  padding: 110px 0 70px;
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 86% 50%, transparent 0, transparent 240px, rgba(255, 255, 255, 0.06) 241px, transparent 242px, transparent 300px, rgba(255, 255, 255, 0.04) 301px, transparent 302px),
    linear-gradient(180deg, #050505, #030303);
}

.site-footer .container {
  width: min(100% - 72px, 1500px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 1fr;
  align-items: start;
  gap: 86px;
}

.footer-grid h3 {
  color: var(--paper);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.62;
}

.footer-products {
  display: grid;
  gap: 17px;
}

.footer-products h3 {
  margin-bottom: 18px;
}

.footer-products a {
  position: relative;
  padding-left: 34px;
}

.footer-products a::before {
  position: absolute;
  left: 0;
  content: "›";
  font-size: 33px;
  line-height: 0.9;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-inquiry {
  padding: 42px 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  text-align: center;
}

.footer-inquiry__title {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-inquiry__title::before,
.footer-inquiry__title::after {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.footer-inquiry__title span {
  font-size: 34px;
}

.footer-inquiry__title h3 {
  font-size: 24px;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 420px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

.footer-form label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: 16px;
}

.footer-form label:nth-child(3),
.footer-form a {
  grid-column: span 2;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.footer-form textarea {
  min-height: 140px;
}

.footer-form a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 4px;
  color: #050505;
  background: var(--paper);
  font-size: 22px;
  font-weight: 900;
}

.footer-success {
  margin-top: 20px;
  color: #58df67 !important;
  font-size: 17px !important;
  text-align: left;
}

.footer-contact {
  display: grid;
  gap: 22px;
}

.footer-contact h3 + p,
.footer-contact p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.footer-contact p span {
  font-size: 26px;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 44px;
}

.footer-socials {
  display: flex;
  gap: 22px;
}

.footer-socials a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 74px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-bottom a,
.footer-bottom span {
  color: var(--paper);
  font-size: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
}

/* Contact / inquiry page */
.contact-workspace {
  padding: 28px 0 70px;
  background: #f7f7f7;
}

.contact-workspace__card {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  width: min(100% - 36px, 1520px);
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-panel {
  padding: 86px 72px;
  border-right: 1px solid #e0e0e0;
}

.contact-info-panel h1 {
  color: #050505;
  font-size: 54px;
  text-transform: none;
}

.contact-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin: 38px 0;
  background: #050505;
}

.contact-info-panel > p {
  max-width: 360px;
  color: #343944;
  font-size: 23px;
  line-height: 1.48;
}

.contact-methods {
  display: grid;
  gap: 28px;
  margin-top: 54px;
}

.contact-methods div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 24px;
}

.contact-methods span {
  color: #050505;
  font-size: 28px;
  line-height: 1.1;
}

.contact-methods p,
.contact-methods a {
  color: #303541;
  font-size: 19px;
  line-height: 1.46;
}

.contact-methods strong {
  display: block;
  margin-bottom: 2px;
  color: #050505;
  font-size: 20px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  margin-top: 54px;
  padding: 22px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  color: #303541;
  background: #fafafa;
}

.privacy-note span {
  font-size: 22px;
}

.privacy-note p {
  font-size: 17px;
  line-height: 1.5;
}

.contact-form-panel {
  padding: 76px 72px 66px;
}

.contact-form-panel h2 {
  color: #050505;
  font-size: 44px;
  text-transform: none;
}

.contact-form-panel > p {
  margin-top: 8px;
  color: #4d5360;
  font-size: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 38px;
  margin-top: 42px;
}

.contact-form label {
  display: grid;
  gap: 12px;
  color: #050505;
  font-size: 18px;
  font-weight: 900;
}

.contact-form__wide {
  grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfd3;
  border-radius: 8px;
  padding: 18px 20px;
  color: #343944;
  background: var(--paper);
  font: inherit;
  font-weight: 400;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  gap: 12px;
}

.phone-input-group input {
  min-width: 0;
}

.contact-form textarea {
  resize: vertical;
}

.message-count {
  justify-self: end;
  color: #6a6f7a;
  font-weight: 400;
}

.contact-submit {
  grid-column: span 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 230px;
  border: 0;
  border-radius: 7px;
  color: var(--paper);
  background: #050505;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.oubiao-inquiry-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.oubiao-inquiry-form__status,
.oubiao-turnstile {
  grid-column: span 2;
}

.oubiao-inquiry-form__status {
  min-height: 1.4em;
  margin: 0;
  color: #6a6f7a;
  font-size: 15px;
  font-weight: 500;
}

.oubiao-inquiry-form__status.is-error {
  color: #9f1d1d;
}

.oubiao-inquiry-form__status.is-success {
  color: #17643a;
}

.simple-page-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #050505;
}

.simple-page-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.simple-page-footer a {
  color: var(--paper);
}

/* Blog page */
.blog-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/oubiaomat_texture_fixed_500kb.webp") center / cover no-repeat;
}

.blog-hero__inner {
  width: min(100% - 72px, 1500px);
  padding: 94px 0;
}

.blog-hero p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 820px;
  color: var(--paper);
  font-size: 58px;
  text-transform: none;
}

.blog-hero span {
  display: block;
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.blog-shell {
  padding: 58px 0 88px;
  background: #f6f6f6;
}

.blog-shell__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  width: min(100% - 72px, 1500px);
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
}

.blog-sidebar h2 {
  margin-bottom: 12px;
  color: #050505;
  font-size: 20px;
}

.blog-sidebar > a {
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
  color: #111;
  font-weight: 800;
}

.blog-inquiry-box {
  margin-top: 28px;
  padding: 26px;
  color: var(--paper);
  background: #050505;
}

.blog-inquiry-box h3 {
  color: var(--paper);
  font-size: 22px;
  text-transform: none;
}

.blog-inquiry-box p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-inquiry-box a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: #050505;
  background: var(--paper);
  font-weight: 900;
}

.blog-list {
  display: grid;
  gap: 26px;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: var(--paper);
}

.blog-card__media {
  min-height: 230px;
  background: #111 center / cover no-repeat;
}

.blog-card__media--mold {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp");
}

.blog-card__media--material {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/blue_grid_mat.webp");
}

.blog-card__media--qc {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp");
}

.blog-card__media--models {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/vehicle_interior_fixed_under_500kb.webp");
}

.blog-card__media--export {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp");
}

.blog-card__body {
  padding: 34px;
}

.blog-card__body p {
  color: #777;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-card__body h2 {
  margin-top: 10px;
  color: #050505;
  font-size: 30px;
  text-transform: none;
}

.blog-card__body span {
  display: block;
  margin-top: 14px;
  color: #4b4f57;
  font-size: 17px;
}

.blog-card__body a {
  display: inline-flex;
  margin-top: 22px;
  color: #050505;
  font-weight: 900;
}

@media (max-width: 1240px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-inquiry {
    max-width: 620px;
  }
}

@media (max-width: 980px) {
  .site-header--solid .header-main,
  .catalog-page .header-main,
  .contact-page .header-main,
  .blog-page .header-main {
    width: min(100% - 28px, var(--container));
  }

  .site-header--solid .menu-toggle,
  .catalog-page .menu-toggle,
  .contact-page .menu-toggle,
  .blog-page .menu-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
  }

  .site-header--solid .menu-toggle span:not(.sr-only),
  .catalog-page .menu-toggle span:not(.sr-only),
  .contact-page .menu-toggle span:not(.sr-only),
  .blog-page .menu-toggle span:not(.sr-only) {
    background: var(--paper);
  }

  .site-header--solid .primary-nav,
  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav {
    inset: 86px 0 auto;
    background: #050505;
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .site-header--solid .primary-nav a,
  .catalog-page .primary-nav a,
  .contact-page .primary-nav a,
  .blog-page .primary-nav a {
    color: var(--paper);
  }

  .catalog-tools,
  .site-header--solid .site-search,
  .contact-page .site-search,
  .blog-page .site-search {
    display: none;
  }

  .catalog-hero__inner,
  .catalog-shell__inner,
  .catalog-inquiry__inner,
  .blog-shell__inner,
  .contact-workspace__card {
    grid-template-columns: 1fr;
  }

  .catalog-hero__inner,
  .catalog-shell__inner,
  .catalog-inquiry__inner,
  .blog-shell__inner {
    width: min(100% - 28px, var(--container));
  }

  .catalog-inquiry__inner {
    gap: 20px;
  }

  .catalog-inquiry__contact {
    padding-left: 0;
    border-left: 0;
  }

  .catalog-hero__note {
    text-align: left;
  }

  .catalog-sidebar {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .catalog-results {
    padding: 34px 0 60px;
  }

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

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .catalog-inquiry__inner {
    display: grid;
  }

  .contact-info-panel {
    padding: 48px 34px;
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .contact-form-panel {
    padding: 48px 34px;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-main {
    gap: 16px;
  }

  .brand__logo {
    width: 126px;
  }

  .brand__text--logo strong {
    font-size: 20px;
  }

  .catalog-hero h1,
  .blog-hero h1,
  .contact-info-panel h1 {
    font-size: 38px;
  }

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

  .contact-form__wide,
  .oubiao-inquiry-form__status,
  .oubiao-turnstile,
  .contact-submit {
    grid-column: span 1;
  }

  .contact-submit {
    justify-self: stretch;
  }

  .phone-input-group {
    grid-template-columns: minmax(112px, 0.46fr) minmax(0, 1fr);
    gap: 10px;
  }

  .site-footer .container,
  .blog-hero__inner {
    width: min(100% - 28px, var(--container));
  }

  .footer-grid h3 {
    font-size: 26px;
  }

  .footer-grid a,
  .footer-grid p,
  .footer-bottom a,
  .footer-bottom span {
    font-size: 16px;
  }

  .footer-inquiry {
    padding: 28px 20px;
  }

  .footer-form {
    grid-template-columns: 1fr;
  }

  .footer-form label:nth-child(3),
  .footer-form a {
    grid-column: span 1;
  }

  .simple-page-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Latest product catalog refinements. */
.catalog-toolbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.catalog-inline-search {
  display: grid;
  grid-template-columns: 1fr 44px;
  justify-self: end;
  width: min(100%, 380px);
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--paper);
}

.catalog-inline-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: #111;
  background: transparent;
  font: inherit;
}

.catalog-inline-search input::placeholder {
  color: #777;
}

.catalog-inline-search button {
  border: 0;
  color: #111;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.catalog-toolbar label {
  justify-self: end;
}

.catalog-pagination {
  align-items: center;
}

.catalog-pagination a,
.catalog-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.catalog-pagination__next {
  width: 38px;
  height: 38px;
  border-color: transparent !important;
  font-size: 28px;
  font-weight: 900;
  padding-bottom: 2px;
}

/* Blog history page, matched to the first visual reference. */
.blog-page {
  background: #f7f7f7;
}

.history-section {
  overflow: hidden;
  padding: 32px 0 48px;
  background: #f7f7f7;
}

.history-heading {
  width: min(100% - 40px, 1180px);
  margin-bottom: 26px;
  text-align: center;
}

.history-heading p,
.development-copy p {
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-heading h1 {
  margin-top: 8px;
  color: #111;
  font-size: 34px;
  font-weight: 900;
  text-transform: none;
}

.history-heading span {
  display: block;
  margin-top: 10px;
  color: #222;
  font-size: 15px;
}

.history-stage {
  position: relative;
  width: min(100% - 170px, 1220px);
  margin: 0 auto;
}

.history-card {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.15fr;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.history-card__image {
  min-height: 300px;
  background: #111 center / cover no-repeat;
  filter: grayscale(1);
}

.history-card__image--left {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp");
}

.history-card__image--right {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp");
}

.history-card__copy {
  display: grid;
  align-content: center;
  padding: 42px 48px;
}

.history-card__copy p {
  color: #969696;
  font-size: 20px;
  font-weight: 900;
}

.history-card__copy h2 {
  margin-top: 12px;
  color: #111;
  font-size: 25px;
  text-transform: none;
}

.history-card__copy span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 18px 0;
  background: #111;
}

.history-card__copy strong {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.68;
}

.history-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  background: #202020;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.history-arrow--left {
  left: -28px;
}

.history-arrow--right {
  right: -28px;
}

.history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  width: min(100% - 170px, 1220px);
  margin: 28px auto 0;
}

.history-timeline::before {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  height: 1px;
  background: #c9c9c9;
  content: "";
}

.history-timeline a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #111;
  text-align: center;
}

.history-timeline strong {
  color: #777;
  font-size: 13px;
}

.history-timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background: #f7f7f7;
}

.history-timeline em {
  max-width: 120px;
  color: #111;
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
}

.history-timeline a.is-active strong {
  color: #111;
}

.history-timeline a.is-active span {
  border-color: #111;
  background: #111;
}

.development-section {
  padding: 32px 0 70px;
  background: var(--paper);
}

.development-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 56px;
  width: min(100% - 90px, 1440px);
}

.development-copy {
  padding-top: 26px;
}

.development-copy h2 {
  margin-top: 20px;
  color: #111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.development-copy span {
  display: block;
  margin-top: 30px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
}

.development-copy a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 4px;
  color: var(--paper);
  background: #111;
  font-size: 14px;
  font-weight: 900;
}

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

.development-card {
  position: relative;
  display: grid;
  min-height: 178px;
  align-content: end;
  overflow: hidden;
  border-radius: 7px;
  padding: 24px;
  background: #111 center / cover no-repeat;
  filter: grayscale(1);
}

.development-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
  content: "";
}

.development-card span,
.development-card h3 {
  position: relative;
  z-index: 1;
}

.development-card span {
  display: block;
  width: 18px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--paper);
}

.development-card h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

.development-card--design {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC05285_original_color_under500kb.webp");
}

.development-card--testing {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp");
}

.development-card--manufacturing {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp");
}

.development-card--materials {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp");
}

.development-card--durability {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/mud_cleaning_mat.webp");
}

.development-card--packaging {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp");
}

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

  .catalog-inline-search,
  .catalog-toolbar label {
    justify-self: stretch;
  }

  .catalog-inline-search,
  .catalog-toolbar select {
    width: 100%;
  }

  .history-stage,
  .history-timeline,
  .development-grid {
    width: min(100% - 28px, var(--container));
  }

  .history-card,
  .development-grid {
    grid-template-columns: 1fr;
  }

  .history-card__copy {
    padding: 34px;
  }

  .history-timeline {
    overflow-x: auto;
    grid-template-columns: repeat(8, 140px);
    padding-bottom: 12px;
  }

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

@media (max-width: 640px) {
  .history-heading h1 {
    font-size: 30px;
  }

  .history-stage {
    width: min(100% - 36px, var(--container));
  }

  .history-arrow {
    display: none;
  }

  .development-cards {
    grid-template-columns: 1fr;
  }
}

/* About page: story, clickable Oubiao history, and placeholder-only media. */
.about-page {
  background: #f8f8f8;
}

.about-story {
  padding: 58px 0 36px;
  background: #f8f8f8;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.74fr);
  gap: 92px;
  width: min(100% - 120px, 1450px);
  align-items: start;
}

.about-story__copy > p,
.about-history__heading p,
.about-capability__copy p {
  color: #838383;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-story h1 {
  margin-top: 12px;
  color: #101010;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}

.about-story__text {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: #111;
  font-size: 15px;
  line-height: 1.72;
}

.about-story__text strong {
  color: #101010;
  font-size: 18px;
}

.about-story__copy > a,
.about-capability__copy a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 22px;
  border: 1px solid #101010;
  border-radius: 4px;
  color: var(--paper);
  background: #101010;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(15, 35, 70, 0);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-story__copy > a span,
.about-capability__copy a span,
.about-page .about-extra-action span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
  transition: transform 220ms ease;
}

.about-story__copy > a:hover,
.about-story__copy > a:focus-visible,
.about-capability__copy a:hover,
.about-capability__copy a:focus-visible,
.about-page .about-extra-action:hover,
.about-page .about-extra-action:focus-visible {
  color: #101010;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 35, 70, 0.14);
  transform: translateY(-1px);
}

.about-story__copy > a:hover span,
.about-story__copy > a:focus-visible span,
.about-capability__copy a:hover span,
.about-capability__copy a:focus-visible span,
.about-page .about-extra-action:hover span,
.about-page .about-extra-action:focus-visible span {
  transform: translateX(4px);
}

.about-image-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 46% 38%, #cfcfcf 0 15px, transparent 16px),
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.45) 47% 54%, transparent 55%),
    linear-gradient(135deg, #eeeeee, #dddddd);
  color: #9a9a9a;
}

.about-image-placeholder::before {
  width: 132px;
  height: 78px;
  clip-path: polygon(0 100%, 32% 38%, 48% 70%, 66% 14%, 100% 100%);
  background: #c8c8c8;
  content: "";
}

.about-image-placeholder span {
  position: absolute;
  bottom: 18px;
  left: 50%;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.about-image-placeholder--hero {
  min-height: 350px;
}

.about-history {
  padding: 24px 0 52px;
  background: #f8f8f8;
}

.about-history__heading {
  width: min(100% - 120px, 1450px);
  margin-bottom: 24px;
  text-align: center;
}

.about-history__heading h2 {
  margin-top: 8px;
  color: #101010;
  font-size: 38px;
  text-transform: none;
}

.about-history__heading span {
  display: block;
  margin-top: 9px;
  color: #333;
  font-size: 15px;
}

.about-history__stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 22px;
  width: min(100% - 120px, 1450px);
  margin: 0 auto;
  align-items: center;
}

.about-history__card {
  display: grid;
  grid-template-columns: 0.95fr 0.94fr 1.08fr;
  overflow: hidden;
  min-height: 245px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-image-placeholder--history {
  min-height: 245px;
  border-radius: 0;
}

.about-image-placeholder--history::before {
  width: 96px;
  height: 58px;
}

.about-history__copy {
  display: grid;
  align-content: center;
  padding: 30px 42px;
}

.about-history__copy p {
  color: #8f8f8f;
  font-size: 19px;
  font-weight: 900;
}

.about-history__copy h3 {
  margin-top: 12px;
  color: #101010;
  font-size: 25px;
  line-height: 1.18;
  text-transform: none;
}

.about-history__copy span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 16px 0;
  background: #101010;
}

.about-history__copy strong {
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.about-history__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: #101010;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 22px;
  line-height: 1;
}

.about-history__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(96px, 1fr));
  gap: 0;
  width: min(100% - 120px, 1450px);
  margin: 30px auto 0;
}

.about-history__timeline::before {
  position: absolute;
  top: 31px;
  right: 0;
  left: 0;
  height: 1px;
  background: #cccccc;
  content: "";
}

.about-history__timeline button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  padding: 0 6px;
  color: #111;
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.about-history__timeline strong {
  color: #7e7e7e;
  font-size: 13px;
  font-weight: 900;
}

.about-history__timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #aaaaaa;
  border-radius: 50%;
  background: #f8f8f8;
}

.about-history__timeline em {
  color: #111;
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

.about-history__timeline button.is-active strong {
  color: #111;
}

.about-history__timeline button.is-active span {
  border-color: #111;
  background: #111;
}

.about-capability {
  padding: 42px 0 74px;
  background: var(--paper);
}

.about-capability__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 0.72fr);
  gap: 56px;
  width: min(100% - 120px, 1450px);
}

.about-capability__copy {
  padding-top: 14px;
}

.about-capability__copy h2 {
  margin-top: 18px;
  color: #101010;
  font-size: 31px;
  line-height: 1.15;
  text-transform: none;
}

.about-capability__copy span {
  display: block;
  margin-top: 24px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
}

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

.about-capability__cards article {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  overflow: hidden;
  border-radius: 6px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74)),
    linear-gradient(135deg, #d8d8d8, #b8b8b8);
}

.about-capability__cards article::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 18px);
  content: "";
}

.about-capability__cards span,
.about-capability__cards h3 {
  position: relative;
  z-index: 1;
}

.about-capability__cards span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--paper);
}

.about-capability__cards h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

@media (max-width: 1180px) {
  .about-story__grid,
  .about-history__heading,
  .about-history__stage,
  .about-history__timeline,
  .about-capability__grid {
    width: min(100% - 40px, var(--container));
  }

  .about-story__grid,
  .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-history__timeline {
    overflow-x: auto;
    grid-template-columns: repeat(12, 124px);
    padding-bottom: 14px;
  }
}

@media (max-width: 760px) {
  .about-story {
    padding-top: 40px;
  }

  .about-story h1,
  .about-history__heading h2 {
    font-size: 32px;
  }

  .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-history__arrow {
    display: none;
  }

  .about-history__card,
  .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-history__copy {
    padding: 30px;
  }
}

/* Homepage annotation fixes: section backgrounds and factory image framing. */
.why-choose {
  background: #050505 !important;
}

.why-choose .section-title h2,
.why-choose .advantage-item h3 {
  color: var(--paper) !important;
}

.why-choose .section-title h2::after {
  background: var(--paper) !important;
}

.why-choose .advantage-item .icon {
  color: var(--paper) !important;
}

.factory-capability,
.company-profile,
.team-exhibition {
  background: var(--paper) !important;
}

.factory-card {
  display: grid;
  background: var(--paper);
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 2 / 1;
  border: 1px solid #e8e8e8;
  background-color: var(--paper) !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.factory-card h3 {
  padding: 10px 0 0 !important;
  color: #111;
  background: var(--paper);
  text-align: center;
}

.team-panel .media-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #111 #e6e6e6;
  scrollbar-width: thin;
}

.team-panel .media-scroll::-webkit-scrollbar {
  height: 6px;
}

.team-panel .media-scroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}

.team-panel .media-scroll::-webkit-scrollbar-thumb {
  background: #111;
}

.team-panel .media-scroll .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 2 / 1;
  border: 1px dashed #b8b8b8;
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5 !important;
  background-position: center !important;
  background-size: cover !important;
  scroll-snap-align: start;
}

.team-panel:last-child .media-scroll .image-slot:nth-child(1) {
  background: url("../images/trade-show/team-1.webp") center / cover no-repeat !important;
}

.team-panel:last-child .media-scroll .image-slot:nth-child(2) {
  background: url("../images/trade-show/team-2.webp") center / cover no-repeat !important;
}

.team-panel .media-scroll .image-slot::before,
.team-panel .media-scroll .image-slot::after {
  display: none !important;
}

.team-panel .media-scroll .image-slot span {
  display: inline-flex !important;
  padding: 8px 12px;
  color: #333;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-panel:last-child .media-scroll .image-slot span {
  display: none !important;
}

@media (max-width: 640px) {
  .factory-card .image-slot,
  .factory-card--large .image-slot,
  .team-panel .media-scroll .image-slot {
    aspect-ratio: 2 / 1;
  }
}

/* Homepage annotation fixes: separate image frames from captions. */
.feature-card,
.certificate-card {
  display: grid;
  overflow: visible !important;
  background: transparent !important;
}

.feature-card .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  border: 0 !important;
  border-radius: 0 !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.product-features .feature-card .image-slot,
.factory-capability .factory-card .image-slot,
.certificates-section .certificate-card .image-slot,
.team-exhibition .team-panel .media-scroll .image-slot {
  isolation: isolate;
  overflow: hidden;
}

.product-features .feature-card .image-slot::before,
.factory-capability .factory-card .image-slot::before,
.certificates-section .certificate-card .image-slot::before,
.team-exhibition .team-panel .media-scroll .image-slot::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  border: 0;
  background: inherit;
  content: "";
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms ease, filter 420ms ease;
  will-change: transform;
}

.product-features .feature-card:hover .image-slot::before,
.factory-capability .factory-card:hover .image-slot::before,
.certificates-section .certificate-card:hover .image-slot::before,
.team-exhibition .team-panel .media-scroll .image-slot:hover::before {
  filter: contrast(1.035) brightness(1.025);
  transform: scale(1.045);
}

.feature-card .image-slot::after,
.certificate-card .image-slot::after {
  display: none !important;
}

.feature-card h3 {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.certificate-grid {
  align-items: start;
}

.certificate-card .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
  border: 1px solid #eeeeee !important;
  border-radius: 0 !important;
  background-color: #f8f8f8 !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.certificate-card h3 {
  margin: 9px 0 0 !important;
  padding: 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.category-card--more {
  isolation: isolate;
  display: grid !important;
  overflow: hidden;
  min-height: 248px;
  place-items: center;
  border: 1px solid #dedede !important;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f3f3 52%, #ffffff 100%) !important;
}

.category-card--more::before,
.category-card--more::after {
  position: absolute;
  display: block !important;
  content: "";
}

.category-card--more::before {
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.category-card--more::after {
  right: -44px;
  bottom: -44px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow:
    -22px -22px 0 -21px rgba(0, 0, 0, 0.25),
    -44px -44px 0 -43px rgba(0, 0, 0, 0.2);
}

.category-more__content {
  position: relative;
  display: grid !important;
  justify-items: center;
  gap: 9px;
  color: #111;
  text-align: center;
  text-transform: uppercase;
}

.category-more__content::before,
.category-more__content::after {
  display: block;
  width: 54px;
  height: 2px;
  background: #111;
  content: "";
}

.category-more__content span {
  color: #777;
  font-size: 11px !important;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.28em !important;
}

.category-more__content strong {
  color: #111;
  font-size: 36px !important;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.category-more__content em {
  color: #111;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* Product category interactions: image motion and clearer click target. */
.category-card:not(.category-card--more) {
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.category-card:not(.category-card--more) .image-slot {
  transform: scale(1);
  transition: filter 420ms ease, transform 520ms ease;
  will-change: transform;
}

.category-card:not(.category-card--more)::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-75%);
  transition: opacity 240ms ease, transform 620ms ease;
}

.category-card:not(.category-card--more):hover,
.category-card:not(.category-card--more):focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.category-card:not(.category-card--more):hover .image-slot,
.category-card:not(.category-card--more):focus-visible .image-slot {
  filter: contrast(1.08) brightness(1.08);
  transform: scale(1.075);
}

.category-card:not(.category-card--more):hover::before,
.category-card:not(.category-card--more):focus-visible::before {
  opacity: 1;
  transform: translateX(75%);
}

.category-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  transition: background 220ms ease;
}

.category-card:not(.category-card--more):hover .category-card__body,
.category-card:not(.category-card--more):focus-visible .category-card__body {
  background: rgba(0, 0, 0, 0.72);
}

.category-card__body .arrow-link {
  display: inline-grid;
  width: 34px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0 !important;
  transition: background 180ms ease, transform 180ms ease;
}

.category-card__body .arrow-link::after {
  font-size: 18px !important;
  line-height: 1;
}

.category-card:not(.category-card--more):hover .arrow-link,
.category-card:not(.category-card--more):focus-visible .arrow-link {
  background: var(--paper);
  transform: translateX(4px);
}

.category-card:not(.category-card--more):hover .arrow-link::after,
.category-card:not(.category-card--more):focus-visible .arrow-link::after {
  color: #111;
}

.category-card__body {
  grid-template-columns: 1fr !important;
}

.category-card__body .arrow-link {
  display: none !important;
}

/* About page annotation refinements. */
.about-story {
  padding: 58px 0 42px;
}

.about-story__grid {
  display: block;
  width: min(100% - 96px, 1180px);
}

.about-story__copy {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.about-story h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}

.about-story__text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 980px;
  margin-top: 0;
  color: #202020;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.about-story__text p {
  margin: 0;
}

.about-story__text p:last-child {
  justify-self: center;
  margin-top: 2px;
  text-align: center;
}

.about-story__copy > a,
.about-image-placeholder--hero {
  display: none !important;
}

.about-history {
  padding: 38px 0 64px;
}

.about-history__heading {
  margin-bottom: 28px;
}

.about-history__stage {
  position: relative;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  width: min(100% - 80px, 1500px);
}

.about-history__card {
  grid-template-columns: 1.16fr 1fr 0.82fr;
  min-height: 315px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.about-image-placeholder--history {
  min-height: 315px;
}

.about-history__copy {
  padding: 44px 52px;
}

.about-history__copy p {
  font-size: 22px;
}

.about-history__copy h3 {
  font-size: 30px;
}

.about-history__copy strong {
  font-size: 15px;
}

.about-history__arrow {
  width: 38px;
  height: 74px;
  border: 0;
  border-radius: 0;
  color: #111;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: 34px;
  font-weight: 400;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.about-history__arrow:hover,
.about-history__arrow:focus-visible {
  opacity: 1;
}

.about-history__arrow:first-child:hover,
.about-history__arrow:first-child:focus-visible {
  transform: translateX(-4px);
}

.about-history__arrow:last-child:hover,
.about-history__arrow:last-child:focus-visible {
  transform: translateX(4px);
}

.about-history__preview {
  opacity: 0.42;
  filter: blur(1.4px) grayscale(1);
  transform: scale(0.985);
}

.about-history__preview span {
  opacity: 0.38;
}

.about-capability {
  padding: 72px 0 96px;
}

.about-capability__grid {
  grid-template-columns: minmax(270px, 0.25fr) minmax(0, 0.75fr);
  gap: 72px;
  width: min(100% - 90px, 1540px);
}

.about-capability__copy h2 {
  font-size: 38px;
}

.about-capability__copy span {
  font-size: 16px;
}

.about-capability__cards {
  gap: 18px;
}

.about-capability__cards article {
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  padding: 30px;
}

.about-capability__cards h3 {
  font-size: 20px;
}

@media (max-width: 980px) {
  .about-story__grid,
  .about-history__stage,
  .about-history__timeline,
  .about-capability__grid {
    width: min(100% - 36px, var(--container));
  }

  .about-story__copy,
  .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story__text {
    grid-template-columns: 1fr;
  }

  .about-history__card {
    grid-template-columns: 1fr 1fr;
  }

  .about-history__preview {
    display: none;
  }

  .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-capability__cards article {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 760px) {
  .about-story h1,
  .about-history__heading h2 {
    font-size: 34px;
  }

  .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-history__arrow {
    display: none;
  }

  .about-history__card,
  .about-capability__cards {
    grid-template-columns: 1fr;
  }
}

/* Homepage footer compact pass. */
.site-footer {
  padding: 56px 0 32px !important;
}

.site-footer .container {
  width: min(100% - 72px, 1360px) !important;
}

.footer-grid {
  grid-template-columns: 0.86fr 0.88fr 1fr !important;
  gap: 58px !important;
}

.footer-grid h3 {
  font-size: 24px !important;
}

.footer-grid a,
.footer-grid p {
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.footer-products {
  gap: 9px !important;
}

.footer-products h3 {
  margin-bottom: 10px !important;
}

.footer-products a {
  padding-left: 22px !important;
}

.footer-products a::before {
  font-size: 24px !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 8px !important;
  padding-bottom: 12px !important;
}

.footer-inquiry {
  padding: 24px 28px 22px !important;
  border-radius: 10px !important;
}

.footer-inquiry__title {
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.footer-inquiry__title span {
  font-size: 20px !important;
}

.footer-inquiry__title h3 {
  font-size: 20px !important;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 330px !important;
  margin-bottom: 18px !important;
  font-size: 13px !important;
}

.footer-form {
  gap: 10px !important;
}

.footer-form label {
  gap: 5px !important;
  font-size: 12px !important;
}

.footer-form input,
.footer-form textarea {
  padding: 9px 10px !important;
  font-size: 12px !important;
}

.footer-form textarea {
  min-height: 74px !important;
}

.footer-form a {
  min-height: 42px !important;
  font-size: 16px !important;
}

.footer-success {
  margin-top: 12px !important;
  font-size: 13px !important;
}

.footer-contact {
  gap: 14px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 22px 1fr !important;
  gap: 12px !important;
}

.footer-contact p span {
  font-size: 18px !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 20px !important;
}

.footer-socials {
  gap: 12px !important;
}

.footer-socials a {
  width: 40px !important;
  height: 40px !important;
  font-size: 18px !important;
}

.footer-bottom {
  gap: 10px !important;
  margin-top: 34px !important;
  padding-top: 22px !important;
}

.footer-bottom nav {
  gap: 20px !important;
}

.footer-bottom a,
.footer-bottom span {
  font-size: 14px !important;
}

.footer-bottom p {
  font-size: 13px !important;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Header products dropdown: old-site glass panel style. */
.products-menu {
  top: 42px !important;
  left: -20px !important;
  width: 280px !important;
  padding: 20px 24px 22px 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(0, 0, 0, 0.58) !important;
  box-shadow: none !important;
  transform: translateY(8px) !important;
  backdrop-filter: blur(12px) saturate(0.9);
}

.nav-dropdown.is-open .products-menu,
.nav-dropdown:focus-within .products-menu,
.nav-dropdown:hover .products-menu {
  transform: translateY(0) !important;
}

.products-menu a {
  padding: 7px 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.16 !important;
}

.products-menu a:hover {
  color: var(--paper) !important;
  transform: translateX(8px);
}

@media (max-width: 980px) {
  .products-menu {
    width: 100% !important;
    padding: 16px 20px !important;
  }

  .products-menu a {
    font-size: 18px !important;
    letter-spacing: 0.12em !important;
  }
}

/* Latest annotation pass: calmer category hover, media carousel controls, header and footer alignment. */
.category-card:not(.category-card--more)::before,
.category-card:not(.category-card--more):hover::before,
.category-card:not(.category-card--more):focus-visible::before {
  display: none !important;
  opacity: 0 !important;
}

.category-card:not(.category-card--more):hover .image-slot,
.category-card:not(.category-card--more):focus-visible .image-slot {
  filter: contrast(1.04) brightness(1.03) !important;
  transform: scale(1.045) !important;
}

.media-carousel {
  position: relative;
}

.team-panel .media-scroll {
  padding: 0 !important;
  scrollbar-width: none;
}

.team-panel .media-scroll::-webkit-scrollbar {
  display: none;
}

.team-panel .media-scroll .image-slot {
  border: 0 !important;
  border-radius: 0 !important;
}

.team-panel .media-scroll .image-slot {
  aspect-ratio: auto !important;
  height: 282px !important;
}

.team-panel:first-child .media-scroll .image-slot {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(90deg, #d8e0e5, #edf4f7) !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(1) {
  background: url("../images/team/office-meeting.webp") center / cover no-repeat !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(2) {
  background: url("../images/team/waiting-room.webp") center / cover no-repeat !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(3) {
  background: url("../images/team/selfie.webp") center / cover no-repeat !important;
}

.media-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.media-carousel__button:hover,
.media-carousel__button:focus-visible {
  background: rgba(0, 0, 0, 0.78);
}

.media-carousel__button--prev {
  left: 10px;
}

.media-carousel__button--next {
  right: 10px;
}

.site-header--solid .header-main,
.about-page .header-main {
  grid-template-columns: 190px minmax(0, 1fr) 250px !important;
  width: min(100% - 72px, 1500px) !important;
  gap: 26px !important;
}

.site-header--solid .primary-nav,
.about-page .primary-nav {
  justify-content: center !important;
  gap: 28px !important;
}

.site-header--solid .site-search,
.about-page .site-search {
  justify-self: end;
  width: 250px !important;
  height: 36px !important;
}

.site-header--solid .site-search input,
.about-page .site-search input {
  font-size: 11px !important;
}

.site-footer {
  color: var(--paper) !important;
  background:
    radial-gradient(circle at 82% 48%, transparent 0, transparent 250px, rgba(255, 255, 255, 0.055) 251px, transparent 252px, transparent 322px, rgba(255, 255, 255, 0.035) 323px, transparent 324px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #040404 !important;
}

.site-footer .container {
  width: min(100% - 72px, 1040px) !important;
}

.footer-grid {
  grid-template-columns: 210px 290px 260px !important;
  justify-content: center !important;
  gap: 70px !important;
}

.footer-products a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 42px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 18px 1fr !important;
}

.footer-bottom {
  width: min(100% - 72px, 1040px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 980px) {
  .site-header--solid .header-main,
  .about-page .header-main {
    grid-template-columns: auto auto !important;
    width: min(100% - 28px, var(--container)) !important;
  }

  .site-header--solid .primary-nav,
  .about-page .primary-nav {
    justify-content: flex-start !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Footer annotation pass: match the larger reference layout. */
.site-footer {
  padding: 24px 0 0 !important;
  color: var(--paper) !important;
  background:
    radial-gradient(circle at 83% 51%, transparent 0, transparent 265px, rgba(255, 255, 255, 0.055) 266px, transparent 267px, transparent 354px, rgba(255, 255, 255, 0.034) 355px, transparent 356px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
    #040404 !important;
}

.site-footer .container,
.footer-bottom {
  width: min(100% - 72px, 1400px) !important;
}

.footer-grid {
  grid-template-columns:
    minmax(180px, 220px)
    minmax(70px, 220px)
    minmax(360px, 490px)
    minmax(50px, 100px)
    minmax(280px, 360px) !important;
  justify-content: center !important;
  gap: 0 !important;
}

.footer-products {
  grid-column: 1 !important;
  gap: 14px !important;
}

.footer-inquiry {
  grid-column: 3 !important;
  min-height: 365px !important;
  padding: 6px 28px 18px !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  border-radius: 14px !important;
}

.footer-contact {
  grid-column: 5 !important;
}

.footer-grid h3 {
  font-size: 28px !important;
  line-height: 1.12 !important;
}

.footer-grid a,
.footer-grid p {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.footer-products h3 {
  margin-bottom: 4px !important;
}

.footer-products a {
  padding-left: 28px !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.footer-products a::before {
  font-size: 30px !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 5px !important;
  padding-bottom: 13px !important;
}

.footer-inquiry__title {
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.footer-inquiry__title span {
  font-size: 25px !important;
}

.footer-inquiry__title h3 {
  font-size: 20px !important;
  line-height: 1.2 !important;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 390px !important;
  margin-bottom: 6px !important;
  font-size: 14px !important;
  line-height: 1.24 !important;
}

.footer-form {
  gap: 8px 14px !important;
  margin-top: 0 !important;
}

.footer-form label {
  gap: 5px !important;
  font-size: 14px !important;
}

.footer-form input,
.footer-form textarea {
  min-height: 36px !important;
  padding: 7px 10px !important;
  font-size: 14px !important;
}

.footer-form textarea {
  min-height: 68px !important;
}

.footer-form a {
  min-height: 38px !important;
  font-size: 19px !important;
}

.footer-success {
  display: none !important;
}

.footer-contact {
  gap: 13px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 26px 1fr !important;
  gap: 12px !important;
}

.footer-contact p span {
  font-size: 20px !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 54px !important;
}

.footer-socials {
  gap: 14px !important;
}

.footer-socials a {
  width: 48px !important;
  height: 48px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #000 !important;
  font-size: 22px !important;
}

.footer-bottom {
  gap: 6px !important;
  margin-top: 18px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 16px 0 20px !important;
}

.footer-bottom nav {
  gap: 34px !important;
}

.footer-bottom a,
.footer-bottom span {
  font-size: 17px !important;
  font-style: italic !important;
}

.footer-bottom p {
  font-size: 12px !important;
}

@media (max-width: 980px) {
  .site-footer .container,
  .footer-bottom {
    width: min(100% - 28px, var(--container)) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .footer-products,
  .footer-inquiry,
  .footer-contact {
    grid-column: 1 !important;
  }

  .footer-inquiry {
    max-width: 620px !important;
    min-height: 0 !important;
  }

  .footer-contact h3:nth-of-type(2) {
    margin-top: 38px !important;
  }
}

@media (max-width: 640px) {
  .footer-grid h3 {
    font-size: 30px !important;
  }

  .footer-grid a,
  .footer-grid p,
  .footer-bottom a,
  .footer-bottom span {
    font-size: 16px !important;
  }

  .footer-inquiry {
    padding: 30px 20px 34px !important;
  }

  .footer-form {
    grid-template-columns: 1fr !important;
  }

  .footer-form label:nth-child(3),
  .footer-form a {
    grid-column: span 1 !important;
  }
}

/* Product category images: remove the full-image gray overlay. */
.category-card:not(.category-card--more) .image-slot::after {
  display: none !important;
  opacity: 0 !important;
}

/* Homepage header annotation pass: smaller search, nudge nav right. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .primary-nav {
  transform: translateX(48px) !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search {
  justify-self: end !important;
  width: 165px !important;
  height: 32px !important;
  grid-template-columns: 1fr 28px !important;
  transform: translateX(90px) !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search input {
  padding-left: 12px !important;
  font-size: 9px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search button {
  width: 28px !important;
  height: 28px !important;
  font-size: 20px !important;
}

/* Blog page B2B resource layout. */
.blog-page .blog-hero {
  min-height: 300px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.42)),
    url("../images/bw_clean_car_outline_banner.webp") center / cover no-repeat !important;
}

.blog-page .blog-hero__inner,
.blog-page .blog-shell__inner {
  width: min(100% - 72px, 1400px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.blog-page .blog-hero__inner {
  min-height: 300px;
  padding: 32px 0 24px !important;
}

.blog-page .blog-hero p {
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 13px !important;
  letter-spacing: 0.2em !important;
}

.blog-page .blog-hero h1 {
  max-width: 760px !important;
  font-size: 42px !important;
  line-height: 1 !important;
}

.blog-page .blog-hero span {
  max-width: 760px !important;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.blog-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-hero__metrics strong {
  padding: 11px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero__metrics strong:last-child {
  border-right: 0;
}

.blog-page .blog-shell {
  padding: 50px 0 78px !important;
  background: #f2f2f2 !important;
}

.blog-page .blog-shell__inner {
  grid-template-columns: 340px minmax(0, 1fr) !important;
  gap: 48px !important;
}

.blog-page .blog-sidebar {
  position: sticky;
  top: 24px;
  display: block !important;
  padding: 28px 30px 30px !important;
  border: 1px solid #dedede !important;
  background: var(--paper) !important;
}

.blog-page .blog-sidebar h2 {
  margin-bottom: 18px !important;
  font-size: 18px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.blog-page .blog-sidebar > a {
  display: flex !important;
  align-items: center !important;
  min-height: 42px;
  padding: 13px 0 !important;
  color: #111 !important;
  font-size: 14px !important;
}

.blog-page .blog-inquiry-box {
  margin-top: 28px !important;
  padding: 26px !important;
  border: 1px solid #1c1c1c !important;
}

.blog-page .blog-inquiry-box h3 {
  font-size: 20px !important;
}

.blog-page .blog-inquiry-box p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.blog-page .blog-list {
  gap: 18px !important;
}

.blog-page .blog-card {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  min-height: 210px !important;
  border-color: #dedede !important;
  box-shadow: none !important;
}

.blog-page .blog-card--featured {
  grid-template-columns: 360px minmax(0, 1fr) !important;
  min-height: 260px !important;
}

.blog-page .blog-card__media {
  min-height: 210px !important;
  filter: grayscale(0.08) contrast(1.04);
}

.blog-page .blog-card--featured .blog-card__media {
  min-height: 260px !important;
}

.blog-page .blog-card__body {
  display: grid;
  align-content: center;
  padding: 28px 32px !important;
}

.blog-page .blog-card__body p {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
}

.blog-page .blog-card__body h2 {
  max-width: 760px;
  font-size: 25px !important;
  line-height: 1.18 !important;
}

.blog-page .blog-card--featured .blog-card__body h2 {
  font-size: 34px !important;
}

.blog-page .blog-card__body span {
  max-width: 760px;
  color: #515151 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .blog-page .blog-hero__inner,
  .blog-page .blog-shell__inner {
    width: min(100% - 28px, var(--container)) !important;
  }

  .blog-page .blog-shell__inner,
  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    grid-template-columns: 1fr !important;
  }

  .blog-page .blog-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .blog-page .blog-hero h1 {
    font-size: 38px !important;
  }

  .blog-hero__metrics {
    grid-template-columns: 1fr;
  }

  .blog-hero__metrics strong {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .blog-hero__metrics strong:last-child {
    border-bottom: 0;
  }
}

/* About story background: company building hero treatment. */
.about-page .about-story {
  padding: 42px 0 40px !important;
  color: var(--paper) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.64)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp") center / cover no-repeat !important;
}

.about-page .about-story h1 {
  color: var(--paper) !important;
}

.about-page .about-story__text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.about-page .about-story__text strong {
  color: var(--paper) !important;
}

/* Contact page: contact details, socials, and map-first layout. */
.contact-page .contact-hero {
  min-height: 330px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.64)),
    url("../images/bw_clean_car_outline_banner.webp") center / cover no-repeat !important;
}

.contact-page .contact-hero__inner {
  display: grid;
  align-content: start;
  width: min(100% - 72px, 1400px);
  min-height: 330px;
  padding: 54px 0 42px;
}

.contact-page .contact-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-page .contact-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  color: var(--paper);
  font-size: 42px;
  line-height: 1.12;
  text-transform: none;
}

.contact-page .contact-hero span {
  display: block;
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.contact-directory {
  padding: 54px 0;
  background: #f2f2f2;
}

.contact-directory__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 36px;
  width: min(100% - 72px, 1400px);
}

.contact-directory__info {
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-info-list,
.contact-social-block,
.contact-map-card {
  border: 1px solid #dedede;
  background: var(--paper);
}

.contact-info-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 30px;
}

.contact-info-card > span,
.contact-info-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: #050505;
  font-size: 22px;
}

.contact-info-card p,
.contact-map-card__footer p {
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-card h2 {
  margin-top: 8px;
  color: #050505;
  font-size: 24px;
  line-height: 1.35;
  text-transform: none;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 14px;
  min-height: 158px;
  padding: 24px;
  border-right: 1px solid #dedede;
}

.contact-info-list a:last-child,
.contact-info-list div:last-child {
  border-right: 0;
}

.contact-info-list p {
  color: #303030;
  font-size: 15px;
  line-height: 1.45;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 4px;
  color: #050505;
  font-size: 16px;
}

.contact-social-block {
  padding: 28px 30px;
}

.contact-social-block h2 {
  color: #050505;
  font-size: 24px;
  text-transform: none;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-socials a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--paper);
  background: #050505;
  font-size: 22px;
  font-weight: 900;
}

.contact-map-card {
  display: grid;
  min-height: 500px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.contact-map-card__surface {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    radial-gradient(circle at 74% 46%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #eaf5fd 0%, #d9ebf8 55%, #c8e1f2 100%);
}

.contact-map-card__surface::before,
.contact-map-card__surface::after {
  display: none;
}

.contact-map-card__world {
  position: absolute;
  inset: -2% -2% -1%;
  z-index: 1;
  display: block;
  width: 104%;
  height: 103%;
}

.contact-map-card__world rect {
  fill: transparent;
}

.contact-map-card__land path {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(181, 196, 207, 0.58);
  stroke-width: 2;
  stroke-linejoin: round;
}

.contact-map-card__continent,
.contact-map-card__ocean {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.22;
  text-transform: uppercase;
}

.contact-map-card__continent {
  color: rgba(40, 45, 50, 0.68);
  font-size: 13px;
}

.contact-map-card__ocean {
  color: rgba(73, 111, 162, 0.64);
  font-size: 14px;
}

.contact-map-card__continent--north-america {
  top: 28%;
  left: 5%;
}

.contact-map-card__continent--south-america {
  top: 66%;
  left: 15%;
}

.contact-map-card__continent--europe {
  top: 31%;
  left: 42%;
}

.contact-map-card__continent--africa {
  top: 58%;
  left: 45%;
}

.contact-map-card__continent--asia {
  top: 24%;
  left: 67%;
}

.contact-map-card__continent--australia {
  right: 8%;
  bottom: 12%;
}

.contact-map-card__ocean--arctic {
  top: 5%;
  left: 49%;
}

.contact-map-card__ocean--atlantic {
  top: 47%;
  left: 26%;
}

.contact-map-card__ocean--indian {
  right: 30%;
  bottom: 18%;
}

.contact-map-card__ocean--pacific {
  top: 49%;
  right: 3%;
}

.contact-map-card__pin {
  position: absolute;
  top: 39%;
  left: 71%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50% 50% 50% 0;
  background: #e3342f;
  box-shadow: 0 8px 16px rgba(91, 26, 22, 0.28);
  transform: rotate(-45deg);
}

.contact-map-card__pin::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.contact-map-card__label {
  position: absolute;
  right: 84px;
  bottom: 96px;
  z-index: 3;
  max-width: 290px;
  padding: 16px 18px 18px;
  color: #050505;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 5px;
  box-shadow: 0 14px 34px rgba(36, 71, 99, 0.16);
}

.contact-map-card__label::before {
  position: absolute;
  top: -9px;
  left: 46px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.94);
  content: "";
  transform: rotate(45deg);
}

.contact-map-card__label p {
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-map-card__label strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.36;
  text-transform: none;
}

.contact-map-card__label span {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 15px;
}

.contact-map-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-top: 1px solid #dedede;
}

.contact-map-card__footer strong {
  color: #050505;
  font-size: 17px;
  text-align: right;
}

.contact-workspace--compact {
  padding: 0 0 72px !important;
  background: #f2f2f2 !important;
}

.contact-workspace--compact .contact-form-panel {
  width: min(100% - 72px, 1400px);
  padding: 42px 48px 48px !important;
  border: 1px solid #dedede;
  background: var(--paper);
}

.contact-workspace--compact .contact-form-panel h2 {
  font-size: 34px !important;
}

.contact-workspace--compact .contact-form-panel > p {
  max-width: 780px;
  font-size: 17px !important;
}

.contact-workspace--compact .contact-form {
  gap: 20px 26px !important;
  margin-top: 28px !important;
}

.contact-workspace--compact .contact-form label {
  gap: 8px !important;
  font-size: 15px !important;
}

.contact-workspace--compact .contact-form input,
.contact-workspace--compact .contact-form textarea {
  border-radius: 0 !important;
  padding: 13px 15px !important;
}

@media (max-width: 980px) {
  .contact-page .contact-hero__inner,
  .contact-directory__grid,
  .contact-workspace--compact .contact-form-panel {
    width: min(100% - 56px, var(--container));
  }

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

  .contact-info-list a,
  .contact-info-list div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .contact-info-list div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero h1 {
    font-size: 38px;
  }

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

  .contact-map-card__label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .contact-form,
  .contact-form__wide,
  .oubiao-inquiry-form__status,
  .oubiao-turnstile,
  .contact-submit {
    grid-column: span 1 !important;
  }
}

/* Product page header: align with other inner pages and remove right tools. */
.catalog-page .header-main {
  grid-template-columns: 190px minmax(0, 1fr) 250px !important;
  width: min(100% - 72px, 1500px) !important;
  gap: 26px !important;
}

.catalog-page .primary-nav {
  justify-content: center !important;
  gap: 28px !important;
}

.catalog-page .catalog-tools {
  display: none !important;
}

.catalog-page .site-search {
  justify-self: end !important;
  width: 250px !important;
  height: 36px !important;
}

@media (max-width: 980px) {
  .catalog-page .header-main {
    grid-template-columns: auto auto !important;
    width: min(100% - 28px, var(--container)) !important;
  }

  .catalog-page .site-search {
    display: none !important;
  }
}

/* Homepage hero: lock the banner image scale on desktop. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
  min-height: 750px !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
    url("../images/hero-car-interior.webp") center center / 1600px auto no-repeat,
    #050505 !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
  min-height: 750px !important;
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

@media (max-width: 980px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
    min-height: 430px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.28) 100%),
      url("../images/hero-car-interior.webp") 62% center / cover no-repeat,
      #050505 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    min-height: 430px !important;
    padding-top: 70px !important;
    padding-bottom: 110px !important;
  }
}

/* About history: keep carousel card height stable between years. */
.about-history__card {
  align-items: stretch;
  min-height: 0 !important;
  height: auto !important;
}

.about-image-placeholder--history {
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
  height: auto !important;
}

.about-history__copy {
  min-height: 0 !important;
  height: auto !important;
}

.about-history__copy {
  align-content: center !important;
  overflow: hidden;
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.about-history__copy h3 {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.about-history__copy strong {
  display: block;
  min-height: 78px;
  max-height: 104px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .about-history__card {
    height: auto !important;
  }

  .about-image-placeholder--history {
    height: auto !important;
  }

  .about-history__copy {
    height: auto !important;
  }
}

@media (max-width: 760px) {
  .about-history__card,
  .about-image-placeholder--history,
  .about-history__copy {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* Catalog category selected state: color fill instead of outline. */
.catalog-category-list a {
  position: relative;
  margin: 2px 0;
  padding: 0 12px 0 16px;
  transition: color 160ms ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.catalog-category-list a::before {
  display: none;
}

.catalog-category-list a:hover,
.catalog-category-list a.is-active,
.catalog-category-list a:target,
.catalog-category-list a:focus,
.catalog-category-list a:focus-visible {
  color: #050505 !important;
  background: transparent !important;
  border-bottom: 2px solid #050505;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

.catalog-category-list a:hover::before,
.catalog-category-list a.is-active::before,
.catalog-category-list a:target::before,
.catalog-category-list a:focus::before,
.catalog-category-list a:focus-visible::before {
  display: none;
}

.catalog-category-list a:hover span,
.catalog-category-list a.is-active span,
.catalog-category-list a:target span,
.catalog-category-list a:focus span,
.catalog-category-list a:focus-visible span {
  color: #050505;
}

.catalog-empty {
  margin-top: 28px;
  padding: 34px 28px;
  border: 1px solid #e2e2e2;
  color: #444;
  background: #fafafa;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* Unified inner-page header: match the homepage navigation layout. */
.catalog-page .header-main,
.contact-page .header-main,
.blog-page .header-main,
.about-page .header-main,
.site-header--solid .header-main {
  width: min(100% - 240px, 1420px) !important;
  min-height: 74px !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 32px !important;
}

.catalog-page .header-main .brand__logo,
.contact-page .header-main .brand__logo,
.blog-page .header-main .brand__logo,
.about-page .header-main .brand__logo,
.site-header--solid .header-main .brand__logo {
  width: 150px !important;
}

.catalog-page .primary-nav,
.contact-page .primary-nav,
.blog-page .primary-nav,
.about-page .primary-nav,
.site-header--solid .primary-nav {
  justify-content: center !important;
  gap: 22px !important;
  transform: translateX(48px) !important;
}

.catalog-page .site-search,
.contact-page .site-search,
.blog-page .site-search,
.about-page .site-search,
.site-header--solid .site-search {
  justify-self: end !important;
  width: 165px !important;
  height: 32px !important;
  grid-template-columns: 1fr 28px !important;
  transform: translateX(90px) !important;
}

.catalog-page .site-search input,
.contact-page .site-search input,
.blog-page .site-search input,
.about-page .site-search input,
.site-header--solid .site-search input {
  padding-left: 12px !important;
  font-size: 9px !important;
}

.catalog-page .site-search button,
.contact-page .site-search button,
.blog-page .site-search button,
.about-page .site-search button,
.site-header--solid .site-search button {
  width: 28px !important;
  height: 28px !important;
  font-size: 20px !important;
}

@media (max-width: 980px) {
  .catalog-page .header-main,
  .contact-page .header-main,
  .blog-page .header-main,
  .about-page .header-main,
  .site-header--solid .header-main {
    width: min(100% - 28px, var(--container)) !important;
    grid-template-columns: auto auto !important;
  }

  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav,
  .about-page .primary-nav,
  .site-header--solid .primary-nav {
    transform: none !important;
  }

  .catalog-page .site-search,
  .contact-page .site-search,
  .blog-page .site-search,
  .about-page .site-search,
  .site-header--solid .site-search {
    display: none !important;
    transform: none !important;
  }
}

/* Homepage factory stats: wider spacing and slightly larger labels. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
  width: min(100% - 120px, 940px) !important;
  column-gap: 34px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item {
  min-height: 86px !important;
  padding: 0 12px 14px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 auto 7px !important;
  object-fit: contain !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
  margin-top: 2px !important;
  font-size: 8px !important;
}

@media (max-width: 760px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 28px, 620px) !important;
    column-gap: 10px !important;
  }
}

/* Header search: remove the browser focus box. */
.site-search,
.site-search:focus-within,
.site-search input,
.site-search input:focus,
.site-search input:focus-visible,
.site-search button,
.site-search button:focus,
.site-search button:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

.site-search:focus-within {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

/* Header nav hover: keep every page consistent with the homepage. */
.primary-nav > a,
.nav-dropdown__toggle {
  position: relative;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
  outline: 0 !important;
}

.primary-nav > a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible {
  color: var(--paper) !important;
  opacity: 1;
  transform: translateY(-1px);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Footer inquiry title: align the envelope, text, and divider lines. */
.footer-inquiry__title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 12px !important;
  column-gap: 12px !important;
}

.footer-inquiry__title::before,
.footer-inquiry__title::after {
  flex: 1 1 0 !important;
  align-self: center !important;
  min-width: 46px !important;
}

.footer-inquiry__title span {
  display: grid !important;
  width: 30px !important;
  height: 30px !important;
  place-items: center !important;
  line-height: 1 !important;
  transform: translateY(0);
}

.footer-inquiry__title span svg {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.footer-inquiry__title h3 {
  display: flex !important;
  min-height: 30px !important;
  align-items: center !important;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.05 !important;
  transform: none;
}

/* Product categories: make the More card match the product-image cards. */
.category-card--more {
  position: relative !important;
  display: grid !important;
  overflow: hidden !important;
  min-height: 248px !important;
  place-items: stretch !important;
  border: 0 !important;
  background: #101010 !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.category-card--more::before,
.category-card--more::after {
  display: none !important;
}

.category-card--more .image-slot {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  border: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
    url("../images/collage-vertical.webp") center / cover no-repeat !important;
  transform: scale(1);
  transition: filter 420ms ease, transform 520ms ease;
  will-change: transform;
}

.category-card--more .image-slot::after {
  position: absolute;
  inset: 0;
  display: block !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.5));
  content: "";
}

.category-card--more .category-card__body {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  display: grid !important;
  min-height: 42px !important;
  padding: 10px 12px !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.5) !important;
  transition: background 220ms ease;
}

.category-card--more .category-card__body h3 {
  color: var(--paper) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

.category-card--more:hover,
.category-card--more:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(-4px);
}

.category-card--more:hover .image-slot,
.category-card--more:focus-visible .image-slot {
  filter: contrast(1.08) brightness(1.08);
  transform: scale(1.075);
}

.category-card--more:hover .category-card__body,
.category-card--more:focus-visible .category-card__body {
  background: rgba(0, 0, 0, 0.72) !important;
}

/* Homepage hero buttons: align text and use the same hover treatment. */
.hero-actions .button {
  display: inline-flex !important;
  width: 118px !important;
  height: 31px !important;
  min-height: 31px !important;
  padding: 0 18px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  background: transparent !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-align: center !important;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  color: var(--black) !important;
  background: var(--paper) !important;
  border-color: var(--paper) !important;
}

/* Footer product links: add a light hover motion. */
.footer-products a {
  transition: color 170ms ease, transform 170ms ease, opacity 170ms ease;
}

.footer-products a::before {
  transition: transform 170ms ease, color 170ms ease;
}

.footer-products a:hover,
.footer-products a:focus-visible {
  color: var(--paper) !important;
  opacity: 1;
  transform: translateX(6px);
}

.footer-products a:hover::before,
.footer-products a:focus-visible::before {
  color: var(--paper) !important;
  transform: translateX(4px);
}

/* Social links: use larger real SVG icons instead of text glyphs. */
.footer-socials a,
.contact-socials a {
  color: var(--paper) !important;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.footer-socials a {
  width: 52px !important;
  height: 52px !important;
}

.footer-socials svg,
.contact-socials svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:hover,
.footer-socials a:focus-visible,
.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: #050505 !important;
  background: var(--paper) !important;
  transform: translateY(-3px);
}

/* Footer quick contact: use image icons from the contact icon set. */
.footer-contact p img {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  object-fit: contain;
}

/* Footer type rhythm: lighter text and tighter product list spacing. */
.site-footer {
  font-weight: 400 !important;
}

.footer-grid h3 {
  font-weight: 800 !important;
}

.footer-grid a,
.footer-grid p,
.footer-form label,
.footer-form input,
.footer-form textarea {
  font-weight: 400 !important;
}

.footer-products {
  gap: 9px !important;
}

.footer-products h3 {
  margin-bottom: 2px !important;
}

.footer-products a {
  padding-left: 24px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
}

.footer-products a::before {
  font-size: 26px !important;
  line-height: 0.88 !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 3px !important;
  padding-bottom: 9px !important;
}

/* Blog article cards: subtle image zoom on hover. */
.blog-page .blog-card {
  cursor: pointer;
}

.blog-page .blog-card__media {
  transform: scale(1);
  transform-origin: center;
  transition: filter 360ms ease, transform 520ms ease;
  will-change: transform;
}

.blog-page .blog-card:hover .blog-card__media,
.blog-page .blog-card:focus-within .blog-card__media {
  filter: grayscale(0) contrast(1.08) brightness(1.04);
  transform: scale(1.055);
}

/* Blog cards: keep the featured image ratio consistent and animate CTAs. */
.blog-page .blog-card--featured {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  min-height: 210px !important;
}

.blog-page .blog-card--featured .blog-card__media {
  min-height: 210px !important;
}

.blog-page .blog-card--featured .blog-card__body h2 {
  font-size: 25px !important;
  line-height: 1.18 !important;
}

.blog-page .blog-card__body a {
  width: max-content;
  transition: color 170ms ease, transform 170ms ease;
}

.blog-page .blog-card__body a b {
  display: inline-block;
  transition: transform 170ms ease;
}

.blog-page .blog-card__body a:hover,
.blog-page .blog-card__body a:focus-visible {
  color: #333 !important;
  transform: translateX(5px);
}

.blog-page .blog-card__body a:hover b,
.blog-page .blog-card__body a:focus-visible b {
  transform: translateX(4px);
}

/* Product cards: show product names directly, without detail buttons. */
.catalog-card {
  min-height: 276px !important;
  padding: 20px 14px 18px !important;
}

.catalog-card h3 {
  min-height: 40px !important;
  margin-top: 10px !important;
  padding: 0 2px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-wrap: balance;
}

.catalog-card p:empty {
  display: none !important;
}

.catalog-card p {
  font-size: 12px !important;
  line-height: 1.18 !important;
}

.catalog-card__button {
  display: none !important;
}

/* Product detail page: B2B inquiry-oriented layout. */
.product-detail-page {
  --detail-blue: #0b5ed7;
  --detail-blue-dark: #0748b5;
  --detail-icon: #050505;
  color: #0d0f14;
  background: #f5f7fb;
}

.product-detail-page main {
  padding-bottom: 48px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 22px 0 16px;
  color: #6a7180;
  font-size: 13px;
}

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

.product-breadcrumb strong {
  color: #111;
  font-weight: 700;
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.product-gallery__main,
.product-summary,
.product-info-panel,
.product-services,
.product-factory article,
.product-bottom-cta {
  border: 1px solid #e2e7f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 70, 0.06);
}

.product-gallery__main {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-gallery__zoom {
  --zoom-x: 50%;
  --zoom-y: 50%;
  display: grid;
  width: min(100%, 760px);
  max-height: 580px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery__image {
  width: min(100%, 760px);
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 180ms ease;
}

.product-gallery__zoom:hover .product-gallery__image {
  transform: scale(1.85);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
  gap: 12px;
  justify-content: start;
  margin-top: 14px;
}

.product-gallery__thumbs button {
  min-height: 70px;
  padding: 8px;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  color: #4b5566;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-gallery__thumbs img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--detail-blue);
  box-shadow: inset 0 0 0 1px var(--detail-blue);
}

.product-summary {
  padding: 34px 34px 32px;
}

.product-summary h1 {
  max-width: 560px;
  color: #050505;
  font-size: 38px;
  line-height: 1.08;
  text-transform: none;
}

.product-summary__meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #d7dde8;
}

.product-summary__meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}

.product-summary__meta dt {
  font-weight: 900;
}

.product-summary__meta dd {
  margin: 0;
  color: #1f2937;
}

.product-summary__contact {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 10px;
  background: #f7f9fd;
}

.product-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--detail-blue);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-action svg,
.product-contact-row svg,
.product-feature-grid svg {
  width: 22px;
  height: 22px;
  color: var(--detail-icon);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-action--primary {
  color: #fff;
  background: var(--detail-blue);
}

.product-action--outline {
  color: #08142c;
  background: #fff;
}

.product-action:hover,
.product-action:focus-visible {
  transform: translateY(-2px);
}

.product-action--primary:hover,
.product-action--primary:focus-visible {
  background: var(--detail-blue-dark);
}

.product-action--outline:hover,
.product-action--outline:focus-visible {
  color: #fff;
  background: var(--detail-blue);
}

.product-contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #dfe5ef;
}

.product-contact-row > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--detail-icon);
  background: #eef1f6;
}

.product-contact-row p {
  margin: 0;
  line-height: 1.35;
}

.product-contact-row strong {
  display: block;
  color: #4b5566;
  font-size: 13px;
}

.product-contact-row a {
  color: #050505;
  font-weight: 900;
}

.product-info-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 42px;
  margin-top: 40px;
  padding: 30px 34px;
}

.product-info-panel h2,
.product-section-copy h2,
.product-services h2 {
  color: #050505;
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-info-panel h2::after,
.product-section-copy h2::after,
.product-services h2::after,
.product-factory h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  background: var(--detail-blue);
  content: "";
}

.product-details-copy {
  padding-right: 34px;
  border-right: 1px solid #dce2ed;
}

.product-details-copy p {
  margin: 18px 0 0;
  color: #253044;
  line-height: 1.75;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.product-feature-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.product-feature-grid span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: #f0f3f8;
}

.product-feature-grid h3 {
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
}

.product-protection {
  padding: 38px 0;
}

.product-protection__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
}

.product-section-copy h2 {
  font-size: 40px;
  text-transform: none;
}

.product-section-copy p {
  margin-top: 24px;
  color: #253044;
  font-size: 17px;
  line-height: 1.75;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
}

.product-showcase-grid article,
.product-services__media,
.product-factory article div {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.68), rgba(11, 94, 215, 0.42)),
    repeating-linear-gradient(45deg, #1a1f27 0 12px, #252d38 12px 24px);
}

.product-showcase-grid article {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.product-showcase-grid img,
.product-services__media img,
.product-factory article div img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 8, 17, 0.02) 38%, rgba(2, 8, 17, 0.76) 100%);
  content: "";
  pointer-events: none;
}

.product-showcase-grid span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: 260px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.54);
}

.product-services {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 10px;
}

.product-services__media {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-services__content {
  padding: 24px 24px 20px 0;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 0;
  margin-top: 20px;
}

.product-service-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: min-content 1fr;
  column-gap: 20px;
  row-gap: 10px;
  align-items: start;
  min-height: 136px;
  padding: 18px 0;
  border-bottom: 1px solid #dde4ef;
}

.product-service-grid article > span {
  display: grid;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(11, 94, 215, 0.28);
  border-radius: 12px;
  color: var(--detail-icon);
  font-size: 25px;
}

.product-service-grid h3 {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.25;
  text-transform: none;
}

.product-service-grid em {
  color: #555f70;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.product-service-grid p {
  grid-column: 2;
  margin: 0;
  color: #4c5565;
  font-size: 13px;
  line-height: 1.45;
}

.product-factory {
  padding: 34px 0 22px;
}

.product-factory__grid {
  display: grid;
  grid-template-columns: 0.72fr repeat(4, 1fr);
  gap: 16px;
}

.product-factory article {
  overflow: hidden;
}

.product-factory article div {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 10px 10px 0 0;
}

.product-factory article h3 {
  padding: 16px 16px 18px;
  font-size: 15px;
  line-height: 1.18;
  text-transform: none;
}

.product-bottom-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 24px 34px;
  background: linear-gradient(90deg, #fff, #eef4ff);
}

.product-bottom-cta > div {
  display: flex;
  gap: 18px;
  align-items: center;
}

.product-bottom-cta > div > span {
  color: var(--detail-icon);
  font-size: 42px;
}

.product-bottom-cta h2 {
  color: #050505;
  font-size: 24px;
  text-transform: none;
}

.product-bottom-cta p {
  margin: 4px 0 0;
}

.product-bottom-cta .product-action {
  min-width: 280px;
}

@media (max-width: 1180px) {
  .product-detail-hero__grid,
  .product-info-panel,
  .product-protection__grid,
  .product-services {
    grid-template-columns: 1fr;
  }

  .product-details-copy {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #dce2ed;
    padding-bottom: 26px;
  }

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

  .product-factory__grid > .product-section-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .product-gallery__main {
    min-height: 360px;
  }

  .product-gallery__image {
    padding: 10px;
  }

  .product-summary h1,
  .product-section-copy h2 {
    font-size: 30px;
  }

  .product-gallery__thumbs,
  .product-feature-grid,
  .product-showcase-grid,
  .product-service-grid,
  .product-factory__grid {
    grid-template-columns: 1fr;
  }

  .product-summary,
  .product-info-panel,
  .product-bottom-cta {
    padding: 24px 20px;
  }

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

  .product-services__content {
    padding: 20px;
  }

  .product-bottom-cta,
  .product-bottom-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-bottom-cta .product-action {
    width: 100%;
    min-width: 0;
  }
}

/* About story: editorial split layout with factory image and value strip. */
.about-page .about-story {
  overflow: hidden;
  padding: 0 !important;
  color: #111 !important;
  background: #f2f2f2 !important;
}

.about-story__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.52fr) minmax(0, 0.48fr);
  min-height: 458px;
  isolation: isolate;
}

.about-story__copy {
  position: relative;
  z-index: 2;
  display: block !important;
  justify-items: start !important;
  gap: 0 !important;
  padding: 22px clamp(54px, 4.6vw, 78px) 16px 5.1vw !important;
  background: transparent !important;
  text-align: left !important;
}

.about-story__copy::before {
  position: absolute;
  inset: 0 -140px 0 0;
  z-index: -1;
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.98) 0 78%, rgba(247, 249, 252, 0.92) 78.2%, rgba(247, 249, 252, 0) 78.5%),
    #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 160px) 100%, 0 100%);
  box-shadow: 28px 0 54px rgba(12, 23, 38, 0.12);
  content: "";
}

.about-story__ghost {
  position: absolute;
  top: -18px;
  left: 5.1vw;
  z-index: -1;
  color: rgba(0, 0, 0, 0.032);
  font-size: clamp(70px, 8.8vw, 130px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.about-page .about-story h1 {
  color: #17191d !important;
  margin: 0 !important;
  font-size: clamp(34px, 3.5vw, 52px) !important;
  line-height: 0.95 !important;
  text-align: left !important;
  text-transform: none !important;
}

.about-story__rule {
  display: block;
  width: 190px;
  height: 2px;
  margin: 9px 0 0 !important;
  background: linear-gradient(90deg, #111 0 58px, #cfcfcf 58px 100%);
}

.about-story__kicker {
  margin: 8px 0 10px !important;
  color: #8c8f95 !important;
  font-size: 13px !important;
  letter-spacing: 0.2em;
  text-align: left !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.about-page .about-story__text {
  display: block !important;
  gap: 0 !important;
  max-width: 640px !important;
  margin-top: 0 !important;
  color: #111 !important;
  font-size: 12.2px !important;
  line-height: 1.36 !important;
  text-align: left !important;
}

.about-page .about-story__text p {
  margin: 0 0 8px !important;
}

.about-page .about-story__text p:last-child {
  justify-self: auto !important;
  margin-top: 0 !important;
  text-align: left !important;
}

.about-page .about-story__text strong {
  color: #111 !important;
  font-weight: 900;
}

.about-story__visual {
  position: relative;
  z-index: 1;
  min-height: 458px;
  margin-left: -96px;
  background: #d8dde2;
}

.about-story__building {
  position: absolute;
  inset: 0;
  background: url("../images/building_no_text_4x3_500kb.webp") 50% center / cover no-repeat;
  filter: none;
}

.about-story__stats {
  position: absolute;
  right: 3.4vw;
  bottom: 16px;
  left: clamp(124px, 11vw, 190px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(45, 45, 45, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.about-story__stats article {
  display: grid;
  min-height: 92px;
  place-items: center;
  align-content: center;
  padding: 10px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

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

.about-story__stats span {
  margin-bottom: 6px;
  font-size: 23px;
  line-height: 1;
}

.about-story__stats strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.about-story__stats em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.35;
}

.about-story__values {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 14px 5.1vw;
  color: #fff;
  background:
    radial-gradient(circle at 92% 58%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(110deg, #111, #232323);
}

.about-story__quote {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 8px 30px 8px 0;
}

.about-story__quote::before {
  position: absolute;
  inset: 10px 30px 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  content: "";
}

.about-story__quote > span {
  color: #fff;
  font-size: 52px;
  line-height: 1;
}

.about-story__quote strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.about-story__quote p,
.about-story__values article p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.48;
}

.about-story__values article {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 72px;
  padding: 8px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.about-story__values article span {
  font-size: 24px;
  line-height: 1;
}

.about-story__values article strong {
  color: #fff;
  font-size: 16px;
}

.about-story__values article p {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .about-story__hero {
    grid-template-columns: 1fr;
  }

  .about-story__copy {
    clip-path: none;
    padding: 34px 8vw 28px !important;
  }

  .about-story__copy::before {
    inset: 0;
    clip-path: none;
  }

  .about-story__visual {
    margin-left: 0;
    min-height: 440px;
  }

  .about-story__stats {
    right: 8vw;
    left: 8vw;
  }

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

  .about-story__quote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .about-page .about-story h1 {
    font-size: 48px !important;
  }

  .about-story__rule {
    width: 220px;
  }

  .about-story__visual {
    min-height: 520px;
  }

  .about-story__stats {
    grid-template-columns: 1fr;
    bottom: 26px;
  }

  .about-story__stats article {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

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

  .about-story__values {
    grid-template-columns: 1fr;
    padding: 30px 8vw;
  }

  .about-story__values article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-inline: 0;
  }
}

/* Comment pass: 2009 history image, looser history copy, and product detail black accents. */
.about-history__media {
  isolation: isolate;
}

.about-history__media img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-history__media.is-loaded {
  background: #e8edf2;
}

.about-history__media.is-loaded::before,
.about-history__media.is-loaded span {
  display: none;
}

.about-history__media.is-loaded img {
  display: block;
}

.about-history__copy {
  align-content: start !important;
  overflow: visible !important;
  padding: 30px 40px 20px !important;
}

.about-history__copy h3 {
  display: block !important;
  min-height: 0 !important;
  margin-top: 8px !important;
  font-size: 28px !important;
  line-height: 1.12 !important;
}

.about-history__copy strong {
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  font-size: 14px !important;
  line-height: 1.46 !important;
}

.about-history__copy span {
  margin: 12px 0 !important;
}

/* History carousel drag and next image preview. */
.about-history__card {
  --history-drag-x: 0px;
  cursor: grab;
  touch-action: pan-y;
  transform: translateX(var(--history-drag-x));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
  user-select: none;
  will-change: transform;
}

.about-history__card.is-dragging {
  cursor: grabbing;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.12);
  transition: none;
}

.about-history__card img {
  -webkit-user-drag: none;
  user-select: none;
}

.about-history__card.is-sliding-forward {
  animation: history-slide-forward 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-history__card.is-sliding-back {
  animation: history-slide-back 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes history-slide-forward {
  from {
    opacity: 0.72;
    transform: translateX(56px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes history-slide-back {
  from {
    opacity: 0.72;
    transform: translateX(-56px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-history__preview {
  isolation: isolate;
  opacity: 1;
  background: #eef4fb;
  filter: none;
  transform: none;
}

.about-history__preview::before {
  display: none;
  content: none;
}

.about-history__preview::after {
  display: none;
  content: none;
}

.about-history__preview img {
  position: absolute;
  inset: -20px;
  z-index: 0;
  display: block;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: blur(2px) saturate(1.08) contrast(1.02);
  transform: scale(1.025);
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-history__preview span {
  display: none;
}

.product-detail-page .product-action--primary {
  border-color: #050505;
  color: #fff;
  background: #050505;
}

.product-detail-page .product-action--primary svg {
  color: #fff;
}

.product-detail-page .product-action--primary:hover,
.product-detail-page .product-action--primary:focus-visible {
  background: #202020;
}

.product-detail-page .product-action--outline {
  border-color: #050505;
  color: #050505;
}

.product-detail-page .product-action--outline svg {
  color: #050505;
}

.product-detail-page .product-action--outline:hover,
.product-detail-page .product-action--outline:focus-visible {
  color: #fff;
  background: #050505;
}

.product-detail-page .product-action--outline:hover svg,
.product-detail-page .product-action--outline:focus-visible svg {
  color: #fff;
}

.product-detail-page .product-info-panel h2::after,
.product-detail-page .product-section-copy h2::after,
.product-detail-page .product-services h2::after,
.product-detail-page .product-factory h3::after {
  background: #050505;
}

/* About page balance pass: tighter history carousel and coordinated capability section. */
.about-page .about-history {
  padding: 50px 0 48px;
  background: #f7f8fb;
}

.about-page .about-history__heading,
.about-page .about-history__stage,
.about-page .about-history__timeline,
.about-page .about-capability__grid {
  width: min(100% - 96px, 1180px);
}

.about-page .about-history__heading {
  margin-bottom: 22px;
}

.about-page .about-history__heading h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.14;
}

.about-page .about-history__heading span {
  margin-top: 8px;
  font-size: 15px;
}

.about-page .about-history__stage {
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 12px;
}

.about-page .about-history__card {
  grid-template-columns: minmax(300px, 0.95fr) minmax(310px, 0.85fr) minmax(220px, 0.58fr);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.about-page .about-history__copy {
  align-content: center !important;
  padding: 30px 34px !important;
  background: #fff;
}

.about-page .about-history__copy p {
  font-size: 20px;
}

.about-page .about-history__copy h3 {
  margin-top: 8px !important;
  font-size: 25px !important;
  line-height: 1.16 !important;
}

.about-page .about-history__copy strong {
  font-size: 15.5px !important;
  line-height: 1.55 !important;
}

.about-page .about-history__copy span {
  margin: 12px 0 !important;
}

.about-page .about-history__arrow {
  width: 32px;
  height: 60px;
  font-size: 28px;
}

.about-page .about-history__timeline {
  margin-top: 24px;
}

.about-page .about-history__timeline button {
  gap: 7px;
}

.about-page .about-history__timeline strong {
  font-size: 13px;
}

.about-page .about-history__timeline em {
  font-size: 12px;
}

.about-page .about-capability {
  padding: 54px 0 76px;
}

.about-page .about-capability__grid {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 48px;
}

.about-page .about-capability__copy {
  padding-top: 58px;
}

.about-page .about-capability__copy h2 {
  font-size: 34px;
  line-height: 1.14;
}

.about-page .about-capability__copy > span {
  font-size: 15.5px;
  line-height: 1.72;
}

.about-page .about-capability__copy a span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin: 0;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.about-page .about-capability__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-page .about-capability__cards article {
  aspect-ratio: 3 / 4;
  padding: 24px;
  transition: filter 620ms ease, transform 620ms ease, box-shadow 620ms ease;
}

.about-page .about-capability__cards article::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
}

.about-page .about-capability__cards article:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/pattern-measurement.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/product-development.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/rd-innovation.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/precise-dimensions.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/high-standard-scanning.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(6) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/development/cutting-test.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:hover,
.about-page .about-capability__cards article:focus-within {
  box-shadow: 0 10px 24px rgba(15, 35, 70, 0.1);
  filter: brightness(1.035) saturate(1.02);
  transform: scale(1.012);
}

.about-page .about-capability__cards h3 {
  font-size: 18px;
}

.about-page .about-extra-showcase {
  padding: 0 0 82px;
  background: #fff;
}

.about-page .about-extra-showcase__inner {
  display: grid;
  gap: 30px;
  width: min(100% - 96px, 1180px);
}

.about-page .about-extra-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
  padding: 0;
}

.about-page .about-extra-copy {
  display: grid;
  gap: 14px;
}

.about-page .about-extra-copy h2 {
  margin: 0;
  color: #101010;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: none;
}

.about-page .about-extra-copy p {
  margin: 0;
  color: #243047;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
}

.about-page .about-extra-action {
  display: inline-flex;
  width: fit-content;
  min-width: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 14px 20px;
  border: 1px solid #101010;
  border-radius: 4px;
  color: #fff;
  background: #101010;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 0 0 rgba(15, 35, 70, 0);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-page .about-extra-action:hover,
.about-page .about-extra-action:focus-visible {
  color: #101010;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 35, 70, 0.14);
  transform: translateY(-1px);
}

.about-page .about-extra-block--landscape .about-extra-copy {
  order: 2;
  padding-top: 58px;
}

.about-page .about-extra-block--landscape .about-extra-copy h2 {
  font-size: 30px;
}

.about-page .about-extra-block--landscape .about-extra-copy p {
  font-size: 15.5px;
}

.about-page .about-extra-block--landscape .about-extra-media-grid {
  order: 1;
}

.about-page .about-extra-block--landscape {
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 28px;
}

.about-page .about-extra-media-grid {
  display: grid;
  gap: 16px;
}

.about-page .about-extra-media-grid--landscape {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(1) {
  background: url("../images/orderly/1.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(2) {
  background: url("../images/orderly/2.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(3) {
  background: url("../images/orderly/3.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(4) {
  background: url("../images/orderly/4.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--portrait {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 780px;
  justify-self: end;
}

.about-page .about-extra-media-grid--portrait .about-extra-media:nth-child(1) {
  background: url("../images/automation/factory-overview.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--portrait .about-extra-media:nth-child(2) {
  background: url("../images/automation/factory-pipe.webp") center / cover no-repeat;
}

.about-page .about-extra-block--portrait {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
}

.about-page .about-extra-block--portrait .about-extra-copy {
  padding-top: 28px;
}

.about-page .about-extra-media {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(12, 30, 56, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(0, 0, 0, 0.3)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #d3dae2, #647184);
  background-position: center;
  background-size: cover;
  transition: filter 620ms ease, transform 620ms ease, box-shadow 620ms ease;
}

.about-page .about-extra-media:hover,
.about-page .about-extra-media:focus-within {
  box-shadow: 0 10px 24px rgba(15, 35, 70, 0.1);
  filter: brightness(1.035) saturate(1.02);
  transform: scale(1.012);
}

.about-page .about-extra-media span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(15, 28, 45, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page .about-extra-media-grid--landscape .about-extra-media {
  aspect-ratio: 4 / 3;
}

.about-page .about-extra-media-grid--portrait .about-extra-media {
  aspect-ratio: 3 / 4;
}

@media (max-width: 980px) {
  .about-page .about-history__heading,
  .about-page .about-history__stage,
  .about-page .about-history__timeline,
  .about-page .about-capability__grid,
  .about-page .about-extra-showcase__inner {
    width: min(100% - 36px, var(--container));
  }

  .about-page .about-history__card {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-history__copy {
    padding: 26px 28px !important;
  }

  .about-page .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-page .about-capability__copy {
    padding-top: 0;
  }

  .about-page .about-capability__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .about-page .about-capability__cards article {
    aspect-ratio: 3 / 4;
  }

  .about-page .about-extra-block {
    grid-template-columns: 1fr;
  }

  .about-page .about-extra-block--landscape .about-extra-copy,
  .about-page .about-extra-block--landscape .about-extra-media-grid {
    order: initial;
  }

  .about-page .about-extra-block--landscape .about-extra-copy {
    padding-top: 0;
  }

  .about-page .about-extra-block--portrait .about-extra-copy {
    padding-top: 0;
  }

  .about-page .about-extra-media-grid--portrait {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .about-page .about-history {
    padding: 38px 0 42px;
  }

  .about-page .about-history__heading h2,
  .about-page .about-capability__copy h2 {
    font-size: 30px;
  }

  .about-page .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-page .about-history__card,
  .about-page .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-page .about-extra-block {
    padding: 0;
  }

  .about-page .about-extra-copy h2 {
    font-size: 26px;
  }

  .about-page .about-extra-copy p {
    font-size: 15px;
  }

  .about-page .about-extra-media-grid--landscape,
  .about-page .about-extra-media-grid--portrait {
    grid-template-columns: 1fr;
  }
}

/* WordPress/WooCommerce migration glue: preserve the approved static visual system. */
.admin-bar .site-header {
  top: 32px;
}

.footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 2px;
  color: var(--paper);
  background: #050505;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.oubiao-inquiry-form__trap {
  display: none !important;
}

.oubiao-inquiry-form__status {
  min-height: 1.4em;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.oubiao-inquiry-form__status.is-error {
  color: #9b1c1c;
}

.oubiao-inquiry-form__status.is-success {
  color: #126b3a;
}

.catalog-pagination .page-numbers {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #111;
  background: var(--paper);
  font-weight: 800;
}

.catalog-pagination .page-numbers.is-active,
.catalog-pagination .page-numbers.current {
  color: var(--paper);
  background: #050505;
  border-color: #050505;
}

.catalog-pagination .next,
.catalog-pagination .prev {
  border-color: transparent;
}

.catalog-sort {
  margin: 0;
}

.catalog-card__image .woocommerce-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* WordPress migration overrides: keep the live homepage matching the static preview. */
body.home-page .site-header {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 50 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.home-page .header-main {
  width: min(100% - 240px, 1420px) !important;
  min-height: 74px !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 32px !important;
}

body.home-page .brand__logo {
  width: 150px !important;
  filter: invert(1) !important;
}

body.home-page .primary-nav {
  justify-content: center !important;
  gap: 22px !important;
  transform: translateX(48px) !important;
}

body.home-page .primary-nav > a,
body.home-page .nav-dropdown__toggle {
  color: #fff !important;
}

body.home-page .primary-nav > a:hover,
body.home-page .primary-nav > a:focus-visible,
body.home-page .nav-dropdown__toggle:hover,
body.home-page .nav-dropdown__toggle:focus-visible {
  color: var(--accent) !important;
}

body.home-page .site-search {
  justify-self: end !important;
  width: 165px !important;
  height: 32px !important;
  grid-template-columns: 1fr 28px !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(0, 0, 0, 0.08) !important;
  transform: translateX(90px) !important;
}

body.home-page .site-search input {
  padding-left: 12px !important;
  color: #fff !important;
  font-size: 9px !important;
}

body.home-page .site-search input::placeholder {
  color: rgba(255, 255, 255, 0.82) !important;
}

body.home-page .site-search button {
  width: 28px !important;
  height: 28px !important;
  color: #fff !important;
  font-size: 20px !important;
}

body.home-page .hero {
  min-height: 750px !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
    url("../images/hero-car-interior.webp") center center / 1600px auto no-repeat,
    #050505 !important;
}

body.home-page .hero__grid {
  min-height: 750px !important;
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

@media (max-width: 980px) {
  body.home-page .header-main {
    width: min(100% - 28px, var(--container)) !important;
    grid-template-columns: auto auto !important;
  }

  body.home-page .primary-nav {
    transform: none !important;
  }

  body.home-page .site-search {
    display: none !important;
    transform: none !important;
  }

  body.home-page .hero {
    min-height: 430px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.28) 100%),
      url("../images/hero-car-interior.webp") 62% center / cover no-repeat,
      #050505 !important;
  }

  body.home-page .hero__grid {
    min-height: 430px !important;
    padding-top: 70px !important;
    padding-bottom: 110px !important;
  }
}

/* Live WordPress fixes: compact header and guaranteed static logo visibility. */
body .site-header .header-main,
body.home-page .header-main,
.catalog-page .header-main,
.contact-page .header-main,
.blog-page .header-main,
.about-page .header-main,
.site-header--solid .header-main {
  min-height: 64px !important;
}

body .site-header .brand__logo,
body.home-page .brand__logo,
.catalog-page .header-main .brand__logo,
.contact-page .header-main .brand__logo,
.blog-page .header-main .brand__logo,
.about-page .header-main .brand__logo,
.site-header--solid .header-main .brand__logo {
  display: block !important;
  width: 150px !important;
  max-height: 34px !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: invert(1) !important;
}

body .primary-nav > a,
body .nav-dropdown,
body .nav-dropdown__toggle {
  min-height: 30px !important;
}

body .site-search,
body.home-page .site-search,
.catalog-page .site-search,
.contact-page .site-search,
.blog-page .site-search,
.about-page .site-search,
.site-header--solid .site-search {
  height: 30px !important;
}
