/**
 * JutoNeo - Digital Goods Infrastructure
 * Main Stylesheet v2.0
 */

:root {
  /* 纯净深蓝背景系统 - 参考fintech风格 */
  --bg-primary: #050d1a;
  --bg-secondary: #071222;
  --bg-tertiary: #0c1a2e;
  --bg-card: rgba(12, 26, 46, 0.6);
  --bg-card-solid: #0e1f38;
  --bg-card-hover: rgba(14, 31, 56, 0.8);

  /* 边框系统 */
  --border: rgba(55, 65, 81, 0.5);
  --border-hover: rgba(34, 197, 94, 0.4);
  --border-blue: rgba(59, 130, 246, 0.3);

  /* 文字颜色 */
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;

  /* 强调色 - 亮绿色为主 */
  --accent-green: #22C55E;
  --accent-green-bright: #4ADE80;
  --accent-green-dark: #16A34A;
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-indigo: #6366F1;
  --accent-orange: #F97316;

  /* 渐变 */
  --gradient-green: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  --gradient-blue-cyan: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  --gradient-text: linear-gradient(90deg, #22C55E 0%, #06B6D4 50%, #3B82F6 100%);

  /* 发光效果 */
  --glow-green: 0 0 30px rgba(34, 197, 94, 0.3);
  --glow-blue: 0 0 30px rgba(59, 130, 246, 0.2);

  /* 字体 */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== 动画 ==================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.5); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes dataFlow {
  0% { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}

@keyframes chartGrow {
  from {
    stroke-dasharray: 0 1000;
    opacity: 0;
  }
  to {
    stroke-dasharray: 1000 0;
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.06; }
}

.animate-in {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
}

.animate-slide-in {
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
}

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

/* ==================== Header ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 蓝色转绿色/青色渐变滤镜 */
  filter: hue-rotate(-55deg) saturate(1.3) brightness(1.1);
  transition: filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: hue-rotate(-55deg) saturate(1.6) brightness(1.2);
}

.logo:hover .logo-mark {
  transform: scale(1.08);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-neo {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

nav a:hover { color: var(--text-primary); }

/* 桌面端隐藏汉堡按钮和导航内CTA */
.mobile-menu-btn { display: none !important; }
nav .nav-cta { display: none !important; }

/* 桌面端显示header CTA */
header .desktop-cta { display: inline-flex; }

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

nav a:hover::after { width: 100%; }

/* ==================== 按钮系统 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent-green);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-green-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.btn-ghost {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--accent-green);
}

.btn-ghost:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--accent-green);
}

/* ==================== Hero Section ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: visible;
}

/* 网格背景 */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 4s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 197, 94, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 40%, rgba(59, 130, 246, 0.08), transparent 50%),
    radial-gradient(ellipse 40% 25% at 20% 70%, rgba(6, 182, 212, 0.06), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--accent-green);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: var(--gradient-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

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

.hero-stat svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

/* ==================== Hero Visual - 毛玻璃订单面板 ==================== */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

/* 主毛玻璃面板 */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease-out 0.3s forwards;
  opacity: 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* 面板头部 - macOS风格 */
.glass-header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-dots {
  display: flex;
  gap: 8px;
  margin-right: 16px;
}

.gdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.gdot.red { background: #FF5F57; }
.gdot.yellow { background: #FFBD2E; }
.gdot.green { background: #28CA41; }

.glass-title {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.glass-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-green);
}

/* 统计指标行 */
.glass-metrics {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  background: rgba(34, 197, 94, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.metric-value.success { color: var(--accent-green); }
.metric-value.fast { color: var(--accent-cyan); }

.metric-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

/* 订单列表 */
.glass-orders {
  padding: 8px 0;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.order-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.order-row.processing {
  background: rgba(59, 130, 246, 0.05);
  border-left-color: var(--accent-blue);
}

.order-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.product-icon.steam { background: linear-gradient(135deg, #1b2838, #2a475e); }
.product-icon.netflix { background: linear-gradient(135deg, #e50914, #b20710); }
.product-icon.mobile { background: linear-gradient(135deg, #22C55E, #16A34A); }
.product-icon.game { background: linear-gradient(135deg, #F97316, #EA580C); }

.product-info {
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-id {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.order-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.order-status.delivered {
  color: var(--accent-green);
  background: rgba(34, 197, 94, 0.1);
}

.order-status.delivered svg {
  width: 14px;
  height: 14px;
}

.order-status.pending {
  color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
}

/* 加载动画 spinner */
.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 底部供应商 */
.glass-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.supplier-badges {
  display: flex;
  gap: 6px;
}

.supplier-badge {
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--accent-green);
  font-family: var(--font-mono);
}

.supplier-more {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* 浮动通知卡片 */
.glass-notification {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: float 4s ease-in-out infinite;
}

.glass-notification.top-right {
  top: -15px;
  right: -25px;
  animation-delay: 0s;
}

.glass-notification.bottom-left {
  bottom: 30px;
  left: -35px;
  animation-delay: -2s;
}

.notif-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #000;
  font-weight: 700;
}

.notif-icon.route {
  background: var(--accent-blue);
  color: #fff;
}

.notif-content {
  display: flex;
  flex-direction: column;
}

.notif-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.notif-desc {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ==================== Testimonials Section ==================== */
.testimonials {
  padding: 60px 0;
  position: relative;
  overflow: visible;
  /* 独立板块 - 干净的深蓝色背景 */
  background: #0a1628;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
}


.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* 滑动轨道容器 */
.testimonials-track {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Testimonial Card - 干净深蓝色风格 */
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  /* 干净的深蓝色背景 - 参考fintech风格 */
  background: #0d1f38;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: #102440;
  border-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(34, 197, 94, 0.15);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-top: 16px;
  min-height: 80px;
}

.testimonial-content p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(156, 163, 175, 1);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(22, 163, 74, 0.8));
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(11, 15, 25, 0.8);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.author-title {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* Navigation Arrows */
.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.testimonial-nav svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.testimonial-nav:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.testimonial-nav:hover svg {
  color: var(--accent-green);
}

.testimonial-nav:active svg {
  transform: scale(0.9);
}

.testimonial-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Dots Navigation */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.testimonials-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-dots .dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--accent-green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.testimonials-dots .dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.2);
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

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

  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    padding: 24px;
    margin: 0 10px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonials-wrapper {
    padding: 0;
  }

  .testimonials-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 20px;
  }

  .testimonials-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: center;
  }

  .testimonials-slider {
    transition: none;
    padding: 10px 0;
  }

  .testimonials-dots {
    margin-top: 24px;
  }
}

/* ==================== Section通用样式 ==================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* 标题渐变效果 - 蓝色到绿色/青色渐变 */
.title-gradient {
  background: linear-gradient(90deg, #3B82F6 0%, #22C55E 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ==================== Services Section ==================== */
.services {
  background: var(--bg-secondary);
  position: relative;
  padding: 80px 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.service-block:last-child { border-bottom: none; }

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-content {
  padding: 20px 0;
}

/* 服务标题行 - 序号左侧，标题+副标题右侧垂直排列 */
.service-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gradient-green);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.service-title-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-content h3 {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

.service-tagline {
  font-size: 0.9375rem;
  color: var(--accent-cyan);
  font-weight: 500;
  margin: 0;
}

/* 独立副标题（在标题行外部时） */
.service-content > .service-tagline {
  margin-bottom: 18px;
}

.service-content > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding: 8px 0;
}

.feature-item .check {
  width: 20px;
  height: 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 0.625rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s;
  padding: 10px 0;
}

.service-link:hover {
  gap: 14px;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* ==================== Service Visual面板 ==================== */
/* ==================== 服务配图 - 统一毛玻璃风格 ==================== */
.service-visual {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 0;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-visual:hover {
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(34, 197, 94, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* 服务配图使用 Hero 相同的毛玻璃头部 */
.service-visual.glass-visual .glass-header {
  padding: 16px 20px;
}

.service-visual.glass-visual .glass-metrics {
  padding: 16px 20px;
  gap: 16px;
}

.service-visual.glass-visual .glass-orders {
  padding: 0 20px 16px;
}

.service-visual.glass-visual .order-row {
  padding: 12px 14px;
}

.service-visual.glass-visual .glass-footer {
  padding: 14px 20px;
}

.service-visual.glass-visual .supplier-badge {
  font-size: 0.6875rem;
  padding: 5px 10px;
}

.service-visual.glass-visual .supplier-badge.online {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--accent-green);
}

.service-visual.glass-visual .supplier-badge.warning {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: var(--accent-orange);
}

/* ==================== Storefront Preview 样式 ==================== */
.store-preview {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-product {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.store-product-image {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.store-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.store-product-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.store-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.store-product-price {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-green);
}

.store-stock {
  font-size: 0.6875rem;
  color: var(--accent-green);
  padding: 4px 8px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 6px;
}

.store-checkout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-row {
  display: flex;
  gap: 12px;
}

.checkout-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-field.small {
  flex: 0 0 70px;
}

.field-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icon {
  font-size: 1rem;
}

.store-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-buy-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--gradient-green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.store-buy-btn span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
}

.store-buy-btn .btn-price {
  font-family: var(--font-mono);
}

.store-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.delivery-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.delivery-indicator .indicator-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ==================== API Monitor 样式 ==================== */
.api-monitor {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.api-connections {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.api-endpoint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s;
}

.api-endpoint:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.endpoint-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.endpoint-status.online {
  background: var(--accent-green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.endpoint-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.endpoint-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.endpoint-url {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.endpoint-latency {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  padding: 4px 10px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 6px;
}

.api-logs {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.log-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.log-count {
  color: var(--accent-green);
  font-size: 0.6875rem;
}

.log-entries {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-entry {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
}

.log-entry.success {
  background: rgba(34, 197, 94, 0.08);
}

.log-time {
  color: var(--text-muted);
  flex-shrink: 0;
}

.log-msg {
  color: var(--text-secondary);
}

.log-entry.success .log-msg {
  color: var(--accent-green);
}

/* ==================== IDE Panel 样式 ==================== */
.ide-panel {
  display: flex;
  height: 200px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ide-sidebar {
  width: 140px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.sidebar-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.file-tree {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-item {
  font-size: 0.6875rem;
  color: var(--text-muted);
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.file-item.active {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-green);
}

.file-item.folder {
  color: var(--text-secondary);
}

.ide-editor {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.editor-tabs {
  display: flex;
  gap: 2px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-tabs .tab {
  padding: 10px 14px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

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

.editor-tabs .tab.active {
  color: var(--text-primary);
  border-color: var(--accent-green);
  background: rgba(255, 255, 255, 0.02);
}

.editor-code {
  flex: 1;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.8;
  overflow: hidden;
}

.code-line {
  display: flex;
  white-space: nowrap;
}

.code-line .ln {
  width: 24px;
  color: var(--text-muted);
  opacity: 0.4;
  user-select: none;
  flex-shrink: 0;
}

.code-line .cm { color: #6A737D; }
.code-line .kw { color: #FF7B72; }
.code-line .fn { color: #D2A8FF; }
.code-line .vr { color: #79C0FF; }
.code-line .st { color: #A5D6FF; }

.ide-terminal {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-status {
  color: var(--accent-green);
  font-size: 0.625rem;
}

.terminal-output {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.8;
}

.term-line {
  color: var(--text-muted);
}

.term-line.success {
  color: var(--accent-green);
}

.term-prompt {
  color: var(--accent-cyan);
  margin-right: 8px;
}

/* ============================================
   Capabilities Section - 干净深蓝背景（fintech风格）
   ============================================ */
.capabilities {
  background: var(--bg-tertiary);
  position: relative;
}

.capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

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

.cap-card {
  background: rgba(14, 31, 56, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.cap-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(14, 31, 56, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cap-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-green);
  stroke-width: 1.8;
}

.cap-icon.accent-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
  border-color: rgba(6, 182, 212, 0.2);
}
.cap-icon.accent-cyan svg { stroke: var(--accent-cyan); }

.cap-icon.accent-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  border-color: rgba(59, 130, 246, 0.2);
}
.cap-icon.accent-blue svg { stroke: var(--accent-blue); }

.cap-icon.accent-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border-color: rgba(139, 92, 246, 0.2);
}
.cap-icon.accent-purple svg { stroke: #8b5cf6; }

.cap-icon.accent-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border-color: rgba(249, 115, 22, 0.2);
}
.cap-icon.accent-orange svg { stroke: var(--accent-orange); }

.cap-icon.accent-indigo {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
  border-color: rgba(99, 102, 241, 0.2);
}
.cap-icon.accent-indigo svg { stroke: var(--accent-indigo); }

.cap-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cap-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== About Section - Global Map Layout ==================== */
.about-global {
  background: linear-gradient(180deg, #0f2847 0%, #0a1e3a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}

.about-global::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

/* 顶部标题区域 */
.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.about-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-header .gradient-text {
  background: linear-gradient(90deg, #3B82F6 0%, #22C55E 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-header .btn-primary {
  background: var(--accent-green);
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-header .btn-primary:hover {
  background: var(--accent-green-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}

/* 世界地图容器 - 全宽简洁版，透明背景 */
.world-map-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

/* 香港位置标记 */
.map-marker {
  position: absolute;
  top: 38%;
  left: 76%;
  z-index: 10;
}

.map-marker-dot {
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px var(--accent-green);
}

.map-marker-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: marker-pulse 2s ease-out infinite;
}

.map-marker-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: marker-pulse 2s ease-out infinite 0.5s;
}

.map-marker-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 30, 58, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

@keyframes marker-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* 世界地图图片 - 深蓝背景下的清晰线条风格 */
.world-map-img {
  width: 100%;
  max-width: 1400px;
  height: auto;
  opacity: 0.9;
  animation: map-breathe 8s ease-in-out infinite;
}

@keyframes map-breathe {
  0%, 100% {
    filter: brightness(0.9) drop-shadow(0 0 0 transparent);
    opacity: 0.7;
  }
  50% {
    filter: brightness(1.4) drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    opacity: 1;
  }
}


/* 底部统计数据条 - 精致卡片设计 */
.about-stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  background: transparent;
}

.about-stats-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 39, 68, 0.9) 0%, rgba(10, 29, 53, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 24px;
  padding: 48px 64px;
  width: 100%;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.about-stats-bar-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.stat-icon {
  width: 32px;
  height: 32px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.stat-icon:hover {
  background: rgba(34, 197, 94, 0.15);
  transform: translateY(-2px);
}

.stat-icon-more {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 16px;
  align-self: stretch;
}

/* ==================== Contact Section ==================== */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form {
  background: linear-gradient(135deg, #0f2744 0%, #0a1d35 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
}

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

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.3s;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

/* 联系信息面板 - 整合设计 */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* 主联系卡片 */
.contact-main-card {
  background: linear-gradient(135deg, #0f2744 0%, #0a1d35 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.contact-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-green);
}

.contact-card-title h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-card-title p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 联系详情列表 */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-cyan);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* WhatsApp联系CTA */
a.contact-cta-mini {
  text-decoration: none;
}

.contact-cta-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0f2744 0%, #0a1d35 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-cta-mini:hover {
  border-color: var(--accent-green);
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-2px);
}

.cta-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-mini-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-green);
}

.cta-mini-icon.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
  border-color: rgba(37, 211, 102, 0.3);
}

.cta-mini-icon.whatsapp svg {
  fill: #25D366;
  stroke: none;
}

.cta-mini-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-mini-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cta-mini-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.cta-mini-arrow {
  font-size: 1.25rem;
  color: var(--accent-green);
  transition: transform 0.2s;
}

.contact-cta-mini:hover .cta-mini-arrow {
  transform: translateX(4px);
}


/* ==================== CTA Section ==================== */
.cta {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #0f2744 0%, #0a1d35 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-box .gradient-text {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 1.0625rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-arrow {
  margin-left: 8px;
  transition: transform 0.2s;
}

.btn-lg:hover .btn-arrow {
  transform: translateX(4px);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.trust-check {
  color: var(--accent-green);
  font-weight: 600;
}

/* ==================== Footer ==================== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

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

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
  .hero-grid,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-block:nth-child(even) { direction: ltr; }

  .cap-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .glass-notification { display: none; }

  .about-header h2 {
    font-size: 2.5rem;
  }

  .about-stats-bar {
    padding: 0 24px 60px;
  }

  .about-stats-bar-inner {
    padding: 36px 32px;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  /* 移动端显示/隐藏控制 */
  header .desktop-cta { display: none !important; }
  nav .nav-cta { display: inline-flex !important; }

  /* 移动端Logo适配 - 固定尺寸防止溢出 */
  .logo {
    flex-shrink: 0;
  }

  .logo-mark {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    max-width: 32px;
  }

  .logo-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  /* 汉堡菜单按钮 */
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

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

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

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

  /* 移动端导航菜单 - 全屏覆盖 */
  nav#mainNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050d1a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
  }

  nav#mainNav.active {
    display: flex !important;
  }

  nav#mainNav a {
    font-size: 1rem;
    padding: 14px 24px;
    color: #e2e8f0;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  nav#mainNav a:hover {
    color: var(--accent-green);
  }

  nav#mainNav .btn-primary {
    margin-top: 16px;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  section { padding: 60px 0; }

  .hero { min-height: auto; padding: 100px 0 40px; }

  .hero h1 { font-size: 2rem; }

  .hero-stats { flex-direction: column; gap: 12px; }

  .service-features { grid-template-columns: 1fr; }

  /* Service部分移动端适配 - 缩小序号和标题 */
  .service-title-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  .service-num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .service-content h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .service-tagline {
    font-size: 0.8rem;
  }

  .cap-grid { grid-template-columns: 1fr; }

  /* Footer移动端 - 单列布局，左对齐 */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

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

  .cta-box { padding: 40px 24px; }

  .cta-buttons { flex-direction: column; }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-box h2 {
    font-size: 1.75rem;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }

  .glass-metrics { flex-wrap: wrap; gap: 16px; padding: 16px; }

  .metric-divider { display: none; }

  .metric-item { flex: 1 1 30%; min-width: 80px; }

  .order-row { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }

  .order-status { margin-left: auto; }

  .product-name { font-size: 0.8125rem; }

  /* About Section Mobile */
  .about-global {
    padding: 60px 0 0;
  }

  .about-header {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .about-header h2 {
    font-size: 1.75rem;
  }

  .about-header p {
    font-size: 0.9375rem;
  }

  .world-map-container {
    padding: 20px 0;
  }

  .world-map-img {
    width: 100%;
    max-width: none;
  }

  .about-stats-bar {
    padding: 0 16px 40px;
  }

  .about-stats-bar-inner {
    flex-wrap: wrap;
    padding: 28px 20px;
    gap: 24px;
    border-radius: 16px;
  }

  .stat-item {
    flex: 1 1 45%;
    padding: 0 8px;
    max-width: none;
  }

  .stat-divider {
    display: none;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8125rem;
    margin-bottom: 8px;
  }

  .stat-icon {
    width: 24px;
    height: 24px;
    font-size: 0.625rem;
  }

  .stat-icon-more {
    width: 24px;
    height: 24px;
    font-size: 0.625rem;
  }

  /* Contact Section Mobile */
  .contact-main-card {
    padding: 24px;
    border-radius: 16px;
  }

  .contact-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .contact-icon-circle {
    width: 48px;
    height: 48px;
  }

  .contact-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
  }

  .contact-cta-mini {
    padding: 16px 20px;
  }

  .cta-mini-icon {
    width: 44px;
    height: 44px;
  }
}
