.wizard-page {
    background: #0b1120;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.wizard-main {
    flex: 6;
    background: #0f172a;
    padding: 40px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.wizard-sidebar {
    flex: 4;
    background: #1e293b;
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

/* Header & Steps */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.steps-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.step-dot.active {
    background: var(--primary);
    color: white;
}

.step-line {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

/* Wizard Content */
.step-section {
    display: none;
    max-width: 600px;
    animation: slideIn 0.4s ease;
}

.step-section.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-section h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.step-section p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.input-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.chat-input {
    padding: 20px;
    background: #111;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-input textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 16px;
    outline: none;
    resize: none;
    font-family: inherit;
    min-height: 80px;
    max-height: 150px;
    line-height: 1.5;
}

.chat-input button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
}

/* Upload Cards */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.upload-card {
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-card:hover {
    border-color: var(--primary);
    background: rgba(59,130,246,0.05);
}

.status-indicator {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Chat Sidebar */
.chat-header {
    padding: 24px;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.laura-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.laura-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.laura-info span { font-size: 0.8rem; color: var(--text-muted); }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.msg.bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-bottom-left-radius: 2px;
}

.msg.user {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-input {
    padding: 24px;
    background: rgba(0,0,0,0.2);
    display: flex;
    gap: 12px;
}

.chat-input input {
    flex: 1;
}

.chat-input button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}
