/* Features Tabs Component Styles */
.features-tabs-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Tab Navigation Styles */
.tab-btn {
  color: #6b7280;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.tab-btn:hover:not(.active) {
  color: var(--primary);
  background: rgba(70, 158, 131, 0.05);
}

/* Tab Content Styles */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Demo Card Animations */
.tab-content .bg-white.rounded-2xl {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .tab-btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .tab-btn span {
    display: none;
  }
  
  .tab-btn svg {
    margin: 0;
  }
}
