* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #ffffff; color: #111928; }

/* Landing */
.landing { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.hero { max-width: 700px; text-align: center; }
.badge {
  display: inline-block; background: #eff6ff; color: #1A56DB; padding: 0.4rem 1rem;
  border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; color: #111928; }
.gradient-text { background: linear-gradient(135deg, #1A56DB, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { font-size: 1.15rem; color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.proof-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.proof-points span { color: #059669; font-weight: 500; font-size: 0.95rem; }
.cta-button {
  background: #1A56DB; color: white; border: none; padding: 1rem 2.5rem;
  font-size: 1.15rem; font-weight: 600; border-radius: 12px; cursor: pointer;
  font-family: inherit; transition: all 0.2s;
}
.cta-button:hover { background: #1648b8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,0.3); }

/* Wizard */
.wizard-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #f9fafb; }
.wizard-card {
  background: white; border-radius: 16px; padding: 2.5rem; max-width: 600px; width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.progress-bar { height: 4px; background: #e5e7eb; border-radius: 2px; margin-bottom: 0.5rem; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #1A56DB, #7c3aed); border-radius: 2px; transition: width 0.3s; width: 20%; }
.step-indicator { font-size: 0.85rem; color: #9ca3af; margin-bottom: 2rem; }

.wizard-step h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.wizard-step .hint { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #d1d5db; border-radius: 8px;
  font-family: inherit; font-size: 1rem; transition: border 0.2s;
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #1A56DB; box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.radio-option {
  border: 2px solid #e5e7eb; border-radius: 10px; padding: 0.8rem 1rem;
  cursor: pointer; transition: all 0.2s; text-align: center; font-weight: 500;
}
.radio-option:hover { border-color: #1A56DB; background: #eff6ff; }
.radio-option.selected { border-color: #1A56DB; background: #eff6ff; color: #1A56DB; }
.radio-option input { display: none; }

.wizard-nav { display: flex; justify-content: space-between; margin-top: 2rem; }
.btn { padding: 0.7rem 1.5rem; border-radius: 10px; border: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 1rem; transition: all 0.2s; }
.btn-next { background: #1A56DB; color: white; margin-left: auto; }
.btn-next:hover { background: #1648b8; }
.btn-back { background: transparent; color: #6b7280; border: 1px solid #d1d5db; }
.btn-back:hover { background: #f9fafb; }
.btn-primary { background: #1A56DB; color: white; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary:hover { background: #1648b8; }
.btn-outline { background: white; border: 1px solid #d1d5db; color: #374151; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-outline:hover { background: #f9fafb; }
.btn-secondary { background: transparent; color: #6b7280; border: 1px solid #d1d5db; margin-top: 1rem; }
.btn-copy { background: #1A56DB; color: white; font-size: 0.85rem; padding: 0.5rem 1rem; }

/* Loading */
.loading-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #f9fafb; }
.loading-card { text-align: center; max-width: 400px; }
.spinner {
  width: 48px; height: 48px; border: 4px solid #e5e7eb; border-top-color: #1A56DB;
  border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-card h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.loading-card p { color: #6b7280; }

/* Success */
.success-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #f9fafb; }
.success-card { text-align: center; max-width: 500px; background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.client-label { color: #6b7280; margin-bottom: 1.5rem; }
.result-actions { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.share-box { background: #f9fafb; border-radius: 10px; padding: 1rem; margin-bottom: 1rem; text-align: left; }
.share-box label { font-size: 0.85rem; color: #6b7280; display: block; margin-bottom: 0.5rem; }
.share-input { display: flex; gap: 0.5rem; }
.share-input input { flex: 1; padding: 0.5rem 0.75rem; border: 1px solid #d1d5db; border-radius: 8px; font-size: 0.85rem; font-family: monospace; }

/* Error */
.error-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.error-card { text-align: center; max-width: 400px; background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.error-icon { font-size: 3rem; margin-bottom: 1rem; }
.error-card p { color: #6b7280; margin-bottom: 1.5rem; }

/* Mobile */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .radio-grid { grid-template-columns: 1fr; }
  .wizard-card { padding: 1.5rem; }
}
