/* ===== 语言切换器 Lang Switcher ===== */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 8px;
  z-index: 1100;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}

.lang-current:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
  color: var(--primary);
}

.lang-flag { font-size: 16px; line-height: 1; }
.lang-label { font-size: 12px; font-weight: 500; }
.lang-arrow {
  transition: transform 0.2s;
  opacity: 0.7;
  flex-shrink: 0;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0d1628;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 6px;
  min-width: 150px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(10px);
}

.lang-dropdown.open {
  display: flex;
  animation: langDropIn 0.15s ease;
}

@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 7px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  font-family: inherit;
  width: 100%;
}

.lang-option:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.lang-option.active {
  background: rgba(0, 212, 255, 0.15);
  color: var(--primary);
  font-weight: 600;
}

.lang-opt-flag { font-size: 16px; flex-shrink: 0; }
.lang-opt-label { white-space: nowrap; }

/* RTL 支持 */
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .nav-container {
  flex-direction: row-reverse;
}

body.rtl .lang-dropdown {
  right: auto;
  left: 0;
}

body.rtl .logo-text {
  text-align: right;
}

/* 移动端语言切换器 */
@media (max-width: 768px) {
  .lang-current .lang-label {
    display: none;
  }
  .lang-current {
    padding: 6px 8px;
  }
  .lang-switcher {
    margin-right: 4px;
  }
}

/* ===== 基础重置 & 变量 ===== */
:root {
  --primary: #00d4ff;
  --primary-dark: #0066ff;
  --accent: #00ffb3;
  --bg: #060b18;
  --bg-card: #0d1628;
  --bg-card2: #111a2e;
  --border: rgba(0, 212, 255, 0.15);
  --border-hover: rgba(0, 212, 255, 0.4);
  --text: #e0e8f0;
  --text-muted: #7a9bb5;
  --header-h: 72px;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --glow: 0 0 24px rgba(0, 212, 255, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 渐变文字 ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Section 通用 ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light .section-title,
.section-header.light .section-desc { color: #fff; }
.section-header.light .section-desc { color: rgba(255,255,255,0.65); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { display: flex; align-items: center; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-cn {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.logo-en {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 6px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: all 0.25s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
}

.btn-nav {
  flex-shrink: 0;
  padding: 8px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0, 100, 255, 0.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 100, 255, 0.45);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#circuitCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(0, 255, 179, 0.08);
  border: 1px solid rgba(0, 255, 179, 0.25);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
  text-shadow: 0 0 60px rgba(0,100,255,0.3);
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeInUp 0.7s ease 0.2s both;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 100, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 100, 255, 0.5);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.1); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(0, 212, 255, 0.45);
  color: var(--primary);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 640px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px;
  height: 30px;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 3px;
  position: relative;
  animation: scrollBounce 2s ease infinite;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--primary);
  border-radius: 1px;
  animation: scrollDot 2s ease infinite;
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
  background: var(--bg-card2);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.service-features li {
  font-size: 12px;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
}

.service-arrow {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 18px;
  color: var(--primary);
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-8px);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Capabilities ===== */
.capabilities {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cap-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060b18 0%, #0a1628 50%, #060b18 100%);
  z-index: 0;
}
.cap-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}
.cap-bg::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.08) 0%, transparent 70%);
}

.capabilities .container { position: relative; z-index: 1; }

.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pcb-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: #070d1c;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}

.pcb-layer {
  position: absolute;
  border-radius: 4px;
}
.layer-1 {
  inset: 20px;
  background: linear-gradient(135deg, #0d1e3a 0%, #0a1628 100%);
  border: 1px solid rgba(0, 212, 255, 0.12);
}
.layer-2 {
  inset: 35px;
  background: linear-gradient(135deg, #0f2240 0%, #0c1d35 100%);
  border: 1px solid rgba(0, 212, 255, 0.08);
}
.layer-3 {
  inset: 50px;
  background: linear-gradient(135deg, #112548 0%, #0e2040 100%);
  border: 1px solid rgba(0, 212, 255, 0.06);
}

.pcb-dots {
  position: absolute;
  inset: 0;
}
.pcb-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.pcb-dot.active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: dotPulse 2s ease infinite;
}

.pcb-lines {
  position: absolute;
  inset: 0;
}

.pcb-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #0d2550, #0a1e40);
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.pcb-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  white-space: nowrap;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cap-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s;
}
.cap-item:hover {
  border-color: var(--border-hover);
  background: rgba(0, 212, 255, 0.04);
  transform: translateX(4px);
}

.cap-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cap-content { flex: 1; }
.cap-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.cap-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.cap-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.cap-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform-origin: left;
  animation: barGrow 1.5s ease 0.5s both;
}

/* ===== Industries ===== */
.industries {
  padding: 100px 0;
  background: var(--bg);
}

.industry-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 140px;
  flex: 1;
  max-width: 180px;
  transition: all 0.35s;
  cursor: default;
}
.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow);
  background: var(--bg-card2);
}

.ind-icon {
  width: 52px;
  height: 52px;
}
.ind-icon svg { width: 100%; height: 100%; }

.industry-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #070d1c 0%, #0b1526 100%);
  z-index: 0;
}
.about-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,255,179,0.06) 0%, transparent 70%);
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-content .section-tag { margin-bottom: 14px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-intro {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.value-icon { font-size: 20px; }
.value-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.value-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.cert-card {
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}
.cert-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.cert-icon { font-size: 28px; margin-bottom: 8px; }
.cert-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.cert-desc { font-size: 12px; color: var(--text-muted); }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0.4;
}
.tl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -28px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg);
  box-shadow: 0 0 8px var(--primary);
}
.tl-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 40px;
}
.tl-event {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.qr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.qr-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.qr-code {
  display: inline-block;
  margin-bottom: 16px;
}
.qr-inner {
  position: relative;
  padding: 12px;
  background: #0a0f1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-block;
}
.qr-tip {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 24, 0.7);
  color: var(--primary);
  font-size: 11px;
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  backdrop-filter: blur(2px);
}
.qr-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-wechat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #07c160, #04a050);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(7, 193, 96, 0.3);
}
.btn-wechat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 193, 96, 0.45);
}

.contact-alt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.alt-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
}
.alt-item svg { flex-shrink: 0; color: var(--primary); }
.alt-item strong { color: var(--text); }

/* ===== Form ===== */
.form-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.form-group label span { color: #ff5555; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  transition: all 0.25s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #0d1628; color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(0, 100, 255, 0.3);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 100, 255, 0.45);
}

/* ===== Footer ===== */
.footer {
  background: #040810;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 60px 24px 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-domain {
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 1px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
}
.footer-social { margin-top: 16px; }
.social-btn {
  display: inline-block;
  padding: 7px 18px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
}
.wechat-btn {
  background: rgba(7, 193, 96, 0.15);
  border: 1px solid rgba(7, 193, 96, 0.35);
  color: #07c160;
}
.wechat-btn:hover { background: rgba(7, 193, 96, 0.25); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--primary); }

/* ===== Back to Top ===== */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 10px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  z-index: 999;
  backdrop-filter: blur(8px);
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* ===== Why Choose Us ===== */
.why-us {
  padding: 100px 0;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.35s;
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(0,255,179,0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes scrollDot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--primary); }
  50% { box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(0,212,255,0.3); }
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ===== Intersection Observer 入场动画 ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(6, 11, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .stat-divider { display: none; }
  .stat-item { min-width: calc(50% - 8px); }

  .services-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .about-values { grid-template-columns: 1fr; }
  .cert-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .hero-title { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .industry-grid { gap: 12px; }
  .industry-card { min-width: 120px; padding: 20px 16px; }
}
