* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0fdf4;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page { width: 100%; }

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
}

.left { flex: 1; padding-top: 0.5rem; }
.right { flex: 1; }

.badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.steps {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.steps li::before {
  content: "→";
  color: #15803d;
  font-weight: 700;
  flex-shrink: 0;
}

.stats {
  display: flex;
  gap: 1rem;
}

.stat {
  flex: 1;
  text-align: center;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 1rem;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #15803d;
}

.stat-label {
  font-size: 0.75rem;
  color: #475569;
  margin-top: 0.2rem;
}

.field { margin-bottom: 1rem; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.3rem;
}

label .req { color: #ef4444; }

input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  color: #0f172a;
}

input:focus, select:focus, textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

textarea { min-height: 72px; resize: vertical; }

.row { display: flex; gap: 0.75rem; }
.row .field { flex: 1; }

button {
  width: 100%;
  padding: 0.75rem;
  background: #15803d;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

button:hover { background: #166534; }
button:disabled { opacity: 0.6; cursor: not-allowed; }

/* Validation */
.error {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  min-height: 1.2em;
}

input.invalid, select.invalid, textarea.invalid {
  border-color: #ef4444;
}

input.invalid:focus, select.invalid:focus, textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

/* Success state */
.success-message {
  text-align: center;
  padding: 2rem 0;
}

.success-message h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.success-message p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 720px) {
  .card { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 80px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  .row { flex-direction: column; gap: 0; }
}
