.casaw-wizard {
	max-width: 720px;
	margin: 0 auto;
	font-family: inherit;
	color: #1f2937;
}
.casaw-progress {
	height: 6px;
	background: #e5e7eb;
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 12px;
}
.casaw-progress-bar {
	height: 100%;
	width: 12.5%;
	background: #4f46e5;
	transition: width .25s ease;
}
.casaw-steps-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	font-size: 12px;
}
.casaw-steps-nav li {
	padding: 4px 10px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #6b7280;
}
.casaw-steps-nav li[aria-current="step"] {
	background: #4f46e5;
	color: #fff;
	font-weight: 600;
}
.casaw-steps-nav li[data-done="true"] {
	background: #d1fae5;
	color: #065f46;
}
.casaw-step-panel {
	min-height: 220px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
}
.casaw-step-panel h2 {
	margin-top: 0;
	font-size: 18px;
}
.casaw-field {
	margin-bottom: 16px;
}
.casaw-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}
.casaw-field input[type="text"],
.casaw-field input[type="email"],
.casaw-field input[type="number"],
.casaw-field select,
.casaw-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
}
.casaw-field textarea { min-height: 90px; }
.casaw-option-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
}
.casaw-error {
	color: #b91c1c;
	font-size: 12px;
	margin-top: 4px;
}
.casaw-wizard-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
}
.casaw-btn {
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	cursor: pointer;
	font-weight: 600;
}
.casaw-btn-primary {
	background: #4f46e5;
	color: #fff;
	margin-left: auto;
}
.casaw-btn-primary:disabled {
	opacity: .6;
	cursor: not-allowed;
}
.casaw-btn-secondary {
	background: #f3f4f6;
	color: #1f2937;
}
.casaw-doc-table, .casaw-cost-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
}
.casaw-doc-table td, .casaw-cost-table td, .casaw-cost-table th {
	padding: 8px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	text-align: left;
}
.casaw-rating-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #eef2ff;
	color: #3730a3;
	font-weight: 700;
	font-size: 16px;
}
.casaw-disclaimer {
	font-size: 12px;
	color: #6b7280;
	margin-top: 16px;
	border-top: 1px solid #eee;
	padding-top: 10px;
}
.casaw-noscript { color: #b91c1c; }
