﻿/*
Theme Name: XCMOTOPARTS
Theme URI: https://example.com/
Author: Foshan Xiongchuan Hardware Products Co Ltd
Description: B2B factory website theme for motorcycle rear racks crash bars three-wheeler spare parts and custom tubular metal parts
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: xcmotoparts
*/

@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #333333;
  --muted: #444444;
  --line: #dfe5e8;
  --soft: #f6f8f9;
  --panel: #ffffff;
  --navy: #333333;
  --accent: #0f806c;
  --accent-dark: #0a6959;
  --accent-soft: #e5f2ef;
  --footer-green: #0f806c;
  --footer-green-dark: #0a6959;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
  --lift-shadow: 0 14px 28px -10px rgba(15, 128, 108, .2), 0 8px 16px -12px rgba(0, 0, 0, .12);
  --radius: 8px;
  --layout-max: 1500px;
  --layout-gutter: clamp(24px, 5vw, 72px);
  --font-display: "Roboto Slab", Georgia, "Times New Roman", serif;
  --font-body: "Roboto Slab", Georgia, "Times New Roman", serif;
  --ease-taste: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.home-page,
.hero-header-page {
  background: #08121a;
}

.home-page main,
.hero-header-page main {
  background: #fff;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: all .4s var(--ease-taste);
}

.home-page .site-header,
.hero-header-page .site-header {
  position: fixed;
  top: -1px;
  right: 0;
  left: 0;
  min-height: 86px;
  padding: 12px max(42px, calc((100% - 1440px) / 2 + 42px));
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 112px;
  min-width: 112px;
  height: 56px;
  transition: all .4s var(--ease-taste);
}

.brand-logo {
  flex: 0 0 auto;
  width: 112px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(20, 40, 58, .16));
  transition: all .4s var(--ease-taste);
}

.home-page .brand,
.hero-header-page .brand {
  width: 128px;
  min-width: 128px;
  height: 58px;
}

.home-page .brand-logo,
.hero-header-page .brand-logo {
  width: 128px;
  max-height: 54px;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .5));
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 28px rgba(15, 128, 108, .24));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 28px);
  width: 100%;
  font-size: clamp(.92rem, 1.1vw, 1.08rem);
}

.home-page .primary-nav,
.hero-header-page .primary-nav {
  flex: 0 1 auto;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 36px);
  width: auto;
  margin-left: clamp(48px, 8vw, 140px);
  margin-right: clamp(18px, 2.8vw, 44px);
}

.primary-nav > a,
.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 0;
  color: #2e3034;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 850;
}

.home-page .primary-nav > a,
.home-page .nav-dropdown > summary,
.hero-header-page .primary-nav > a,
.hero-header-page .nav-dropdown > summary {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible {
  background: transparent;
  color: var(--footer-green-dark);
  outline: none;
}

.home-page .primary-nav > a:hover,
.home-page .primary-nav > a:focus-visible,
.home-page .nav-dropdown > summary:hover,
.home-page .nav-dropdown > summary:focus-visible,
.hero-header-page .primary-nav > a:hover,
.hero-header-page .primary-nav > a:focus-visible,
.hero-header-page .nav-dropdown > summary:hover,
.hero-header-page .nav-dropdown > summary:focus-visible {
  color: #9ce6ce;
}

.primary-nav > a::after,
.nav-dropdown > summary::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  content: "";
  background: var(--footer-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.active::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown > summary:focus-visible::after,
.nav-dropdown.active > summary::after,
.nav-dropdown[open] > summary::after {
  transform: scaleX(1);
}

.primary-nav > a.active,
.nav-dropdown.active > summary,
.nav-dropdown[open] > summary {
  color: var(--footer-green-dark);
}

.home-page .primary-nav > a.active,
.home-page .nav-dropdown.active > summary,
.home-page .nav-dropdown[open] > summary,
.hero-header-page .primary-nav > a.active,
.hero-header-page .nav-dropdown.active > summary,
.hero-header-page .nav-dropdown[open] > summary {
  color: #9ce6ce;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 270px;
  padding: 18px 12px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.home-page .dropdown-panel,
.hero-header-page .dropdown-panel {
  background: rgba(7, 20, 28, .94);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  color: #344555;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.28;
}

.home-page .dropdown-panel a,
.hero-header-page .dropdown-panel a {
  color: rgba(255, 255, 255, .84);
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--soft);
  outline: none;
}

.home-page .dropdown-panel a:hover,
.home-page .dropdown-panel a:focus-visible,
.hero-header-page .dropdown-panel a:hover,
.hero-header-page .dropdown-panel a:focus-visible {
  color: #fff;
  background: rgba(156, 230, 206, .14);
}

.qa-dropdown .qa-panel {
  left: auto;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 4px 10px;
  width: min(760px, calc(100vw - 40px));
  max-height: min(70vh, 640px);
  overflow-y: auto;
}

.qa-panel a {
  line-height: 1.35;
}

.nav-right .dropdown-panel {
  right: 0;
  left: auto;
}

.header-quote {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--footer-green);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(9, 73, 65, .2);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.home-page .header-quote,
.hero-header-page .header-quote {
  margin-left: 0;
  background: rgba(15, 128, 108, .92);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
}

.header-quote:hover,
.header-quote:focus-visible {
  background: var(--footer-green-dark);
  outline: none;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.home-page .menu-toggle,
.hero-header-page .menu-toggle {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.home-page .menu-toggle span:not(.sr-only),
.hero-header-page .menu-toggle span:not(.sr-only) {
  background: #fff;
}

.home-page .site-header.nav-open,
.hero-header-page .site-header.nav-open {
  background: rgba(7, 20, 28, .94);
  backdrop-filter: blur(12px);
}

.home-page .site-header.is-scrolled,
.hero-header-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 31, 45, .1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled.nav-open,
.hero-header-page .site-header.is-scrolled.nav-open {
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
}

.home-page .site-header.is-scrolled .brand-logo,
.hero-header-page .site-header.is-scrolled .brand-logo {
  filter: drop-shadow(0 8px 16px rgba(20, 40, 58, .18));
}

.home-page .site-header.is-scrolled .primary-nav > a,
.home-page .site-header.is-scrolled .nav-dropdown > summary,
.hero-header-page .site-header.is-scrolled .primary-nav > a,
.hero-header-page .site-header.is-scrolled .nav-dropdown > summary {
  color: #2e3034;
  text-shadow: none;
}

.home-page .site-header.is-scrolled .primary-nav > a:hover,
.home-page .site-header.is-scrolled .primary-nav > a:focus-visible,
.home-page .site-header.is-scrolled .primary-nav > a.active,
.home-page .site-header.is-scrolled .nav-dropdown > summary:hover,
.home-page .site-header.is-scrolled .nav-dropdown > summary:focus-visible,
.home-page .site-header.is-scrolled .nav-dropdown.active > summary,
.home-page .site-header.is-scrolled .nav-dropdown[open] > summary,
.hero-header-page .site-header.is-scrolled .primary-nav > a:hover,
.hero-header-page .site-header.is-scrolled .primary-nav > a:focus-visible,
.hero-header-page .site-header.is-scrolled .primary-nav > a.active,
.hero-header-page .site-header.is-scrolled .nav-dropdown > summary:hover,
.hero-header-page .site-header.is-scrolled .nav-dropdown > summary:focus-visible,
.hero-header-page .site-header.is-scrolled .nav-dropdown.active > summary,
.hero-header-page .site-header.is-scrolled .nav-dropdown[open] > summary {
  color: var(--footer-green-dark);
}

.home-page .site-header.is-scrolled .dropdown-panel,
.hero-header-page .site-header.is-scrolled .dropdown-panel {
  background: rgba(255, 255, 255, .98);
  border-color: var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.home-page .site-header.is-scrolled .dropdown-panel a,
.hero-header-page .site-header.is-scrolled .dropdown-panel a {
  color: #344555;
}

.home-page .site-header.is-scrolled .dropdown-panel a:hover,
.home-page .site-header.is-scrolled .dropdown-panel a:focus-visible,
.hero-header-page .site-header.is-scrolled .dropdown-panel a:hover,
.hero-header-page .site-header.is-scrolled .dropdown-panel a:focus-visible {
  color: var(--footer-green-dark);
  background: var(--soft);
}

.home-page .site-header.is-scrolled .header-quote,
.hero-header-page .site-header.is-scrolled .header-quote {
  background: var(--footer-green);
  box-shadow: 0 10px 22px rgba(9, 73, 65, .16);
}

.home-page .site-header.is-scrolled .language-switch,
.hero-header-page .site-header.is-scrolled .language-switch {
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  border-color: rgba(17, 31, 45, .14);
}

.home-page .site-header.is-scrolled .menu-toggle,
.hero-header-page .site-header.is-scrolled .menu-toggle {
  background: rgba(255, 255, 255, .92);
  border-color: var(--line);
}

.home-page .site-header.is-scrolled .menu-toggle span:not(.sr-only),
.hero-header-page .site-header.is-scrolled .menu-toggle span:not(.sr-only) {
  background: var(--navy);
}

.section {
  width: min(var(--layout-max), calc(100% - var(--layout-gutter)));
  margin: 0 auto;
  padding: 68px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding: 68px max(24px, calc((100% - var(--layout-max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.875rem, 2.25vw, 2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.lead {
  max-width: 660px;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  padding: clamp(112px, 13vh, 148px) 0 clamp(72px, 9vh, 112px);
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 8, 13, .64), rgba(3, 8, 13, .08) 28%, rgba(3, 8, 13, .36) 100%),
    radial-gradient(circle at 50% 48%, rgba(7, 14, 22, .2), transparent 38%),
    linear-gradient(90deg, rgba(6, 14, 22, .64), rgba(6, 14, 22, .34) 50%, rgba(6, 14, 22, .6)),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(3, 8, 13, .38) 100%);
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #08121a;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) contrast(1.06) saturate(.9);
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1060px, calc(100% - 40px));
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 16px;
  color: #fff;
  background: rgba(15, 128, 108, .88);
  border: 1px solid rgba(156, 230, 206, .38);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
  font-size: .9rem;
  font-weight: 850;
}

.hero .eyebrow {
  color: #9ce6ce;
  font-size: .86rem;
}

.hero h1 {
  max-width: 1040px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .34);
}

.hero .lead {
  max-width: 800px;
  color: #d7e2e8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .42);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border-color: rgba(156, 230, 206, .72);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof-row span {
  min-height: 36px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-scroll {
  position: absolute;
  right: 50%;
  bottom: 28px;
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  transform: translateX(50%);
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: .35;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

.button-row,
.center-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.center-action {
  justify-content: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: normal;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.button::after,
.header-quote::after,
.category-card a::after,
.model-card a::after {
  content: "鈥?;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  font-size: 1.2em;
  line-height: 1;
  opacity: .78;
  transform: translateX(0);
  transition: all .4s var(--ease-taste);
}

.button:hover::after,
.button:focus-visible::after,
.header-quote:hover::after,
.header-quote:focus-visible::after,
.category-card a:hover::after,
.category-card a:focus-visible::after,
.model-card a:hover::after,
.model-card a:focus-visible::after {
  opacity: 1;
  transform: translateX(4px);
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.solution-form-cta {
  isolation: isolate;
  overflow: hidden;
  padding-right: 18px;
  box-shadow: var(--shadow);
}

.solution-form-cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 58%),
    linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transform: translateX(-110%);
  transition: all .4s var(--ease-taste);
}

.solution-form-cta::after {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  content: ">";
  font-size: .9em;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .9;
}

.solution-form-cta.button.secondary::before {
  background:
    linear-gradient(90deg, rgba(12, 134, 114, .1), rgba(12, 134, 114, 0) 62%),
    linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
}

.solution-form-cta:hover,
.solution-form-cta:focus-visible {
  transform: translate3d(4px, -2px, 0);
}

.solution-form-cta:hover::before,
.solution-form-cta:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.solution-form-cta:hover::after,
.solution-form-cta:focus-visible::after {
  transform: translateX(5px);
}

.media-placeholder {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: #395064;
  background:
    linear-gradient(135deg, rgba(63, 111, 125, .08), rgba(20, 40, 58, .03)),
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(20, 40, 58, .045) 13px 14px);
  border: 1px dashed #9fb0bf;
  border-radius: var(--radius);
}

.media-placeholder span {
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.media-placeholder strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.media-placeholder small {
  color: var(--muted);
}

.media-photo {
  position: relative;
  display: block;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: #eef3f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-photo figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  color: #fff;
  background: rgba(10, 22, 32, .72);
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 800;
}

.media-placeholder.small,
.media-photo.small,
.media-placeholder.process,
.media-photo.process,
.media-placeholder.model {
  min-height: 154px;
  padding: 16px;
}

.media-photo.small,
.media-photo.process {
  padding: 0;
}

.media-photo.process-wide {
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
}

.media-photo.process-wide img {
  min-height: 0;
  object-fit: cover;
}

.category-card .media-placeholder,
.category-card .media-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #fff;
}

.category-card .media-photo img {
  min-height: 0;
  object-fit: contain;
}

.media-placeholder.mini,
.media-photo.mini {
  aspect-ratio: 5 / 4;
  min-height: 0;
  padding: 14px;
}

.media-photo.mini {
  padding: 0;
}

.media-photo.mini::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 21, 29, .02), rgba(8, 21, 29, .34)),
    radial-gradient(circle at 76% 18%, rgba(120, 187, 196, .16), transparent 34%);
  pointer-events: none;
}

.media-photo.mini img {
  min-height: 0;
  filter: contrast(1.04) saturate(.92);
}

.media-photo.mini figcaption {
  z-index: 2;
}

.category-grid,
.model-grid,
.process-grid,
.packaging-grid,
.about-media-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-card,
.model-card,
.problem-card,
.solution-card,
.process-grid article,
.inspection-card,
.response-list article,
.timeline li,
.faq-list details,
.inquiry-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.category-card,
.model-card,
.problem-card,
.solution-card,
.process-grid article {
  padding: 18px;
}

.category-card {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(17, 31, 45, .06);
}

.category-card a,
.model-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  max-width: 100%;
  padding: 8px 12px;
  color: var(--accent-dark);
  border: 1px solid rgba(63, 111, 125, .2);
  border-radius: 6px;
  background: rgba(230, 240, 242, .55);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: normal;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
}

.category-card a:hover,
.category-card a:focus-visible,
.model-card a:hover,
.model-card a:focus-visible {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 800;
}

.product-preview-section {
  padding-top: 76px;
}

.product-series-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.product-series-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}

.product-series-row a:hover,
.product-series-row a:focus-visible {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
  transform: translateY(-2px);
}

.category-card h3 {
  min-height: 52px;
}

.category-card p,
.model-card p,
.process-grid p {
  margin-bottom: 14px;
}

.category-card p {
  min-height: 78px;
}

.all-products-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background: #f4f5f4;
}

.product-category-sidebar {
  position: sticky;
  top: 104px;
  background: #f7f7f6;
  border: 1px solid rgba(17, 31, 45, .1);
}

.product-category-sidebar h2 {
  margin: 0;
  padding: 24px 22px 20px;
  font-size: 1.58rem;
}

.product-category-menu {
  border-top: 1px solid rgba(17, 31, 45, .1);
}

.product-category-group,
.product-category-link {
  border-bottom: 1px solid rgba(17, 31, 45, .1);
}

.product-category-group summary,
.product-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 22px;
  color: var(--ink);
  background: #f7f7f6;
  font-weight: 850;
  line-height: 1.2;
}

.product-category-group summary {
  cursor: pointer;
  list-style: none;
}

.product-category-group summary::-webkit-details-marker {
  display: none;
}

.product-category-group summary::after {
  content: "+";
  flex: 0 0 auto;
  margin-left: 12px;
  color: var(--accent-dark);
  font-size: 1.16rem;
  font-weight: 800;
}

.product-category-group[open] summary {
  color: var(--accent-dark);
  background: #fff;
}

.product-category-group[open] summary::after {
  content: "-";
}

.product-category-link:hover,
.product-category-link:focus-visible,
.product-category-group summary:hover,
.product-category-group summary:focus-visible {
  color: var(--accent-dark);
  background: #fff;
  outline: none;
}

.product-model-list {
  display: grid;
  gap: 0;
  padding: 6px 0 10px;
  background: #fff;
}

.product-model-list a {
  padding: 9px 22px 9px 34px;
  color: #4f5b63;
  border-top: 1px solid rgba(17, 31, 45, .06);
  font-size: .95rem;
  line-height: 1.25;
}

.product-model-list a:hover,
.product-model-list a:focus-visible {
  color: var(--accent-dark);
  background: rgba(230, 240, 242, .55);
  outline: none;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-showcase-card {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 31, 45, .08);
  color: #fff;
  box-shadow: 0 18px 40px rgba(17, 31, 45, .08);
}

.product-showcase-card::after {
  position: absolute;
  inset: 34% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(5, 13, 18, .78) 100%);
  pointer-events: none;
}

.product-showcase-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .28s ease;
}

.product-showcase-card span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .38);
}

.product-showcase-card:hover,
.product-showcase-card:focus-visible {
  outline: none;
  box-shadow: 0 24px 54px rgba(17, 31, 45, .14);
}

.product-showcase-card:hover img,
.product-showcase-card:focus-visible img {
  transform: scale(1.035);
}

.product-category-link.active {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: inset 4px 0 0 var(--accent-dark);
}

.rear-rack-products-panel {
  min-width: 0;
}

.product-category-panel[hidden] {
  display: none;
}

.rear-rack-products-heading {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.rear-rack-products-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.14;
}

.rear-rack-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rear-rack-product-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(17, 31, 45, .08);
}

.crash-bar-product-card {
  color: var(--ink);
}

.rear-rack-product-card:hover,
.rear-rack-product-card:focus-visible {
  color: var(--accent-dark);
  outline: 2px solid rgba(20, 121, 136, .28);
  outline-offset: 2px;
}

.rear-rack-product-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: #f7f8f8;
}

.rear-rack-product-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rear-rack-product-body {
  display: block;
  padding: 14px 15px 16px;
  border-top: 1px solid rgba(17, 31, 45, .07);
}

.rear-rack-product-body strong {
  display: block;
  color: inherit;
  font-size: .98rem;
  line-height: 1.3;
}

.rear-rack-product-body small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.three-wheeler-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.three-wheeler-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(17, 31, 45, .08);
}

.three-wheeler-product-card:hover,
.three-wheeler-product-card:focus-visible {
  color: var(--accent-dark);
  outline: 2px solid rgba(20, 121, 136, .28);
  outline-offset: 2px;
}

.three-wheeler-product-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f7f8f8;
}

.three-wheeler-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.three-wheeler-product-body {
  display: block;
  padding: 14px 15px 16px;
  border-top: 1px solid rgba(17, 31, 45, .07);
}

.three-wheeler-product-body strong {
  display: block;
  color: inherit;
  font-size: .98rem;
  line-height: 1.3;
}

.three-wheeler-product-body small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.rear-rack-detail-section {
  background: #fff;
}

.crash-bar-detail-section {
  background: #fff;
}

.product-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .92rem;
}

.product-breadcrumb a {
  color: var(--accent-dark);
  font-weight: 800;
}

.rear-rack-detail-layout {
  display: grid;
  grid-template-columns: minmax(520px, 58%) minmax(340px, 1fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

.rear-rack-detail-gallery {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.rear-rack-thumbs {
  display: grid;
  gap: 10px;
  max-height: min(720px, 74vh);
  overflow-y: auto;
  padding-right: 4px;
  align-content: start;
}

.rear-rack-thumb {
  display: grid;
  place-items: center;
  width: 82px;
  aspect-ratio: 1 / 1;
  padding: 4px;
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(17, 31, 45, .1);
}

.rear-rack-thumb.active,
.rear-rack-thumb:hover,
.rear-rack-thumb:focus-visible {
  border-color: var(--accent-dark);
  outline: none;
}

.rear-rack-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rear-rack-main-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  max-height: min(720px, 74vh);
  padding: clamp(12px, 2vw, 22px);
  overflow: hidden;
  background: #f4f6f6;
}

.rear-rack-main-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rear-rack-detail-info h1 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: #3a3a3a;
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  line-height: 1.14;
}

.rear-rack-detail-info p {
  margin: 0 0 18px;
  color: #3f3f3f;
  font-size: 1.02rem;
  line-height: 1.6;
}

.rear-rack-spec-table {
  width: 100%;
  margin: 0 0 28px;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  color: #3a3a3a;
  font-size: 1.02rem;
}

.rear-rack-spec-table tr:nth-child(odd) {
  background: #f1f1f1;
}

.rear-rack-spec-table tr:nth-child(even) {
  background: #fff;
}

.rear-rack-spec-table th,
.rear-rack-spec-table td {
  width: 50%;
  padding: 11px 18px;
  text-align: center;
  border: 1px solid #e5e5e5;
  line-height: 1.35;
}

.rear-rack-spec-table th {
  font-weight: 850;
}

.detail-support-list {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #f4f7f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-support-list strong {
  color: var(--green);
}

.detail-support-list span {
  font-size: .95rem;
  line-height: 1.5;
}

.rear-rack-sample-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.rear-rack-sample-button:hover,
.rear-rack-sample-button:focus-visible {
  background: var(--ink);
  color: #fff;
  outline: none;
}

.blogs-archive-hero {
  display: grid;
  min-height: clamp(180px, 21vw, 260px);
  place-items: center;
  padding: clamp(72px, 8vw, 96px) max(24px, calc((100% - var(--layout-max)) / 2)) clamp(36px, 5vw, 54px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 20, 25, .58), rgba(5, 20, 25, .66)),
    url("assets/images/inner-page-moto-parts-hero.webp") center 43% / cover no-repeat;
}

.blogs-archive-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 3.6vw, 3.45rem);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.blog-list-section {
  background: #fff;
}

.blog-list-section .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.blog-list-section .section-heading h2 {
  max-width: 680px;
}

.blog-list-section .section-heading p {
  max-width: 760px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.5vw, 58px) clamp(34px, 5vw, 72px);
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(0, .92fr);
  gap: clamp(18px, 2.3vw, 32px);
  align-items: start;
  min-height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.blog-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.16;
  text-wrap: balance;
}

.blog-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card-media {
  display: block;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: var(--soft);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 11px;
  align-content: start;
  min-width: 0;
  padding-top: 2px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-date {
  color: #7b858a;
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.blog-card a {
  justify-self: start;
  color: var(--navy);
  font-weight: 800;
}

.blog-card-link {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 2px 0;
  background: transparent;
  color: var(--navy) !important;
  text-decoration: none;
}

.blog-source-link {
  font-size: .88rem;
}

.blog-card a:hover,
.blog-card a:focus-visible {
  color: var(--navy);
  outline: none;
}

.blog-card-link:hover,
.blog-card-link:focus-visible {
  background: transparent;
  color: var(--accent-dark) !important;
  text-decoration: underline;
}

.blog-card:hover {
  box-shadow: none;
  transform: none;
}

.blog-article-section {
  background: linear-gradient(180deg, #fff 0%, #f5f7f7 100%);
  padding-bottom: 24px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 32px;
  align-items: start;
}

.blog-article-content,
.blog-toc {
  border: 1px solid rgba(8, 33, 53, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 33, 53, .07);
}

.blog-article-content {
  padding: 34px;
}

.blog-article-content h2 {
  margin: 30px 0 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.16;
  scroll-margin-top: 112px;
}

.blog-article-content h3 {
  scroll-margin-top: 112px;
}

.blog-article-content p,
.blog-article-content li {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.72;
}

.blog-article-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.blog-article-content a {
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-post-tags {
  margin-top: 28px;
  border-top: 1px solid rgba(8, 33, 53, .12);
  padding-top: 16px;
  color: var(--muted) !important;
  font-size: .92rem !important;
}

.blog-post-byline {
  margin: 0 0 28px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color, #d9dedb);
  border-bottom: 1px solid var(--border-color, #d9dedb);
  color: #4d5652;
  font-size: 0.92rem;
}

.blog-post-byline p {
  margin: 4px 0;
}

.blog-article-cta {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding: 24px;
  background: var(--accent-soft);
  border: 1px solid rgba(15, 128, 108, .22);
  border-radius: 8px;
}

.blog-article-cta h2 {
  margin: 0;
  color: var(--accent-dark);
}

.blog-article-cta p {
  margin: 0;
}

.blog-article-cta .button {
  justify-self: start;
  margin-top: 4px;
}

.blog-source-note {
  margin-top: 34px;
  border-top: 1px solid rgba(8, 33, 53, .12);
  padding-top: 18px;
  font-size: .95rem;
}

.blog-source-note a {
  color: var(--accent-dark);
  font-weight: 850;
}

.blog-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
  padding: 22px;
}

.blog-toc-panel {
  margin: 0;
}

.blog-toc-panel summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

.blog-toc-panel summary::-webkit-details-marker {
  display: none;
}

.blog-toc-panel summary::after {
  float: right;
  margin-left: 10px;
  color: var(--accent-dark);
  content: "▾";
  font-size: 1rem;
}

.blog-toc-panel:not([open]) summary::after {
  content: "▸";
}

.blog-toc-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: blog-toc;
}

.blog-toc-item {
  counter-increment: blog-toc;
}

.blog-toc-item-level-3 {
  padding-left: 16px;
}

.blog-toc-list a {
  display: block;
  border-top: 1px solid rgba(8, 33, 53, .1);
  padding: 10px 0;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.35;
  text-decoration: none;
}

.blog-toc-list a::before {
  content: counters(blog-toc, ".") ". ";
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.blog-toc-list a:hover,
.blog-toc-list a:focus-visible {
  color: var(--accent-dark);
  outline: none;
}

.blog-toc-actions {
  margin-top: 2px;
}

.blog-toc-actions h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.75rem;
}

.blog-toc-actions a {
  display: block;
  border-top: 1px solid rgba(8, 33, 53, .1);
  padding: 10px 0;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.35;
  text-decoration: none;
}

.blog-toc-actions a:hover,
.blog-toc-actions a:focus-visible {
  color: var(--accent-dark);
  outline: none;
}

.blog-quote-faq {
  margin-top: 0;
}

.blog-related-products {
  padding-top: 24px;
  padding-bottom: clamp(48px, 6vw, 82px);
  background: #fff;
}

.blog-related-products-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-related-products-heading {
  margin-bottom: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 31, 45, .14);
}

.blog-related-products-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  text-wrap: balance;
}

.blog-related-products-heading h2::after {
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  background: var(--accent);
  content: "";
}

.blog-related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.blog-related-product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17, 31, 45, .12);
  border-radius: 8px;
  text-decoration: none;
}

.blog-related-product-card:hover,
.blog-related-product-card:focus-visible {
  color: var(--accent-dark);
  outline: 2px solid rgba(15, 128, 108, .34);
  outline-offset: 2px;
}

.blog-related-product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.blog-related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-product-body {
  display: grid;
  gap: 7px;
  padding: 15px 16px 16px;
}

.blog-related-product-body strong {
  color: inherit;
  font-size: 1rem;
  line-height: 1.32;
}

.blog-related-product-body span {
  color: var(--accent-dark);
  font-size: .88rem;
  font-weight: 800;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.brand-list span {
  padding: 8px 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.problem-grid,
.inspection-grid,
.response-list {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-preview-section {
  width: 100%;
  max-width: none;
  padding: 82px max(24px, calc((100% - var(--layout-max)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 128, 108, .09), transparent 34%),
    linear-gradient(180deg, #f5f8f8 0%, #ffffff 100%);
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 220px;
  padding: 24px 20px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(17, 31, 45, .07);
}

.solution-card::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 96px;
  height: 96px;
  content: "";
  background: rgba(15, 128, 108, .08);
  border-radius: 50%;
}

.solution-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.solution-card h3 {
  font-size: 1.16rem;
}

.solution-card p {
  margin-bottom: 0;
}

.factory-intro {
  width: min(1480px, calc(100% - 64px));
  padding-top: 58px;
  padding-bottom: 52px;
}

.factory-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 4.6vw, 72px);
  align-items: center;
}

.factory-intro-copy {
  max-width: 720px;
}

.factory-intro-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #222a31;
  font-size: clamp(32px, 2.55vw, 43px);
  line-height: 1.12;
  font-weight: 800;
  text-wrap: balance;
}

.factory-intro-copy h2 span {
  display: block;
  color: var(--accent-dark);
}

.factory-intro-text {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 0;
}

.factory-intro-text p {
  margin: 0;
  color: #2f3b45;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
}

.certification-strip {
  max-width: 720px;
  margin: 24px 0 22px;
}

.certification-strip p {
  margin: 0 0 14px;
  max-width: 650px;
  color: #43515e;
  font-size: .96rem;
  line-height: 1.55;
}

.certification-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.certification-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 76px;
  aspect-ratio: 1 / 1;
  padding: 9px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.certification-image {
  display: block;
  width: auto;
  max-width: 68px;
  height: 52px;
  margin: 0;
  object-fit: contain;
}

.iso-image {
  max-width: 64px;
}

.ce-image {
  height: 48px;
  max-width: 82px;
}

.dot-image {
  height: 58px;
  max-width: 70px;
  transform: translate(-4px, -7px);
}

.factory-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.factory-points span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: #243646;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 750;
}

.factory-intro-photo {
  align-self: start;
  aspect-ratio: 941 / 1672;
  width: min(100%, 620px);
  margin-left: auto;
  min-height: 430px;
  max-height: 820px;
  background: #eef3f4;
  box-shadow: 0 26px 54px rgba(8, 24, 34, .15);
}

.factory-intro-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 17, 23, .04), rgba(5, 17, 23, .22)),
    radial-gradient(circle at 78% 18%, rgba(86, 157, 176, .18), transparent 36%);
  pointer-events: none;
}

.factory-intro-photo img {
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04) saturate(.94);
}

.factory-intro-photo figcaption {
  z-index: 2;
}

.problem-card h3,
.inspection-card strong,
.response-list strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}

.problem-card p,
.inspection-card p,
.response-list p {
  margin: 8px 0 0;
}

.model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.visual-split {
  align-items: center;
}

.equipment-visual-stack {
  display: grid;
  gap: 18px;
}

.technical-list,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.technical-list span,
.check-grid span {
  padding: 14px 16px;
  color: #243646;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list article {
  display: grid;
  align-content: start;
  min-height: 190px;
  border-left: 3px solid var(--accent);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: custom-step;
}

.timeline li {
  min-height: 180px;
  padding: 18px;
  counter-increment: custom-step;
}

.timeline li::before {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  content: counter(custom-step);
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
}

.custom-development-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 94px max(24px, calc((100% - var(--layout-max)) / 2)) 92px;
  color: #fff;
  overflow: hidden;
  background-image:
    linear-gradient(110deg, rgba(5, 18, 23, .72) 0%, rgba(10, 87, 76, .42) 52%, rgba(6, 20, 25, .72) 100%),
    url("assets/images/custom-development-parts-wall-bg.webp");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
}

.custom-development-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 28%, rgba(145, 228, 211, .12), transparent 36%),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: .55;
  pointer-events: none;
}

.custom-development-shell {
  position: relative;
  z-index: 1;
}

.custom-development-heading {
  max-width: 860px;
}

.custom-development-heading h2 {
  color: #fff;
  text-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

.custom-development-heading p {
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 10px 24px rgba(0, 0, 0, .38);
}

.development-stages {
  display: grid;
  grid-template-columns: 1fr .92fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.development-stage {
  padding: 24px;
  background: rgba(5, 24, 29, .8);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .3);
  backdrop-filter: blur(10px);
}

.development-stage.emphasized {
  background: rgba(12, 126, 106, .8);
  border-color: rgba(156, 230, 206, .48);
}

.stage-label {
  display: block;
  margin-bottom: 8px;
  color: #9ce6ce;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.development-stage h3 {
  color: #fff;
  font-size: 1.32rem;
}

.development-stage ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.development-step {
  position: relative;
  min-height: 122px;
  padding: 16px 16px 16px 58px;
  background: rgba(7, 38, 43, .72);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.development-step.highlight {
  background: rgba(31, 134, 115, .62);
  border-color: rgba(156, 230, 206, .55);
}

.development-step > span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #062f33;
  background: #9ce6ce;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 850;
}

.development-step strong {
  display: block;
  color: #fff;
  line-height: 1.28;
}

.development-step p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: .93rem;
}

.development-step:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(255, 255, 255, .18);
  border-color: rgba(156, 230, 206, .62);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .26);
  animation: softBounce .5s cubic-bezier(.2, .9, .2, 1);
}

.custom-development-section .center-action {
  margin-top: 34px;
}

.capability-preview-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 86px max(24px, calc((100% - var(--layout-max)) / 2));
  background: #fff;
  overflow: hidden;
}

.capability-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.capability-copy {
  color: var(--ink);
}

.capability-copy .eyebrow {
  color: var(--accent-dark);
}

.capability-copy h2 {
  max-width: 640px;
  color: var(--navy);
  text-shadow: none;
}

.capability-copy p {
  max-width: 620px;
  color: var(--muted);
  text-shadow: none;
}

.capability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.capability-actions .button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.capability-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.capability-media-grid .media-photo {
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(17, 31, 45, .12);
}

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inspection-flow {
  margin-bottom: 24px;
}

.inspection-flow h3 {
  margin-bottom: 14px;
}

.inspection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inspection-card,
.response-list article {
  padding: 16px;
}

.packaging-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.about-media-grid {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  padding: 18px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 18px;
}

.quote-faq-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 94px max(24px, calc((100% - var(--layout-max)) / 2)) 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 13, 18, .78) 0%, rgba(5, 13, 18, .54) 46%, rgba(5, 13, 18, .7) 100%),
    url("assets/images/workshop-finished-tubular-parts.webp") center / cover;
  overflow: hidden;
}

.quote-faq-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 54px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 46%, 76% 75%, 58% 48%, 31% 78%, 0 44%);
  z-index: 0;
}

.quote-faq-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18);
  opacity: 1;
  pointer-events: none;
}

.anchor-target {
  position: relative;
  top: -86px;
  display: block;
  width: 1px;
  height: 0;
  overflow: hidden;
}

.quote-faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.quote-copy {
  padding-top: 38px;
}

.quote-copy .eyebrow,
.quote-form-card .eyebrow {
  color: #91e4d3;
}

.quote-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.05;
}

.quote-intro {
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.04rem;
}

.quote-support-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.quote-support-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 30px;
  color: rgba(255, 255, 255, .8);
}

.quote-support-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(145, 228, 211, .9);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(145, 228, 211, .12);
}

.quote-support-list strong {
  color: #fff;
  font-size: 1.02rem;
}

.quote-contact-line {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.compact-faq {
  margin-top: 24px;
}

.compact-faq details {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
}

.compact-faq summary {
  color: #fff;
}

.compact-faq p {
  color: rgba(255, 255, 255, .78);
}

.quote-form-card {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.quote-form-card h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.quote-form-card > p:not(.eyebrow) {
  color: var(--muted);
}

.quote-quick-form {
  display: grid;
  gap: 14px;
}

.quote-quick-form label {
  display: grid;
  gap: 0;
}

.quote-quick-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.quote-quick-form input,
.quote-quick-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 3px;
  padding: 14px 18px;
  color: #fff;
  background: rgba(16, 22, 28, .36);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.quote-quick-form textarea {
  min-height: 132px;
  resize: vertical;
}

.quote-quick-form input::placeholder,
.quote-quick-form textarea::placeholder {
  color: rgba(255, 255, 255, .78);
}

.quote-quick-form input:focus,
.quote-quick-form textarea:focus {
  border-color: rgba(156, 230, 206, .82);
  background: rgba(16, 22, 28, .48);
}

.quote-quick-form button {
  justify-self: start;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 0 26px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-quick-form button:hover,
.quote-quick-form button:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

.quote-form-card .inquiry-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.quote-form-card .inquiry-form:hover {
  box-shadow: none;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.faq-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding: clamp(76px, 9vw, 120px) max(24px, calc((100% - var(--layout-max)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 74% 26%, rgba(145, 228, 211, .18), transparent 34%),
    linear-gradient(135deg, #0f2d35, #123f49 48%, #0f806c);
}

.faq-page-hero.page-hero {
  display: block;
  min-height: 0;
  padding: clamp(46px, 6vw, 70px) max(24px, calc((100% - var(--layout-max)) / 2)) clamp(42px, 5.2vw, 62px);
  background:
    radial-gradient(circle at 88% 18%, rgba(145, 228, 211, .16), transparent 30%),
    linear-gradient(135deg, #0f2d35 0%, #123f49 56%, #0f6d60 100%);
}

.faq-page-hero.page-hero.products-hero {
  min-height: clamp(280px, 34vw, 420px);
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
  background:
    linear-gradient(90deg, rgba(5, 27, 33, .90) 0%, rgba(7, 45, 50, .68) 52%, rgba(9, 112, 96, .38) 100%),
    url("assets/images/all-products-hero-flatlay.webp") center / cover no-repeat;
}

.faq-page-hero.page-hero.inner-page-hero {
  min-height: clamp(260px, 30vw, 380px);
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
  background:
    linear-gradient(90deg, rgba(5, 27, 33, .90) 0%, rgba(7, 45, 50, .64) 52%, rgba(9, 102, 91, .34) 100%),
    url("assets/images/inner-page-moto-parts-hero.webp") center / cover no-repeat;
}

.faq-page-hero.inner-page-hero:not(.page-hero) {
  background:
    linear-gradient(90deg, rgba(5, 27, 33, .90) 0%, rgba(7, 45, 50, .64) 52%, rgba(9, 102, 91, .34) 100%),
    url("assets/images/inner-page-moto-parts-hero.webp") center / cover no-repeat;
}

.faq-page-hero.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2rem, 3.15vw, 3rem);
  line-height: 1.12;
}

.faq-page-hero.page-hero h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(2rem, 3.15vw, 3rem);
  line-height: 1.12;
}

.faq-page-hero.page-hero .lead {
  max-width: 760px;
  margin-top: 16px;
}

.faq-page-hero h1 {
  max-width: 840px;
  color: #fff;
  font-size: clamp(2.1rem, 4.1vw, 3.85rem);
  line-height: 1.08;
}

.faq-page-hero .lead {
  color: rgba(255, 255, 255, .82);
}

.hero-header-page main > .faq-page-hero:first-child,
.hero-header-page main > .solution-hero:first-child {
  display: flex;
  min-height: clamp(300px, 24vw, 360px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(96px, 8vw, 118px) max(24px, calc((100% - var(--layout-max)) / 2)) clamp(34px, 4vw, 44px);
  border-bottom: 0;
  text-align: center;
}

.hero-header-page main > .faq-page-hero:first-child > div,
.hero-header-page main > .solution-hero:first-child .hero-inner,
.hero-header-page main > .solution-hero:first-child .hero-copy {
  width: min(940px, 100%);
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hero-header-page main > .faq-page-hero:first-child h1,
.hero-header-page main > .faq-page-hero:first-child h2,
.hero-header-page main > .solution-hero:first-child h1 {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.hero-header-page main > .faq-page-hero:first-child .lead,
.hero-header-page main > .solution-hero:first-child .lead {
  display: none;
}

.hero-header-page main > .faq-page-hero:first-child .button-row,
.hero-header-page main > .solution-hero:first-child .button-row {
  display: none;
}

.hero-header-page main > .faq-page-hero:first-child .faq-page-panel {
  display: none;
}

.faq-page-panel {
  padding: 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
}

.faq-page-panel strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.faq-page-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
}

.faq-topic-grid {
  display: grid;
  gap: 22px;
}

.faq-topic {
  display: grid;
  gap: 14px;
}

.faq-topic h3 {
  margin-bottom: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.faq-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(72px, 8vw, 112px);
  padding: clamp(42px, 5vw, 64px) clamp(28px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(145, 228, 211, .18), transparent 32%),
    linear-gradient(135deg, #102c35, #0f806c);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px -22px rgba(5, 34, 40, .54), 0 8px 18px -14px rgba(0, 0, 0, .28);
}

.faq-page-cta h2 {
  color: #fff;
}

.faq-page-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .8);
}

.faq-page-cta .button-row {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-top: 0;
}

.faq-page-cta .button.primary {
  color: var(--accent-dark);
  background: #fff;
}

.faq-page-cta .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .46);
}

.contact-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 100px;
}

.inquiry-form {
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-note {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: #2a3d4d;
  font-size: .9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  background: #fff;
  border: 1px solid #cdd7df;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.inquiry-form > label {
  margin-top: 14px;
}

.inquiry-form button {
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-footer {
  padding: 62px clamp(20px, 5vw, 72px) 54px;
  color: #fff;
  background: var(--footer-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) minmax(150px, .65fr) minmax(220px, .9fr) minmax(220px, .9fr);
  gap: clamp(26px, 5vw, 72px);
  width: min(var(--layout-max), 100%);
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-logo-image {
  width: 82px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .22));
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-logo small {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
}

.site-footer p {
  max-width: 360px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .86);
}

.site-footer a {
  color: #fff;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.06rem;
}

.footer-column a,
.footer-column p {
  font-size: .94rem;
}

.footer-column a {
  color: rgba(255, 255, 255, .88);
  font-weight: 750;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.footer-contact {
  font-style: normal;
}

.footer-documents,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-documents span {
  min-height: 38px;
  padding: 9px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 800;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
  padding: 10px 14px;
  color: var(--footer-green-dark) !important;
  background: #fff;
  border-radius: var(--radius);
}

.footer-social span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}

.category-card:hover,
.model-card:hover,
.problem-card:hover,
.solution-card:hover,
.process-grid article:hover,
.inspection-card:hover,
.response-list article:hover,
.timeline li:hover,
.faq-list details:hover,
.inquiry-form:hover,
.button:hover {
  transform: translateY(-4px) scale(1.01);
  animation: softBounce .42s cubic-bezier(.2, .85, .25, 1.25);
  border-color: rgba(63, 111, 125, .42);
  box-shadow: var(--lift-shadow);
}

.technical-list span:hover,
.check-grid span:hover,
.footer-social span:hover,
.footer-documents span:hover {
  transform: translateY(-3px);
  animation: softBounce .42s cubic-bezier(.2, .85, .25, 1.25);
  border-color: rgba(63, 111, 125, .38);
  box-shadow: 0 16px 34px rgba(19, 75, 89, .12);
}

@keyframes softBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  56% {
    transform: translateY(-5px) scale(1.012);
  }

  78% {
    transform: translateY(-2px) scale(1.006);
  }

  100% {
    transform: translateY(-4px) scale(1.01);
  }
}

.product-hero {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.product-copy {
  position: sticky;
  top: 106px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-main {
  grid-column: 1 / -1;
  min-height: 360px;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) 1fr;
  gap: 14px;
  padding: 16px;
  background: #fff;
}

.spec-table dt {
  color: var(--navy);
  font-weight: 800;
}

.spec-table dd {
  margin: 0;
  color: var(--muted);
}

.product-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1120px) {
  .primary-nav {
    font-size: .78rem;
  }

  .category-grid,
  .problem-grid,
  .solution-card-grid,
  .process-grid,
  .packaging-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .development-stages {
    grid-template-columns: 1fr;
  }

  .rear-rack-product-grid,
  .three-wheeler-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rear-rack-detail-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 64px);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    display: none;
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding-top: 10px;
    font-size: .96rem;
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav > a,
  .nav-dropdown > summary {
    width: 100%;
    min-height: 44px;
    padding: 9px 0;
  }

  .primary-nav > a::after,
  .nav-dropdown > summary::after {
    bottom: 0;
    transform-origin: left;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border: 0;
    border-left: 2px solid var(--accent-soft);
    border-radius: 0;
    box-shadow: none;
  }

  .qa-dropdown .qa-panel {
    display: block;
    width: 100%;
    max-height: 58vh;
    overflow-y: auto;
  }

  .section,
  .section-muted {
    width: 100%;
    padding: 58px 20px;
  }

  .custom-development-section {
    padding: 68px 20px;
    background-attachment: scroll, scroll;
  }

  .hero,
  .factory-intro-grid,
  .all-products-section,
  .split-section,
  .about-layout,
  .contact-section,
  .capability-preview-grid,
  .faq-page-hero,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .quote-faq-grid {
    grid-template-columns: 1fr;
  }

  .header-quote {
    display: none;
  }

  .development-stages {
    grid-template-columns: 1fr;
  }

  .factory-intro-photo {
    align-self: start;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .hero {
    height: auto;
    min-height: min(720px, calc(100svh - 74px));
    padding: 72px 0;
  }

  .contact-copy,
  .product-copy {
    position: static;
  }

  .quote-copy {
    padding-top: 18px;
  }

  .factory-intro-copy {
    max-width: none;
  }

  .certification-badges {
    justify-content: flex-start;
  }

  .product-category-sidebar {
    position: static;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase-card,
  .product-showcase-card img {
    min-height: 240px;
  }

  .rear-rack-products-heading {
    display: block;
  }

  .rear-rack-detail-gallery {
    grid-template-columns: 1fr;
  }

  .rear-rack-thumbs {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 4px;
    padding-right: 0;
  }

  .rear-rack-thumb {
    flex: 0 0 82px;
    width: 82px;
  }

  .rear-rack-main-image {
    min-height: 0;
    max-height: none;
  }

  .model-grid,
  .about-media-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-list,
  .inspection-grid,
  .form-grid,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .product-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand,
  .home-page .brand,
  .hero-header-page .brand {
    width: 92px;
    min-width: 92px;
    height: 44px;
  }

  .brand-logo {
    width: 92px;
    max-height: 38px;
  }

  .home-page .brand-logo,
  .hero-header-page .brand-logo {
    width: 92px;
    max-height: 38px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero {
    min-height: calc(100svh - 74px);
    padding: 74px 0 42px;
  }

  .hero h1 {
    font-size: 2.04rem;
    line-height: 1.06;
  }

  .rear-rack-product-grid,
  .three-wheeler-product-grid {
    grid-template-columns: 1fr;
  }

  .rear-rack-detail-info h1 {
    font-size: 1.72rem;
  }

  .rear-rack-spec-table th,
  .rear-rack-spec-table td {
    padding: 10px 8px;
    font-size: .92rem;
  }

  .hero-proof-row,
  .hero-scroll {
    display: none;
  }

  .hero-tag {
    margin-bottom: 12px;
    padding-inline: 12px;
    font-size: .78rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button,
  .category-card a,
  .model-card a {
    white-space: normal;
  }

  .category-card a,
  .model-card a {
    width: 100%;
    justify-self: stretch;
  }

  .hero .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .factory-points {
    grid-template-columns: 1fr;
  }

  .certification-badges {
    justify-content: flex-start;
  }

  .custom-development-section {
    padding: 58px 20px;
  }

  .development-stage {
    padding: 18px;
  }

  .development-step {
    min-height: 0;
    padding: 14px 14px 14px 52px;
  }

  .quote-faq-section {
    padding-top: 64px;
  }

  .quote-faq-section::before {
    height: 38px;
  }

  .quote-copy h2 {
    font-size: 2rem;
  }

  .quote-form-card {
    padding: 20px;
  }

  .site-footer {
    padding: 46px 20px 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .blog-card-grid,
  .problem-grid,
  .solution-card-grid,
  .model-grid,
  .product-showcase-grid,
  .process-grid,
  .inspection-grid,
  .response-list,
  .timeline,
  .packaging-grid,
  .about-media-grid,
  .capability-media-grid,
  .check-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .blog-article-content,
  .blog-toc {
    padding: 20px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .category-card:hover,
  .model-card:hover,
  .problem-card:hover,
  .solution-card:hover,
  .process-grid article:hover,
  .inspection-card:hover,
  .response-list article:hover,
  .timeline li:hover,
  .development-step:hover,
  .faq-list details:hover,
  .hero-scroll span,
  .inquiry-form:hover,
  .button:hover,
  .technical-list span:hover,
  .check-grid span:hover,
  .footer-social span:hover,
  .footer-documents span:hover {
    transform: none;
    animation: none;
  }
}

/* /taste upgrade: B2B factory clarity, minimalist spacing, soft depth, smooth micro-interactions. */
body {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}

.section,
.section-muted {
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

h1,
h2 {
  font-weight: 700;
  letter-spacing: 0;
}

h3,
.primary-nav > a,
.nav-dropdown > summary {
  font-weight: 700;
}

.button,
.header-quote,
.footer-cta,
.category-card,
.model-card,
.product-showcase-card,
.solution-card,
.inspection-card,
.problem-card,
.blog-card,
.rear-rack-card,
.rear-rack-detail-thumb,
.quote-form-card,
.media-photo,
.media-card,
.process-band article,
.support-list li {
  transition: all .4s var(--ease-taste);
}

.button:hover,
.button:focus-visible,
.header-quote:hover,
.header-quote:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible,
.category-card:hover,
.model-card:hover,
.product-showcase-card:hover,
.solution-card:hover,
.inspection-card:hover,
.problem-card:hover,
.rear-rack-card:hover,
.media-card:hover,
.process-band article:hover,
.support-list li:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: var(--lift-shadow);
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .reveal-item {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0);
    transition:
      opacity .72s var(--ease-taste),
      filter .72s var(--ease-taste),
      transform .72s var(--ease-taste),
      box-shadow .4s var(--ease-taste);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
  }

  html.motion-ready .reveal-item.reveal-from-left {
    transform: translate3d(-28px, 18px, 0);
  }

  html.motion-ready .reveal-item.reveal-from-right {
    transform: translate3d(28px, 18px, 0);
  }

  html.motion-ready .hero-copy.reveal-item {
    filter: blur(4px);
    transform: translate3d(0, 18px, 0);
    transition-duration: .88s;
  }

  html.motion-ready .reveal-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  html.motion-ready .solution-form-cta.reveal-item {
    opacity: 0;
    filter: none;
    transform: translate3d(-32px, 0, 0);
    transition:
      opacity .5s var(--ease-taste),
      transform .58s var(--ease-taste),
      box-shadow .4s var(--ease-taste);
  }

  html.motion-ready .solution-form-cta.reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html.motion-ready .solution-form-cta.reveal-item.is-visible:hover,
  html.motion-ready .solution-form-cta.reveal-item.is-visible:focus-visible {
    transform: translate3d(4px, -2px, 0);
  }
}

.solution-hero {
  padding: clamp(40px, 4.8vw, 56px) var(--layout-gutter);
  background:
    linear-gradient(90deg, rgba(5, 27, 33, .90) 0%, rgba(7, 45, 50, .64) 52%, rgba(9, 102, 91, .34) 100%),
    url("assets/images/inner-page-moto-parts-hero.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.solution-hero .hero-inner,
.solution-section .section-inner,
.intro-strip .section-inner,
.final-cta .section-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.solution-hero .hero-copy {
  position: static;
  display: block;
  max-width: 720px;
  padding: 0;
  color: #fff;
  text-align: left;
}

.solution-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.9rem, 2.7vw, 2.7rem);
  line-height: 1.16;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}

.solution-hero .lead {
  max-width: 690px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(.96rem, 1.02vw, 1rem);
  line-height: 1.48;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}

.solution-hero .button-row {
  margin-top: 18px;
}

.label {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-strip {
  padding: 24px var(--layout-gutter);
  background: #203544;
  color: #fff;
}

.intro-strip .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.intro-strip p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pill-list span {
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
}

.solution-section {
  padding: clamp(80px, 8vw, 120px) var(--layout-gutter);
}

.solution-section.muted {
  background: var(--soft);
}

.solution-section .split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.solution-section .split.reversed {
  grid-template-columns: minmax(340px, 1fr) minmax(0, .92fr);
}

.solution-section .split.reversed .copy {
  order: 2;
}

.section-copy {
  max-width: 632px;
}

.section-copy > p:not(.label),
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 13px 15px 13px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #26313a;
}

.solution-section:not(.muted) .feature-list li {
  background: var(--soft);
}

.feature-list li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.closing {
  margin-top: 20px;
  color: #252b30;
  font-weight: 700;
}

.media-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
}

.media-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--muted);
  font-size: .94rem;
  border-top: 1px solid var(--line);
}

.media-caption strong {
  color: var(--ink);
}

.process-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.process-band article {
  min-height: 122px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-weight: 800;
}

.process-band p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(88px, 8vw, 120px) var(--layout-gutter);
  background:
    linear-gradient(90deg, rgba(20, 34, 50, .96), rgba(20, 34, 50, .82)),
    url("assets/images/about-fixture-positioning.webp") center / cover no-repeat;
  color: #fff;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.final-cta h2,
.final-cta .label {
  color: #fff;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: rgba(255, 255, 255, .92);
}

.capability-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 28px;
}

.capability-proof {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.capability-proof strong,
.capability-proof span {
  display: block;
}

.capability-proof strong {
  color: var(--ink);
  font-size: .96rem;
}

.capability-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-strip .section-inner,
  .solution-section .split,
  .solution-section .split.reversed,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .solution-section .split.reversed .copy {
    order: 0;
  }

  .pill-list {
    justify-content: flex-start;
  }

  .process-band,
  .capability-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solution-hero {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .solution-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .media-card img {
    height: min(78vw, 390px);
  }

  .process-band,
  .support-list,
  .capability-proof-strip {
    grid-template-columns: 1fr;
  }
}

