/* =========================
   RESELLER REGISTRATION — FULL CSS REPLACEMENT
========================= */

#resellerRegistrationWizard {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.reg-step { width:100%; }
.hidden { display:none; }

.reg-shell {
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:80px;
  align-items:center;
}

.reg-shell.single {
  grid-template-columns: 1fr;
  justify-items:center;
}

.reg-left h1 {
  font-size:48px;
  line-height:1.1;
  margin-bottom:16px;
}

.reg-left p {
  font-size:18px;
  color:#4b5563;
  margin-bottom:20px;
}

.reg-left ul {
  padding-left:18px;
  color:#111827;
}

.reg-card {
  background:#fff;
  border-radius:16px;
  padding:36px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.reg-card.wide { max-width:900px; }

.reg-card h3 {
  font-size:22px;
  margin-bottom:20px;
}

.reg-card input,
.reg-card select {
  width:100%;
  padding:14px 16px;
  margin-bottom:14px;
  border-radius:10px;
  border:1.5px solid #d1d5db;
  font-size:15px;
}

.reg-card input:focus,
.reg-card select:focus {
  outline:none;
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.btn-primary {
  width:100%;
  padding:14px;
  border-radius:10px;
  border:none;
  background:#2563eb;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.btn-primary:hover { background:#1e40af; }

.btn-ghost {
  background:transparent;
  border:none;
  color:#2563eb;
  font-weight:600;
  cursor:pointer;
}

.reg-actions {
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:12px;
}

.reg-actions .btn-primary { flex:1; }

.reg-error-banner {
  max-width:800px;
  margin:20px auto;
  padding:14px 18px;
  border-radius:10px;
  background:#fee2e2;
  color:#991b1b;
  font-weight:600;
}

.plan-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-bottom:24px;
}

.plan-card {
  border:2px solid #e5e7eb;
  border-radius:14px;
  padding:24px;
  cursor:pointer;
  position:relative;
}

.plan-card input { display:none; }

.plan-card.is-recommended { border-color:#2563eb; }

.plan-badge {
  position:absolute;
  top:-12px;
  left:20px;
  background:#2563eb;
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.plan-card h4 { margin-bottom:8px; }

.plan-card .price {
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
}

@media (max-width: 900px) {
  .reg-shell { grid-template-columns:1fr; padding:48px 16px; }
  .reg-left h1 { font-size:36px; }
}