.scf-wizard,
.scf-wizard * {
	box-sizing: border-box !important;
	float: none !important;
	column-count: auto !important;
	columns: auto !important;
	position: static !important;
	list-style: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.scf-wizard {
	--scf-card: #ffffff;
	--scf-border: #e3e7e1;
	--scf-border-hover: #16211a;
	--scf-text: #10160f;
	--scf-muted: #6d766e;
	--scf-accent: #17a673;
	--scf-accent-dark: #0d3d2c;
	--scf-accent-soft: #e9faf1;
	--scf-track: #e7ebe4;
	--scf-danger: #d3452f;
	--scf-danger-bg: #fdeeeb;

	background: var(--scf-card) !important;
	color: var(--scf-text) !important;
	border: 1px solid var(--scf-border) !important;
	border-radius: 22px;
	box-shadow: 0 20px 45px rgba(15, 22, 15, 0.07);
	padding: 34px 38px 38px;
	max-width: 620px;
	margin: 0 auto;
	font-family: inherit;
	box-sizing: border-box;
	color-scheme: light;
}

.scf-wizard *,
.scf-wizard *::before,
.scf-wizard *::after {
	box-sizing: border-box;
}

.scf-topbar {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	margin-bottom: 22px;
}

.scf-brand {
	display: flex;
	align-items: center;
	gap: 9px;
}

.scf-brand-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 9px;
	background: var(--scf-accent-dark);
	color: #6ee7ae;
}

.scf-brand-name {
	font-weight: 600;
	font-size: 14px;
	color: var(--scf-text) !important;
	white-space: nowrap;
}

.scf-start-over {
	background: none;
	border: none;
	color: var(--scf-muted);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	padding: 6px 4px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.scf-start-over:hover {
	color: var(--scf-text);
}

.scf-meta {
	margin-bottom: 22px;
}

.scf-step-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--scf-accent);
	margin-bottom: 8px;
}

.scf-heading {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 600;
	color: var(--scf-text) !important;
	letter-spacing: -0.01em;
	line-height: 1.25;
	background: none !important;
	-webkit-text-fill-color: var(--scf-text) !important;
}

.scf-subheading {
	margin: 0;
	font-size: 14px;
	color: var(--scf-muted) !important;
	line-height: 1.5;
}

.scf-option-grid {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px;
}

.scf-option-card {
	position: relative !important;
	display: flex !important;
	align-items: center;
	gap: 14px;
	width: 100% !important;
	background: var(--scf-card) !important;
	border: 1.5px solid var(--scf-border) !important;
	border-radius: 14px;
	padding: 15px 16px;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.scf-option-card:hover,
.scf-option-card:focus-visible {
	border-color: var(--scf-accent);
	background: var(--scf-accent-soft);
	outline: none;
}

.scf-option-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--scf-track);
	font-size: 17px;
	line-height: 1;
}

.scf-option-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.scf-option-label {
	flex: 1 1 auto;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--scf-text) !important;
}

.scf-option-arrow {
	flex: 0 0 auto;
	color: var(--scf-muted);
	font-size: 15px;
	transition: transform 0.15s ease, color 0.15s ease;
}

.scf-option-card:hover .scf-option-arrow,
.scf-option-card:focus-visible .scf-option-arrow {
	color: var(--scf-accent);
	transform: translateX(3px);
}

.scf-charge {
	display: flex !important;
	gap: 5px;
	margin-bottom: 22px;
}

.scf-charge-seg {
	flex: 1 1 0;
	height: 5px;
	border-radius: 999px;
	background: var(--scf-track);
	overflow: hidden;
}

.scf-charge-seg span {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--scf-accent);
	border-radius: 999px;
	transition: width 0.35s ease;
}

.scf-charge-seg.is-complete span,
.scf-charge-seg.is-current span {
	width: 100%;
}

.scf-fieldgroup {
	display: block;
	animation: scf-fade-in 0.2s ease;
}

@keyframes scf-fade-in {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scf-field {
	margin-bottom: 16px;
}

.scf-field:last-child {
	margin-bottom: 0;
}

.scf-field label {
	display: block !important;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--scf-text) !important;
}

.scf-req {
	color: var(--scf-danger);
}

.scf-field input[type="text"],
.scf-field input[type="email"],
.scf-field input[type="tel"],
.scf-field input[type="date"],
.scf-field select,
.scf-field textarea {
	display: block !important;
	width: 100% !important;
	background: #fbfbf9 !important;
	border: 1.5px solid var(--scf-border) !important;
	color: var(--scf-text) !important;
	padding: 12px 14px;
	border-radius: 11px;
	font-size: 14.5px;
	font-family: inherit;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.scf-field input:focus,
.scf-field select:focus,
.scf-field textarea:focus {
	outline: none;
	border-color: var(--scf-accent);
	background: #fff;
}

.scf-field textarea {
	resize: vertical;
	min-height: 100px;
}

.scf-field select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--scf-accent) 50%), linear-gradient(135deg, var(--scf-accent) 50%, transparent 50%);
	background-position: calc(100% - 20px) center, calc(100% - 15px) center;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 36px;
}

.scf-other-wrap {
	margin-top: 8px;
}

.scf-other-wrap input {
	width: 100%;
	background: #fbfbf9;
	border: 1.5px solid var(--scf-border);
	color: var(--scf-text);
	padding: 12px 14px;
	border-radius: 11px;
	font-size: 14.5px;
	font-family: inherit;
}

.scf-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.scf-form-nav {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 22px;
}

.scf-btn-back {
	display: inline-flex !important;
	align-items: center;
	gap: 6px;
	background: none !important;
	border: none !important;
	color: var(--scf-muted) !important;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 6px;
}

.scf-btn-back:hover {
	color: var(--scf-text);
}

.scf-btn-back[hidden] {
	visibility: hidden;
}

.scf-btn-continue {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 1 auto;
	max-width: 220px;
	margin-left: auto;
	background: var(--scf-accent) !important;
	color: #fff !important;
	border: none !important;
	padding: 13px 22px;
	border-radius: 11px;
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.scf-btn-continue:hover {
	opacity: 0.92;
}

.scf-btn-continue:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.scf-spinner {
	display: none;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: scf-spin 0.6s linear infinite;
}

.scf-btn-continue.is-loading .scf-spinner {
	display: inline-block;
}

.scf-btn-continue.is-loading .scf-btn-continue-text {
	opacity: 0.85;
}

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

.scf-form-msg {
	display: none;
	background: var(--scf-danger-bg);
	border: 1px solid var(--scf-danger);
	color: #9c2c1a;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	margin-top: 18px;
}

.scf-form-msg.is-visible {
	display: block;
}

.scf-thankyou {
	text-align: center;
	padding: 24px 0 4px;
}

.scf-thankyou-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--scf-accent);
	color: #fff;
	margin: 0 auto 16px;
}

.scf-thankyou-msg {
	color: var(--scf-text);
	font-size: 15px;
	margin: 0 0 16px;
	line-height: 1.5;
}

.scf-start-over-alt {
	display: inline-block;
	color: var(--scf-accent);
	font-weight: 600;
}

.scf-popup-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--scf-accent, #17a673);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 12px 20px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.scf-modal {
	position: fixed !important;
	z-index: 999999;
	inset: 0;
	overflow-y: auto;
	padding: 24px;
}

.scf-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.58);
}

.scf-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 700px);
	margin: 24px auto;
}

.scf-modal-dialog .scf-wizard {
	max-width: 620px;
}

.scf-modal-close {
	position: absolute;
	z-index: 2;
	top: 11px;
	right: max(calc((100% - 620px) / 2 + 14px), 14px);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #f2f4f0;
	color: #10160f;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

body.scf-modal-open {
	overflow: hidden;
}

@media (max-width: 560px) {
	.scf-wizard {
		padding: 24px 20px 26px;
		border-radius: 16px;
	}

	.scf-heading {
		font-size: 20px;
	}

	.scf-btn-continue {
		max-width: none;
	}
}
