/* ===== LOCAL FONT FACE DECLARATIONS ===== */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-300.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-400.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-500.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-600.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-700.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/outfit-800.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/outfit-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/noto-sans-sc-300.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-sc-400.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-sans-sc-500.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/noto-sans-sc-600.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-sc-700.woff2') format('woff2');
  font-display: swap;
}

/* ===== CSS CUSTOM PROPERTIES - WHITE THEME ===== */
:root {
  --black: #0D0D0D;
  --dark: #F7F7F8;
  --dark-hover: #F0F0F2;
  --charcoal: #E8E8EA;
  --silver: #C0C0C0;
  --light-silver: #333333;
  --white: #1A1A1A;
  --gold: #A11986;
  --gold-dark: #801469;
  --gold-light: #C42BA8;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul { list-style: none; }

/* ===== SCROLLBAR - LIGHT THEME ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F0F0F0; }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== UTILITY ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(161, 25, 134, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== HEADER - WHITE THEME ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(161, 25, 134, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(161, 25, 134, 0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s ease;
}

.header.scrolled .header-inner {
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
}

.header.scrolled .logo img {
  height: 60px;
}

.logo-en {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--black);
}

.logo-cn {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  color: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
}

.nav-link-products {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link-products .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-secondary);
  transition: all var(--transition);
}

.nav-link-products:hover .arrow {
  border-top-color: var(--gold);
  transform: rotate(180deg);
}

.header-cta {
  margin-left: 16px;
}

.header-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-desktop,
  .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== MOBILE MENU - WHITE THEME ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ===== MEGA MENU - WHITE THEME ===== */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.mega-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 40px;
}

.mega-items.two-col {
  grid-template-columns: 1fr 1fr;
}

.mega-category {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mega-category:last-child { border-bottom: none; }

.mega-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mega-category-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161, 25, 134, 0.08);
  border: 1px solid rgba(161, 25, 134, 0.15);
  border-radius: 8px;
  font-size: 1.2rem;
}

.mega-category-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
}

.mega-category-title-en {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.mega-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 0;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
}

.mega-item:hover {
  background: rgba(161, 25, 134, 0.06);
}

.mega-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition);
}

.mega-item:hover::before {
  background: var(--gold);
}

.mega-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mega-item:hover span {
  color: var(--black);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 826px;
  padding-top: 80px;
  margin-top: 80px;
  overflow: hidden;
  background: #0D0D0D;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-btn-hidden {
  display: none !important;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.dot:hover:not(.active) {
  border-color: var(--gold-light);
}

@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .carousel-dots { bottom: 20px; }
}

.hero-content {
  display: none;
}

.scroll-indicator {
  display: none;
}

@media (max-width: 1024px) {
  .hero {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
}

/* ===== ABOUT SECTION - WHITE THEME ===== */
.about {
  padding: 140px 0 70px;
  background: #FFFFFF;
  position: relative;
}

.about-watermark {
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  text-align: right;
  margin-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  padding: 32px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(161, 25, 134, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--black);
  font-weight: 600;
}

/* ===== FEATURED PRODUCTS - WHITE THEME ===== */
.products {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(161, 25, 134, 0.2), transparent);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  display: block;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(161, 25, 134, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 40px rgba(161, 25, 134, 0.05);
}

.product-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 50%, #F5F5F5 100%);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image .accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.product-card:hover .accent-line {
  transform: scaleX(1);
}

.product-card-body {
  padding: 24px;
}

.product-card-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-card-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.product-card:hover .product-card-link {
  gap: 12px;
}

/* ===== PRODUCT MATRIX - WHITE THEME ===== */
.product-matrix {
  padding: 70px 0 140px;
  background: #FFFFFF;
  position: relative;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 64px;
}

@media (max-width: 1024px) {
  .matrix-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .matrix-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .matrix-grid { grid-template-columns: 1fr; }
}

.matrix-grid .product-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
}

.matrix-grid .product-card-image {
  height: 160px;
}

.matrix-grid .product-card-body {
  padding: 16px;
}



/* ===== SOLUTIONS - WHITE THEME ===== */
.solutions {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom right, #FFFFFF 49.5%, transparent 50%);
  z-index: 1;
}

.solutions::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top left, var(--dark) 49.5%, transparent 50%);
  z-index: 1;
}

.solutions-tabs {
  display: flex;
  gap: 4px;
  margin-top: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.solution-tab {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 16px 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.solution-tab:hover {
  color: var(--text-secondary);
}

.solution-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .solution-content { grid-template-columns: 1fr; gap: 32px; }
}

.solution-image {
  height: 400px;
  background: linear-gradient(135deg, #F0F0F0 0%, #E8E8E8 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.solution-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(161, 25, 134, 0.03) 0%, transparent 60%);
}

.solution-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.solution-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.solution-features {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-feature-tag {
  padding: 8px 16px;
  background: rgba(161, 25, 134, 0.06);
  border: 1px solid rgba(161, 25, 134, 0.12);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.solution-panel {
  display: none;
}

.solution-panel.active {
  display: grid;
}

/* ===== NEWS - WHITE THEME ===== */
.news {
  padding: 140px 0;
  background: #FFFFFF;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

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

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr; }
}

.news-card {
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.news-card:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.news-card-image {
  height: 180px;
  background: linear-gradient(135deg, #F0F0F0, var(--dark));
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-image .date-overlay {
  position: absolute;
  bottom: 12px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}

.news-card-body {
  padding: 24px;
}

.news-card-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stats Banner */
.stats-banner {
  margin-top: 80px;
  padding: 64px 0;
  background: var(--dark);
  border: 1px solid rgba(161, 25, 134, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(161, 25, 134, 0.03), transparent 70%);
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-banner-grid { grid-template-columns: repeat(2, 1fr); }
}

.stats-banner-item {
  padding: 24px;
}

.stats-banner-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-banner-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== FOOTER - KEPT DARK ===== */
.footer {
  padding: 80px 0 0;
  background: #1A1A1A;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  height: 48px;
  width: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #A0A0A0;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #A0A0A0;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: #A0A0A0;
}

.footer-contact-icon {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666666;
}

@media (max-width: 540px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #666666;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===== THIN HORIZONTAL RULES ===== */
.section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

/* ===== NEWS LINK ===== */
.news-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  transition: gap var(--transition);
}

.news-link:hover {
  gap: 12px;
}

/* ===== INNER PAGE BANNER - WHITE THEME ===== */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  margin-top: 80px;
  background: linear-gradient(135deg, #1a3a8f 0%, #2563c4 30%, #3b9de0 60%, #4dd4f0 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-banner-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.page-banner-circle-1 {
  width: 120px;
  height: 120px;
  top: 60px;
  right: 15%;
}

.page-banner-circle-2 {
  width: 80px;
  height: 80px;
  bottom: 100px;
  left: 20%;
}

.page-banner-circle-3 {
  width: 60px;
  height: 60px;
  top: 150px;
  left: 10%;
  background: rgba(255, 255, 255, 0.08);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-banner-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* ===== BREADCRUMB - WHITE THEME ===== */
.breadcrumb-bar {
  background: #f5f5f5;
  width: 100%;
  height: 60px;
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--gold);
}

/* ===== PRODUCT LIST PAGE - WHITE THEME ===== */
.product-list-section {
  padding: 80px 0 140px;
  background: #FFFFFF;
}

.product-list-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .product-list-layout {
    grid-template-columns: 1fr;
  }
}

.product-list-sidebar {
  position: sticky;
  top: 100px;
  padding: 13px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
}

.product-list-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.product-list-sidebar .filter-group {
  margin-bottom: 8px;
}

.product-list-sidebar .filter-children {
  padding-left: 12px;
}

.product-list-sidebar .filter-children .filter-item {
  padding-left: 12px;
}

.product-list-sidebar .filter-parent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 4px;
}

.product-list-sidebar .filter-parent:hover,
.product-list-sidebar .filter-parent.active {
  background: rgba(161, 25, 134, 0.08);
}

.product-list-sidebar .filter-parent-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161, 25, 134, 0.08);
  border: 1px solid rgba(161, 25, 134, 0.15);
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  overflow: visible;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
}

.product-list-sidebar .filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 4px;
  white-space: nowrap;
}

.product-list-sidebar .filter-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition);
}

.product-list-sidebar .filter-item:hover,
.product-list-sidebar .filter-item.active {
  background: rgba(161, 25, 134, 0.06);
  color: var(--gold);
}

.product-list-sidebar .filter-item:hover::before,
.product-list-sidebar .filter-item.active::before {
  background: var(--gold);
}

.product-list-sidebar .filter-item .count {
  display: none;
}

.product-list-main h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.product-category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.product-category-item:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateX(4px);
  background: #F0F0F2;
}

.product-category-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-category-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161, 25, 134, 0.08);
  border: 1px solid rgba(161, 25, 134, 0.15);
  border-radius: 8px;
  font-size: 1.2rem;
}

.product-category-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.product-category-item-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 12px;
}

.product-category-item-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.product-category-item:hover .product-category-item-arrow {
  color: var(--gold);
}

/* ===== PRODUCT DETAIL PAGE - WHITE THEME ===== */

/* Section 1: Overview */
.pd-overview {
  padding: 80px 0;
  background: #FFFFFF;
}

.pd-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pd-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pd-main-image {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-thumbnails {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 80px;
  height: 60px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}

.pd-thumb:hover,
.pd-thumb.active {
  border-color: var(--gold);
}

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

.pd-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(161, 25, 134, 0.08);
  border: 1px solid rgba(161, 25, 134, 0.15);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pd-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pd-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pd-overview-info .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

#pdDescContainer {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pd-desc-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.pd-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .pd-highlights {
    grid-template-columns: 1fr;
  }
}

.pd-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  transition: all var(--transition);
}

.pd-highlight-item:hover {
  border-color: rgba(161, 25, 134, 0.2);
  background: #F0F0F2;
}

.pd-highlight-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161, 25, 134, 0.08);
  border: 1px solid rgba(161, 25, 134, 0.15);
  border-radius: 6px;
  flex-shrink: 0;
}

.pd-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.pd-highlight-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
}

/* Section 2: Details */
.pd-details {
  padding: 80px 0;
  background: var(--dark);
}

.pd-details-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: stretch;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .pd-details-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.pd-details-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  height: 100%;
}

.pd-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-details-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.pd-details-text ul {
  list-style: none;
  padding: 0;
}

.pd-details-text ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.pd-details-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Section 3: Features */
.pd-features {
  padding: 80px 0;
  background: #FFFFFF;
}

.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .pd-features-grid {
    grid-template-columns: 1fr;
  }
}

.pd-feature-card {
  padding: 32px 28px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  transition: all var(--transition-slow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pd-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 25, 134, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.pd-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-feature-icon svg {
  width: 40px;
  height: 40px;
}

.pd-feature-text {
  flex: 1;
}

.pd-feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.pd-feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Section 4: Specs */
.pd-specs {
  padding: 80px 0;
  background: var(--dark);
}

.pd-specs-table-wrap {
  margin-top: 48px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}

.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pd-specs-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pd-specs-table tr:last-child {
  border-bottom: none;
}

.pd-specs-table tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

.pd-specs-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
}

.pd-specs-table td:first-child {
  color: var(--text-muted);
  width: 35%;
  font-weight: 500;
}

.pd-specs-table td:last-child {
  color: var(--text-primary);
}

/* Section 5: Modules */
.pd-modules {
  padding: 80px 0;
  background: #FFFFFF;
}

.pd-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

@media (max-width: 540px) {
  .pd-modules-grid {
    grid-template-columns: 1fr;
  }
}

.pd-module-card {
  padding: 28px 24px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  transition: all var(--transition-slow);
}

.pd-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 25, 134, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.pd-module-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.pd-module-list {
  list-style: none;
  padding: 0;
}

.pd-module-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.6;
}

.pd-module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== ABOUT PAGE - TIMELINE - WHITE THEME ===== */
.timeline-section {
  padding: 80px 0 140px;
  background: var(--dark);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(161, 25, 134, 0.1));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:nth-child(odd) {
  margin-right: auto;
  padding-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  padding-left: 60px;
  text-align: left;
}

.timeline-item:nth-child(odd)::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  z-index: 1;
}

.timeline-item:nth-child(even)::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
    transform: none;
  }
  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    left: -44px;
    right: auto;
  }
}

/* ===== HONORS GRID - WHITE THEME ===== */
.honors-section {
  padding: 80px 0 140px;
  background: #FFFFFF;
}

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

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

.honor-card {
  padding: 40px 32px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  text-align: center;
  transition: all var(--transition);
}

.honor-card:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.honor-icon {
  margin-bottom: 16px;
}

.honor-icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: #A11B86;
  display: flex;
  align-items: center;
  justify-content: center;
}

.honor-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.honor-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.honor-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== SOLUTIONS PAGE - WHITE THEME ===== */
.solution-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solution-detail-card {
  display: flex;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.solution-detail-card:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.solution-detail-card-image {
  flex-shrink: 0;
  width: 400px;
  position: relative;
}

.solution-detail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-detail-card-body {
  flex: 1;
  padding: 32px 40px;
  position: relative;
}

.solution-detail-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.solution-detail-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.solution-detail-card-arrow {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.solution-detail-card:hover .solution-detail-card-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .solution-detail-card {
    flex-direction: column;
  }
  .solution-detail-card-image {
    width: 100%;
    height: 240px;
  }
  .solution-detail-card-body {
    padding: 28px;
  }
  .solution-detail-card-arrow {
    right: 28px;
    bottom: 28px;
  }
}

/* ===== NEWS PAGE - WHITE THEME ===== */
.news-list-section {
  padding: 80px 0 140px;
  background: #FFFFFF;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 540px) {
  .news-list-grid {
    grid-template-columns: 1fr;
  }
}

.news-list-card {
  display: block;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.news-list-card:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.news-list-card-image {
  height: 255px;
  background: linear-gradient(135deg, #F0F0F0, var(--dark));
  position: relative;
  overflow: hidden;
}

.news-list-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-list-card-image .date-overlay {
  position: absolute;
  bottom: 12px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}

.news-list-card-body {
  padding: 24px;
}

.news-list-card-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-list-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-detail-section {
  padding: 80px 0 140px;
  background: #FFFFFF;
}

.news-detail-layout {
  max-width: 1400px;
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 40px;
}

.news-detail-header .product-detail-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.news-detail-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.news-detail-body {
  margin-bottom: 48px;
}

.news-detail-body .news-detail-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.news-detail-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}

.news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.news-detail-cta {
  text-align: center;
}

.news-list-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.pagination-item:hover {
  border-color: rgba(161, 25, 134, 0.2);
  color: var(--black);
}

.pagination-item.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
  font-weight: 600;
}

/* ===== CONTACT PAGE - WHITE THEME ===== */
.contact-section {
  padding: 80px 0 140px;
  background: #FFFFFF;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(161, 25, 134, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C42BA8 0%, #A21C87 100%);
  border-radius: 50%;
  margin-bottom: 16px;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Map placeholder */
.map-section {
  padding: 0 0 140px;
  background: #FFFFFF;
}

.map-placeholder {
  height: 400px;
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ===== SOLUTION DETAIL PAGE ===== */
.product-detail-section {
  padding-top: 70px;
}

.solution-detail-content {
  max-width: 1400px;
  margin: 0 auto;
}

.solution-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.solution-detail-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 48px;
}

.solution-detail-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}

.solution-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161, 25, 134, 0.03) 0%, transparent 60%);
}

@media (max-width: 768px) {
  .solution-detail-image {
    height: 300px;
  }
}