/**
 * BMA Intake — scoped styles. Everything lives under .bma-intake so Avada
 * can't bleed in (and we can't bleed out). Design language ported from v1:
 * navy #1B2A4A, orange #D4793A, warm beige #F6F4F0.
 */
.bma-intake {
  --bma-navy: #1b2a4a;
  --bma-navy-soft: #33436b;
  --bma-orange: #d4793a;
  --bma-orange-dark: #b95f22;
  --bma-bg: #f6f4f0;
  --bma-card: #ffffff;
  --bma-border: #e3ded6;
  --bma-error: #b3261e;
  --bma-ok: #22794b;
  --bma-radius: 12px;
  --bma-font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--bma-font);
  color: var(--bma-navy);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.55;
}

.bma-intake *,
.bma-intake *::before,
.bma-intake *::after { box-sizing: border-box; }

/* ── Progress bar ─────────────────────────────────────────────── */

.bma-intake-progresswrap { margin: 0 0 1.4rem; }

.bma-intake-progress {
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bma-intake-progress-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  font-size: 0.8rem;
  color: var(--bma-navy);
  opacity: 0.45;
  text-align: center;
  min-width: 0;
}

/* connector line between dots */
.bma-intake-progress-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: calc(50% + 1.1rem);
  left: calc(-50% + 1.1rem);
  height: 2px;
  background: var(--bma-border);
}

.bma-intake-progress-step.is-done:not(:first-child)::before,
.bma-intake-progress-step.is-active:not(:first-child)::before {
  background: var(--bma-orange);
}

.bma-intake-progress-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--bma-card);
  position: relative;
  z-index: 1;
}

.bma-intake-progress-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.bma-intake-progress-step.is-active {
  opacity: 1;
  color: var(--bma-orange);
  font-weight: 700;
}

.bma-intake-progress-step.is-done {
  opacity: 0.9;
  cursor: pointer;
  color: var(--bma-navy);
}

.bma-intake-progress-step.is-done .bma-intake-progress-dot {
  background: var(--bma-navy);
  border-color: var(--bma-navy);
  color: #fff;
}

.bma-intake-progress-step.is-done:hover .bma-intake-progress-label {
  text-decoration: underline;
}

.bma-intake-stepcount {
  display: none;
  text-align: center;
  font-size: 0.82rem;
  color: var(--bma-navy-soft);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ── Benefit bar (step 1): three objection-killers in one scan ── */

.bma-intake-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bma-card);
  border: 1px solid var(--bma-border);
  border-radius: 10px;
  margin: 0 0 1.25rem;
}
.bma-intake-benefit {
  padding: 0.8rem 0.6rem;
  text-align: center;
}
.bma-intake-benefit + .bma-intake-benefit { border-left: 1px solid var(--bma-border); }
.bma-intake-benefit-ico { display: block; color: var(--bma-orange); }
.bma-intake-benefit-ico svg { display: inline-block; }
.bma-intake-benefit-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bma-navy);
}
.bma-intake-benefit-sub {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--bma-navy-soft);
}
@media (max-width: 560px) {
  .bma-intake-benefits { grid-template-columns: 1fr; }
  .bma-intake-benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.7rem;
    align-items: center;
    text-align: left;
    padding: 0.65rem 0.9rem;
  }
  .bma-intake-benefit + .bma-intake-benefit {
    border-left: none;
    border-top: 1px solid var(--bma-border);
  }
  .bma-intake-benefit-ico { grid-row: 1 / span 2; }
  .bma-intake-benefit-label { margin-top: 0; }
}

/* ── Card ─────────────────────────────────────────────────────── */

.bma-intake-card {
  background: var(--bma-bg);
  border: 1px solid var(--bma-border);
  border-radius: var(--bma-radius);
  padding: 2rem;
}

.bma-intake-step-title {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bma-navy);
}

.bma-intake-intro {
  margin: 0 0 1.6rem;
  color: var(--bma-navy-soft);
  font-size: 0.98rem;
}

/* ── Layout grid ──────────────────────────────────────────────── */

.bma-intake-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 4%;
}

.bma-intake-field { width: 100%; }
.bma-intake-field--half { width: 48%; }


/* ── Sections / info ──────────────────────────────────────────── */

.bma-intake-section {
  width: 100%;
  border-left: 4px solid var(--bma-orange);
  padding-left: 0.9rem;
  margin-top: 0.6rem;
}

.bma-intake-heading {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.bma-intake-heading-note {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--bma-navy-soft);
}

.bma-intake-info {
  width: 100%;
  background: rgba(212, 121, 58, 0.09);
  border: 1px solid rgba(212, 121, 58, 0.35);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--bma-navy);
}

/* ── Inputs ───────────────────────────────────────────────────── */

.bma-intake-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.bma-intake-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--bma-border);
  border-radius: 8px;
  background: var(--bma-card);
  color: var(--bma-navy);
  font: inherit;
  font-size: 1rem; /* never below 16px: iOS zooms into smaller inputs */
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bma-intake-input:focus {
  outline: none;
  border-color: var(--bma-orange);
  box-shadow: 0 0 0 3px rgba(212, 121, 58, 0.18);
}

.bma-intake-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--bma-navy-soft);
  overflow-wrap: anywhere;
}

.bma-intake-field-error {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--bma-error);
  font-weight: 600;
}

.bma-intake-field.has-error .bma-intake-input,
.bma-intake-field.has-error .bma-intake-radio {
  border-color: var(--bma-error);
}

.bma-intake-global-error {
  width: 100%;
  margin-top: 1rem;
  background: rgba(179, 38, 30, 0.07);
  border: 1px solid rgba(179, 38, 30, 0.4);
  color: var(--bma-error);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Neutral info banner for benign notices (cancelled payment, expired link) —
   not everything that interrupts the flow is an error. */
.bma-intake-global-notice {
  width: 100%;
  margin: 0 0 1.2rem;
  background: rgba(212, 121, 58, 0.09);
  border: 1px solid rgba(212, 121, 58, 0.4);
  color: var(--bma-navy);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

/* One-line reassurance strip below the form card on every step: the
   no-payment promise + a human contact. Quiet by design; the firm identity
   lives in the step-1 header, not here. */
.bma-intake-reassure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--bma-navy-soft);
  text-align: center;
}
.bma-intake-reassure-saved { color: var(--bma-navy-soft); }
.bma-intake-reassure-contact a {
  color: var(--bma-navy);
  font-weight: 600;
  text-decoration: underline;
}

/* Step-1 value/identity header: kicker + title + credential badge. */
.bma-intake-hero {
  margin: 0 0 0.7rem;
  text-align: center;
}
.bma-intake-hero-title {
  margin: 0 0 0.9rem;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--bma-navy);
}
.bma-intake-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
  background: var(--bma-card);
  border: 1px solid var(--bma-border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
}
.bma-intake-badge-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bma-navy);
  color: var(--bma-card);
  flex-shrink: 0;
}
.bma-intake-badge-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bma-navy);
  line-height: 1.35;
}
.bma-intake-badge-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--bma-navy-soft);
  line-height: 1.45;
}

/* ── Radio / checkbox ─────────────────────────────────────────── */

.bma-intake-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bma-intake-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--bma-border);
  background: var(--bma-card);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.bma-intake-radio:hover { border-color: var(--bma-orange); }

.bma-intake-radio.is-checked {
  border-color: var(--bma-orange);
  background: rgba(212, 121, 58, 0.1);
  font-weight: 600;
}

.bma-intake-radio input { accent-color: var(--bma-orange); }

.bma-intake-checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--bma-card);
  border: 1.5px solid var(--bma-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.bma-intake-checkbox.is-checked { border-color: var(--bma-ok); }

.bma-intake-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--bma-ok);
  flex-shrink: 0;
}

.bma-intake-checkbox-statement {
  display: block;
  font-size: 0.88rem;
  color: var(--bma-navy);
}

.bma-intake-checkbox-agree {
  display: block;
  margin-top: 0.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Computed ─────────────────────────────────────────────────── */

.bma-intake-computed {
  width: 100%;
  background: var(--bma-card);
  border: 1.5px dashed var(--bma-border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.bma-intake-computed-label { font-weight: 600; }
.bma-intake-computed-value { font-weight: 700; color: var(--bma-orange-dark); }
.bma-intake-computed-warn { display: none; }

/* ── Repeaters ────────────────────────────────────────────────── */

.bma-intake-repeater { width: 100%; }

.bma-intake-repeater-card {
  background: var(--bma-card);
  border: 1px solid var(--bma-border);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.3rem;
  margin-bottom: 0.9rem;
}

.bma-intake-repeater-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.bma-intake-repeater-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bma-orange-dark);
}

.bma-intake-remove,
.bma-intake-file-remove {
  background: none;
  border: none;
  color: var(--bma-error);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

.bma-intake-add {
  background: none;
  border: 1.5px dashed var(--bma-orange);
  color: var(--bma-orange-dark);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.bma-intake-add:hover { background: rgba(212, 121, 58, 0.08); }

/* ── Files ────────────────────────────────────────────────────── */

.bma-intake-file { width: 100%; }

.bma-intake-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.bma-intake-file-button {
  display: inline-block;
  background: var(--bma-card);
  border: 1.5px solid var(--bma-navy);
  color: var(--bma-navy);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.bma-intake-file-button.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.bma-intake-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.bma-intake-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(27, 42, 74, 0.07);
  border-radius: 999px;
  padding: 0.25rem 0.5rem 0.25rem 0.8rem;
  font-size: 0.82rem;
}

.bma-intake-file-status {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--bma-orange-dark);
  /* Constant height even when empty: the status line appearing on a defer
     tick used to push every field below it down, which moved the next
     checkbox out from under a batch-ticking finger (the mobile half of the
     08-03 bug; the state-reset half was the full re-render). */
  min-height: 1.3em;
}

.bma-intake-defer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.bma-intake-defer input { accent-color: var(--bma-navy); }
.bma-intake-defer.is-checked { font-weight: 600; }

/* Upload now / send later presented side by side, so the choice reads as a
   choice rather than as an upload box with a consolation checkbox under it. */
.bma-intake-file-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.bma-intake-file-actions .bma-intake-defer { margin-top: 0; }

/* Deferring SATISFIES the requirement, so the asterisk goes away with it.
   Three permanently starred upload boxes are what made the step read as a
   wall to anyone without their documents to hand. */
.bma-intake-req { color: var(--bma-orange-dark); }
.bma-intake-field.is-satisfied > .bma-intake-label .bma-intake-req { display: none; }

.bma-intake-file-status.is-deferred { color: var(--bma-ok); }
.bma-intake-file-status.is-deferred::before { content: "✓ "; }

.bma-intake-file-status.is-busy { color: var(--bma-navy-soft); }
.bma-intake-file-status.is-busy::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.4rem;
  vertical-align: -1px;
  border: 2px solid var(--bma-border);
  border-top-color: var(--bma-navy);
  border-radius: 50%;
  animation: bma-intake-spin 0.7s linear infinite;
}

@keyframes bma-intake-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .bma-intake-file-status.is-busy::after { animation: none; }
}

/* The step-level escape hatch, above the uploads it clears. */
.bma-intake-defer-all {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--bma-bg);
  border: 1px solid var(--bma-border);
  border-radius: var(--bma-radius);
}

.bma-intake-defer-all.is-active {
  background: #f0f6f2;
  border-color: #cfe3d6;
}

.bma-intake-defer-all-title {
  margin: 0 0 0.3rem;
  font-weight: 600;
  color: var(--bma-navy);
}

.bma-intake-defer-all-body {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--bma-navy-soft);
}

/* Thumb-sized targets on the step where most of this traffic is mobile. */
@media (max-width: 640px) {
  .bma-intake-file-actions { gap: 0.9rem; }
  .bma-intake-file-actions .bma-intake-defer,
  .bma-intake-file-button { min-height: 44px; }
  .bma-intake-file-actions .bma-intake-defer input { width: 20px; height: 20px; }
  .bma-intake-defer-all .bma-intake-button { width: 100%; }
}

.bma-intake-heading-why > summary {
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--bma-navy-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bma-intake-heading-why[open] > summary { margin-bottom: 0.4rem; }

/* Honeypot: out of sight without display:none, which some fillers skip. */
.bma-intake-hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Summary ──────────────────────────────────────────────────── */

.bma-intake-summary-section {
  width: 100%;
  background: var(--bma-card);
  border: 1px solid var(--bma-border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1rem;
}

.bma-intake-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--bma-orange);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}

.bma-intake-summary-header h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}

.bma-intake-edit {
  background: none;
  border: none;
  color: var(--bma-orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.bma-intake-summary-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.bma-intake-summary-label {
  color: var(--bma-navy-soft);
  flex-shrink: 0;
  max-width: 45%;
}

.bma-intake-summary-value {
  text-align: right;
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* ── Pricing ──────────────────────────────────────────────────── */

.bma-intake-price-heading {
  width: 100%;
  margin: 0.4rem 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bma-navy-soft);
}

.bma-intake-pricing {
  width: 100%;
  background: var(--bma-navy);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 1.3rem;
  margin-bottom: 1rem;
}

.bma-intake-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.92rem;
}

.bma-intake-price-total {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0b78c;
}

/* ── Actions ──────────────────────────────────────────────────── */

.bma-intake-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 1.6rem;
}

.bma-intake-button {
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 9px;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.bma-intake-button--primary {
  background: linear-gradient(135deg, var(--bma-orange), var(--bma-orange-dark));
  border: none;
  color: #fff;
  box-shadow: 0 3px 10px rgba(212, 121, 58, 0.35);
}

.bma-intake-button--primary:hover { transform: translateY(-1px); }
.bma-intake-button--primary:disabled,
.bma-intake-button--primary.is-busy { opacity: 0.6; cursor: wait; transform: none; }

.bma-intake-button--ghost {
  background: none;
  border: 1.5px solid var(--bma-border);
  color: var(--bma-navy);
}

.bma-intake-button--ghost:hover { border-color: var(--bma-navy); }

.bma-intake-saved {
  font-size: 0.8rem;
  color: var(--bma-ok);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bma-intake-saved.is-visible { opacity: 1; }

/* ── Success ──────────────────────────────────────────────────── */

.bma-intake-success {
  text-align: center;
  background: var(--bma-bg);
  border: 1px solid var(--bma-border);
  border-radius: var(--bma-radius);
  padding: 3rem 2rem;
}

.bma-intake-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bma-ok);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bma-intake-success h2 {
  margin: 0 0 0.5rem;
  color: var(--bma-navy);
}

.bma-intake-success p {
  color: var(--bma-navy-soft);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.bma-intake-success-ref {
  display: inline-block;
  margin: 0 auto 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(27, 42, 74, 0.05);
  border: 1px solid var(--bma-border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--bma-navy-soft);
}
.bma-intake-success-ref strong {
  color: var(--bma-navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.02em;
}

.bma-intake-success .bma-intake-pricing { text-align: left; }

.bma-intake-spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid var(--bma-border);
  border-top-color: var(--bma-orange);
  animation: bma-intake-spin 0.9s linear infinite;
  margin-bottom: 1rem;
}

@keyframes bma-intake-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bma-intake-spinner { animation-duration: 2.5s; }
  .bma-intake-button--primary:hover { transform: none; }
}

.bma-intake-config-error {
  border: 1px solid var(--bma-error);
  color: var(--bma-error);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* ── Mobile / responsive overrides (kept LAST so they win over base rules) ── */
@media (max-width: 640px) {
  .bma-intake-field--half { width: 100%; }
  .bma-intake-card { padding: 1.25rem 1.1rem; }

  /* step-1 hero: keep the headline tidy on a phone */
  .bma-intake-hero-title { font-size: 1.3rem; }

  /* progress: dots only + "Step X of Y" text */
  .bma-intake-progress-label { display: none; }
  .bma-intake-progress-step { gap: 0; }
  .bma-intake-stepcount { display: block; }

  /* thumb-friendly actions: primary full width on top */
  .bma-intake-actions { flex-wrap: wrap; }
  .bma-intake-actions .bma-intake-button--primary {
    flex: 1 1 100%;
    order: -1;
    padding: 0.9rem 1.6rem;
  }
  .bma-intake-actions .bma-intake-button--ghost { flex: 1 1 auto; }

  /* bigger touch targets */
  .bma-intake-radio { padding: 0.7rem 1rem; min-height: 44px; }
  .bma-intake-file-button { padding: 0.7rem 1.1rem; }
  .bma-intake-remove,
  .bma-intake-edit {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
  }
  .bma-intake-file-remove {
    min-width: 40px;
    min-height: 40px;
    font-size: 1.2rem;
  }
  .bma-intake-add { padding: 0.75rem 1rem; white-space: normal; text-align: center; }

  .bma-intake-summary-row { flex-direction: column; gap: 0.1rem; }
  .bma-intake-summary-label { max-width: 100%; }
  .bma-intake-summary-value { text-align: left; }

  /* keep the primary action reachable on tall steps */
  .bma-intake-actions {
    position: sticky;
    bottom: 0;
    background: var(--bma-bg);
    padding-top: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0 -8px 12px -8px rgba(27, 42, 74, 0.18);
  }

  /* tighter progress connectors so 6 dots don't clip at 360px */
  .bma-intake-progress-step:not(:first-child)::before {
    right: calc(50% + 0.9rem);
    left: calc(-50% + 0.9rem);
  }
}
