html, body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 48px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.nav-logo:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
          box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.logo-text {
  font-size: 22px;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding-top: 72px;
}
.hero-banner #particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 0 24px;
}
.hero-banner .banner-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.2;
  letter-spacing: -1px;
}
.hero-banner .banner-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  -webkit-animation: gradientShift 3s ease infinite;
          animation: gradientShift 3s ease infinite;
}
@-webkit-keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
.hero-banner .banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 48px;
  max-width: 700px;
  line-height: 1.8;
  font-weight: 400;
}
.hero-banner .banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero-banner .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.hero-banner .btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
          box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.hero-banner .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  -webkit-box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
          box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}
.hero-banner .btn-primary .btn-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero-banner .btn-primary :hover .btn-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.hero-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.hero-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-banner .btn-secondary .play-icon {
  font-size: 12px;
}
.hero-banner .stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-banner .stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-banner .stat-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(102, 126, 234, 0.3);
  -webkit-box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
          box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.hero-banner .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-banner .stat-card .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.products-section {
  position: relative;
  padding: 120px 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0a0a0a), to(#0f0f1e));
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1e 100%);
  overflow: hidden;
}
.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.products-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.products-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.products-section .section-header .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
.products-section .section-header .section-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.products-section .section-header .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}
.products-section .product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.products-section .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--card-color-1)), to(var(--card-color-2)));
  background: linear-gradient(90deg, var(--card-color-1), var(--card-color-2));
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.products-section .product-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.25);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--card-glow);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--card-glow);
}
.products-section .product-card:hover::before {
  opacity: 1;
}
.products-section .product-card:nth-child(1) {
  --card-color-1: #07c160;
  --card-color-2: #06ae56;
  --card-glow: rgba(7, 193, 96, 0.15);
}
.products-section .product-card:nth-child(2) {
  --card-color-1: #ff9500;
  --card-color-2: #ff6b00;
  --card-glow: rgba(255, 149, 0, 0.15);
}
.products-section .product-card:nth-child(3) {
  --card-color-1: #007aff;
  --card-color-2: #5856d6;
  --card-glow: rgba(0, 122, 255, 0.15);
}
.products-section .product-card:nth-child(4) {
  --card-color-1: #34c759;
  --card-color-2: #30d158;
  --card-glow: rgba(52, 199, 89, 0.15);
}
.products-section .product-card:nth-child(5) {
  --card-color-1: #af52de;
  --card-color-2: #bf5af2;
  --card-glow: rgba(175, 82, 222, 0.15);
}
.products-section .product-card:nth-child(6) {
  --card-color-1: #ff453a;
  --card-color-2: #ff3744;
  --card-glow: rgba(255, 69, 58, 0.15);
}
.products-section .product-card .product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  -webkit-box-shadow: 0 8px 24px var(--card-glow);
          box-shadow: 0 8px 24px var(--card-glow);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products-section .product-card .product-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke-width: 2;
}
.products-section .product-card .product-icon:hover {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.products-section .product-card .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.products-section .product-card .product-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 24px 0;
}
.products-section .product-card .product-features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}
.products-section .product-card .product-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.products-section .product-card .product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  -webkit-box-shadow: 0 0 10px var(--card-glow);
          box-shadow: 0 0 10px var(--card-glow);
}
.products-section .product-card .product-features li:hover {
  color: #ffffff;
  padding-left: 28px;
}
.products-section .product-card .product-btn {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.products-section .product-card .product-btn:hover {
  background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
  border-color: transparent;
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 30px var(--card-glow);
          box-shadow: 0 10px 30px var(--card-glow);
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .products-section {
    padding: 80px 16px !important;
  }
  .products-section .products-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .products-section .product-card {
    padding: 32px 24px !important;
  }
}
.data-section {
  position: relative;
  padding: 120px 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0f0f1e), to(#0a0a14));
  background: linear-gradient(180deg, #0f0f1e 0%, #0a0a14 100%);
  overflow: hidden;
}
.data-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.data-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.data-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.data-section .section-header .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
.data-section .section-header .section-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.data-section .section-header .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.data-section .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.data-section .metrics-grid .metric-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.data-section .metrics-grid .metric-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.08);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(102, 126, 234, 0.08);
  background: rgba(255, 255, 255, 0.05);
}
.data-section .metrics-grid .metric-card .metric-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.data-section .metrics-grid .metric-card .metric-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}
.data-section .metrics-grid .metric-card .metric-icon.icon-trend {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: white;
  -webkit-box-shadow: 0 8px 24px rgba(0, 212, 170, 0.25);
          box-shadow: 0 8px 24px rgba(0, 212, 170, 0.25);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-trend:hover {
  -webkit-transform: scale(1.15) rotate(-5deg);
          transform: scale(1.15) rotate(-5deg);
  -webkit-box-shadow: 0 12px 32px rgba(0, 212, 170, 0.35);
          box-shadow: 0 12px 32px rgba(0, 212, 170, 0.35);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-users {
  background: linear-gradient(135deg, #a55eea, #8854d0);
  color: white;
  -webkit-box-shadow: 0 8px 24px rgba(165, 94, 234, 0.25);
          box-shadow: 0 8px 24px rgba(165, 94, 234, 0.25);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-users:hover {
  -webkit-transform: scale(1.15) rotate(5deg);
          transform: scale(1.15) rotate(5deg);
  -webkit-box-shadow: 0 12px 32px rgba(165, 94, 234, 0.35);
          box-shadow: 0 12px 32px rgba(165, 94, 234, 0.35);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-globe {
  background: linear-gradient(135deg, #00cec9, #0984e3);
  color: white;
  -webkit-box-shadow: 0 8px 24px rgba(0, 206, 201, 0.25);
          box-shadow: 0 8px 24px rgba(0, 206, 201, 0.25);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-globe:hover {
  -webkit-transform: scale(1.15) rotate(10deg);
          transform: scale(1.15) rotate(10deg);
  -webkit-box-shadow: 0 12px 32px rgba(0, 206, 201, 0.35);
          box-shadow: 0 12px 32px rgba(0, 206, 201, 0.35);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-bolt {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
  color: white;
  -webkit-box-shadow: 0 8px 24px rgba(253, 203, 110, 0.25);
          box-shadow: 0 8px 24px rgba(253, 203, 110, 0.25);
}
.data-section .metrics-grid .metric-card .metric-icon.icon-bolt:hover {
  -webkit-transform: scale(1.15) rotate(-10deg);
          transform: scale(1.15) rotate(-10deg);
  -webkit-box-shadow: 0 12px 32px rgba(253, 203, 110, 0.35);
          box-shadow: 0 12px 32px rgba(253, 203, 110, 0.35);
}
.data-section .metrics-grid .metric-card .metric-value {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.data-section .metrics-grid .metric-card .metric-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.data-section .charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
}
.data-section .charts-grid .chart-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.data-section .charts-grid .chart-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  border-color: rgba(102, 126, 234, 0.25);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(102, 126, 234, 0.06);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(102, 126, 234, 0.06);
  background: rgba(255, 255, 255, 0.05);
}
.data-section .charts-grid .chart-card .chart-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
.data-section .charts-grid .chart-card .chart-container {
  width: 100%;
  height: 320px;
  min-height: 280px;
}

@media (max-width: 1200px) {
  .data-section .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  }
  .data-section .charts-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  }
}
@media (max-width: 768px) {
  .data-section {
    padding: 80px 16px !important;
  }
  .data-section .metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-bottom: 48px !important;
  }
  .data-section .metrics-grid .metric-card {
    padding: 24px 20px !important;
  }
  .data-section .metrics-grid .metric-card .metric-value {
    font-size: 2rem !important;
  }
  .data-section .charts-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .data-section .charts-grid .chart-card {
    padding: 24px !important;
  }
  .data-section .charts-grid .chart-card .chart-container {
    height: 280px !important;
  }
}
.news-section {
  position: relative;
  padding: 120px 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0a0a14), to(#050508));
  background: linear-gradient(180deg, #0a0a14 0%, #050508 100%);
  overflow: hidden;
}
.news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(102, 126, 234, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}
.news-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.news-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.news-section .section-header .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
.news-section .section-header .section-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news-section .section-header .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.news-section .news-grid .news-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .news-grid .news-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(102, 126, 234, 0.08);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(102, 126, 234, 0.08);
}
.news-section .news-grid .news-card:hover .news-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.news-section .news-grid .news-card:hover .news-title {
  color: #ffffff;
}
.news-section .news-grid .news-card:hover .news-link {
  color: #667eea;
  padding-left: 8px;
}
.news-section .news-grid .news-card:hover .news-link svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.news-section .news-grid .news-card .news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
}
.news-section .news-grid .news-card .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-section .news-grid .news-card .news-image .news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.news-section .news-grid .news-card .news-image .news-tag.tag-tech {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.9), rgba(0, 184, 148, 0.9));
  color: white;
}
.news-section .news-grid .news-card .news-image .news-tag.tag-market {
  background: linear-gradient(135deg, rgba(165, 94, 234, 0.9), rgba(136, 84, 208, 0.9));
  color: white;
}
.news-section .news-grid .news-card .news-image .news-tag.tag-case {
  background: linear-gradient(135deg, rgba(0, 206, 201, 0.9), rgba(9, 132, 227, 0.9));
  color: white;
}
.news-section .news-grid .news-card .news-image .news-tag.tag-product {
  background: linear-gradient(135deg, rgba(253, 203, 110, 0.95), rgba(243, 156, 18, 0.95));
  color: #1a1a2e;
}
.news-section .news-grid .news-card .news-image .news-tag.tag-company {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.9), rgba(245, 87, 108, 0.9));
  color: white;
}
.news-section .news-grid .news-card .news-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.news-section .news-grid .news-card .news-content .news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.3px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-grid .news-card .news-content .news-excerpt {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-grid .news-card .news-content .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.news-section .news-grid .news-card .news-content .news-meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.news-section .news-grid .news-card .news-content .news-meta span svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.news-section .news-grid .news-card .news-content .news-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: rgba(102, 126, 234, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 4px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.news-section .news-grid .news-card .news-content .news-link svg {
  width: 16px;
  height: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news-section .news-grid .news-card .news-content .news-link:hover {
  color: #764ba2;
}

@media (max-width: 1400px) {
  .news-section .news-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .news-section .news-grid:nth-last-child(-n+3) {
    grid-column: span 1;
  }
}
@media (max-width: 1024px) {
  .news-section .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}
@media (max-width: 768px) {
  .news-section {
    padding: 80px 16px !important;
  }
  .news-section .section-header {
    margin-bottom: 48px !important;
  }
  .news-section .news-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .news-section .news-grid .news-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
  }
  .news-section .news-grid .news-card .news-image {
    height: auto !important;
    min-height: 160px;
  }
  .news-section .news-grid .news-card .news-content {
    padding: 20px !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contact-section {
  position: relative;
  padding: 120px 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#050508), to(#0a0a12));
  background: linear-gradient(180deg, #050508 0%, #0a0a12 100%);
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(102, 126, 234, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}
.contact-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.contact-section .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.contact-section .section-header .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
.contact-section .section-header .section-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-section .section-header .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.contact-section .contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}
.contact-section .contact-form-wrapper .form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 28px 0;
  letter-spacing: -0.5px;
}
.contact-section .contact-form-wrapper .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.contact-section .contact-form-wrapper .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-section .contact-form-wrapper .contact-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.contact-section .contact-form-wrapper .contact-form .form-group.full-width {
  width: 100%;
}
.contact-section .contact-form-wrapper .contact-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}
.contact-section .contact-form-wrapper .contact-form .form-group input,
.contact-section .contact-form-wrapper .contact-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-form-wrapper .contact-form .form-group input::-webkit-input-placeholder, .contact-section .contact-form-wrapper .contact-form .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-section .contact-form-wrapper .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form-wrapper .contact-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-section .contact-form-wrapper .contact-form .form-group input:-ms-input-placeholder, .contact-section .contact-form-wrapper .contact-form .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-section .contact-form-wrapper .contact-form .form-group input::-ms-input-placeholder, .contact-section .contact-form-wrapper .contact-form .form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-section .contact-form-wrapper .contact-form .form-group input::placeholder,
.contact-section .contact-form-wrapper .contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-section .contact-form-wrapper .contact-form .form-group input:focus,
.contact-section .contact-form-wrapper .contact-form .form-group textarea:focus {
  outline: none;
  border-color: rgba(102, 126, 234, 0.6);
  background: rgba(102, 126, 234, 0.08);
  -webkit-box-shadow: 0 0 20px rgba(102, 126, 234, 0.15);
          box-shadow: 0 0 20px rgba(102, 126, 234, 0.15);
}
.contact-section .contact-form-wrapper .contact-form .form-group input:hover:not(:focus),
.contact-section .contact-form-wrapper .contact-form .form-group textarea:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
}
.contact-section .contact-form-wrapper .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form-wrapper .contact-form .btn-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00cec9 0%, #667eea 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
          box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}
.contact-section .contact-form-wrapper .contact-form .btn-submit svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.contact-section .contact-form-wrapper .contact-form .btn-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
          box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
}
.contact-section .contact-form-wrapper .contact-form .btn-submit:hover svg {
  -webkit-transform: translateX(4px) translateY(-2px) rotate(-10deg);
          transform: translateX(4px) translateY(-2px) rotate(-10deg);
}
.contact-section .contact-form-wrapper .contact-form .btn-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.contact-section .location-map-wrapper {
  margin-top: 40px;
}
.contact-section .location-map-wrapper .map-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-section .location-map-wrapper .map-container #amap-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
}
.contact-section .location-map-wrapper .map-container #amap-container .amap-logo,
.contact-section .location-map-wrapper .map-container #amap-container .amap-copyright {
  display: none !important;
}
.contact-section .location-map-wrapper .location-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 0 0 8px 0;
}
.contact-section .location-map-wrapper .location-info p strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.contact-section .location-map-wrapper .location-info p:last-child {
  margin-bottom: 0;
}
.contact-section .contact-info-wrapper .contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-info-wrapper .contact-info-card:hover {
  border-color: rgba(102, 126, 234, 0.25);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 32px rgba(102, 126, 234, 0.06);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 32px rgba(102, 126, 234, 0.06);
}
.contact-section .contact-info-wrapper .contact-info-card .info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 28px 0;
  letter-spacing: -0.5px;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item:last-child {
  margin-bottom: 0;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon svg {
  width: 22px;
  height: 22px;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-phone {
  background: linear-gradient(135deg, rgba(0, 206, 201, 0.2), rgba(0, 206, 201, 0.1));
  color: #00cec9;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-phone:hover {
  background: linear-gradient(135deg, #00cec9, #0984e3);
  color: white;
  -webkit-transform: scale(1.1) rotate(-5deg);
          transform: scale(1.1) rotate(-5deg);
  -webkit-box-shadow: 0 8px 20px rgba(0, 206, 201, 0.3);
          box-shadow: 0 8px 20px rgba(0, 206, 201, 0.3);
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-email {
  background: linear-gradient(135deg, rgba(165, 94, 234, 0.2), rgba(165, 94, 234, 0.1));
  color: #a55eea;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-email:hover {
  background: linear-gradient(135deg, #a55eea, #8854d0);
  color: white;
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
  -webkit-box-shadow: 0 8px 20px rgba(165, 94, 234, 0.3);
          box-shadow: 0 8px 20px rgba(165, 94, 234, 0.3);
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-location {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.1));
  color: #00d4aa;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-location:hover {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: white;
  -webkit-transform: scale(1.1) rotate(10deg);
          transform: scale(1.1) rotate(10deg);
  -webkit-box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
          box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-clock {
  background: linear-gradient(135deg, rgba(253, 203, 110, 0.2), rgba(253, 203, 110, 0.1));
  color: #fdcb6e;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-icon.icon-clock:hover {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
  color: #1a1a2e;
  -webkit-transform: scale(1.1) rotate(-10deg);
          transform: scale(1.1) rotate(-10deg);
  -webkit-box-shadow: 0 8px 20px rgba(253, 203, 110, 0.3);
          box-shadow: 0 8px 20px rgba(253, 203, 110, 0.3);
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 3px 0;
}
.contact-section .contact-info-wrapper .contact-info-card .info-item .info-content p:last-child {
  margin-bottom: 0;
}
.contact-section .contact-info-wrapper .location-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section .contact-info-wrapper .location-card:hover {
  border-color: rgba(102, 126, 234, 0.25);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.contact-section .contact-info-wrapper .location-card .location-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}
.contact-section .contact-info-wrapper .location-card .map-placeholder {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-section .contact-info-wrapper .location-card .map-placeholder #amap-container {
  width: 100%;
  border-radius: 16px;
}
.contact-section .contact-info-wrapper .location-card .map-placeholder #amap-container .amap-logo,
.contact-section .contact-info-wrapper .location-card .map-placeholder #amap-container .amap-copyright {
  display: none !important;
}
.contact-section .contact-info-wrapper .location-card .location-details p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 0 0 8px 0;
}
.contact-section .contact-info-wrapper .location-card .location-details p strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.contact-section .contact-info-wrapper .location-card .location-details p:last-child {
  margin-bottom: 0;
}
.contact-section .location-section {
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .contact-section .contact-grid {
    gap: 28px;
  }
  .contact-section .contact-form-wrapper,
  .contact-section .contact-info-card {
    padding: 32px !important;
  }
  .contact-section .location-map-wrapper {
    padding: 32px !important;
  }
}
@media (max-width: 968px) {
  .contact-section {
    padding: 80px 16px !important;
  }
  .contact-section .section-header {
    margin-bottom: 48px !important;
  }
  .contact-section .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .contact-section .contact-form-wrapper .contact-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .contact-section .location-map-wrapper {
    margin-top: 28px !important;
    padding: 24px !important;
  }
  .contact-section .location-map-wrapper .map-container #amap-container {
    height: 300px !important;
  }
}

/* Footer 样式 */
.footer {
  background: linear-gradient(180deg, #0a0a12 0%, #050508 100%);
  border-top: 1px solid rgba(102, 126, 234, 0.15);
  margin-top: 0;
}

.footer-main {
  padding: 80px 24px 60px;
}

.footer .container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

/* 公司品牌信息 */
.footer-brand {
  max-width: 380px;
}

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

.footer-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* 联系方式 */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-item span {
  line-height: 1.5;
}

/* 链接列 */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 1px;
}

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

.footer-list li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-list li a:hover {
  color: #667eea;
  transform: translateX(4px);
}

.footer-list li a::before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #667eea;
  font-size: 0.85rem;
}

.footer-list li a:hover::before {
  opacity: 1;
  left: -14px;
}

/* 底部版权栏 */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #667eea;
}

.separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.icp-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.icp-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.icp-info a:hover {
  color: #667eea;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
  }

  .footer-links:last-child {
    display: none;
  }
}

@media (max-width: 968px) {
  .footer-main {
    padding: 60px 20px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-legal {
    justify-content: center;
  }
}

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

  .footer-desc {
    font-size: 0.88rem;
  }

  .contact-item {
    font-size: 0.85rem;
  }

  .footer-list li a {
    font-size: 0.87rem;
  }
}/*# sourceMappingURL=xin-shu.css.map */