/* ===== 变量定义 ===== */
:root {
  --primary: #F2A000;
  --primary-dark: #D98E00;
  --primary-light: #FFD700;
  --accent: #FF6B35;
  --gradient: linear-gradient(135deg, #F2A000 0%, #FF6B35 100%);
  --gradient-soft: linear-gradient(135deg, #FFF8E7 0%, #FFEBD3 100%);

  --bg: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #f1f3f5;
  --bg-card: #ffffff;

  --text: #1a1a1a;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --text-inverse: #ffffff;

  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 24px rgba(242, 160, 0, 0.3);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --container: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 深色模式 */
[data-theme="dark"] {
  --bg: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --bg-card: #1e1e1e;

  --text: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-tertiary: #6b6b6b;
  --text-inverse: #1a1a1a;

  --border: #333333;
  --border-light: #2a2a2a;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
  --shadow-primary: 0 8px 24px rgba(242, 160, 0, 0.4);

  --gradient-soft: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}

/* ===== 全局重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei',
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  transition: var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== 通用样式 ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 按钮样式 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 160, 0, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

[data-theme="dark"] .navbar {
  background: rgba(15, 15, 15, 0.85);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
}

.logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.logo-name {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--bg-tertiary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero区域 ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  opacity: 0.2;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  animation-delay: -7s;
}

.circle-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-light);
  top: 50%;
  left: 50%;
  opacity: 0.1;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

[data-theme="dark"] .hero-badge {
  background: var(--bg-tertiary);
  color: var(--primary-light);
  border-color: var(--border);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* 搜索框 */
.hero-search {
  max-width: 680px;
  margin: 0 auto 48px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--text-tertiary);
}

.search-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
}

.tag-label {
  color: var(--text-tertiary);
}

.tag {
  padding: 4px 14px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  transition: var(--transition);
}

.tag:hover {
  background: var(--primary);
  color: #fff;
}

/* 统计数据 */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

/* ===== 通用Section样式 ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-soft);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

[data-theme="dark"] .section-tag {
  background: var(--bg-tertiary);
  color: var(--primary-light);
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== 功能特点 ===== */
.features {
  background: var(--bg-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 8px 20px rgba(242, 160, 0, 0.25);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.feature-icon img {
  display: none;
}

.icon-1, .icon-2, .icon-3, .icon-4, .icon-5, .icon-6 {
  background: var(--gradient);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== 招投标查询 ===== */
.bidding-section {
  background: var(--bg);
}

.bidding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bidding-content h2,
.company-content h2 {
  text-align: left;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}

.feature-list {
  margin: 32px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.list-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li strong {
  display: block;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.feature-list li span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* 演示卡片 */
.bidding-demo,
.company-demo {
  position: relative;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.demo-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.demo-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-tertiary);
  font-size: 14px;
}

.demo-list {
  padding: 12px;
}

.demo-item {
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.demo-item:hover {
  background: var(--bg-tertiary);
}

.demo-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.demo-item-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== 企业信息 ===== */
.company-section {
  background: var(--bg-secondary);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.company-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.company-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.company-basic h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.company-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.company-tag {
  padding: 2px 10px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-secondary);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}

.company-stat {
  text-align: center;
}

.company-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.company-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
}

.company-info-list {
  padding: 12px;
}

.company-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.company-info-item:hover {
  background: var(--bg-tertiary);
}

.info-label {
  color: var(--text-tertiary);
  font-size: 13px;
}

.info-value {
  font-weight: 500;
  font-size: 13px;
}

/* ===== 订阅推送 ===== */
.subscribe-section {
  background: var(--bg);
}

.subscribe-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.subscribe-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.subscribe-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.subscribe-content > p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

.subscribe-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sf-num {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.sf-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.sf-item p {
  font-size: 14px;
  opacity: 0.85;
}

.subscribe-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notification-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: slideIn 0.6s ease-out;
}

.notification-card.second {
  margin-left: 40px;
  animation-delay: 0.2s;
}

.notification-card.third {
  margin-left: 20px;
  animation-delay: 0.4s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-theme="dark"] .notification-card {
  background: var(--bg-card);
}

.notif-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #F2A000, #FF8C00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.notif-content {
  flex: 1;
}

.notif-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.notif-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.notif-time {
  font-size: 12px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

/* ===== 价格方案 ===== */
.pricing {
  background: var(--bg-secondary);
}

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

.price-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

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

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.02);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.price-header {
  text-align: center;
  margin-bottom: 24px;
}

.price-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.price-amount {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  vertical-align: top;
}

.price-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 4px;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.price-features {
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.price-features li.disabled {
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--gradient-soft);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
}

[data-theme="dark"] .pricing-note {
  background: var(--bg-tertiary);
}

/* ===== 联系我们 ===== */
.contact {
  background: var(--bg);
}

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

.contact-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 64px 0 24px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-bottom a {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

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

.beian-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 2px;
  display: inline-block;
}

/* ===== 弹窗 ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(242, 160, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.code-input-group {
  display: flex;
  gap: 8px;
}

.code-input-group input {
  flex: 1;
}

.code-input-group button {
  white-space: nowrap;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 3px;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary);
}

.contact-info-box {
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.contact-info-label {
  color: var(--text-secondary);
}

.contact-info-value {
  font-weight: 600;
  color: var(--primary);
}

/* ===== 回到顶部 ===== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(242, 160, 0, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== 悬浮客服 ===== */
.floating-kefu {
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 999;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(242, 160, 0, 0.4);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
}

.kefu-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  width: 200px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.kefu-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kefu-qr {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto 12px;
}

.kefu-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== 子页面公共样式 ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, rgba(242, 160, 0, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-content {
  padding: 80px 0;
}

/* ===== 公司介绍页面 ===== */
.about-info {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-info-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.3;
}

.about-info-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-info-visual {
  position: relative;
}

.info-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.info-visual-top {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.info-visual-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
}

.info-visual-dot:nth-child(2) {
  background: var(--primary);
  opacity: 0.6;
}

.info-visual-dot:nth-child(3) {
  background: var(--primary);
}

.info-visual-body {
  padding: 16px 0;
}

.info-visual-line {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  margin-bottom: 12px;
}

.info-visual-line.short {
  width: 40%;
}

.info-visual-line.long {
  width: 85%;
  background: var(--primary);
  opacity: 0.3;
}

.info-visual-line.medium {
  width: 60%;
  margin-bottom: 32px;
}

.info-visual-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-top: 16px;
}

.info-visual-bar {
  flex: 1;
  background: var(--border-light);
  border-radius: 6px 6px 0 0;
  transition: var(--transition);
}

.info-visual-bar.primary {
  background: var(--gradient);
  box-shadow: 0 -4px 12px rgba(242, 160, 0, 0.3);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  padding: 50px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-stat-item {
  text-align: center;
}

.about-stat-num {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat-label {
  font-size: 15px;
  color: var(--text-secondary);
}

.about-section {
  margin-bottom: 80px;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
}

.about-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-value-card {
  padding: 40px 30px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(242, 160, 0, 0.25);
  overflow: hidden;
}

.about-value-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.about-value-icon img {
  display: none;
}

.about-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.about-value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.company-info-grid {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.company-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.company-info-row:last-child {
  border-bottom: none;
}

.company-info-item {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.company-info-item + .company-info-item {
  border-left: 1px solid var(--border-light);
}

.company-info-label {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 500;
}

.company-info-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  word-break: break-all;
}

.company-status {
  color: var(--primary);
  font-weight: 700;
}

.about-timeline {
  position: relative;
  padding: 20px 0;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

.about-timeline-year {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: right;
}

.about-timeline-content {
  padding-bottom: 30px;
  border-left: 2px solid var(--border);
  padding-left: 30px;
  position: relative;
}

.about-timeline-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient);
  border: 3px solid var(--bg);
}

.about-timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.about-timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* ===== 加入我们页面 ===== */
.join-culture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.join-culture-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.3;
}

.join-culture-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.join-culture-visual {
  aspect-ratio: 1;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 100px;
  box-shadow: var(--shadow-lg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.benefit-card {
  padding: 30px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.benefit-card:hover {
  border-color: var(--primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(242, 160, 0, 0.25);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.benefit-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.jobs-list {
  display: grid;
  gap: 20px;
  margin-bottom: 60px;
}

.job-card {
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.job-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.job-tag {
  padding: 4px 12px;
  background: var(--bg-secondary);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.job-apply {
  text-align: right;
}

.job-salary {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.join-contact {
  padding: 50px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
}

.join-contact h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.join-contact p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.join-contact-email {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

/* ===== 新闻动态页面 ===== */
.news-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.news-filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.news-filter-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.news-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(242, 160, 0, 0.1);
}

.news-content {
  padding: 28px 24px;
}

.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.news-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-secondary);
  border-radius: 4px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.news-date {
  font-size: 12px;
  color: var(--text-tertiary);
}

.news-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
  transition: var(--transition);
}

.news-card:hover h3 {
  color: var(--primary);
}

.news-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.news-card:hover .news-read-more {
  color: var(--primary);
}


/* ===== 响应式 - 子页面 ===== */
@media (max-width: 1024px) {
  .about-info,
  .join-culture {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 30px;
  }

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

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

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

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }

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

  .page-hero p {
    font-size: 16px;
  }

  .page-content {
    padding: 60px 0;
  }

  .about-info-text h2,
  .join-culture-text h2 {
    font-size: 28px;
  }

  .about-stats {
    padding: 30px 20px;
    gap: 20px;
  }

  .about-stat-num {
    font-size: 36px;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .company-info-row {
    grid-template-columns: 1fr;
  }

  .company-info-item {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .company-info-item + .company-info-item {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }

  .about-timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .about-timeline-year {
    font-size: 22px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .job-apply {
    text-align: left;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .join-contact {
    padding: 40px 24px;
  }

  .join-contact h3 {
    font-size: 22px;
  }

  .join-contact-email {
    font-size: 20px;
  }
}

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

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

  .bidding-grid,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .subscribe-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 48px;
  }

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

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

  .hero {
    padding: 120px 0 64px;
  }

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

  .features-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav-menu.active a {
    padding: 12px 16px;
    text-align: center;
  }

  .search-box {
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius);
  }

  .search-box input {
    width: 100%;
    text-align: center;
  }

  .search-box .btn {
    width: 100%;
  }

  .modal-content {
    padding: 32px 24px;
  }

  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }

  .floating-kefu {
    bottom: 80px;
    right: 24px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .kefu-popup {
    width: 180px;
    padding: 16px;
  }

  .kefu-qr {
    width: 140px;
    height: 140px;
  }

  .subscribe-card {
    padding: 40px 24px;
  }

  .notification-card.second {
    margin-left: 20px;
  }

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

  .footer-brand {
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-brand .logo {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 28px;
  }

  .nav-inner {
    height: 64px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .demo-item-meta {
    flex-direction: column;
    gap: 4px;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

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