/* ========== 首页样式 ========== */
.hero {
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE8D6 50%, #FFD6BA 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 123, 84, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-lg);
  animation: fadeIn 0.8s ease-out;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  filter: drop-shadow(0 12px 32px rgba(255, 123, 84, 0.3));
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #3E2723;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
  font-family: "Microsoft YaHei", serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5D4037;
  margin-bottom: var(--space-sm);
}

.hero-tagline {
  font-size: 0.95rem;
  color: #8D6E63;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-tagline span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-tagline .divider {
  color: #BCAAA4;
}

.hero .btn-warm {
  font-size: 1.1rem;
  padding: 14px 36px;
  box-shadow: 0 12px 32px rgba(255, 123, 84, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

/* 功能卡片区 */
.feature-cards-wrap {
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.feature-cards {
  padding: 0 var(--space-lg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: 30px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card.blue { --card-color: linear-gradient(90deg, #5B7CF3, #8BA3F8); }
.feature-card.green { --card-color: linear-gradient(90deg, #43E97B, #38F9D7); }
.feature-card.yellow { --card-color: linear-gradient(90deg, #FFB347, #FF7B54); }

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--card-color);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card.blue .feature-icon { box-shadow: 0 8px 24px rgba(91, 124, 243, 0.3); }
.feature-card.green .feature-icon { box-shadow: 0 8px 24px rgba(67, 233, 123, 0.3); }
.feature-card.yellow .feature-icon { box-shadow: 0 8px 24px rgba(255, 179, 71, 0.3); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

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

/* 联盟区 */
.partnership {
  margin: var(--space-3xl) auto 0;
  /* padding: 0 var(--space-lg); */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.partner-card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card.brand {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFE8D6 100%);
  border: 1px solid #FFD6BA;
}

.partner-card.consult {
  background: linear-gradient(135deg, #FFB347 0%, #FF7B54 100%);
  color: var(--text-white);
  box-shadow: 0 8px 24px rgba(255, 123, 84, 0.35);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.partner-card .partner-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.2;
}

.partner-card.brand .partner-logo {
  background: linear-gradient(135deg, #5D4037, #8D6E63);
  color: #FFE8D6;
  font-family: serif;
}

.partner-card .partner-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.partner-card .partner-info p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.partner-card.consult .partner-info .consult-btn {
  margin-top: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

/* 帮帮团 */
.helper-section {
  margin: var(--space-3xl) auto 0;
}

.helper-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.helper-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.helper-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF7B54, #FFB347);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(255, 123, 84, 0.3);
}

.helper-logo::before {
  content: '';
  width: 54px;
  height: 54px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/></svg>") center/contain no-repeat;
  display: block;
}

.helper-info {
  flex: 1;
}

.helper-info h3 {
  font-size: 1.5rem;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  font-weight: 800;
}

.helper-info p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.helper-info .helper-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 123, 84, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* 近期活动 */
.activity-section {
  margin: var(--space-3xl) auto 0;
  /* padding: 0 var(--space-lg); */
}

.activity-card {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  cursor: pointer;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.activity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(91, 124, 243, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.activity-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.activity-meta .tag {
  background: var(--bg-white);
  color: var(--text-secondary);
}

.activity-meta .tag-success {
  background: #16A34A;
  color: var(--text-white);
}

.activity-info {
  flex: 1;
}

.activity-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.activity-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.activity-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* 价值主张区 */
.value-section {
  margin: var(--space-3xl) auto 0;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.value-section h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.value-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.value-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  position: relative;
}

.value-stat {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.value-stat .num {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.value-stat .label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* 课程卡片 - 线上教育 */
.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.course-cover {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #FFE8D6 0%, #FFD6BA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.course-cover.style-1 { background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%); }
.course-cover.style-2 { background: linear-gradient(135deg, #E3F2FD 0%, #90CAF9 100%); }
.course-cover.style-3 { background: linear-gradient(135deg, #F3E5F5 0%, #CE93D8 100%); }
.course-cover.style-4 { background: linear-gradient(135deg, #E0F7FA 0%, #80DEEA 100%); }

.course-cover .cover-brand {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.course-cover .cover-brand span {
  background: rgba(255, 255, 255, 0.7);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.course-cover .cover-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3E2723;
  text-align: center;
  padding: 0 var(--space-md);
  font-family: serif;
  letter-spacing: 1px;
}

.course-cover .cover-title .highlight {
  color: var(--secondary);
}

.course-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.course-content .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.course-content .course-tags .tag {
  font-size: 0.75rem;
}

.course-content .course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* 角色图标 - 家庭教育 */
.role-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.role-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.role-item:hover {
  transform: translateY(-4px);
}

.role-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.role-icon.blue { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.role-icon.pink { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.role-icon.orange { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.role-icon.green { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }

.role-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* 体系标题 */
.system-title {
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--text-white);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.system-title.parents {
  background: linear-gradient(135deg, #5B7CF3 0%, #8BA3F8 100%);
}

.system-title.children {
  background: linear-gradient(135deg, #FF7B54 0%, #FFB347 100%);
}

.system-title::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* 课程行 - 家庭教育 */
.course-row {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.course-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.course-row .row-cover {
  width: 140px;
  height: 90px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  padding: var(--space-sm);
  color: var(--text-white);
  font-family: serif;
}

.course-row .row-info {
  flex: 1;
}

.course-row .row-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.course-row .row-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.course-row .row-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  flex-shrink: 0;
}

.course-row.locked {
  position: relative;
  opacity: 0.7;
}

.course-row.locked .row-status {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-white);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 资料库 */
.invite-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.invite-card {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-white);
}

.invite-card.member {
  background: linear-gradient(135deg, #FFB6B9 0%, #FAE3D9 100%);
  color: #5D2E2E;
}

.invite-card.rights {
  background: linear-gradient(135deg, #A8E6CF 0%, #56C9C2 100%);
  color: #1A4D3E;
}

.invite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.invite-card .invite-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.invite-card .invite-info .badge {
  display: inline-block;
  padding: 2px 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
}

.invite-card .invite-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.search-bar {
  background: var(--bg-white);
  border-radius: var(--radius-full);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 124, 243, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 1rem;
  color: var(--text-primary);
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar .search-icon {
  color: var(--text-light);
  font-size: 1.2rem;
}

.grade-section, .category-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.grade-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.grade-item {
  text-align: center;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.grade-item:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

.grade-item .grade-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFB347, #FF7B54);
  color: var(--text-white);
}

.grade-item span {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.resource-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.resource-stat-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.resource-stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.resource-stat-card .stat-icon.warn { background: rgba(255, 152, 0, 0.1); color: #FF9800; }
.resource-stat-card .stat-icon.blue { background: rgba(91, 124, 243, 0.1); color: var(--primary); }

.resource-stat-card .stat-info .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.resource-stat-card .stat-info .value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.resource-stat-card .stat-info .desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.resource-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.resource-thumb {
  height: 140px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}

.resource-thumb.dark { background: linear-gradient(135deg, #424242, #212121); color: var(--text-white); }

.resource-info {
  padding: var(--space-md);
}

.resource-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.resource-info .resource-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============ 预约页 v2 - 全新设计 ============ */
.booking-header-v2 {
  margin-bottom: var(--space-2xl);
}

.booking-card-main {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.booking-card-main::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(91, 124, 243, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-card-main::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 123, 84, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.consultant-avatar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.avatar-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(255, 123, 84, 0.35);
}

.avatar-inner::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 179, 71, 0.3), rgba(255, 123, 84, 0.3));
  z-index: -1;
  filter: blur(12px);
}

.avatar-emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 4px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.consultant-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.avatar-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.5px;
}

.consultant-content {
  position: relative;
  z-index: 2;
}

.consultant-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.meta-tag-orange {
  background: rgba(255, 123, 84, 0.1);
  color: var(--secondary);
}

.meta-tag-blue {
  background: rgba(91, 124, 243, 0.1);
  color: var(--primary);
}

.consultant-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #1F2937 0%, #5D4037 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultant-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.consultant-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: var(--space-lg) 0;
}

.scope-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
}

.scope-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  position: relative;
}

.scope-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--gradient-warm);
  border-radius: 2px;
}

.scope-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.scope-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.scope-chip:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(255, 123, 84, 0.05);
  transform: translateY(-1px);
}

/* 咨询规划师 Section */
.consultant-section {
  margin-top: var(--space-2xl);
}

.consultant-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 4px solid var(--gradient-warm);
  border-radius: 2px;
}

.consultant-section-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.consultant-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.consultant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.consultant-card-v2 {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.consultant-card-v2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-warm);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.consultant-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.consultant-card-v2:hover::before {
  transform: scaleY(1);
}

.consultant-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.online-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #22C55E;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.consultant-card-info {
  flex: 1;
  min-width: 0;
}

.consultant-card-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.consultant-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.consultant-card-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.consultant-card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.consultant-topic {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: rgba(67, 233, 123, 0.1);
  color: #16A34A;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.consultant-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.consultant-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--border-light);
  margin-top: var(--space-sm);
}

.consultant-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.consultant-arrow {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.consultant-card-v2:hover .consultant-arrow {
  transform: translateX(4px);
}

/* 详情页 - 咨询师 */
.consultant-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.detail-banner {
  background: linear-gradient(135deg, #FF7B54 0%, #FFB347 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  color: var(--text-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.detail-banner .consult-photo {
  width: 220px;
  height: 280px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.detail-banner .consult-time {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.detail-banner .consult-time .label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.detail-banner .consult-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  margin-top: var(--space-sm);
  font-size: 0.85rem;
}

.detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.detail-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.detail-card .profile-card {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.detail-card .profile-card .avatar {
  background: linear-gradient(135deg, #FF7B54, #FFB347);
}

.detail-card .profile-card .info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.detail-card .profile-card .info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.detail-card .profile-card .info .topics {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.detail-card .profile-card .info .topics .tag {
  background: rgba(67, 233, 123, 0.15);
  color: #16A34A;
  font-size: 0.75rem;
}

.detail-card .desc {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-primary);
}

.detail-card .desc p {
  text-indent: 2em;
  margin-bottom: var(--space-md);
}

/* 学校介绍页 */
.school-hero {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.school-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.school-hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  font-weight: 800;
  position: relative;
}

.school-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.feature-grid-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-item-large {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-item-large .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--text-white);
}

/* 帮助页 banner */
.helper-hero {
  background: var(--gradient-warm);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.helper-hero h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.helper-hero .helper-big-logo {
  width: 140px;
  height: 140px;
  margin: var(--space-lg) auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  backdrop-filter: blur(10px);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.intro-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.intro-section h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
  color: var(--primary);
}

.intro-section .item {
  margin-bottom: var(--space-md);
}

.intro-section .item-title {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.intro-section .item-text {
  background: var(--bg-light);
  border-left: 3px solid var(--secondary);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 商城页 */
.shop-banner {
  background: linear-gradient(135deg, #FFB347 0%, #FF7B54 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.shop-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.shop-banner h1 {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-cover {
  height: 200px;
  background: linear-gradient(135deg, #FFE8D6, #FFD6BA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-info {
  padding: var(--space-md);
}

.product-info h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-info .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.product-info .price small {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: var(--space-sm);
}

/* 我的权益 */
.rights-hero {
  background: var(--gradient-cool);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.rights-hero .big-V {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  font-family: serif;
}

.rights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.rights-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.rights-card:hover {
  transform: translateY(-4px);
}

.rights-card .icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.rights-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.rights-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 返回按钮 */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.back-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateX(-4px);
}

/* 响应式调整 */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .partnership { grid-template-columns: 1fr; }
  .booking-card-main { grid-template-columns: 160px 1fr; gap: var(--space-lg); padding: var(--space-xl); }
  .avatar-inner { width: 130px; height: 130px; }
  .avatar-emoji { font-size: 3rem; }
  .consultant-title { font-size: 1.5rem; }
  .detail-banner { grid-template-columns: 1fr; }
  .grade-grid { grid-template-columns: repeat(5, 1fr); }
  .shop-products { grid-template-columns: repeat(3, 1fr); }
  .rights-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { height: auto; padding: 80px 20px; }
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-cards { margin-top: -30px; }
  .role-section { grid-template-columns: repeat(2, 1fr); }
  .invite-cards { grid-template-columns: 1fr; }
  .resource-list { grid-template-columns: 1fr; }
  .grade-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .rights-cards { grid-template-columns: 1fr; }
  .resource-stats { grid-template-columns: 1fr; }
  .value-stats { grid-template-columns: 1fr; }
  .booking-card-main { grid-template-columns: 1fr; text-align: center; padding: var(--space-lg); }
  .consultant-meta { justify-content: center; }
  .scope-grid { justify-content: center; }
  .consultant-card-v2 { flex-direction: column; align-items: center; text-align: center; }
  .consultant-card-name { justify-content: center; }
  .consultant-card-topics { justify-content: center; }
}
