.register-page { background: var(--gradient-bg); min-height: 100vh; }
.register-main { padding: 40px 0 80px; }
.register-card { max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 48px 40px; }
.register-card > h1 { text-align: center; font-size: 1.8rem; margin-bottom: 8px; }
.register-sub { text-align: center; color: var(--text-light); margin-bottom: 32px; }

.progress-bar { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.progress-step { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-light); font-weight: 500; }
.progress-step span { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #e0e0e0; color: #999; font-weight: 700; font-size: .75rem; }
.progress-step.active span { background: var(--primary); color: #fff; }
.progress-step.active { color: var(--primary); font-weight: 700; }
.progress-step.done span { background: #28ca42; color: #fff; }
.progress-step.done { color: #28ca42; }
.progress-line { width: 24px; height: 2px; background: #e0e0e0; }

.form-step.hidden { display: none; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .95rem; }
.form-group input { width: 100%; padding: 14px 16px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; outline: none; transition: border .2s; font-family: inherit; }
.form-group input:focus { border-color: var(--primary); }
.btn-full { width: 100%; text-align: center; margin-top: 8px; }
.form-note { text-align: center; margin-top: 16px; color: var(--text-light); font-size: .9rem; }
.form-note a { color: var(--primary); font-weight: 600; }

.step-desc { text-align: center; color: var(--text-light); margin-bottom: 24px; }

.niche-grid, .style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.niche-card, .style-card { border: 2px solid #e0e0e0; border-radius: 12px; padding: 20px; text-align: center; cursor: pointer; transition: all .2s; }
.niche-card:hover, .style-card:hover { border-color: var(--primary); background: rgba(108,58,255,.03); }
.niche-card.selected, .style-card.selected { border-color: var(--primary); background: rgba(108,58,255,.06); box-shadow: 0 0 0 3px rgba(108,58,255,.15); }
.niche-icon { font-size: 2.5rem; margin-bottom: 8px; }
.niche-name, .style-name { font-weight: 600; font-size: .95rem; }

.style-preview { height: 80px; border-radius: 8px; margin-bottom: 12px; }
.select-count { text-align: center; margin-bottom: 16px; color: var(--text-light); }

.plan-selector { display: flex; flex-direction: column; gap: 12px; }
.plan-option { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 2px solid #e0e0e0; border-radius: 10px; cursor: pointer; transition: all .2s; font-weight: 500; }
.plan-option:has(input:checked) { border-color: var(--primary); background: rgba(108,58,255,.04); }
.plan-option input { accent-color: var(--primary); }

.success-animation { text-align: center; }
.success-icon { font-size: 4rem; margin-bottom: 16px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.success-desc { color: var(--text-light); font-size: 1.1rem; margin-bottom: 32px; }
.success-steps { text-align: left; max-width: 400px; margin: 0 auto; }
.success-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #eee; }
.success-step:last-child { border-bottom: none; }
.ss-icon { font-size: 1.5rem; }
.success-step p { color: var(--text-light); font-size: .9rem; margin-top: 4px; }

@media (max-width: 768px) {
    .register-card { padding: 32px 20px; margin: 0 12px; }
    .niche-grid, .style-grid { grid-template-columns: repeat(2, 1fr); }
    .progress-bar { gap: 4px; }
    .progress-line { width: 12px; }
}
