@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700&display=swap');

.alt-tool {
	--alt-navy: #38587E;
	--alt-blue: #2f5aa8;
	--alt-bg: #f4f7fb;
	--alt-green: #4a5d3a;
	--alt-border: #dfe4ee;
	--alt-primary: #38587E;
	--alt-moss: #5C7A01;
	--alt-lightgreen: #EEF3DF;
	font-family: inherit;
	width: 100%;
	max-width: none;
	margin: 32px auto;
	box-sizing: border-box;
}

.alt-tool * {
	box-sizing: border-box;
}

/* Reset button styles so the theme's own button CSS can't leak in and
   override our colors (this was causing invisible white-on-white text). */
.alt-tool button {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	line-height: normal;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	text-transform: none;
	letter-spacing: normal;
	box-shadow: none;
	text-decoration: none;
	text-align: inherit;
}

.alt-tool-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	background: var(--alt-bg);
	border-radius: 16px;
	padding: 24px;
}

/* Savings calculator: both cards scaled up, left slightly wider than right */
.alt-savings-grid {
	grid-template-columns: 1.10fr 0.90fr;
	gap: 20px;
}


.alt-savings-grid .alt-card {
	padding: 28px;
}

.alt-savings-grid .alt-label {
	font-size: 15px;
	margin-bottom: 16px;
}

.alt-savings-grid .alt-toggle {
	padding: 12px 8px;
	font-size: 14px;
}

.alt-savings-grid .alt-slider-header {
	font-size: 15px;
}

.alt-savings-grid .alt-slider-header strong {
	font-size: 16px;
}

.alt-savings-grid .alt-inhouse-note p {
	font-size: 14px;
}

.alt-savings-grid .alt-eyebrow {
	font-size: 12px;
}

.alt-savings-grid .alt-big-number {
	font-size: 38px;
	margin: 8px 0 20px;
	line-height: 1.1;
}

.alt-savings-grid .alt-result-row {
	padding: 14px 16px;
	margin-bottom: 12px;
	font-size: 14px;
}

.alt-savings-grid .alt-result-row strong {
	font-size: 15px;
}

.alt-savings-grid .alt-result-note {
	font-size: 13px;
	margin: 16px 0;
}

.alt-savings-grid .alt-cta-button {
	font-size: 14px;
	padding: 12px 20px;
}

@media (max-width: 700px) {
	.alt-tool-grid {
		grid-template-columns: 1fr;
	}

	.alt-savings-grid {
		grid-template-columns: 1fr;
	}
	
	.alt-savings-grid .alt-result-row {
		flex-wrap: wrap;
		row-gap: 4px;
	}

	.alt-savings-grid .alt-result-row > span {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		flex: 1 1 100%;
	}

	.alt-savings-grid .alt-result-row strong {
		flex: 1 1 100%;
		text-align: left;
	}
	
	.alt-savings-grid .alt-slider-header {
		flex-wrap: wrap;
		row-gap: 4px;
	}

	.alt-savings-grid .alt-slider-header span {
		flex: 1 1 100%;
	}

	.alt-savings-grid .alt-slider-header strong {
		flex: 1 1 100%;
		text-align: left;
	}

	.alt-savings-grid .alt-card {
		padding: 18px;
	}

	.alt-savings-grid .alt-card {
		padding: 18px;
	}

	.alt-savings-grid .alt-label {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.alt-savings-grid .alt-toggle {
		padding: 10px 6px;
		font-size: 13px;
	}

	.alt-savings-grid .alt-big-number {
		font-size: 28px;
		margin: 6px 0 14px;
	}

	.alt-savings-grid .alt-result-row {
		padding: 10px 12px;
		font-size: 13px;
	}

	.alt-savings-grid .alt-cta-button {
		font-size: 13px;
		padding: 10px 16px;
	}
	
	.alt-risk-grid {
		grid-template-columns: 1fr !important;
	}

	.alt-risk-grid .alt-checklist {
		grid-template-columns: 1fr;
	}

	.alt-risk-grid .alt-risk-result {
		order: -1;
		margin-bottom: 16px;
	}
}
.alt-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
}

.alt-card-result {
	background: var(--alt-navy);
	color: #fff;
}

.alt-card-result .alt-cta-button {
	display: block;
	width: fit-content;
	margin: 0 auto;
}

.alt-label {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: #38587E !important;
}

.alt-toggle-group {
	display: flex;
	gap: 6px;
	margin-bottom: 20px;
}

.alt-toggle {
	flex: 1;
	gap:5px;
	padding: 8px 6px;
	border: 1px solid var(--alt-border) !important;
	border-radius: 8px;
	background: #fff !important;
	color: #38587E !important;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	text-align: center !important;
	font-weight:bold !important;
}

.alt-toggle.alt-active {
	background: var(--alt-navy) !important;
	color: #fff !important;
	border-color: var(--alt-navy) !important;
}

/* Savings calculator: Big Law + Mid-size on row 1, In-house spans row 2 */
.alt-savings-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}

.alt-savings-toggle .alt-toggle:nth-child(3) {
	grid-column: 1 / -1;
}

.alt-inhouse-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #eef3df;
	border-radius: 10px;
	padding: 14px;
	margin-top: 16px;
}

.alt-inhouse-note[hidden] {
	display: none !important;
}

.alt-inhouse-note-icon {
	font-size: 15px;
	line-height: 1.4;
}

.alt-inhouse-note p {
	margin: 0;
	font-size: 13px;
	color: #4a5230;
	line-height: 1.4;
}

.alt-slider-header {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	margin-bottom: 6px;
	font-weight:bold !important;
	color: #38587E !important;
}

.alt-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(
		to right,
		var(--alt-green) 0%,
		var(--alt-green) var(--progress, 35%),
		#eef1f7 var(--progress, 35%),
		#eef1f7 100%
	);
	outline: none;
	cursor: pointer;
}

.alt-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 5px solid var(--alt-green);
	margin-top: 0;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.alt-slider::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 5px solid var(--alt-green);
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.alt-slider::-moz-range-track {
	height: 6px;
	border-radius: 3px;
	background: #eef1f7;
}

.alt-slider::-moz-range-progress {
	height: 6px;
	border-radius: 3px;
	background: var(--alt-green);
}

.alt-slider-labels {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: #888;
	margin-top: 4px;
}

.alt-eyebrow {
	font-size: 11px;
	letter-spacing: 0.06em;
	opacity: 0.7;
	text-transform: uppercase;
}

.alt-big-number {
	font-size: 32px;
	font-weight: 700;
	margin: 6px 0 16px;
}

.alt-result-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	margin-bottom: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
}

.alt-result-row-highlight {
	background: rgba(169, 209, 142, 0.18);
}

.alt-result-row-highlight strong {
	color: #a9d18e;
}

.alt-result-row {
	flex-wrap: nowrap;
}

.alt-result-row > span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.alt-result-row strong {
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}

.alt-result-note {
	font-size: 12px;
	opacity: 0.85;
	margin: 14px 0;
}

.alt-cta-button {
	display: inline-block;
	background: var(--alt-moss) !important;
	color: #fff!important;
	font-weight: 600;
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none !important;
	font-size: 13px;
}

.alt-tool [hidden] {
	display: none !important;
}

.alt-disclaimer {
	font-size: 12px;
	color: var(--alt-primary);
	margin-top: 16px !important;
	text-align:center;
	text-justify:center;
}

/* Risk assessment */

.alt-risk-grid {
	grid-template-columns: 1.4fr 1fr;
	align-items: start;
}

.alt-checklist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.alt-checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	border: 1px solid var(--alt-border);
	border-radius: 8px;
	padding: 8px 10px;
	cursor: pointer;
	font-size: 12px;
}

.alt-checklist-item input {
	margin-top: 3px;
}

.alt-item-category {
	display: block;
	font-size: 12px;
	color: #888;
	text-transform: uppercase;
	font-weight:bold !important;
}

.alt-item-text {
	display: block;
	color:black !important;
}

.alt-risk-result {
	background: #fff;
	border: 1px solid var(--alt-border);
	color: #222;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	transition: border-color 0.3s ease;
	top: 20px;
}

.alt-risk-result.alt-tier-low,
.alt-risk-result.alt-tier-moderate {
	border-color: #8a9c46;
}

.alt-risk-result.alt-tier-elevated {
	border-color: #d97e2a;
}

.alt-risk-result.alt-tier-high {
	border-color: #c1453a;
}

.alt-ring-wrap {
	margin-bottom: 12px;
}

.alt-ring {
	--ring-percent: 0;
	--ring-color: var(--alt-navy);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: conic-gradient( var(--ring-color) calc(var(--ring-percent) * 1%), #e7ebf2 0 );
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	font-weight: 700;
	position: relative;
	transition: background 0.3s ease;
}

.alt-ring::before {
	content: '';
	position: absolute;
	inset: 8px;
	background: #fff;
	border-radius: 50%;
}

.alt-ring span,
.alt-ring small {
	position: relative;
	z-index: 1;
	line-height: 1;
}

.alt-ring span {
	font-size: 26px;
	color: var(--alt-navy);
}

.alt-ring small {
	font-size: 12px;
	color: #888;
	margin-top: 2px;
}

.alt-flagged-box {
	width: 100%;
	background: var(--alt-bg);
	border-radius: 10px;
	padding: 14px;
	margin: 16px 0;
	text-align: left;
}

.alt-flagged-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.05em;
	color: #888;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.alt-flagged-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.alt-flagged-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--alt-border);
	border-radius: 20px;
	padding: 4px 6px 4px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #333;
}

.alt-flagged-pill em {
	font-style: normal;
	background: var(--alt-navy);
	color: #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.alt-risk-result .alt-cta-button {
	margin-top: 4px;
}

.alt-risk-result h4 {
	margin: 4px 0;
	font-size: 16px;
}

.alt-risk-result p {
	font-size: 13px;
	color: #555;
	margin: 0;
}

/* Cost comparison */

.alt-cost-comparison .alt-card {
	background: var(--alt-bg);
	border-radius: 20px;
	padding: 28px;
}

.alt-comparison-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	gap: 16px;
	margin-bottom: 24px;
}

.alt-comparison-label {
	font-size: 15px;
	font-weight: 700;
	color: var(--alt-primary);
}

.alt-comparison-label em {
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	color: #8a93a6;
	margin-left: 8px;
}

.alt-load-toggle {
	display: flex;
	gap: 4px;
	background: #fff;
	border-radius: 14px;
	padding: 6px;
	box-shadow: 0 1px 2px rgba(30, 42, 74, 0.06);
}

.alt-load-toggle .alt-toggle {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px 18px;
	border: none !important;
	border-radius: 10px;
	background: transparent !important;
	color: var(--alt-navy) !important;
}

.alt-load-toggle .alt-toggle strong {
	font-size: 14px;
	font-weight: 700;
	display: block;
}

.alt-load-toggle .alt-toggle small {
	font-size: 12px;
	font-weight: 400;
	opacity: 1;
	color: inherit;
	display: block;
	margin-top: 2px;
}

.alt-load-toggle .alt-toggle.alt-active {
	background: var(--alt-primary) !important;
	color: #fff !important;
}

.alt-load-toggle .alt-toggle.alt-active small {
	color: #fff;
	font-size:12px;
	opacity: 1 !important;
}

.alt-bar-row {
	margin-bottom: 22px;
}

.alt-bar-heading {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 14px;
	font-weight: 700;
	color: var(--alt-primary);
	margin-bottom: 8px;
}

.alt-best-value {
	display: inline-block;
	background:var(--alt-moss);
	color: #fff;
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 20px;
	margin-left: 6px;
}

.alt-bar-track {
	background: #fff;
	border-radius: 10px;
	height: 38px;
	overflow: hidden;
}

.alt-bar-fill {
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 14px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 10px;
	transition: width 0.3s ease;
	white-space: nowrap;
	min-width: 70px;
}

.alt-bar-fractional {
	background: var(--alt-moss);
}

.alt-bar-biglaw {
	background: #9aa2b1;
}

.alt-bar-midsize {
	background: #b7bec9;
}

.alt-bar-inhouse {
	background: #5b6472;
}

.alt-bar-note {
	font-size: 14px;
	color: var(--alt-primary);
	margin: 8px 0 0;
}

.alt-comparison-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	border-top: 1px solid var(--alt-border);
	padding-top: 20px;
	margin-top: 8px;
}

.alt-save-amount {
	font-size: 22px;
	font-weight: 700;
	color: var(--alt-green);
}

.alt-cta-outline {
	background: transparent !important;
	border: 1px solid var(--alt-navy) !important;
	color: var(--alt-navy) !important;
}

/* Fit check quiz */

.alt-fit-check {
	--alt-sage: #7F9050;
	--alt-sage-700: #5F6E3A;
	--alt-sage-tint: #EEF1E2;
	--alt-bg-cool: #EDF2F7;
	--alt-serif: 'Roboto Serif', Georgia, 'Times New Roman', serif;
}

.alt-quiz-card {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--alt-border);
	border-radius: 26px;
	box-shadow: 0 24px 50px -26px rgba(28, 48, 72, 0.3);
	overflow: hidden;
}

.alt-quiz-progress-track {
	background: var(--alt-bg-cool);
	height: 6px;
	margin-bottom: 0;
	border-radius: 0;
	overflow: hidden;
}

.alt-quiz-progress-fill {
	background: var(--alt-sage);
	height: 100%;
	border-radius: 0;
	transition: width 0.4s ease;
}

.alt-fit-check [data-alt-role="quiz-body"] {
	padding: 40px;
}

.alt-quiz-meta {
	font-size: 13px;
	font-weight: 600;
	color: var(--alt-navy);
	opacity: 0.55;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.alt-quiz-question {
	font-family: var(--alt-serif);
	font-weight: 600;
	font-size: clamp(22px, 3vw, 28px);
	color: var(--alt-navy);
	margin: 0 0 26px;
	line-height: 1.15;
}

.alt-quiz-options {
	display: grid;
	gap: 12px;
}

.alt-quiz-option {
	display: flex;
	align-items: center;
	gap: 14px;
	text-align: left;
	padding: 17px 20px;
	border: 1.5px solid var(--alt-border) !important;
	border-radius: 12px;
	background: #fff !important;
	color: var(--alt-navy) !important;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.alt-quiz-option:hover {
	border-color: var(--alt-navy) !important;
	background: var(--alt-bg) !important;
}

.alt-quiz-radio {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--alt-border);
	position: relative;
	transition: border-color 0.16s ease;
}

.alt-quiz-radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--alt-sage);
	transform: scale(0);
	transition: transform 0.16s ease;
}

.alt-quiz-option-active {
	border-color: var(--alt-sage) !important;
	background: var(--alt-sage-tint) !important;
}

.alt-quiz-option-active .alt-quiz-radio {
	border-color: var(--alt-sage);
}

.alt-quiz-option-active .alt-quiz-radio::after {
	transform: scale(1);
}

.alt-quiz-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 22px;
	font-size: 14px;
	font-weight: 600;
	color: #51647B !important;
	cursor: pointer;
}

.alt-quiz-back:hover {
	color: var(--alt-navy) !important;
}

.alt-quiz-back-icon {
	font-size: 18px;
	line-height: 1;
}

.alt-quiz-result {
	text-align: center;
	padding: 44px 40px;
}

.alt-quiz-band {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	border-radius: 999px;
	margin: 0 0 16px;
}

.alt-quiz-tone-calm .alt-quiz-band {
	background: var(--alt-bg-cool);
	color: #51647B;
}

.alt-quiz-tone-mid .alt-quiz-band {
	background: var(--alt-sage-tint);
	color: var(--alt-sage-700);
}

.alt-quiz-tone-high .alt-quiz-band {
	background: var(--alt-navy);
	color: #fff;
}

.alt-quiz-rhead {
	font-family: var(--alt-serif);
	font-weight: 600;
	font-size: clamp(26px, 3.5vw, 34px);
	color: var(--alt-navy);
	margin: 0 0 14px;
}

.alt-quiz-rbody {
	font-size: 16.5px;
	color: #51647B;
	max-width: 56ch;
	margin: 0 auto 28px;
	line-height: 1.65;
}

.alt-quiz-score {
	max-width: 360px;
	margin: 0 auto 28px;
}

.alt-quiz-gauge {
	height: 10px;
	background: var(--alt-bg-cool);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 8px;
}

.alt-quiz-gauge-fill {
	height: 100%;
	border-radius: 8px;
	background: linear-gradient(to right, var(--alt-sage), var(--alt-navy));
	transition: width 0.5s ease;
}

.alt-quiz-score span {
	font-size: 12.5px;
	color: #8194A8;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.alt-quiz-ractions {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	padding-bottom: 0;
}

.alt-quiz-ractions .alt-cta-button {
	background: var(--alt-navy) !important;
}

.alt-quiz-restart {
	background: none !important;
	border: none !important;
	color: #51647B !important;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.alt-quiz-restart:hover {
	color: var(--alt-navy) !important;
}

@media (max-width: 560px) {
	.alt-fit-check [data-alt-role="quiz-body"],
	.alt-quiz-result {
		padding: 28px 22px;
	}
}

/* Plan selector */

.alt-plan-selector {
	--alt-sage: #7F9050;
	--alt-sage-700: #5F6E3A;
	--alt-line: #E3E9F0;
	--alt-line-strong: #D2DBE6;
	--alt-bg-cool: #EDF2F7;
	--alt-serif: 'Roboto Serif', Georgia, 'Times New Roman', serif;
}

.alt-stage-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

@media (min-width: 701px) {
	.alt-savings-calculator {
		max-width: none;
		margin: 32px 0;
	}
}

@media ( max-width: 700px ) {
.alt-comparison-header {
		flex-wrap: wrap;
		align-items: stretch;
		gap: 14px;
		margin-bottom: 18px;
	}

	.alt-cost-comparison .alt-card {
		padding: 18px;
		border-radius: 14px;
	}

	.alt-comparison-label {
		font-size: 14px;
	}

	.alt-load-toggle {
		width: 100%;
	}

	.alt-load-toggle .alt-toggle {
		flex: 1 1 0;
		padding: 10px 6px;
		align-items: center;
		text-align: center;
	}

	.alt-load-toggle .alt-toggle strong {
		font-size: 12px;
	}

	.alt-load-toggle .alt-toggle small {
		font-size: 10px;
		margin-top: 1px;
	}

	.alt-bar-heading {
		flex-wrap: wrap;
		row-gap: 4px;
		font-size: 13px;
	}

	.alt-bar-track {
		height: 34px;
	}

	.alt-bar-fill {
		font-size: 11px;
		padding-left: 10px;
		min-width: 56px;
	}

	.alt-bar-note {
		font-size: 13px;
	}

	.alt-bar-row {
		margin-bottom: 18px;
	}

	.alt-comparison-footer {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding-top: 16px;
	}

	.alt-comparison-footer > div {
		width: 100%;
	}

	/* overrides the inline style on the footer's second <div> */
	.alt-comparison-footer > div:last-child {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.alt-save-amount {
		font-size: 20px;
	}

	.alt-stage-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.alt-savings-calculator {
		max-width: 100% !important;
		width: 100%;
		margin: 24px auto;
	}
	.alt-stage-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.alt-savings-calculator {
		max-width: 100% !important;
		width: 100%;
		margin: 24px auto;
	}
}

@media (max-width: 480px) {
	.alt-tool {
		margin: 20px auto;
		max-width: 100%;
	}

	.alt-tool-grid {
		gap: 14px;
		padding: 16px;
		border-radius: 12px;
	}

	.alt-card {
		padding: 16px;
	}

	.alt-toggle-group {
		gap: 6px;
		margin-bottom: 16px;
	}

	.alt-toggle {
		font-size: 12px;
		padding: 10px 4px;
	}

	.alt-slider-header {
		font-size: 12px;
	}

	.alt-big-number {
		font-size: 26px;
		margin: 4px 0 14px;
	}

	.alt-result-row {
		font-size: 12px;
		padding: 10px 12px;
	}

	.alt-result-note {
		font-size: 11px;
	}

	/* bigger touch target for the hours slider thumb */
	.alt-slider::-webkit-slider-thumb {
		width: 26px;
		height: 26px;
		border-width: 6px;
	}

	.alt-slider::-moz-range-thumb {
		width: 26px;
		height: 26px;
		border-width: 6px;
	}
	.alt-cost-comparison .alt-card {
		padding: 14px;
	}

	.alt-comparison-label {
		font-size: 13px;
	}

	.alt-comparison-label em {
		display: block;
		margin-left: 0;
		margin-top: 3px;
	}

	.alt-load-toggle {
		flex-direction: column;
	}

	.alt-load-toggle .alt-toggle {
		flex: 1 1 auto;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 10px 14px;
	}

	.alt-load-toggle .alt-toggle strong {
		font-size: 13px;
	}

	.alt-load-toggle .alt-toggle small {
		font-size: 11px;
		margin-top: 0;
	}

	.alt-bar-heading span:first-child {
		font-size: 12px;
	}

	.alt-best-value {
		display: inline-block;
		margin-top: 4px;
	}

	.alt-bar-track {
		height: 30px;
	}

	.alt-bar-fill {
		font-size: 10px;
		min-width: 46px;
	}
}

.alt-stage {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
	text-align: left;
	padding: 16px;
	border: 1.5px solid var(--alt-line) !important;
	background: #fff !important;
	border-radius: 14px;
	color: #333 !important;
	cursor: pointer;
	transition: border-color 0.16s ease;
}

.alt-stage:hover {
	border-color: var(--alt-line-strong) !important;
}

.alt-stage-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--alt-bg-cool);
	color: #51647B;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 4px;
}

.alt-stage.alt-active {
	background: var(--alt-navy) !important;
	border-color: var(--alt-navy) !important;
	color: #fff !important;
}

.alt-stage.alt-active .alt-stage-num {
	background: var(--alt-sage);
	color: #fff;
}

.alt-stage strong {
	display: block;
	font-size: 14.5px;
	font-weight: 600;
}

.alt-stage small {
	display: block;
	font-size: 12px;
	color: #8194A8;
}

.alt-stage.alt-active small {
	color: #b9cadd;
}

.alt-plan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}

.alt-plan-card {
	position: relative;
	background: #fff;
	border: 1.5px solid var(--alt-line);
	border-radius: 22px;
	padding: 30px 28px;
	box-shadow: 0 2px 8px -2px rgba(28, 48, 72, 0.10);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	display: flex;
	flex-direction: column;
}

.alt-plan-recommended {
	border-color: var(--alt-sage);
	box-shadow: 0 26px 56px -28px rgba(127, 144, 80, 0.55);
	transform: translateY(-4px);
}

.alt-plan-badge {
	position: absolute;
	top: -13px;
	left: 28px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--alt-sage);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 6px 13px;
	border-radius: 999px;
	box-shadow: 0 2px 8px -2px rgba(28, 48, 72, 0.10);
}

.alt-plan-badge-icon {
	font-size: 11px;
}

.alt-plan-card h4 {
	font-family: var(--alt-serif);
	font-weight: 600;
	font-size: 23px;
	color: var(--alt-navy);
	margin: 6px 0 2px;
}

.alt-plan-hours {
	font-size: 13.5px;
	color: var(--alt-sage-700);
	font-weight: 600;
}

.alt-plan-price {
	font-family: var(--alt-serif);
	font-size: 22px;
	font-weight: 600;
	color: #21384F;
	text-decoration: none !important;
	margin: 14px 0 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--alt-line);
}

.alt-plan-bestfor-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8194A8;
	margin-bottom: 2px;
}

.alt-plan-bestfor {
	font-size: 13.5px;
	font-weight: 400;
	color: #51647B;
	margin: 0 0 14px;
}

.alt-plan-desc {
	font-size: 14.5px;
	color: #51647B;
	margin: 0 0 18px;
}

.alt-plan-list {
	list-style: none;
	padding: 0;
	margin: 22px !important;
	font-size: 14.5px;
	color: var(--alt-navy);
	display: grid;
	gap: 10px;
	flex: 1;
}

.alt-plan-list li {
	padding: 0 0 0 24px;
	position: relative;
}

.alt-plan-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--alt-sage);
}

.alt-plan-card .alt-cta-button {
	width: 100%;
	text-align: center;
	background: var(--alt-navy) !important;
}

.alt-plan-card .alt-cta-outline {
	background: transparent !important;
	border: 1.5px solid var(--alt-navy) !important;
	color: var(--alt-navy) !important;
}

@media (max-width: 900px) {
	.alt-plan-grid {
		grid-template-columns: 1fr;
	}
}

/* Coverage builder */

.alt-coverage-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 24px;
	align-items: start;
}

.alt-coverage-areas {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.alt-carea {
	position: relative;
	background: #fff !important;
	border: 1.5px solid var(--alt-border) !important;
	border-radius: 14px;
	padding: 18px;
	cursor: pointer;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.alt-carea:hover {
	border-color: var(--alt-moss) !important;
}

.alt-carea-body {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	text-align: left;
	padding-right: 24px; /* keep text clear of the check badge */
}

.alt-carea-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.alt-carea-label {
	font-size: 15px;
	font-weight: 700;
	color: var(--alt-navy) !important;
}

.alt-carea-summary {
	font-size: 12.5px;
	color: #667;
	line-height: 1.4;
}

.alt-carea-on {
	background: var(--alt-lightgreen) !important;
	border-color: var(--alt-moss) !important;
}

.alt-carea-icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--alt-lightgreen);
	color: var(--alt-moss);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.alt-carea-icon-wrap svg {
	width: 20px;
	height: 20px;
}


.alt-carea-check {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 24px;
	height: 24px;
	border-radius: 7px;
	border: 1.5px solid var(--alt-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: var(--alt-navy);
	background: #fff;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.alt-carea-on .alt-carea-check {
	background: var(--alt-moss);
	border-color: var(--alt-moss);
	color: #fff;
}

.alt-carea-icon {
	font-size: 22px;
	line-height: 1;
}

.alt-carea-label {
	font-size: 15px;
	font-weight: 700;
}

.alt-carea-summary {
	font-size: 12.5px;
	color: #667;
	line-height: 1.4;
}

.alt-coverage-panel {
	top: 20px;
	background: var(--alt-navy);
	color: #fff;
	border-radius: 16px;
	padding: 24px;
}

.alt-coverage-panel-heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.7;
	margin-bottom: 14px;
}

.alt-coverage-empty {
	font-size: 13px;
	opacity: 0.85;
	line-height: 1.5;
	margin: 0;
}

.alt-coverage-count {
	font-size: 13px;
	opacity: 0.85;
	margin-bottom: 16px;
}

/* list: no per-item background box, just icon + text with breathing room,
   the whole block gets a divider below it */
.alt-coverage-list {
	list-style: none;
	margin:  0 0 20px;
	padding: 15px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	display: grid;
	gap: 16px;
}

.alt-coverage-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: none;
	border-radius: 0;
	padding: 0 0 4px;
	font-size: 13px;
}

.alt-coverage-list-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: rgba(92, 122, 1, 0.35);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.alt-coverage-list-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.alt-coverage-list strong {
	display: block;
	font-size: 14px;
}

.alt-coverage-list em {
	display: block;
	font-style: normal;
	opacity: 0.75;
	font-size: 12px;
	line-height: 1.4;
	margin-top: 3px;
}

/* estimate section: flat on the navy panel, no light-green box,
   divider below to separate from the CTA */
.alt-coverage-estimate {
	background: none;
	color: #fff;
	border-radius: 0;
	padding: 20px 0 20px;
	margin-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.alt-coverage-estimate-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.6;
	margin-bottom: 8px;
}

.alt-coverage-estimate-value {
	display: block;
	font-family: var(--alt-serif, inherit);
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 12px;
}

.alt-coverage-estimate-value i {
	font-style: normal;
	font-size: 14px;
	font-weight: 500;
	opacity: 0.7;
	margin-left: 4px;
}

/* "Closest fit" as a pill badge instead of plain colored text */
.alt-coverage-estimate-tier {
	display: inline-block;
	background: var(--alt-lightgreen);
	color: var(--alt-moss);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.alt-coverage-estimate-note {
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	opacity: 0.9;
}

/* CTA: plain text link with an arrow, not a filled button */
.alt-coverage-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--alt-moss) !important;
	color: #fff !important;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 20px;
	border-radius: 8px;
	text-align: center;
}

.alt-coverage-cta:hover {
	opacity: 0.9;
}

.alt-coverage-fine {
	font-size: 12px;
	opacity: 0.65;
	text-align: center;
	line-height: 1.5;
	margin: 14px 0 0;
}

@media (max-width: 700px) {
	.alt-coverage-grid {
		grid-template-columns: 1fr;
	}

	.alt-coverage-areas {
		grid-template-columns: 1fr;
		order: 1;
	}

	.alt-coverage-panel {
		position: static;
		order: 2;
	}
}