/* ============================================================
   奇点成长优选（北京）科技有限公司 - 全局样式表
   品牌色：薄荷青绿 #7CC8BD | 科技蓝 #2563EB | 活力橙 #F59E0B
   深色背景：极深蓝黑 #070D1A | 深蓝 #0F1D2E
   ============================================================ */

/* ---- 基础重置与变量 ---- */
:root {
  /* 品牌色 - 薄荷青绿+科技蓝双主色体系 */
  --brand-primary: #7CC8BD;       /* 薄荷青绿 - 从Logo提取 */
  --brand-primary-dark: #5BAE8F;  /* 深薄荷 */
  --brand-primary-light: #A8E6CF; /* 浅薄荷 */
  --brand-blue: #2563EB;          /* 科技蓝 */
  --brand-blue-dark: #1D4ED8;     /* 深蓝 */
  --brand-blue-light: #60A5FA;    /* 亮蓝 */
  --brand-orange: #F59E0B;        /* 活力橙 - CTA */
  --brand-orange-dark: #D97706;   /* 深橙 */

  /* 深色背景系 - 科技蓝黑 */
  --bg-dark: #070D1A;       /* 极深蓝黑 - Hero/深色区块 */
  --bg-dark-surface: #0F1D2E; /* 深蓝 - 次深色区块 */
  --bg-dark-elevated: #162033; /*  elevated卡片 */

  /* 浅色背景系 */
  --bg-light: #F4F7FA;      /* 极浅蓝灰 */
  --bg-white: #FFFFFF;

  /* 文字色 */
  --text-primary-dark: #F0F4F8;   /* 深色背景主文字 - 微蓝白 */
  --text-secondary-dark: #8B9DB8; /* 深色背景次文字 - 蓝灰 */
  --text-primary-light: #0B1628;  /* 浅色背景主文字 - 极深蓝 */
  --text-secondary-light: #475569; /* 浅色背景次文字 */
  --text-muted: #64748B;          /* 弱化文字 */

  /* 边框 */
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.08);

  /* 阴影 */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
  --shadow-glow-brand: 0 0 30px rgba(124, 200, 189, 0.3);

  /* 间距 */
  --section-padding-y: 96px;
  --section-padding-x: 24px;
  --max-width: 1280px;

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* 字体 */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary-light);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* ---- 导航栏 ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--section-padding-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* 浅色页面导航栏：白色背景 + 深色文字 */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-light);
}

/* 深色页面导航栏（如首页Hero区）：透明背景 + 白色文字 */
.navbar-dark {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar-dark .nav-menu a,
.navbar-dark .nav-phone {
  color: var(--text-primary-dark);
}

.navbar-dark .nav-menu a:hover {
  color: var(--brand-primary);
}

/* 反白logo（深色背景时使用） */
.logo-white {
  display: none;
}

.navbar-dark .logo-default {
  display: none;
}

.navbar-dark .logo-white {
  display: block;
}

/* 移动端菜单按钮深色模式 */
.navbar-dark .mobile-menu-btn span {
  background: var(--text-primary-dark);
}

/* 滚动后：统一变为白色背景 + 深色文字 */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* 滚动后：恢复深色文字和默认logo */
.navbar.scrolled .nav-menu a,
.navbar.scrolled .nav-phone {
  color: var(--text-primary-light);
}

.navbar.scrolled .nav-menu a:hover {
  color: var(--brand-blue);
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo-default {
  display: block;
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--text-primary-light);
}

.nav-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary-light);
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--brand-blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--brand-orange);
  color: #1E293B;
}

.btn-orange:hover {
  background: var(--brand-orange-dark);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-blue {
  background: var(--brand-blue);
  color: white;
}

.btn-blue:hover {
  background: var(--brand-blue-dark);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary-light);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-dark {
  background: var(--bg-dark-elevated);
  color: white;
}

.btn-dark:hover {
  background: #334155;
  transform: scale(1.05);
}

/* ---- 下拉菜单 ---- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  border: 1px solid var(--border-light);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #F1F5F9;
  color: var(--brand-blue);
}

/* 修复：深色导航栏下下拉菜单文字颜色 */
.navbar-dark .dropdown-menu a {
  color: #1E293B;
}

.navbar-dark .dropdown-menu a:hover {
  color: var(--brand-blue);
}

/* ---- 移动端菜单 ---- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary-light);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ---- 通用区块样式 ---- */
.section {
  padding: var(--section-padding-y) var(--section-padding-x);
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-primary-dark);
}

.section-dark-alt {
  background: var(--bg-dark-surface);
  color: var(--text-primary-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-primary-light);
}

.section-white {
  background: var(--bg-white);
  color: var(--text-primary-light);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ---- 文字工具类 ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-brand {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
}

/* ---- 卡片样式 ---- */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-brand);
  border-color: var(--brand-primary);
}

.card-dark {
  background: var(--bg-dark-elevated);
  border-color: var(--border-dark);
  color: var(--text-primary-dark);
}

.card-dark:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: var(--brand-blue);
}

/* ---- 液态玻璃效果 ---- */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ---- 网格布局 ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- 页脚 ---- */
.footer {
  background: var(--bg-dark-surface);
  color: var(--text-secondary-dark);
  padding: 64px var(--section-padding-x) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary-dark);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--text-secondary-dark);
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--brand-primary);
}

/* ---- 形状分割线 ---- */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* ---- 统计数字 ---- */
.stat-number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary-dark);
  margin-top: 4px;
}

/* ---- FAQ 手风琴 ---- */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary-light);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-answer p {
  color: var(--text-secondary-light);
  line-height: 1.8;
}

/* ---- Logo 墙滚动 ---- */
.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  opacity: 1;
  color: var(--brand-primary);
}

/* ---- 时间轴 ---- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--brand-blue));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 3px solid var(--bg-dark);
}

.timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-secondary-dark);
  line-height: 1.7;
}

/* ---- 动画工具类 ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---- 面包屑导航 ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--brand-blue);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

/* ---- 页面标题区 ---- */
.page-header {
  padding: 140px var(--section-padding-x) 64px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- 响应式断点 ---- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 64px;
  }

  .nav-menu,
  .nav-right .nav-phone {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-right {
    gap: 12px;
  }

  .nav-right .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .marquee-track {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 28px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ---- 图片轮播 ---- */
.carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 450px;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* ---- 打印样式 ---- */
@media print {
  .navbar,
  .footer,
  .mobile-menu-btn {
    display: none !important;
  }
}

/* ---- 滚动条美化 ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-dark-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-primary);
}

/* ---- 选中文本颜色 ---- */
::selection {
  background: rgba(124, 200, 189, 0.3);
  color: inherit;
}

/* ---- 咨询表单反馈 ---- */
.consultation-feedback {
  min-height: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.consultation-feedback.success {
  color: #34D399;
}

.consultation-feedback.error {
  color: #F87171;
}

.consultation-previous.hidden,
#consultation-form.hidden {
  display: none !important;
}

.consultation-previous-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation-previous-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consultation-previous-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary-dark);
}

.consultation-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.consultation-status.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
}

.consultation-status.contacted {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

.consultation-status.closed {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.consultation-previous-list {
  display: grid;
  gap: 12px;
}

.consultation-previous-list > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  font-size: 14px;
}

.consultation-previous-list dt {
  color: var(--text-secondary-dark);
}

.consultation-previous-list dd {
  color: var(--text-primary-dark);
  white-space: pre-wrap;
  word-break: break-word;
}

.consultation-previous-tip {
  font-size: 13px;
  color: var(--text-secondary-dark);
  line-height: 1.6;
}

.consultation-resubmit-btn {
  width: 100%;
  padding: 14px;
}
