/* Onboarding Container */
.onboarding-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 3rem;
}

.onboarding-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.onboarding-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Onboarding Steps */
.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.onboarding-step {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.onboarding-step.step-complete {
    border-color: var(--success-color, #10b981);
    background: linear-gradient(to bottom, var(--bg-card) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.onboarding-step.step-complete .step-number {
    background: linear-gradient(135deg, var(--success-color, #10b981) 0%, var(--success-color, #10b981) 100%);
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.step-checkmark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--success-color, #10b981);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    padding-left: calc(48px + 1.5rem);
}

.step-complete-content {
    padding-left: calc(48px + 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.success-message {
    color: var(--success-color, #10b981);
    font-weight: 600;
    margin: 0;
}

/* Logo Upload Area */
.logo-upload-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-preview-box {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-preview-box.small {
    width: 120px;
    height: 120px;
}

.logo-preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.btn-remove-logo {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.btn-remove-logo:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.logo-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    width: 200px;
    height: 200px;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.logo-upload-placeholder p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.logo-upload-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    padding: 0 1rem;
}

.logo-upload-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.logo-input-hidden {
    display: none;
}

.btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-save-logo {
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .onboarding-container {
        padding: 1rem;
    }

    .onboarding-header h1 {
        font-size: 2rem;
    }

    .onboarding-step {
        padding: 1.5rem;
    }

    .step-header {
        gap: 1rem;
    }

    .step-content,
    .step-complete-content {
        padding-left: 0;
    }

    .logo-preview-box {
        width: 150px;
        height: 150px;
    }
}
