@charset "UTF-8";

/* ============================================
   NEW LIFE COMPUTERS - Custom Stylesheet
   Dark theme, responsive, Spanish content
   ============================================ */

/* === CSS Variables === */
:root {
  --bg-dark: #0B0F19;
  --bg-dark-2: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #222d44;
  --primary: #6366F1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8B5CF6;
  --accent-blue: #3b82f6;
  --accent-green: #25D366;
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  --border-color: rgba(255,255,255,0.08);
  --border-hover: rgba(99,102,241,0.4);
  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-dark: linear-gradient(180deg, #0B0F19 0%, #111827 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.15) 0%, transparent 70%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(99,102,241,0.3);
  --transition: all 0.3s ease;
  --font-main: 'Outfit', sans-serif;
  --container-max: 1400px;
}

/* === Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul,ol { list-style: none; }
img { max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* === Container === */
.container-custom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  
}



/* 仅首页hero模块覆盖，其他页面完全不受影响 */
/* 移动端默认：居中、小内边距 */
.hero-banner > .container-custom {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 大屏：左对齐布局 + 右侧留白 */
@media (min-width: 769px) {
    .hero-banner > .container-custom {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 280px 0 280px !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .hero-banner__content {
        max-width: 640px;
        margin-left: 0;
        margin-right: auto;
        text-align: left;
    }
}





/* === Section Spacing === */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

/* === Section Title === */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: rgba(99,102,241,0.08);
}
.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-title h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
}
.hero-bg-glow--1 {
  background: var(--primary);
  top: -200px;
  left: -100px;
}
.hero-bg-glow--2 {
  background: var(--secondary);
  bottom: -200px;
  right: -100px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-content h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
  color: #fff !important;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary) !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
}
.hero-feature .text .value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.hero-feature .text .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero Image */
.hero-image {
  flex: 1;
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-glow);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-glow);
  border-radius: 30px;
  z-index: -1;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-dark-2);
}
.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.brand-item {
  text-align: center;
  transition: var(--transition);
  opacity: 0.6;
}
.brand-item:hover { opacity: 1; }
.brand-item .brand-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.brand-item .brand-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 100px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.product-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-dark);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  background: rgba(99,102,241,0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}
.product-card__content {
  padding: 24px;
}
.product-card__brand {
  font-size: 12px;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}
.product-card__price .old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.product-card__btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 15px;
  transition: var(--transition);
}
.product-card__btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Products CTA */
.products-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--bg-dark-2);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-image {
  flex: 1;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
}
.about-image .experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gradient-primary);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.about-image .experience-badge .number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-image .experience-badge .text {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}
.about-content { flex: 1; }
.about-content .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: rgba(99,102,241,0.08);
}
.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.about-list li i {
  color: var(--primary-light);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
.about-stat .number {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-stat .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   SERVICES / WHY CHOOSE US
   ============================================ */
.services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-light);
  transition: var(--transition);
}
.service-card:hover .icon {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}
.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,15,25,0.95) 0%, rgba(11,15,25,0.7) 100%);
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news {
  padding: 100px 0;
  background: var(--bg-dark-2);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.news-card__image {
  height: 200px;
  overflow: hidden;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__image img {
  transform: scale(1.05);
}
.news-card__content {
  padding: 24px;
}
.news-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.news-card__date i { color: var(--primary-light); }
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}
.news-card:hover .news-card__title {
  color: var(--primary-light);
}
.news-card__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
}
.news-card__link:hover { gap: 10px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #08090f;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-about .logo-row .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}
.footer-about .logo-row .name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}
.footer-about .logo-row .tagline {
  font-size: 10px;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-about p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact li i {
  color: var(--primary-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--primary-light); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in-up-delay-1 { animation: fadeInUp 0.6s ease 0.1s forwards; opacity: 0; }
.fade-in-up-delay-2 { animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.fade-in-up-delay-3 { animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }

/* ============================================
   RESPONSIVE / MOBILE
   ============================================ */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 46px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: span 3; }
}

@media (max-width: 992px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-features { justify-content: center; }
  .about-inner { flex-direction: column; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .about-list { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 34px; }
  .about-content h2 { font-size: 34px; }
  .cta-inner h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 60px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-features { gap: 20px; }
  .brands-grid { gap: 24px; }
  .brand-item .brand-name { font-size: 18px; }
  .products-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .section-padding { padding: 60px 0; }
  .section-title h2 { font-size: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-about { grid-column: span 1; }
  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-content .hero-badge { font-size: 11px; padding: 6px 14px; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: 14px; }
  .product-card__image { height: 180px; }
  .about-image .experience-badge { padding: 14px 18px; }
  .about-image .experience-badge .number { font-size: 28px; }
}

/* ============================================
   BRANDS REDESIGN (v2 - 2 rows x 4 columns)
   ============================================ */
.section-title-center {
  text-align: center;
  margin-bottom: 50px;
}
.section-title-center .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: rgba(99,102,241,0.08);
}
.section-title-center h2 {
  font-size: 36px;
  font-weight: 800;
}
.section-title-center h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brands-grid--v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: var(--transition);
}
.brand-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}
.brand-card:hover::before { opacity: 1; }
.brand-card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-light);
  transition: var(--transition);
}
.brand-card:hover .brand-card__icon {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.brand-card__name {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.brand-card__desc {
  position: relative;
  font-size: 13px;
  color: var(--text-muted);
}
.brands--compact { padding: 40px 0; }
/* ============================================
  HERO BANNER (Homepage)
  ============================================ */
.hero-banner {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}
.hero-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,15,25,0.92) 0%, rgba(11,15,25,0.7) 50%, rgba(11,15,25,0.85) 100%);
  z-index: 1;
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-banner__content .hero-badge{
  margin-bottom: 24px;
}
.hero-banner__content h1{
  margin-bottom: 24px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-banner__content p{
  margin-bottom: 28px;
  max-width: unset;
}
.hero-banner__content .hero-actions{
  justify-content: center;
  margin-bottom: 40px;
}
.hero-banner__content .hero-features{
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* 大屏：左对齐 + 大间距 */
@media (min-width: 769px) {
  .hero-banner__content {
    max-width: 640px;
    text-align: left;
  }
  .hero-banner__content .hero-badge{
    margin-bottom: 32px;
  }
  .hero-banner__content h1{
    margin-bottom: 28px;
  }
  .hero-banner__content p{
    margin-bottom: 36px;
  }
  .hero-banner__content .hero-actions{
    justify-content: flex-start;
    margin-bottom: 56px;
  }
  .hero-banner__content .hero-features{
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 32px;
  }
}


/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.page-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,15,25,0.92) 0%, rgba(11,15,25,0.75) 100%);
  z-index: 1;
}
.page-banner__inner {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: 36px;
  font-weight: 800;
  color: #F9FAFB;
  margin-bottom: 12px;
}

/* Breadcrumb List */
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.breadcrumb-list li {
  color: rgba(255,255,255,0.6);
}
.breadcrumb-list li a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.breadcrumb-list li a:hover { color: var(--primary-light); }
.breadcrumb-list li.active {
  color: var(--primary-light);
  font-weight: 500;
}
.breadcrumb-list li i { font-size: 12px; }

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision { background: var(--bg-dark-2); }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}
.mv-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.mv-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-light);
  transition: var(--transition);
}
.mv-card:hover .mv-card__icon {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 60px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
}
.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card a, .contact-card span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  display: inline-block;
}
.contact-card a:hover { color: var(--primary-light); }

.contact-form-section { padding: 0 0 80px; }
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
}
.contact-form-info {
  padding: 48px 40px;
  background: var(--bg-dark-2);
}
.contact-form-info .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background: rgba(99,102,241,0.08);
}
.contact-form-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-form-info h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-form-info > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-form-info-list .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.contact-form-info-list .info-item i {
  color: var(--primary-light);
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.contact-form-box { padding: 48px 40px; }
.contact-form-box__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-form-box__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.nl-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  position: relative;
}
.form-group--full { grid-column: span 2; }
.nl-contact-form input,
.nl-contact-form textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 16px 8px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition);
  resize: vertical;
}
.nl-contact-form input:focus,
.nl-contact-form textarea:focus {
  outline: none;
  border-color: var(--border-hover);
  background: var(--bg-dark-2);
}
.nl-contact-form label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}
.nl-contact-form input:focus + label,
.nl-contact-form input:not(:placeholder-shown) + label,
.nl-contact-form textarea:focus + label,
.nl-contact-form textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 11px;
  color: var(--primary-light);
}
.btn-form {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Map */
.map-section { padding: 0 0 80px; }
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.map-wrapper iframe { display: block; filter: invert(0.9) hue-rotate(180deg); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail { padding: 60px 0; }
.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.product-detail__main-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  background: var(--bg-dark);
}
.product-detail__main-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.product-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-detail__thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.product-detail__thumb.active,
.product-detail__thumb:hover {
  border-color: var(--primary-light);
}
.product-detail__thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.product-detail__brand {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-detail__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.product-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.product-detail__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
}
.product-detail__rating i { color: #fbbf24; }
.product-detail__stock {
  font-size: 14px;
  color: var(--accent-green);
  font-weight: 500;
}
.product-detail__price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.product-detail__price .price-current {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}
.product-detail__price .price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-detail__price .price-badge {
  padding: 4px 12px;
  background: rgba(37,211,102,0.15);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}
.product-detail__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.product-detail__specs h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}
.specs-table td:first-child {
  color: var(--text-muted);
  width: 40%;
}
.specs-table td:last-child {
  color: var(--text-secondary);
  font-weight: 500;
}
.product-detail__actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}
.product-detail__extra .extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.product-detail__extra .extra-item i {
  color: var(--primary-light);
  font-size: 16px;
}

/* Products Filter Bar */
.products-filter-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* ============================================
   NEWS ARTICLE PAGE
   ============================================ */
.news-article { padding: 60px 0; }
.news-article__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.news-article__meta i { color: var(--primary-light); margin-right: 6px; }
.news-article__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.3;
}
.news-article__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.news-article__image img { width: 100%; }
.news-article__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.news-article__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 16px;
}
.news-article__content ul {
  list-style: none;
  margin-bottom: 20px;
}
.news-article__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.news-article__content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-light);
  font-size: 14px;
  margin-top: 3px;
}
.news-article__quote {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.news-article__quote i {
  color: var(--primary-light);
  font-size: 24px;
  margin-bottom: 12px;
}
.news-article__quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  margin: 0;
}
.news-article__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}
.news-article__share span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.news-article__share a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  transition: var(--transition);
}
.news-article__share a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* News Sidebar */
.news-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
}
.sidebar-widget h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar-categories li { margin-bottom: 10px; }
.sidebar-categories li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.sidebar-categories li a:hover {
  background: rgba(99,102,241,0.1);
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: var(--transition);
}
.sidebar-contact a:hover { color: var(--primary-light); }
.sidebar-contact i { color: var(--primary-light); width: 20px; text-align: center; }

/* ============================================
   FOOTER LOGO IMAGE
   ============================================ */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   RESPONSIVE - NEW ELEMENTS
   ============================================ */
@media (max-width: 1200px) {
  .brands-grid--v2 { grid-template-columns: repeat(4, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-article__inner { grid-template-columns: 1fr 260px; }
}

@media (max-width: 992px) {
  .brands-grid--v2 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrapper { grid-template-columns: 1fr; }
  .contact-form-info, .contact-form-box { padding: 32px 24px; }
  .product-detail__inner { grid-template-columns: 1fr; }
  .news-article__inner { grid-template-columns: 1fr; }
  .news-article__sidebar { flex-direction: row; gap: 20px; }
  .sidebar-widget { flex: 1; }
}

@media (max-width: 768px) {
  .brands-grid--v2 { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-contact-form .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .product-detail__title { font-size: 24px; }
  .product-detail__main-img img { height: 280px; }
  .product-detail__thumbs { grid-template-columns: repeat(3, 1fr); }
  .product-detail__actions { flex-direction: column; }
  .product-detail__actions a { width: 100%; justify-content: center; }
  .news-article__title { font-size: 22px; }
  .news-article__sidebar { flex-direction: column; }
  .hero-banner { min-height: 400px; padding: 60px 0; }
  .hero-banner__content { max-width: 100%; text-align: center; }
  .hero-banner__content .hero-actions { justify-content: center; }
  .hero-banner__content .hero-features { justify-content: center; }
  .page-banner { min-height: 200px; padding: 40px 0; }
  .page-banner h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .brands-grid--v2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-card { padding: 20px 14px; }
  .brand-card__name { font-size: 16px; }
  .brand-card__desc { font-size: 11px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item .stat-number { font-size: 32px; }
  .contact-form-info, .contact-form-box { padding: 24px 16px; }
  .mv-card { padding: 28px 20px; }
  .news-article__content p { font-size: 14px; }
  .news-article__quote { padding: 16px 18px; }
  .filter-tags { gap: 6px; }
  .filter-tag { padding: 6px 14px; font-size: 12px; }
  .hero-banner { min-height: 350px; padding: 40px 0; }
  .hero-banner__content h1 { font-size: 26px; line-height: 1.2; }
  .hero-banner__content .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero-banner__content p { font-size: 14px; }
  .hero-features { gap: 12px; }
  .hero-feature .icon { width: 40px; height: 40px; font-size: 16px; }
  .hero-feature .text .value { font-size: 16px; }
  .hero-feature .text .label { font-size: 11px; }
  .page-banner { min-height: 180px; }
  .page-banner h1 { font-size: 22px; }
}
