﻿/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --color-primary:       #0A2463;
  --color-primary-light: #1B3E8A;
  --color-primary-dark:  #061740;
  --color-accent:        #E63946;
  --color-accent-light:  #FF6B6B;
  --color-gold:          #D4A017;
  --color-bg:            #F8F9FC;
  --color-surface:       #FFFFFF;
  --color-surface-2:     #F2F4F8;
  --color-border:        #E2E6EF;
  --color-text:          #1A1F36;
  --color-text-muted:    #6B7280;
  --color-text-light:    #9CA3AF;
  --font-sans: 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px;
  --sp-4: 16px; --sp-5: 20px; --sp-6: 24px;
  --sp-8: 32px; --sp-12: 48px; --sp-16: 64px; --sp-20: 80px;
  --shadow-sm: 0 1px 3px rgba(10,36,99,.08);
  --shadow-md: 0 4px 12px rgba(10,36,99,.12);
  --shadow-lg: 0 12px 32px rgba(10,36,99,.16);
  --shadow-xl: 0 24px 48px rgba(10,36,99,.20);
  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
  --ease: cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms; --dur-normal: 300ms; --dur-slow: 500ms;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html { 
  font-size: 16px; 
  scroll-behavior: smooth; 
}
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { 
  max-width: 100%; 
  display: block; 
}
a { 
  text-decoration: none; 
  color: inherit; 
}
ul { 
  list-style: none; 
}

.container { 
  width: 100%; 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 var(--sp-8); 
}
.section { 
  padding: var(--sp-20) 0; 
}
.section--alt { 
  background: var(--color-surface-2); 
}
.section--dark { 
  background: var(--color-primary); 
  color: #fff; 
}

/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.topbar a:hover { 
  color: #fff; 
}
.topbar__left { 
  display: flex; 
  gap: var(--sp-6); 
  align-items: center; 
}
.topbar__right { 
  display: flex; 
  gap: var(--sp-4); 
  align-items: center; 
}
.topbar__icon { 
  width: 14px; 
  height: 14px; 
  vertical-align: middle; 
  margin-right: 4px; 
  opacity: .6; 
}

/* ===========================
   HEADER / NAVIGATION
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo { 
  display: flex; 
  align-items: center; 
  gap: var(--sp-3); 
}
#logoimg {
    height: 40px;
    margin-right: 1em;
}
.nav__logo-mark {
  width: 44px; 
  height: 44px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FF8C69 100%);
  border-radius: var(--r-sm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 20px; 
  font-weight: 700; 
  color: #fff;
  letter-spacing: -1px; 
  flex-shrink: 0;
}
.nav__logo-text { 
  color: #fff; 
}
.nav__logo-text .en { 
  font-size: 18px; 
  font-weight: 700; 
  letter-spacing: 1px; 
}
.nav__logo-text .cn { 
  font-size: 10px; 
  opacity: .65; 
  font-weight: 300; 
  margin-top: 1px; 
  letter-spacing: .5px; 
}
.nav__links { 
  display: flex; 
  align-items: center; 
  gap: var(--sp-1); 
}
.nav__link {
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: 14px; 
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__link:hover { 
  color: #fff; 
  background: rgba(255,255,255,.1); 
}
.nav__link.active { 
  color: #fff; 
  background: rgba(255,255,255,.15); 
}
.nav__link.active::after {
  content: '';
  position: absolute; 
  bottom: -1px; 
  left: 50%; 
  transform: translateX(-50%);
  width: 20px; 
  height: 2px;
  background: var(--color-accent); 
  border-radius: var(--r-full);
}
.nav__cta {
  background: var(--color-accent); 
  color: #fff !important;
  padding: var(--sp-2) var(--sp-6) !important;
  border-radius: var(--r-full) !important; 
  font-weight: 600 !important;
  transition: all var(--dur-fast) var(--ease) !important;
}
.nav__cta:hover { 
  background: var(--color-accent-light) !important; 
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(230,57,70,.4); 
}

/* ===========================
   BREADCRUMB (from product page)
=========================== */
.breadcrumb { 
  background: var(--color-surface); 
  border-bottom: 1px solid var(--color-border); 
  padding: var(--sp-3) 0; 
}
.breadcrumb__inner { 
  display: flex; 
  align-items: center; 
  gap: var(--sp-2); 
  font-size: 13px; 
  color: var(--color-text-muted); 
}
.breadcrumb__inner a { 
  color: var(--color-text-muted); 
  transition: color var(--dur-fast); 
}
.breadcrumb__inner a:hover { 
  color: var(--color-primary); 
}
.breadcrumb__current { 
  color: var(--color-text); 
  font-weight: 600; 
}
.breadcrumb__sep { 
  color: var(--color-text-light); 
  margin: 0 2px; 
}
.breadcrumb__sep svg { 
  width: 12px; 
  height: 12px; 
  vertical-align: middle; 
}

/* ===========================
   HERO CAROUSEL (from portal)
=========================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero-carousel .swiper {
  width: 100%;
  height: 100%;
}
.hero-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dark overlay on each slide */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(
    135deg,
    rgba(6,23,64,.82) 0%,
    rgba(10,36,99,.65) 40%,
    rgba(26,74,122,.45) 100%
  );*/
  z-index: 1;
}
/* Slide content (text + CTA) */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-slide-text {
  max-width: 600px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center; 
  gap: var(--sp-2);
  background: rgba(230,57,70,.15);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--color-accent-light);
  font-size: 12px; 
  font-weight: 600;
  letter-spacing: 1.5px; 
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}
.hero__eyebrow::before {
  content: ''; 
  width: 6px; 
  height: 6px;
  border-radius: 50%; 
  background: var(--color-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1); 
  }
  50% { 
    opacity: .5; 
    transform: scale(1.3); 
  }
}
.hero__title {
  font-size: 36px;
  font-weight: 700; 
  color: #fff;
  line-height: 1.2; 
  margin-bottom: var(--sp-6);
  letter-spacing: -.5px;
}
.hero__title em { 
  font-style: normal; 
  color: var(--color-accent-light); 
}
.hero__subtitle {
  font-size: 16px; 
  color: rgba(255,255,255,.65);
  line-height: 1.75; 
  margin-bottom: var(--sp-8); 
  max-width: 500px;
}
.hero__actions { 
  display: flex; 
  gap: var(--sp-4); 
  flex-wrap: wrap; 
}

/* ===========================
   PRODUCT HERO BANNER (from product page)
=========================== */
.product-hero { 
  position: relative; 
  width: 100%; 
  height: 380px; 
  overflow: hidden; 
  background: var(--color-primary-dark); 
}
.product-hero__bg { 
  position: absolute; 
  inset: 0; 
}
.product-hero__bg img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.product-hero__overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient( 
    135deg, 
    rgba(6,23,64,.88) 0%, 
    rgba(10,36,99,.72) 50%, 
    rgba(26,74,122,.55) 100% 
  ); 
}
.product-hero__content { 
  position: relative; 
  z-index: 2; 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}
.product-hero__tag { 
  display: inline-flex; 
  align-items: center; 
  gap: var(--sp-2); 
  background: rgba(230,57,70,.15); 
  border: 1px solid rgba(230,57,70,.3); 
  color: var(--color-accent-light); 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  padding: var(--sp-1) var(--sp-3); 
  border-radius: var(--r-full); 
  margin-bottom: var(--sp-6); 
  width: fit-content; 
}
.product-hero__tag::before { 
  content: ''; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--color-accent); 
  animation: pulse 2s infinite; 
}
.product-hero__title { 
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); 
  font-weight: 700; 
  color: #fff; 
  line-height: 1.25; 
  margin-bottom: var(--sp-4); 
  letter-spacing: -.5px; 
  max-width: 600px; 
}
.product-hero__title em { 
  font-style: normal; 
  color: var(--color-accent-light); 
}
.product-hero__desc { 
  font-size: 15px; 
  color: rgba(255,255,255,.6); 
  line-height: 1.75; 
  max-width: 520px; 
}
/* Decorative shapes */
.product-hero__deco { 
  position: absolute; 
  z-index: 1; 
}
.product-hero__deco--1 { 
  width: 280px; 
  height: 280px; 
  border: 1px solid rgba(255,255,255,.06); 
  border-radius: 50%; 
  right: 80px; 
  top: 50px; 
}
.product-hero__deco--2 { 
  width: 180px; 
  height: 180px; 
  border: 1px solid rgba(255,255,255,.04); 
  border-radius: 50%; 
  right: 130px; 
  bottom: 30px; 
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header { 
  text-align: center; 
  margin-bottom: var(--sp-12); 
}
.section-header__tag {
  display: inline-block; 
  font-size: 11px; 
  font-weight: 700;
  letter-spacing: 2px; 
  text-transform: uppercase;
  color: var(--color-accent); 
  margin-bottom: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(230,57,70,.06); 
  border-radius: var(--r-full);
  border: 1px solid rgba(230,57,70,.15);
}
.section-header__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; 
  color: var(--color-text);
  line-height: 1.3; 
  margin-bottom: var(--sp-4);
}
.section-header__title.light { 
  color: #fff; 
}
.section-header__desc {
  font-size: 15px; 
  color: var(--color-text-muted);
  max-width: 560px; 
  margin: 0 auto; 
  line-height: 1.75;
}
.section-header__desc.light { 
  color: rgba(255,255,255,.6); 
}
.section-header__divider {
  width: 48px; 
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  border-radius: var(--r-full); 
  margin: var(--sp-4) auto 0;
}

/* ===========================
   ABOUT SECTION — VIDEO SHOWCASE (from portal)
=========================== */
.about-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); 
  align-items: center;
}
.about__badge {
  display: inline-flex; 
  align-items: center; 
  gap: var(--sp-2);
  background: var(--color-surface-2); 
  border: 1px solid var(--color-border);
  color: var(--color-text-muted); 
  font-size: 12px; 
  font-weight: 500;
  padding: var(--sp-1) var(--sp-3); 
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; 
  color: var(--color-text);
  line-height: 1.3; 
  margin-bottom: var(--sp-6);
}
.about__title span { 
  color: var(--color-primary); 
}
.about__desc {
  font-size: 15px; 
  color: var(--color-text-muted);
  line-height: 1.8; 
  margin-bottom: var(--sp-8);
}
.cert-list { 
  display: flex; 
  gap: var(--sp-3); 
  flex-wrap: wrap; 
}
.cert-badge {
  display: flex; 
  align-items: center; 
  gap: var(--sp-2);
  background: var(--color-surface); 
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary); 
  font-size: 12px; 
  font-weight: 700;
  padding: var(--sp-2) var(--sp-3); 
  border-radius: var(--r-sm);
}
.cert-badge svg { 
  width: 14px; 
  height: 14px; 
}

.about__visual { 
  position: relative; 
}
/* Video Player Style Container */
.video-showcase {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-showcase__slides {
  position: relative;
  width: 100%; 
  height: 100%;
}
.video-showcase__slide {
  position: absolute; 
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.video-showcase__slide.active {
  opacity: 1;
}
.video-showcase__slide img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
}
/* Video-style controls overlay */
.video-showcase__controls {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  z-index: 5;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: var(--sp-6) var(--sp-4) var(--sp-3);
}
.video-showcase__progress-bar {
  width: 100%; 
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.video-showcase__progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 0.1s linear;
}
.video-showcase__bottom {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}
.video-showcase__btn {
  background: none; 
  border: none;
  color: #fff; 
  cursor: pointer;
  display: flex; 
  align-items: center; 
  gap: var(--sp-2);
  font-size: 12px; 
  font-family: var(--font-sans);
  padding: var(--sp-1);
}
.video-showcase__btn svg { 
  width: 16px; 
  height: 16px; 
}
.video-showcase__label {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
/* Play button overlay */
.video-showcase__play-overlay {
  position: absolute;
  inset: 0; 
  z-index: 4;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity var(--dur-normal);
  pointer-events: none;
}
.video-showcase.paused .video-showcase__play-overlay {
  opacity: 1;
}
.video-showcase__play-btn {
  width: 64px; 
  height: 64px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: all var(--dur-normal);
}
.video-showcase__play-btn svg { 
  width: 28px; 
  height: 28px; 
  color: #fff; 
  margin-left: 3px; 
}
.video-showcase__play-overlay:hover .video-showcase__play-btn {
  background: rgba(255,255,255,.25);
  transform: scale(1.1);
}

.about__kpi-cards {
  position: absolute;
  bottom: -24px; 
  right: -24px;
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3); 
  width: 240px;
  z-index: 5;
}
.kpi-card {
  background: var(--color-surface); 
  border-radius: var(--r-md);
  padding: var(--sp-4); 
  box-shadow: var(--shadow-lg);
  text-align: center; 
  border: 1px solid var(--color-border);
}
.kpi-card__num { 
  font-size: 24px; 
  font-weight: 700; 
  color: var(--color-primary); 
  line-height: 1; 
}
.kpi-card__num sup { 
  font-size: 14px; 
}
.kpi-card__label { 
  font-size: 11px; 
  color: var(--color-text-muted); 
  margin-top: 4px; 
}

/* ===========================
   PRODUCTS SECTION (from portal)
=========================== */
.products-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: var(--sp-6);
}
.product-card {
  background: var(--color-surface); 
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg); 
  overflow: hidden;
  transition: all var(--dur-normal) var(--ease); 
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--color-primary); 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-xl);
}
.product-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1B3E8A 0%, #0A2463 100%);
  position: relative; 
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.product-card__img-icon { 
  opacity: .2; 
}
.product-card__img-icon svg { 
  width: 80px; 
  height: 80px; 
  color: #fff; 
}
.product-card__cat-tag {
  position: absolute; 
  top: var(--sp-3); 
  left: var(--sp-3);
  background: var(--color-accent); 
  color: #fff;
  font-size: 11px; 
  font-weight: 700;
  padding: 3px 10px; 
  border-radius: var(--r-full);
}
.product-card__body { 
  padding: var(--sp-6); 
}
.product-card__title { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: var(--sp-2); 
}
.product-card__desc { 
  font-size: 13px; 
  color: var(--color-text-muted); 
  line-height: 1.6; 
  margin-bottom: var(--sp-4); 
}
.product-card__tags { 
  display: flex; 
  gap: var(--sp-2); 
  flex-wrap: wrap; 
}
.tag {
  font-size: 11px; 
  font-weight: 500; 
  padding: 2px 8px;
  background: var(--color-surface-2); 
  color: var(--color-text-muted);
  border-radius: var(--r-full); 
  border: 1px solid var(--color-border);
}
.product-card__footer {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-3) var(--sp-6);
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}
.product-card__link {
  font-size: 13px; 
  font-weight: 600; 
  color: var(--color-primary);
  display: flex; 
  align-items: center; 
  gap: 4px;
  transition: gap var(--dur-fast);
}
.product-card:hover .product-card__link { 
  gap: 8px; 
}
.product-card__link svg { 
  width: 14px; 
  height: 14px; 
}

/* ===========================
   CATEGORY OVERVIEW CARDS (from product page)
=========================== */
.cat-overview { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: var(--sp-6); 
  margin-top: -60px; 
  position: relative; 
  z-index: 10; 
}
.cat-overview-card { 
  background: var(--color-surface); 
  border: 1px solid var(--color-border); 
  border-radius: var(--r-lg); 
  padding: var(--sp-6); 
  text-align: center; 
  box-shadow: var(--shadow-md); 
  transition: all var(--dur-normal) var(--ease); 
  cursor: pointer; 
}
.cat-overview-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-xl); 
  border-color: var(--color-primary); 
}
.cat-overview-card__icon { 
  width: 56px; 
  height: 56px; 
  border-radius: var(--r-md); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto var(--sp-4); 
}
.cat-overview-card__icon svg { 
  width: 28px; 
  height: 28px; 
  color: #fff; 
}
.cat-overview-card__title { 
  font-size: 15px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: var(--sp-1); 
}
.cat-overview-card__count { 
  font-size: 12px; 
  color: var(--color-text-muted); 
}
.cat-overview-card__count strong { 
  color: var(--color-accent); 
  font-weight: 700; 
}

/* ===========================
   CATEGORY FILTER TABS (from product page)
=========================== */
.filter-bar { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: var(--sp-2); 
  flex-wrap: wrap; 
  margin-bottom: var(--sp-10); 
}
.filter-btn { 
  font-family: var(--font-sans); 
  font-size: 14px; 
  font-weight: 500; 
  padding: var(--sp-2) var(--sp-5); 
  border: 1.5px solid var(--color-border); 
  border-radius: var(--r-full); 
  background: var(--color-surface); 
  color: var(--color-text-muted); 
  cursor: pointer; 
  transition: all var(--dur-fast) var(--ease); 
  white-space: nowrap; 
}
.filter-btn:hover { 
  border-color: var(--color-primary); 
  color: var(--color-primary); 
  background: rgba(10,36,99,.04); 
}
.filter-btn.active { 
  background: var(--color-primary); 
  border-color: var(--color-primary); 
  color: #fff; 
  font-weight: 600; 
}
.filter-btn__count { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  background: rgba(255,255,255,.15); 
  font-size: 11px; 
  padding: 1px 6px; 
  border-radius: var(--r-full); 
  margin-left: var(--sp-2); 
  min-width: 20px; 
}
.filter-btn:not(.active) .filter-btn__count { 
  background: var(--color-surface-2); 
}

/* ===========================
   PRODUCT GRID (from product page)
=========================== */
.product-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: var(--sp-6); 
}
.product-item { 
  background: var(--color-surface); 
  border: 1px solid var(--color-border); 
  border-radius: var(--r-lg); 
  overflow: hidden; 
  transition: all var(--dur-normal) var(--ease); 
  cursor: pointer; 
  position: relative; 
}
.product-item:hover { 
  border-color: var(--color-primary); 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
}
.product-item__visual { 
  aspect-ratio: 4/3; 
  position: relative; 
  overflow: hidden; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.product-item__visual-bg { 
  position: absolute; 
  inset: 0; 
  opacity: .12; 
  transition: opacity var(--dur-normal); 
}
.product-item:hover .product-item__visual-bg { 
  opacity: .18; 
}
.product-item__visual-bg svg { 
  width: 100%; 
  height: 100%; 
}
.product-item__visual-icon { 
  position: relative; 
  z-index: 1; 
  width: 72px; 
  height: 72px; 
  background: rgba(255,255,255,.95); 
  border-radius: var(--r-lg); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow-md); 
  transition: all var(--dur-normal); 
}
.product-item:hover .product-item__visual-icon { 
  transform: scale(1.08); 
  box-shadow: var(--shadow-lg); 
}
.product-item__visual-icon svg { 
  width: 36px; 
  height: 36px; 
  color: var(--color-primary); 
}
.product-item__cat-label { 
  position: absolute; 
  top: var(--sp-3); 
  left: var(--sp-3); 
  font-size: 10px; 
  font-weight: 700; 
  padding: 3px 10px; 
  border-radius: var(--r-full); 
  color: #fff; 
  z-index: 2; 
  letter-spacing: .5px; 
}
.cat-medical { 
  background: var(--color-accent); 
}
.cat-auto { 
  background: var(--color-gold); 
}
.cat-precision { 
  background: #4338CA; 
}
.cat-plastic { 
  background: #0891B2; 
}

.product-item__body { 
  padding: var(--sp-5) var(--sp-5) var(--sp-2); 
}
.product-item__name { 
  font-size: 15px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: var(--sp-2); 
  line-height: 1.4; 
  transition: color var(--dur-fast); 
}
.product-item:hover .product-item__name { 
  color: var(--color-primary); 
}
.product-item__meta { 
  font-size: 12px; 
  color: var(--color-text-muted); 
  margin-bottom: var(--sp-4); 
  display: flex; 
  align-items: center; 
  gap: var(--sp-2); 
}
.product-item__meta svg { 
  width: 14px; 
  height: 14px; 
  opacity: .5; 
}
.product-item__specs { 
  display: flex; 
  gap: var(--sp-2); 
  flex-wrap: wrap; 
  margin-bottom: var(--sp-4); 
}
.spec-tag { 
  font-size: 11px; 
  font-weight: 500; 
  padding: 2px 8px; 
  background: var(--color-surface-2); 
  color: var(--color-text-muted); 
  border-radius: var(--r-full); 
  border: 1px solid var(--color-border); 
}
.product-item__action { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--color-primary); 
  transition: gap var(--dur-fast); 
}
.product-item:hover .product-item__action { 
  gap: 8px; 
}
.product-item__action svg { 
  width: 14px; 
  height: 14px; 
}

/* ===========================
   CAPABILITY SECTION (from product page)
=========================== */
.capability-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: var(--sp-6); 
}
.capability-card { 
  background: var(--color-surface); 
  border: 1px solid var(--color-border); 
  border-radius: var(--r-lg); 
  overflow: hidden; 
  transition: all var(--dur-normal) var(--ease); 
}
.capability-card:hover { 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-3px); 
}
.capability-card__img { 
  aspect-ratio: 16/9; 
  overflow: hidden; 
  position: relative; 
}
.capability-card__img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform var(--dur-slow) var(--ease); 
}
.capability-card:hover .capability-card__img img { 
  transform: scale(1.06); 
}
.capability-card__img-label { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: linear-gradient(transparent, rgba(0,0,0,.7)); 
  padding: var(--sp-6) var(--sp-4) var(--sp-3); 
  font-size: 12px; 
  font-weight: 600; 
  color: rgba(255,255,255,.85); 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
}
.capability-card__body { 
  padding: var(--sp-6); 
}
.capability-card__title { 
  font-size: 17px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: var(--sp-3); 
}
.capability-card__desc { 
  font-size: 13px; 
  color: var(--color-text-muted); 
  line-height: 1.75; 
  margin-bottom: var(--sp-4); 
}
.capability-card__features { 
  display: flex; 
  flex-direction: column; 
  gap: var(--sp-2); 
}
.capability-card__feature { 
  display: flex; 
  align-items: center; 
  gap: var(--sp-2); 
  font-size: 12px; 
  color: var(--color-text-muted); 
}
.capability-card__feature svg { 
  width: 14px; 
  height: 14px; 
  color: var(--color-accent); 
  flex-shrink: 0; 
}

/* ===========================
   CORE COMPETENCIES SECTION (from portal)
=========================== */
.strengths-grid {
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: var(--sp-6);
}
.strength-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur-normal) var(--ease);
  cursor: pointer;
}
.strength-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.strength-card__photo {
  width: 100%; 
  aspect-ratio: 4/3;
  overflow: hidden; 
  position: relative;
}
.strength-card__photo img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.strength-card:hover .strength-card__photo img {
  transform: scale(1.08);
}
.strength-card__photo-label {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: var(--sp-4) var(--sp-3) var(--sp-2);
  font-size: 11px; 
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 1px; 
  text-transform: uppercase;
}
.strength-card__body {
  padding: var(--sp-5) var(--sp-5) var(--sp-12);
  text-align: center;
}
.strength-card__title {
  font-size: 15px; 
  font-weight: 700; 
  color: #fff;
  margin: var(--sp-2) 0;
}
.strength-card__desc {
  font-size: 12px; 
  color: rgba(255,255,255,.55); 
  line-height: 1.7;
  padding:0 5px;
  text-align:left
}
.strength-card__metric {
  margin: var(--sp-3) 0;
  font-size: 22px; 
  font-weight: 700;
  color: var(--color-gold); 
  line-height: 1;
}
.strength-card__metric-unit { 
  font-size: 13px; 
  font-weight: 500; 
}

/* ===========================
   PROCESS SECTION (from portal)
=========================== */
.process-steps {
  display: flex; 
  gap: 0; 
  position: relative;
}
.process-steps::before {
  content: ''; 
  position: absolute;
  top: 28px; 
  left: 60px; 
  right: 60px; 
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  z-index: 0;
}
.process-step {
  flex: 1; 
  text-align: center;
  position: relative; 
  z-index: 1; 
  padding: 0 var(--sp-4);
}
.process-step__num {
  width: 56px; 
  height: 56px;
  border-radius: 50%; 
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 18px; 
  font-weight: 700; 
  color: var(--color-text-muted);
  margin: 0 auto var(--sp-4);
  transition: all var(--dur-normal) var(--ease);
}
.process-step.active .process-step__num,
.process-step:hover .process-step__num {
  background: var(--color-primary); 
  border-color: var(--color-primary);
  color: #fff; 
  box-shadow: 0 0 0 6px rgba(10,36,99,.1);
}
.process-step__title { 
  font-size: 14px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: var(--sp-2); 
}
.process-step__desc { 
  font-size: 12px; 
  color: var(--color-text-muted); 
  line-height: 1.6; 
}

/* ===========================
   PROCESS SECTION (Compact from product page)
=========================== */
.process-compact { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: var(--sp-4); 
}
.process-compact__step { 
  text-align: center; 
  position: relative; 
}
.process-compact__step:not(:last-child)::after { 
  content: ''; 
  position: absolute; 
  top: 24px; 
  right: -12%; 
  width: 24%; 
  height: 2px; 
  background: var(--color-border); 
}
.process-compact__num { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background: var(--color-surface); 
  border: 2px solid var(--color-border); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--color-text-muted); 
  margin: 0 auto var(--sp-3); 
  transition: all var(--dur-normal) var(--ease); 
}
.process-compact__step:hover .process-compact__num { 
  background: var(--color-primary); 
  border-color: var(--color-primary); 
  color: #fff; 
  box-shadow: 0 0 0 6px rgba(10,36,99,.1); 
}
.process-compact__title { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--color-text); 
  margin-bottom: var(--sp-1); 
}
.process-compact__desc { 
  font-size: 11px; 
  color: var(--color-text-muted); 
  line-height: 1.5; 
}

/* ===========================
   CERTIFICATIONS (from portal)
=========================== */
.certs-row {
  display: flex; 
  gap: var(--sp-6); 
  align-items: center;
  justify-content: center; 
  flex-wrap: wrap;
}
.cert-item {
  background: var(--color-surface); 
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg); 
  padding: var(--sp-6) var(--sp-8);
  text-align: center; 
  min-width: 200px;
  transition: all var(--dur-normal) var(--ease);
}
.cert-item:hover { 
  border-color: var(--color-primary); 
  box-shadow: var(--shadow-md); 
  transform: translateY(-3px); 
}
.cert-item__logo {
  width: 56px; 
  height: 56px;
  /*background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
  border-radius: var(--r-md);
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto var(--sp-3);
}
.cert-item__logo svg { 
  width: 30px; 
  height: 30px; 
  color: #fff; 
}
.cert-item__name { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--color-text); 
  margin-bottom: 4px; 
}
.cert-item__scope { 
  font-size: 11px; 
  color: var(--color-text-muted); 
}

/* ===========================
   NEWS (from portal)
=========================== */
.news-grid {
  display: grid; 
  grid-template-columns: 1.4fr 1fr; 
  gap: var(--sp-6);
}
.news-featured {
  background: var(--color-surface); 
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg); 
  overflow: hidden;
  cursor: pointer; 
  transition: all var(--dur-normal) var(--ease);
}
.news-featured:hover { 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-3px); 
}
.news-featured__img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a7a 100%);
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.news-featured__img svg { 
  width: 80px; 
  height: 80px; 
  opacity: .2; 
  color: #fff; 
}
.news-featured__body { 
  padding: var(--sp-6); 
}
.news-tag {
  display: inline-block; 
  font-size: 11px; 
  font-weight: 700;
  letter-spacing: .5px; 
  color: var(--color-accent);
  background: rgba(230,57,70,.08); 
  border: 1px solid rgba(230,57,70,.2);
  padding: 2px 8px; 
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.news-featured__title { 
  font-size: 17px; 
  font-weight: 700; 
  color: var(--color-text); 
  line-height: 1.4; 
  margin-bottom: var(--sp-3); 
}
.news-featured__meta { 
  font-size: 12px; 
  color: var(--color-text-muted); 
}
.news-list { 
  display: flex; 
  flex-direction: column; 
  gap: var(--sp-4); 
}
.news-item {
  background: var(--color-surface); 
  border: 1px solid var(--color-border);
  border-radius: var(--r-md); 
  padding: var(--sp-4);
  cursor: pointer; 
  transition: all var(--dur-fast) var(--ease);
  display: flex; 
  gap: var(--sp-4); 
  align-items: flex-start;
}
.news-item:hover { 
  border-color: var(--color-primary); 
  background: var(--color-surface-2); 
}
.news-item__date {
  background: var(--color-primary); 
  color: #fff;
  border-radius: var(--r-sm); 
  padding: var(--sp-2) var(--sp-3);
  text-align: center; 
  min-width: 52px; 
  flex-shrink: 0;
}
.news-item__date .day { 
  font-size: 18px; 
  font-weight: 700; 
  line-height: 1; 
}
.news-item__date .month { 
  font-size: 10px; 
  opacity: .75; 
  margin-top: 2px; 
}
.news-item__content { 
  flex: 1; 
}
.news-item__title { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--color-text); 
  line-height: 1.4; 
  margin-bottom: 4px; 
}
.news-item:hover .news-item__title { 
  color: var(--color-primary); 
}
.news-item__desc { 
  font-size: 12px; 
  color: var(--color-text-muted); 
}

/* ===========================
   CONTACT BANNER (from both, unified)
=========================== */
.contact-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--r-xl); 
  padding: var(--sp-16) var(--sp-12);
  position: relative; 
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: var(--sp-8);
}
.contact-banner::before {
  content: ''; 
  position: absolute;
  top: -80px; 
  right: -80px; 
  width: 320px; 
  height: 320px;
  background: radial-gradient(circle, rgba(230,57,70,.15) 0%, transparent 70%);
}
.contact-banner__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700; 
  color: #fff; 
  line-height: 1.3; 
  margin-bottom: var(--sp-3);
}
.contact-banner__sub { 
  font-size: 14px; 
  color: rgba(255,255,255,.6); 
}
.contact-banner__actions { 
  display: flex; 
  gap: var(--sp-3); 
  flex-shrink: 0; 
}

/* ===========================
   BUTTONS (unified)
=========================== */
.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: var(--sp-2);
  font-family: var(--font-sans); 
  font-size: 14px; 
  font-weight: 600;
  padding: 12px 28px; 
  border: none; 
  border-radius: var(--r-full);
  cursor: pointer; 
  transition: all var(--dur-fast) var(--ease); 
  white-space: nowrap;
}
.btn--primary { 
  background: var(--color-accent); 
  color: #fff; 
}
.btn--primary:hover { 
  background: var(--color-accent-light); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(230,57,70,.4); 
}
.btn--outline { 
  background: transparent; 
  color: #fff; 
  border: 1.5px solid rgba(255,255,255,.4); 
}
.btn--outline:hover { 
  border-color: #fff; 
  background: rgba(255,255,255,.08); 
  transform: translateY(-2px); 
}
.btn--white { 
  background: #fff; 
  color: var(--color-primary); 
}
.btn--white:hover { 
  background: rgba(255,255,255,.9); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0,0,0,.2); 
}
.btn--red { 
  background: var(--color-accent); 
  color: #fff; 
  cursor: pointer; 
  z-index: 9999;
}
.btn--red:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0,0,0,.2); 
}
.btn--ghost-white { 
  background: transparent; 
  color: #fff; 
  border: 1.5px solid rgba(255,255,255,.4); 
}
.btn--ghost-white:hover { 
  border-color: #fff; 
  background: rgba(255,255,255,.08); 
  transform: translateY(-2px); 
}
.btn svg { 
  width: 16px; 
  height: 16px; 
}

/* ===========================
   SWIPER CUSTOM PAGINATION & NAV (from portal)
=========================== */
.hero-carousel .swiper-pagination { 
  bottom: 90px !important; 
}
.hero-carousel .swiper-pagination-bullet {
  width: 32px; 
  height: 3px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.35);
  opacity: 1;
  transition: all var(--dur-normal) var(--ease);
}
.hero-carousel .swiper-pagination-bullet-active {
  width: 48px;
  background: var(--color-accent);
}
.hero-carousel .swiper-button-next,
.hero-carousel .swiper-button-prev {
  color: #fff;
  width: 48px; 
  height: 48px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  transition: all var(--dur-fast) var(--ease);
}
.hero-carousel .swiper-button-next::after,
.hero-carousel .swiper-button-prev::after {
  font-size: 18px; 
  font-weight: 700;
}
.hero-carousel .swiper-button-next:hover,
.hero-carousel .swiper-button-prev:hover {
  background: rgba(255,255,255,.2);
}

/* Hero Stats Bar (below carousel) */
.hero__stats {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  z-index: 10;
}
.hero__stats-inner {
  display: flex; 
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-card {
  flex: 1;
  padding: var(--sp-4) var(--sp-6);
  background: rgba(10,36,99,.4);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--dur-normal) var(--ease);
}
.stat-card:last-child { 
  border-right: none; 
}
.stat-card:hover { 
  background: rgba(10,36,99,.6); 
}
.stat-card__num { 
  font-size: 28px; 
  font-weight: 700; 
  color: #fff; 
  line-height: 1; 
  margin-bottom: 4px; 
}
.stat-card__num em { 
  font-style: normal; 
  font-size: 16px; 
  color: var(--color-accent-light); 
}
.stat-card__label { 
  font-size: 12px; 
  color: rgba(255,255,255,.5); 
  font-weight: 400; 
  letter-spacing: .3px; 
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--color-primary-dark); 
  color: rgba(255,255,255,.7);
  padding-top: var(--sp-16);
}
.footer__grid {
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8); 
  padding-bottom: var(--sp-12);
}
.footer__brand .logo-mark {
  width: 40px; 
  height: 40px; 
  background: var(--color-accent);
  border-radius: var(--r-sm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 18px; 
  font-weight: 700; 
  color: #fff;
  margin-bottom: var(--sp-3);
}
.footer__brand-name { 
  font-size: 16px; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: var(--sp-1); 
}
.footer__brand-name-cn { 
  font-size: 11px; 
  opacity: .5; 
  margin-bottom: var(--sp-4); 
}
.footer__brand-desc { 
  font-size: 13px; 
  line-height: 1.7; 
  max-width: 280px;
}
.footer__col-title {
  font-size: 13px; 
  font-weight: 700; 
  color: #fff;
  letter-spacing: .5px; 
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__links { 
  display: flex; 
  flex-direction: column; 
  gap: var(--sp-3); 
}
.footer__link { 
  font-size: 13px; 
  color: rgba(255,255,255,.55); 
  transition: color var(--dur-fast); 
}
.footer__link:hover { 
  color: #fff; 
}
.footer__contact-item {
  display: flex; 
  gap: var(--sp-3); 
  font-size: 13px;
  margin-bottom: var(--sp-3); 
  color: rgba(255,255,255,.55);
}
.footer__contact-item svg { 
  width: 14px; 
  height: 14px; 
  flex-shrink: 0; 
  margin-top: 3px; 
  opacity: .6; 
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--sp-4) 0; 
  display: flex;
  justify-content: space-between; 
  align-items: center;
  font-size: 12px; 
  color: rgba(255,255,255,.3);
}
.footer__bottom a { 
  color: rgba(255,255,255,.4); 
}
.footer__bottom a:hover { 
  color: #fff; 
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0; 
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), 
              transform var(--dur-slow) var(--ease);
}
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.reveal-delay-1 { 
  transition-delay: 100ms; 
}
.reveal-delay-2 { 
  transition-delay: 200ms; 
}
.reveal-delay-3 { 
  transition-delay: 300ms; 
}
.reveal-delay-4 { 
  transition-delay: 400ms; 
}

/* ===========================
   NO RESULTS (from product page)
=========================== */
.no-results { 
  text-align: center; 
  padding: var(--sp-16) 0; 
  display: none; 
}
.no-results.show { 
  display: block; 
}
.no-results svg { 
  width: 64px; 
  height: 64px; 
  color: var(--color-text-light); 
  margin: 0 auto var(--sp-4); 
}
.no-results__text { 
  font-size: 15px; 
  color: var(--color-text-muted); 
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .strengths-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .footer__grid { 
    grid-template-columns: 1fr 1fr; 
  }
  /* Product page specific */
  .cat-overview { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .product-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .capability-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .process-compact { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .process-compact__step:not(:last-child)::after { 
    display: none; 
  }
}
@media (max-width: 768px) {
  .container { 
    padding: 0 var(--sp-4); 
  }
  .section { 
    padding: var(--sp-12) 0; 
  }
  .topbar { 
    display: none; 
  }
  .nav__links { 
    display: none; 
  }
  .hero-carousel { 
    height: 480px; 
  }
  .hero__stats-inner { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
  }
  .about-grid { 
    grid-template-columns: 1fr; 
  }
  .about__kpi-cards { 
    position: static; 
    width: auto; 
    grid-template-columns: repeat(4, 1fr); 
    margin-top: var(--sp-4); 
  }
  .products-grid { 
    grid-template-columns: 1fr; 
  }
  .strengths-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  .news-grid { 
    grid-template-columns: 1fr; 
  }
  .process-steps { 
    flex-direction: column; 
    gap: var(--sp-4); 
  }
  .process-steps::before { 
    display: none; 
  }
  .contact-banner { 
    flex-direction: column; 
    text-align: center; 
    padding: var(--sp-8); 
  }
  .contact-banner__actions { 
    justify-content: center; 
  }
  .footer__grid { 
    grid-template-columns: 1fr; 
  }
  .footer__bottom { 
    flex-direction: column; 
    gap: var(--sp-2); 
    text-align: center; 
  }
  /* Product page specific */
  .product-hero { 
    height: 280px; 
  }
  .cat-overview { 
    grid-template-columns: repeat(2, 1fr); 
    margin-top: -40px; 
  }
  .product-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .capability-grid { 
    grid-template-columns: 1fr; 
  }
  .process-compact { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .product-hero__deco { 
    display: none; 
  }
}
@media (max-width: 480px) {
  .product-grid { 
    grid-template-columns: 1fr; 
  }
  .cat-overview { 
    grid-template-columns: 1fr; 
  }
  .process-compact { 
    grid-template-columns: repeat(2, 1fr); 
  }
}