/* Onboarding Wizard Page Styles */

.onboarding-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
}

.wizard-progress-container {
    margin-bottom: 3rem;
}

.wizard-step-content {
    background: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.1);
}

.wizard-step-header {
    margin-bottom: 2rem;
}

.wizard-step-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.wizard-step-header p {
    font-size: 1rem;
    color: #6c757d;
}

.wizard-step-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wizard-btn-group {
    display: flex;
    gap: 1rem;
}

.skip-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9375rem;
}

.skip-link:hover {
    color: #212529;
    text-decoration: underline;
}

/* Data source selection */
.data-source-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.data-source-card {
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.data-source-card:hover {
    border-color: #0d6efd;
    background: #f8f9fa;
}

.data-source-card.selected {
    border-color: #0d6efd;
    background: #e7f3ff;
}

.data-source-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 0.75rem;
}

.data-source-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.data-source-card p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Hero demo card */
.data-source-card--hero {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #f0f7ff 0%, #e7f3ff 100%);
    padding: 2rem;
    margin-bottom: 0;
}

.data-source-card--hero:hover {
    background: linear-gradient(135deg, #e0efff 0%, #d4ecff 100%);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.data-source-card--hero.selected {
    border-color: #0a58ca;
    background: linear-gradient(135deg, #d4ecff 0%, #c2e4ff 100%);
}

.data-source-card--hero i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.data-source-card--hero h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.data-source-card--hero p {
    font-size: 0.9375rem;
    color: #495057;
    line-height: 1.5;
}

.demo-badge {
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    background: #0d6efd;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Divider between hero and secondary options */
.data-source-divider {
    text-align: center;
    color: #adb5bd;
    font-size: 0.875rem;
    margin: 1.5rem 0 0;
    position: relative;
}

/* Compact secondary options row */
.data-source-options--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.data-source-options--compact .data-source-card {
    padding: 1rem;
}

.data-source-options--compact .data-source-card i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .onboarding-container {
        padding: 1rem;
        margin: 1rem auto;
    }

    .wizard-step-content {
        padding: 1.5rem;
    }

    .wizard-step-footer {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .wizard-btn-group {
        width: 100%;
        flex-direction: column;
    }

    .wizard-btn-group button {
        width: 100%;
    }

    .data-source-options--compact {
        grid-template-columns: 1fr;
    }
}
