/* ========================================
   关于味来Ai — 赛博霓虹风样式
   ======================================== */

/* ---------- 标题通用 ---------- */
.section-title {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 16px 4px;
  background: linear-gradient(135deg, #00f0ff, #b300ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #b300ff);
  margin-top: 6px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.section-sub {
  font-size: 11px;
  color: #666699;
  padding: 0 16px 8px;
  line-height: 1.5;
}

/* ==========================================
   ① 公司愿景 Hero
   ========================================== */
.about-hero {
  margin: 12px 12px 0;
  padding: 28px 20px 24px;
  border-radius: 16px;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 240, 255, 0.06), transparent 70%),
              radial-gradient(ellipse at 80% 80%, rgba(179, 0, 255, 0.04), transparent 60%),
              rgba(10, 10, 30, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.05), inset 0 0 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent, rgba(0, 240, 255, 0.03), transparent, rgba(179, 0, 255, 0.03), transparent);
  animation: hero-rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes hero-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-badge {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #00f0ff, #b300ff, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 6px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  color: #c0c0f0;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* 公司名称 */
.hero-sub {
  font-size: 11px;
  color: #606090;
  margin-bottom: 4px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.hero-desc {
  font-size: 12px;
  color: #8888bb;
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-size: 22px;
  font-weight: 900;
  color: #e0e0ff;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

.stat-num small {
  font-size: 12px;
  font-weight: 400;
  color: #00f0ff;
}

.stat-label {
  font-size: 10px;
  color: #666699;
  letter-spacing: 1px;
}

/* ==========================================
   ② 四大行业痛点
   ========================================== */
.pain-points {
  padding: 0 12px;
  margin-top: 8px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 4px;
}

.pain-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: rgba(20, 20, 50, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.pain-card:hover,
.pain-card:active {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.2);
}

.pain-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: #d0d0f0;
  line-height: 1.4;
}

.pain-card p {
  font-size: 11px;
  color: #8888bb;
  line-height: 1.5;
}

/* 痛点图标 */
.pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon i {
  font-size: 22px;
  color: white;
  display: inline-block;
  line-height: 1;
}

.pain-icon.cyan-glow {
  background: rgba(0, 240, 255, 0.12);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2), inset 0 0 12px rgba(0, 240, 255, 0.08);
}
.pain-icon.cyan-glow i { color: #00f0ff; }

.pain-icon.purple-glow {
  background: rgba(179, 0, 255, 0.12);
  box-shadow: 0 0 16px rgba(179, 0, 255, 0.2), inset 0 0 12px rgba(179, 0, 255, 0.08);
}
.pain-icon.purple-glow i { color: #b300ff; }

.pain-icon.pink-glow {
  background: rgba(255, 0, 128, 0.12);
  box-shadow: 0 0 16px rgba(255, 0, 128, 0.2), inset 0 0 12px rgba(255, 0, 128, 0.08);
}
.pain-icon.pink-glow i { color: #ff0080; }

.pain-icon.rainbow-glow {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(179, 0, 255, 0.1));
  box-shadow: 0 0 16px rgba(179, 0, 255, 0.15), inset 0 0 12px rgba(0, 240, 255, 0.05);
}
.pain-icon.rainbow-glow i { color: #00f0ff; text-shadow: 0 0 12px rgba(179,0,255,0.6); }

/* ==========================================
   ③ 五大极致突破
   ========================================== */
.solutions {
  padding: 0 12px;
  margin-top: 4px;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(20, 20, 50, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.solution-item:hover,
.solution-item:active {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.2);
}

.sol-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid currentColor;
  flex-shrink: 0;
}

.sol-icon i {
  font-size: 22px;
  color: inherit;
  display: inline-block;
  line-height: 1;
}

.sol-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: #e0e0ff;
  margin-bottom: 2px;
}

.sol-body p {
  font-size: 11px;
  color: #8888bb;
  line-height: 1.5;
}

/* ==========================================
   立即加入
   ========================================== */
.join-cta {
  padding: 0 12px;
  margin-top: 18px;
  text-align: center;
}

.join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00f0ff, #b300ff);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0,240,255,0.2);
}

.join-btn:hover,
.join-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,240,255,0.4);
}

.join-btn span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.join-btn i {
  font-size: 20px;
  color: #fff;
}

.join-cta p {
  font-size: 11px;
  color: #8888bb;
  margin-top: 10px;
}
