/* Onboarding Section Styles */

.onboarding-progress-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.onboarding-progress-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #ffd32f;
}

.progress-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.progress-circle {
    position: relative;
    flex-shrink: 0;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.progress-label {
    font-size: 0.9rem;
    color: #6c757d;
    opacity: 0.8;
}

.progress-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.progress-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.progress-stats {
    font-size: 1rem;
    color: #6c757d;
}

.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.onboarding-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.onboarding-step.completed {
    border-color: #22c55e;
    background: #f0fdf4;
}

.onboarding-step.pending:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ffd32f;
}

.step-indicator {
    flex-shrink: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.onboarding-step.completed .step-number {
    background: #22c55e;
    color: white;
}

.onboarding-step.pending .step-number {
    background: #e9ecef;
    color: #6c757d;
}

.step-content {
    flex: 1;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-title-section {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
}

.step-description {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.step-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.completed {
    background: #dcfce7;
    color: #166534;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.step-details p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-button.primary {
    background: linear-gradient(135deg, #ffd32f 0%, #e6be2a 100%);
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(255, 211, 47, 0.3);
}

.action-button.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 211, 47, 0.4);
}

.action-button.secondary {
    background: #6c757d;
    color: white;
}

.action-button.secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.action-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.onboarding-complete {
    margin-top: 2rem;
}

.completion-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.completion-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.completion-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.completion-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.completion-card .action-button {
    background: white;
    color: #22c55e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.completion-card .action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .progress-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .onboarding-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-status {
        align-self: flex-start;
    }
}
