.app-notifications-module_notification-list__LBB-1 {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 450px;
  z-index: 20004;
  max-height: 90%;
  overflow: auto;
  overflow-x: hidden;
}
.app-notifications-module_notification-list__LBB-1 .app-notifications-module_animated__CjKTG.app-notifications-module_hidden__R5le- {
  display: none;
}
.toast-module_toast__cqGx1 {
  margin-bottom: 10px;
  display: flex;
  width: 95%;
  background-color: white;
  border-radius: 6px;
  color: #41536E;
  box-shadow: 5px 5px 8px rgba(216, 196, 196, 0.4784313725);
  border: 1px solid rgba(236, 236, 236, 0.7607843137);
}
.toast-module_toast__cqGx1 .toast-module_type1__wrClJ {
  display: flex;
  align-items: center;
  background-color: #4dcea0;
  color: white;
  padding: 11px;
  border-radius: 6px 0 0 6px;
}
.toast-module_toast__cqGx1 .toast-module_type1__wrClJ svg {
  font-size: 40px;
}
.toast-module_toast__cqGx1 .toast-module_type2__-B83F {
  display: flex;
  align-items: center;
  background-color: #ffaa4a;
  color: white;
  padding: 11px;
  border-radius: 6px 0 0 6px;
}
.toast-module_toast__cqGx1 .toast-module_type2__-B83F svg {
  font-size: 40px;
}
.toast-module_toast__cqGx1 .toast-module_type3__bYsR6 {
  display: flex;
  align-items: center;
  background-color: #E25650;
  color: white;
  padding: 11px;
  border-radius: 6px 0 0 6px;
}
.toast-module_toast__cqGx1 .toast-module_type3__bYsR6 svg {
  font-size: 40px;
}
.toast-module_toast__cqGx1 .toast-module_type4__HwiyF {
  display: flex;
  align-items: center;
  background-color: #70cbf8;
  color: white;
  padding: 11px;
  border-radius: 6px 0 0 6px;
}
.toast-module_toast__cqGx1 .toast-module_type4__HwiyF svg {
  font-size: 40px;
}
.toast-module_toast__cqGx1 .toast-module_content__dcHoc {
  flex: 1;
  padding: 10px 5px 10px 15px;
}
.toast-module_toast__cqGx1 .toast-module_content__dcHoc .toast-module_name__HlbaQ {
  font-weight: bold;
  font-size: 12px;
}
.toast-module_toast__cqGx1 .toast-module_content__dcHoc .toast-module_text__bAkGO {
  font-size: 14px;
  color: #69707e;
  word-break: break-word;
}
.toast-module_toast__cqGx1 .toast-module_close__b5FIs {
  color: #69707e;
  cursor: pointer;
  padding: 1px 3px 0 0;
  opacity: 0.6;
}
.toast-module_toast__cqGx1 .toast-module_close__b5FIs:hover {
  opacity: 1;
}
.toast-module_toast__cqGx1 .toast-module_close__b5FIs > svg {
  height: 20px;
  width: 20px;
}
/* Design tokens scoped to the wizard root — no global leakage */
.rw-wizard {
  --bg-page: #F4F2EC;
  --bg-card: #FFFFFF;
  --text-primary: #14182B;
  --text-secondary: #5C6178;
  --text-tertiary: #94989F;
  --border-subtle: #ECE9E1;
  --border-default: #E3DFD4;
  --border-strong: #C7C3B5;
  --accent: #2E45EB;
  --accent-soft: #EEF0FE;
  --accent-text: #1A2BB8;
  --success: #0E7C46;
  --success-soft: #E8F5EE;
  --warning: #B25B0A;
  --warning-soft: #FDF1DC;
  --danger: #B83A1F;
  --danger-soft: #FCEBE6;

  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
  min-height: 100vh;
}

/* ---- PAGE ---- */
.rw-wizard .page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

/* ---- BRAND BAR ---- */
.rw-wizard .brand-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: 13px;
}
.rw-wizard .brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5B7DF7 0%, #B6D4FF 100%);
  position: relative;
  flex-shrink: 0;
}
.rw-wizard .brand-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: white;
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 25% 50%);
}
.rw-wizard .brand-bar b {
  color: var(--text-primary);
  font-weight: 600;
}
.rw-wizard .brand-bar .sep {
  color: var(--text-tertiary);
}

/* ---- LAYOUT ---- */
.rw-wizard .layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* ---- FORM CARD ---- */
.rw-wizard .form-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 36px 28px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}

/* ---- STEP INDICATOR ---- */
.rw-wizard .steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.rw-wizard .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.rw-wizard .step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border-default);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: all 200ms ease;
  z-index: 1;
}
.rw-wizard .step-label {
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-top: 8px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 200ms ease;
}
.rw-wizard .step-item:hover .step-circle {
  border-color: var(--border-strong);
}
.rw-wizard .step-item:hover .step-label {
  color: var(--text-secondary);
}
.rw-wizard .step-line {
  flex: 1;
  height: 1.5px;
  background: var(--border-default);
  margin: -22px 0 0;
  position: relative;
  transition: background 200ms ease;
}
.rw-wizard .step-item.completed .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.rw-wizard .step-item.completed .step-label {
  color: var(--text-secondary);
}
.rw-wizard .step-item.completed + .step-line {
  background: var(--accent);
}
.rw-wizard .step-item.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.rw-wizard .step-item.active .step-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---- STEP CONTENT (animations) ---- */
.rw-wizard .step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rw-wizard .step-content > * {
  animation: rw-fadeIn 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.rw-wizard .step-content > *:nth-child(1) { animation-delay: 0.05s; }
.rw-wizard .step-content > *:nth-child(2) { animation-delay: 0.1s; }
.rw-wizard .step-content > *:nth-child(3) { animation-delay: 0.15s; }
.rw-wizard .step-content > *:nth-child(4) { animation-delay: 0.2s; }
.rw-wizard .step-content > *:nth-child(5) { animation-delay: 0.25s; }
.rw-wizard .step-content > *:nth-child(6) { animation-delay: 0.3s; }
.rw-wizard .step-content > *:nth-child(7) { animation-delay: 0.35s; }
.rw-wizard .step-content > *:nth-child(8) { animation-delay: 0.4s; }

@keyframes rw-fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0);   }
}


/* ---- PRACTICE SIDEBAR ---- */
.rw-wizard .practice-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 24px;
}
.rw-wizard .practice-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5B7DF7 0%, #B6D4FF 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.rw-wizard .practice-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.rw-wizard .practice-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}
.rw-wizard .practice-info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-primary);
  line-height: 1.4;
}
.rw-wizard .hours-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.rw-wizard .hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
}
.rw-wizard .hours-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-primary);
}
.rw-wizard .hours-row.closed {
  color: var(--text-tertiary);
}

/* ---- STEP NAV ---- */
.rw-wizard .step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}
.rw-wizard .step-nav .MuiButtonBase-root {
  height: 36px;
  min-width: 72px;
  padding: 0 18px;
}

/* ---- MUI v5 OVERRIDES ---- */

/* Hide SectionTitle (h2) and its description (body2) inside AppointmentInfoForm
   — replaced by the .section-split divider rendered above it in AppointmentStep */
.rw-wizard .rw-appt-info .MuiTypography-h2:first-of-type,
.rw-wizard .rw-appt-info .MuiTypography-body2:first-of-type {
  display: none;
}

/* ---- SECTION DIVIDER ---- */
.rw-wizard .section-split {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 22px;
}
.rw-wizard .section-split::before,
.rw-wizard .section-split::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.rw-wizard .section-split-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .rw-wizard .layout {
    grid-template-columns: 1fr;
  }
  .rw-wizard .practice-card {
    position: static;
  }
}

/* ================================================================
   INSURANCE STEP — Payment toggle, tab bar, info box, upload zones
   ================================================================ */

/* ---- Payment Method Toggle ---- */
.rw-wizard .rw-ins-payment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.rw-wizard .rw-ins-payment-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease;
  font-family: inherit;
  color: inherit;
  width: 100%;
}

.rw-wizard .rw-ins-payment-card:hover {
  border-color: var(--border-strong);
}

.rw-wizard .rw-ins-payment-card.rw-ins-payment-card--selected {
  border: 2px solid var(--accent);
  padding: 13.5px 15.5px;
  background: var(--accent-soft);
}

.rw-wizard .rw-ins-payment-card__radio {
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
}

.rw-wizard .rw-ins-payment-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rw-wizard .rw-ins-payment-card__title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.rw-wizard .rw-ins-payment-card__subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---- Entry Method Tab Bar ---- */
.rw-wizard .rw-ins-tab-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  border-radius: 10px;
  margin-bottom: 16px;
}

.rw-wizard .rw-ins-tab {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rw-wizard .rw-ins-tab:hover {
  background: var(--bg-page);
  color: var(--text-primary);
}

.rw-wizard .rw-ins-tab.rw-ins-tab--selected {
  background: var(--accent-soft) !important;
  color: var(--accent-text);
  font-weight: 600;
}

/* ---- Info Box ---- */
.rw-wizard .rw-ins-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(46, 69, 235, 0.18);
  border-radius: 10px;
  margin-bottom: 16px;
  color: var(--accent-text);
}

.rw-ins-info-box svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.rw-wizard .rw-ins-info-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.rw-wizard .rw-ins-info-box__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
}

.rw-wizard .rw-ins-info-box__link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--accent-text);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rw-wizard .rw-ins-info-box__link:hover {
  color: var(--accent);
}

/* ---- Upload Zones ---- */
.rw-wizard .rw-ins-upload {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.rw-wizard .rw-ins-upload__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rw-wizard .rw-ins-upload__zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 24px 16px 20px;
  border: 1.5px dashed var(--border-strong);
  border-radius: 10px;
  background: var(--bg-card);
  min-height: 140px;
  transition: border-color 150ms ease, background 150ms ease;
  color: var(--text-secondary);
}

.rw-wizard .rw-ins-upload__zone:not(.rw-ins-upload__zone--disabled):not(.rw-ins-upload__zone--has-file):hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-text);
}

.rw-wizard .rw-ins-upload__zone--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.rw-wizard .rw-ins-upload__zone--drag-over {
  border-color: var(--accent) !important;
  border-style: solid !important;
  background: var(--accent-soft) !important;
  color: var(--accent-text) !important;
}

/* File-selected state — stretch content, keep drop target active */
.rw-wizard .rw-ins-upload__zone--has-file {
  position: relative;
  align-items: stretch;
  padding: 12px;
  border-style: solid;
  border-color: var(--border-default);
  overflow: hidden;
  gap: 4px;
  cursor: default;
}

/* ---- Preview (inline in the zone when file is selected) ---- */
.rw-wizard .rw-ins-upload__preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.rw-wizard .rw-ins-upload__preview-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rw-wizard .rw-ins-upload__preview-remove {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.rw-wizard .rw-ins-upload__preview-remove:hover {
  background: var(--danger-soft);
  border-color: var(--danger);
  color: var(--danger);
}

.rw-wizard .rw-ins-upload__preview-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--bg-page);
}

.rw-wizard .rw-ins-upload__preview-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}

.rw-wizard .rw-ins-upload__preview-size {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* Drag-to-replace overlay (shown over the preview when dragging) */
.rw-wizard .rw-ins-upload__drop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 69, 235, 0.88);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  border-radius: 8px;
}

/* ---- Validation error within the drop zone ---- */
.rw-wizard .rw-ins-upload__zone-error {
  font-size: 11.5px;
  color: var(--danger);
  text-align: center;
  line-height: 1.4;
}

/* ---- Success banner ---- */
.rw-wizard .rw-ins-upload__success {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--success-soft);
  border: 1px solid rgba(14, 124, 70, 0.2);
  border-radius: 10px;
  color: var(--success);
  font-size: 13.5px;
  font-weight: 500;
}

/* ---- Error banner ---- */
.rw-wizard .rw-ins-upload__error-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--danger-soft);
  border: 1px solid rgba(184, 58, 31, 0.2);
  border-radius: 8px;
  color: var(--danger);
  font-size: 12.5px;
}

.rw-wizard .rw-ins-upload__retry-btn {
  background: none;
  border: 1px solid var(--danger);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--danger);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 150ms ease;
}

.rw-wizard .rw-ins-upload__retry-btn:hover {
  background: var(--danger-soft);
}

/* ---- Upload CTA button ---- */
.rw-wizard .rw-ins-upload__btn-upload {
  height: 40px;
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: background 150ms ease;
}

.rw-wizard .rw-ins-upload__btn-upload:hover:not(:disabled) {
  background: var(--accent-text);
}

.rw-wizard .rw-ins-upload__btn-upload:disabled {
  background: var(--border-strong);
  cursor: not-allowed;
}

.rw-wizard .rw-ins-upload__zone-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.rw-wizard .rw-ins-upload__zone-hint {
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.4;
}

.rw-wizard .rw-ins-upload__zone-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.rw-wizard .rw-ins-upload__btn-select {
  height: 32px;
  padding: 0 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  border-radius: 8px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 150ms ease;
}

.rw-wizard .rw-ins-upload__btn-select:hover:not(:disabled) {
  border-color: var(--border-strong);
}

.rw-wizard .rw-ins-upload__btn-select:disabled {
  cursor: not-allowed;
}

.rw-wizard .rw-ins-upload__btn-photo {
  height: 32px;
  padding: 0 14px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 150ms ease;
}

.rw-wizard .rw-ins-upload__btn-photo:hover:not(:disabled) {
  background: var(--accent-text);
}

.rw-wizard .rw-ins-upload__btn-photo:disabled {
  background: var(--border-strong);
  cursor: not-allowed;
}

.rw-wizard .rw-ins-upload__privacy {
  margin: 0;
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ---- Subscriber DOB (snap / upload modes) ---- */
.rw-wizard .rw-ins-dob-field {
  max-width: calc(50% - 6px);
  margin-top: 4px;
  margin-bottom: 24px;
}

/* ---- Upload-done (checkmark + text, no card) ---- */
.rw-wizard .rw-ins-upload-done {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.rw-wizard .rw-ins-upload-done__icon {
  flex-shrink: 0;
  color: var(--success);
  display: flex;
}

.rw-wizard .rw-ins-upload-done__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.rw-wizard .rw-ins-upload-done__subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---- Upload Success Summary Card ---- */
.rw-wizard .rw-ins-upload-success {
  padding: 16px;
  background: var(--success-soft);
  border: 1.5px solid rgba(14, 124, 70, 0.25);
  border-radius: 10px;
  margin-bottom: 16px;
}

.rw-wizard .rw-ins-upload-success__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rw-wizard .rw-ins-upload-success__icon {
  flex-shrink: 0;
  color: var(--success);
  display: flex;
}

.rw-wizard .rw-ins-upload-success__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.rw-wizard .rw-ins-upload-success__subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary);
}

.rw-wizard .rw-ins-upload-success__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.rw-wizard .rw-ins-upload-success__thumb {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--bg-page);
}

.rw-wizard .rw-ins-upload-success__thumb-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.rw-wizard .rw-ins-upload-success__thumb-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100px;
  padding: 8px;
  color: var(--text-secondary);
}

.rw-wizard .rw-ins-upload-success__thumb-filename {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

/* ---- Escape Hatches ---- */
.rw-wizard .rw-ins-escape-hatches {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 12px;
  margin-bottom: 24px;
}

.rw-wizard .rw-ins-escape-hatch {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 12.5px;
  color: var(--accent-text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rw-wizard .rw-ins-escape-hatch:hover {
  color: var(--accent);
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .rw-wizard .rw-ins-payment-toggle {
    grid-template-columns: 1fr;
  }

  .rw-wizard .rw-ins-upload__zones {
    grid-template-columns: 1fr;
  }

  .rw-wizard .rw-ins-dob-field {
    max-width: 100%;
  }

  .rw-wizard .rw-ins-tab {
    font-size: 11px;
    padding: 7px 6px;
  }

  .rw-wizard .form-card {
    padding: 24px 20px 20px;
  }
}

/* Scoped under .rw-wizard — tokens inherited from wizard.css */

.rw-conf {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* ---- HERO ---- */
.rw-conf__hero {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.rw-conf__check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.rw-conf__check--confirmed {
  background: #DBF0E3;
  border: 1.5px solid rgba(14, 124, 70, 0.2);
}

.rw-conf__check--pending {
  background: #DBF0E3;
  border: 1.5px solid rgba(14, 124, 70, 0.2);
}

.rw-conf__hero-text {
  flex: 1;
}

.rw-conf__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 6px;
  line-height: 1.2;
}

.rw-conf__subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ---- DIVIDER ---- */
.rw-conf__divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0 0 20px;
}

/* ---- NOTIFICATION BANNER ---- */
.rw-conf__banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #FFFBF0;
  border: 1px solid #F0D89A;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.5;
}

.rw-conf__banner svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #B25B0A;
}

/* ---- SECTION LABEL ---- */
.rw-conf__section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

/* ---- SUMMARY CARDS ---- */
.rw-conf__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.rw-conf__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
}

.rw-conf__card-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--accent);
}

.rw-conf__card-header-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-tertiary);
}

.rw-conf__card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.rw-conf__card-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 2px;
}

.rw-conf__card-muted {
  font-size: 13px;
  color: var(--text-tertiary);
}

.rw-conf__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 4px 10px;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  font-size: 11.5px;
  color: var(--text-secondary);
  background: var(--bg-card);
}

.rw-conf__badge svg {
  color: var(--warning);
}

/* ---- BOTTOM ROW ---- */
.rw-conf__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.rw-conf__practice {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
}

.rw-conf__practice-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rw-conf__practice-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5B7DF7 0%, #B6D4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.rw-conf__practice-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.rw-conf__practice-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 9px;
  text-decoration: none;
}

.rw-conf__practice-row:last-child {
  margin-bottom: 0;
}

.rw-conf__practice-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-tertiary);
}

.rw-conf__practice-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
}

.rw-conf__practice-link:hover {
  color: var(--accent-text);
  text-decoration: underline;
}

.rw-conf__map {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-page);
  min-height: 200px;
}

/* ---- CTA ---- */
.rw-conf__cta {
  display: flex;
  justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 680px) {
  .rw-conf {
    padding: 28px 16px 48px;
  }

  .rw-conf__cards {
    grid-template-columns: 1fr;
  }

  .rw-conf__bottom {
    grid-template-columns: 1fr;
  }

  .rw-conf__map {
    min-height: 220px;
  }

  .rw-conf__title {
    font-size: 21px;
  }
}

