:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #15347a;
  --line: #dbe4f2;
  --text: #14284d;
  --muted: #5f7191;
  --heading: #142f68;
  --text-soft: #6b7e9f;
  --text-on-dark: #f4f7ff;
  --text-on-dark-soft: #d7e2fb;
  --accent: #eb251c;
  --accent-dark: #c61d16;
  --steel: #24438f;
  --sand: #e4ebf8;
  --banner-width: 1040px;
  --banner-ratio: 16 / 6.2;
  --banner-radius: 6px;
  --banner-shadow: 0 18px 46px rgba(20, 40, 77, 0.12);
  --banner-padding: 42px 0 36px;
  --banner-mobile-padding: 28px 0 24px;
  --banner-copy-offset: 28px;
  --home-card-hover-y: -3px;
  --home-card-hover-border: rgba(235, 37, 28, 0.24);
  --home-card-hover-shadow: 0 18px 36px rgba(20, 40, 77, 0.09);
  --brand-marquee-distance: -1728px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--text);
  background: #f5f7fb;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--text-soft); }
h1, h2, h3, h4, h5, h6, strong { color: var(--heading); }
.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.top-strip {
  background: #17377d;
  color: #e7eefc;
  font-size: 13px;
  min-height: 40px;
}
.top-strip-inner {
  display: flex;
  gap: 28px;
  justify-content: flex-start;
  align-items: center;
  min-height: 40px;
  padding: 0;
  flex-wrap: wrap;
}
.top-strip-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.top-strip-email {
  white-space: nowrap;
}
.top-strip-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.top-strip-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.top-strip-social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 67, 143, 0.1);
  min-height: 83px;
  transform: translateZ(0);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 24px);
  min-height: 82px;
  padding: 6px 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
}
.site-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(150px, 18vw, 230px);
  min-width: 150px;
  height: auto;
}
.site-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.site-brand-text strong {
  display: block;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  color: var(--steel);
}
.site-brand-text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  font-weight: 700;
  min-height: 70px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 2px;
  color: var(--steel);
  font-size: 18px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translateZ(0);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 0.14s ease, transform 0.14s ease;
}
.site-nav a.is-active::after,
.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}
.language-select-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.language-select {
  appearance: none;
  height: 40px;
  min-width: 142px;
  padding: 0 38px 0 14px;
  border-radius: 20px;
  border: 1px solid rgba(22, 32, 43, 0.16);
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #273446 50%),
    linear-gradient(135deg, #273446 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 17px,
    calc(100% - 13px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  box-shadow: 0 8px 22px rgba(22, 32, 43, 0.08);
  color: var(--heading);
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}
.language-select:hover,
.language-select:focus {
  border-color: rgba(204, 29, 43, 0.45);
  background-color: #fff;
  box-shadow: 0 10px 26px rgba(22, 32, 43, 0.12);
  outline: none;
}
.site-actions .btn {
  min-height: 42px;
  padding: 0 16px;
}
.header-whatsapp-btn {
  min-width: 104px;
}
.header-inquiry-btn {
  min-width: 108px;
}
.nav-toggle { display: none; }
@media (min-width: 1200px) {
  .site-nav a:nth-child(1) { min-width: 44px; }
  .site-nav a:nth-child(2) { min-width: 68px; }
  .site-nav a:nth-child(3) { min-width: 92px; }
  .site-nav a:nth-child(4) { min-width: 80px; }
  .site-nav a:nth-child(5) { min-width: 58px; }
  .site-nav a:nth-child(6) { min-width: 70px; }
}
@media (max-width: 1180px) {
  .site-brand-logo {
    width: clamp(130px, 16vw, 190px);
    min-width: 130px;
  }
  .site-nav {
    gap: 14px;
  }
  .site-nav a {
    font-size: 16px;
  }
  .site-actions .btn {
    padding: 0 14px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(235, 37, 28, 0.18);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  color: var(--steel);
  border: 1px solid rgba(36, 67, 143, 0.18);
}
.btn-outline:hover {
  background: rgba(36, 67, 143, 0.08);
}
.btn-dark {
  background: var(--steel);
  color: #fff;
}
.section { padding: 84px 0; }
.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}
.section-steel {
  background: linear-gradient(135deg, #17377d 0%, #102b63 100%);
  color: #fff;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
}
.section-head {
  text-align: center;
  margin-bottom: 30px;
}
.section-head-left { text-align: left; }
.section-head h2,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.section-head h2 { font-size: clamp(36px, 5vw, 58px); }
.section-head p,
.page-hero p,
.hero-copy p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.62;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3fb 100%);
  padding: 18px 0 20px;
}
.hero-panel .container {
  width: min(1320px, calc(100% - 16px));
}
.hero-shell {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 56px;
  border-radius: 8px;
  border: 1px solid rgba(20, 40, 77, 0.08);
  box-shadow: 0 18px 42px rgba(20, 40, 77, 0.14);
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 4.8s ease;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 38, 0.88) 0%, rgba(13, 37, 86, 0.66) 42%, rgba(13, 37, 86, 0.08) 100%);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-shell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--accent);
  pointer-events: none;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  max-width: 620px;
  color: #ffffff;
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.brand-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 67, 143, 0.12);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 680px;
  padding: 0;
  align-content: center;
}
.hero-copy p {
  max-width: none;
  margin: 0;
  color: rgba(244, 247, 255, 0.86);
  font-size: 20px;
  white-space: nowrap;
}
.hero-dots {
  position: absolute;
  left: 56px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}
.hero-dots button.is-active {
  width: 28px;
  background: var(--accent);
}
.card-frame,
.search-card,
.filter-panel,
.form-card,
.result-card,
.why-card,
.cta-box,
.brand-card,
.case-card,
.application-card,
.product-card,
.detail-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 14px 36px rgba(25, 57, 125, 0.07);
}
.hero-panel .section-kicker {
  margin-bottom: 0;
  color: #ff6b5f;
}
.hero-panel .btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}
.hero-panel .btn-outline:hover {
  background: rgba(255,255,255,0.16);
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.hero-mini-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(36, 67, 143, 0.1);
}
.hero-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 40px;
  line-height: 0.92;
  color: var(--steel);
}
.hero-mini-card span {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 17px;
}
.stats-band-section {
  padding: 26px 0 34px;
}
.stats-band {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 67, 143, 0.09);
  box-shadow: 0 14px 34px rgba(20, 40, 77, 0.07);
}
.stats-band-grid .hero-mini-card {
  background: #ffffff;
  border-color: rgba(36, 67, 143, 0.08);
  box-shadow: none;
}
.stats-band-grid .hero-mini-card strong {
  color: var(--steel);
}
.stats-band-grid .hero-mini-card span {
  color: var(--text-soft);
}
.search-section {
  padding-top: 22px;
}
.finder-shell {
  display: grid;
  gap: 24px;
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 20px 50px rgba(25, 57, 125, 0.08);
}
.finder-copy,
.finder-tools {
  display: grid;
  gap: 18px;
}
.finder-tools-inline {
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  align-items: start;
}
.finder-copy .section-head {
  margin-bottom: 0;
}
.route-grid-compact {
  margin-bottom: 0;
}
.route-grid-compact .route-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 10px;
}
.route-grid-compact .route-card .btn {
  margin-top: auto;
  justify-self: start;
}
.finder-tools .search-card {
  min-height: 100%;
  padding: 30px;
}
.finder-tools .search-card h3 {
  font-size: 30px;
}
.oe-search-card {
  max-width: 460px;
}
.oe-search-card .inline-search {
  align-items: center;
}
.oe-search-card .inline-search .btn {
  flex: 0 0 auto;
}
.category-spotlight-section {
  padding-top: 48px;
}
.category-spotlight {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.category-spotlight-tabs {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 0 0 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(20, 40, 77, 0.14);
  overflow-x: auto;
}
.category-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 12px;
  border: none;
  background: transparent;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2a2f3a;
  white-space: nowrap;
  cursor: pointer;
}
.category-tab.is-active {
  color: #111827;
}
.category-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 4px;
  border-radius: 999px;
  background: #111827;
}
.category-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  justify-items: center;
  min-height: 210px;
  padding: 18px 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(20, 40, 77, 0.07);
  box-shadow: 0 8px 22px rgba(20, 40, 77, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.spotlight-card-media-wrap {
  width: min(100%, 140px);
  padding: 10px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(36, 67, 143, 0.12);
}
.spotlight-card:hover {
  transform: translateY(var(--home-card-hover-y));
  box-shadow: var(--home-card-hover-shadow);
  border-color: var(--home-card-hover-border);
}
.spotlight-card-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: center/contain no-repeat #ffffff;
}
.spotlight-card-title {
  font-family: "Barlow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #152a4f;
  line-height: 1.18;
  text-align: center;
}
.category-spotlight-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.category-spotlight-more .btn {
  min-width: 160px;
}
.category-grid .category-card,
.category-grid .product-card {
  background: rgba(255, 255, 255, 0.96);
}
.featured-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.featured-product-card {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(36, 67, 143, 0.08);
  box-shadow: 0 8px 22px rgba(25, 57, 125, 0.05);
}
.featured-product-card:hover {
  transform: translateY(var(--home-card-hover-y));
  border-color: var(--home-card-hover-border);
  box-shadow: var(--home-card-hover-shadow);
}
.featured-product-media-wrap {
  padding: 16px 16px 0;
}
.featured-product-card .product-card-media {
  aspect-ratio: 1 / 0.8;
  border-radius: 6px;
  background-color: #f7f9fd;
  background-size: contain;
  border: 1px solid rgba(20, 40, 77, 0.06);
}
.featured-product-card .product-card-body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 18px;
  text-align: center;
}
.featured-product-card .product-card-body p {
  margin: 0;
}
.featured-product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-product-category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f4fb;
  color: var(--steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-product-oe {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.about-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}
.about-home-media {
  min-height: 380px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 38px rgba(20, 40, 77, 0.1);
}
.about-home-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}
.about-home-copy .section-kicker {
  margin-bottom: 0;
}
.about-home-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.about-home-copy p {
  max-width: 560px;
  margin: 0;
  color: #5d6c82;
  font-size: 18px;
  line-height: 1.58;
}
.about-home-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-home-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef3fb;
  color: #152a4f;
  font-size: 13px;
  font-weight: 800;
}
.testimonial-home-section {
  padding-top: 24px;
}
.testimonial-home {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--accent) 0 7px, transparent 7px),
    linear-gradient(135deg, #ffffff 0%, #fffafa 48%, #f7faff 100%);
  border: 1px solid rgba(188, 23, 35, 0.1);
  box-shadow: 0 14px 34px rgba(22, 36, 66, 0.08);
}
.testimonial-home-content {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 310px;
  padding: 28px 32px 26px 40px;
  color: #15223a;
}
.testimonial-home-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.testimonial-home-head .section-kicker {
  margin-bottom: 8px;
  color: var(--accent);
}
.testimonial-home-head h2 {
  max-width: 620px;
  margin: 0;
  color: #000000;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}
.testimonial-home-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.testimonial-home-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 23, 35, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
}
.testimonial-home-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.testimonial-home-window {
  overflow: hidden;
}
.testimonial-home-track {
  display: flex;
  transition: transform 0.32s ease;
}
.testimonial-home-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  flex: 0 0 100%;
  min-width: 0;
  padding: 2px 2px 0;
}
.testimonial-card-photo {
  width: 300px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border: 1px solid rgba(16, 24, 39, 0.08);
  box-shadow: 0 12px 28px rgba(21, 34, 58, 0.1);
}
.testimonial-home-card p {
  max-width: 680px;
  margin: 0 0 14px;
  color: #555555;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
  font-family: inherit;
  font-weight: 600;
}
.testimonial-home-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
  color: #999999;
  font-size: 15px;
}
.testimonial-home-card span {
  display: block;
  margin-top: 3px;
  color: #999999;
  font-size: 13px;
  font-weight: 700;
}
.testimonial-home-dots {
  display: flex;
  gap: 9px;
}
.testimonial-home-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(188, 23, 35, 0.22);
  cursor: pointer;
}
.testimonial-home-dots button.is-active {
  width: 28px;
  background: var(--accent);
}
.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: start;
}
.operations-panel,
.operations-side {
  display: grid;
  gap: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.ops-note {
  padding: 30px;
}
.ops-note p {
  margin: 0;
}
.showcase-copy {
  align-self: stretch;
}
.showcase-copy .check-list {
  margin-top: 10px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.route-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 16px 40px rgba(25, 57, 125, 0.06);
}
.route-card h3 {
  margin: 8px 0 10px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 30px;
}
.route-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.65;
}
.search-grid,
.feature-grid,
.products-layout,
.detail-layout,
.oem-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}
.contact-company-title {
  font-size: 26px !important;
  line-height: 1.15;
}
.result-card {
  display: grid;
  gap: 22px;
}
.contact-side-media {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(20, 40, 77, 0.08);
  box-shadow: 0 14px 36px rgba(20, 40, 77, 0.08);
}
.contact-side-body {
  display: grid;
  gap: 14px;
}
.contact-side-body p {
  margin: 0;
}
.search-grid,
.feature-grid,
.oem-layout,
.contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.search-card,
.filter-panel,
.form-card,
.result-card,
.showcase-panel { padding: 28px; }
.search-card h3,
.showcase-panel h3,
.result-card h3,
.form-card h2,
.detail-card h3 {
  margin: 0 0 12px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 34px;
}
.inline-search,
.stack-form,
.toolbar {
  display: flex;
  gap: 12px;
}
.inline-search input,
.stack-form input,
.stack-form textarea,
.ymm-fields select,
.ymm-step-field select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #cfd9ec;
  background: #fff;
  font: inherit;
  color: #111;
}
.inline-search input::placeholder,
.stack-form input::placeholder,
.stack-form textarea::placeholder,
.ymm-fields select::placeholder,
.ymm-step-field select::placeholder {
  color: #9ca3af;
  font-weight: 400;
  opacity: 1;
}
.inline-search input:focus,
.stack-form input:focus,
.stack-form textarea:focus,
.ymm-fields select:focus,
.ymm-step-field select:focus,
.admin-filters select:focus,
.admin-filters input:focus {
  outline: 2px solid rgba(235, 37, 28, 0.18);
  border-color: rgba(235, 37, 28, 0.42);
}
.stack-form {
  flex-direction: column;
}
.flash {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}
.flash.is-success {
  background: #e7f6eb;
  color: #1d6a35;
  border: 1px solid #b8e1c2;
}
.flash.is-error {
  background: #fdecec;
  color: #a32e2e;
  border: 1px solid #efc2c2;
}
.admin-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.admin-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.admin-filters select,
.admin-filters input {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #cfd9ec;
  background: #fff;
  font: inherit;
}
.sample-table {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr .6fr;
  gap: 1px;
  background: #d4deef;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 14px;
}
.sample-table > div {
  padding: 14px;
  background: #fff;
}
.sample-table > div:nth-child(-n + 3) {
  background: #eef3fb;
}
.stack-form textarea { padding: 14px 16px; }
.stack-form label { display: flex; flex-direction: column; gap: 8px; font-weight: 600; }
.contact-upload-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}
.contact-attachment-preview {
  display: grid;
  gap: 10px;
}
.contact-attachment-label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}
.contact-attachment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
}
.contact-attachment-item {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f7f8fa;
  overflow: hidden;
}
.contact-attachment-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.contact-attachment-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-attachment-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #4b5563;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.contact-attachment-remove:hover {
  background: #fff;
  color: #111827;
  border-color: rgba(17, 24, 39, 0.16);
}
.contact-upload-control {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 14px;
  border: 1px dashed #cfd9ec;
  border-radius: 14px;
  background: #f7f9fd;
  cursor: pointer;
}
.contact-upload-control:hover {
  border-color: rgba(36, 67, 143, 0.22);
  background: #f3f7ff;
}
.contact-upload-label {
  display: block;
}
.contact-upload-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #d7dfef;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.contact-upload-value {
  min-width: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-upload-field small {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
.contact-form-note {
  margin: -2px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}
.ymm-actions {
  display: flex;
  align-items: stretch;
  margin-top: 8px;
}
.ymm-actions .btn {
  min-width: 172px;
  white-space: nowrap;
}
.ymm-widget {
  display: grid;
  gap: 16px;
  padding: 30px 30px 26px;
  background: linear-gradient(180deg, #eef3ff 0%, #f7faff 100%);
}
.ymm-widget h3 {
  margin-bottom: 2px;
  font-size: 32px;
  color: #111a33;
}
.ymm-stack {
  display: grid;
  gap: 12px;
}
.ymm-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(36, 67, 143, 0.18);
}
.ymm-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #dfe8fb;
  color: var(--steel);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.ymm-step-field {
  position: relative;
}
.ymm-step-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ymm-step-field select {
  min-height: 54px;
  padding: 0 48px 0 0;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(45deg, transparent 50%, #6178a6 50%) calc(100% - 18px) calc(50% - 3px) / 8px 8px no-repeat,
    linear-gradient(135deg, #6178a6 50%, transparent 50%) calc(100% - 12px) calc(50% - 3px) / 8px 8px no-repeat,
    transparent;
  font-size: 18px;
  color: var(--text);
  padding-left: 0;
}
.ymm-step-field select:disabled {
  color: #7f8eab;
  opacity: 1;
}
.grid {
  display: grid;
  gap: 22px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-card,
.product-card,
.brand-card,
.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.category-card-media,
.product-card-media,
.case-media {
  aspect-ratio: 4 / 3;
  background: center/cover no-repeat;
}
.category-card-body,
.product-card-body,
.brand-card-body,
.case-card-body {
  padding: 22px;
}
.category-card h3,
.product-card h3,
.brand-card h3,
.case-card h3 {
  margin: 0 0 10px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 30px;
}
.meta-line {
  display: block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.brand-strip {
  display: flex;
  gap: 16px;
  overflow: hidden;
  margin-top: 24px;
  padding: 4px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-strip:hover .brand-logo-item {
  animation-play-state: paused;
}
.brand-logo-item {
  flex: 0 0 176px;
  display: grid;
  place-items: center;
  height: 96px;
  padding: 22px 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  animation: brandLogoMarquee 34s linear infinite;
}
.brand-logo-item img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes brandLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(var(--brand-marquee-distance)); }
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.trust-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}
.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  color: var(--text-on-dark);
}
.trust-item span {
  color: var(--text-on-dark-soft);
}
.why-grid .why-card { padding: 24px; }
.why-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
.why-card p {
  margin: 0;
}
.showcase-panel {
  background: linear-gradient(180deg, #17377d 0%, #24438f 100%);
  color: #fff;
}
.section-steel h1,
.section-steel h2,
.section-steel h3,
.section-steel h4,
.section-steel p,
.section-steel li,
.showcase-panel h1,
.showcase-panel h2,
.showcase-panel h3,
.showcase-panel h4,
.showcase-panel p,
.showcase-panel li,
.catalog-band h1,
.catalog-band h2,
.catalog-band h3,
.catalog-band p,
.catalog-band li,
.cta-box h1,
.cta-box h2,
.cta-box h3,
.cta-box p,
.cta-box li,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero p,
.site-footer h4,
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-on-dark);
}
.section-steel .section-kicker,
.page-hero .section-kicker,
.catalog-band .section-kicker {
  color: #ffd7d4;
}
.compare-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.compare-card span {
  display: block;
  margin-bottom: 10px;
  color: #dfe8ff;
  font-weight: 700;
}
.compare-image {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: center/cover no-repeat;
}
.cta-section { padding-top: 0; }
.section-catalog-band {
  padding-top: 0;
}
.catalog-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #17377d, #24438f);
  color: #fff;
  box-shadow: 0 20px 50px rgba(25, 57, 125, 0.16);
}
.catalog-band h2 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}
.catalog-band-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.catalog-band-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, var(--accent) 0 6px, transparent 6px),
    linear-gradient(135deg, #17377d 0%, #102b63 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(20, 40, 77, 0.16);
}
.cta-box h2 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
}
.page-hero {
  padding: 68px 0 58px;
  background: linear-gradient(135deg, #17377d, #24438f);
  color: #fff;
}
.page-hero.compact { padding: 54px 0 46px; }
.page-hero p { max-width: 780px; color: rgba(255,255,255,0.82); }
.page-banner {
  padding: 18px 0 20px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3fb 100%);
}
.page-banner > .container {
  width: min(1320px, calc(100% - 16px));
}
.page-banner-shell {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 56px;
  border-radius: 8px;
  border: 1px solid rgba(20, 40, 77, 0.08);
  box-shadow: 0 18px 42px rgba(20, 40, 77, 0.14);
  overflow: hidden;
}
.products-page-banner {
  padding-bottom: 12px;
}
.products-page-banner .page-banner-shell {
  min-height: 360px;
  padding: 40px 56px;
}
.products-page-banner + .section {
  padding-top: 10px;
}
.page-banner-media {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 38, 0.88) 0%, rgba(13, 37, 86, 0.66) 42%, rgba(13, 37, 86, 0.1) 100%);
}
.page-banner-media-light-overlay::after {
  background: linear-gradient(90deg, rgba(7, 19, 38, 0.58) 0%, rgba(13, 37, 86, 0.34) 38%, rgba(13, 37, 86, 0.06) 100%);
}
.page-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 720px;
}
.page-banner .section-kicker {
  margin-bottom: 0;
  color: #ffdad7;
}
.page-banner h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 0.96;
  letter-spacing: 0;
}
.page-banner p {
  max-width: 620px;
  margin: 0;
  color: rgba(244, 247, 255, 0.86);
  font-size: 18px;
  line-height: 1.58;
}
.page-banner-points,
.page-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.page-banner-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.94);
  font-size: 13px;
  font-weight: 800;
}
.page-banner-search {
  width: min(100%, 680px);
  margin: 2px 0 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 14px 34px rgba(15, 28, 54, 0.16);
}
.image-page-hero {
  padding: var(--banner-padding);
  background: #ffffff;
}
.image-page-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}
.image-page-hero-media {
  width: min(100%, var(--banner-width));
  aspect-ratio: var(--banner-ratio);
  object-fit: cover;
  object-position: center;
  border-radius: var(--banner-radius);
  box-shadow: var(--banner-shadow);
}
.image-page-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 820px;
  margin-top: var(--banner-copy-offset);
}
.image-page-hero .section-kicker {
  margin-bottom: 0;
  color: var(--accent);
}
.image-page-hero h1 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  color: #152a4f;
  letter-spacing: 0;
}
.image-page-hero p {
  max-width: 700px;
  margin: 0;
  color: #5d6c82;
  font-size: 18px;
  line-height: 1.55;
}
.module-hero {
  padding: var(--banner-padding);
  background: #ffffff;
}
.module-hero-grid {
  display: grid;
  justify-items: center;
  gap: var(--banner-copy-offset);
  text-align: center;
}
.module-hero-media {
  width: min(100%, var(--banner-width));
  aspect-ratio: var(--banner-ratio);
  min-height: 0;
  border-radius: var(--banner-radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--banner-shadow);
}
.module-hero-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  max-width: 860px;
}
.module-hero-copy .section-kicker {
  margin-bottom: 0;
}
.module-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}
.module-hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #5d6c82;
  font-size: 18px;
  line-height: 1.58;
}
.module-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.module-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3fb;
  color: #152a4f;
  font-size: 14px;
  font-weight: 800;
}
.module-hero-search {
  width: min(100%, 680px);
  margin: 4px auto 0;
  padding: 18px;
  border: 1px solid rgba(36, 67, 143, 0.12);
  box-shadow: 0 16px 40px rgba(20, 40, 77, 0.08);
}
.catalog-hero {
  padding: 34px 0 26px;
  background: #ffffff;
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.catalog-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.catalog-hero-copy {
  display: grid;
  gap: 8px;
}
.catalog-hero-copy .section-kicker {
  margin-bottom: 0;
}
.catalog-hero-copy h1 {
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}
.catalog-hero-copy p {
  margin: 0;
  color: #5d6c82;
  font-size: 17px;
}
.catalog-hero-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.catalog-hero-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(36, 67, 143, 0.06);
  color: #344766;
  font-size: 13px;
  font-weight: 800;
}
.catalog-hero-actions .btn {
  min-height: 42px;
}
.products-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}
.product-results-area {
  padding: 2px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  scroll-margin-top: 110px;
}
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
}
.products-pagination-summary {
  color: #66728a;
  font-size: 14px;
  font-weight: 700;
}
.products-pagination-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #cfd9ec;
  border-radius: 8px;
  background: #fff;
  color: #243f84;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.pagination-btn:hover:not(:disabled),
.pagination-btn.is-active {
  border-color: #243f84;
  background: #243f84;
  color: #fff;
}
.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #7b879d;
  font-weight: 800;
}
.products-topbar {
  position: static;
  top: auto;
  z-index: 5;
  margin-bottom: 8px;
  padding: 0 0 8px;
  background: transparent;
}
.products-search-hub {
  display: block;
  margin-bottom: 24px;
}
.products-search-card {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.product-search-form {
  position: relative;
  display: block;
  max-width: none;
}
.product-search-form input[name="search_value"],
.product-search-form input[name="q"] {
  width: 100%;
  min-height: 46px;
  padding: 0 90px 0 14px;
  border-radius: 10px;
  border: 1px solid #cfd9ec;
  background: #fff;
  box-shadow: none;
  font: inherit;
  color: var(--text);
}
.product-search-form .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
}
.products-search-card h3 {
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}
.product-search-form select {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid #cfd9ec;
  background: #fff;
  font: inherit;
  color: var(--text);
}
.product-empty-state {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 46px 22px;
  text-align: center;
  background: transparent;
}
.product-empty-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) center / 22px 16px no-repeat,
    linear-gradient(135deg, rgba(36, 67, 143, 0.12), rgba(235, 37, 28, 0.1));
  border: 1px solid rgba(36, 67, 143, 0.12);
  position: relative;
}
.product-empty-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px var(--accent);
}
.product-empty-state h3 {
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}
.oem-search-hero .page-hero,
.oem-search-hero {
  overflow: hidden;
}
.oem-search-hero {
  padding: 64px 0;
}
.oem-search-hero p {
  max-width: 620px;
}
.oem-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: 28px;
  align-items: center;
}
.oem-hero-search {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 60px rgba(7, 20, 49, 0.22);
}
.oem-search-section {
  padding: 32px 0 0;
}
.oem-search-panel {
  max-width: 880px;
  margin: 0 auto;
  border-color: rgba(36, 67, 143, 0.1);
  box-shadow: 0 18px 50px rgba(25, 57, 125, 0.08);
}
.oem-hero-search label {
  color: var(--steel);
  font-weight: 800;
}
.oem-hero-search textarea,
.stack-form textarea {
  resize: vertical;
}
.oem-hero-search textarea {
  width: 100%;
  min-height: 112px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #cfd9ec;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.oem-hero-search small {
  color: var(--text-soft);
  line-height: 1.5;
}
.oem-search-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.oem-results-section {
  padding-top: 24px;
}
.oem-tool-panel,
.oem-results-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 16px 42px rgba(25, 57, 125, 0.07);
}
.oem-tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.oem-tool-copy h2,
.oem-results-head h2 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 34px;
}
.oem-tool-copy p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}
.oem-rule-grid {
  display: grid;
  gap: 10px;
}
.oem-rule-grid div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(36, 67, 143, 0.06);
}
.oem-rule-grid strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 26px;
}
.oem-rule-grid span {
  font-weight: 700;
  color: var(--steel);
}
.oem-results-head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.oem-results-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.oem-select-all:disabled,
.oem-selected-inquiry:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.oem-search-form {
  grid-template-columns: minmax(0, 1fr) auto;
}
.oem-lookup-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.helper-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}
.oem-search-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 18px;
}
.oem-query-group {
  display: grid;
  gap: 12px;
}
.oem-query-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.oem-query-head h3 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-soft);
}
.oem-query-head span {
  color: var(--text-soft);
  font-weight: 700;
}
.oem-query-results {
  display: grid;
  gap: 12px;
}
.oem-result-card {
  display: grid;
  grid-template-columns: 44px 126px minmax(0, 1fr);
  max-width: 860px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.12);
  box-shadow: 0 10px 24px rgba(25, 57, 125, 0.055);
}
.oem-select-wrap {
  display: grid;
  place-items: center;
  background: rgba(36, 67, 143, 0.035);
  border-right: 1px solid rgba(36, 67, 143, 0.08);
}
.oem-select-wrap input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}
.oem-result-media {
  min-height: 122px;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
.oem-result-media::after {
  content: "⌕";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  background: rgba(7, 20, 49, 0.36);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.oem-result-media:hover::after {
  opacity: 1;
}
.oem-result-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  column-gap: 18px;
  row-gap: 6px;
  padding: 16px 18px;
  align-items: center;
  align-content: center;
}
.oem-result-main {
  display: grid;
  gap: 6px;
}
.oem-result-title-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.oem-result-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.match-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(36, 67, 143, 0.1);
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.match-exact-match {
  background: rgba(20, 125, 85, 0.13);
  color: #147d55;
}
.match-cross-reference {
  background: rgba(36, 67, 143, 0.13);
  color: var(--primary);
}
.match-alternative-part {
  background: rgba(217, 84, 57, 0.13);
  color: #b84934;
}
.match-fuzzy-match {
  background: rgba(217, 84, 57, 0.13);
  color: #b84934;
}
.oem-result-body h3 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.05;
}
.oem-result-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 15px;
}
.oem-result-body p strong {
  color: var(--steel);
}
.oem-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.oem-spec-grid div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(36, 67, 143, 0.05);
}
.oem-spec-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}
.oem-spec-grid strong {
  color: var(--steel);
  line-height: 1.35;
}
.oem-fitment-table {
  display: grid;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e9f5;
}
.oem-fitment-head,
.oem-fitment-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 0.8fr 1.1fr 1fr;
}
.oem-fitment-head span,
.oem-fitment-row span {
  padding: 10px;
  border-right: 1px solid #e2e9f5;
}
.oem-fitment-head span:last-child,
.oem-fitment-row span:last-child {
  border-right: none;
}
.oem-fitment-head {
  background: #eef3fb;
  color: var(--steel);
  font-weight: 800;
}
.oem-fitment-row {
  color: var(--text-soft);
}
.oem-card-actions {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
  justify-self: end;
}
.oem-card-actions .btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.oem-inquiry-container {
  max-width: 760px;
}
.image-preview-modal[hidden] {
  display: none;
}
.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(7, 20, 49, 0.78);
}
.image-preview-modal img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}
.image-preview-close {
  position: fixed;
  top: 24px;
  right: 24px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--steel);
  font-weight: 800;
  cursor: pointer;
}
body.is-preview-open {
  overflow: hidden;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 22px;
  background: rgba(36, 67, 143, 0.06);
  border: 1px dashed rgba(36, 67, 143, 0.28);
}
.empty-state h3 {
  margin: 0 0 8px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 28px;
}
.empty-state p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.6;
}
.oem-info-table {
  display: grid;
  gap: 10px;
}
.oem-info-table div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e9f5;
}
.oem-info-table div:last-child {
  border-bottom: none;
}
.oem-info-table strong {
  color: var(--steel);
}
.oem-info-table span {
  color: var(--text-soft);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 16px;
  border-radius: 18px;
  background: rgba(36, 67, 143, 0.06);
}
.faq-list summary {
  cursor: pointer;
  color: var(--steel);
  font-weight: 800;
}
.faq-list p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}
.filter-panel {
  position: sticky;
  top: 108px;
  max-height: calc(100vh - 132px);
  overflow: auto;
  padding: 10px 4px 10px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  scrollbar-width: thin;
}
.filter-group + .filter-group {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
}
.filter-group h4 {
  margin: 0 0 14px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #152a4f;
}
.filter-list {
  display: grid;
  gap: 6px;
}
.filter-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  width: 100%;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  transition: background .16s ease, color .16s ease;
}
.filter-chip span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-chip:hover {
  background: rgba(36, 67, 143, 0.06);
}
.filter-chip.is-active {
  background: rgba(36, 67, 143, 0.1);
  color: var(--steel);
}
.filter-chip span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 24px;
  border-radius: 999px;
  background: rgba(36, 67, 143, 0.08);
  color: #8a97aa;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.filter-chip.is-active span:last-child {
  background: rgba(36, 67, 143, 0.14);
  color: var(--steel);
}
.toolbar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.subcategory-strip {
  min-width: 0;
  margin-bottom: 0;
}
.product-subcategory-panel {
  display: grid;
  gap: 8px;
  padding: 0;
  border-bottom: 0;
}
.product-subcategory-panel.is-empty {
  padding: 4px 0;
}
.product-filter-context {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 42px;
}
.product-filter-context span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-filter-context strong {
  color: #152a4f;
  font-size: 18px;
  line-height: 1.2;
}
.product-subcategory-panel.is-empty .product-filter-context strong {
  color: #7a879a;
  font-weight: 600;
}
.subcategory-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 6px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.subcategory-pill {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(36, 67, 143, 0.06);
  color: #344766;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.subcategory-pill:hover {
  background: rgba(36, 67, 143, 0.11);
}
.subcategory-pill.is-active {
  background: rgba(235, 37, 28, 0.1);
  color: var(--accent);
}
.toolbar-meta { color: var(--text-soft); font-weight: 600; }
.product-sort-wrap {
  display: inline-grid;
  gap: 4px;
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.product-sort-wrap select {
  min-width: 160px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(36, 67, 143, 0.1);
  background: #fff;
  color: var(--steel);
  font: inherit;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
}
.product-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 12px 30px rgba(25, 57, 125, 0.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(235, 37, 28, 0.28);
  box-shadow: 0 22px 48px rgba(25, 57, 125, 0.14);
}
.related-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.related-product-card {
  border-radius: 16px;
}
.catalog-product-card {
  border-radius: 16px;
}
.inquiry-cart-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: grid;
  gap: 10px;
  min-width: 320px;
  max-width: min(440px, calc(100vw - 28px));
  padding: 14px 16px 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(232, 239, 255, 0.08);
  background: linear-gradient(135deg, rgba(16, 33, 64, 0.97), rgba(26, 53, 101, 0.95));
  box-shadow: 0 18px 40px rgba(14, 31, 66, 0.24);
  backdrop-filter: blur(10px);
}
.inquiry-cart-dock[hidden] {
  display: none !important;
}
.inquiry-cart-summary {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.inquiry-cart-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
}
.inquiry-cart-label {
  color: rgba(232, 239, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.inquiry-cart-copy strong {
  color: #e8efff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.inquiry-cart-meta {
  color: rgba(232, 239, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
}
.inquiry-cart-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(232, 239, 255, 0.22);
  background: transparent;
  color: #e8efff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.inquiry-cart-close:hover {
  background: rgba(255,255,255,0.08);
}
.inquiry-cart-panel {
  display: grid;
  gap: 12px;
  padding-top: 2px;
  border-top: 1px solid rgba(232, 239, 255, 0.08);
}
.inquiry-cart-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}
.inquiry-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
}
.inquiry-cart-empty {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(232, 239, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}
.inquiry-cart-item-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.inquiry-cart-item-copy strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}
.inquiry-cart-item-copy span {
  color: rgba(232, 239, 255, 0.72);
  font-size: 12px;
  line-height: 1.3;
}
.inquiry-cart-remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(232, 239, 255, 0.14);
  background: transparent;
  color: #e8efff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.inquiry-cart-remove:hover {
  background: rgba(255,255,255,0.08);
}
.inquiry-cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.inquiry-cart-submit {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
  box-shadow: none;
}
.inquiry-cart-clear {
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(232, 239, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #e8efff;
}
.inquiry-cart-clear:hover {
  border-color: rgba(232, 239, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #e8efff;
}
.related-product-btn.is-added,
.detail-cta-btn.is-added {
  background: rgba(21, 42, 79, 0.08);
  color: var(--steel);
  border-color: rgba(36, 67, 143, 0.16);
}
.product-card-media-contain {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 1.72;
  margin: 10px 10px 0;
  padding: 12px;
  border-radius: 8px;
  background: #f7f8fa;
  border: 1px solid #eee;
}
.product-card-media-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}
.related-product-btn {
  min-height: 30px;
  padding: 0 10px;
}
.product-card .product-card-media {
  aspect-ratio: 4 / 1.72;
}
.catalog-product-card {
  border-radius: 16px;
}
.product-card-body {
  display: grid;
  gap: 7px;
  padding: 10px 12px 11px;
}
.product-card-topline {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.product-card-body .meta-line {
  color: rgba(97, 120, 166, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.product-card-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 700;
  color: var(--steel);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}
.product-card-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.28;
}
.product-card-oe {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 9px;
  background: rgba(235, 37, 28, 0.07);
  border: 1px solid rgba(235, 37, 28, 0.12);
  color: var(--steel) !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1 !important;
}
.product-card-oe span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.product-card-oe strong {
  font-size: 16px;
  line-height: 1;
  color: #b8201a;
  letter-spacing: 0.01em;
}
.product-card-oe-more {
  margin-left: auto;
  color: #7f8ba3;
  font-size: 10px;
  font-weight: 800;
}
.product-card-fit {
  font-size: 11px;
  color: #4f6385 !important;
  min-height: 2.45em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-fitment {
  display: grid;
  gap: 7px;
  min-height: 48px;
  color: #314767;
}
.product-card-fitment-group {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.product-card-fitment-group strong {
  display: block;
  color: #1f3658;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.18;
}
.product-card-fitment-group span {
  display: block;
  color: #5b6f8d;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-card-body > * { position: relative; z-index: 2; }
.product-card-action {
  min-height: 28px;
  padding: 0 9px;
  font-size: 11px;
  border-radius: 9px;
  color: #36527d;
  border-color: rgba(36, 67, 143, 0.16);
  background: rgba(36, 67, 143, 0.04);
}
.product-card-action:hover {
  color: #17325d;
  background: rgba(36, 67, 143, 0.08);
  border-color: rgba(36, 67, 143, 0.22);
}
.catalog-product-card .related-product-actions {
  margin-top: 1px;
}

@media (max-width: 1180px) {
}

@media (max-width: 767px) {
  .product-card-body h3 {
    font-size: 14px;
  }
}
.detail-layout {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
}
.detail-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.detail-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  align-content: stretch;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.08);
  box-shadow: 0 8px 20px rgba(25, 57, 125, 0.04);
  height: 100%;
  min-height: 100%;
  min-block-size: 100%;
}
.detail-media-card {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-height: 0;
}
.detail-main-image {
  min-height: 180px;
  height: 100%;
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f7fafe;
  border: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-main-image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.detail-thumbs-strip {
  display: block;
  width: 100%;
  align-self: end;
}
.detail-thumbs-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  width: 100%;
}
.detail-thumb {
  aspect-ratio: 1 / 1;
  min-height: 64px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.08);
  cursor: pointer;
  padding: 4px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.detail-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(235, 37, 28, 0.26);
  background: #fdfefe;
}
.detail-thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(235, 37, 28, 0.1);
}
.detail-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.detail-primary-card,
.detail-spec-card,
.detail-secondary-card,
.detail-inquiry-card {
  background: rgba(255,255,255,0.96);
}
.detail-primary-card {
  padding: 20px 22px 18px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(25, 57, 125, 0.04);
  height: 100%;
  min-height: 100%;
  display: grid;
  align-content: start;
  flex: 1 1 auto;
}
.detail-layout > .detail-gallery,
.detail-layout > .detail-column > .detail-primary-card {
  min-height: 520px;
}
.detail-primary-card h3 {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1;
}
.detail-primary-copy {
  margin: 0;
  color: #61789f;
  line-height: 1.55;
  max-width: none;
  font-size: 15px;
}
.detail-oem-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0 8px;
  padding: 12px 0 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-oem-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.detail-oem-label {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.detail-oem-link {
  min-width: 0;
  display: block;
  color: var(--steel);
}
.detail-oem-link:hover {
  color: #173e86;
}
.detail-oem-link strong {
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.detail-oem-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.detail-copy-btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(36, 67, 143, 0.1);
  border-radius: 999px;
  background: #f3f7fd;
  color: var(--steel);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.detail-copy-btn:hover {
  background: #e6eefb;
}
.detail-cta-btn {
  min-height: 36px;
  padding: 0 16px;
  white-space: nowrap;
}
.detail-text-block {
  margin-top: 10px;
}
.detail-selling-list {
  gap: 4px;
  margin-top: 4px;
}
.detail-selling-list li {
  color: #61789f;
  padding-left: 22px;
  line-height: 1.38;
}
.detail-selling-list.check-list {
  margin: 8px 0 0;
}
.detail-selling-list.check-list li::before {
  top: 6px;
  width: 10px;
  height: 10px;
}
.detail-secondary-card {
  padding: 18px 22px;
  display: grid;
  gap: 14px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(25, 57, 125, 0.04);
}
.detail-notes-block {
  padding-top: 12px;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-section-block + .detail-section-block {
  padding-top: 14px;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-fitment-grid,
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 10px;
}
.detail-fitment-table {
  display: grid;
  margin-top: 10px;
  border-top: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-fitment-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-fitment-row span {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.detail-fitment-row strong {
  color: var(--steel);
  font-size: 15px;
  line-height: 1.3;
}
.detail-fitment-item,
.detail-info-item {
  padding: 0 0 8px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(36, 67, 143, 0.08);
}
.detail-fitment-item span,
.detail-info-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.detail-fitment-item strong,
.detail-info-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  color: var(--steel);
}
.detail-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
}
.detail-inline-meta-tight {
  margin-top: 2px;
  gap: 6px 14px;
}
.detail-inline-meta-item {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}
.detail-inline-meta-item span {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.detail-inline-meta-item strong {
  color: var(--steel);
  font-size: 15px;
}
.detail-info-grid-compact {
  grid-template-columns: 1fr;
  margin-top: 14px;
}
.spec-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.check-list li,
.spec-list li {
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.check-list li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.detail-vehicle-tags {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.detail-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.detail-tag,
.detail-vehicle-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f6fc;
  border: 1px solid rgba(36, 67, 143, 0.06);
  color: var(--steel);
  font-weight: 600;
  font-size: 12px;
}
.detail-vehicle-tag {
  display: grid;
  gap: 6px;
  align-items: start;
  width: 100%;
  min-height: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f8fafd;
  border: 1px solid rgba(36, 67, 143, 0.09);
}
.detail-vehicle-tag strong,
.detail-vehicle-tag span {
  display: block;
}
.detail-vehicle-tag strong {
  color: #152a4f;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}
.detail-vehicle-tag span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.detail-muted {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 14px;
}
.brand-grid,
.cases-grid,
.application-sections {
  display: grid;
  gap: 22px;
}
.brand-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-bottom: 34px; }
.brand-card,
.application-card,
.case-card { background: #fff; }
.application-card { padding: 26px; }
.application-card h3 { margin: 0 0 10px; font-size: 36px; font-family: "Rajdhani", Arial, sans-serif; }
.application-subcats { display: flex; flex-wrap: wrap; gap: 10px; }
.application-subcats + .application-subcats { margin-top: 14px; }
.application-subcats a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3fb;
  font-weight: 600;
  transition: background .18s ease, color .18s ease;
}
.application-subcats a:hover {
  background: #24438f;
  color: #fff;
}
.solution-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.solution-filter-chip {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(36, 67, 143, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--steel);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.solution-filter-chip.is-active,
.solution-filter-chip:hover {
  background: var(--steel);
  color: #fff;
}
.solution-blog-grid {
  display: grid;
  gap: 32px;
}
.solution-brand-section {
  display: grid;
  gap: 16px;
  scroll-margin-top: 110px;
}
.solution-brand-head {
  display: grid;
  gap: 6px;
}
.solution-brand-head h2 {
  margin: 0;
}
.solution-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.solution-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 14px 34px rgba(25, 57, 125, 0.07);
}
.solution-blog-media {
  aspect-ratio: 4 / 2.5;
  background: center/cover no-repeat;
}
.solution-blog-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}
.solution-blog-body h3 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.05;
  color: var(--steel);
}
.solution-blog-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}
.blog-detail-layout {
  display: grid;
  gap: 18px;
}
.solution-detail-hero {
  position: relative;
  width: 100%;
  height: clamp(300px, 30vw, 420px);
  justify-self: stretch;
  align-self: stretch;
  overflow: hidden;
  border-radius: 10px;
  background: #f7f9fc;
  border: 1px solid rgba(36, 67, 143, 0.12);
  box-shadow: 0 20px 54px rgba(19, 45, 94, 0.14);
}
.solution-detail-hero-media {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 1;
}
.solution-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 42%, rgba(255, 255, 255, 0.18) 100%);
}
.solution-detail-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(820px, 100%);
  min-height: 100%;
  padding: clamp(34px, 6vw, 74px);
  color: var(--steel);
}
.solution-detail-hero-copy h2 {
  margin: 0;
  font-family: "Rajdhani", "Barlow", Arial, sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--heading);
}
.solution-quick-summary {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef2f7;
  border: 1px solid #e5e7eb;
}
.solution-quick-summary div {
  display: grid;
  gap: 5px;
  padding: 15px 18px;
  background: #f9fafb;
}
.solution-quick-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.solution-sidebar-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.solution-quick-summary strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.solution-detail-shell {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(180px, 210px) minmax(0, 1fr) minmax(230px, 260px);
  gap: 18px;
  align-items: start;
}
.solution-toc,
.solution-rfq-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.08);
  box-shadow: 0 8px 20px rgba(19, 45, 94, 0.035);
}
.solution-toc {
  gap: 4px;
  padding: 12px 14px;
  box-shadow: none;
}
.solution-toc a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  border-bottom: 1px solid rgba(36, 67, 143, 0.055);
  transition: color 0.15s ease;
}
.solution-toc a:last-child {
  border-bottom: 0;
}
.solution-toc a:hover,
.solution-toc a.active {
  color: var(--steel);
}
.solution-article {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 900px;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.09);
  box-shadow: 0 12px 30px rgba(19, 45, 94, 0.045);
  font-family: Inter, Arial, sans-serif;
}
.solution-summary-card {
  width: auto;
  margin: 28px 34px 0;
  padding: 18px 20px 18px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: #f7f9fc;
}
.solution-summary-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.solution-summary-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.solution-summary-card li {
  color: var(--text);
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.58;
}
.solution-summary-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 900;
}
.solution-article-meta,
.solution-article-intro,
.solution-article-section {
  scroll-margin-top: 122px;
  padding: clamp(34px, 4.2vw, 52px);
  background: #fff;
  border-bottom: 1px solid rgba(36, 67, 143, 0.085);
}
.solution-summary-card + .solution-article-section {
  padding-top: 34px;
}
.solution-article-section:last-child {
  border-bottom: 0;
}
.solution-article-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: rgba(36, 67, 143, 0.1);
}
.solution-article-meta div {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: #f7f9fc;
}
.solution-article-meta span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.solution-article-meta strong {
  color: var(--steel);
  line-height: 1.35;
}
.solution-article-section h2 {
  margin: 0 0 22px;
  color: var(--steel);
  font-family: "Barlow", Arial, sans-serif;
  font-size: clamp(30px, 2.45vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.solution-article p,
.solution-rfq-card p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 17.5px;
  line-height: 1.85;
}
.solution-article-section:first-of-type p:first-of-type {
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.78;
}
.solution-inline-image {
  margin: 26px 0 30px;
}
.solution-inline-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #f3f6fb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.solution-inline-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.solution-inline-link {
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.solution-inline-link:hover {
  color: var(--steel);
}
.solution-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 18px 20px;
  list-style: none;
  border: 1px solid rgba(36, 67, 143, 0.1);
  border-radius: 10px;
  background: #f8fafc;
}
.solution-checklist li {
  padding: 0 0 0 26px;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.65;
}
.solution-checklist li::before {
  content: "✓";
  margin-left: -26px;
  margin-right: 10px;
  color: var(--accent);
}
.solution-info-table {
  display: grid;
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(36, 67, 143, 0.12);
}
.solution-info-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(36, 67, 143, 0.1);
}
.solution-info-table div:nth-child(odd) {
  background: #f7f9fc;
}
.solution-info-table div:last-child {
  border-bottom: 0;
}
.solution-warning-card {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid #d94a38;
  border-radius: 10px;
  background: #fff7f5;
  color: var(--text);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  font-weight: 650;
  line-height: 1.7;
}
.solution-buyer-notes,
.solution-structured-block {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid rgba(36, 67, 143, 0.38);
  border-radius: 10px;
  background: #f6f8fc;
  color: var(--text);
}
.solution-buyer-notes strong,
.solution-structured-block strong {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.solution-buyer-notes p,
.solution-structured-block li {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.68;
}
.solution-structured-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}
.solution-faq-list {
  display: grid;
  gap: 10px;
}
.solution-faq-list details {
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid rgba(36, 67, 143, 0.1);
}
.solution-faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--steel);
  font-weight: 800;
}
.solution-faq-list p {
  padding: 0 18px 18px;
}
.solution-rfq-card {
  padding: 18px;
}
.solution-rfq-card h3 {
  margin: 0;
  color: var(--steel);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.15;
}
.solution-rfq-card p {
  font-size: 15px;
  line-height: 1.65;
}
.solution-rfq-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: none;
}
.solution-rfq-card .btn-primary {
  background: #24438f;
  border-color: #24438f;
}
.solution-rfq-card .btn-outline {
  background: #fff;
}
.solution-contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 67, 143, 0.1);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}
.solution-related-block,
.solution-final-cta {
  padding: clamp(24px, 4vw, 34px);
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.1);
}
.solution-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.solution-related-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid rgba(36, 67, 143, 0.1);
  color: var(--steel);
}
.solution-related-media {
  min-height: 130px;
  border-radius: 6px;
  background: center/contain no-repeat #fff;
  border: 1px solid rgba(36, 67, 143, 0.08);
}
.solution-related-card strong {
  line-height: 1.35;
}
.solution-related-card small {
  color: var(--text-soft);
  line-height: 1.5;
}
.solution-link-list {
  display: grid;
  gap: 10px;
}
.solution-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 67, 143, 0.12);
  border-radius: 8px;
  background: #f7f9fc;
  color: var(--steel);
  font-weight: 800;
}
.solution-link-row small {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0;
}
.solution-related-guide {
  align-content: center;
  min-height: 180px;
}
.solution-final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 40px);
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96)),
    linear-gradient(135deg, rgba(36, 67, 143, 0.1), rgba(235, 37, 28, 0.04));
  color: var(--text);
  box-shadow: 0 16px 38px rgba(19, 45, 94, 0.08);
}
.solution-final-cta::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -92px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(36, 67, 143, 0.1);
  border-radius: 50%;
}
.solution-final-cta > * {
  position: relative;
  z-index: 1;
}
.solution-final-cta .section-kicker {
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.solution-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--heading);
  font-family: "Barlow", Arial, sans-serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 750;
  letter-spacing: -0.012em;
  line-height: 1.16;
}
.solution-final-cta .btn {
  flex: 0 0 auto;
  min-width: 148px;
  box-shadow: 0 12px 24px rgba(235, 37, 28, 0.16);
}
.cases-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-stack { display: grid; gap: 14px; }
.media-tall {
  min-height: 420px;
  border-radius: 24px;
  background: center/cover no-repeat;
}
.media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.media-small {
  min-height: 180px;
  border-radius: 20px;
  background: center/cover no-repeat;
}
.site-footer {
  margin-top: 40px;
  padding: 44px 0 20px;
  background: linear-gradient(135deg, #102b63 0%, #17377d 100%);
  color: #dfe8ff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: start;
}
.site-footer-home .footer-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.85fr) minmax(240px, 1fr);
  gap: 24px;
}
.site-footer h4 {
  margin: 0 0 12px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 20px;
  color: #fff;
}
.footer-brand-block h4 {
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}
.site-footer-home .footer-brand-block h4 {
  white-space: normal;
  max-width: 18ch;
}
.footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffd7d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand-block p {
  max-width: 440px;
  margin: 0;
  color: rgba(223, 232, 255, 0.84);
  line-height: 1.65;
}
.footer-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.footer-nav-block li {
  line-height: 1.22;
}
.footer-nav-block li a {
  display: inline-block;
  font-size: 14px;
}
.site-footer-home .footer-nav-block {
  padding-top: 2px;
}
.site-footer li a {
  color: rgba(223, 232, 255, 0.88);
  transition: color 0.18s ease;
}
.site-footer li a:hover {
  color: #ffffff;
}
.footer-nav-block h4,
.footer-contact-block h4 {
  font-size: 20px;
}
.footer-contact-list {
  display: grid;
  gap: 10px;
}
.footer-contact-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}
.footer-contact-list strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-contact-list span {
  color: rgba(223, 232, 255, 0.88);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #bfd0f3;
}
.admin-toolbar {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}
.admin-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.admin-notice {
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
}
.admin-notice-success {
  background: #e8f7ec;
  color: #16743c;
  border: 1px solid #b8e2c5;
}
.admin-notice-error {
  background: #fff0ef;
  color: #b63a2d;
  border: 1px solid #f3c2bd;
}
.admin-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.admin-product-form-wrap,
.admin-product-list-wrap {
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(25, 57, 125, 0.08);
  padding: 24px;
}
.admin-section-head {
  margin-bottom: 18px;
}
.admin-section-head h2 {
  font-size: 32px;
}
.admin-product-form {
  display: grid;
  gap: 16px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.admin-product-form label {
  display: grid;
  gap: 8px;
}
.admin-product-form label span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #34507c;
}
.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  border: 1px solid #d6e0ef;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text-main);
  background: #f8fbff;
}
.admin-product-form textarea {
  resize: vertical;
}
.admin-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}
.admin-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}
.admin-check span {
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.admin-image-card {
  border: 1px solid #dce4f3;
  border-radius: 16px;
  background: #f8fbff;
  padding: 8px;
}
.admin-image-controls {
  display: grid;
  gap: 10px;
  padding: 10px 4px 4px;
}
.admin-check-danger span {
  color: #b63a2d !important;
}
.admin-help-text {
  margin: -4px 0 2px;
  color: #677a96;
  font-size: 14px;
}
.admin-image-preview,
.admin-table-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #eef3fb;
}
.admin-table-thumb {
  width: 76px;
}
.admin-table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-table-actions form {
  margin: 0;
}
.admin-product-filters {
  margin-bottom: 18px;
}
.admin-table-wrap {
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(36, 67, 143, 0.1);
  box-shadow: 0 18px 50px rgba(25, 57, 125, 0.08);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1080px;
}
.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e2e9f5;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  background: #eef3fb;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 20px;
}
.admin-table td {
  line-height: 1.6;
  color: var(--text-soft);
}
.admin-product-table {
  min-width: 880px;
}
@media (max-width: 1100px) {
  .admin-product-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .admin-form-grid,
  .admin-image-grid {
    grid-template-columns: 1fr;
  }
}
.about-minimal {
  background: #f4f7fb;
}
.about-minimal .about-section {
  padding: 56px 0;
}
.about-minimal .about-section + .about-section {
  padding-top: 20px;
}
.about-narrow {
  max-width: 1040px;
  text-align: center;
}
.about-module-image {
  width: min(100%, var(--banner-width));
  aspect-ratio: var(--banner-ratio);
  margin: 0 auto var(--banner-copy-offset);
  object-fit: cover;
  object-position: center;
  border-radius: var(--banner-radius);
  box-shadow: var(--banner-shadow);
}
.about-minimal .about-hero {
  padding: var(--banner-padding);
  background: #ffffff;
}
.about-hero-image {
  aspect-ratio: var(--banner-ratio);
}
.about-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.about-copy h1,
.about-section-head h2 {
  margin: 0;
  font-family: "Rajdhani", Arial, sans-serif;
  color: #152a4f;
  line-height: 1;
  letter-spacing: 0;
}
.about-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 72px);
}
.about-copy p,
.about-section-head p {
  margin: 0;
  color: #5d6c82;
  font-size: 18px;
  line-height: 1.5;
}
.about-copy .btn,
.about-final-cta .btn {
  margin-top: 4px;
}
.about-hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}
.about-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f0f4fa;
  color: #152a4f;
  font-size: 14px;
  font-weight: 700;
}
.about-section-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}
.about-section-head h2 {
  font-size: clamp(36px, 4vw, 56px);
}
.customer-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}
.customer-carousel-viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.customer-carousel-viewport::-webkit-scrollbar {
  display: none;
}
.customer-carousel-viewport img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  scroll-snap-align: start;
  transition: transform 0.18s ease;
}
.customer-carousel-viewport img:hover {
  transform: scale(1.025);
}
.customer-carousel-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(21, 42, 79, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #152a4f;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 26px rgba(20, 40, 77, 0.08);
}
.customer-carousel-button:hover {
  border-color: rgba(235, 37, 28, 0.32);
  color: var(--accent);
}
.customer-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 20px;
  margin-top: 4px;
}
.customer-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5cfdd;
  cursor: pointer;
}
.customer-carousel-dots button.is-active {
  width: 24px;
  background: var(--accent);
}
.about-company-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-company-shot {
  margin: 0;
  display: grid;
  gap: 10px;
}
.about-company-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.about-company-shot figcaption {
  color: #5d6c82;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: min(420px, calc(100% - 24px));
}
.cookie-banner-inner {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(36, 67, 143, 0.12);
  box-shadow: 0 18px 40px rgba(20, 40, 77, 0.16);
}
.cookie-banner-copy {
  display: grid;
  gap: 6px;
}
.cookie-banner-copy strong {
  color: #152a4f;
  font-size: 16px;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn {
  min-height: 40px;
  padding: 0 16px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 0 auto;
  background: #d9e1ed;
}
.capability-grid strong {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 18px;
  background: #ffffff;
  color: #152a4f;
  font-size: 22px;
  line-height: 1.15;
  text-align: center;
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-info-card,
.about-process-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 40, 77, 0.06);
}
.about-info-card span,
.about-process-grid article span {
  color: var(--accent);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-info-card h3,
.about-process-grid h3 {
  margin: 0;
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}
.about-info-card p,
.about-process-grid p {
  margin: 0;
  color: #65748c;
  font-size: 16px;
  line-height: 1.55;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}
.about-proof-grid div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 132px;
  padding: 20px;
  background: #ffffff;
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 40, 77, 0.06);
}
.about-proof-grid strong {
  color: #152a4f;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 40px;
  line-height: 0.95;
}
.about-proof-grid span {
  color: #65748c;
  font-size: 15px;
  line-height: 1.35;
}
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-process-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 184px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 40, 77, 0.05);
}
.about-process-grid article span {
  color: var(--accent);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.about-process-grid article h3 {
  margin: 0;
  color: #152a4f;
  font-size: 22px;
}
.about-process-grid article p {
  margin: 0;
  color: #65748c;
  font-size: 15px;
  line-height: 1.55;
}
.about-buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.about-buyer-grid article,
.about-workflow-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 168px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 40, 77, 0.05);
}
.about-buyer-grid h3,
.about-workflow-grid h3 {
  margin: 0;
  color: #152a4f;
  font-size: 22px;
}
.about-buyer-grid p,
.about-workflow-grid p {
  margin: 0;
  color: #65748c;
  font-size: 15px;
  line-height: 1.55;
}
.about-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: workflow-step;
}
.about-workflow-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(235, 37, 28, 0.1);
  color: var(--accent);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.about-workflow-grid article {
  position: relative;
  min-height: 190px;
  border-color: rgba(21, 42, 79, 0.12);
}
.about-workflow-grid article::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -17px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(235, 37, 28, 0.45), rgba(21, 42, 79, 0.12));
}
.about-workflow-grid article:nth-child(4n)::after,
.about-workflow-grid article:last-child::after {
  display: none;
}
.about-history {
  background: linear-gradient(180deg, rgba(242, 246, 252, 0.78), rgba(255, 255, 255, 0));
}
.about-timeline {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}
.about-timeline-nav {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 24px;
}
.about-timeline-nav::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 999px;
  background: #d9e1ee;
}
.about-timeline-nav::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  width: 2px;
  height: var(--timeline-progress, 0%);
  border-radius: 999px;
  background: var(--accent);
  transition: height 0.32s ease;
}
.about-timeline-item {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #152a4f;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 40, 77, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #aebbd0;
  box-shadow: 0 0 0 1px rgba(21, 42, 79, 0.12);
  z-index: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}
.about-timeline-item:hover {
  transform: translateX(4px);
  border-color: rgba(235, 37, 28, 0.22);
}
.about-timeline-item.is-active {
  border-color: rgba(235, 37, 28, 0.35);
  box-shadow: 0 16px 34px rgba(20, 40, 77, 0.09);
}
.about-timeline-item.is-active::before {
  background: var(--accent);
  transform: scale(1.18);
}
.about-timeline-item span {
  color: var(--accent);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.about-timeline-item strong {
  font-size: 15px;
  line-height: 1.25;
}
.about-timeline-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 40, 77, 0.08);
}
.about-timeline-panel::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 18px;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(235, 37, 28, 0.18);
  border-radius: 999px;
}
.about-timeline-panel::after {
  content: "";
  position: absolute;
  right: 66px;
  bottom: 32px;
  width: 170px;
  height: 2px;
  background: rgba(21, 42, 79, 0.1);
  transform: rotate(-28deg);
}
.about-timeline-panel.is-changing {
  animation: timelinePanelSwap 0.32s ease;
}
.about-timeline-year {
  width: max-content;
  color: var(--accent);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.9;
}
.about-timeline-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #152a4f;
  font-size: 30px;
}
.about-timeline-panel p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: #65748c;
  font-size: 16px;
  line-height: 1.65;
}
.about-timeline-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.about-timeline-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f2f6fc;
  border: 1px solid rgba(21, 42, 79, 0.08);
  color: #152a4f;
  font-size: 13px;
  font-weight: 700;
}
@keyframes timelinePanelSwap {
  0% {
    opacity: 0.35;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-faq-list {
  display: grid;
  gap: 10px;
  text-align: left;
}
.about-faq-list details {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(20, 40, 77, 0.04);
}
.about-faq-list summary {
  cursor: pointer;
  list-style: none;
  color: #152a4f;
  font-size: 18px;
  font-weight: 700;
}
.about-faq-list summary::-webkit-details-marker {
  display: none;
}
.about-faq-list p {
  margin: 12px 0 0;
  color: #65748c;
  font-size: 15px;
  line-height: 1.6;
}
.about-logistics-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 40, 77, 0.07);
}
.about-logistics-panel div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f2;
}
.about-logistics-panel div:last-child {
  border-bottom: 0;
}
.about-logistics-panel strong {
  color: #152a4f;
  font-size: 20px;
}
.about-logistics-panel span {
  color: #65748c;
  line-height: 1.5;
}
.about-range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
}
.about-range-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(21, 42, 79, 0.1);
  border-radius: 8px;
  color: #152a4f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 8px 20px rgba(20, 40, 77, 0.04);
}
.about-range-grid-compact {
  margin-top: 16px;
}
.about-final-cta {
  text-align: center;
  background: transparent;
}
@media (max-width: 1080px) {
  .finder-shell,
  .oem-hero-grid,
  .oem-tool-panel,
  .about-home-grid,
  .operations-layout,
  .route-grid,
  .trust-strip,
  .catalog-band,
  .hero-grid,
  .products-search-hub,
  .search-grid,
  .feature-grid,
  .products-layout,
  .detail-support-grid,
  .detail-layout,
  .oem-layout,
  .contact-layout,
  .footer-grid,
  .brand-grid,
  .cases-grid,
  .solution-detail-shell,
  .solution-quick-summary,
  .solution-blog-grid,
  .solution-related-grid,
  .related-products-grid {
    grid-template-columns: 1fr;
  }
  .solution-toc,
  .solution-rfq-card {
    position: static;
  }
  .solution-toc {
    display: flex;
    overflow-x: auto;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(36, 67, 143, 0.08);
  }
  .solution-toc .solution-sidebar-label {
    display: none;
  }
  .solution-toc a {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid rgba(36, 67, 143, 0.1);
    border-radius: 999px;
    background: #f8fafc;
  }
  .products-topbar {
    position: static;
    top: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 0;
    background: transparent;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .finder-tools-inline {
    grid-template-columns: 1fr;
  }
  .product-search-form {
    grid-template-columns: 1fr;
  }
  .oem-result-card,
  .oem-search-results {
    grid-template-columns: 1fr;
  }
  .oem-select-wrap {
    min-height: 44px;
    border-right: none;
    border-bottom: 1px solid rgba(36, 67, 143, 0.08);
  }
  .oem-result-media {
    min-height: 190px;
  }
  .oe-search-card {
    max-width: none;
  }
  .category-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .customer-carousel-viewport {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
  .about-card-grid,
  .about-proof-grid,
  .about-process-grid,
  .about-buyer-grid,
  .about-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-workflow-grid article:nth-child(4n)::after {
    display: block;
  }
  .about-workflow-grid article:nth-child(2n)::after,
  .about-workflow-grid article:last-child::after {
    display: none;
  }
  .about-timeline {
    grid-template-columns: 1fr;
  }
  .about-timeline-nav {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    padding: 0 0 10px;
  }
  .about-timeline-nav::before,
  .about-timeline-nav::after,
  .about-timeline-item::before {
    display: none;
  }
  .about-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-shell {
    padding: 24px;
  }
  .hero-copy h1 {
    max-width: none;
  }
  .about-home-media {
    min-height: 320px;
  }
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .filter-panel {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}
@media (max-width: 760px) {
  .site-header-inner { flex-wrap: wrap; }
  .site-brand-logo {
    width: min(62vw, 210px);
    min-width: 0;
  }
  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 32, 43, 0.14);
    background: transparent;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }
  .site-nav.is-open { display: flex; }
  .site-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .language-switch {
    order: -1;
  }
  .top-strip-inner {
    justify-content: center;
    gap: 8px 14px;
    text-align: center;
  }
  .top-strip-contact {
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-actions .btn {
    min-height: 44px;
  }
  .grid-4,
  .grid-3,
  .grid-2,
  .solution-article-meta,
  .process-grid,
  .hero-mini-grid,
  .compare-frame,
  .media-row,
  .solution-blog-grid,
  .related-products-grid,
  .oem-spec-grid,
  .oem-fitment-head,
  .oem-fitment-row,
  .oem-info-table div { grid-template-columns: 1fr; }
  .solution-detail-hero {
    height: clamp(280px, 54vw, 360px);
  }
  .solution-detail-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  }
  .solution-info-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .solution-summary-card {
    width: auto;
    margin: 18px 18px 0;
  }
  .solution-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .solution-final-cta .btn {
    width: 100%;
  }
  .products-topbar {
    position: static;
    top: auto;
    grid-template-columns: 1fr;
    background: transparent;
  }
  .product-sort-wrap select { min-width: 100%; }
  .inquiry-cart-dock {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    width: calc(100vw - 24px);
    padding: 12px 14px;
    gap: 12px;
  }
  .inquiry-cart-meta {
    display: none;
  }
  .inquiry-cart-panel {
    gap: 10px;
  }
  .inquiry-cart-actions {
    flex-direction: column;
  }
  .inquiry-cart-actions .btn {
    width: 100%;
  }
  .detail-fitment-grid,
  .detail-info-grid { grid-template-columns: 1fr; }
  .detail-oem-hero { grid-template-columns: 1fr; display: grid; }
  .detail-oem-actions { flex-wrap: wrap; }
  .detail-oem-link strong { font-size: 34px; }
  .detail-inquiry-head strong { font-size: 22px; }
  .oem-results-head,
  .oem-query-head {
    align-items: start;
    flex-direction: column;
  }
  .oem-result-body {
    grid-template-columns: 1fr;
  }
  .oem-result-title-row {
    align-items: flex-start;
  }
  .oem-card-actions {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 6px;
  }
  .oem-fitment-head span,
  .oem-fitment-row span {
    border-right: none;
    border-bottom: 1px solid #e2e9f5;
  }
  .oem-fitment-head span:last-child,
  .oem-fitment-row span:last-child {
    border-bottom: none;
  }
  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-search-form input[name="search_value"],
  .product-search-form input[name="q"] {
    min-height: 46px;
    padding-right: 90px;
  }
  .product-search-form .btn {
    padding: 0 14px;
  }
  .ymm-actions .btn {
    min-width: 0;
    width: 100%;
  }
  .products-search-note {
    padding: 22px;
  }
  .finder-shell {
    padding: 18px;
    border-radius: 26px;
  }
  .hero-panel .container {
    width: min(100%, calc(100% - 12px));
  }
  .hero-shell {
    padding: 18px;
    border-radius: 8px;
  }
  .hero-dots {
    left: 18px;
    bottom: 18px;
  }
  .hero-copy {
    padding: 0;
  }
  .page-banner {
    padding: 18px 0 18px;
  }
  .page-banner > .container {
    width: min(100%, calc(100% - 24px));
  }
  .page-banner-shell {
    min-height: 280px;
    padding: 20px 18px;
    border-radius: 8px;
  }
  .products-page-banner .page-banner-shell {
    min-height: 280px;
    padding: 20px 18px;
  }
  .page-banner h1 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .page-banner-search {
    padding: 14px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-brand-block h4 {
    white-space: normal;
  }
  .footer-nav-block-columns ul {
    grid-template-columns: 1fr;
  }
  .finder-tools .search-card,
  .ops-note,
  .category-spotlight {
    padding: 22px;
  }
  .category-spotlight-tabs {
    gap: 20px;
  }
  .category-tab {
    font-size: 20px;
  }
  .category-spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spotlight-card {
    min-height: 184px;
  }
  .detail-fitment-grid,
  .detail-info-grid { grid-template-columns: 1fr; }
  .detail-fitment-row { grid-template-columns: 1fr; gap: 4px; }
  .detail-oem-link strong { font-size: 30px; }
  .hero-copy h1 { line-height: 0.98; }
  .stats-band {
    padding: 10px;
    border-radius: 24px;
  }
  .ymm-widget {
    padding: 22px;
  }
  .ymm-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
  }
  .ymm-step-no {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 22px;
  }
  .ymm-step-field select {
    min-height: 48px;
    font-size: 17px;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-panel .container {
    width: min(100%, calc(100% - 24px));
  }
  .about-minimal .about-section {
    padding: 42px 0;
  }
  .about-minimal .about-hero,
  .image-page-hero,
  .module-hero {
    padding: var(--banner-mobile-padding);
  }
  .about-module-image {
    margin-bottom: 22px;
  }
  .image-page-hero-copy {
    margin-top: 22px;
  }
  .catalog-hero {
    padding: 26px 0 20px;
  }
  .catalog-hero-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-hero-actions {
    justify-content: flex-start;
  }
  .module-hero-grid {
    gap: 22px;
  }
  .module-hero-search {
    padding: 14px;
  }
  .module-hero-copy .btn {
    width: fit-content;
  }
  .about-home-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .about-home-copy .btn {
    width: fit-content;
  }
  .about-home-copy h2 {
    white-space: normal;
  }
  .testimonial-home-content {
    padding: 22px;
    min-height: 0;
  }
  .testimonial-home-head {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-home-head h2 {
    font-size: 28px;
  }
  .testimonial-home-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card-photo {
    width: 100%;
  }
  .testimonial-home-card p {
    font-size: 16px;
    line-height: 1.55;
  }
  .customer-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }
  .customer-carousel-viewport {
    grid-auto-columns: 100%;
  }
  .customer-carousel-button {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .capability-grid,
  .about-card-grid,
  .about-proof-grid,
  .about-process-grid,
  .about-buyer-grid,
  .about-workflow-grid,
  .about-range-grid,
  .about-company-gallery {
    grid-template-columns: 1fr;
  }
  .about-workflow-grid article::after,
  .about-workflow-grid article:nth-child(4n)::after {
    display: none;
  }
  .about-timeline {
    gap: 16px;
  }
  .about-timeline-nav {
    grid-template-columns: repeat(5, minmax(138px, 1fr));
  }
  .about-timeline-item {
    min-height: 72px;
    padding: 12px;
  }
  .about-timeline-item span {
    font-size: 24px;
  }
  .about-timeline-panel {
    min-height: 0;
    padding: 24px;
  }
  .about-timeline-year {
    font-size: 54px;
  }
  .about-timeline-panel h3 {
    font-size: 24px;
  }
  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .btn {
    flex: 1 1 0;
  }
  .brand-strip {
    gap: 12px;
    --brand-marquee-distance: -1386px;
  }
  .brand-logo-item {
    flex-basis: 142px;
    height: 78px;
    padding: 18px 20px;
    animation-duration: 30s;
  }
  .brand-logo-item img {
    max-width: 98px;
    max-height: 36px;
  }
  .about-info-card,
  .about-process-grid article {
    min-height: 0;
  }
  .about-logistics-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
  .capability-grid strong,
  .about-range-grid span {
    min-height: 72px;
  }
}
