/* MacManus Business Review — Classic theme design system.
   Scoped to .mmf-review so it never leaks into the surrounding WP theme. */

.mmf-review {
	--brand: #0A1F44;
	--tint: #EEF2F8;
	--ink: #1A2230;
	--muted: #5B6577;
	--line: #DCE1EA;
	--bg: #FFFFFF;
	--card: #FFFFFF;
	--field-bg: #FFFFFF;
	--ring: rgba(10, 31, 68, .14);
	--radius: 5px;
	--radius-lg: 8px;
	--shadow: 0 1px 2px rgba(16, 24, 40, .05);
	--font-sans: 'Montserrat', system-ui, sans-serif;
	--font-display: 'Lato', Arial, sans-serif;
	--hero: #0A1F44;

	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.5;
	overflow-anchor: none;
}

.mmf-review * {
	box-sizing: border-box;
}

.mmf-review a {
	color: var(--brand);
}

.mmf-review input::placeholder,
.mmf-review textarea::placeholder {
	color: #9aa3b2;
}

@keyframes mmfFadeUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── Stepper ─────────────────────────────────────────────────────────────── */
.mmf-review .mmf-stepper {
	max-width: 1360px;
	margin: 0 auto;
	padding: 26px 28px 4px;
	position: relative;
}

.mmf-review .mmf-stepper-track {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.mmf-review .mmf-stepper-line {
	position: absolute;
	top: 19px;
	left: 6%;
	right: 6%;
	height: 2px;
	background: var(--line);
	z-index: 0;
}

.mmf-review .mmf-stepper-fill {
	position: absolute;
	top: 19px;
	left: 6%;
	width: 0%;
	max-width: 88%;
	height: 2px;
	background: var(--brand);
	z-index: 0;
	transition: width .45s cubic-bezier(.2, .7, .2, 1);
}

.mmf-review .mmf-stepnav {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1;
	cursor: pointer;
	background: none;
	border: none;
	font: inherit;
}

.mmf-review .mmf-dot {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid var(--line);
	background: var(--card);
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	transition: all .2s;
}

.mmf-review .mmf-dot-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--muted);
}

.mmf-review .mmf-stepnav.is-done .mmf-dot {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	box-shadow: none;
}

.mmf-review .mmf-stepnav.is-active .mmf-dot {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
	box-shadow: 0 0 0 4px var(--ring);
}

.mmf-review .mmf-stepnav.is-done .mmf-dot-label,
.mmf-review .mmf-stepnav.is-active .mmf-dot-label {
	color: var(--brand);
}

.mmf-review .mmf-stepnav.is-active .mmf-dot-label {
	font-weight: 700;
}

.mmf-review .mmf-stepnav--results {
	cursor: default;
	opacity: 1;
}

/* Active/hover step gets a filled navy pill behind the dot + label,
   so both must flip to white text/border to stay legible on navy. */
.mmf-review .mmf-stepnav.is-active::before,
.mmf-review .mmf-stepnav:hover:not(:disabled)::before {
	content: "";
	position: absolute;
	inset: -10px -14px;
	background: var(--brand);
	border-radius: 10px;
	z-index: -1;
}

.mmf-review .mmf-stepnav.is-active .mmf-dot,
.mmf-review .mmf-stepnav:hover:not(:disabled) .mmf-dot {
	background: #fff;
	color: var(--brand);
	border-color: #fff;
	box-shadow: none;
}

.mmf-review .mmf-stepnav.is-active .mmf-dot-label,
.mmf-review .mmf-stepnav:hover:not(:disabled) .mmf-dot-label {
	color: #fff;
}

/* ── Save draft row ──────────────────────────────────────────────────────── */
.mmf-review .mmf-savedraft-row {
	max-width: 1360px;
	margin: 0 auto;
	padding: 14px 28px 0;
	display: flex;
	justify-content: flex-end;
}

.mmf-review .mmf-savedraft-btn {
	display: flex;
	align-items: center;
	gap: 7px;
	background: var(--brand);
	color: #fff;
	border: none;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 17px;
	border-radius: var(--radius);
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.mmf-review .mmf-savedraft-btn:hover {
	filter: brightness(1.12);
}

/* ── Main / cards ────────────────────────────────────────────────────────── */
.mmf-review .mmf-main {
	max-width: 1360px;
	margin: 0 auto;
	padding: 22px 28px 60px;
}

.mmf-review .mmf-step {
	display: none;
}

.mmf-review .mmf-step.is-active {
	display: block;
	animation: mmfFadeUp .45s cubic-bezier(.2, .7, .2, 1);
}

.mmf-review .mmf-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 38px;
	overflow: hidden;
}

.mmf-review .mmf-card--welcome,
.mmf-review .mmf-card--thanks {
	padding: 44px;
}

.mmf-review .mmf-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.mmf-review .mmf-badge {
	display: inline-block;
	background: var(--brand);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 100px;
}

.mmf-review .mmf-step-count {
	font-size: 12px;
	color: var(--muted);
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mmf-review .mmf-h2 {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 700;
	color: var(--brand);
	margin: 14px 0 4px;
	letter-spacing: -.01em;
}

.mmf-review .mmf-h2--tight {
	margin-bottom: 8px;
}

.mmf-review .mmf-sub {
	font-size: 16px;
	color: var(--muted);
	margin: 0 0 22px;
}

.mmf-review .mmf-subhead {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--ink);
	margin: 28px 0 14px;
}

.mmf-review .mmf-subhead--rule {
	font-size: 17.5px;
	color: var(--brand);
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--line);
}

.mmf-review .mmf-subhead--section {
	font-size: 18px;
	color: var(--ink);
	margin: 0;
}

/* ── Icon-badge section headings (Step 5) ─────────────────────────────────── */
.mmf-review .mmf-subhead-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 4px;
}

.mmf-review .mmf-subhead-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-subhead-row .mmf-subhead {
	margin: 0;
}

/* ── Section blocks (Step 1) ─────────────────────────────────────────────── */
.mmf-review .mmf-section-block {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.mmf-review .mmf-section-block--last {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mmf-review .mmf-section-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--line);
}

.mmf-review .mmf-section-head svg {
	color: var(--brand);
	flex: none;
}

/* ── Business overview layout ────────────────────────────────────────────── */
.mmf-review .mmf-biz-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 30px;
	align-items: start;
}

.mmf-review .mmf-field-grid--wide {
	grid-template-columns: 1fr 1fr;
}

.mmf-review .mmf-field-grid--3col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
}

.mmf-review .mmf-field-grid--4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px 20px;
}

/* Business status pills */
.mmf-review .mmf-biz-status-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.mmf-review .mmf-biz-status-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 100px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	background: var(--card);
	transition: all .18s;
}

.mmf-review .mmf-biz-status-pill:hover {
	border-color: var(--brand);
	background: var(--tint);
	color: var(--brand);
}

.mmf-review .mmf-biz-status-pill input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.mmf-review .mmf-biz-status-pill:has(input:checked) {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.mmf-review .mmf-biz-status-pill:has(input:checked) svg {
	color: #fff;
}

/* "How did you hear" other row */
.mmf-review .mmf-hear-other-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.mmf-review .mmf-hear-other-input {
	flex: 1;
	min-width: 200px;
	max-width: 340px;
}

/* ── Notice / info boxes ─────────────────────────────────────────────────── */
.mmf-review .mmf-notice-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 26px;
}

.mmf-review .mmf-notice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-family: Georgia, serif;
	font-style: italic;
	font-weight: 700;
	font-size: 13px;
	flex: none;
	margin-top: 1px;
}

.mmf-review .mmf-notice-box strong {
	display: block;
	color: var(--ink);
	font-size: 15px;
}

.mmf-review .mmf-notice-box p {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--muted);
}

.mmf-review .mmf-group {
	margin-bottom: 26px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--line);
}

.mmf-review .mmf-group--last {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mmf-review .mmf-group-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
}

.mmf-review .mmf-group-head svg {
	color: var(--brand);
	flex: none;
	margin-top: 2px;
}

.mmf-review .mmf-group-head .mmf-subhead--rule {
	border-bottom: none;
	padding-bottom: 0;
	margin: 0;
}

.mmf-review .mmf-group-desc {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--muted);
}

/* ── Field grids ─────────────────────────────────────────────────────────── */
.mmf-review .mmf-grid-2col {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 30px;
	align-items: start;
}

.mmf-review .mmf-field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
}

.mmf-review .mmf-field {
	display: flex;
	flex-direction: column;
}

.mmf-review .mmf-label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 6px;
	letter-spacing: .02em;
}

.mmf-review .mmf-label--strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
}

.mmf-review .mmf-input,
.mmf-review select.mmf-input,
.mmf-review .mmf-select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--field-bg);
	font-family: inherit;
	font-size: 16px;
	color: var(--ink);
	outline: none;
	transition: border-color .15s, box-shadow .15s;
	appearance: none;
	-webkit-appearance: none;
}

.mmf-review .mmf-select {
	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='%235B6577' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
	cursor: pointer;
}

.mmf-review .mmf-input:focus,
.mmf-review .mmf-select:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px var(--ring);
}

.mmf-review .mmf-textarea {
	resize: vertical;
}

.mmf-review .mmf-error {
	display: none;
	font-size: 12px;
	color: #C0392B;
	margin-top: 4px;
}

.mmf-review .mmf-error.is-visible {
	display: block;
}

.mmf-review .mmf-input.is-invalid {
	border-color: #C0392B;
}

.mmf-review .mmf-prefix-wrap {
	display: flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--field-bg);
	overflow: hidden;
}

.mmf-review .mmf-prefix-wrap:focus-within {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px var(--ring);
}

.mmf-review .mmf-prefix {
	padding: 12px 13px;
	color: var(--muted);
	border-right: 1px solid var(--line);
	font-size: 16px;
}

.mmf-review .mmf-prefix-input {
	flex: 1;
	padding: 12px 14px;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 16px;
	color: var(--ink);
	outline: none;
	min-width: 0;
}

/* Char counter */
.mmf-review .mmf-char-count {
	font-size: 12px;
	color: var(--muted);
	text-align: right;
	margin-top: 4px;
}

/* ── Checkbox / radio groups ─────────────────────────────────────────────── */
.mmf-review .mmf-check-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.mmf-review .mmf-check-grid--cols3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.mmf-review .mmf-check-grid--cols3-tight {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}

.mmf-review .mmf-check-grid--stack {
	display: grid;
	gap: 8px;
}

.mmf-review .mmf-check {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 15px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	background: var(--card);
	font-size: 15px;
	line-height: 1.4;
}

.mmf-review .mmf-check:hover {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-check input {
	width: 17px;
	height: 17px;
	accent-color: var(--brand);
	margin: 0;
	flex: none;
}

.mmf-review .mmf-check:has(input:checked) {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-other-row {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
}

.mmf-review .mmf-other-check {
	white-space: nowrap;
	border: none;
	padding: 0;
	background: none;
}

.mmf-review .mmf-other-input {
	flex: 1;
	min-width: 0;
}

.mmf-review .mmf-step[data-mmf-step="4"] .mmf-other-input.mmf-input {
	border: none;
	border-bottom: 1px dotted var(--line);
	border-radius: 0;
	background: transparent;
	padding: 4px 8px;
}

.mmf-review .mmf-step[data-mmf-step="4"] .mmf-other-input.mmf-input:focus {
	border-bottom-color: var(--brand);
	box-shadow: none;
}

.mmf-review .mmf-radio-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.mmf-review .mmf-radio-pills--wrap {
	flex-wrap: wrap;
}

.mmf-review .mmf-radio-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 17px;
	border: 1px solid var(--line);
	border-radius: 100px;
	cursor: pointer;
	font-size: 15px;
}

.mmf-review .mmf-radio-pill:hover {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-radio-pill input {
	width: 15px;
	height: 15px;
	accent-color: var(--brand);
	margin: 0;
}

.mmf-review .mmf-radio-pill:has(input:checked) {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.mmf-review .mmf-radio-list {
	display: grid;
	gap: 9px;
}

.mmf-review .mmf-radio-list-item {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 14.5px;
	cursor: pointer;
}

.mmf-review .mmf-radio-list-item input {
	width: 15px;
	height: 15px;
	accent-color: var(--brand);
	margin: 0;
}

/* ── Radio card list (with icon + description) ───────────────────────────── */
.mmf-review .mmf-radio-card-list {
	display: grid;
	gap: 9px;
}

.mmf-review .mmf-radio-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	background: var(--card);
	transition: border-color .15s, background .15s;
}

.mmf-review .mmf-radio-card:hover {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-radio-card:has(input:checked) {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-radio-card input[type="radio"] {
	width: 16px;
	height: 16px;
	accent-color: var(--brand);
	margin: 0;
	flex: none;
}

.mmf-review .mmf-radio-card-icon {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-radio-card-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.mmf-review .mmf-radio-card-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}

.mmf-review .mmf-radio-card-desc {
	font-size: 13px;
	color: var(--muted);
}

/* ── Tinted / aside boxes ────────────────────────────────────────────────── */
.mmf-review .mmf-tint-box {
	background: var(--tint);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 20px;
}

.mmf-review .mmf-aside {
	background: var(--tint);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	position: sticky;
	top: 20px;
	text-align: center;
}

.mmf-review .mmf-aside--step1 {
	position: sticky;
	top: 20px;
}

.mmf-review .mmf-aside-icon {
	color: var(--brand);
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.mmf-review .mmf-aside-title {
	font-family: var(--font-display);
	margin: 0 0 10px;
	font-size: 19px;
	color: var(--brand);
	font-weight: 700;
}

.mmf-review .mmf-aside-title--hero {
	font-size: 22px;
	text-align: left;
}

.mmf-review .mmf-aside-text {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
}

/* ── Step actions ────────────────────────────────────────────────────────── */
.mmf-review .mmf-step-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	flex-wrap: wrap;
}

.mmf-review .mmf-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font: inherit;
	font-size: 16px;
	padding: 12px 22px;
	border-radius: var(--radius);
	cursor: pointer;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--muted);
	text-decoration: none;
}

.mmf-review .mmf-btn:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.mmf-review .mmf-btn-primary {
	background: var(--brand);
	color: #fff;
	border: none;
	font-weight: 600;
	padding: 13px 28px;
}

.mmf-review .mmf-btn-primary:hover {
	filter: brightness(1.12);
	color: #fff;
}

.mmf-review .mmf-btn-primary:disabled {
	opacity: .6;
	cursor: not-allowed;
	filter: none;
}

.mmf-review .mmf-btn-arrow {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .22);
	align-items: center;
	justify-content: center;
	font-size: 13px;
	margin-left: 8px;
}

/* ── Welcome step ────────────────────────────────────────────────────────── */
.mmf-review .mmf-welcome-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 48px;
	align-items: start;
}

.mmf-review .mmf-welcome-copy p {
	font-size: 16px;
	color: var(--muted);
	margin: 0 0 16px;
	max-width: 58ch;
}

.mmf-review .mmf-cta-row {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.mmf-review .mmf-advisor {
	display: flex;
	align-items: center;
	gap: 13px;
}

.mmf-review .mmf-avatar-ring {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: repeating-linear-gradient(45deg, var(--tint), var(--tint) 6px, var(--line) 6px, var(--line) 12px);
	flex: none;
}

.mmf-review .mmf-avatar-photo {
	object-fit: cover;
	border: 1px solid var(--line);
}

.mmf-review .mmf-advisor-name {
	font-weight: 700;
	font-size: 16px;
	color: var(--ink);
}

.mmf-review .mmf-advisor-role {
	font-size: 14px;
	color: var(--muted);
}

.mmf-review .mmf-why-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mmf-review .mmf-why-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.mmf-review .mmf-why-item svg {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-why-item span.mmf-why-text {
	font-size: 16px;
	color: var(--ink);
	padding-top: 2px;
	text-align: left;
}

.mmf-review .mmf-journey-band {
	margin-top: 34px;
	background: var(--hero);
	border-radius: var(--radius-lg);
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.mmf-review .mmf-journey-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}

.mmf-review .mmf-journey-item span {
	font-weight: 700;
	letter-spacing: .09em;
	font-size: 16px;
}

.mmf-review .mmf-journey-sep {
	color: rgba(255, 255, 255, .4);
	font-size: 20px;
}

/* ── Step 2: Plan flat sections ──────────────────────────────────────────── */
.mmf-review .mmf-plan-flat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 28px;
	margin-bottom: 24px;
}

.mmf-review .mmf-plan-flat-section {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	padding: 18px 20px;
}

.mmf-review .mmf-plan-flat-head {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 12px;
}

.mmf-review .mmf-plan-flat-head svg {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-plan-flat-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--brand);
	margin: 0;
}

.mmf-review .mmf-plan-flat-checks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 12px;
}

/* Plain checkbox (no pill border) */
.mmf-review .mmf-plain-check {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--ink);
	cursor: pointer;
	padding: 3px 0;
	line-height: 1.4;
}

.mmf-review .mmf-plain-check input[type="checkbox"] {
	width: 15px;
	height: 15px;
	accent-color: var(--brand);
	margin: 0;
	flex: none;
	cursor: pointer;
}

/* Plain radio (footer "when" list) */
.mmf-review .mmf-plain-radio {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	color: var(--ink);
	cursor: pointer;
	padding: 3px 0;
}

.mmf-review .mmf-plain-radio input[type="radio"] {
	width: 15px;
	height: 15px;
	accent-color: var(--brand);
	margin: 0;
	flex: none;
	cursor: pointer;
}

/* Inline "Other" row inside each plan section */
.mmf-review .mmf-plain-other-row {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.mmf-review .mmf-plain-other-input {
	flex: 1;
	min-width: 120px;
	font-size: 14px;
	padding: 7px 10px;
}

/* Plan footer achieve / when */
.mmf-review .mmf-plan-achieve-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 12px;
}

.mmf-review .mmf-plan-when-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* ── Step 6 Q6: Icon card update grid ────────────────────────────────────── */
.mmf-review .mmf-update-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.mmf-review .mmf-update-icon-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	padding: 14px 8px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
	cursor: pointer;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.35;
	transition: border-color .15s, background .15s;
	position: relative;
}

.mmf-review .mmf-update-icon-card:hover {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-update-icon-card:has(input:checked) {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-update-icon-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.mmf-review .mmf-update-icon-card svg {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-update-other-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--card);
}

.mmf-review .mmf-update-other-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}

/* Remove the old update-grid / update-other-row (no longer used) */

/* Not sure yet box */
.mmf-review .mmf-plan-unsure-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--tint);
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.mmf-review .mmf-plan-unsure-left {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.mmf-review .mmf-plan-unsure-left svg {
	color: var(--brand);
	flex: none;
	margin-top: 2px;
}

.mmf-review .mmf-plan-unsure-left strong {
	display: block;
	color: var(--ink);
	font-size: 15px;
}

.mmf-review .mmf-plan-unsure-left p {
	margin: 3px 0 0;
	font-size: 14px;
	color: var(--muted);
}

/* Plan footer: budget + achieve + when */
.mmf-review .mmf-plan-footer-grid {
	display: grid;
	grid-template-columns: 220px 1fr 1fr;
	gap: 28px;
	align-items: start;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.mmf-review .mmf-check-grid--achieve {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ── Step 3: Fund goal cards ─────────────────────────────────────────────── */
.mmf-review .mmf-fundgoal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 11px;
}

.mmf-review .mmf-fundgoal-card {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
	gap: 12px;
	min-height: 92px;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
	background: var(--card);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

.mmf-review .mmf-fundgoal-card:hover {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-fundgoal-card input {
	width: 17px;
	height: 17px;
	accent-color: var(--brand);
	margin: 0;
	flex: none;
}

.mmf-review .mmf-fundgoal-card:has(input:checked) {
	border-color: var(--brand);
	background: var(--tint);
}

.mmf-review .mmf-fundgoal-card svg {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-fundgoal-grid--cols3 {
	grid-template-columns: repeat(3, 1fr);
}

.mmf-review .mmf-fundgoal-card--other {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	cursor: default;
}

.mmf-review .mmf-fundgoal-card--other input[type="text"] {
	width: 100%;
}

.mmf-review .mmf-update-icon-grid--cols4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ── Step 3: Fund footer (requirement / timing / notes) ──────────────────── */
.mmf-review .mmf-fund-footer-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr 1.3fr;
	gap: 28px;
	align-items: start;
	padding-top: 24px;
	margin-top: 8px;
	border-top: 1px solid var(--line);
	margin-bottom: 24px;
}

.mmf-review .mmf-fundwhen-row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 18px;
	row-gap: 6px;
}

/* ── Step 3: How we help notice box (icon on the right) ───────────────────── */
.mmf-review .mmf-notice-box--split {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 4px;
}

.mmf-review .mmf-notice-box-text {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.mmf-review .mmf-notice-box-icon {
	flex: none;
	color: var(--brand);
	opacity: .5;
}

/* ── Step 5: Health Check ────────────────────────────────────────────────── */
.mmf-review .mmf-rating-table {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.mmf-review .mmf-rating-head,
.mmf-review .mmf-rating-row {
	display: grid;
	grid-template-columns: 1fr repeat(5, 42px);
	align-items: center;
	gap: 4px;
	padding: 9px 16px;
	font-size: 14.5px;
}

/* Rating head — includes a 56px spacer column to align with group labels */
.mmf-review .mmf-rating-head {
	background: var(--tint);
	font-size: 13px;
	font-weight: 700;
	color: var(--brand);
	padding: 11px 16px 11px calc(56px + 16px);
	display: grid;
	grid-template-columns: 1fr repeat(5, 42px);
	gap: 4px;
	align-items: center;
}

.mmf-review .mmf-rating-head span {
	text-align: center;
}

/* Rows inside a group — no left-padding eaten by the group label */
.mmf-review .mmf-rating-group-rows .mmf-rating-row {
	padding-left: 16px;
}

/* Icon checkbox (challenge items) */
.mmf-review .mmf-check--icon svg {
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-rating-row {
	border-top: 1px solid var(--line);
}

.mmf-review .mmf-rating-row:hover {
	background: var(--tint);
}

.mmf-review .mmf-rating-cell {
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.mmf-review .mmf-rating-cell input {
	accent-color: var(--brand);
	width: 16px;
	height: 16px;
	margin: 0;
}

.mmf-review .mmf-rating-caption {
	font-size: 14px;
	color: var(--muted);
	margin: 0 0 12px;
}

/* Rating group side labels */
.mmf-review .mmf-rating-group-block {
	display: flex;
	align-items: stretch;
	border-top: 1px solid var(--line);
}

.mmf-review .mmf-rating-group-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 56px;
	min-width: 56px;
	padding: 10px 6px;
	background: #E5EBF4;
	border-right: 1px solid var(--line);
	text-align: center;
	color: var(--brand);
}

.mmf-review .mmf-rating-group-label svg {
	flex: none;
}

.mmf-review .mmf-rating-group-label span {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	line-height: 1.2;
}

.mmf-review .mmf-rating-group-rows {
	flex: 1;
	min-width: 0;
}

/* ── Step 6: Priorities ──────────────────────────────────────────────────── */
.mmf-review .mmf-prio-question {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mmf-review .mmf-prio-question--full {
	width: 100%;
}

.mmf-review .mmf-prio-q-head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.mmf-review .mmf-prio-q-head svg {
	color: var(--brand);
	flex: none;
	margin-top: 2px;
}

.mmf-review .mmf-prio-q-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	flex: none;
}

.mmf-review .mmf-prio-q-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
	padding-top: 3px;
	cursor: default;
}

/* Updates icon grid (Q6) */
.mmf-review .mmf-update-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}

.mmf-review .mmf-update-other-row {
	margin-top: 10px;
}

/* ── Two-col layout (general) ────────────────────────────────────────────── */
.mmf-review .mmf-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	align-items: start;
}

.mmf-review .mmf-stack-gap {
	display: grid;
	gap: 18px;
}

.mmf-review .mmf-stack-gap-lg {
	display: grid;
	gap: 20px;
}

.mmf-review .mmf-tint-note {
	font-size: 12px;
	color: var(--muted);
	margin: 14px 0 0;
	font-style: italic;
}

/* ── Step 7: Thank You ───────────────────────────────────────────────────── */

/* Header 2-col */
.mmf-review .mmf-thanks-header-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: stretch;
	margin-bottom: 36px;
}

.mmf-review .mmf-thanks-header-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mmf-review .mmf-thanks-check-row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.mmf-review .mmf-thanks-check-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 3px solid #27AE60;
	color: #27AE60;
	flex: none;
}

.mmf-review .mmf-thanks-title {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 800;
	color: var(--brand);
	margin: 0 0 4px;
}

.mmf-review .mmf-thanks-subtitle {
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
}

/* "In touch" highlight box */
.mmf-review .mmf-thanks-intouch-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 20px;
	background: #F0FAF4;
	border: 1px solid #A8D5B5;
	border-left: 4px solid #27AE60;
	border-radius: var(--radius);
}

.mmf-review .mmf-thanks-intouch-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #27AE60;
	color: #fff;
	flex: none;
}

.mmf-review .mmf-thanks-intouch-box strong {
	display: block;
	font-size: 15px;
	color: var(--ink);
	margin-bottom: 4px;
}

.mmf-review .mmf-thanks-intouch-box p {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
}

/* Header photo */
.mmf-review .mmf-thanks-header-photo {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--tint);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 260px;
}

.mmf-review .mmf-thanks-header-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mmf-review .mmf-thanks-resources-photo-placeholder {
	font-family: monospace;
	font-size: 12px;
	letter-spacing: .05em;
	color: var(--muted);
}

/* What Happens Next section */
.mmf-review .mmf-thanks-next-section {
	margin-bottom: 28px;
}

.mmf-review .mmf-thanks-next-title {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--brand);
	margin: 0 0 6px;
}

.mmf-review .mmf-thanks-next-grid {
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 24px;
	align-items: start;
}

.mmf-review .mmf-thanks-next-items {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.mmf-review .mmf-thanks-next-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.mmf-review .mmf-thanks-next-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--brand);
	flex: none;
}

.mmf-review .mmf-thanks-next-item-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
}

.mmf-review .mmf-thanks-next-item-desc {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.45;
}

/* "Need something sooner?" sidebar */
.mmf-review .mmf-thanks-sooner-box {
	background: var(--tint);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.mmf-review .mmf-thanks-sooner-box svg {
	color: var(--brand);
}

.mmf-review .mmf-thanks-sooner-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--brand);
	margin: 0;
}

.mmf-review .mmf-thanks-sooner-desc {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
}

.mmf-review .mmf-thanks-contact-btn {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
}

.mmf-review .mmf-thanks-sooner-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.mmf-review .mmf-thanks-sooner-contact span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--brand);
	font-weight: 500;
}

/* "Your information is secure" bar */
.mmf-review .mmf-thanks-secure-bar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.mmf-review .mmf-thanks-secure-left {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex: 1;
}

.mmf-review .mmf-thanks-fca-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--tint);
	flex: none;
}

.mmf-review .mmf-thanks-fca-badge svg {
	color: var(--brand);
}

.mmf-review .mmf-thanks-fca-badge strong {
	display: block;
	font-size: 14px;
	color: var(--ink);
}

.mmf-review .mmf-thanks-fca-badge span {
	font-size: 12px;
	color: var(--muted);
}

/* Dark footer band */
.mmf-review .mmf-thanks-footer-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: var(--brand);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 24px 30px;
	margin-bottom: 10px;
}

.mmf-review .mmf-thanks-footer-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mmf-review .mmf-thanks-footer-left svg {
	flex: none;
}

.mmf-review .mmf-thanks-footer-left strong {
	display: block;
	font-size: 16px;
	margin-bottom: 4px;
}

.mmf-review .mmf-thanks-footer-left p {
	font-size: 14px;
	opacity: .8;
	margin: 0;
}

.mmf-review .mmf-thanks-footer-tagline {
	font-family: var(--font-display);
	font-size: 18px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.5;
	text-align: right;
	flex: none;
}

/* Misc */
.mmf-review .mmf-submit-error {
	display: none;
	margin-top: 16px;
	padding: 12px 16px;
	border: 1px solid #C0392B;
	background: #FBEAE8;
	color: #C0392B;
	border-radius: var(--radius);
	font-size: 14.5px;
}

.mmf-review .mmf-submit-error.is-visible {
	display: block;
}

.mmf-review .mmf-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
	.mmf-review .mmf-thanks-next-items {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.mmf-review .mmf-grid-2col,
	.mmf-review .mmf-welcome-grid,
	.mmf-review .mmf-two-col,
	.mmf-review .mmf-biz-overview-grid,
	.mmf-review .mmf-thanks-header-grid,
	.mmf-review .mmf-thanks-next-grid {
		grid-template-columns: 1fr;
	}

	.mmf-review .mmf-aside,
	.mmf-review .mmf-aside--step1 {
		position: static;
	}

	.mmf-review .mmf-plan-flat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mmf-review .mmf-plan-footer-grid {
		grid-template-columns: 1fr;
	}

	.mmf-review .mmf-field-grid--4col {
		grid-template-columns: repeat(2, 1fr);
	}

	.mmf-review .mmf-field-grid,
	.mmf-review .mmf-fundgoal-grid,
	.mmf-review .mmf-check-grid--cols3,
	.mmf-review .mmf-check-grid--cols3-tight,
	.mmf-review .mmf-update-icon-grid,
	.mmf-review .mmf-fundgoal-grid--cols3,
	.mmf-review .mmf-update-icon-grid--cols4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.mmf-review .mmf-fund-footer-grid {
		grid-template-columns: 1fr;
	}

	.mmf-review .mmf-rating-head {
		padding-left: calc(44px + 12px);
		grid-template-columns: 1fr repeat(5, 28px);
		font-size: 12px;
	}

	.mmf-review .mmf-rating-row {
		grid-template-columns: 1fr repeat(5, 28px);
		font-size: 12px;
		padding: 8px 10px;
	}

	.mmf-review .mmf-rating-group-label {
		width: 44px;
		min-width: 44px;
		font-size: 8px;
	}

	.mmf-review .mmf-thanks-next-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.mmf-review .mmf-thanks-footer-band {
		flex-direction: column;
		text-align: center;
	}

	.mmf-review .mmf-thanks-footer-tagline {
		text-align: center;
	}

	.mmf-review .mmf-thanks-footer-left {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.mmf-review .mmf-card {
		padding: 22px;
	}

	.mmf-review .mmf-card--welcome,
	.mmf-review .mmf-card--thanks {
		padding: 24px;
	}

	.mmf-review .mmf-field-grid,
	.mmf-review .mmf-field-grid--wide,
	.mmf-review .mmf-field-grid--3col,
	.mmf-review .mmf-field-grid--4col,
	.mmf-review .mmf-plan-flat-grid,
	.mmf-review .mmf-plan-flat-checks,
	.mmf-review .mmf-plan-achieve-grid,
	.mmf-review .mmf-fundgoal-grid,
	.mmf-review .mmf-check-grid--cols3,
	.mmf-review .mmf-check-grid--cols3-tight,
	.mmf-review .mmf-update-icon-grid,
	.mmf-review .mmf-fundgoal-grid--cols3,
	.mmf-review .mmf-update-icon-grid--cols4 {
		grid-template-columns: 1fr;
	}

	.mmf-review .mmf-notice-box--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.mmf-review .mmf-h2 {
		font-size: 26px;
	}

	.mmf-review .mmf-thanks-title {
		font-size: 26px;
	}

	.mmf-review .mmf-thanks-check-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.mmf-review .mmf-journey-band {
		flex-direction: column;
		align-items: center;
		text-align: left;
	}

	.mmf-review .mmf-journey-sep {
		display: inline-block;
		transform: rotate(90deg);
	}

	.mmf-review .mmf-thanks-next-items {
		grid-template-columns: repeat(2, 1fr);
	}

	.mmf-review .mmf-biz-status-pills {
		flex-direction: column;
	}
}
