/* ============================================
   金虫科技官网 - 全局样式
   蜂巢体系 | 温暖治愈风 | 2026
   ============================================ */

:root {
  --primary: #E8453C;
  --primary-light: #FF6B5B;
  --primary-dark: #C73A32;
  --coral: #FF6B5B;
  --warm-bg: #FFF9F5;
  --dark: #1A1A2E;
  --text-primary: #2D2D2D;
  --text-secondary: #666666;
  --text-light: #999999;
  --border: #EEDDDD;
  --card-shadow: 0 4px 24px rgba(232, 69, 60, 0.08);
  --card-hover-shadow: 0 8px 40px rgba(232, 69, 60, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

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

/* ========== 导航栏 ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,69,60,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.35rem; font-weight: 700; color: var(--dark); text-decoration: none !important;
}
.navbar-brand:hover { color: var(--dark) !important; }
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.05rem; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
  position: relative; padding: 4px 0; text-decoration: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--primary); border-radius: 1px; transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 1px; }

/* ========== Hero 区域 ========== */
.hero {
  min-height: 85vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-home { background: linear-gradient(165deg, #FFF9F5 0%, #FFF 50%, #FFF5F0 100%); }
.hero-product { background: linear-gradient(165deg, #FFF9F5 0%, #FFF 100%); min-height: 78vh; }
/* 产品页 Hero 双栏布局（左文字 + 右手机） */
.hero-product .container {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-product .hero-content {
  max-width: 560px;
  flex-shrink: 0;
}
.hero-page { background: linear-gradient(165deg, #FFF9F5 0%, #FFF 70%); min-height: 55vh; }

.hero-content { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--dark); letter-spacing: -0.02em; margin-bottom: 24px;
}
.text-highlight {
  background: linear-gradient(135deg, var(--primary), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1.18rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 36px; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 20px; font-size: 0.9rem; color: var(--text-light); }

.product-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(232,69,60,0.08); color: var(--primary);
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 0.02em;
}

/* 手机模型 - 产品页用flex流式布局 */
.phone-mockup {
  flex-shrink: 0;
  position: relative;
}
.phone-frame {
  width: 280px; height: 560px;
  background: #1A1A2E; border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 0 0 2px rgba(255,255,255,0.1) inset;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden;
  background: #FFF; display: flex; flex-direction: column;
}

/* 按钮样式 */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-decoration: none;
  gap: 6px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,69,60,0.35); color: white; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-ghost {
  background: transparent; color: var(--text-secondary); border-color: transparent;
  font-weight: 600; padding: 12px 20px;
}
.btn-ghost:hover { color: var(--primary); transform: translateX(4px); }
.btn-outline-light {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; transform: translateY(-2px); }

/* ========== Section 通用 ========== */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--dark); text-align: center; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.08rem; color: var(--text-secondary);
  text-align: center; margin-bottom: 56px; max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ========== 产品卡片（首页）========== */
.products-section { padding: 96px 0; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 40px 32px;
  text-align: center; transition: var(--transition);
  text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--coral));
  opacity: 0; transition: var(--transition);
}
.product-card:hover {
  border-color: transparent; box-shadow: var(--card-hover-shadow);
  transform: translateY(-6px); color: inherit;
}
.product-card:hover::before { opacity: 1; }

.product-icon {
  width: 72px; height: 72px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 22px;
}
.product-icon-lifeos { background: linear-gradient(135deg, #EDE7F6, #D1C4E9); }
.product-icon-talent { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.product-icon-carelink { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); }

.product-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.product-desc { font-size: 0.98rem; color: var(--text-secondary); margin-bottom: 14px; }
.product-detail { font-size: 0.86rem; color: var(--text-light); margin-bottom: 20px; }
.product-link {
  font-size: 0.92rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card:hover .product-link { gap: 10px; }

/* ========== 数据统计 ========== */
.stats-section {
  background: var(--dark); padding: 64px 0; color: white;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-number {
  display: block; font-size: 2.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.65); }

/* ========== 首页理念引用 ========== */
.philosophy-home { padding: 80px 0; text-align: center; }
.home-quote {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--dark);
  border-left: 4px solid var(--primary); padding-left: 28px;
  text-align: left; max-width: 520px; margin: 0 auto 20px;
  line-height: 1.5;
}
.home-quote-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto; }

/* ========== CTA 区域 ========== */
.cta-section { padding: 88px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
  border-radius: var(--radius-lg); padding: 68px 48px; text-align: center;
  color: white; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,69,60,0.15), transparent 70%);
}
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p { font-size: 1.08rem; opacity: 0.75; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-carelink { padding: 88px 0; }
.cta-carelink .cta-box { background: linear-gradient(135deg, #E8453C, #FF6B5B); }

/* ========== 产品详情页通用 ========== */
.product-intro { padding: 72px 0 56px; }
.product-intro h2 { font-size: 1.8rem; font-weight: 700; text-align: center; color: var(--dark); margin-bottom: 24px; }
.intro-text { font-size: 1.08rem; color: var(--text-secondary); max-width: 720px; margin: 0 auto; line-height: 1.8; text-align: center; }

.pain-points { padding: 56px 0; background: var(--warm-bg); }
.pain-points h2 { font-size: 1.7rem; font-weight: 700; text-align: center; color: var(--dark); margin-bottom: 36px; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.pain-card {
  background: white; border-radius: var(--radius-sm);
  padding: 24px 18px; text-align: center;
  border: 1px solid rgba(232,69,60,0.06);
}
.pain-emoji { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.pain-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }
.pain-solution { text-align: center; }
.pain-solution p { font-size: 1.15rem; font-weight: 700; color: var(--primary); }

.features-section { padding: 80px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px 24px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* 高亮区块 */
.highlight-section { padding: 80px 0; background: var(--warm-bg); }
.highlight-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.highlight-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.highlight-text p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.75; }
.principle-list { list-style: none; margin: 18px 0 20px; }
.principle-list li { font-size: 1rem; color: var(--text-primary); padding: 6px 0; font-weight: 500; }

.highlight-visual { display: flex; justify-content: center; }
.layer-cards { display: flex; flex-direction: column; gap: 16px; width: 280px; }
.layer-card {
  padding: 24px 28px; border-radius: var(--radius-md);
  text-align: center; transition: var(--transition);
}
.layer-fun { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.layer-value { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.layer-emotion { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); }
.layer-card:hover { transform: scale(1.03); }
.layer-emoji { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.layer-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.layer-card p { font-size: 0.87rem; color: var(--text-secondary); }

/* 使用流程 */
.how-to-use { padding: 72px 0; }
.steps-horizontal {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 44px;
}
.step-item {
  text-align: center; flex: 1; max-width: 260px;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.step-arrow { font-size: 1.6rem; color: var(--coral); font-weight: 300; }

/* 牵挂流程 - 两阶段布局 */
.flow-phase { margin-top: 36px; }
.phase-title {
  font-size: 1.15rem; font-weight: 700;
  color: #333; text-align: center; margin-bottom: 28px;
}
.phase-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; font-size: 0.78rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px;
  margin-right: 10px; vertical-align: middle;
}
.phase-tag-daily {
  background: linear-gradient(135deg, #42A5F5, #64B5F6);
}

/* 四步初始化网格 */
.steps-grid {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px;
}
.steps-grid .step-item {
  text-align: center; flex: 1; max-width: 200px;
}
.steps-grid .step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.steps-grid .step-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.steps-grid .step-item p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* 日常三步紧凑版 */
.steps-compact .step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #42A5F5, #64B5F6);
  font-size: 0.95rem;
}
.steps-compact .step-item h3 { font-size: 0.95rem; }
.steps-compact .step-item p { font-size: 0.82rem; }

/* 使用场景 */
.product-scenes { padding: 72px 0; background: var(--warm-bg); }
.scenes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px;
}
.scene-card {
  background: white; border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(232,69,60,0.06);
  transition: var(--transition);
}
.scene-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.scene-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.scene-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.scene-card p { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.6; }

/* 产品理念 */
.philosophy-section { padding: 72px 0; text-align: center; }
.philosophy-content { max-width: 640px; margin: 0 auto; }
.philosophy-quote {
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
  border: none; padding: 0; line-height: 1.5; margin-bottom: 18px;
}
.philosophy-quote::before { content: '"'; }
.philosophy-quote::after { content: '"'; }
.philosophy-desc { font-size: 1.03rem; color: var(--text-secondary); line-height: 1.8; }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 44px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px; font-weight: 600; font-size: 1rem;
  color: var(--dark); cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  background: white; transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); font-weight: 300; }
.faq-item details[open] summary { background: var(--warm-bg); border-bottom: 1px solid var(--border); }
.faq-item details[open] summary::after { content: '−'; }
.faq-item details > p { padding: 18px 24px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }

/* ========== 关于页面 ========== */
.about-intro { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-text h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.about-text p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-visual { position: relative; }

.team-section { padding: 80px 0; background: var(--warm-bg); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.team-card {
  background: white; border-radius: var(--radius-md);
  padding: 40px 28px; text-align: center;
  border: 1px solid rgba(232,69,60,0.06);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.team-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.team-role { font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 14px; }
.team-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

.hive-illustration {
  width: 300px; height: 300px; margin: 0 auto;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hive-center {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: white; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  line-height: 1.3; z-index: 2; position: relative;
}
.hive-node {
  position: absolute; padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; white-space: nowrap;
}
.hive-lifeos { top: 20px; left: 50%; transform: translateX(-50%); background: #EDE7F6; color: #512DA8; }
.hive-talent { top: 50%; right: 0; transform: translateY(-50%); background: #E8F5E9; color: #2E7D32; }
.hive-carelink { bottom: 20px; left: 50%; transform: translateX(-50%); background: #FFEBEE; color: #C62828; }
.hive-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }

.values-section { padding: 72px 0; background: var(--warm-bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.value-card {
  background: white; border-radius: var(--radius-md);
  padding: 36px 28px; text-align: center;
  border: 1px solid rgba(232,69,60,0.06);
}
.value-number { font-size: 2.4rem; font-weight: 900; color: var(--primary); opacity: 0.3; margin-bottom: 10px; }
.value-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }

.timeline-section { padding: 80px 0; }
.timeline { max-width: 640px; margin: 44px auto 0; position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--primary); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-date { font-size: 0.84rem; font-weight: 700; color: var(--primary); letter-spacing: 0.04em; }
.timeline-content h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-top: 4px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); margin-top: 6px; line-height: 1.65; }

.contact-section { padding: 72px 0; background: var(--warm-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.contact-card {
  background: white; border-radius: var(--radius-md);
  padding: 36px; border: 1px solid rgba(232,69,60,0.06);
}
.contact-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.contact-card p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.65; }
.contact-detail { font-size: 1.05rem !important; font-weight: 600; color: var(--primary) !important; margin: 8px 0; }

/* ========== Footer ========== */
.site-footer { background: var(--dark); color: white; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-top: 14px; line-height: 1.65; }
.footer-brand .navbar-brand { color: white; margin-bottom: 8px; }
.footer-links h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.83rem; }

/* ========== 动画 ========== */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ========== 牵挂小程序 UI 模拟（按实际登录页截图还原） ========== */
.carelink-real-screen {
  background: linear-gradient(180deg, #FFF5F3 0%, #FFF 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  position: relative;
}

/* 微信状态栏 */
.cls-status-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 12px 2px;
  background: #E8453C;
  color: white;
  font-size: 0.55rem;
  font-weight: 600;
  height: 22px;
}
.cls-status-dots { letter-spacing: 1px; opacity: 0.7; }
.cls-status-time { margin-left: auto; margin-right: 6px; }
.cls-status-batt-icon {
  display: inline-block; width: 14px; height: 7px;
  border: 1px solid white; border-radius: 2px;
  position: relative; vertical-align: middle;
}
.cls-status-batt-icon::after {
  content:''; position:absolute; right:-2.5px; top:1.5px;
  width:2px; height:3px; background:white; border-radius:0 0 1px 1px;
}

/* 导航栏 */
.cls-navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  background: #E8453C;
  color: white;
}
.cls-nav-back {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.cls-nav-title {
  font-size: 1rem; font-weight: 700; letter-spacing: 4px;
}
.cls-nav-menu { font-size: 0.9rem; letter-spacing: 2px; opacity: 0.9; }

/* 主内容区 */
.cls-body {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 28px 24px 16px;
}

/* Logo 圆 */
.cls-logo-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #FF6B5B, #E8453C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(232,69,60,0.3);
  margin-bottom: 18px;
}
.cls-leaf-icon { font-size: 1.8rem; }

/* 标题 */
.cls-main-title {
  font-size: 1.65rem; font-weight: 800;
  color: #E8453C; letter-spacing: 10px; margin: 0 0 6px;
}
.cls-subtitle {
  font-size: 0.78rem; color: #999;
  margin: 0 0 28px; letter-spacing: 1px;
}

/* 功能列表 */
.cls-feature-list {
  width: 100%;
  display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 28px;
}
.cls-feat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.cls-feat-icon { font-size: 1.05rem; }
.cls-feat-text {
  font-size: 0.82rem; color: #444; font-weight: 500;
}

/* 登录按钮 */
.cls-login-btn {
  width: 100%; max-width: 260px;
  padding: 13px 0;
  background: linear-gradient(135deg, #FFABA8, #FF8A83);
  color: white; border: none; border-radius: 28px;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232,69,60,0.2);
  margin-bottom: 14px;
}

/* 协议勾选 */
.cls-agreement {
  display: flex; align-items: flex-start; gap: 6px;
  max-width: 280px;
}
.cls-checkbox {
  width: 14px; height: 14px;
  border: 1.5px solid #CCC;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cls-agree-text {
  font-size: 0.58rem; color: #BBB; line-height: 1.4;
}
.cls-agree-text a { color: #E8453C; }

/* ========== Life-OS 真实界面模拟（按实际截图还原） ========== */
.lifeos-real-screen {
  background: #F5F3FF;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  position: relative;
}

/* 标题栏 */
.los-title-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #7C5CFC;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}
.los-title-controls {
  display: flex; gap: 6px;
  align-items: center;
  opacity: 0.8;
}
.los-dot { font-size: 0.5rem; letter-spacing: 2px; }
.los-dash { font-size: 0.7rem; }
.los-circle { font-size: 0.6rem; }

/* 问候区 */
.los-greet {
  padding: 14px 16px 8px;
  background: linear-gradient(180deg, #7C5CFC 0%, #9B82F5 100%);
  color: white;
}
.los-greet-hi {
  display: block; font-size: 0.78rem;
  opacity: 0.9; margin-bottom: 2px;
}
.los-greet-name {
  font-size: 1.35rem; font-weight: 800;
  margin: 2px 0 4px; line-height: 1.2;
}
.los-greet-sub {
  font-size: 0.68rem;
  opacity: 0.75; margin: 0;
}

/* 关于区块 */
.los-about-block {
  padding: 12px 14px 10px;
  background: #F5F3FF;
}
.los-about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF9A56, #FF7043);
  color: white;
  font-size: 0.62rem; font-weight: 700;
  padding: 3px 10px; border-radius: 8px;
  margin-bottom: 6px;
}
.los-about-title {
  font-size: 0.78rem; font-weight: 700;
  color: #1A1A2E; margin: 4px 0 4px;
  line-height: 1.4;
}
.los-about-text {
  font-size: 0.62rem; color: #666;
  line-height: 1.55; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 三大标签 pill */
.los-tag-pills {
  display: flex; gap: 6px;
  padding: 6px 14px 10px;
  background: #F5F3FF;
  flex-wrap: wrap;
}
.los-pill {
  display: inline-flex; align-items: center; gap: 3px;
  background: #FCE4EC;
  color: #AD1457;
  font-size: 0.6rem; font-weight: 600;
  padding: 4px 9px; border-radius: 10px;
  border: 1px solid rgba(233,30,99,0.1);
}
.lp-icon { font-size: 0.65rem; }

/* 选择探索模块 */
.los-modules-section {
  padding: 4px 12px 8px;
  background: #F5F3FF;
  flex: 1;
}
.los-modules-header {
  font-size: 0.72rem; font-weight: 700;
  color: #333; margin-bottom: 6px;
  padding-left: 2px;
}
.los-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.los-mod-card {
  background: white;
  border-radius: 11px;
  padding: 10px 11px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}
.los-mod-wide {
  grid-column: 1 / -1;
}
.lmc-top {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.lmc-icon { font-size: 1.15rem; }
.lmc-status {
  font-size: 0.52rem; font-weight: 700;
  padding: 1px 7px; border-radius: 6px;
  display: flex; align-items: center; gap: 2px;
}
.lmc-restart {
  background: #E8F5E9; color: #2E7D32;
  border: 1px solid rgba(46,125,50,0.15);
}
.lmc-deep {
  background: #E3F2FD; color: #1565C0;
  border: 1px solid rgba(21,101,192,0.15);
}
.lmc-title {
  font-size: 0.75rem; font-weight: 700;
  color: #1A1A2E; margin: 2px 0 1px;
}
.lmc-sub {
  font-size: 0.58rem; color: #999;
  margin: 0; line-height: 1.3;
}
.lmc-arrow {
  position: absolute;
  right: 10px; bottom: 8px;
  color: #ccc; font-size: 0.75rem;
}
.lmc-body-inline {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.lmc-body-inline .lmc-arrow {
  position: static;
  margin-left: auto;
  padding-bottom: 2px;
}

/* 继续上次探索 */
.los-continue {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: #F5F3FF;
}
.lc-label {
  font-size: 0.72rem; font-weight: 700;
  color: #444;
}
.lc-arrow {
  font-size: 0.85rem;
  color: #999;
}

/* 底部导航 */
.los-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 6px 0 14px;
  background: white;
  border-top: 1px solid #EEE;
  flex-shrink: 0;
}
.los-nav-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  min-width: 48px;
}
.lni-icon { font-size: 1rem; }
.lni-text {
  font-size: 0.52rem; color: #999;
  font-weight: 500;
}
.los-nav-active .lni-text {
  color: #7C5CFC; font-weight: 700;
}

/* Life-OS 模块卡片主题色 */
.module-self { border-left: 3px solid #7C5CFC; }
.module-career { border-left: 3px solid #42A5F5; }
.module-family { border-left: 3px solid #FFA726; }
.module-social { border-left: 3px solid #66BB6A; }
.module-all-card {
  border-left: 3px solid #EC407A;
  grid-column: 1 / -1;
}

/* Life-OS 模块网格：5个卡片用不规则布局 */
@media (min-width: 769px) {
  .lifeos-modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .module-all-card {
    grid-column: 2 / 4;
    max-width: 480px;
    justify-self: center;
  }
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .phone-mockup { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-product .container { flex-direction: column; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .scenes-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; padding: 32px; gap: 20px;
    z-index: 999; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .highlight-content { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 360px; margin: 44px auto 0; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 44px auto 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand .navbar-brand { justify-content: center; }
  .steps-horizontal { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }
  .steps-grid { flex-direction: column; gap: 20px; }
  .steps-grid .step-item { max-width: 100%; }
  .steps-compact { flex-direction: column; gap: 16px; }
  .scenes-grid { grid-template-columns: 1fr; max-width: 380px; margin: 44px auto 0; }
  .features-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; max-width: 380px; margin: 44px auto 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 24px; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .product-hero-layout { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .compare-block { grid-template-columns: 1fr; }
  .compare-divider { transform: rotate(90deg); }
  .talent-scene-intro { grid-template-columns: 1fr; }
  .talent-dual-badge { flex-direction: column; gap: 10px; }
  .td-plus { text-align: center; }
  .carelink-concept-row { grid-template-columns: 1fr; }
}

/* ========== Life-OS 对话模式差异化标识 ========== */
.mode-badge-row {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 8px; flex-wrap: wrap;
}
.mode-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  border: 2px solid transparent;
}
.mode-badge-highlight {
  background: rgba(124,92,252,0.12);
  border-color: #7C5CFC; color: #5C3FD0;
}
.mode-badge-dim {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12); color: #888;
}
.mode-icon { font-size: 1rem; }
.mode-label strong { color: #5C3FD0; }
.mode-vs {
  font-weight: 700; color: #aaa; font-size: 0.85rem;
  flex-shrink: 0;
}
.mode-tip {
  font-size: 0.82rem; color: #7C6AAA;
  margin: 0 0 16px; line-height: 1.6;
  background: rgba(124,92,252,0.06);
  padding: 8px 14px; border-radius: 8px;
  border-left: 3px solid #7C5CFC;
}

/* ========== Life-OS 对比表 ========== */
.compare-block {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; margin-top: 36px; align-items: start;
  border: 1px solid #E8E3FF; border-radius: 16px;
  overflow: hidden;
}
.compare-item {
  padding: 28px 24px;
}
.compare-others {
  background: #FAFAFA;
}
.compare-others h4 { color: #999; margin-bottom: 14px; font-size: 0.95rem; }
.compare-others ul { list-style: none; padding: 0; }
.compare-others ul li { font-size: 0.85rem; color: #999; padding: 5px 0; border-bottom: 1px solid #eee; }
.compare-others ul li:last-child { border-bottom: none; }
.compare-lifeos {
  background: linear-gradient(135deg, #F8F5FF, #EDE7F6);
}
.compare-lifeos h4 { color: #5C3FD0; margin-bottom: 14px; font-size: 0.95rem; }
.compare-lifeos ul { list-style: none; padding: 0; }
.compare-lifeos ul li { font-size: 0.85rem; color: #4A3A8A; padding: 5px 0; border-bottom: 1px solid rgba(124,92,252,0.1); }
.compare-lifeos ul li:last-child { border-bottom: none; }
.compare-divider {
  background: linear-gradient(180deg, #7C5CFC, #A68AFF);
  color: white; font-weight: 900; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  padding: 0 12px; writing-mode: vertical-rl; letter-spacing: 4px;
  min-height: 180px;
}

/* ========== 牵挂极简理念相关 ========== */
.carelink-philosophy-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,69,60,0.08); border: 1.5px solid rgba(232,69,60,0.25);
  color: #C0342D; padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin: 16px 0;
}
.cp-icon { font-size: 1rem; }
.carelink-subtitle {
  color: var(--text-secondary); font-size: 0.75rem;
  text-align: center; padding: 0 16px 10px;
}
.carelink-location {
  text-align: center; font-size: 0.65rem;
  color: var(--text-light); padding: 0 16px 14px;
}
.carelink-concept-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.carelink-concept-item {
  padding: 24px 20px; border-radius: 16px;
  background: white; box-shadow: 0 2px 12px rgba(232,69,60,0.07);
  border-top: 3px solid #E8453C;
  text-align: center;
}
.carelink-concept-item .concept-icon {
  font-size: 2rem; margin-bottom: 10px; display: block;
}
.carelink-concept-item h4 {
  font-size: 0.95rem; font-weight: 700;
  color: #1A1A2E; margin-bottom: 8px;
}
.carelink-concept-item p {
  font-size: 0.82rem; color: #666; line-height: 1.7;
}

/* ========== 企业人才两大板块 ========== */
.talent-dual-badge {
  display: flex; align-items: center; gap: 14px;
  margin: 20px 0 24px; flex-wrap: wrap;
}
.td-badge {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 14px; padding: 12px 18px;
  flex: 1; min-width: 200px;
}
.td-badge .td-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.td-badge div { display: flex; flex-direction: column; gap: 4px; }
.td-badge strong { font-size: 0.9rem; font-weight: 700; color: white; }
.td-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.td-plus {
  font-size: 1.8rem; font-weight: 900;
  color: rgba(255,255,255,0.6); flex-shrink: 0;
}

.talent-scene-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
.tsi-card {
  padding: 28px 24px; border-radius: 16px;
}
.tsi-recruit {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border: 1.5px solid #FFCC80;
}
.tsi-internal {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  border: 1.5px solid #90CAF9;
}
.tsi-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.tsi-icon { font-size: 1.5rem; }
.tsi-recruit h3 { color: #E65100; margin: 0; font-size: 1rem; }
.tsi-internal h3 { color: #1565C0; margin: 0; font-size: 1rem; }
.tsi-card > p { font-size: 0.88rem; color: #444; margin-bottom: 14px; line-height: 1.7; }
.tsi-points { list-style: none; padding: 0; margin: 0; }
.tsi-points li { font-size: 0.82rem; color: #555; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.tsi-points li:last-child { border-bottom: none; }

/* ========== 企业人才数据亮点 ========== */
.data-highlights {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8F5FF 0%, #fff 100%);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.highlight-stat {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,92,252,0.08);
  border: 1px solid #EDE7F6;
  transition: box-shadow 0.2s, transform 0.2s;
}
.highlight-stat:hover {
  box-shadow: 0 8px 32px rgba(124,92,252,0.14);
  transform: translateY(-4px);
}
.highlight-stat .stat-number {
  font-size: 2.4rem;
}
.highlight-stat .stat-label {
  color: #4A3A8A;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
  display: block;
}
.stat-desc {
  font-size: 0.82rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.5;
}

/* ========== CTA 体验入口（含二维码） ========== */
.cta-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 680px;
  margin: 32px auto 0;
}
.cta-entry-single {
  grid-template-columns: 1fr;
  max-width: 420px;
}
.cta-entry-card {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-entry-icon { font-size: 2rem; }
.cta-entry-card h4 {
  font-size: 1.05rem; font-weight: 700;
  color: white; margin: 4px 0 2px;
}
.cta-entry-card p {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin: 0;
}
.cta-qr-img {
  width: 150px; height: 150px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  padding: 10px;
  margin: 12px 0 6px;
}
.qr-hint {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.55) !important;
  margin-top: 2px !important;
}
.cta-extra-link {
  margin-top: 20px;
  text-align: center;
}
.cta-extra-link a {
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.cta-extra-link a:hover {
  color: white; border-color: white;
}

/* 企业人才 CTA 特殊样式 */
.cta-box-talent { background: linear-gradient(135deg, #1A1A2E, #2D2B5E) !important; }

/* 牵挂 即将上线 */
.coming-soon-badge {
  display: inline-block;
  background: rgba(232,69,60,0.9);
  color: white; font-weight: 700;
  padding: 5px 18px; border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 2px;
  margin-bottom: 16px;
}
.cta-coming-soon h2 { margin-bottom: 10px; }
.cta-coming-soon > p { margin-bottom: 8px !important; }
.coming-hint {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7; margin-top: 14px !important;
}

@media (max-width: 600px) {
  .cta-entry-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .cta-qr-img {
    width: 140px; height: 140px;
  }
}
