/* ============================================
   什么是教练 (What is Coaching) - 专属样式
   移动端优先 · 原生App质感
   类名前缀: wic-
   ============================================ */

/* ============================================
   1. CSS变量
   ============================================ */
:root {
  --wic-primary: #9333ea;
  --wic-primary-light: #a855f7;
  --wic-secondary: #7c3aed;
  --wic-accent: #c084fc;
  --wic-teal: #0d9488;
  --wic-teal-light: #14b8a6;
  --wic-amber: #eab308;
  --wic-amber-light: #fbbf24;
  --wic-text: #1a1a2e;
  --wic-text-secondary: #4a4a6a;
  --wic-text-muted: #999;
  --wic-bg-card: #ffffff;
  --wic-bg-light: #faf5ff;
  --wic-bg-warm: #fffbeb;
  --wic-border: rgba(147, 51, 234, 0.1);
  --wic-border-light: rgba(147, 51, 234, 0.06);
  --wic-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --wic-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --wic-shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --wic-radius: 14px;
  --wic-radius-sm: 10px;
  --wic-radius-lg: 18px;
  --wic-radius-xl: 22px;
}

/* ============================================
   2. 页面头图卡片 - 移动端
   ============================================ */
.inner-main .wic-hero-card {
  text-align: center;
  padding: 28px 20px 24px;
  margin-bottom: 12px;
  background: linear-gradient(145deg, rgba(147, 51, 234, 0.07) 0%, rgba(124, 58, 237, 0.03) 50%, rgba(168, 85, 247, 0.05) 100%);
  border-radius: var(--wic-radius-xl);
  border: 1px solid var(--wic-border-light);
  box-shadow: var(--wic-shadow);
  position: relative;
  overflow: hidden;
}

/* 装饰背景圆 */
.inner-main .wic-hero-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.inner-main .wic-hero-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  background: linear-gradient(145deg, var(--wic-primary), var(--wic-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
  position: relative;
  z-index: 1;
}

.inner-main .wic-hero-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wic-text);
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.inner-main .wic-hero-subtitle {
  font-size: 0.88rem;
  color: var(--wic-text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   3. 比喻说明区 - 移动端
   ============================================ */
.inner-main .wic-metaphor-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.inner-main .wic-metaphor-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, var(--wic-teal), var(--wic-teal-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 3px 10px rgba(13, 148, 136, 0.25);
}

.inner-main .wic-metaphor-content {
  font-size: 0.9rem;
  color: var(--wic-text-secondary);
  line-height: 1.75;
}

.inner-main .wic-metaphor-content p {
  margin-bottom: 8px;
}

.inner-main .wic-metaphor-content p:last-child {
  margin-bottom: 0;
}

.inner-main .wic-metaphor-questions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.inner-main .wic-mq-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.06) 0%, rgba(20, 184, 166, 0.04) 100%);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--wic-teal);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ============================================
   4. 教练技能列表 - 移动端
   ============================================ */
.inner-main .wic-skill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner-main .wic-skill-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--wic-bg-card);
  border: 1px solid var(--wic-border-light);
  border-radius: var(--wic-radius);
  box-shadow: var(--wic-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.inner-main .wic-skill-item:active {
  transform: scale(0.98);
}

.inner-main .wic-skill-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, var(--wic-primary), var(--wic-secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.2);
}

.inner-main .wic-skill-content {
  flex: 1;
  min-width: 0;
}

.inner-main .wic-skill-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wic-text);
  margin-bottom: 3px;
}

.inner-main .wic-skill-desc {
  font-size: 0.82rem;
  color: var(--wic-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   5. 关键区别 - 移动端
   ============================================ */
.inner-main .wic-distinction-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--wic-bg-warm);
  border: 1px solid rgba(234, 179, 8, 0.12);
  border-radius: var(--wic-radius);
  box-shadow: var(--wic-shadow-sm);
}

.inner-main .wic-distinction-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, var(--wic-amber), var(--wic-amber-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 3px 10px rgba(234, 179, 8, 0.25);
}

.inner-main .wic-distinction-text {
  font-size: 0.9rem;
  color: var(--wic-text-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================
   6. CTA区域 - 移动端
   ============================================ */
.inner-main .wic-cta-section {
  text-align: center;
  padding: 8px 0;
}

.inner-main .wic-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(145deg, var(--wic-primary), var(--wic-secondary));
  border-radius: 24px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(147, 51, 234, 0.25);
  letter-spacing: 0.3px;
}

.inner-main .wic-cta-label i {
  font-size: 1.05rem;
}

.inner-main .wic-cta-desc {
  font-size: 0.88rem;
  color: var(--wic-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.inner-main .wic-cta-qr {
  display: inline-block;
  padding: 10px;
  background: #fff;
  border-radius: var(--wic-radius);
  border: 1px solid var(--wic-border);
  box-shadow: var(--wic-shadow);
}

.inner-main .wic-cta-qr img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

/* 录播课CTA变体 */
.inner-main .wic-cta-course {
  border-top: 2px solid var(--wic-border);
  padding-top: 18px;
  margin-top: 6px;
}

.inner-main .wic-course-price {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%);
  border: 1px solid var(--wic-border);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--wic-primary);
  margin-bottom: 16px;
  font-weight: 500;
}

.inner-main .wic-course-price strong {
  font-size: 1.2rem;
  font-weight: 700;
}

/* ============================================
   7. 愿景使命价值观 - 移动端
   ============================================ */
.inner-main .wic-vision-box {
  text-align: center;
  padding: 12px 0;
}

.inner-main .wic-vision-label {
  font-size: 0.82rem;
  color: var(--wic-text-muted);
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.inner-main .wic-vision-label span {
  color: var(--wic-primary);
  font-weight: 700;
}

.inner-main .wic-vision-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wic-text);
  margin-bottom: 16px;
}

.inner-main .wic-vision-img {
  display: inline-block;
  border-radius: var(--wic-radius);
  overflow: hidden;
  box-shadow: var(--wic-shadow-md);
}

.inner-main .wic-vision-img img {
  width: 100%;
  max-width: 400px;
  display: block;
  border-radius: var(--wic-radius);
}

/* ============================================
   8. PC适配 - 仅做微调
   ============================================ */
@media (min-width: 768px) {
  .inner-main .wic-hero-card {
    padding: 36px 32px 28px;
  }

  .inner-main .wic-hero-icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
    border-radius: 18px;
  }

  .inner-main .wic-hero-title {
    font-size: 1.5rem;
  }

  .inner-main .wic-hero-subtitle {
    font-size: 0.95rem;
  }

  .inner-main .wic-metaphor-icon {
    width: 46px;
    height: 46px;
  }

  .inner-main .wic-metaphor-content {
    font-size: 0.92rem;
  }

  .inner-main .wic-metaphor-questions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .inner-main .wic-skill-item {
    padding: 16px 18px;
  }

  .inner-main .wic-skill-num {
    width: 38px;
    height: 38px;
  }

  .inner-main .wic-skill-title {
    font-size: 1rem;
  }

  .inner-main .wic-skill-desc {
    font-size: 0.88rem;
  }

  .inner-main .wic-distinction-icon {
    width: 46px;
    height: 46px;
  }

  .inner-main .wic-cta-qr img {
    width: 170px;
    height: 170px;
  }

  .inner-main .wic-vision-img img {
    max-width: 480px;
  }
}

/* ============================================
   9. 窄屏适配
   ============================================ */
@media (max-width: 359px) {
  .inner-main .wic-hero-card {
    padding: 20px 14px;
  }

  .inner-main .wic-hero-title {
    font-size: 1.15rem;
  }

  .inner-main .wic-hero-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .inner-main .wic-skill-item {
    padding: 12px 12px;
    gap: 10px;
  }

  .inner-main .wic-skill-num {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .inner-main .wic-skill-title {
    font-size: 0.88rem;
  }

  .inner-main .wic-skill-desc {
    font-size: 0.78rem;
  }

  .inner-main .wic-cta-qr img {
    width: 130px;
    height: 130px;
  }

  .inner-main .wic-mq-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .inner-main .wic-metaphor-icon {
    width: 36px;
    height: 36px;
  }

  .inner-main .wic-distinction-icon {
    width: 36px;
    height: 36px;
  }
}
