:root {
  --color-bg-primary: #0f141d;
  --color-bg-secondary: #151a23;
  --color-bg-tertiary: #111827;
  --color-card: #1b2230;
  --color-card-hover: #242d3a;
  --color-input: #101722;
  --color-text-primary: #f5f7fa;
  --color-text-secondary: #aab4c3;
  --color-text-muted-dark: #7e8898;
  --color-accent: #c94a3a;
  --color-accent-hover: #e05a49;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.16);
  --shadow-dark-card: 0 18px 45px rgba(0, 0, 0, 0.28);
  --ink: #f5f7fa;
  --muted: #aab4c3;
  --line: rgba(255, 255, 255, 0.08);
  --paper: #0f141d;
  --wash: #151a23;
  --mist: #202938;
  --brand: #c94a3a;
  --brand-dark: #b83a2f;
  --olive: #202938;
  --gold: #c69a39;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  --max: 1180px;
  --color-bg-dark: #0b111a;
  --color-bg-deep: #0f141d;
  --color-bg-surface: #1b2230;
  --color-bg-light: #0f141d;
  --color-bg-warm: #151a23;
  --color-primary-red: #c94a3a;
  --color-primary-red-dark: #b83a2f;
  --color-text-dark: #f5f7fa;
  --color-text-light: #ffffff;
  --color-text-soft: #e5e7eb;
  --color-text-muted: #7e8898;
  --color-border-dark: rgba(255, 255, 255, 0.12);
  --radius-card: 24px;
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.28);
  --section-padding: clamp(72px, 7vw, 104px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.company-name {
  display: block;
  max-width: none;
  color: #f8fafc;
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo img {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2b2b2b;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  white-space: nowrap;
}

.menu a {
  position: relative;
  padding: 8px 0;
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 0.2s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(217, 53, 42, 0.24);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  padding: clamp(48px, 4.5vw, 68px) 0 clamp(72px, 7vw, 110px);
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 53, 42, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8f9f6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 46px;
  align-items: center;
}

.hero-product {
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: start;
}

.hero-product-grid {
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(58px, 7vw, 112px);
}

.hero-copy h1 {
  max-width: 580px;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-page .hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--brand);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 650px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.hero-showcase {
  position: relative;
  min-height: 550px;
}

.blank-image {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed #c8cdd2;
  border-radius: var(--radius);
  color: #98a2b3;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,247,242,0.92)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(20,20,20,0.025) 12px 24px);
  font-size: 14px;
  font-weight: 700;
}

.image-marker {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(213, 70, 56, 0.24);
}

.placeholder-label {
  padding: 18px;
  text-align: center;
}

.product-visual {
  position: relative;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 242, 0.72));
  box-shadow: 0 34px 90px rgba(20, 20, 20, 0.08);
}

.product-visual::before {
  position: absolute;
  inset: 12% -5% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: rgba(217, 53, 42, 0.08);
  z-index: 0;
}

.product-placeholder {
  position: relative;
  z-index: 1;
  min-height: clamp(420px, 46vw, 620px);
  border-style: solid;
  border-color: #e1e4e8;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(242,244,247,0.98)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(20,20,20,0.025) 14px 28px);
  color: #8a94a3;
  font-size: 16px;
}

.hero-product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: clamp(420px, 46vw, 620px);
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: #0e1117;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-card {
  position: absolute;
  width: 58%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card:nth-child(1) {
  top: 0;
  right: 6%;
}

.hero-card:nth-child(2) {
  top: 164px;
  left: 0;
}

.hero-card:nth-child(3) {
  right: 0;
  bottom: 0;
}

.hero-card .blank-image {
  min-height: 230px;
  margin-bottom: 12px;
}

.hero-card strong {
  display: block;
  font-size: 18px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--wash);
}

.factory-info {
  background: #fff;
}

.factory-info-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(44px, 5vw, 78px);
  align-items: center;
}

.factory-info-copy .lead {
  max-width: 520px;
  margin: 16px 0 0;
}

.factory-title {
  max-width: 500px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-section-title {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.factory-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 20px 0 24px;
}

.factory-facts div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  background: #fff;
  color: #303844;
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.25;
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.035);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.factory-facts strong {
  order: 2;
  color: var(--brand);
  font-size: 15px;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.factory-facts span {
  order: 1;
  color: #4b5563;
}

.factory-info-visual {
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--wash);
}

.factory-placeholder {
  min-height: clamp(390px, 32vw, 470px);
  border-style: solid;
  border-color: #e1e4e8;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,246,242,0.98)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(20,20,20,0.025) 14px 28px);
  color: #8a94a3;
  font-size: 16px;
}

.factory-photo {
  overflow: hidden;
}

.factory-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card-photo {
  overflow: hidden;
}

.product-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.category-section-head {
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 0 0 clamp(420px, 34vw, 480px);
  max-width: 480px;
}

.section-head-actions p {
  max-width: 460px;
  line-height: 1.58;
}

.section-head-actions .quote {
  min-width: 176px;
  padding-inline: 26px;
  white-space: nowrap;
}

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

.stat {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 20, 20, 0.06);
}

.stat b {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 42px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
}

.series-grid,
.product-grid,
.strength-grid,
.news-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-layout .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}

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

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

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

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.05);
}

.card-body {
  padding: 24px;
}

.card p,
.mini-card p,
.timeline p,
.faq p {
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #4c5563;
  list-style: none;
}

.card li::before {
  margin-right: 9px;
  color: var(--brand);
  content: "+";
  font-weight: 900;
}

.factory-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.core-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.core-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: #fff;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-stack .blank-image:first-child {
  grid-column: 1 / -1;
  min-height: 300px;
}

.mini-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-card .num {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--olive);
  font-weight: 900;
}

.quote-band {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 154, 57, 0.34), transparent 32%),
    linear-gradient(135deg, var(--ink), #243328);
}

.quote-band .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 58px 0;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-band .quote {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.testimonial {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
}

.footer {
  color: #d7dbe0;
  background: #101411;
}

.footer .container {
  display: grid;
  width: min(1320px, calc(100% - 64px));
  grid-template-columns: minmax(240px, 1.15fr) minmax(140px, 0.65fr) minmax(180px, 0.75fr) minmax(460px, 1.55fr);
  gap: clamp(42px, 5vw, 84px);
  padding: 62px 0 42px;
}

.footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.footer .company-name-footer {
  max-width: 260px;
  font-size: 16px;
  line-height: 1.28;
}

.footer a,
.footer p {
  display: block;
  margin: 9px 0;
  color: #b7bec7;
}

.contact-block {
  display: grid;
  gap: 18px;
}

.footer .contact-block {
  grid-template-columns: minmax(300px, 1fr) 124px;
  gap: 24px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 10px;
}

.contact-lines p {
  margin: 0;
}

.qr-card {
  width: min(190px, 100%);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
}

.qr-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.qr-card span {
  display: block;
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer .qr-card {
  width: 124px;
  margin-top: 0;
  padding: 7px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.footer .qr-card span {
  color: var(--ink);
  font-size: 9px;
  line-height: 1.25;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.05);
}

.contact-main {
  align-items: start;
  column-gap: clamp(80px, 7vw, 120px);
  row-gap: 42px;
}

.contact-intro {
  padding-top: 0;
}

.contact-title {
  max-width: 440px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}

.contact-intro .contact-card {
  position: relative;
  margin-top: 54px;
}

.contact-form {
  margin-top: 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  color: #8d96a0;
  text-align: center;
}

.page-hero {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 53, 42, 0.42), transparent 26%),
    linear-gradient(135deg, #121512, #324435);
}

.breadcrumb {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.oem-solution-page .oem-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 6vw, 88px) 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 74, 58, 0.24), transparent 28%),
    radial-gradient(circle at 88% 45%, rgba(73, 95, 125, 0.2), transparent 34%),
    linear-gradient(135deg, #0b111a 0%, #111923 58%, #151a23 100%);
}

.oem-solution-page .oem-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}

.oem-solution-page .oem-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: clamp(56px, 6vw, 88px);
  align-items: center;
}

.oem-hero-copy {
  min-width: 0;
}

.oem-solution-page .oem-hero .breadcrumb {
  margin-bottom: 20px;
  color: var(--color-text-muted-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.oem-solution-page .oem-hero h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(72px, 6.3vw, 86px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.oem-solution-page .oem-hero .lead {
  max-width: 680px;
  margin: 26px 0 34px;
  color: var(--color-text-secondary);
  font-size: 18px;
  line-height: 1.62;
}

.oem-solution-page .oem-hero-visual {
  width: 100%;
  max-width: 580px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(27, 34, 48, 0.98), rgba(16, 23, 34, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.oem-solution-page .oem-hero-product {
  position: relative;
  height: clamp(390px, 35vw, 470px);
  overflow: hidden;
  background: #dcdae1;
}

.oem-solution-page .oem-hero-product > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.oem-solution-page .oem-hero-product .image-marker {
  top: 18px;
  left: 18px;
}

.oem-logo-chip,
.oem-package-chip,
.oem-color-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: rgba(15, 20, 29, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.oem-logo-chip,
.oem-package-chip {
  display: grid;
  gap: 2px;
  min-width: 142px;
  padding: 12px 15px;
  border-radius: 14px;
}

.oem-logo-chip {
  top: 18px;
  right: 18px;
}

.oem-package-chip {
  right: 18px;
  bottom: 18px;
}

.oem-logo-chip strong,
.oem-package-chip strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.oem-logo-chip span,
.oem-package-chip span {
  color: var(--color-text-secondary);
  font-size: 11px;
}

.oem-color-chip {
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
}

.oem-color-swatches {
  display: flex;
}

.oem-color-swatches i {
  width: 16px;
  height: 16px;
  margin-left: -4px;
  border: 2px solid #151a23;
  border-radius: 50%;
  background: #d35445;
}

.oem-color-swatches i:first-child {
  margin-left: 0;
  background: #e8b36a;
}

.oem-color-swatches i:last-child {
  background: #5e91b8;
}

.oem-solution-page .oem-hero-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.oem-solution-page .oem-hero-visual figcaption strong {
  color: var(--color-text-primary);
  font-size: 14px;
}

.oem-solution-page .oem-hero-visual figcaption span {
  color: var(--color-text-muted-dark);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1024px) {
  .oem-solution-page .oem-hero-grid {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .oem-solution-page .oem-hero h1 {
    max-width: 740px;
    font-size: clamp(58px, 8vw, 74px);
  }

  .oem-solution-page .oem-hero-visual {
    max-width: 680px;
    justify-self: start;
  }

  .oem-solution-page .oem-hero-product {
    height: clamp(380px, 58vw, 470px);
  }
}

@media (max-width: 720px) {
  .oem-solution-page .oem-hero {
    padding: 52px 0 56px;
  }

  .oem-solution-page .oem-hero-grid {
    width: calc(100% - 32px);
    gap: 38px;
  }

  .oem-solution-page .oem-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 1.07;
  }

  .oem-solution-page .oem-hero .lead {
    margin: 22px 0 30px;
    font-size: 16px;
  }

  .oem-solution-page .oem-hero-product {
    height: clamp(300px, 90vw, 390px);
  }

  .oem-solution-page .oem-hero-visual {
    border-radius: 22px;
  }

  .oem-logo-chip,
  .oem-package-chip {
    min-width: 126px;
    padding: 10px 12px;
  }

  .oem-solution-page .oem-hero-visual figcaption {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
  }

  .oem-solution-page .oem-hero-visual figcaption span {
    text-align: left;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-year {
  color: var(--brand);
  font-size: 26px;
  font-weight: 900;
}

.manufacturing-journey-section > .manufacturing-journey-grid {
  width: min(1280px, calc(100% - 64px));
  max-width: 1280px;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(56px, 5vw, 72px);
  margin-inline: auto;
}

.manufacturing-journey-intro {
  width: 100%;
  max-width: 560px;
}

.manufacturing-journey-intro h2 {
  max-width: 560px;
  font-size: clamp(48px, 3.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.manufacturing-journey-intro .lead {
  max-width: 560px;
  margin: 20px 0 26px;
  font-size: 17px;
  line-height: 1.6;
}

.manufacturing-timeline {
  width: 100%;
  max-width: 720px;
  gap: 26px;
  justify-self: end;
}

.manufacturing-timeline .timeline-item {
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding: 18px 20px;
}

.manufacturing-timeline .timeline-year {
  font-size: 24px;
  line-height: 1.2;
}

.manufacturing-timeline h3 {
  font-size: 22px;
  line-height: 1.18;
}

.manufacturing-timeline p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.about-page .nav > .quote {
  min-width: 176px;
  white-space: nowrap;
}

.about-page .factory-overview-section {
  padding: 52px 0 58px;
  background: #ffffff;
}

.factory-overview-section > .factory-overview-container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-inline: auto;
}

.factory-overview-head {
  display: block;
  margin-bottom: 48px;
}

.factory-overview-head > div {
  max-width: 1050px;
}

.factory-overview-head .eyebrow {
  margin-bottom: 12px;
}

.factory-overview-head h2 {
  max-width: 1050px;
  font-size: clamp(48px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.factory-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}

.factory-overview-grid .card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.factory-overview-grid .blank-image {
  min-height: 0;
  height: 220px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.factory-overview-grid .card-body {
  padding: 20px 22px 22px;
}

.factory-overview-grid h3 {
  font-size: 21px;
  line-height: 1.2;
}

.factory-overview-grid p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.5;
}

.product-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.sidebar {
  position: sticky;
  top: 98px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .product-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-layout .product-grid {
    grid-template-columns: 1fr;
  }
}

.sidebar a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: #4b5563;
}

.sidebar a:last-child {
  border-bottom: 0;
}

.tag {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--olive);
  background: var(--mist);
  font-size: 13px;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-intro,
.form-status {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.form-status.is-success {
  color: #77d39a;
}

.form-status.is-error {
  color: #ff9386;
}

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

.admin-page {
  min-height: 100vh;
}

.admin-wrap {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.admin-card,
.inquiry-card {
  padding: 28px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow-dark-card);
}

.admin-card {
  max-width: 520px;
  margin: 0 auto;
}

.admin-card form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.admin-card input,
.inquiry-card select {
  width: 100%;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  padding: 12px;
  color: var(--ink);
  background: var(--color-input);
  font: inherit;
}

.admin-heading,
.inquiry-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.admin-heading {
  margin-bottom: 28px;
}

.admin-heading h1,
.admin-card h1 {
  margin: 6px 0 0;
}

.inquiry-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.inquiry-top strong,
.inquiry-top a {
  display: block;
}

.inquiry-top a {
  color: var(--color-accent-hover);
}

.inquiry-top select {
  width: auto;
  text-transform: capitalize;
}

.inquiry-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 16px;
}

.inquiry-card dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.inquiry-card dd {
  margin: 2px 0 0;
}

@media (max-width: 640px) {
  .admin-wrap { padding: 40px 0; }
  .admin-heading, .inquiry-top { flex-direction: column; }
  .inquiry-card dl { grid-template-columns: 1fr; }
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.oem-solution-page .nav > .quote {
  min-width: 176px;
  white-space: nowrap;
}

.oem-solution-page .buyer-challenges-section .section-head,
.oem-solution-page .oem-process-section .section-head {
  margin-bottom: 30px;
}

.oem-solution-page .buyer-challenges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 36px;
}

.oem-solution-page .buyer-challenges-section .section-head {
  margin-bottom: 38px;
}

.oem-solution-page .buyer-challenges-section .section-head h2 {
  max-width: 1120px;
  font-size: clamp(64px, 5.5vw, 72px);
  line-height: 1.07;
}

.oem-solution-page .buyer-challenges-grid .mini-card {
  min-width: 0;
  min-height: 236px;
  padding: 28px;
  border-color: var(--color-border);
  background: var(--color-card);
  box-shadow: var(--shadow-dark-card);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.oem-solution-page .buyer-challenges-grid .mini-card .num {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  font-size: 13px;
}

.oem-solution-page .buyer-challenges-grid .mini-card h3 {
  font-size: 23px;
  line-height: 1.18;
}

.oem-solution-page .buyer-challenges-grid .mini-card p {
  margin: 10px 0 0;
  color: var(--color-text-secondary);
  font-size: 15.5px;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .oem-solution-page .buyer-challenges-grid .mini-card:hover {
    border-color: rgba(211, 84, 69, 0.58);
    background: var(--color-card-hover);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
    transform: translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .oem-solution-page .buyer-challenges-section .section-head h2 {
    font-size: clamp(52px, 7vw, 64px);
  }

  .oem-solution-page .buyer-challenges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .oem-solution-page .buyer-challenges-section .section-head {
    margin-bottom: 30px;
  }

  .oem-solution-page .buyer-challenges-section .section-head h2 {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 1.08;
  }

  .oem-solution-page .buyer-challenges-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .oem-solution-page .buyer-challenges-grid .mini-card {
    min-height: 0;
    padding: 24px;
  }
}

.oem-solution-page .oem-process-section > .container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-inline: auto;
}

.oem-solution-page .oem-process-grid {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 30px);
  align-items: stretch;
}

.oem-solution-page .oem-process-grid::before {
  position: absolute;
  top: 41px;
  right: 8%;
  left: 8%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(211, 84, 69, 0.36) 8%, rgba(211, 84, 69, 0.36) 92%, transparent);
}

.oem-solution-page .oem-process-grid .mini-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 258px;
  padding: 22px;
  border-color: var(--color-border);
  background: var(--color-card);
  box-shadow: var(--shadow-dark-card);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.oem-solution-page .oem-process-grid .mini-card .num {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

.oem-solution-page .oem-process-grid .mini-card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.oem-solution-page .oem-process-grid .mini-card p {
  margin: 12px 0 0;
  color: var(--color-text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  .oem-solution-page .oem-process-grid .mini-card:hover {
    border-color: rgba(211, 84, 69, 0.58);
    background: var(--color-card-hover);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
    transform: translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .oem-solution-page .oem-process-section > .container {
    width: calc(100% - 48px);
  }

  .oem-solution-page .oem-process-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
  }

  .oem-solution-page .oem-process-grid .mini-card {
    grid-column: span 2;
  }

  .oem-solution-page .oem-process-grid .mini-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .oem-solution-page .oem-process-grid .mini-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .oem-solution-page .oem-process-grid::before {
    display: none;
  }

  .oem-solution-page .oem-process-grid .mini-card {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .oem-solution-page .oem-process-section > .container {
    width: calc(100% - 32px);
  }

  .oem-solution-page .oem-process-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .oem-solution-page .oem-process-grid .mini-card {
    grid-column: auto;
    min-height: 0;
    padding: 22px;
  }

  .oem-solution-page .oem-process-grid .mini-card:nth-child(4),
  .oem-solution-page .oem-process-grid .mini-card:nth-child(5) {
    grid-column: auto;
  }
}

.oem-solution-page .oem-models-section {
  height: auto;
  max-height: none;
  overflow: visible;
}

.oem-solution-page .oem-models-container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  margin-inline: auto;
}

.oem-solution-page .oem-models-intro {
  width: min(100%, 650px);
  margin-bottom: clamp(40px, 3.5vw, 48px);
}

.oem-solution-page .oem-models-intro h2 {
  max-width: 640px;
  font-size: clamp(56px, 4.6vw, 62px);
  line-height: 1.08;
}

.oem-solution-page .oem-models-intro .lead {
  max-width: 610px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.58;
}

.oem-solution-page .oem-models-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(64px, 6vw, 84px);
  align-items: start;
}

.oem-solution-page .oem-models-image,
.oem-solution-page .oem-models-faq {
  min-width: 0;
}

.oem-solution-page .oem-models-image {
  width: 100%;
  height: clamp(280px, 24vw, 320px);
  min-height: 0;
}

.oem-solution-page .oem-models-faq {
  width: 100%;
  gap: 18px;
  padding: 0;
  align-self: start;
}

.oem-solution-page .oem-models-faq h3 {
  margin: 0 0 4px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oem-solution-page .oem-models-faq details {
  width: 100%;
  min-height: 72px;
  padding: 20px;
}

.oem-solution-page .oem-models-faq summary {
  font-size: 16px;
  line-height: 1.35;
}

.oem-solution-page .oem-models-faq p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .oem-solution-page .oem-models-container {
    width: min(760px, calc(100% - 48px));
  }

  .oem-solution-page .oem-models-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .oem-solution-page .oem-models-intro h2 {
    max-width: 720px;
    font-size: clamp(46px, 6vw, 58px);
  }

  .oem-solution-page .oem-models-image {
    height: clamp(280px, 42vw, 320px);
  }
}

@media (max-width: 720px) {
  .oem-solution-page .oem-models-container {
    width: calc(100% - 32px);
  }

  .oem-solution-page .oem-models-intro {
    margin-bottom: 40px;
  }

  .oem-solution-page .oem-models-intro h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
  }

  .oem-solution-page .oem-models-intro .lead {
    font-size: 16px;
  }

  .oem-solution-page .oem-models-content {
    gap: 36px;
  }

  .oem-solution-page .oem-models-image {
    height: 280px;
  }

  .oem-solution-page .oem-models-faq {
    width: 100%;
    gap: 16px;
  }

  .oem-solution-page .oem-models-faq details {
    padding: 16px 18px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .factory-grid,
  .factory-info-grid,
  .quote-band .container,
  .two-col,
  .contact-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: auto;
  }

  .hero-product-grid {
    gap: 36px;
  }

  .product-placeholder,
  .factory-placeholder {
    min-height: 360px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-bottom: 16px;
  }

  .stats,
  .series-grid,
  .product-grid,
  .strength-grid,
  .news-grid,
  .process-grid,
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer .contact-block {
    grid-column: 1 / -1;
  }

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

  .contact-intro .contact-card {
    transform: none;
  }

  .footer .contact-block {
    grid-template-columns: minmax(300px, 1fr) 112px;
  }

  .footer .qr-card {
    width: 112px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .topbar .container,
  .nav,
  .menu,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .section-head-actions {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }

  .stats,
  .series-grid,
  .product-grid,
  .strength-grid,
  .news-grid,
  .process-grid,
  .footer .container,
  .media-stack {
    grid-template-columns: 1fr;
  }

  .footer .contact-block {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .footer .qr-card {
    width: 104px;
  }

  .section {
    padding: 58px 0;
  }

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

/* Homepage B2B factory visual direction */
.home-page {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.home-page .topbar {
  background: #070c15;
  color: #cbd5e1;
}

.home-page .header {
  background: rgba(11, 18, 32, 0.94);
  border-bottom: 1px solid var(--color-border-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.home-page .logo img {
  filter: invert(1);
}

.home-page .menu {
  color: #e5e7eb;
  font-weight: 650;
}

.home-page .menu a::after {
  background: var(--color-primary-red);
}

.home-page .quote {
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-primary-red-dark));
  box-shadow: 0 16px 36px rgba(213, 70, 56, 0.26);
}

.home-page .quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(213, 70, 56, 0.32);
}

.home-page .hero {
  color: var(--color-text-light);
  background:
    radial-gradient(circle at 78% 12%, rgba(213, 70, 56, 0.2), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #0b1220 0%, #101820 55%, #0e1117 100%);
}

.home-page .hero .eyebrow,
.home-page .production-section .eyebrow,
.home-page .quote-band .eyebrow {
  color: #f0aaa2;
}

.home-page .hero h1 {
  color: #ffffff;
}

.home-page .hero .lead {
  color: #cbd5e1;
}

.home-page .hero .ghost,
.home-page .quote-band .ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.home-page .product-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(213, 70, 56, 0.12), transparent 50%);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.36);
}

.home-page .product-visual::before {
  background: rgba(213, 70, 56, 0.16);
}

.home-page .product-placeholder {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.035) 14px 28px);
  color: #cbd5e1;
}

.home-page .section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.home-page .reliable-supply-section {
  padding: clamp(56px, 5vw, 72px) 0;
}

.home-page .reliable-supply-head {
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  margin-bottom: 28px;
}

.home-page .reliable-supply-head > div {
  flex: 1 1 auto;
  max-width: 590px;
}

.home-page .reliable-supply-head .eyebrow {
  margin-bottom: 10px;
}

.home-page .reliable-supply-head .home-section-title {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.08;
}

.home-page .reliable-supply-head > p {
  flex: 0 1 520px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.5;
}

.home-page .reliable-supply-section .strength-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 26px;
}

.home-page .reliable-supply-section .mini-card {
  min-height: 164px;
  padding: 22px 24px;
}

.home-page .reliable-supply-section .mini-card .num {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  font-size: 13px;
}

.home-page .reliable-supply-section .mini-card h3 {
  font-size: 20px;
  line-height: 1.18;
}

.home-page .reliable-supply-section .mini-card p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.45;
}

.home-page .nav > .quote {
  min-width: 176px;
  white-space: nowrap;
}

.home-page .factory-info {
  background:
    linear-gradient(180deg, #f8f6f1 0%, #ffffff 100%);
}

.home-page .factory-info-copy .lead,
.home-page .section-head p,
.home-page .card p,
.home-page .mini-card p,
.home-page .testimonial p {
  color: #687083;
}

.home-page .factory-facts div {
  border-color: rgba(17, 24, 39, 0.1);
  border-left-color: var(--color-primary-red);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.home-page .factory-facts div:hover,
.home-page .factory-facts div:focus-within {
  transform: translateY(-2px);
  border-color: rgba(213, 70, 56, 0.46);
  border-left-color: var(--color-primary-red);
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(213, 70, 56, 0.18),
    0 0 28px rgba(213, 70, 56, 0.2),
    0 22px 46px rgba(11, 18, 32, 0.14);
}

.home-page .factory-facts strong {
  color: var(--color-primary-red);
  font-size: 15.5px;
}

.home-page .factory-facts div:hover strong,
.home-page .factory-facts div:focus-within strong {
  color: var(--color-primary-red-dark);
}

.home-page .factory-facts span {
  color: #1f2937;
}

.home-page .factory-info-visual {
  border-color: rgba(17, 24, 39, 0.1);
  background: #ebe7de;
  box-shadow: var(--shadow-card);
}

.home-page .factory-placeholder,
.home-page .card .blank-image,
.home-page .media-stack .blank-image {
  border-color: rgba(17, 24, 39, 0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(238,239,235,0.95)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(17,24,39,0.03) 14px 28px);
  color: #8b93a3;
}

.home-page .card,
.home-page .mini-card,
.home-page .testimonial {
  border-color: rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.home-page .series-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.home-page .card h3,
.home-page .mini-card h3 {
  color: #111827;
}

.home-page .card li::before {
  color: var(--color-primary-red);
}

.home-page .production-section {
  padding: clamp(56px, 5vw, 72px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 12%, rgba(213, 70, 56, 0.16), transparent 28%),
    linear-gradient(135deg, #0b1220 0%, #101820 100%);
}

.home-page .production-section .factory-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: stretch;
}

.home-page .production-section .eyebrow {
  margin-bottom: 12px;
}

.home-page .production-section .home-section-title {
  max-width: 560px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.08;
}

.home-page .production-section .lead {
  max-width: 600px;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.55;
}

.home-page .production-section .core-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  margin-top: 20px;
}

.home-page .production-section .core-list li {
  padding: 14px 16px;
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--color-primary-red);
  background: rgba(255, 255, 255, 0.075);
  color: #d1d5db;
  font-size: 13.5px;
  line-height: 1.45;
  box-shadow: none;
}

.home-page .production-section .core-list strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.3;
}

.home-page .production-section .media-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 270px 200px;
  gap: 16px;
}

.home-page .production-section .media-stack .blank-image {
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.035) 14px 28px);
  color: #cbd5e1;
}

.home-page .section.alt:not(.production-section) {
  background: #f0eee8;
}

.home-page .mini-card .num {
  background: #111827;
  color: #ffffff;
}

.home-page .quote-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(213, 70, 56, 0.24), transparent 28%),
    linear-gradient(135deg, #0e1117 0%, #1f2937 100%);
}

.home-page .quote-band p {
  color: #cbd5e1;
}

.home-page .quote-band .quote {
  background: linear-gradient(135deg, var(--color-primary-red), var(--color-primary-red-dark));
  color: #ffffff;
}

@media (max-width: 980px) {
  .home-page .hero,
  .home-page .section {
    padding: 64px 0;
  }

  .home-page .reliable-supply-section {
    padding: 56px 0;
  }

  .home-page .reliable-supply-head {
    gap: 32px;
    margin-bottom: 26px;
  }

  .home-page .reliable-supply-section .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .home-page .production-section .factory-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page .production-section .media-stack {
    grid-template-rows: 220px 140px;
  }
}

@media (max-width: 720px) {
  .home-page .header {
    position: relative;
  }

  .home-page .hero,
  .home-page .section {
    padding: 54px 0;
  }

  .home-page .reliable-supply-head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .home-page .reliable-supply-head > div,
  .home-page .reliable-supply-head > p {
    width: 100%;
    max-width: 100%;
  }

  .home-page .reliable-supply-section .strength-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-page .reliable-supply-section .mini-card {
    min-height: 0;
    padding: 20px;
  }

  .home-page .production-section .core-list,
  .home-page .production-section .media-stack {
    grid-template-columns: 1fr;
  }

  .home-page .production-section .core-list {
    gap: 14px;
  }

  .home-page .production-section .media-stack {
    grid-template-rows: none;
  }

  .home-page .production-section .media-stack .blank-image,
  .home-page .production-section .media-stack .blank-image:first-child {
    grid-column: auto;
    min-height: 180px;
  }
}

@media (max-width: 1200px) {
  .manufacturing-journey-section > .manufacturing-journey-grid {
    width: min(calc(100% - 48px), 1152px);
    gap: 48px;
  }

  .manufacturing-journey-intro h2 {
    font-size: clamp(46px, 4.5vw, 52px);
  }
}

@media (max-width: 1024px) {
  .manufacturing-journey-section > .manufacturing-journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manufacturing-journey-intro,
  .manufacturing-timeline {
    max-width: 720px;
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .manufacturing-journey-section {
    padding: 48px 0;
  }

  .manufacturing-journey-section > .manufacturing-journey-grid {
    width: calc(100% - 32px);
    gap: 32px;
  }

  .manufacturing-journey-intro .eyebrow {
    margin-bottom: 12px;
  }

  .manufacturing-journey-intro h2 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.1;
  }

  .manufacturing-journey-intro .lead {
    margin: 16px 0 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .manufacturing-timeline {
    gap: 20px;
  }

  .manufacturing-timeline .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .manufacturing-timeline .timeline-year {
    font-size: 22px;
  }

  .manufacturing-timeline h3 {
    font-size: 20px;
  }
}

.home-page .category-series-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-page .category-card {
  position: relative;
  min-width: 0;
  height: auto;
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-page .category-card .blank-image {
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 1;
}

.home-page .category-card .category-product-image {
  display: block;
  overflow: hidden;
}

.home-page .category-card .category-product-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .category-card .category-product-contain {
  background: #080a0e;
}

.home-page .category-card .category-product-contain > img {
  object-fit: contain;
}

.home-page .pogo-home-product-image {
  aspect-ratio: 2 / 3;
  background: #c8cfd8;
}

.home-page .pogo-home-product-image > img {
  object-fit: contain;
}

.home-page .category-card .card-body {
  display: flex;
  min-height: 84px;
  align-items: center;
  padding: 18px;
}

.home-page .category-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

.category-details-toggle {
  display: none;
}

.home-page .category-card .category-description {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  height: auto;
  aspect-ratio: 1 / 1;
  align-items: center;
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: rgba(11, 18, 32, 0.9);
  color: #f3f4f6;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .category-card:hover,
  .home-page .category-card:focus {
    border-color: rgba(213, 70, 56, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 28px 64px rgba(11, 18, 32, 0.16);
  }

  .home-page .category-card:hover .category-description,
  .home-page .category-card:focus .category-description {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .home-page .category-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .home-page .category-series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (hover: none), (max-width: 560px) {
  .home-page .category-card {
    height: auto;
  }

  .home-page .category-card .card-body {
    display: block;
  }

  .category-details-toggle {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid rgba(213, 70, 56, 0.28);
    border-radius: 999px;
    background: rgba(213, 70, 56, 0.08);
    color: var(--color-primary-red-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .home-page .category-card .category-description {
    position: static;
    display: block;
    height: auto;
    aspect-ratio: auto;
    max-height: 0;
    margin: 0;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.06);
    color: #4b5563;
    opacity: 0;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
    transition: max-height 0.25s ease, margin 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
  }

  .home-page .category-card.is-expanded .category-description {
    max-height: 260px;
    margin-top: 12px;
    padding: 14px;
    opacity: 1;
  }
}

/* About page factory workflow cards */
.factory-overview-grid .factory-area-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.factory-overview-grid .factory-area-image {
  position: relative;
  width: 100%;
  height: 220px;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
}

.factory-area-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-area-image .placeholder-label {
  position: relative;
  z-index: 1;
}

.factory-area-image .image-marker {
  z-index: 4;
}

.factory-area-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 23, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, visibility 0s linear 0.25s, transform 0.25s ease;
}

.factory-area-overlay p {
  margin: 0;
  color: #e5eaf1;
  font-size: 14.5px;
  line-height: 1.55;
}

.factory-overview-grid .factory-area-card .card-body {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
}

.factory-overview-grid .factory-area-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 20px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.factory-area-toggle {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .factory-overview-grid .factory-area-card:hover {
    border-color: rgba(211, 84, 69, 0.45);
    background: var(--color-card-hover);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    transform: translateY(-5px);
  }

  .factory-area-card:hover .factory-area-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (max-width: 1100px) {
  .about-page .footer .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .footer .contact-block {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .about-page .footer .qr-card {
    width: 112px;
  }
}

@media (hover: none), (max-width: 720px) {
  .factory-area-toggle {
    display: inline-flex;
    min-height: 32px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid rgba(211, 84, 69, 0.32);
    border-radius: 999px;
    background: rgba(201, 74, 58, 0.12);
    color: #e6a49b;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .factory-area-card.is-expanded .factory-area-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .factory-overview-grid .factory-area-card,
  .factory-area-overlay {
    transition: none;
  }
}

@media (max-width: 560px) {
  .home-page .category-series-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .factory-overview-section > .factory-overview-container {
    width: calc(100% - 48px);
  }

  .factory-overview-head h2 {
    font-size: clamp(44px, 4.2vw, 52px);
  }

  .factory-overview-grid {
    gap: 28px;
  }
}

@media (max-width: 1024px) {
  .about-page .factory-overview-section {
    padding: 52px 0;
  }

  .factory-overview-head {
    margin-bottom: 38px;
  }

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

@media (max-width: 720px) {
  .about-page .factory-overview-section {
    padding: 48px 0;
  }

  .factory-overview-section > .factory-overview-container {
    width: calc(100% - 32px);
  }

  .factory-overview-head {
    margin-bottom: 32px;
  }

  .factory-overview-head h2 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.1;
  }

  .factory-overview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .factory-overview-grid .blank-image {
    height: 220px;
  }

  .factory-overview-grid .card-body {
    padding: 18px 20px 20px;
  }
}

@media (max-width: 980px) {
  .oem-process-grid .mini-card {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .buyer-challenges-grid .mini-card,
  .oem-process-grid .mini-card {
    min-height: 0;
    padding: 20px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .factory-facts div {
    transition: none;
    will-change: auto;
  }

  .home-page .category-card,
  .home-page .category-card .category-description {
    transition: none;
  }

  .home-page .factory-facts div:hover,
  .home-page .factory-facts div:focus-within {
    transform: none;
  }
}

/* Unified dark B2B factory theme */
html {
  color-scheme: dark;
}

body,
.home-page {
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

a {
  color: inherit;
}

.topbar {
  color: var(--color-text-secondary);
  background: #0b111a;
}

.header,
.home-page .header {
  border-bottom-color: var(--color-border);
  background: rgba(15, 20, 29, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.logo img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

@media (max-width: 1120px) {
  .nav {
    gap: 12px;
    padding-block: 16px;
  }

  .company-name {
    max-width: 300px;
    font-size: 15px;
  }

  .menu,
  .home-page .menu {
    gap: 12px;
    font-size: 13px;
  }

  .nav > .quote {
    min-width: 0;
    padding-inline: 14px;
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .home-page .hero-copy h1 span {
    white-space: normal;
  }

  .company-name {
    max-width: none;
    font-size: 17px;
  }
}

.menu,
.home-page .menu {
  color: #e5eaf1;
}

.menu a {
  color: #e5eaf1;
}

.menu a:hover,
.menu a:focus-visible {
  color: #ffffff;
}

.menu a::after,
.home-page .menu a::after,
.eyebrow::before {
  background: var(--color-accent);
}

.eyebrow,
.home-page .hero .eyebrow,
.home-page .production-section .eyebrow,
.home-page .quote-band .eyebrow {
  color: #d35445;
}

h1,
h2,
h3,
.home-page .hero h1,
.home-page .card h3,
.home-page .mini-card h3,
.contact-title {
  color: var(--color-text-primary);
}

.lead,
.section-head p,
.card p,
.mini-card p,
.timeline p,
.faq p,
.testimonial p,
.home-page .factory-info-copy .lead,
.home-page .section-head p,
.home-page .card p,
.home-page .mini-card p,
.home-page .testimonial p,
.home-page .hero .lead {
  color: var(--color-text-secondary);
}

.section,
.home-page .section {
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.section.alt,
.home-page .section.alt:not(.production-section),
.about-page .factory-overview-section {
  background: var(--color-bg-secondary);
}

.factory-info,
.home-page .factory-info {
  background: linear-gradient(180deg, #151a23 0%, #0f141d 100%);
}

.page-hero {
  color: var(--color-text-primary);
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 74, 58, 0.28), transparent 28%),
    linear-gradient(135deg, #0b111a 0%, #151a23 100%);
}

.breadcrumb {
  color: var(--color-text-muted-dark);
}

.quote,
.home-page .quote,
.quote-band .quote,
.home-page .quote-band .quote {
  border: 0;
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 12px 30px rgba(201, 74, 58, 0.28);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav > .quote {
  min-width: 176px;
  justify-content: center;
  white-space: nowrap;
}

button.quote {
  cursor: pointer;
}

.quote:hover,
.quote:focus-visible,
.home-page .quote:hover {
  color: #ffffff;
  background: var(--color-accent-hover);
  box-shadow: 0 16px 38px rgba(201, 74, 58, 0.34);
  transform: translateY(-2px);
}

.ghost,
.home-page .hero .ghost,
.home-page .quote-band .ghost {
  border-color: var(--color-border-strong);
  background: transparent;
  color: var(--color-text-primary);
  box-shadow: none;
}

.ghost:hover,
.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.card,
.mini-card,
.testimonial,
.timeline-item,
.stat,
.contact-card,
.form,
.faq details,
.sidebar,
.home-page .card,
.home-page .mini-card,
.home-page .testimonial {
  border-color: var(--color-border);
  background: var(--color-card);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-dark-card);
}

.card,
.mini-card,
.testimonial,
.timeline-item {
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.card:hover,
.mini-card:hover,
.testimonial:hover,
.timeline-item:hover {
  border-color: rgba(211, 84, 69, 0.35);
  background: var(--color-card-hover);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.mini-card .num,
.home-page .mini-card .num {
  color: #ffffff;
  background: #2b3748;
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.timeline-year {
  color: #d35445;
}

.blank-image,
.product-placeholder,
.factory-placeholder,
.home-page .factory-placeholder,
.home-page .card .blank-image,
.home-page .media-stack .blank-image,
.home-page .production-section .media-stack .blank-image {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(26, 34, 48, 0.98), rgba(21, 28, 38, 0.98)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 255, 255, 0.025) 14px 28px);
  color: var(--color-text-muted-dark);
}

.image-marker {
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 8px 20px rgba(201, 74, 58, 0.24);
}

.product-visual,
.home-page .product-visual,
.factory-info-visual,
.home-page .factory-info-visual {
  border-color: var(--color-border);
  background: linear-gradient(145deg, #1b2230, #151a23);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.hero-card {
  border-color: var(--color-border-strong);
  background: rgba(27, 34, 48, 0.9);
  color: var(--color-text-primary);
}

.factory-facts div,
.home-page .factory-facts div {
  border-color: var(--color-border);
  border-left-color: var(--color-accent);
  background: var(--color-card);
  color: var(--color-text-secondary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.factory-facts span,
.home-page .factory-facts span {
  color: var(--color-text-secondary);
}

.factory-facts strong,
.home-page .factory-facts strong {
  color: #d35445;
}

.home-page .factory-facts div:hover,
.home-page .factory-facts div:focus-within {
  border-color: rgba(211, 84, 69, 0.4);
  border-left-color: var(--color-accent);
  background: var(--color-card-hover);
  box-shadow: 0 0 0 1px rgba(211, 84, 69, 0.12), 0 18px 42px rgba(0, 0, 0, 0.32);
}

.core-list li,
.home-page .production-section .core-list li {
  border-color: var(--color-border);
  border-left-color: var(--color-accent);
  background: var(--color-card);
  color: var(--color-text-secondary);
}

.core-list strong,
.home-page .production-section .core-list strong {
  color: var(--color-text-primary);
}

.sidebar a {
  border-bottom-color: var(--color-border);
  color: var(--color-text-secondary);
}

.sidebar a:hover {
  color: #ffffff;
}

.tag {
  color: #e5eaf1;
  background: #263241;
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.form input,
.form textarea,
.form select {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--color-input);
  color: var(--color-text-primary);
  outline: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #d35445;
  box-shadow: 0 0 0 3px rgba(211, 84, 69, 0.16);
}

.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text-primary);
  box-shadow: 0 0 0 1000px var(--color-input) inset;
}

.faq details[open] {
  border-color: rgba(211, 84, 69, 0.24);
  background: #202938;
}

.faq summary {
  color: var(--color-text-primary);
}

.faq summary::marker {
  color: #d35445;
}

.contact-lines,
.contact-lines p {
  color: var(--color-text-secondary);
}

.qr-card,
.footer .qr-card {
  border-color: var(--color-border);
  background: var(--color-card);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-dark-card);
}

.qr-card img {
  background: #ffffff;
}

.qr-card span,
.footer .qr-card span {
  color: var(--color-text-secondary);
}

.footer {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: #0b111a;
}

.footer h3 {
  color: var(--color-text-primary);
}

.footer a,
.footer p {
  color: var(--color-text-secondary);
}

.footer a:hover {
  color: #ffffff;
}

.copyright {
  border-top-color: var(--color-border);
  color: var(--color-text-muted-dark);
}

.home-page .quote-band,
.quote-band,
.home-page .production-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 74, 58, 0.18), transparent 30%),
    linear-gradient(135deg, #0b111a 0%, #151a23 100%);
}

.home-page .category-card .category-description {
  border: 1px solid var(--color-border);
  background: rgba(10, 15, 23, 0.9);
  color: #e5eaf1;
}

@media (hover: none), (max-width: 560px) {
  .category-details-toggle {
    border-color: rgba(211, 84, 69, 0.3);
    background: rgba(201, 74, 58, 0.12);
    color: #e6a49b;
  }

  .home-page .category-card .category-description {
    background: #202938;
    color: var(--color-text-secondary);
  }
}

/* Canonical About factory workflow layout */
.about-page .factory-overview-section {
  position: relative;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 56px 0 48px;
  overflow: visible;
  scroll-margin-top: 112px;
  background: var(--color-bg-secondary);
}

.about-page .factory-overview-container {
  width: min(1320px, calc(100% - 64px));
  max-width: 1320px;
  height: auto;
  max-height: none;
  margin-inline: auto;
  overflow: visible;
}

.about-page .factory-overview-head {
  display: block;
  margin: 0 0 42px;
}

.about-page .factory-overview-head > div {
  max-width: 1040px;
}

.about-page .factory-overview-head .eyebrow {
  margin-bottom: 10px;
}

.about-page .factory-overview-head h2 {
  max-width: 1040px;
  font-size: clamp(52px, 4.1vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.about-page .factory-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 30px;
  height: auto;
  max-height: none;
  overflow: visible;
}

.about-page .factory-overview-grid .factory-area-card {
  position: relative;
  display: flex;
  height: 264px;
  min-width: 0;
  flex-direction: column;
  overflow: visible;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-dark-card);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.about-page .factory-overview-grid .factory-area-image {
  position: relative;
  display: grid;
  width: 100%;
  height: 196px;
  min-height: 196px;
  flex: 0 0 196px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0 0;
}

.about-page .factory-overview-section .factory-workflow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.about-page .factory-overview-section .factory-workflow-image--center {
  object-position: center center;
}

.about-page .factory-area-image .placeholder-label {
  position: relative;
  z-index: 1;
  padding: 18px;
  text-align: center;
}

.about-page .factory-area-image .image-marker {
  z-index: 4;
}

.about-page .factory-area-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 23, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  backdrop-filter: blur(7px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.about-page .factory-area-overlay p {
  margin: 0;
  color: #e5eaf1;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.about-page .factory-overview-grid .factory-area-card .card-body {
  display: flex;
  width: 100%;
  min-height: 68px;
  flex: 0 0 68px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
}

.about-page .factory-overview-grid .factory-area-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 19px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.about-page .factory-area-toggle {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .about-page .factory-overview-grid .factory-area-card:hover {
    border-color: rgba(211, 84, 69, 0.45);
    background: var(--color-card-hover);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    transform: translateY(-4px);
  }

  .about-page .factory-area-card:hover .factory-area-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (max-width: 1024px) {
  .about-page .factory-overview-section {
    padding: 52px 0 48px;
  }

  .about-page .factory-overview-container {
    width: calc(100% - 48px);
  }

  .about-page .factory-overview-head {
    margin-bottom: 40px;
  }

  .about-page .factory-overview-head h2 {
    font-size: clamp(44px, 5.4vw, 52px);
  }

  .about-page .factory-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (hover: none), (max-width: 720px) {
  .about-page .factory-area-toggle {
    display: inline-flex;
    min-height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(211, 84, 69, 0.32);
    border-radius: 999px;
    background: rgba(201, 74, 58, 0.12);
    color: #e6a49b;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .about-page .factory-area-card.is-expanded .factory-area-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (max-width: 720px) {
  .about-page .factory-overview-section {
    padding: 48px 0 44px;
    scroll-margin-top: 300px;
  }

  .about-page .factory-overview-container {
    width: calc(100% - 32px);
  }

  .about-page .factory-overview-head {
    margin-bottom: 32px;
  }

  .about-page .factory-overview-head h2 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.08;
  }

  .about-page .factory-overview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .factory-overview-grid .factory-area-card,
  .about-page .factory-area-overlay {
    transition: none;
  }
}

/* Canonical homepage hero sizing */
.home-page .hero-product {
  display: grid;
  min-height: 0;
  padding: clamp(40px, 4vw, 56px) 0 clamp(48px, 4.5vw, 64px);
  align-items: center;
}

.home-page .hero-product-grid {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 560px);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.home-page .hero-product-grid .hero-copy {
  align-self: center;
}

.home-page .hero-product-grid .product-visual {
  display: flex;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 18px;
  overflow: hidden;
  border-radius: 32px;
}

.home-page .hero-product-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

@media (max-width: 1200px) {
  .home-page .hero-product-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 500px);
    gap: 44px;
  }

  .home-page .hero-product-grid .product-visual {
    width: min(100%, 500px);
  }
}

@media (max-width: 980px) {
  .home-page .hero-product {
    padding: 56px 0;
  }

  .home-page .hero-product-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-page .hero-product-grid .product-visual {
    width: min(100%, 620px);
    aspect-ratio: 16 / 10;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .home-page .hero-product {
    padding: 44px 0 48px;
  }

  .home-page .hero-product-grid {
    gap: 30px;
  }

  .home-page .hero-product-grid .product-visual {
    width: 100%;
    max-height: 320px;
    padding: 12px;
    border-radius: 24px;
  }

  .home-page .hero-product-image {
    border-radius: 18px;
  }
}

/* Distributor partner page uses the OEM hero language without an unprovided product visual. */
.distributors-page .distributor-hero-grid {
  grid-template-columns: minmax(0, 900px);
}

.distributors-page .distributor-hero h1 {
  max-width: 880px;
}

.distributors-page .distributor-content-placeholder {
  min-height: 260px;
  background: var(--color-bg-primary);
}

@media (max-width: 720px) {
  .distributors-page .distributor-content-placeholder {
    min-height: 180px;
  }
}

/* Keep the expanded homepage product range readable beside the hero product visual. */
.home-page .hero-product-grid .hero-copy {
  min-width: 0;
  max-width: 100%;
}

.home-page .hero .eyebrow {
  max-width: 100%;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.09em;
  line-height: 1.4;
  white-space: normal;
}

.home-page .hero-copy h1 {
  max-width: 600px;
  font-size: clamp(39px, 3.35vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.home-page .hero-copy h1 span {
  white-space: normal;
}

.home-page .hero .lead {
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .home-page .hero-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.1;
  }

  .home-page .hero .lead {
    font-size: 16px;
  }
}

/* About page workflow and certification presentation. */
.about-page .factory-overview-container,
.about-page .certifications-container {
  width: min(1120px, calc(100% - 96px));
  max-width: 1120px;
}

.about-page .factory-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}

.about-page .factory-overview-grid .factory-area-card {
  height: auto;
}

.about-page .factory-overview-grid .factory-area-image {
  height: auto;
  min-height: 0;
  flex-basis: auto;
  aspect-ratio: 2.1 / 1;
}

.about-page .certifications-section {
  padding: 56px 0 72px;
  background: var(--color-bg-primary);
}

.about-page .certifications-head {
  margin-bottom: 38px;
}

.about-page .certifications-head h2 {
  max-width: 720px;
  font-size: clamp(44px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.about-page .certificate-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-color: var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-dark-card);
}

.about-page .certificate-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 16px;
  border: 0;
  border-radius: calc(var(--radius-card) - 1px) calc(var(--radius-card) - 1px) 0 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(195, 91, 70, 0.18), transparent 34%),
    linear-gradient(145deg, #e5e8ed 0%, #c9d0da 100%);
}

.about-page .certificate-document--featured {
  position: absolute;
  inset: 16px;
  display: block;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 16px rgba(10, 14, 22, 0.22));
}

.about-page .certificate-document-grid {
  display: grid;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 10px;
}

.about-page .certificate-document-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-page .certificate-document-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-page .certificate-page {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  grid-template-rows: minmax(0, 1fr);
}

.about-page .certificate-page img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border: 1px solid rgba(17, 22, 33, 0.16);
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(10, 14, 22, 0.18);
}

.about-page .certificate-card .card-body {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 16px 20px;
}

.about-page .certificate-card h3 {
  margin: 0;
  color: var(--color-text-primary);
  font-size: 19px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .about-page .factory-overview-container,
  .about-page .certifications-container {
    width: min(900px, calc(100% - 48px));
  }

  .about-page .factory-overview-grid,
  .about-page .certifications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .about-page .factory-overview-container,
  .about-page .certifications-container {
    width: calc(100% - 32px);
  }

  .about-page .factory-overview-grid,
  .about-page .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-page .certifications-section {
    padding: 48px 0 56px;
  }

  .about-page .certifications-head {
    margin-bottom: 32px;
  }

  .about-page .certifications-head h2 {
    font-size: clamp(36px, 10vw, 44px);
  }
}

/* Products hero is intentionally compact so its copy does not span the full banner. */
.products-page .page-hero {
  padding: 38px 0 40px;
}

.products-page .page-hero > .container {
    width: min(900px, calc(100% - 64px));
    max-width: 900px;
}

.products-page .page-hero h1 {
    max-width: 670px;
    font-size: clamp(40px, 4.4vw, 60px);
    letter-spacing: -0.05em;
}

.products-page .page-hero .lead {
    max-width: 620px;
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.55;
}

/* Product catalog follows a clear directory-and-grid rhythm while preserving its existing content. */
.products-page .product-catalog-section {
    padding: clamp(38px, 4vw, 56px) 0 clamp(64px, 6vw, 84px);
}

.products-page .product-catalog-shell {
    width: min(1320px, calc(100% - 64px));
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
    gap: clamp(40px, 4vw, 64px);
    align-items: start;
}

.products-page .product-catalog-shell .sidebar {
    top: 112px;
    padding: 28px 26px 22px;
}

.products-page .product-catalog-shell .sidebar h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.products-page .product-catalog-shell .sidebar a {
    padding: 14px 0;
    line-height: 1.35;
}

.products-page .product-catalog-content {
    min-width: 0;
    padding-left: 0;
    border-left: 0;
}

.products-page .product-catalog-head {
    align-items: flex-end;
    min-height: 0;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}

.products-page .product-catalog-head .eyebrow {
    margin-bottom: 13px;
}

.products-page .product-catalog-head h2 {
    max-width: 760px;
    font-size: clamp(30px, 3.2vw, 46px);
}

.products-page .product-layout .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
}

.products-page .product-grid .card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.products-page .product-grid .blank-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.products-page .product-grid .product-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.products-page .product-grid .card-body {
    display: flex;
    min-height: 224px;
    flex: 1;
    flex-direction: column;
}

.products-page .product-grid .card-body .quote {
    align-self: flex-start;
    margin-top: auto;
}

/* The product directory uses one visible, permanent ID per image for fast buyer feedback. */
.products-page .product-lines-grid .product-line-card {
    display: grid;
    min-height: 0;
    grid-template-rows: auto auto;
    color: inherit;
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.products-page .product-lines-grid .product-line-card:hover,
.products-page .product-lines-grid .product-line-card:focus-visible {
    border-color: rgba(211, 84, 69, 0.54);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
}

.products-page .product-line-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #c8cfd8;
}

.products-page .product-line-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-page .pogo-product-line-card .product-line-media img {
    object-fit: contain;
}

.products-page .product-line-id {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--color-accent);
    box-shadow: 0 6px 16px rgba(123, 40, 31, 0.24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.products-page .product-line-caption {
    display: grid;
    gap: 4px;
    padding: 15px 17px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #1d2738;
    color: #fff;
}

.products-page .product-line-caption strong {
    font-size: 16px;
    line-height: 1.2;
}

.products-page .product-line-caption small {
    color: #b5bfce;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .products-page .product-catalog-shell {
        width: min(920px, calc(100% - 48px));
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .products-page .product-catalog-shell .sidebar {
        position: static;
    }

    .products-page .product-catalog-content {
        padding-left: 0;
        border-left: 0;
    }

    .products-page .product-catalog-head {
        min-height: 0;
    }

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

@media (max-width: 720px) {
    .products-page .product-catalog-shell {
        width: calc(100% - 32px);
    }

    .products-page .product-layout .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .products-page .product-grid .card-body {
        min-height: 0;
    }
}

/* Keep the Blog hero visually focused without changing its shared typography or colors. */
.blog-page .page-hero {
    padding: 48px 0 52px;
}

.blog-page .page-hero > .container {
    width: min(860px, calc(100% - 64px));
    max-width: 860px;
}

/* The About hero uses the same visual system in a shorter, focused banner. */
.about-page .page-hero {
    padding: 56px 0 58px;
}

.about-page .page-hero > .container {
    width: min(960px, calc(100% - 64px));
    max-width: 960px;
}

/* Contact page factory location panel. */
.contact-location-section {
    padding-top: 0;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 48px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: var(--color-card);
    box-shadow: var(--shadow-dark-card);
}

.contact-location-copy h2 {
    margin: 14px 0 18px;
    color: var(--color-text-primary);
}

.contact-location-copy p {
    max-width: 420px;
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--color-text-primary);
    font-weight: 700;
}

.location-link:hover {
    color: #d35445;
}

.location-link span {
    color: #d35445;
    font-size: 18px;
}

.contact-map-frame {
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: calc(var(--radius-large) - 4px);
    background: #0b111a;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
}

/* Shared product-category pages follow the same compact page-banner structure as About. */
.category-page .category-page-hero {
    padding: 38px 0 40px;
}

.category-page .category-page-hero > .container {
    width: min(960px, calc(100% - 64px));
    max-width: 960px;
}

.category-page .category-page-hero h1 {
    max-width: 680px;
    font-size: clamp(38px, 4vw, 56px);
}

.category-page .category-page-hero .lead {
    margin: 14px 0 0;
    font-size: 17px;
    line-height: 1.55;
}

.category-page .product-gallery-section {
    padding: 40px 0 68px;
}

/* Product banners share one fixed desktop rhythm, even when category names differ in length. */
@media (min-width: 721px) {
    .products-page .page-hero,
    .category-page .category-page-hero {
        display: flex;
        height: 240px;
        min-height: 240px;
        max-height: 240px;
        align-items: center;
        padding: 20px 0;
    }

    .products-page .page-hero > .container,
    .category-page .category-page-hero > .container {
        width: min(1320px, calc(100% - 64px));
        max-width: 1320px;
    }

    .products-page .page-hero h1,
    .category-page .category-page-hero h1 {
        max-width: none;
        white-space: nowrap;
        font-size: clamp(38px, 3.25vw, 52px);
        line-height: 1;
    }

    .products-page .page-hero .lead,
    .category-page .category-page-hero .lead {
        max-width: 860px;
        margin-top: 10px;
        font-size: 16px;
    }
}

.category-benefits-section,
.category-series-section,
.category-compliance-section {
    position: relative;
}

.category-page-head {
    align-items: end;
}

.category-page-head > p {
    max-width: 470px;
}

.category-benefits-grid {
    gap: 26px;
}

.category-benefits-grid .mini-card {
    min-height: 238px;
    padding: 28px;
}

.category-benefits-grid .mini-card h3 {
    font-size: 22px;
}

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

.category-product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.category-product-media {
    position: relative;
    display: grid;
    min-height: 250px;
    overflow: hidden;
    place-items: center;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 92%, rgba(201, 74, 58, 0.14), transparent 48%),
        linear-gradient(145deg, #202938, #151a23);
}

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

.category-product-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.category-product-card h3 {
    margin-top: 4px;
    font-size: 25px;
}

.category-product-card p {
    margin: 14px 0 24px;
}

.category-product-card .quote {
    min-height: 42px;
    margin-top: auto;
    padding-inline: 18px;
    font-size: 14px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(46px, 7vw, 96px);
    align-items: center;
}

.product-detail-media {
    display: grid;
    min-height: 430px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 92%, rgba(201, 74, 58, 0.14), transparent 48%),
        linear-gradient(145deg, #202938, #151a23);
    box-shadow: var(--shadow-dark-card);
}

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

.product-detail-copy h2 {
    max-width: 560px;
    margin-bottom: 20px;
}

.product-detail-copy > p {
    max-width: 590px;
    margin: 18px 0 0;
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.product-detail-copy .core-list {
    margin-top: 24px;
}

.product-detail-copy .actions {
    margin-top: 28px;
}

/* Lightweight image-only product pages. */
.product-gallery-section {
    padding-top: 64px;
}

.product-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.product-image-panel {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background:
        radial-gradient(circle at 50% 92%, rgba(201, 74, 58, 0.14), transparent 48%),
        linear-gradient(145deg, #202938, #151a23);
    box-shadow: var(--shadow-dark-card);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

a.product-image-panel:hover,
a.product-image-panel:focus-visible {
    border-color: rgba(211, 84, 69, 0.42);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    transform: translateY(-4px);
}

.product-image-panel img {
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
}

.product-gallery-layout {
    width: min(1320px, calc(100% - 64px));
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
    gap: clamp(40px, 4vw, 64px);
    align-items: start;
}

.product-gallery-layout .product-sidebar {
    top: 112px;
    padding: 28px 26px 22px;
}

.product-sidebar h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.product-sidebar a {
    padding: 14px 0;
    line-height: 1.35;
}

.product-sidebar a.is-active {
    color: #fff;
    font-weight: 800;
}

.product-sidebar a.is-active::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px 1px 0;
    border-radius: 50%;
    background: var(--color-accent);
    content: "";
}

.product-gallery-layout .product-image-gallery {
    min-width: 0;
}

.product-image-gallery > a.product-image-panel > span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    background: rgba(15, 20, 29, 0.85);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

/* The all-model catalog uses a separate caption band so every SKU stays readable. */
.all-kids-scooters-page .all-models-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.all-kids-scooters-page .all-model-card {
    display: grid;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) auto;
    aspect-ratio: 1 / 1.08;
    background: #f3ebdd;
}

.all-kids-scooters-page .all-model-card img {
    grid-row: 1;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
}

/* Keep Model 1011 aligned with the catalog while showing its tall composition in full. */
.all-kids-scooters-page .all-model-card#model-1011 {
    background:
        radial-gradient(ellipse at 52% 88%, rgba(238, 243, 248, 0.78), transparent 48%),
        linear-gradient(145deg, #d5dce6, #c4ceda);
}

.all-kids-scooters-page .all-model-card#model-1011 img {
    padding: 16px;
    object-fit: contain;
    object-position: center;
}

.all-kids-scooters-page .product-image-gallery > a.product-image-panel.all-model-card > span {
    position: static;
    grid-row: 2;
    width: 100%;
    padding: 13px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    background: #1d2738;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

.all-kids-scooters-page .all-models-sidebar a {
    font-variant-numeric: tabular-nums;
}

/* Kids pogo catalog: preserve the supplied portrait image proportion for each colorway. */
.kids-pogo-page .pogo-catalog-content {
    min-width: 0;
}

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

.kids-pogo-page .pogo-catalog-head h2 {
    margin: 8px 0 0;
}

.kids-pogo-page .pogo-catalog-head p {
    max-width: 410px;
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.kids-pogo-page .pogo-stick-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
}

.kids-pogo-page .pogo-stick-card {
    display: grid;
    min-height: 0;
    grid-template-rows: auto auto;
    place-items: stretch;
    background: #c8cfd8;
}

.kids-pogo-page .pogo-stick-visual {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #c8cfd8;
}

.kids-pogo-page .pogo-stick-visual img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
}

.kids-pogo-page .pogo-stick-card > span {
    display: block;
    padding: 13px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #1d2738;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 980px) {
    .kids-pogo-page .pogo-stick-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .kids-pogo-page .pogo-catalog-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .kids-pogo-page .pogo-stick-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .all-kids-scooters-page .all-models-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .all-kids-scooters-page .all-models-gallery {
        grid-template-columns: 1fr;
    }
}

.product-image-panel.product-placeholder {
    display: flex;
    min-height: 360px;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
}

.product-placeholder .placeholder-kicker {
    display: block;
    margin: 0 0 12px;
    color: #e57869;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.product-placeholder h2 {
    max-width: 100%;
    margin: 0 0 12px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
}

.product-placeholder p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--color-text-secondary);
}

/* Foldable scooter model page: detailed model navigation, a two-column catalog, and buyer-facing specification sheet. */
.foldable-models-page .product-gallery-section {
    padding-bottom: 40px;
}

.foldable-models-page .model-image-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.foldable-models-page .model-image-gallery.uses-three-column-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.foldable-models-page .model-detail-content {
    min-width: 0;
}

.foldable-models-page .model-image-placeholder {
    min-height: 0;
    aspect-ratio: 1 / 1;
    scroll-margin-top: 132px;
}

.foldable-models-page .model-image-placeholder[hidden] {
    display: none;
}

.foldable-models-page .model-image-placeholder.has-product-image {
    background: #f3ebdd;
}

.foldable-models-page .model-image-placeholder.has-product-image > img {
    padding: 0;
    object-fit: cover;
}

/* Model 1011 needs more breathing room so the tall product stays fully inside its frame. */
.foldable-models-page .model-image-gallery.is-model-1011 .model-image-placeholder.has-product-image {
    background: #d9e0e9;
}

.foldable-models-page .model-image-gallery.is-model-1011 .model-image-placeholder.has-product-image > img {
    padding: 6%;
    object-fit: contain;
}

.foldable-models-page .model-image-placeholder.is-image-pending {
    border-style: dashed;
    border-color: rgba(201, 74, 58, 0.72);
    background:
        radial-gradient(circle at 50% 92%, rgba(201, 74, 58, 0.12), transparent 50%),
        #f3ebdd;
}

.foldable-models-page .model-image-placeholder.is-image-pending .placeholder-label {
    max-width: 180px;
    color: #293241;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.foldable-models-page .model-sidebar a {
    font-variant-numeric: tabular-nums;
}

.foldable-models-page .model-specifications {
    margin-top: 38px;
}

/* Detail-image slots keep stable model-specific IDs for later asset swaps. */
.foldable-models-page .model-detail-image-section {
    margin-top: 48px;
}

.model-detail-image-section-head {
    max-width: 740px;
    margin-bottom: 28px;
}

.model-detail-image-section-head .eyebrow {
    margin-bottom: 14px;
}

.model-detail-image-section-head h2 {
    margin-bottom: 14px;
}

.model-detail-image-section-head p {
    margin: 0;
    color: var(--color-text-secondary);
}

.foldable-models-page .model-detail-image-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.foldable-models-page .model-detail-image-panel {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.foldable-models-page .model-detail-image-panel.has-product-image {
    background: #d7dde5;
}

.foldable-models-page .model-detail-image-panel.has-product-image > img {
    padding: 0;
    object-fit: cover;
}

.foldable-models-page .model-detail-image-panel.is-image-pending {
    border-style: dashed;
    border-color: rgba(201, 74, 58, 0.72);
    background: #d7dde5;
}

.foldable-models-page .model-detail-image-panel.is-image-pending .placeholder-label {
    color: #3b4658;
    font-size: 14px;
}

.model-specifications-head {
    max-width: 740px;
    margin-bottom: 34px;
}

.model-specifications-head .eyebrow {
    margin-bottom: 14px;
}

.model-specifications-head h2 {
    margin-bottom: 16px;
}

.model-specifications-head p {
    margin: 0;
    color: var(--color-text-secondary);
}

.specification-table-wrap {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-card);
    box-shadow: var(--shadow-dark-card);
}

.specification-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-text-secondary);
    text-align: left;
}

.specification-table th,
.specification-table td {
    padding: 17px 22px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
    line-height: 1.45;
}

.specification-table thead th {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specification-table tbody th {
    color: var(--color-text-primary);
    font-weight: 700;
}

.specification-table tbody th:nth-of-type(1) {
    width: 24%;
}

.specification-table tbody th:nth-of-type(2) {
    width: 24%;
}

.specification-table tbody td {
    color: var(--color-text-muted-dark);
    font-style: italic;
}

.specification-table tbody tr:last-child th,
.specification-table tbody tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 720px) {
    .foldable-models-page .model-image-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .foldable-models-page .model-detail-image-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .specification-table thead {
        display: none;
    }

    .specification-table,
    .specification-table tbody,
    .specification-table tr,
    .specification-table th,
    .specification-table td {
        display: block;
        width: 100%;
    }

    .specification-table tbody tr {
        padding: 16px 18px;
        border-bottom: 1px solid var(--color-border);
    }

    .specification-table tbody th,
    .specification-table tbody td {
        padding: 0;
        border: 0;
    }

    .specification-table tbody th {
        margin-bottom: 6px;
    }

    .specification-table tbody td:not(:last-child) {
        margin-bottom: 16px;
    }

    .specification-table tbody tr:last-child {
        border-bottom: 0;
    }
}

@media (min-width: 721px) and (max-width: 1100px) {
    .foldable-models-page .model-image-gallery.uses-three-column-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .foldable-models-page .model-detail-image-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }
}

.product-placeholder .quote {
    width: fit-content;
    margin-top: auto;
}

.product-single-image {
    display: grid;
    min-height: 460px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 92%, rgba(201, 74, 58, 0.14), transparent 48%),
        linear-gradient(145deg, #202938, #151a23);
    box-shadow: var(--shadow-dark-card);
}

.product-single-image img {
    width: 100%;
    height: 100%;
    padding: 34px;
    object-fit: contain;
}

.category-compliance-section {
    background: linear-gradient(180deg, #101722, #0f141d);
}

.category-compliance-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: start;
}

.category-compliance-grid h2 {
    max-width: 520px;
}

.category-compliance-grid p {
    max-width: 650px;
    margin: 4px 0 0;
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.certification-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.certification-tags span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    color: #e5eaf1;
    background: #1b2230;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.category-quote-band .container {
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 42px;
}

.category-quote-band h2 {
    max-width: 650px;
}

.category-quote-action {
    display: flex;
    justify-content: flex-end;
}

.category-quote-action .quote {
    min-width: 210px;
}

@media (max-width: 980px) {
    .category-compliance-grid,
    .category-quote-band .container {
        grid-template-columns: 1fr;
    }

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

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

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

    .category-compliance-grid {
        gap: 26px;
    }

    .category-quote-action {
        justify-content: flex-start;
    }
}

/* Shared navigation: four primary links with About-related pages grouped below About. */
.menu-toggle {
    display: none;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-primary);
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.menu {
    margin-left: auto;
}

.menu-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-dropdown > a {
    padding-right: 4px;
}

.submenu-toggle {
    display: inline-grid;
    width: 24px;
    height: 32px;
    padding: 0;
    border: 0;
    place-items: center;
    color: inherit;
    background: transparent;
    font: inherit;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    z-index: 30;
    top: 100%;
    left: -16px;
    display: grid;
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    color: var(--color-text-primary);
    background: #151a23;
    box-shadow: var(--shadow-dark-card);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--color-text-secondary);
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.07);
}

.menu-dropdown:hover .dropdown-menu,
.menu-dropdown:focus-within .dropdown-menu,
.menu-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Spread the four desktop navigation items across the space between the brand and CTA. */
@media (min-width: 721px) {
    .menu {
        flex: 1 1 auto;
        justify-content: space-evenly;
        margin: 0 28px;
    }
}

@media (max-width: 720px) {
    .products-page .page-hero {
        display: flex;
        min-height: 200px;
        align-items: center;
        padding: 22px 0;
    }

    .products-page .page-hero > .container {
        width: calc(100% - 32px);
    }

    .blog-page .page-hero {
        padding: 40px 0 44px;
    }

    .blog-page .page-hero > .container {
        width: calc(100% - 32px);
    }

    .about-page .page-hero {
        padding: 42px 0 46px;
    }

    .about-page .page-hero > .container {
        width: calc(100% - 32px);
    }

    .contact-location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 230px;
        height: 230px;
    }

    .category-page .category-page-hero {
        display: flex;
        min-height: 200px;
        align-items: center;
        padding: 22px 0;
    }

    .category-page .category-page-hero > .container {
        width: calc(100% - 32px);
    }

    .products-page .page-hero h1,
    .category-page .category-page-hero h1 {
        font-size: clamp(36px, 10vw, 46px);
    }

    .products-page .page-hero .lead,
    .category-page .category-page-hero .lead {
        font-size: 16px;
    }

    .category-page .product-gallery-section {
        padding: 30px 0 52px;
    }

    .category-product-grid {
        grid-template-columns: 1fr;
    }

    .category-page-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .category-benefits-grid .mini-card {
        min-height: 0;
        padding: 24px;
    }

    .category-product-media {
        min-height: 230px;
    }

    .product-detail-media {
        min-height: 310px;
    }

    .product-image-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-layout {
        width: min(920px, calc(100% - 48px));
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-gallery-layout .product-sidebar {
        position: static;
    }

    .product-image-panel {
        min-height: 290px;
    }

    .product-gallery-layout {
        width: calc(100% - 32px);
    }

    .product-single-image {
        min-height: 320px;
    }

    .product-detail-copy > p {
        font-size: 16px;
    }

    .category-compliance-grid p {
        font-size: 16px;
    }

    .nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
    }

    .nav .logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        align-items: center;
        justify-content: center;
    }

    .nav > .quote {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
    }

    .menu {
        display: none;
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        margin: 0;
        border-top: 1px solid var(--color-border);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        font-size: 15px;
    }

    .menu.is-open {
        display: flex;
    }

    .menu > a,
    .menu-dropdown > a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .menu-dropdown {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .menu-dropdown > a {
        grid-column: 1;
        border-bottom: 0;
    }

    .submenu-toggle {
        grid-column: 2;
        width: 44px;
        height: 48px;
        color: var(--color-text-primary);
    }

    .dropdown-menu {
        position: static;
        display: none;
        grid-column: 1 / -1;
        min-width: 0;
        margin: 0 0 12px;
        padding: 6px 0 6px 16px;
        border: 0;
        border-left: 1px solid var(--color-border);
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
    }

    .menu-dropdown.is-open .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        padding: 10px 12px;
    }

}

/* Keep every About-menu banner on the same compact type scale as Products. */
.about-page .page-hero h1,
.blog-page .page-hero h1,
.oem-solution-page .oem-hero h1,
.distributors-page .distributor-hero h1 {
    letter-spacing: -0.05em;
}

.about-page .page-hero .lead,
.blog-page .page-hero .lead,
.oem-solution-page .oem-hero .lead,
.distributors-page .distributor-hero .lead {
    font-size: 16px;
}

@media (min-width: 721px) {
    .about-page .page-hero h1,
    .blog-page .page-hero h1,
    .oem-solution-page .oem-hero h1,
    .distributors-page .distributor-hero h1 {
        font-size: clamp(38px, 3.25vw, 52px);
        line-height: 1;
    }
}

@media (max-width: 720px) {
    .about-page .page-hero h1,
    .blog-page .page-hero h1,
    .oem-solution-page .oem-hero h1,
    .distributors-page .distributor-hero h1 {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.05;
    }
}
