.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.workflow-steps h4 {
    padding-bottom: 0;
    margin: 0;
}

.workflow-step {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.2s ease;
    border: 0.5px solid var(--aurora-white-a10);
    border-left: 4px solid var(--aurora-primary);
    box-shadow: var(--aurora-glass-pattern);
}

.workflow-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse 250% 100% at 50% 0%, var(--aurora-white-a04) 0%, var(--aurora-white-a02) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.workflow-step:hover {
    background: var(--aurora-primary-a10);
    transform: translateX(4px);
}

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

.step-header h4::before {
    padding-top: 4px;
    padding-bottom: 4px;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--aurora-primary-a80) 0%, var(--aurora-primary-a60) 100%);
    box-shadow: 0 4px 12px var(--aurora-primary-a30);
    color: var(--aurora-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-title {
    margin: 0;
    color: var(--aurora-white-a85);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    flex: 1;
}

.step-content {
    color: var(--aurora-white-a60);
    line-height: 1.6;
}

.step-content p {
    margin: 0 0 1rem 0;
}

.step-content p:last-child {
    margin-bottom: 0;
}

/* Dark mode support - aurora.css handles dark mode automatically through its variables */

/* Responsive design */
@media (max-width: 768px) {
    .workflow-steps {
        gap: 1rem;
    }
    
    .workflow-step {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .step-header {
        gap: 0.75rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
}