/* Registration form styles — shared by public registration and vendor apply */
/* ================================================================
   REGISTRATION PAGE STYLES
   Extends style.css â€” uses same CSS vars & design language
   ================================================================ */

/* Hide Vue-controlled elements until the app has mounted, so users
   never see a brief flash of a modal (e.g. "Payment Issue") whose
   v-if hasn't been evaluated yet. */
[v-cloak] { display: none !important; }

/* â”€â”€ PAGE HEADER â”€â”€ */
.reg-page-header {
  background: linear-gradient(115deg, var(--napsa-blue) 0%, #1f2b5e 100%);
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}
.reg-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='3' fill='%23f9a61b' fill-opacity='0.07'/%3E%3C/svg%3E");
}
.reg-page-header-blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,166,27,0.14), transparent 70%);
  top: 50%; right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.reg-page-header-inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.reg-page-header .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.reg-page-header .breadcrumb a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s;
}
.reg-page-header .breadcrumb a:hover { color: white; }
.reg-page-header .breadcrumb span { color: var(--napsa-yellow); font-weight: 700; }
.reg-page-header .breadcrumb svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 2;
}
.reg-page-header h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800; color: white;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.reg-page-header h1 span { color: white; }
.reg-page-header p {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.6;
}

/* â”€â”€ TYPE SELECTOR (embedded in Step 1 form card) â”€â”€ */
.reg-type-embed {
  padding: 28px 32px 24px;
  background: rgba(35, 45, 97, 0.04);
  border-bottom: 1px solid #edf2f7;
}
.reg-type-embed-header {
  margin-bottom: 20px;
  text-align: left;
}
.reg-type-embed-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--napsa-blue);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.reg-type-embed-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 640px;
}
.reg-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.type-card {
  background: white;
  border-radius: 24px;
  padding: 28px 24px;
  border: 2px solid #edf2f7;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  position: relative;
  text-align: center;
}
.type-card:hover {
  border-color: rgba(249,166,27,0.5);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(35,45,97,0.1);
}
.type-card.active {
  border-color: var(--napsa-yellow);
  background: white;
  box-shadow: 0 0 0 4px rgba(249,166,27,0.12), 0 14px 28px rgba(35,45,97,0.1);
}
.type-card.active .type-icon { background: linear-gradient(135deg, var(--napsa-yellow), #e8920a); }
.type-card.active .type-icon svg { stroke: white; }
.type-card.active .type-name { color: var(--napsa-blue); }

.type-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--napsa-yellow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.6);
  transition: all 0.2s;
}
.type-card.active .type-check { opacity: 1; transform: scale(1); }
.type-check svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }

.type-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-soft));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.25s;
  box-shadow: 0 6px 14px rgba(35,45,97,0.2);
}
.type-icon svg { width: 26px; height: 26px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2; }

.type-name {
  font-size: 15px; font-weight: 800;
  color: var(--napsa-blue);
  margin-bottom: 8px;
}
.type-desc {
  font-size: 12px; color: var(--muted);
  line-height: 1.5;
}
.type-price-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(249,166,27,0.1);
  border: 1px solid rgba(249,166,27,0.3);
  color: #9a6200;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* â”€â”€ LFS PREMIUM CARD â”€â”€ */
.type-card.lfs-premium {
  background: linear-gradient(150deg, #151b3d 0%, #232d61 55%, #1a2254 100%);
  border-color: #c8952a;
  box-shadow: 0 4px 20px rgba(35,45,97,0.3), 0 0 0 1px rgba(249,166,27,0.15);
  overflow: hidden;
}
.type-card.lfs-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(249,166,27,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.type-card.lfs-premium:hover {
  border-color: #f9a61b;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35,45,97,0.4), 0 0 0 1px rgba(249,166,27,0.35);
}
.type-card.lfs-premium.active {
  border-color: #f9a61b;
  background: linear-gradient(150deg, #151b3d 0%, #232d61 55%, #1a2254 100%);
  box-shadow: 0 0 0 4px rgba(249,166,27,0.22), 0 18px 40px rgba(35,45,97,0.4);
}
.type-card.lfs-premium .type-name { color: #fcd97a; }
.type-card.lfs-premium .type-desc { color: rgba(255,255,255,0.65); }
.type-card.lfs-premium .type-icon {
  background: linear-gradient(135deg, #b87d1a, #f9a61b);
  box-shadow: 0 6px 18px rgba(249,166,27,0.4);
}
.type-card.lfs-premium .type-icon svg { stroke: #fff; }
.type-card.lfs-premium.active .type-icon { background: linear-gradient(135deg, #f9a61b, #e8920a); }
.type-card.lfs-premium .type-check { background: #f9a61b; }
.type-card.lfs-premium .type-price-badge {
  background: rgba(249,166,27,0.18);
  border-color: rgba(249,166,27,0.5);
  color: #fcd97a;
}
.lfs-member-tag {
  position: absolute;
  top: 11px; left: 12px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #151b3d;
  background: linear-gradient(135deg, #f9a61b, #ffd166);
  padding: 2px 9px;
  border-radius: 100px;
  line-height: 1.6;
}

/* ── REGISTRATION CLOSED NOTICE ── */
.reg-closed-banner {
  text-align: center;
  padding: 48px 32px 42px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(35,45,97,0.05), rgba(249,166,27,0.08));
  border: 1px solid rgba(35,45,97,0.1);
  border-radius: 28px;
}
.reg-closed-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-soft));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(35,45,97,0.22);
}
.reg-closed-icon svg { width: 30px; height: 30px; stroke: var(--napsa-yellow); fill: none; stroke-width: 1.8; }
.reg-closed-title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(19px, 2.6vw, 24px);
  color: var(--napsa-blue);
  letter-spacing: -0.02em;
}
.reg-closed-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── CORPORATE / VENDOR PORTAL CARD (registration closed) ── */
.reg-portal-card-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #f3f6fa;
  background: rgba(35,45,97,0.025);
}
.reg-portal-card-body { padding: 28px 32px 32px; }
.reg-portal-link { text-decoration: none; }

/* Student fraud warning banner */
.reg-student-warning {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #7f1d1d;
}
.reg-student-warning strong { color: #991b1b; }
.reg-student-warning .warn-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Complimentary entry notice (55+ by date of birth) */
.reg-senior-banner {
  background: linear-gradient(135deg, rgba(35,45,97,0.06), rgba(249,166,27,0.08));
  border: 1px solid rgba(35,45,97,0.12);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--napsa-blue);
}
.reg-senior-banner strong { color: #15803d; }

/* â”€â”€ MAIN FORM AREA â”€â”€ */
.reg-form-section {
  padding: 36px 48px 80px;
  background: var(--section-bg);
}
.reg-form-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* â”€â”€ STEPPER â”€â”€ */
.form-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  background: white;
  border-radius: 16px;
  padding: 20px 28px;
  border: 1px solid #dde3ec;
  box-shadow: 0 8px 24px rgba(35, 45, 97, 0.06);
  overflow-x: auto;
}
.step-item {
  display: flex; align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}
.step-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #dde3ec;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
  background: white;
  transition: all 0.25s;
  flex-shrink: 0;
}
.step-item.done .step-circle {
  background: var(--napsa-yellow);
  border-color: var(--napsa-yellow);
  color: white;
}
.step-item.active .step-circle {
  background: var(--napsa-blue);
  border-color: var(--napsa-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(35,45,97,0.12);
}
.step-item.done .step-circle svg { display: block; }
.step-info { margin-left: 10px; }
.step-label {
  font-size: 11px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.step-name {
  font-size: 13px; font-weight: 700;
  color: var(--napsa-blue);
}
.step-item.active .step-label { color: var(--napsa-yellow); }
.step-connector {
  flex: 1; min-width: 24px;
  height: 2px;
  background: #dde3ec;
  margin: 0 12px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.step-connector.done { background: var(--napsa-yellow); }

/* â”€â”€ FORM CARD â”€â”€ */
.form-card {
  background: white;
  border-radius: 28px;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 24px rgba(35,45,97,0.06);
  overflow: hidden;
}
.form-card-header {
  padding: 28px 32px 0;
  border-bottom: 1px solid #f3f6fa;
  padding-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.form-card-header-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-soft));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-card-header-icon svg { width: 22px; height: 22px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2; }
.form-card-header h2 {
  font-size: 20px; font-weight: 800;
  color: var(--napsa-blue); margin-bottom: 2px;
}
.form-card-header p { font-size: 13px; color: var(--muted); }

.form-body { padding: 32px; }

/* â”€â”€ FORM FIELDS â”€â”€ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label {
  font-size: 13px; font-weight: 700;
  color: var(--napsa-blue); letter-spacing: 0.01em;
}
.form-label span.req { color: var(--napsa-yellow); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde3ec;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--napsa-blue);
  box-shadow: 0 0 0 3px rgba(35,45,97,0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-input::placeholder { color: #b0bac9; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }

/* Date picker (branded) */
.form-input[type="date"] {
  padding-right: 44px;
  font-weight: 700;
  color: var(--napsa-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f9a61b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='3' ry='3'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.form-input[type="date"]:hover {
  border-color: #c6d2e2;
}
.form-input[type="date"]:focus {
  border-color: var(--napsa-blue);
  box-shadow: 0 0 0 3px rgba(35,45,97,0.1), 0 0 0 1px rgba(249,166,27,0.22) inset;
}
.form-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  width: 40px;
}

.field-hint { font-size: 12px; color: var(--muted); margin-top: 2px; }
.field-char-count { font-size: 12px; color: var(--muted); margin-top: 4px; display: block; }
.field-char-count--warn { color: #f59e0b; font-weight: 600; }
.field-error { font-size: 12px; color: #ef4444; font-weight: 600; margin-top: 2px; display: none; }
.form-input.error + .field-error,
.form-select.error + .field-error,
.form-textarea.error + .field-error { display: block; }
.field-error-outline { outline: 2px solid #ef4444; border-radius: 8px; padding: 4px; }

/* â”€â”€ OTP VERIFICATION PANEL â”€â”€ */
.otp-panel {
  margin-top: 10px;
  padding: 14px 16px;
  background: #f8f9ff;
  border: 1px solid #c7d0e8;
  border-radius: 10px;
}
.otp-panel--error { border-color: #ef4444; background: #fff5f5; }
.otp-slots { display: flex; gap: 8px; margin-bottom: 8px; }
.otp-slot {
  width: 42px;
  height: 50px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--napsa-blue);
  background: #fff;
  border: 2px solid #c7d0e8;
  border-radius: 10px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  caret-color: var(--napsa-blue);
}
.otp-slot:focus {
  border-color: var(--napsa-blue);
  box-shadow: 0 0 0 3px rgba(35,45,97,0.12);
}
.otp-slot:disabled { opacity: 0.5; cursor: not-allowed; }
.otp-panel--error .otp-slot { border-color: #ef4444; }
.otp-msg--checking { color: var(--napsa-blue); }
.btn-otp-send, .btn-otp-verify {
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-soft));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: filter .15s;
}
.btn-otp-send:hover, .btn-otp-verify:hover { filter: brightness(1.08); }
.btn-otp-send:disabled, .btn-otp-verify:disabled { opacity: 0.6; cursor: not-allowed; }
.otp-resend-row { margin-top: 8px; font-size: 12px; color: var(--muted); }
.btn-link {
  background: none; border: none; padding: 0;
  color: var(--napsa-blue); font-size: 12px; font-weight: 700;
  cursor: pointer; text-decoration: underline;
}
.btn-link:disabled { opacity: 0.5; cursor: not-allowed; }
.otp-msg { font-size: 12px; font-weight: 600; margin: 6px 0 0; }
.otp-msg--error   { color: #b91c1c; }
.otp-msg--success { color: #15803d; }
.otp-verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px;
  color: #15803d;
  font-size: 13px; font-weight: 700;
}

/* File upload */
.file-upload-zone {
  border: 2px dashed #dde3ec;
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafbff;
}
.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--napsa-yellow);
  background: rgba(249,166,27,0.04);
}
.file-upload-zone svg { width: 36px; height: 36px; stroke: var(--napsa-yellow); fill: none; stroke-width: 1.5; margin-bottom: 10px; }
.file-upload-zone p { font-size: 14px; font-weight: 600; color: var(--napsa-blue); margin-bottom: 4px; }
.file-upload-zone span { font-size: 12px; color: var(--muted); }
.file-upload-zone input[type="file"] { display: none; }
.file-name-display {
  margin-top: 12px; font-size: 13px; font-weight: 600;
  color: var(--napsa-blue); display: none;
}

/* T-shirt size picker */
.tshirt-grid {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.tshirt-btn {
  width: 52px; height: 44px;
  border-radius: 10px;
  border: 2px solid #dde3ec;
  background: white;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.tshirt-btn:hover:not(.sold-out) { border-color: var(--napsa-blue); color: var(--napsa-blue); }
.tshirt-btn.selected {
  background: var(--napsa-blue);
  border-color: var(--napsa-blue);
  color: white;
  box-shadow: 0 4px 10px rgba(35,45,97,0.25);
}
.tshirt-btn.sold-out {
  opacity: 0.35; cursor: not-allowed;
  text-decoration: line-through;
}

/* Discount code field */
.discount-row {
  display: flex; gap: 10px;
}
.discount-row .form-input { flex: 1; }
.btn-verify {
  padding: 12px 22px;
  background: var(--napsa-blue);
  color: white; border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-verify:hover { background: var(--napsa-blue-soft); }
.discount-status {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  margin-top: 8px; display: none;
}
.discount-status.valid { background: rgba(34,197,94,0.1); color: #15803d; display: block; }
.discount-status.invalid { background: rgba(239,68,68,0.1); color: #dc2626; display: block; }

/* Checkbox / Radio */
.checkbox-group,
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-item,
.radio-item {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] { display: none; }
.custom-check,
.custom-radio {
  width: 20px; height: 20px;
  border: 2px solid #dde3ec;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
  background: white;
}
.custom-radio { border-radius: 50%; }
.checkbox-item input:checked + .custom-check {
  background: var(--napsa-blue);
  border-color: var(--napsa-blue);
}
.checkbox-item input:checked + .custom-check::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.radio-item input:checked + .custom-radio {
  border-color: var(--napsa-yellow);
}
.radio-item input:checked + .custom-radio::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--napsa-yellow);
  border-radius: 50%;
  display: block;
}
.check-label,
.radio-label { font-size: 14px; font-weight: 500; color: var(--text); }
.check-label a { color: var(--napsa-blue); font-weight: 700; }
.check-label span { font-size: 12px; color: var(--muted); display: block; margin-top: 2px; }

/* Category radio cards */
.category-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cat-radio-card {
  position: relative;
  cursor: pointer;
}
.cat-radio-label {
  display: block;
  padding: 16px 18px;
  border: 2px solid #dde3ec;
  border-radius: 16px;
  transition: all 0.2s;
  background: white;
}
.cat-radio-card.cat-radio-selected .cat-radio-label {
  border-color: var(--napsa-yellow);
  background: rgba(249,166,27,0.04);
  box-shadow: 0 0 0 3px rgba(249,166,27,0.12);
}
.cat-radio-distance {
  font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 4px;
}
.cat-radio-name {
  font-size: 15px; font-weight: 800;
  color: var(--napsa-blue);
}
.cat-radio-price {
  font-size: 12px; font-weight: 600;
  color: var(--muted); margin-top: 4px;
}
.cat-radio-card.cat-radio-selected .cat-radio-name { color: #9a6200; }
.cat-radio-card.cat-radio-selected .cat-radio-price { color: #9a6200; }

/* Payment method selector */
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 2px solid #dde3ec;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}
.payment-method:hover { border-color: rgba(35,45,97,0.3); }
.payment-method-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.payment-coming-soon {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: #f0f2f8;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.payment-method.selected {
  border-color: var(--napsa-yellow);
  background: rgba(249,166,27,0.04);
  box-shadow: 0 0 0 3px rgba(249,166,27,0.1);
}
.payment-method input[type="radio"] { display: none; }
.payment-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.payment-icon.mtn    { background: #ffcb00; }
.payment-icon.airtel { background: #e2001a; color: white; font-weight: 800; font-size: 10px; }
.payment-icon.card   { background: var(--napsa-blue); }
.payment-icon.card svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.payment-info { flex: 1; }
.payment-name { font-size: 14px; font-weight: 700; color: var(--text); }
.payment-desc { font-size: 12px; color: var(--muted); }
.payment-radio-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #dde3ec;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.payment-method.selected .payment-radio-dot {
  border-color: var(--napsa-yellow);
}
.payment-method.selected .payment-radio-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--napsa-yellow);
  border-radius: 50%;
  display: block;
}

/* Mobile money input (shown conditionally) */
.mobile-money-input { margin-top: 14px; display: none; }
.mobile-money-input.show { display: block; }

/* Form navigation */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px;
  border-top: 1px solid #f3f6fa;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-back {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 2px solid #dde3ec;
  padding: 11px 22px; border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--muted); cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-back:hover { border-color: var(--napsa-blue); color: var(--napsa-blue); }
.btn-back svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-next {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(95deg, var(--napsa-blue), var(--napsa-blue-soft));
  border: none; padding: 13px 28px; border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: white; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 16px rgba(35,45,97,0.25);
}
.btn-next:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(35,45,97,0.3); }
.btn-next:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-next svg { width: 16px; height: 16px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2.5; }

.btn-submit {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(95deg, var(--napsa-yellow), #e8920a);
  border: none; padding: 13px 32px; border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: white; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 18px rgba(249,166,27,0.4);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,166,27,0.5); }
.btn-submit svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }

/* â”€â”€ SIDEBAR â”€â”€ */
.reg-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.sidebar-card {
  background: white;
  border-radius: 24px;
  border: 1px solid #edf2f7;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(35,45,97,0.05);
}
.sidebar-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f3f6fa;
  font-size: 14px; font-weight: 800;
  color: var(--napsa-blue);
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card-header svg { width: 18px; height: 18px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2; }
.sidebar-card-body { padding: 20px 24px; }

/* Summary list */
.summary-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.summary-list li {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  font-size: 13px;
}
.summary-list li .s-label { color: var(--muted); font-weight: 500; }
.summary-list li .s-value { color: var(--napsa-blue); font-weight: 700; text-align: right; max-width: 160px; }
.summary-list li .s-value.s-value-free { color: #16a34a; }
.summary-divider { height: 1px; background: #f0f3f8; margin: 8px 0; }
.summary-total {
  display: flex; justify-content: space-between;
  font-size: 15px; font-weight: 800;
  color: var(--napsa-blue);
  padding-top: 8px;
}
.summary-total .total-amount { color: var(--napsa-yellow); }

/* Info card */
.info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.info-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.info-list li svg { width: 16px; height: 16px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }

/* Help card */
.help-card {
  background: linear-gradient(115deg, var(--napsa-blue), #1f2b5e);
  border-radius: 24px;
  padding: 24px;
  color: white;
  position: relative; overflow: hidden;
}
.help-card::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='2' fill='%23f9a61b' fill-opacity='0.1'/%3E%3C/svg%3E");
}
.help-card-inner { position: relative; z-index: 1; }
.help-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.help-card p { font-size: 12px; opacity: 0.75; line-height: 1.5; margin-bottom: 16px; }
.btn-help {
  display: flex; align-items: center; gap: 8px;
  background: rgba(249,166,27,0.2);
  border: 1px solid rgba(249,166,27,0.4);
  color: var(--napsa-yellow);
  padding: 9px 18px; border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.btn-help:hover { background: rgba(249,166,27,0.3); }
.btn-help svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* â”€â”€ SUCCESS STATE â”€â”€ */
/* â”€â”€ SUCCESS MODAL â”€â”€ */
.success-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 50, 0.6);
  backdrop-filter: blur(4px);
  /* Above sticky nav (100) and payment-widget overlays; teleported to body so fixed is viewport-relative */
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeInBackdrop 0.25s ease both;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.success-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(15,20,50,0.22);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUpModal 0.35s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slideUpModal {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.success-screen {
  text-align: center;
  padding: 48px 36px 40px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--napsa-yellow), #e8920a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(249,166,27,0.4);
  animation: popIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.success-icon svg { width: 40px; height: 40px; stroke: white; fill: none; stroke-width: 2.5; }
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.success-screen h2 { font-size: 28px; font-weight: 800; color: var(--napsa-blue); margin-bottom: 12px; }
.success-screen p { font-size: 15px; color: var(--muted); max-width: 380px; margin: 0 auto 28px; line-height: 1.6; }
.success-ref {
  background: var(--section-bg);
  border: 1px dashed #dde3ec;
  border-radius: 12px;
  padding: 14px 20px;
  display: inline-block;
  font-size: 13px; color: var(--muted);
  margin-bottom: 28px;
}
.success-ref strong { color: var(--napsa-blue); font-size: 18px; display: block; margin-top: 4px; }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1100px) {
  .reg-form-inner { grid-template-columns: 1fr; }
  .reg-sidebar { position: static; }
}
@media (max-width: 768px) {
  .reg-page-header { padding: 90px 20px 48px; }
  .reg-type-embed { padding: 22px 20px 0; }
  .reg-form-section { padding: 28px 20px 60px; }
  .reg-type-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr 1fr; }
  .form-body { padding: 20px; }
  .form-card-header { padding: 20px 20px 16px; }
  .form-nav { padding: 18px 20px; }
  .category-radio-grid { grid-template-columns: 1fr 1fr; }
  .form-stepper { padding: 16px 20px; gap: 0; }
  .step-info { display: none; }
  .step-connector { min-width: 16px; }
}
@media (max-width: 480px) {
  .reg-type-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .type-card { padding: 20px 14px; }
  .category-radio-grid { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column-reverse; }
  .btn-next, .btn-submit, .btn-back { width: 100%; justify-content: center; }
}
