/* Digital Workforce Platform Main Styles */
/* Based on Foxu Insights design principles */

/* Global scale adjustment - simulates 80% browser zoom */
html {
  font-size: 14px;
}

:root {
  --primary-color: #0A2A5A;
  --accent-color: #00D2FF;
  --accent-hover: #00B8E6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-section: #ffffff;
  --border-color: #e2e8f0;
  --border-radius: 10px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
               'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Placeholder - Prevent Layout Shift */
#header-placeholder:not(.loaded) {
  /* Reserve space for fixed header during loading */
  min-height: 80px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  /* Skeleton loading animation */
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

#header-placeholder.loaded {
  /* Remove skeleton styles after loading */
  min-height: 0;
  background: none;
  box-shadow: none;
  position: static;
  animation: none;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Footer Placeholder - Prevent Layout Shift */
#footer-placeholder:not(.loaded) {
  min-height: 200px;
  background: #1a1a2e;
}

#footer-placeholder.loaded {
  min-height: 0;
}

/* Header Styles */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-top {
  padding: 1rem 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* Main Navigation */
.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: inline-block;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.625rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
  z-index: 1000;
}

.mega-menu-wide {
  min-width: 800px;
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mega-menu-wide .mega-menu-content {
  grid-template-columns: repeat(4, 1fr);
}

.mega-menu-column {
  min-width: 0;
}

.mega-menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-list a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-menu-list a:hover {
  background: var(--bg-light);
  color: var(--accent-color);
  padding-left: 1rem;
}

.mega-menu-list.compact li {
  margin-bottom: 0.25rem;
}

.mega-menu-list.compact a {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 210, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu */
.header-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 2px 0;
  transition: all 0.3s ease;
}

.mobile-nav {
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 1rem 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list a:hover {
  background: var(--bg-light);
  color: var(--accent-color);
}

/* Mobile Dropdown */
.mobile-dropdown {
  border-bottom: 1px solid var(--border-color);
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.mobile-dropdown-toggle:hover {
  background: var(--bg-light);
}

.mobile-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-light);
}

.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 1000px;
}

.mobile-submenu-group {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-submenu-group:last-child {
  border-bottom: none;
}

.mobile-submenu-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.mobile-dropdown-content a:hover {
  background: white;
  color: var(--accent-color);
  padding-left: 1.25rem;
}

.mobile-auth-section {
  padding: 1rem 1.5rem;
  border-top: 2px solid var(--border-color);
  margin-top: 1rem;
}

.mobile-auth-link {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-auth-link.primary {
  background: var(--accent-color);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-toolbar .btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 800px;
  padding: 100px 0;
}

/* Page Hero - Centered Text with Gradient Background */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 6rem 0;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-top: 4rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 210, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 210, 255, 0.6);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.95);
}

.badge-icon {
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.8;
}

.hero-philosophy {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-align: left;
}

.philosophy-item:last-child {
  margin-bottom: 0;
}

.philosophy-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.philosophy-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.hero-proof {
  margin-top: 2rem;
}

.proof-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Section Common Styles */
.section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

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

.section-white {
  background: white;
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-color) 0%, #003366 100%);
  color: white;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header-cta {
  margin-top: 1.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.875rem;
}

.section-dark .section-title {
  color: white;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Pain Cards */
.pain-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

.pain-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pain-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pain-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.pain-solution {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.pain-solution strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.75rem;
}

.pain-solution ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
}

.pain-solution li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.pain-solution li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.result-highlight {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
}

/* Comparison Section */
.comparison-section {
  margin-top: 4rem;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.comparison-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table td {
  color: var(--text-gray);
}

.comparison-table .highlight-col {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
  font-weight: 600;
  color: var(--primary-color);
}

.comparison-note {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-gray);
}

.comparison-note strong {
  color: var(--primary-color);
}

/* Hiring Model */
.hiring-model {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
  text-align: center;
}

.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.model-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.model-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Employee Categories */
.employee-layer {
  margin-bottom: 4rem;
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-color);
}

.layer-icon {
  font-size: 2rem;
}

.layer-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.employee-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.employee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.employee-card:hover::before {
  opacity: 1;
}

.employee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.employee-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
}

.employee-card.featured::before {
  opacity: 1;
}

.employee-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.employee-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.employee-emoji {
  font-size: 2rem;
}

.employee-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.employee-card:hover .employee-avatar {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 210, 255, 0.4);
}

.employee-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.employee-badge {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}

/* Layer-specific backgrounds */
.employee-card.layer-strategic {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.04));
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.employee-card.layer-business {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04));
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.employee-card.layer-management {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
  border: 2px solid rgba(16, 185, 129, 0.3);
}

/* Custom Employee Card */
.employee-card.custom-employee {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.05));
  border: 2px dashed rgba(0, 210, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.employee-card.custom-employee:hover {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(10, 42, 90, 0.08));
  border-color: rgba(0, 210, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.2);
}

.custom-employee-content {
  padding: 1rem;
}

.custom-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.custom-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.custom-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.custom-description {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.employee-roi {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.5px;
}

.employee-value {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.employee-scene {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.employee-scene::before {
  content: '📍';
  font-size: 1rem;
}

.employee-methods {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.employee-skills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.method-tag {
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
}

.skill-tag {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* 定时触发技能 - 蓝色系 */
.skill-tag.skill-scheduled {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.08));
  color: #1e40af;
  border-color: rgba(59, 130, 246, 0.3);
}

.skill-tag.skill-scheduled:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.12));
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.25);
}

/* 事件触发技能 - 橙色系 */
.skill-tag.skill-event {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.08));
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.3);
}

.skill-tag.skill-event:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.12));
  border-color: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.25);
}

/* 手动触发技能 - 紫色系 */
.skill-tag.skill-manual {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(147, 51, 234, 0.08));
  color: #7e22ce;
  border-color: rgba(168, 85, 247, 0.3);
}

.skill-tag.skill-manual:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.12));
  border-color: #a855f7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(168, 85, 247, 0.25);
}

/* 审批控制技能 - 红色系 */
.skill-tag.skill-approval {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.08));
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.3);
}

.skill-tag.skill-approval:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.12));
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.25);
}

/* ROI Highlight */
.roi-highlight {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  border-radius: var(--border-radius);
  color: white;
}

.roi-number {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.roi-label {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Application Scenarios Section */
.scenario-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.scenario-stat-card {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.scenario-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.scenario-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.scenario-stat-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.scenario-stat-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Scenario Categories */
.scenario-categories {
  display: grid;
  gap: 3rem;
}

.scenario-category {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.scenario-category:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.category-icon {
  font-size: 2.5rem;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.category-content {
  display: grid;
  gap: 2rem;
}

.scenario-group {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
}

.scenario-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scenario-group-title::before {
  content: '▸';
  color: var(--accent-color);
  font-size: 1.25rem;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scenario-tag {
  background: white;
  color: var(--text-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scenario-tag:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 210, 255, 0.3);
}

/* Scenario CTA */
.scenario-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  border-radius: var(--border-radius);
}

.scenario-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.scenario-cta-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.platform-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.platform-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.platform-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.platform-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* Case Grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

/* Case Hero with Background Image */
.case-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.case-hero-overlay {
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  padding: 1.25rem;
}

.case-hero .case-header {
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.case-hero .case-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-hero .case-tag {
  background: rgba(0, 210, 255, 0.95);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 210, 255, 0.3);
}

.case-hero .case-stats {
  display: flex;
  gap: 2rem;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.case-hero .stat-item {
  text-align: left;
}

.case-hero .stat-number {
  color: white;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-hero .stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Case Content Below Image */
.case-card .case-problem,
.case-card .case-result {
  padding: 0 1.25rem;
}

.case-card .case-problem {
  padding-top: 1.25rem;
}

.case-card .case-quote {
  margin: 1.25rem;
  margin-bottom: 0;
}

.case-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.case-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.case-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-gray);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Default case-stats (not in hero) */
.case-stats {
  display: flex;
  justify-content: space-around;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
}

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

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.case-problem,
.case-result {
  margin-bottom: 1.25rem;
}

.case-problem h4,
.case-result h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.case-problem ul,
.case-result ul {
  list-style: none;
  padding-left: 0;
}

.case-problem li,
.case-result li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  line-height: 1.5;
  font-size: 0.875rem;
}

.case-problem li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.case-result li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.case-quote {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  padding: 1rem;
  border-radius: 10px;
  border-left: 3px solid var(--accent-color);
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.6;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

.case-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

/* Team Section */
.philosophy-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
  text-align: center;
}

.philosophy-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.philosophy-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.team-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-highlights {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.team-highlights li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-highlights li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Advantages Section */
.advantages-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.advantages-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  border: 2px solid var(--border-color);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.advantage-card ul {
  list-style: none;
  padding-left: 0;
}

.advantage-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.advantage-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Journey Section */
.journey-section {
  margin-top: 4rem;
}

.journey-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
}

.journey-steps {
  display: grid;
  gap: 2rem;
}

.journey-step {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: 5rem;
}

.step-number {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.step-deliverables {
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.step-deliverables strong {
  color: var(--primary-color);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-stats {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

a.contact-value {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

a.contact-value:hover {
  color: var(--accent-color);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-icp {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-icp:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }

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

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

  .footer-brand {
    max-width: 100%;
  }

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

  /* Case grid: 2 columns on medium screens */
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet - 3 columns for employee grid */
@media (max-width: 1200px) {
  .employee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small tablet - 2 columns for employee grid */
@media (max-width: 900px) {
  .employee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.125rem;
  }

  .page-hero {
    min-height: 300px;
    padding: 4rem 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  /* Case Hero Mobile */
  .case-hero {
    height: 240px;
  }

  .case-hero-overlay {
    padding: 1.5rem;
  }

  .case-hero .case-header {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .case-hero .case-title {
    font-size: 1.25rem;
  }

  .case-hero .case-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .case-hero .case-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .case-hero .stat-number {
    font-size: 1.5rem;
  }

  .case-hero .stat-label {
    font-size: 0.75rem;
  }

  .case-card .case-problem,
  .case-card .case-result {
    padding: 0 1.5rem;
  }

  .case-card .case-problem {
    padding-top: 1.5rem;
  }

  .case-card .case-quote {
    margin: 1.5rem;
    margin-bottom: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .platform-grid,
  .case-grid,
  .team-grid,
  .advantages-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

  .journey-step {
    padding-left: 2rem;
  }

  .step-number {
    position: static;
    margin-bottom: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

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

  .footer-contact {
    gap: 1rem;
  }

  .contact-item {
    flex-direction: row;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .roi-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .pain-card,
  .case-card,
  .team-card,
  .platform-card {
    padding: 1.5rem;
  }

  .case-stats {
    flex-direction: column;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero-cta,
  .cta-section {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
  }
}

/* Features Section - 三大核心特点 (Tab Layout) */
.features-tabs {
  margin-top: 3rem;
}

/* Tab Navigation */
.tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  background: rgba(0, 210, 255, 0.05);
}

.tab-btn.active {
  border-bottom-color: var(--accent-color);
  background: rgba(0, 210, 255, 0.08);
}

.tab-number {
  font-size: 2rem;
  display: block;
}

.tab-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.tab-btn.active .tab-title {
  color: var(--primary-color);
}

/* Tab Content */
.tabs-content {
  position: relative;
  min-height: 500px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-header {
  margin-bottom: 2rem;
  text-align: center;
}

.tab-panel-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.tab-panel-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

.feature-content {
  color: var(--text-light);
  line-height: 1.8;
}

.feature-comparison {
  margin-bottom: 2rem;
}

.comparison-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.comparison-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.agent-way {
  color: #dc2626;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.employee-way {
  color: #059669;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Feature Comparison Table */
.feature-table-wrapper {
  margin-bottom: 2rem;
  overflow-x: auto;
}

.feature-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color), #003366);
}

.feature-comparison-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-comparison-table thead th.highlight-column {
  background: linear-gradient(135deg, var(--accent-color), #00a8cc);
}

.feature-comparison-table tbody td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-comparison-table tbody tr:hover {
  background: rgba(0, 210, 255, 0.03);
}

.feature-comparison-table tbody tr.highlight-row {
  background: rgba(255, 215, 0, 0.08);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-comparison-table tbody tr.highlight-row:hover {
  background: rgba(255, 215, 0, 0.12);
}

.feature-comparison-table tbody tr.highlight-row td {
  font-weight: 600;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.feature-comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 15%;
}

.feature-comparison-table tbody td:nth-child(2) {
  color: #dc2626;
  width: 30%;
}

.feature-comparison-table tbody td.highlight-column {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(0, 210, 255, 0.02));
  color: var(--text-dark);
  font-weight: 500;
  width: 55%;
}

.feature-comparison-table tbody td.highlight-column strong {
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.methodology-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.methodology-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.methodology-item ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.methodology-item li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.methodology-item li:last-child {
  border-bottom: none;
}

.vs-text {
  color: #dc2626;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

.feature-comparison-table {
  margin-bottom: 2rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
}

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

.comparison-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.comparison-agent {
  color: #dc2626;
  font-size: 0.9rem;
}

.comparison-employee {
  color: #059669;
  font-weight: 500;
  font-size: 0.9rem;
}

.feature-highlight {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.feature-highlight p {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-highlight li {
  padding: 0.5rem 0;
  color: var(--text-dark);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* New Hero Section Styles */
.hero {
  padding: 8rem 0 6rem;
  overflow: hidden;
  min-height: 900px;
}

.hero-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

/* Canvas for Three.js animation */
#digital-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  padding: 0 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent-color), #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.75rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.visual-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.visual-icon {
  font-size: 1.5rem;
}

.visual-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.visual-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.work-item.human {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  border: 2px solid rgba(139, 92, 246, 0.2);
}

.work-item.ai {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.05));
  border: 2px solid rgba(0, 210, 255, 0.2);
}

.work-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.work-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  font-size: 1.5rem;
}

.work-info {
  flex: 1;
}

.work-name {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
}

.work-task {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.work-status {
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.human-status {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.ai-status {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: white;
}

.work-arrow {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.btn-arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* About page styles */
.definition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.definition-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.definition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.definition-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.definition-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.definition-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.definition-list li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.comparison-note-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
}

.comparison-note-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.comparison-analogies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.analogy-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.analogy-item.highlight {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.05));
}

.analogy-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.analogy-desc {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Small mega menu for About dropdown */
.mega-menu-small {
  min-width: 280px;
  width: auto;
}

.mega-menu-small .mega-menu-content {
  padding: 1rem;
}

.mega-menu-small .mega-menu-list {
  gap: 0.5rem;
}

.mega-menu-small .mega-menu-list li a {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: block;
}

.mega-menu-small .mega-menu-list li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Features Section Responsive */
@media (max-width: 768px) {
  .tabs-nav {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }

  .tab-btn {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 3px solid transparent;
  }

  .tab-btn.active {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
  }

  .tab-number {
    font-size: 1.5rem;
  }

  .tab-title {
    font-size: 0.9rem;
  }

  .tab-panel-title {
    font-size: 1.35rem;
  }

  .feature-comparison-table {
    font-size: 0.85rem;
  }

  .feature-comparison-table thead th,
  .feature-comparison-table tbody td {
    padding: 0.875rem 1rem;
  }

  .feature-comparison-table tbody td:first-child {
    width: 20%;
  }

  .feature-comparison-table tbody td:nth-child(2) {
    width: 35%;
  }

  .feature-comparison-table tbody td.highlight-column {
    width: 45%;
  }

  .feature-comparison-table tbody td.highlight-column strong {
    font-size: 0.8rem;
  }

  .tab-panel-subtitle {
    font-size: 1rem;
  }

  .tabs-content {
    min-height: auto;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .comparison-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
  }

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

  /* Hero responsive */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .visual-card {
    padding: 1.5rem;
  }

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

  .comparison-analogies {
    grid-template-columns: 1fr;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .company-stat-number {
    font-size: 2rem;
  }

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

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

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

  .join-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .timeline-item:nth-child(even) .timeline-date,
  .timeline-item:nth-child(even) .timeline-content {
    order: 0;
    text-align: left;
  }

  .timeline-date {
    font-size: 1rem;
  }
}

/* Company Introduction Styles */
.company-content {
  max-width: 900px;
  margin: 0 auto;
}

.company-story {
  margin-bottom: 3rem;
}

.company-story-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.company-story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.company-story-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.company-story-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

.company-story-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
  border-radius: 16px;
  border: 2px solid rgba(0, 210, 255, 0.1);
}

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

.company-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.company-stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 600;
}

.company-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.advantage-item {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--bg-light);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.advantage-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.advantage-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--bg-light);
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.team-card.featured-member {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.03), rgba(0, 210, 255, 0.01));
}

.team-card.featured-member:hover {
  box-shadow: 0 16px 48px rgba(0, 210, 255, 0.2);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar .avatar-placeholder {
  font-size: 4rem;
  background: transparent;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-title {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.team-bio strong {
  color: var(--primary-color);
  font-weight: 600;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.expertise-tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Team Vision & Mission */
.team-vision,
.team-mission {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.vision-title,
.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

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

.vision-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.vision-item p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.mission-description {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-date {
  order: 2;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-date {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-color);
  padding-top: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Culture Styles */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.culture-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--bg-light);
  transition: all 0.3s ease;
}

.culture-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.culture-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.culture-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.culture-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Values Styles */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Join Us Styles */
.join-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.join-description h3,
.join-positions h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.join-list {
  list-style: none;
  padding: 0;
}

.join-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.join-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.position-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.position-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.position-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.position-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.join-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.05));
  border-radius: 16px;
}

.join-cta p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.email-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Styles for Team Page */
@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .team-vision,
  .team-mission {
    padding: 1.5rem;
  }

  .vision-title,
  .mission-title {
    font-size: 1.25rem;
  }
}
