.workers-features-page {
  min-height: 100vh;
  background: var(--bg-body);
}

/* Hero Section */
.features-hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-purple), #a855f7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.features-hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.features-hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-purple), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-hero .hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 35rem;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fade-up 0.5s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Feature Colors */
.feature-purple { border-left: 4px solid var(--primary-purple); }
.feature-blue { border-left: 4px solid #3b82f6; }
.feature-green { border-left: 4px solid #22c55e; }
.feature-orange { border-left: 4px solid #f97316; }
.feature-pink { border-left: 4px solid #ec4899; }
.feature-cyan { border-left: 4px solid #06b6d4; }

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

@media (min-width: 480px) {
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cta-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-purple), #8b5cf6);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(106, 62, 235, 0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 62, 235, 0.45);
}
