/* INTERACTIVE STEPS COMPONENT */

.interactive-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.interactive-step {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.interactive-step:hover {
  border-color: var(--business-primary);
  box-shadow: 0 8px 25px rgba(76, 99, 210, 0.15);
  transform: translateY(-2px);
}

.interactive-step.expanded {
  border-color: var(--business-primary);
  box-shadow: 0 12px 40px rgba(76, 99, 210, 0.2);
}

.step-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.step-number-interactive {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(76, 99, 210, 0.3);
}

.step-icon-interactive {
  width: 40px;
  height: 40px;
  background: rgba(76, 99, 210, 0.1);
  color: var(--business-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-basic-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.step-title-interactive {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
}

.step-subtitle-interactive {
  font-size: 0.9rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.free-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.step-expand-icon {
  color: var(--business-primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.interactive-step.expanded .step-expand-icon {
  transform: rotate(180deg);
}

.step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-step.expanded .step-details {
  max-height: 400px;
}

.step-expanded-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 0;
  animation: slideDown 0.4s ease-out;
  text-align: center;
}

.step-expanded-content h4 {
  margin: 1rem 0 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
}

.step-expanded-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-expanded-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #4a5568;
  line-height: 1.5;
}

.step-expanded-content li::before {
  content: '✓';
  color: var(--business-primary);
  font-weight: 700;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.step-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-highlight i {
  color: #10b981;
  font-size: 1rem;
}

.step-highlight span {
  color: #065f46;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-link {
  color: var(--business-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.pricing-link:hover {
  color: var(--business-secondary);
  text-decoration: underline;
}

/* Animation for content reveal */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .step-header {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .step-number-interactive {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon-interactive {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .step-title-interactive {
    font-size: 1.125rem;
  }
  
  .step-subtitle-interactive {
    font-size: 0.875rem;
  }
  
  .step-expanded-content {
    padding: 0 1rem 1rem 1rem;
  }
}