@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+SC:900,400,500,700");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  overflow-x: hidden;
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1f5f9;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.header.header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header-logo .logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  color: #64748b;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #3b82f6;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #3b82f6;
}

.mobile-menu-toggle {
  all: unset;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #3b82f6;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-cta {
  all: unset;
  box-sizing: border-box;
  padding: 12px 24px;
  background-color: #3b82f6;
  color: #ffffff;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: 72px;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 43, 0.85) 0%, rgba(15, 23, 43, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.carousel-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  color: #60a5fa;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 900;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  margin: 0 0 24px 0;
  max-width: 800px;
}

.hero-title-highlight {
  color: #60a5fa;
}

.hero-description {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #0f172b;
}

.btn-secondary:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.hero-feature svg {
  width: 24px;
  height: 24px;
  color: #60a5fa;
}

.hero-feature span {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  font-size: 15px;
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  all: unset;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 32px;
  border-radius: 6px;
  background-color: #ffffff;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.screen .app {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
}

.screen .main-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.screen .about {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 96px 5% 96px;
  position: relative;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #f8fafc;
  box-sizing: border-box;
}

.screen .container {
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}

.screen .div {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.screen .company-profile-wrapper {
  display: flex;
  width: 100%;
  height: 20px;
  position: relative;
  align-items: flex-start;
}

.screen .text-wrapper {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 20px;
}

.screen .div-wrapper {
  width: 100%;
  margin-top: 16px;
  display: flex;
}

.screen .text-wrapper-2 {
  margin-top: -6px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0;
  line-height: 1.25;
}

.screen .about-2 {
  display: flex;
  width: 100%;
  position: relative;
  margin-top: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.screen .paragraph {
  position: relative;
  align-self: stretch;
  width: 100%;
  border-left-width: 4px;
  border-left-style: solid;
  border-color: #155dfc;
  padding-left: 28px;
}

.screen .mossun-is-a-supplier {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0;
  line-height: 1.625;
}

.screen .paragraph-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .we-start-from-real {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #45556c;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0;
  line-height: 1.622;
}

.screen .about-3 {
  width: 179.91px;
  height: 56px;
  margin-top: 40px;
  display: flex;
  gap: 7.9px;
  background-color: #155dfc;
  border-radius: 14px;
  box-shadow: 0px 4px 6px -4px #dbeafe, 0px 10px 15px -3px #dbeafe;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.screen .about-3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(21, 93, 252, 0.35);
  background-color: #2563eb;
}

.screen .learn-more {
  margin-top: 14px;
  width: 88px;
  height: 24px;
  margin-left: 32px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.screen .icon {
  margin-top: 18px;
  width: 20px;
  height: 20px;
}

.screen .container-2 {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 576px;
  aspect-ratio: 576 / 500;
  background-color: #ffffff00;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.screen .image-with-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/imagewithfallback.png);
  background-size: cover;
  background-position: 50% 50%;
}

.screen .container-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c398e1a;
}

.screen .products {
  position: relative;
  width: 100%;
  padding: 80px 5%;
  background-color: #f8fafc;
  box-sizing: border-box;
}

.screen .container-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto 48px;
  align-items: center;
  position: relative;
}

.screen .container-4 {
  position: relative;
  width: 100%;
  text-align: center;
}

.screen .text {
  display: inline-flex;
  height: 32px;
  align-items: flex-start;
  padding: 6px 16px;
  position: relative;
  background-color: #eff6ff;
  border-radius: 33554400px;
  border: 1px solid;
  border-color: #dbeafe80;
  margin-bottom: 16px;
}

.screen .featured-collection {
  position: relative;
  width: fit-content;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1.2px;
  line-height: 18px;
  white-space: nowrap;
}

.screen .heading {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.screen .market-ready-durable {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  letter-spacing: -1.2px;
  line-height: 1;
}

.screen .automotive-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.screen .automotive {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #62748e;
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: center;
  letter-spacing: 0;
  line-height: 1.622;
  max-width: 90%;
}

.screen .container-5 {
  position: relative;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: center;
}

.screen .container-6.product-tabs {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 58px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f9;
  border-radius: 32px;
  border: 1px solid;
  border-color: #e2e8f099;
  padding: 7px;
  box-sizing: border-box;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screen .container-6.product-tabs::-webkit-scrollbar {
  display: none;
}

.screen .button {
  all: unset;
  box-sizing: border-box;
  width: auto;
  min-width: 100px;
  height: 44px;
  position: relative;
  border-radius: 33554400px;
  cursor: pointer;
  flex-shrink: 0;
}

.screen .text-wrapper-3 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #62748e;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.screen .container-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background-color: #ffffff;
  border-radius: 33554400px;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.screen .product-tab {
  all: unset;
  box-sizing: border-box;
  display: flex;
  min-width: 100px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 33554400px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.screen .product-tab:hover:not(.active) .text-wrapper-3,
.screen .product-tab:hover:not(.active) .text-wrapper-4,
.screen .product-tab:hover:not(.active) .text-wrapper-5,
.screen .product-tab:hover:not(.active) .text-wrapper-6,
.screen .product-tab:hover:not(.active) .text-wrapper-7,
.screen .product-tab:hover:not(.active) .text-wrapper-8 {
  color: #3b82f6;
}

.screen .product-tab .text-wrapper-3,
.screen .product-tab .text-wrapper-4,
.screen .product-tab .text-wrapper-5,
.screen .product-tab .text-wrapper-6,
.screen .product-tab .text-wrapper-7,
.screen .product-tab .text-wrapper-8 {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 1;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #62748e;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.screen .product-tab.active .text-wrapper-3,
.screen .product-tab.active .text-wrapper-4,
.screen .product-tab.active .text-wrapper-5,
.screen .product-tab.active .text-wrapper-6,
.screen .product-tab.active .text-wrapper-7,
.screen .product-tab.active .text-wrapper-8 {
  color: #3b82f6;
}

.screen .product-tab .tab-indicator {
  display: none;
}

.screen .button-2,
.screen .button-3,
.screen .button-4,
.screen .button-5,
.screen .button-6 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  min-width: 100px;
  height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 33554400px;
  cursor: pointer;
  flex-shrink: 0;
}

.screen .text-wrapper-4,
.screen .text-wrapper-5,
.screen .text-wrapper-6,
.screen .text-wrapper-7,
.screen .text-wrapper-8 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #62748e;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.screen .container-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1216px;
  gap: 32px;
  position: relative;
  margin: 0 auto 64px;
}

.screen .container-9,
.screen .container-11,
.screen .container-12,
.screen .container-13 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1px;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid;
  border-color: #f1f5f9;
}

.screen .image-with-fallback-wrapper {
  display: flex;
  flex-direction: column;
  height: 224px;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .image-with-fallback-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 224px;
  background-image: url(../img/imagewithfallback-1@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.screen .image-with-fallback-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 224px;
  background-image: url(../img/imagewithfallback-2@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.screen .image-with-fallback-4 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 224px;
  background-image: url(../img/imagewithfallback-3@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.screen .image-with-fallback-5 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 224px;
  background-image: url(../img/imagewithfallback-4@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.screen .products-2 {
  display: flex;
  flex-direction: column;
  height: 216px;
  align-items: flex-start;
  gap: 12px;
  padding: 32px 32px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .heading-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 56px;
}

.screen .text-wrapper-9,
.screen .text-wrapper-10,
.screen .text-wrapper-11,
.screen .text-wrapper-12 {
  position: absolute;
  top: -3px;
  left: 0;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.screen .paragraph-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.screen .designed-for-high,
.screen .element-lumens-ultra,
.screen .all-weather,
.screen .strong-magnetic-base {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #62748e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
}

.screen .container-10 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 20px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.screen .container-10:hover {
  opacity: 0.85;
}

.screen .container-10:hover .details {
  color: #2563eb;
}

.screen .container-10 .img {
  transition: transform 0.2s ease;
}

.screen .container-10:hover .img {
  transform: translateX(4px);
}

.screen .details {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.screen .img {
  position: absolute;
  top: 2px;
  left: 55px;
  width: 16px;
  height: 16px;
}

.screen .button-wrapper {
  display: flex;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.screen .button-7 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 206.41px;
  height: 64px;
  background-color: #0f172b;
  border-radius: 24px;
  box-shadow: 0px 8px 10px -6px #0000001a, 0px 20px 25px -5px #0000001a;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.screen .button-7:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(15, 23, 43, 0.35);
}

.screen .button-7:active {
  transform: translateY(-1px);
}

.screen .text-wrapper-13 {
  position: absolute;
  top: 18px;
  left: 48px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.screen .icon-2 {
  position: absolute;
  top: 22px;
  left: 138px;
  width: 20px;
  height: 20px;
}

.screen .blog {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 48px;
  padding: 96px 5%;
  position: relative;
  background-color: #ffffff;
  box-sizing: border-box;
}

.screen .container-14 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 32px;
}

.screen .container-15 {
  display: flex;
  flex-direction: column;
  max-width: 672px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 1;
  min-width: 300px;
}

.screen .div-wrapper-2 {
  display: flex;
  height: 20px;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .industry-wisdom-wrapper {
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .industry-wisdom {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.2px;
  line-height: 1;
}

.screen .providing {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #62748e;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0;
  line-height: 1.622;
}

.screen .button-8 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  width: 160.69px;
  height: 50px;
  background-color: #f8fafc;
  border-radius: 14px;
  border: 1px solid;
  border-color: #f1f5f9;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.screen .button-8:hover {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.screen .text-wrapper-14 {
  position: absolute;
  top: 11px;
  left: 25px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.screen .icon-3 {
  position: absolute;
  top: 15px;
  left: 116px;
  width: 20px;
  height: 20px;
}

.screen .container-16 {
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.screen .article,
.screen .article-2,
.screen .article-3 {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f8fafc4c;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid;
  border-color: transparent;
}

.screen .blog-2,
.screen .blog-4,
.screen .blog-6 {
  width: 100%;
  height: 235.41px;
  display: flex;
  background-size: cover;
  background-position: 50% 50%;
}

.screen .blog-2 {
  background-image: url(../img/imagewithfallback-5@2x.png);
}

.screen .blog-4 {
  background-image: url(../img/imagewithfallback-6@2x.png);
}

.screen .blog-6 {
  background-image: url(../img/imagewithfallback-7@2x.png);
}

.screen .text-2 {
  display: flex;
  margin-top: 24px;
  width: auto;
  height: 28px;
  margin-left: 24px;
  position: relative;
  align-items: flex-start;
  padding: 6px 16px;
  background-color: #ffffffe6;
  border-radius: 33554400px;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.screen .text-wrapper-15 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 16.5px;
  white-space: nowrap;
}

.screen .quality-returns-wrapper {
  display: flex;
  margin-top: 24px;
  width: auto;
  height: 28px;
  margin-left: 24px;
  position: relative;
  align-items: flex-start;
  padding: 6px 16px;
  background-color: #ffffffe6;
  border-radius: 33554400px;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
}

.screen .quality-returns {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 16.5px;
  white-space: nowrap;
}

.screen .blog-3,
.screen .blog-5 {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 32px 32px 32px;
}

.screen .container-17,
.screen .container-19 {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}

.screen .text-3,
.screen .text-6,
.screen .text-8 {
  position: relative;
  width: auto;
  height: auto;
}

.screen .icon-4,
.screen .icon-6 {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.screen .text-wrapper-16,
.screen .jan {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #90a1b9;
  font-size: 11px;
  letter-spacing: 0.55px;
  line-height: 16.5px;
  white-space: nowrap;
  display: inline-block;
}

.screen .text-4,
.screen .text-7,
.screen .text-9 {
  position: relative;
  width: auto;
  height: auto;
}

.screen .mossun-business {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #90a1b9;
  font-size: 11px;
  letter-spacing: 0.55px;
  line-height: 16.5px;
  display: inline-block;
}

.screen .heading-3,
.screen .heading-4 {
  position: relative;
  width: 100%;
}

.screen .p,
.screen .text-wrapper-18,
.screen .reducing-returns {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 25px;
}

.screen .paragraph-4,
.screen .how-can-distributors-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.screen .in-depth-analysis-of,
.screen .how-can-distributors,
.screen .analyzing-common {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #62748e;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22.8px;
}

.screen .container-18,
.screen .container-20 {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0 0;
  position: relative;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #f1f5f9;
}

.screen .text-5 {
  position: relative;
  width: auto;
  height: 20px;
}

.screen .text-wrapper-17 {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.screen .icon-5 {
  position: absolute;
  top: 2px;
  left: 80px;
  width: 16px;
  height: 16px;
}


.screen .scenarios {
  position: relative;
  width: 100%;
  display: flex;
  background-color: #ffffff;
  padding: 96px 5%;
  box-sizing: border-box;
}

.screen .container-34 {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.screen .container-35 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .heading-6 {
  position: relative;
  align-self: stretch;
  width: 100%;
}

.screen .text-wrapper-31 {
  position: relative;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: 0;
  line-height: 1.25;
}

.screen .container-36 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
  width: 100%;
}

.screen .container-37,
.screen .container-38,
.screen .container-39 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 512px;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid;
  border-color: #f1f5f9;
  box-shadow: 0px 1px 2px -1px #0000001a, 0px 1px 3px #0000001a;
  padding: 41px;
  box-sizing: border-box;
}

.screen .scenarios-2 {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.screen .scenarios-3 {
  position: relative;
  width: 100%;
  height: 32px;
  display: flex;
  margin-bottom: 12px;
}

.screen .text-wrapper-32,
.screen .text-wrapper-35,
.screen .text-wrapper-36 {
  margin-top: -4px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #0f172b;
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: 0;
  line-height: 32px;
}

.screen .scenarios-4 {
  display: flex;
  width: 100%;
  height: 20px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 24px;
}

.screen .text-wrapper-33 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #155dfc;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
}

.screen .scenarios-5 {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 24px;
}

.screen .we-assist-partners,
.screen .high-quality,
.screen .enhanced-design-for {
  margin-top: -2px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #62748e;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 24.4px;
}

.screen .scenarios-6 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  padding: 33px 0px 0px;
  position: relative;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #f8fafc;
}

.screen .icon-10 {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
}

.screen .text-wrapper-34 {
  position: absolute;
  top: -2px;
  left: 28px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 500;
  color: #314158;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.screen .footer {
  position: relative;
  width: 100%;
  background-color: #1a2332;
  padding-top: 0;
}

.screen .cta-section {
  width: 90%;
  max-width: 1216px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 32px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  top: -80px;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.screen .cta-content {
  flex: 1;
  min-width: 280px;
}

.screen .cta-title {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.screen .cta-description {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  margin: 0;
}

.screen .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.screen .btn-quote,
.screen .btn-sample {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.screen .btn-quote {
  background-color: #ffffff;
  color: #2563eb;
}

.screen .btn-quote:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.screen .btn-sample {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.screen .btn-sample:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.screen .footer-content {
  width: 90%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
}

.screen .footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.screen .footer-brand {
  gap: 32px;
}

.screen .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.screen .logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.screen .footer-description {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.screen .social-links {
  display: flex;
  gap: 12px;
}

.screen .social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.screen .social-icon:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.screen .footer-heading {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen .heading-underline {
  width: 32px;
  height: 4px;
  background-color: #3b82f6;
  border-radius: 2px;
}

.screen .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen .footer-links li a {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.screen .footer-links li a:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.screen .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screen .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #94a3b8;
}

.screen .contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.screen .contact-item div {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.screen .footer-bottom {
  width: 90%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* CTA Section - Shared between pages */
.screen .cta-section {
  width: 90%;
  max-width: 1216px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 32px;
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  top: -80px;
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.screen .copyright {
  font-family: "Noto Sans SC", Helvetica;
  font-weight: 400;
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

.screen .scroll-top {
  all: unset;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  background-color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.screen .scroll-top.scroll-top-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.screen .scroll-top:hover {
  background-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.screen .scroll-top.scroll-top-visible:hover {
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .screen .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 5%;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .header-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    color: #3b82f6;
    font-weight: 600;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 80vh;
    min-height: 500px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 43, 0.7) 0%, rgba(15, 23, 43, 0.85) 100%);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary {
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  .screen .cta-section {
    padding: 48px 32px;
    top: -60px;
  }

  .screen .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 48px;
  }

  .screen .cta-buttons {
    width: 100%;
  }

  .screen .btn-quote,
  .screen .btn-sample {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .screen .container-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .screen .container-8 {
    grid-template-columns: 1fr;
  }

  .screen .container-6.product-tabs {
    justify-content: flex-start;
  }
  
  .screen .product-tab,
  .screen .button,
  .screen .button-2,
  .screen .button-3,
  .screen .button-4,
  .screen .button-5,
  .screen .button-6 {
    min-width: 80px;
    font-size: 12px;
  }
}
