/* ===== WIZARD ===== */
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeIn .2s ease; }
.wizard-step h3 { font-size: .92rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .5px; }

/* ===== DROPZONE (upload) ===== */
.dropzone {
  display: flex; align-items: center; gap: 16px; justify-content: center;
  border: 2px dashed var(--border); border-radius: var(--radius-lg);
  padding: 28px; text-align: left; color: var(--text-secondary); cursor: pointer;
  transition: var(--transition); background: var(--bg);
}
.dropzone:hover { border-color: var(--accent); background: var(--accent-light); }
.dropzone svg { width: 36px; height: 36px; color: var(--text-muted); flex-shrink: 0; }
