/* ============================================
   组织进化落地方案页面样式
   前缀: oe-
   ============================================ */

/* ============================================
   1. 页面介绍
   ============================================ */
.oe-intro {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* ============================================
   2. 落地方案列表
   ============================================ */
.oe-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.oe-plan-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ecfdf5;
  border: 1px solid rgba(5,150,105,0.12);
  border-radius: 12px;
  transition: all 0.2s;
}

.oe-plan-item:active {
  transform: scale(0.98);
  background: #d1fae5;
}

.oe-plan-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #059669, #047857);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5,150,105,0.25);
}

.oe-plan-item span {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1f2937;
}

@media (min-width: 768px) {
  .oe-plan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .oe-plan-item {
    padding: 16px 18px;
  }
}

@media (max-width: 359px) {
  .oe-plan-item span {
    font-size: 0.82rem;
  }
  .oe-plan-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* ============================================
   3. 三层进化体系
   ============================================ */
.oe-evolution-block {
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s;
}

.oe-evolution-block:active {
  transform: scale(0.99);
}

.oe-evolution-leader {
  border-color: rgba(37,99,235,0.15);
}
.oe-evolution-team {
  border-color: rgba(147,51,234,0.15);
}
.oe-evolution-org {
  border-color: rgba(5,150,105,0.15);
}
.oe-evolution-goal {
  border-color: rgba(217,119,6,0.2);
}

.oe-evolution-header {
  padding: 12px 16px;
}

.oe-evolution-leader .oe-evolution-header {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.oe-evolution-team .oe-evolution-header {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
}
.oe-evolution-org .oe-evolution-header {
  background: linear-gradient(135deg, #059669, #047857);
}
.oe-evolution-goal .oe-evolution-header {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.oe-evolution-header h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oe-evolution-header h4 i {
  font-size: 1rem;
}

.oe-evolution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
}

.oe-evolution-leader .oe-evolution-tags {
  background: #eff6ff;
}
.oe-evolution-team .oe-evolution-tags {
  background: #faf5ff;
}
.oe-evolution-org .oe-evolution-tags {
  background: #ecfdf5;
}
.oe-evolution-goal .oe-evolution-tags {
  background: #fffbeb;
}

.oe-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.06);
}

.oe-evolution-leader .oe-tag {
  background: #dbeafe;
  color: #1e40af;
  border-color: rgba(37,99,235,0.15);
}
.oe-evolution-team .oe-tag {
  background: #f3e8ff;
  color: #6b21a8;
  border-color: rgba(147,51,234,0.15);
}
.oe-evolution-org .oe-tag {
  background: #d1fae5;
  color: #065f46;
  border-color: rgba(5,150,105,0.15);
}
.oe-evolution-goal .oe-tag {
  background: #fef3c7;
  color: #92400e;
  border-color: rgba(217,119,6,0.15);
}

.oe-tag-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
  color: #92400e !important;
  border-color: rgba(217,119,6,0.2) !important;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(217,119,6,0.12);
}

@media (min-width: 768px) {
  .oe-evolution-block {
    margin-bottom: 18px;
  }
}

/* ============================================
   4. 落地路径
   ============================================ */
.oe-path-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.oe-path-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  position: relative;
}

.oe-path-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5,150,105,0.25);
  position: relative;
  z-index: 1;
}

.oe-path-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f2937;
  padding: 10px 16px;
  background: #ecfdf5;
  border: 1px solid rgba(5,150,105,0.1);
  border-radius: 10px;
}

.oe-path-arrow {
  color: #059669;
  font-size: 1rem;
  flex-shrink: 0;
  display: none;
}

/* 垂直连接线 */
.oe-path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 56px;
  width: 2px;
  height: calc(100% - 36px);
  background: linear-gradient(to bottom, #059669, rgba(5,150,105,0.2));
}

@media (min-width: 768px) {
  .oe-path-flow {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .oe-path-step {
    flex-direction: column;
    text-align: center;
    padding: 20px 12px;
    flex: 1;
  }
  .oe-path-arrow {
    display: flex;
    order: 3;
    margin-top: 8px;
  }
  .oe-path-text {
    order: 2;
    text-align: center;
  }
  .oe-path-num {
    order: 1;
  }
  .oe-path-step:not(:last-child)::after {
    display: none;
  }
}

/* ============================================
   5. 引入教练的场景
   ============================================ */
.oe-scenario-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oe-scenario-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fffbeb;
  border: 1px solid rgba(217,119,6,0.12);
  border-radius: 12px;
  transition: all 0.2s;
}

.oe-scenario-item:active {
  transform: scale(0.98);
}

.oe-scenario-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(217,119,6,0.2);
}

.oe-scenario-item span {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 359px) {
  .oe-scenario-item span {
    font-size: 0.82rem;
  }
  .oe-scenario-num {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }
}

/* ============================================
   6. 基础套餐
   ============================================ */
.oe-package-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px;
  text-align: center;
}

.oe-package-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.6;
}

.oe-package-section {
  background: #ecfdf5;
  border: 1px solid rgba(5,150,105,0.12);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}

.oe-package-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #059669;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oe-package-duration {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(5,150,105,0.2);
}

.oe-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oe-package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.86rem;
  color: #374151;
  border-bottom: 1px solid rgba(5,150,105,0.06);
}

.oe-package-list li:last-child {
  border-bottom: none;
}

.oe-package-list li i {
  color: #059669;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.oe-package-note {
  font-size: 0.78rem;
  color: #059669;
  margin: 10px 0 0;
  font-weight: 500;
}

.oe-package-gift {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid rgba(217,119,6,0.15);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #92400e;
  margin-top: 16px;
}

.oe-package-gift i {
  font-size: 1.2rem;
  color: #d97706;
}

@media (min-width: 768px) {
  .oe-package-section {
    padding: 24px;
  }
}
