/* ============================================================
   RapiPrestamos YA — Flujo de solicitud premium
   ============================================================ */

/* ===== LAYOUT ===== */
body.flow {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
    var(--bg-soft);
  min-height: 100vh;
}
.flow main {
  flex: 1;
  padding: 32px 24px 64px;
  display: block;
}
.flow .wrap {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

/* ===== STEP INDICATOR (horizontal con labels) ===== */
.flow-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}
.flow-progress-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1;
  max-width: 140px;
  position: relative;
}
.flow-progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--line);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  transition: all 0.3s var(--ease-out);
  position: relative;
  z-index: 2;
}
.flow-progress-step.active .flow-progress-dot {
  background: linear-gradient(135deg, var(--primary), #6366F1);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
  animation: stepPulse 2.4s ease-in-out infinite;
}
.flow-progress-step.done .flow-progress-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.flow-progress-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
.flow-progress-step.active .flow-progress-label { color: var(--primary); font-weight: 700; }
.flow-progress-step.done   .flow-progress-label { color: var(--accent-700); }
.flow-progress-line {
  flex: 0 1 60px; height: 2px;
  background: var(--line);
  margin: 18px 0 0;
  align-self: flex-start;
  transition: background 0.4s;
  border-radius: 2px;
}
.flow-progress-line.done { background: var(--accent); }
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.10); }
}

/* ===== GRID 2 columnas (form + sidebar) ===== */
.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: flex-start;
}
.flow-grid.single {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}

/* ===== CARD principal ===== */
.flow-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.7);
  position: relative;
  overflow: hidden;
}
.flow-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #6366F1 50%, #8B5CF6 100%);
}

/* Header del card */
.flow-card-header {
  margin-bottom: 32px;
  text-align: center;
}
.flow-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary-50), #DBEAFE);
  color: var(--primary);
  position: relative;
}
.flow-card-icon::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(99, 102, 241, 0.10));
  z-index: -1;
  filter: blur(8px);
}
.flow-card-icon.success {
  background: linear-gradient(135deg, var(--accent-50), #D1FAE5);
  color: var(--accent-700);
}
.flow-card-icon.success::after {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(34, 197, 94, 0.15));
}
.flow-card-icon.warn {
  background: linear-gradient(135deg, var(--warn-50), #FDE68A);
  color: var(--warn-700);
}
.flow-card-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}
.flow-card-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== FORM premium ===== */
.flow-field {
  margin-bottom: 22px;
}
.flow-field-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.flow-field-label .req {
  color: var(--danger);
  font-weight: 700;
}
.flow-input-wrap {
  position: relative;
  display: flex; align-items: stretch;
}
.flow-input-icon {
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: color 0.2s;
}
.flow-input,
.flow-select,
.flow-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.flow-input:focus,
.flow-select:focus,
.flow-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.flow-input.has-icon { padding-left: 44px; }
.flow-input-wrap:focus-within .flow-input-icon { color: var(--primary); }

.flow-input.is-prefilled {
  background: linear-gradient(0deg, var(--accent-50), var(--accent-50)) padding-box;
  border-color: var(--accent);
  border-style: dashed;
}
.flow-input.is-error,
.flow-select.is-error {
  border-color: var(--danger);
  background: var(--danger-50);
}
.flow-input.is-error:focus,
.flow-select.is-error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
}

.flow-hint {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.45;
}
.flow-hint svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.flow-error {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--danger-700);
  font-weight: 600;
  margin-top: 8px;
}
.flow-error svg { flex-shrink: 0; }

/* Composite: tipo doc + número */
.doc-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}
.doc-row .flow-select { padding: 14px 12px; font-weight: 700; }

/* Income range pills */
.income-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.income-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
}
.income-pill:hover {
  border-color: var(--primary-100);
  background: var(--primary-50);
}
.income-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.income-pill .pill-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  background: white;
  position: relative;
  transition: all 0.2s;
}
.income-pill input:checked ~ .pill-check {
  background: var(--primary);
  border-color: var(--primary);
}
.income-pill input:checked ~ .pill-check::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: white;
  border-radius: 50%;
}
.income-pill:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-50);
  color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Consent / checkbox premium */
.flow-consent {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 24px 0 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.flow-consent:hover { border-color: var(--primary-100); background: var(--primary-50); }
.flow-consent input { margin-top: 2px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.flow-consent strong { color: var(--ink); font-weight: 700; }
.flow-consent a { color: var(--primary); font-weight: 600; text-decoration: underline; }

/* Botón principal del flow */
.flow-submit {
  margin-top: 24px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary) 0%, #4F46E5 100%);
  color: white;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.30);
  transition: transform 0.15s, box-shadow 0.25s, opacity 0.2s;
  border: none; cursor: pointer;
}
.flow-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.40);
}
.flow-submit:active { transform: translateY(0); }
.flow-submit svg { transition: transform 0.2s; }
.flow-submit:hover svg { transform: translateX(3px); }
.flow-submit:disabled {
  opacity: 0.6; cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: var(--muted);
}
.flow-submit-secondary {
  margin-top: 12px;
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-2);
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: color 0.15s;
}
.flow-submit-secondary:hover { color: var(--primary); }

/* DNI badge */
.dni-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary-50), #DBEAFE);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.dni-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}
.dni-card-content { flex: 1; }
.dni-card-label {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dni-card-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Banners */
.flow-banner {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.flow-banner svg { flex-shrink: 0; margin-top: 2px; }
.flow-banner.info {
  background: var(--accent-50);
  border: 1px solid #A7F3D0;
  color: #065F46;
}
.flow-banner.warn {
  background: var(--warn-50);
  border: 1px solid #FDE68A;
  color: #92400E;
}
.flow-banner.danger {
  background: var(--danger-50);
  border: 1px solid #FECACA;
  color: var(--danger-700);
}
.flow-banner strong { font-weight: 700; }

/* ===== SIDEBAR ===== */
.flow-sidebar {
  position: sticky;
  top: 92px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.flow-sidebar-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.flow-sidebar-card.highlight {
  background: linear-gradient(135deg, #F0F9FF 0%, var(--primary-50) 100%);
  border-color: var(--primary-100);
}
.flow-sidebar-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.flow-sidebar-title svg { color: var(--primary); }

/* Resumen de oferta */
.offer-summary {
  display: flex; flex-direction: column;
  gap: 0;
}
.offer-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
}
.offer-summary-row + .offer-summary-row { border-top: 1px solid var(--line); }
.offer-summary-row .lbl { font-weight: 500; color: var(--muted); }
.offer-summary-row .val {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.offer-summary-row.highlight {
  margin: 6px -24px -10px;
  padding: 14px 24px;
  background: white;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.offer-summary-row.highlight .lbl { color: var(--ink); font-weight: 700; }
.offer-summary-row.highlight .val {
  color: var(--primary-dark);
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* Trust list */
.trust-list { list-style: none; margin: 0; padding: 0; }
.trust-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.trust-list li + li { border-top: 1px solid var(--line); }
.trust-list svg {
  flex-shrink: 0;
  color: var(--accent);
  background: var(--accent-50);
  border-radius: 50%;
  padding: 3px;
  width: 22px; height: 22px;
}
.trust-list strong { color: var(--ink); font-weight: 700; }

/* Help card */
.help-card {
  background: linear-gradient(135deg, #064E3B 0%, #047857 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.help-card::before {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}
.help-card-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.help-card-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 14px;
}
.help-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: white;
  color: #047857;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.help-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ===== Bank picker ===== */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.bank-option {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}
.bank-option:hover {
  border-color: var(--primary-100);
  background: var(--primary-50);
}
.bank-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bank-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.bank-logo.bcp        { background: linear-gradient(135deg, #002C77, #0050A0); }
.bank-logo.bbva       { background: linear-gradient(135deg, #004481, #0070C0); }
.bank-logo.interbank  { background: linear-gradient(135deg, #004B8D, #0066B3); }
.bank-logo.scotiabank { background: linear-gradient(135deg, #C8102E, #ED1C24); }
.bank-logo.bn         { background: linear-gradient(135deg, #00558C, #0073B7); }
.bank-logo.pichincha  { background: linear-gradient(135deg, #F7B500, #FFD700); color: #1F2937; }
.bank-logo.otro       { background: linear-gradient(135deg, #64748B, #94A3B8); }
.bank-name {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.bank-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: white;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.bank-option input:checked ~ .bank-check {
  border-color: var(--primary);
  background: var(--primary);
}
.bank-option input:checked ~ .bank-check::after {
  content: '';
  position: absolute; inset: 4px;
  background: white;
  border-radius: 50%;
}
.bank-option:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-50);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ===== RESULTADO (pre-aprobado) ===== */
.preapproval-box {
  position: relative;
  background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #059669 100%);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: white;
  margin-bottom: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 120, 87, 0.25);
}
.preapproval-box::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}
.preapproval-box::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}
.preapproval-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.preapproval-amount-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.preapproval-amount {
  font-size: clamp(40px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.preapproval-amount .currency {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 4px;
  opacity: 0.9;
  font-weight: 700;
}
.preapproval-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.preapproval-meta-item {
  display: flex; flex-direction: column;
}
.preapproval-meta-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.preapproval-meta-val {
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
  letter-spacing: -0.005em;
}

/* ===== GRACIAS ===== */
.success-celebration {
  position: relative;
  text-align: center;
  padding: 24px 0 8px;
}
.success-icon-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #34D399);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
  animation: successBounce 0.7s var(--ease-out);
}
.success-icon-wrap::before,
.success-icon-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  inset: 0;
  animation: successRipple 1.6s ease-out infinite;
}
.success-icon-wrap::after { animation-delay: 0.4s; }
@keyframes successBounce {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes successRipple {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

.ref-code {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
}
.ref-code-value {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.ref-copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.ref-copy-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.ref-copy-btn.copied { background: var(--accent); }

/* ===== Demo notice (sutil) ===== */
.demo-notice {
  margin-top: 24px;
  padding: 14px 18px;
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.demo-notice strong { color: var(--ink-2); }
.demo-notice code {
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .flow-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .flow-sidebar { position: static; order: 2; }
  .flow-card { padding: 32px 28px; }
  .flow-card-title { font-size: 24px; }
}
@media (max-width: 640px) {
  .flow main { padding: 20px 16px 64px; }
  .flow-card { padding: 28px 22px; border-radius: var(--radius-lg); }
  .flow-progress { gap: 0; margin-bottom: 28px; }
  .flow-progress-step { max-width: none; }
  .flow-progress-line { flex: 0 1 24px; }
  .flow-progress-label { font-size: 11px; }
  .flow-card-icon { width: 56px; height: 56px; }
  .flow-card-title { font-size: 22px; }
  .flow-card-sub { font-size: 14px; }
  .income-pills { grid-template-columns: 1fr; }
  .bank-grid { grid-template-columns: 1fr; }
  .preapproval-box { padding: 28px 24px; }
  .preapproval-meta { gap: 16px; }
  .doc-row { grid-template-columns: 110px 1fr; }
}
