@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #002B49; 
  --primary-hover: #001f35;
  --accent: #f26522; 
  --accent-hover: #d9581b;
  --secondary: #002B49; 
  --text-dark: #002B49;
  --text-light: #4a5568;
  --bg-light: #f5f7f9;
  --white: #ffffff;
  --dark: #001f35;
  --dark-light: #002B49;
  --border: #e2e8f0;
  --border-dark: rgba(255,255,255,0.1);
  --shadow-sm: 0 4px 12px rgba(0, 43, 73, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 43, 73, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(0, 43, 73, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 43, 73, 0.35);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.25);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.35);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

/* 商城后台特殊按钮设计 */
.btn-admin {
  background: linear-gradient(135deg, var(--primary), #00406c);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 43, 73, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-admin:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 8px 24px rgba(0, 43, 73, 0.35);
  background: linear-gradient(135deg, #001f35, var(--primary));
  color: var(--white);
}

.admin-icon {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981; /* 活力绿 */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
  margin-left: 4px;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-admin:hover .pulse-dot {
  background-color: #fff;
  animation: none;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.btn-admin-hero {
  gap: 12px;
}

.btn-hero-join {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-hero-join:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== Premium Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  padding: 20px 0;
}

.navbar.scrolled {
  padding: 14px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  border-left: 2px solid rgba(0, 43, 73, 0.15);
  padding-left: 12px;
  margin-left: 2px;
}

@font-face {
  font-family: 'MakeFont LiHei';
  src: local('造字工房力黑（非商用）常规体'), local('造字工房力黑（非商用）'), local('造字工房力黑体'), local('MakeFont LiHei'), url('assets/MakeFont-LiHei.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.logo-text-main {
  font-family: 'MakeFont LiHei', 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 3px;
  line-height: 1;
}

.logo-text-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link-sub {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link-sub:hover {
  color: var(--accent);
}

.nav-join-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-join-link:hover {
  background-color: var(--accent);
  color: #fff;
}

/* ===== Hero Slider Section ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 800px;
  width: 100%;
  overflow: hidden;
  background-color: var(--dark);
  display: flex;
  align-items: center;
}

.slides-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
  display: flex;
  align-items: center;
}

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

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,25,45,0.95) 0%, rgba(0,31,53,0.6) 45%, rgba(0,31,53,0.1) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.slide.active .hero-content {
  animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes slideUpFade {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(242, 101, 34, 0.1);
  border: 1px solid rgba(242, 101, 34, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.text-gradient {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* 底部精致进度条控制器 */
.slider-controls {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: flex-start;
}

.slider-progress-bar {
  display: flex;
  gap: 24px;
  width: 100%;
}

.slider-indicator {
  flex: 1;
  min-width: 160px;
  cursor: pointer;
  padding: 10px 0;
}

.indicator-line {
  height: 3px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.indicator-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
}

.slider-indicator span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  transition: color 0.3s;
}

.slider-indicator.active span, .slider-indicator:hover span {
  color: var(--white);
}

.slider-indicator:hover .indicator-line {
  background: rgba(255, 255, 255, 0.4);
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--accent);
  font-size: 2rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ===== Signature Primed Corner ===== */
.primed-corner {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
}

/* ===== General Sections ===== */
.section {
  padding: 140px 0;
}

.dark-section {
  background-color: var(--dark);
  color: var(--text-light);
}

.section-title {
  margin-bottom: 80px;
}

.text-center {
  text-align: center;
}

.subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title.light h2 {
  color: var(--white);
}

.title-line {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 24px auto 0;
  border-radius: 2px;
}

.section-title[style*="left"] .title-line {
  margin: 24px 0 0;
}

/* ===== Editorial Layout (Business) ===== */
.editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.editorial-row.reverse .editorial-image {
  order: 2;
}

.editorial-image {
  position: relative;
  box-shadow: var(--shadow-lg);
}

.editorial-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.image-overlay-card {
  position: absolute;
  bottom: -1px; 
  right: -1px; 
  background: var(--white);
  padding: 24px 32px;
  border-radius: 40px 0 0 0; 
  box-shadow: -10px -10px 30px rgba(0,0,0,0.05);
}

.image-overlay-card h4 {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 800;
}

.image-overlay-card p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.editorial-icon {
  width: 64px;
  height: 64px;
  background: rgba(242, 101, 34, 0.1);
  color: var(--accent);
  border-radius: 16px 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

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

.editorial-content h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 800;
}

.editorial-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.premium-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-list li {
  position: relative;
  padding-left: 28px;
}

.premium-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.premium-list strong {
  color: var(--text-dark);
}

/* ===== Dark Supply Chain Advantage ===== */
.premium-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.pf-item {
  background: var(--dark-light);
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pf-item:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 101, 34, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pf-num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.pf-content h4 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pf-content p {
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}

.factory-showcase {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.factory-showcase img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.factory-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}

.factory-info h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.factory-info p {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ===== About Us ===== */
.about-quote {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-top: 32px;
  font-style: italic;
  line-height: 1.6;
}

/* ===== Careers Section ===== */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 40px 0 40px 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 101, 34, 0.3);
}

.job-card h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.job-loc {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.job-desc {
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.c-detail svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-top: 4px;
}

.c-detail strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: 40px 0 40px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-weight: 800;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.map-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.map-wrapper {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  line-height: 0;
  position: relative;
}

/* ===== Premium Footer ===== */
.premium-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 100px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo-wrapper .logo-text-group {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.footer-logo-wrapper .logo-text-main {
  color: var(--white);
}

.footer-brand p {
  margin-top: 24px;
  max-width: 300px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.footer-col a {
  display: block;
  margin-bottom: 16px;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.contact-text {
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .editorial-row { grid-template-columns: 1fr; gap: 40px; }
  .editorial-row.reverse .editorial-image { order: -1; }
  .editorial-image img { height: 400px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .careers-grid { grid-template-columns: 1fr 1fr; }
  .contact-container { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-link-sub { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .premium-features { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .slider-controls {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .careers-grid { grid-template-columns: 1fr; }
}

/* ===== Page Section Toggle ===== */
.page-section {
  display: none !important;
}

.page-section.active {
  display: block !important;
}

/* ===== Home Page Sections ===== */

/* 快捷服务入口 */
.home-services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 43, 73, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(242, 101, 34, 0.1);
  color: var(--accent);
  border-radius: 16px 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 产品分类展示 */
.home-categories {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.category-card {
  position: relative;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

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

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 43, 73, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.category-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.category-overlay span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.category-wide {
  grid-column: span 1;
}

/* 信任背书 */
.home-trust {
  padding: 100px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: 20px;
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 43, 73, 0.08);
  transform: translateX(8px);
}

.trust-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.trust-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.trust-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 招募加盟Banner */
.home-cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.home-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(242, 101, 34, 0.1);
  border-radius: 50%;
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.cta-banner-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .category-wide { grid-column: span 1; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-banner-content h2 { font-size: 1.8rem; }
}

/* 首页特殊处理：需要显示 hero + stats */
#home.hero-slider {
  display: block;
}

#home.hero-slider:not(.active) {
  display: none;
}

/* ===== APP Download Section ===== */
.app-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.app-card {
  background: var(--white);
  padding: 48px 32px;
  border-radius: 40px 0 40px 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 101, 34, 0.3);
}

.app-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.apple-icon {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
}

.android-icon {
  background: linear-gradient(135deg, #3DDC84 0%, #2BB866 100%);
  color: #fff;
}

.miniapp-icon {
  background: linear-gradient(135deg, #07C160 0%, #05903A 100%);
  color: #fff;
}

.app-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.app-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-app-store:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #fff;
}

.app-store-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.store-badge:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.app-direct-download {
  margin-top: 16px;
}

.qrcode-placeholder {
  margin: 20px 0;
}

.qrcode-box {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qrcode-box p {
  font-size: 0.75rem;
  color: #999;
}

@media (max-width: 1024px) {
  .app-download-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
