:root {
  --orange: #f47b20;
  --ink: #111;
  --muted: #5f6670;
  --line: #e8e8e8;
  --soft: #f5f6f7;
  --dark: #020202;
  --main: 1320px;
  --time: 0.28s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: #fff;
  overflow-x: hidden;
}

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

ul,
li {
  list-style: none;
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

section,
main {
  width: 100%;
}

.main {
  width: var(--main);
  max-width: 90%;
  margin: 0 auto;
}

.img_100 {
  display: flex;
  overflow: hidden;
}

.img_100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-clamp2,
.line-clamp3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.SiteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 54px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ededed;
  backdrop-filter: blur(10px);
}

.SiteHeader .inner {
  width: 1520px;
  max-width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 46px;
}

.SiteHeader .logo {
  width: 74px;
  flex: 0 0 74px;
}

.SiteHeader .nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
}

.SiteHeader .nav a {
  position: relative;
  color: #4c4f57;
  font-size: 15px;
  padding: 16px 0 15px;
  transition: color var(--time);
}

.SiteHeader .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--time);
}

.SiteHeader .nav a:hover,
.SiteHeader .nav a.active {
  color: #111;
}

.SiteHeader .nav a:hover::after,
.SiteHeader .nav a.active::after {
  transform: scaleX(1);
}

.SiteHeader .actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #5b6068;
}

.SiteHeader .quoteLink {
  font-size: 14px;
  transition: color var(--time);
}

.SiteHeader .quoteLink:hover {
  color: var(--orange);
}

.SiteHeader .searchBtn {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.SiteHeader .searchBtn svg {
  width: 17px;
  height: 17px;
}

.SiteHeader .menuButton {
  display: none;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.SiteHeader .menuButton span {
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform var(--time), opacity var(--time);
}

.SiteHeader .menuButton.opened span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.SiteHeader .menuButton.opened span:nth-child(2) {
  opacity: 0;
}

.SiteHeader .menuButton.opened span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.SiteHeader .navMobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 54px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 5%;
}

.SiteHeader .navMobile a {
  display: block;
  padding: 12px 0;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
}

.SearchPanel {
  position: fixed;
  inset: 54px 0 auto;
  z-index: 45;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--time), opacity var(--time);
}

.SearchPanel.open {
  transform: translateY(0);
  opacity: 1;
}

.SearchPanel .searchForm {
  width: min(720px, 90%);
  margin: 22px auto;
  display: flex;
  border-bottom: 1px solid #111;
}

.SearchPanel input {
  flex: 1;
  height: 44px;
}

.SearchPanel button {
  width: 90px;
  color: var(--orange);
}

.HeroStack .heroPanel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #f1f4f7;
}

.HeroStack .heroPanel + .heroPanel {
  border-top: 4px solid #fff;
}

.HeroStack .heroMedia {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.HeroStack .heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.HeroStack .heroMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.9) 27%, rgba(245, 247, 250, 0.18) 56%, rgba(245, 247, 250, 0) 100%);*/
}

.HeroStack .heroPanel:nth-child(3) {
  background: #f2eadf;
}

.HeroStack .heroPanel.dark .heroMedia::after {
  background: linear-gradient(90deg, rgba(0, 5, 12, 0.98) 0%, rgba(0, 5, 12, 0.82) 32%, rgba(0, 5, 12, 0.1) 70%);
}

.HeroStack .heroBody {
  position: relative;
  z-index: 2;
  width: 560px;
  max-width: 44%;
  margin-left: max(8%, calc((100% - var(--main)) / 2));
  padding: 70px 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.HeroStack .heroPanel.dark .heroBody {
  color: #fff;
}

.HeroStack h1,
.HeroStack h2 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.HeroStack .lead {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 30px;
}

.HeroStack .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  margin-bottom: 30px;
  font-size: 21px;
}

.HeroStack .tags span + span::before {
  content: "•";
  margin-right: 22px;
  color: currentColor;
}

.HeroStack .learnBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 50px;
  padding: 0 28px;
  border-radius: 28px;
  color: #000;
  background: #fff;
  font-size: 15px;
  transform: translateY(220px) !important;
  transition: none !important;
  transition: transform var(--time), background var(--time), color var(--time);
}

.HeroStack .heroPanel.dark .learnBtn {
  color: #111;
  background: #e4e6e8;
}

.HeroStack .learnBtn:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #fff;
}

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

.SectionTitle h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
}

.SectionTitle p {
  color: #6a6f77;
  margin-top: 6px;
}

.SectionTitle .moreLink,
.SectionTitle .sliderBtns {
  color: #727780;
  font-size: 14px;
}

.SectionTitle .moreLink:hover {
  color: var(--orange);
}

.SectionTitle .sliderBtns {
  display: flex;
  gap: 12px;
}

.SectionTitle .sliderBtns button {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color var(--time), border-color var(--time), transform var(--time);
  transform: translateY(0%);
  position: unset !important;
  background-color:unset !important;
}

.SectionTitle .sliderBtns button:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.NewProducts {
  padding: 110px 0 90px;
}

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

.NewProducts .item {
  min-height: 285px;
  background: #f3f3f2;
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  padding: 26px 28px;
  overflow: hidden;
  transition: transform var(--time), box-shadow var(--time);
}

.NewProducts .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.NewProducts .item h3 {
  grid-column: 1 / 3;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.NewProducts .item .copy {
  align-self: end;
  width: 240px;
  max-width: 100%;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.58);
  color: #6a6f77;
  font-size: 15px;
}

.NewProducts .item .copy a {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  text-decoration: underline;
  display: block;
}

.NewProducts .item .productPic {
  align-self: center;
  justify-self: center;
  max-height: 190px;
  object-fit: contain;
  transition: transform var(--time);
}

.NewProducts .item:hover .productPic {
  transform: scale(1.03);
}

.ExploreWylon {
  padding: 86px 0 94px;
}

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

.ExploreWylon .item {
  background: #f3f3f2;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: transform var(--time), box-shadow var(--time);
}

.ExploreWylon .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.ExploreWylon .item .img_100 {
  height: 185px;
}

.ExploreWylon .item .body {
  min-height: 155px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ExploreWylon .item h3 {
  font-size: 21px;
  font-weight: 500;
}

.ExploreWylon .item p {
  color: #6b7078;
  margin-top: 24px;
  font-size: 15px;
}

.ExploreWylon .item .arrow {
  align-self: flex-end;
  font-size: 24px;
}

.MarketSolutions {
  padding: 92px 0 106px;
  background: #f5f6f7;
}

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

.MarketSolutions .item {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--time), box-shadow var(--time);
}

.MarketSolutions .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.MarketSolutions .item img {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0.56;*/
}

.MarketSolutions .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 48%, rgba(255, 255, 255, 0.18) 100%);
}

.MarketSolutions .item .body {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.MarketSolutions .item h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.MarketSolutions .item p,
.MarketSolutions .item li {
  color: #40454d;
  font-size: 15px;
}

.MarketSolutions .item ul {
  position: relative;
  z-index: 2;
  margin-top: 90px;
}

.MarketSolutions .item .learn {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}

.SupportLinks {
  padding: 96px 0 86px;
}

.SupportLinks .supportLayout {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 90px;
}

.SupportLinks h2 {
  font-size: 28px;
  font-weight: 500;
}

.SupportLinks .supportList li a,
.SupportLinks .supportList li button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #333942;
  text-align: left;
  transition: color var(--time), padding var(--time);
}

.SupportLinks .supportList li a:hover,
.SupportLinks .supportList li button:hover {
  color: var(--orange);
  padding-left: 12px;
}

.SupportLinks .supportList li p {
  display: none;
  padding: 16px 0;
  color: #626973;
  line-height: 1.7;
}

.SupportLinks .supportList li.active button {
  color: var(--orange);
}

.SupportLinks .supportList li.active button span {
  transform: rotate(90deg);
}

.SiteFooter {
  background: #020202;
  color: rgba(255, 255, 255, 0.64);
  padding: 50px 0 42px;
}

.SiteFooter .note {
  font-size: 13px;
  margin-bottom: 46px;
}

.SiteFooter .footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

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

.SiteFooter li + li {
  margin-top: 10px;
}

.SiteFooter a {
  font-size: 14px;
  transition: color var(--time);
}

.SiteFooter a:hover {
  color: #fff;
}

.SiteFooter .sloganRow {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.SiteFooter .slogan {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.SiteFooter .socialList {
  display: flex;
  gap: 12px;
}

.SiteFooter .socialList li {
  position: relative;
  margin: 0;
}

.SiteFooter .socialList a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #151d2a;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
}

.SiteFooter .socialList img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: invert(1);
}

.SiteFooter .socialList .tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 180px;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #111;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: opacity var(--time), transform var(--time);
}

.SiteFooter .socialList li:hover .tip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.SiteFooter .legalRow {
  display: flex;
  gap: 34px;
  margin-top: 26px;
  font-size: 13px;
}

.PageHero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: #f2f4f6;
  overflow: hidden;
}

.PageHero .main {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
  gap: 60px;
}

.PageHero h1 {
  font-size: 48px;
  line-height: 1.16;
  margin-bottom: 14px;
}

.PageHero p {
  color: #656b73;
  max-width: 560px;
  font-size: 18px;
}

.PageHero .heroImage {
  justify-self: end;
  max-height: 320px;
  object-fit: contain;
}

.ProductCatalog {
  padding: 70px 0 95px;
}

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

.ProductCatalog .item a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #f6f6f5;
  padding: 18px;
  transition: transform var(--time), box-shadow var(--time);
}

.ProductCatalog .item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.ProductCatalog .item img {
  height: 104px;
  object-fit: contain;
}

.ProductCatalog .item h3 {
  font-size: 15px;
  text-align: center;
  font-weight: 500;
}

.DetailHero {
  padding: 82px 0;
  background: #f6f6f4;
}

.DetailHero .detailLayout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.DetailHero .detailImage {
  background: #fff;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 34px;
}

.DetailHero .detailImage img {
  max-height: 360px;
  object-fit: contain;
}

.DetailHero h1 {
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 22px;
}

.DetailHero .subtitle {
  font-size: 22px;
  color: #333942;
  margin-bottom: 22px;
}

.DetailHero .desc {
  color: #656b73;
  margin-bottom: 26px;
}

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

.DetailHero .featureList li {
  padding-left: 16px;
  position: relative;
}

.DetailHero .featureList li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 10px;
}

.PrimaryBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  height: 46px;
  padding: 0 24px;
  border-radius: 24px;
  color: #fff;
  background: var(--orange);
  transition: transform var(--time), box-shadow var(--time);
}

.PrimaryBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.24);
}

.FeatureBand {
  padding: 82px 0;
}

.FeatureBand.alt {
  background: #f5f6f7;
}

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

.FeatureBand .item {
  background: #fff;
  padding: 34px 30px;
  min-height: 190px;
  border: 1px solid #eee;
  transition: transform var(--time), box-shadow var(--time);
}

.FeatureBand .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.FeatureBand .item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.FeatureBand .item p {
  color: #626973;
}

.SplitInfo {
  padding: 86px 0;
}

.SplitInfo .splitLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.SplitInfo .imagePanel {
  background: #f3f3f2;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 36px;
}

.SplitInfo .imagePanel img {
  max-height: 300px;
  object-fit: contain;
}

.SplitInfo h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.SplitInfo p {
  color: #626973;
  margin-bottom: 14px;
}

.SolutionsPage {
  padding: 72px 0 96px;
}

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

.SolutionsPage .item a {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 300px;
  background: #f5f5f4;
  transition: transform var(--time), box-shadow var(--time);
}

.SolutionsPage .item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.SolutionsPage .item .body {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.SolutionsPage .item h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.SolutionsPage .item p,
.SolutionsPage .item li {
  color: #626973;
  font-size: 15px;
}

.SolutionsPage .item .learn {
  color: var(--orange);
  text-decoration: underline;
  margin-top: 20px;
}

.OemIntro {
  padding: 86px 0;
}

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

.OemIntro .item {
  background: #f6f6f5;
  padding: 32px 28px;
  min-height: 190px;
  transition: transform var(--time), box-shadow var(--time);
}

.OemIntro .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.OemIntro .item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.OemIntro .item p {
  color: #656b73;
}

.ProcessSteps {
  padding: 88px 0;
  background: #f5f6f7;
}

.ProcessSteps .stepList {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ProcessSteps .item {
  background: #fff;
  padding: 30px 22px;
  min-height: 170px;
}

.ProcessSteps .num {
  color: var(--orange);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}

.ProcessSteps h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ProcessSteps p {
  color: #666d76;
  font-size: 14px;
}

.AboutIntro {
  padding: 82px 0;
}

.AboutIntro .aboutLayout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.AboutIntro h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.AboutIntro p {
  color: #626973;
  margin-bottom: 14px;
}

.AboutIntro .img_100 {
  height: 390px;
}

.StatsBand {
  padding: 70px 0;
  background: #f5f6f7;
}

.StatsBand .statsList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.StatsBand .item {
  background: #fff;
  padding: 34px 20px;
}

.StatsBand .num {
  font-size: 46px;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.StatsBand .label {
  color: #5e6570;
}

.MediaGrid {
  padding: 84px 0;
}

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

.MediaGrid .item {
  background: #f5f5f4;
  transition: transform var(--time), box-shadow var(--time);
}

.MediaGrid .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.MediaGrid .item .img_100 {
  height: 220px;
}

.MediaGrid .item .body {
  padding: 24px 22px;
}

.MediaGrid .item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.MediaGrid .item p {
  color: #646b74;
}

.SupportPage {
  padding: 76px 0 96px;
}

.SupportPage .supportGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 70px;
}

.SupportPage .supportGrid .item {
  background: #f6f6f5;
  padding: 32px 28px;
  min-height: 180px;
  transition: transform var(--time), box-shadow var(--time);
}

.SupportPage .supportGrid .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.SupportPage .faqList {
  border-top: 1px solid var(--line);
}

.SupportPage .faqList .item {
  border-bottom: 1px solid var(--line);
}

.SupportPage .faqList .question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.SupportPage .faqList .answer {
  display: none;
  padding: 0 0 22px;
  color: #646b74;
}

.SupportPage .faqList .item.active .question {
  color: var(--orange);
}

.ContactPage {
  padding: 74px 0 92px;
}

.ContactPage .contactLayout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.ContactPage .contactInfo {
  background: #f6f6f5;
  padding: 42px 36px;
}

.ContactPage .contactInfo h2,
.ContactPage .contactForm h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

.ContactPage .contactInfo li + li {
  margin-top: 18px;
}

.ContactPage .contactInfo strong {
  display: block;
  margin-bottom: 4px;
}

.ContactPage .contactInfo span {
  color: #626973;
}

.ContactPage .contactForm {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
}

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

.ContactPage .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ContactPage .field.full {
  grid-column: 1 / 3;
}

.ContactPage label {
  font-size: 14px;
  color: #5c636d;
}

.ContactPage input,
.ContactPage textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  padding: 13px 14px;
  background: #fafafa;
  transition: border-color var(--time), background var(--time);
}

.ContactPage textarea {
  min-height: 132px;
  resize: vertical;
}

.ContactPage input:focus,
.ContactPage textarea:focus {
  border-color: var(--orange);
  background: #fff;
}

.DialogShell {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.DialogShell.open {
  display: flex;
}

.DialogShell .mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.DialogShell .dialogBox {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  background: #fff;
  padding: 34px;
  border-radius: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--time), opacity var(--time);
}

.DialogShell.quoteDialog .dialogBox {
  width: min(760px, 100%);
}

.DialogShell.open .dialogBox {
  transform: translateY(0);
  opacity: 1;
}

.DialogShell .closeDialog {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 26px;
  line-height: 1;
}

.DialogShell h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.DialogShell p {
  color: #626973;
  margin-bottom: 18px;
}

.DialogShell .dialogLine {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.DialogShell .quoteForm {
  margin-top: 18px;
}

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

.DialogShell .quoteForm .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.DialogShell .quoteForm .field.full {
  grid-column: 1 / 3;
}

.DialogShell .quoteForm label {
  color: #4b535d;
  font-size: 13px;
}

.DialogShell .quoteForm input,
.DialogShell .quoteForm textarea {
  width: 100%;
  border: 1px solid #dfe2e6;
  border-radius: 4px;
  background: #fff;
  padding: 11px 13px;
}

.DialogShell .quoteForm textarea {
  min-height: 110px;
  resize: vertical;
}

.DialogShell .quoteForm .agree {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #5e6570;
  font-size: 13px;
}

.DialogShell .quoteForm .agree input {
  width: auto;
  margin-top: 3px;
}

.DialogShell .quoteForm .OrangeBtn {
  width: 100%;
}

.LegalDialogShell {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.LegalDialogShell.open {
  display: flex;
}

.LegalDialogShell .mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.LegalDialogShell .dialogBox {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  max-height: 80vh;
  background: #fff;
  padding: 34px;
  border-radius: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--time), opacity var(--time);
  overflow-y: auto;
}

.LegalDialogShell.open .dialogBox {
  transform: translateY(0);
  opacity: 1;
}

.LegalDialogShell .closeDialog {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 26px;
  line-height: 1;
}

.LegalDialogShell .dialogTitle {
  font-size: 26px;
  margin-bottom: 18px;
}

.LegalDialogShell .dialogBody {
  color: #4b535d;
  line-height: 1.8;
  font-size: 15px;
}

.LegalDialogShell .dialogBody p {
  margin-bottom: 16px;
}

.LegalDialogShell .dialogBody h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.LegalDialogShell .dialogBody ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.LegalDialogShell .dialogBody li {
  margin-bottom: 8px;
}

.FadeIn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.FadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.TopSubNav {
  position: sticky;
  top: 54px;
  z-index: 42;
  height: 42px;
  border-bottom: 1px solid #f0f0f0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.TopSubNav .main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 74px;
}

.TopSubNav a {
  color: #47505a;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 16px;
  transition: background var(--time), color var(--time);
}

.TopSubNav a:hover,
.TopSubNav a.active {
  background: #f0f1f2;
  color: #111;
}

.CenterHead {
  text-align: center;
  margin-bottom: 56px;
}

.CenterHead .eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.CenterHead h1,
.CenterHead h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.CenterHead p {
  max-width: 680px;
  margin: 0 auto;
  color: #626973;
}

.FormBox input,
.FormBox textarea,
.FormBox select {
  width: 100%;
  border: 1px solid #dfe2e6;
  border-radius: 4px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  color: #111;
}

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

.FormBox label {
  display: block;
  color: #4b535d;
  font-size: 13px;
  margin-bottom: 7px;
}

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

.FormBox .field.full {
  grid-column: 1 / 3;
}

.OrangeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 44px;
  padding: 0 24px;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  transition: transform var(--time), box-shadow var(--time);
}

.OrangeBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.25);
}

.ContactExact {
  background: #f7f7f7;
  padding: 92px 0 78px;
}

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

.ContactExact h1 {
  font-size: 34px;
  margin-bottom: 22px;
}

.ContactExact .intro {
  max-width: 610px;
  color: #434b55;
  margin-bottom: 48px;
}

.ContactExact .contactList .item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  margin-bottom: 34px;
}

.ContactExact .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff2e8;
  color: var(--orange);
  font-weight: 700;
}

.ContactExact .icon img {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

.ContactExact .contactList h3 {
  font-size: 19px;
  margin-bottom: 5px;
}

.ContactExact .contactList p {
  color: #3f4751;
}

.ContactExact .follow {
  margin-top: 38px;
}

.ContactExact .follow h3 {
  margin-bottom: 18px;
}

.ContactExact .socials {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

.ContactExact .socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ContactExact .messageCard {
  background: #f4f4f4;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 34px 36px 44px;
}

.ContactExact .messageCard h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.ContactExact .agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5e6570;
  font-size: 13px;
}

.ContactExact .agree input {
  width: auto;
  margin-top: 3px;
}

.ContactExact .OrangeBtn {
  width: 100%;
}

.CommitmentExact {
  padding: 74px 0 92px;
  background: #fff;
}

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

.CommitmentExact .item {
  background: #f5f5f5;
  border-radius: 8px;
  min-height: 220px;
  padding: 36px 28px;
  text-align: center;
}

.CommitmentExact .item .icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: #fff2e6;
  color: var(--orange);
  font-weight: 700;
}

.CommitmentExact .item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.CommitmentExact .item p {
  color: #5f6670;
  font-size: 15px;
}

.SupportServices {
  padding: 54px 0 80px;
}

.ServiceCard {
  width: 900px;
  max-width: 100%;
  margin: 0 auto 74px;
  border: 1px solid #ececec;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  background: #fff;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}

.ServiceCard.reverse {
  width: 100%;
  max-width: none;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  padding: 56px max(5%, calc((100% - var(--main)) / 2));
  grid-template-columns: 1fr 0.9fr;
  background: linear-gradient(90deg, #f3f5f7 0 50%, #fff 50% 100%);
}

.ServiceCard.download {
  background: #fff;
  border-radius: 4px;
}

.ServiceCard h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.ServiceCard p {
  color: #5f6670;
  margin-bottom: 20px;
}

.ServiceCard .serviceImage {
  border-radius: 6px;
  overflow: hidden;
}

.ServiceCard .serviceImage img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.DownloadList label {
  display: block;
  margin-bottom: 8px;
  color: #4c535d;
}

.DownloadList input {
  margin-right: 8px;
}

.SupportContact {
  padding: 82px 0;
}

.SupportContact .contactCard {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #ececec;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
}

.SupportContact h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.SupportContact p {
  color: #5e6570;
  margin-bottom: 24px;
}

.SupportContact .miniInfo li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.OemWhy {
  padding: 80px 0 104px;
}

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

.OemWhy .item {
  background: #f4f4f4;
  border-radius: 8px;
  min-height: 250px;
  padding: 38px 30px;
}

.OemWhy .item .icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #fff1e8;
  color: var(--orange);
  margin-bottom: 30px;
}

.OemWhy .item h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.OemWhy .item p {
  color: #5f6670;
}

.CustomizationCards {
  padding: 92px 0 106px;
  background: #f7f7f7;
}

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

.CustomizationCards .item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.CustomizationCards .item .img_100 {
  height: 230px;
}

.CustomizationCards .body {
  padding: 24px 24px 28px;
}

.CustomizationCards h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.CheckList li {
  position: relative;
  padding-left: 22px;
  color: #5e6570;
  margin-top: 8px;
}

.CheckList li::before {
  content: "\2713";
  color: var(--orange);
  position: absolute;
  left: 0;
  top: 0;
}

.OemProcess {
  padding: 92px 0 104px;
}

.OemProcess .processLine {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.OemProcess .processLine::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 33px;
  height: 1px;
  background: #dedede;
}

.OemProcess .item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.OemProcess .num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  background: #e9ebee;
  font-weight: 700;
}

.OemProcess h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.OemProcess p {
  color: #66707b;
  font-size: 13px;
}

.OemDeep {
  padding: 66px 0 78px;
}

.OemDeep .deepList {
  width: 920px;
  max-width: 100%;
  margin: 0 auto;
}

.OemDeep .deepItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 64px;
}

.OemDeep .deepItem:nth-child(even) .copy {
  order: 2;
}

.OemDeep .deepItem .img_100 {
  height: 278px;
  border-radius: 8px;
}

.OemDeep .eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.OemDeep h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.OemDeep p {
  color: #5f6670;
  margin-bottom: 16px;
}

.ProductsExact {
  padding: 36px 0 70px;
}

.ProductsExact .productGroup {
  margin-bottom: 56px;
}

.ProductsExact .groupTitle {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
}

.ProductsExact .productGridExact {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
}

.ProductsExact .item a {
  display: block;
}

.ProductsExact .pic {
  background: #f7f7f7;
  height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.ProductsExact .pic img {
  max-height: 170px;
  object-fit: contain;
}

.ProductsExact h3 {
  font-size: 13px;
  margin-bottom: 3px;
}

.ProductsExact p {
  color: #7b838c;
  font-size: 12px;
}

.ProductsExact .learn {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  margin-top: 5px;
}

.ProductsExact .viewAll {
  display: block;
  width: max-content;
  margin: 24px auto 0;
  padding: 8px 18px;
  border-radius: 18px;
  background: #f2f2f2;
  color: #555;
  font-size: 12px;
}

.SolutionsExact .viewAll {
  display: block;
  width: max-content;
  margin: 24px auto 0;
  padding: 8px 18px;
  border-radius: 18px;
  background: #f2f2f2;
  color: #555;
  font-size: 12px;
}

.ProductDetailExact {
  padding: 70px 0 0;
}

.ProductDetailExact .detailHero {
  margin-bottom: 76px;
}

.ProductDetailExact .detailHero .main {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 74px;
  align-items: center;
}

.ProductDetailExact .detailHero h1 {
  font-size: 50px;
  line-height: 1.05;
  margin-bottom: 26px;
}

.ProductDetailExact .orangeLead {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 26px;
}

.ProductDetailExact .detailHero p {
  color: #424a54;
  margin-bottom: 24px;
}

.ProductDetailExact .btnRow {
  display: flex;
  gap: 18px;
}

.ProductDetailExact .outlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 124px;
  border: 1px solid var(--orange);
  border-radius: 24px;
  color: var(--orange);
}

.ProductDetailExact .heroPic {
  border-radius: 4px;
  overflow: hidden;
}

.ProductDetailExact .KeyFeatures {
  padding: 54px 0 62px;
}

.ProductDetailExact .KeyFeatures .main {
  border-top: 1px solid #ddd;
  padding-top: 54px;
}

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

.ProductDetailExact .featureGridDetail .item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  padding: 30px 28px;
}

.ProductDetailExact .featureGridDetail .item:nth-child(4) {
  grid-column: 1 / 3;
  max-width: 300px;
  justify-self: end;
}

.ProductDetailExact .featureGridDetail .item:nth-child(5) {
  max-width: 300px;
}

.ProductDetailExact .featureIcon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff1e8;
  color: var(--orange);
  border-radius: 6px;
  margin-bottom: 26px;
}

.ProductDetailExact .Scenario {
  padding: 70px 0 72px;
}

.ProductDetailExact .Scenario .main {
  border-top: 1px solid #ddd;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 76px;
  align-items: center;
}

.ProductDetailExact .Scenario h2 {
  font-size: 34px;
  margin-bottom: 28px;
}

.ProductDetailExact .Scenario li {
  color: #5e6570;
  margin-bottom: 20px;
}

.ProductDetailExact .iconList li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ProductDetailExact .iconList img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.ProductDetailExact .Scenario .img_100 {
  height: 430px;
  border-radius: 8px;
}

.ProductDetailExact .OemDark {
  background: #222;
  color: #fff;
  padding: 70px 0;
}

.ProductDetailExact .OemDark .main {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.ProductDetailExact .OemDark h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.ProductDetailExact .OemDark p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

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

.ProductDetailExact .OemDark li {
  color: rgba(255, 255, 255, 0.9);
}

.ProductDetailExact .Cta {
  padding: 76px 0 86px;
}

.ProductDetailExact .Cta .main {
  text-align: center;
}

.ProductDetailExact .Cta h2 {
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.AboutExact .CompanyProfile {
  padding: 54px 0 66px;
}

.AboutExact .companyLayout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 64px;
  align-items: center;
}

.AboutExact .companyLayout h1 {
  font-size: 30px;
  margin-bottom: 18px;
}

.AboutExact .companyLayout p {
  color: #444c56;
  margin-bottom: 14px;
}

.AboutExact .companyImage {
  position: relative;
}

.AboutExact .companyImage .img_100 {
  height: 360px;
  border-radius: 6px;
}

.AboutExact .yearBadge {
  position: absolute;
  left: -14px;
  bottom: -18px;
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
}

.AboutExact .statsInline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 26px;
}

.AboutExact .statsInline strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
}

.FactoryExact {
  padding: 74px 0 78px;
  background: #f5f5f5;
}

.FactoryExact .factoryCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.FactoryExact .factoryCards .item {
  background: #fff;
  padding: 26px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

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

.FactoryExact .factoryImages .img_100 {
  height: 130px;
  border-radius: 4px;
}

.RdExact {
  padding: 96px 0;
}

.RdExact .rdLayout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.RdExact .rdImages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.RdExact .rdImages .img_100 {
  height: 230px;
  border-radius: 6px;
}

.RdExact h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.RdExact p {
  color: #4f5762;
  font-size: 18px;
  line-height: 1.6;
}

.RdExact .bar {
  margin-top: 22px;
  color: #111;
  font-size: 17px;
}

.RdExact .bar span {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: var(--orange);
  margin-top: 10px;
}

.QualityExact {
  background: #111;
  color: #fff;
  padding: 86px 0 88px;
}

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

.QualityExact .item {
  background: #2b2b2b;
  border-radius: 6px;
  min-height: 210px;
  padding: 32px 28px;
}

.QualityExact .item .num {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 4px;
  margin-bottom: 20px;
}

.QualityExact h2 {
  font-size: 42px;
}

.QualityExact .CenterHead p {
  color: #8d98a6;
  font-size: 18px;
}

.QualityExact .item h3 {
  font-size: 22px;
  line-height: 1.28;
}

.QualityExact .item p {
  font-size: 16px;
  color: #fff;
}

.CertExact {
  padding: 78px 0;
}

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

.CertExact .item {
  background: #f6f6f6;
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.CertExact .item img {
  max-height: 50px;
  margin-bottom: 8px;
}

.ExhibitionExact {
  padding: 76px 0 88px;
  background: #f5f5f5;
}

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

.ExhibitionExact .item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.ExhibitionExact .item .img_100 {
  height: 190px;
}

.ExhibitionExact .body {
  padding: 18px 20px 22px;
}

.SolutionsExact {
  padding: 38px 0 72px;
}

.SolutionsExact .solutionGroup {
  margin-bottom: 76px;
}

.SolutionsExact .groupTitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 22px;
}

.SolutionsExact .solutionGridExact {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.SolutionsExact .item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #fff;
  padding: 34px 28px;
}

.SolutionsExact .item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.SolutionsExact .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1));
}

.SolutionsExact .body,
.SolutionsExact .item ul,
.SolutionsExact .learn {
  position: relative;
  z-index: 1;
}

.SolutionsExact h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.SolutionsExact p,
.SolutionsExact li {
  color: #4c535d;
  font-size: 13px;
}

.SolutionsExact ul {
  margin-top: 72px;
}

.SolutionsExact .learn {
  display: inline-block;
  color: var(--orange);
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --main: 92%;
  }

  .SiteHeader .inner {
    gap: 24px;
  }

  .SiteHeader .nav {
    gap: 18px;
  }

  .HeroStack .heroPanel {
    min-height: 500px;
  }

  .HeroStack h1,
  .HeroStack h2 {
    font-size: 42px;
  }

  .HeroStack .lead {
    font-size: 22px;
  }

  .HeroStack .tags {
    font-size: 17px;
  }

  .NewProducts .productGrid,
  .MarketSolutions .solutionGrid,
  .SolutionsPage .solutionList,
  .DetailHero .detailLayout,
  .SplitInfo .splitLayout,
  .AboutIntro .aboutLayout,
  .ContactPage .contactLayout {
    grid-template-columns: 1fr;
  }

  .ExploreWylon .serviceGrid,
  .StatsBand .statsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ProductCatalog .catalogGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .SiteFooter .footerGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --main: 92%;
  }

  .SiteHeader .inner {
    gap: 16px;
  }

  .SiteHeader .nav,
  .SiteHeader .quoteLink {
    display: none;
  }

  .SiteHeader .menuButton {
    display: flex;
    margin-left: auto;
  }

  .SiteHeader .actions {
    gap: 8px;
  }

  .HeroStack .heroPanel {
    min-height: 520px;
    align-items: flex-start;
  }

  .HeroStack .heroMedia img {
    object-position: center bottom;
  }

  .HeroStack .heroMedia::after,
  .HeroStack .heroPanel.dark .heroMedia::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 48%, rgba(255, 255, 255, 0.12) 100%);
  }

  .HeroStack .heroPanel.dark .heroMedia::after {
    background: linear-gradient(180deg, rgba(0, 5, 12, 0.98) 0%, rgba(0, 5, 12, 0.72) 46%, rgba(0, 5, 12, 0.14) 100%);
  }

  .HeroStack .heroBody {
    max-width: 92%;
    width: 92%;
    margin: 0 auto;
    padding-top: 58px;
  }

  .HeroStack h1,
  .HeroStack h2,
  .PageHero h1 {
    font-size: 34px;
  }

  .HeroStack .lead {
    font-size: 21px;
  }

  .HeroStack .tags {
    font-size: 15px;
    gap: 0 10px;
  }

  .HeroStack .tags span + span::before {
    margin-right: 10px;
  }

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

  .NewProducts,
  .ExploreWylon,
  .MarketSolutions,
  .SupportLinks,
  .FeatureBand,
  .SplitInfo,
  .OemIntro,
  .ProcessSteps,
  .AboutIntro,
  .StatsBand,
  .MediaGrid,
  .SupportPage,
  .ContactPage {
    padding: 54px 0;
  }

  .NewProducts .productGrid,
  .ExploreWylon .serviceGrid,
  .MarketSolutions .solutionGrid,
  .SupportLinks .supportLayout,
  .PageHero .main,
  .ProductCatalog .catalogGrid,
  .DetailHero .detailLayout,
  .DetailHero .featureList,
  .FeatureBand .featureGrid,
  .SplitInfo .splitLayout,
  .SolutionsPage .solutionList,
  .SolutionsPage .item a,
  .OemIntro .introGrid,
  .ProcessSteps .stepList,
  .AboutIntro .aboutLayout,
  .StatsBand .statsList,
  .MediaGrid .cardGrid,
  .SupportPage .supportGrid,
  .ContactPage .contactLayout,
  .ContactPage .formGrid,
  .ContactExact .contactLayout,
  .ContactExact .messageCard .formGrid,
  .CommitmentExact .commitGrid,
  .ServiceCard,
  .ServiceCard.reverse,
  .SupportContact .contactCard,
  .SupportContact .FormBox .formGrid,
  .DialogShell .quoteForm .formGrid,
  .OemWhy .whyGrid,
  .CustomizationCards .customGrid,
  .OemProcess .processLine,
  .OemDeep .deepItem,
  .ProductsExact .productGridExact,
  .ProductDetailExact .detailHero,
  .ProductDetailExact .featureGridDetail,
  .ProductDetailExact .Scenario,
  .ProductDetailExact .OemDark .main,
  .AboutExact .companyLayout,
  .AboutExact .statsInline,
  .FactoryExact .factoryCards,
  .FactoryExact .factoryImages,
  .RdExact .rdLayout,
  .QualityExact .qualityGrid,
  .CertExact .certGrid,
  .ExhibitionExact .exhibitGrid,
  .SolutionsExact .solutionGridExact {
    grid-template-columns: 1fr;
  }

  .TopSubNav {
    height: auto;
    overflow-x: auto;
  }

  .TopSubNav .main {
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 0;
    width: max-content;
    max-width: none;
  }

  .FormBox .field.full,
  .ContactExact .messageCard .field.full,
  .SupportContact .FormBox .field.full,
  .DialogShell .quoteForm .field.full {
    grid-column: auto;
  }

  .ServiceCard.reverse {
    background: #fff;
    padding: 36px 4%;
  }

  .OemProcess .processLine::before {
    display: none;
  }

  .OemDeep .deepItem:nth-child(even) .copy {
    order: 0;
  }

  .ProductDetailExact .featureGridDetail .item:nth-child(4),
  .ProductDetailExact .featureGridDetail .item:nth-child(5) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .NewProducts .item {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .NewProducts .item h3 {
    grid-column: auto;
    font-size: 23px;
  }

  .NewProducts .item .productPic {
    max-height: 170px;
  }

  .MarketSolutions .item ul {
    margin-top: 70px;
  }

  .PageHero {
    padding: 46px 0;
  }

  .PageHero .heroImage {
    justify-self: center;
  }

  .ContactPage .field.full {
    grid-column: auto;
  }

  .SiteFooter .footerGrid,
  .SiteFooter .sloganRow,
  .SiteFooter .legalRow {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .SiteFooter .footerGrid {
    gap: 28px;
  }

  .SiteFooter .legalRow {
    gap: 12px;
  }

  .NewProducts .item:hover,
  .ExploreWylon .item:hover,
  .MarketSolutions .item:hover,
  .ProductCatalog .item a:hover,
  .SolutionsPage .item a:hover,
  .FeatureBand .item:hover,
  .OemIntro .item:hover,
  .MediaGrid .item:hover,
  .SupportPage .supportGrid .item:hover {
    transform: none;
  }
}

