/* AI Lab Section Styles */
.ai-lab-section {
  padding: 8rem 0;
  background: rgba(248, 250, 252, 0.5);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

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

.ai-lab-header {
  text-align: center;
  margin-bottom: 5rem;
}

.ai-lab-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #4f46e5;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.brain-icon {
  width: 1rem;
  height: 1rem;
}

.ai-lab-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .ai-lab-section .section-title {
    font-size: 4rem;
  }
}

.ai-lab-section .section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
}

.ai-lab-placeholder {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.ai-lab-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(99, 102, 241, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.ai-lab-icon svg {
  width: 2rem;
  height: 2rem;
  color: #4f46e5;
}

.ai-lab-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.ai-lab-description {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.ai-lab-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  font-weight: 600;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

