#wfai-customer-app {
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 1rem auto;
	max-width: 680px;
}

#wfai-customer-app *,
#wfai-customer-app *::before,
#wfai-customer-app *::after {
	box-sizing: inherit;
}

.wfai-card {
	background: #ffffff;
	border: 1px solid #d8e6f7;
	border-radius: 18px;
	box-shadow: 0 18px 45px rgba(13, 74, 130, 0.12);
	padding: 1rem;
}

.wfai-card--success {
	border-color: #8dd6a5;
}

.wfai-call-button,
.wfai-primary,
.wfai-card button {
	align-items: center;
	border: 1px solid #0b62b4;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: 0.8rem 1rem;
	text-decoration: none;
}

.wfai-call-button,
.wfai-primary {
	background: #0b62b4;
	color: #ffffff;
}

.wfai-card button {
	background: #ffffff;
	color: #0b62b4;
}

.wfai-card button:disabled {
	cursor: wait;
	opacity: 0.65;
}

.wfai-distinction {
	background: #eef6ff;
	border-left: 4px solid #0b62b4;
	border-radius: 10px;
	color: #17466f;
	font-size: 0.95rem;
	padding: 0.75rem;
}

.wfai-progress {
	display: grid;
	gap: 0.35rem;
	grid-template-columns: repeat(5, 1fr);
	margin: 1rem 0;
}

.wfai-progress span {
	background: #d8e6f7;
	border-radius: 999px;
	display: block;
	height: 8px;
}

.wfai-progress span.is-active {
	background: #0b62b4;
}

.wfai-step-header h2 {
	color: #073b6d;
	font-size: 1.5rem;
	margin: 0.25rem 0;
}

.wfai-eyebrow {
	color: #0b62b4;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0;
	text-transform: uppercase;
}

.wfai-options {
	display: grid;
	gap: 0.5rem;
	grid-template-columns: 1fr;
	margin: 1rem 0;
}

.wfai-options button.is-selected {
	background: #0b62b4;
	color: #ffffff;
}

.wfai-field {
	display: block;
	font-weight: 700;
	margin: 0.85rem 0;
}

.wfai-field span {
	display: block;
	margin-bottom: 0.35rem;
}

.wfai-field input,
.wfai-field select,
.wfai-field textarea {
	border: 1px solid #b8cce3;
	border-radius: 12px;
	font: inherit;
	min-height: 44px;
	padding: 0.7rem;
	width: 100%;
}

.wfai-field textarea {
	min-height: 92px;
}

.wfai-checkbox {
	display: block;
	line-height: 1.4;
	margin: 0.8rem 0;
}

.wfai-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
}

.wfai-estimate-box {
	background: linear-gradient(135deg, #0b62b4, #073b6d);
	border-radius: 16px;
	color: #ffffff;
	padding: 1rem;
}

.wfai-estimate-box strong {
	display: block;
	font-size: 2.25rem;
	margin: 0.35rem 0;
}

.wfai-estimate-box small {
	display: block;
	line-height: 1.5;
	opacity: 0.92;
}

.wfai-notice {
	border-radius: 12px;
	font-weight: 700;
	margin: 0.75rem 0;
	padding: 0.75rem;
}

.wfai-notice--error {
	background: #fff3f3;
	color: #9f1d1d;
}

.wfai-notice--success {
	background: #effaf2;
	color: #196b34;
}

@media (min-width: 640px) {
	.wfai-card {
		padding: 1.5rem;
	}

	.wfai-options {
		grid-template-columns: repeat(2, 1fr);
	}

	.wfai-actions {
		align-items: center;
		flex-direction: row;
	}
}
