.streak-crm-form,
.streak-crm-form * {
	box-sizing: border-box;
}

/* V5 progressive intake modules. */
.streak-crm-form [hidden],
.streak-crm-form label[hidden] {
	display: none !important;
}

.streak-crm-form__progressive-confirmation {
	margin: 0 40px 28px;
	padding: 18px 20px;
	border: 1px solid #b9d8ca;
	border-radius: 10px;
	background: #effaf5;
	color: #123f32;
	font-size: 16px;
	line-height: 1.55;
}

.streak-crm-form__button--skip {
	margin-left: auto;
	border: 1px solid currentColor;
	background: transparent;
	color: #0a2342;
}

.streak-crm-form__button--skip + .streak-crm-form__button--next {
	margin-left: 12px;
}

.streak-crm-form__step[data-module="property"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="situation"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="offer"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="final"] .streak-crm-form__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.streak-crm-form__step[data-module] .streak-crm-form__field--wide,
.streak-crm-form__step[data-module] [data-field-key="property_condition_summary"],
.streak-crm-form__step[data-module] [data-field-key="occupancy_status"] {
	grid-column: 1 / -1;
}

@media (max-width: 767px) {
	.streak-crm-form__progressive-confirmation {
		margin: 0 20px 22px;
	}

	.streak-crm-form__step[data-module] .streak-crm-form__grid {
		grid-template-columns: 1fr;
	}

	.streak-crm-form__button--skip {
		margin-left: 0;
	}
}

.streak-crm-form {
	--streak-crm-form-navy: #0a2342;
	--streak-crm-form-gold: #c99645;
	--streak-crm-form-cream: #fdfaf3;
	--streak-crm-form-muted: #7d8da0;
	--streak-crm-form-border: #d8dee5;
	--streak-crm-form-chip: #f5f7f8;
	--streak-crm-form-red: #b42318;
	width: min(1060px, calc(100% - 40px));
	margin: 100px auto 96px;
	padding: 80px;
	color: var(--streak-crm-form-navy);
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 30px 60px -40px rgba(85, 64, 20, .1);
	font-family: inherit;
}

.streak-crm-form input,
.streak-crm-form select,
.streak-crm-form textarea,
.streak-crm-form button {
	font-family: inherit;
}

.streak-crm-form__header {
	max-width: 780px;
	margin: 0 auto 32px;
	text-align: center;
}

.streak-crm-form__header h2,
.streak-crm-form__header p {
	margin: 0 0 12px;
}

.streak-crm-form__progress-meta {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}

.streak-crm-form__progress-meta > span:last-child {
	margin-left: auto;
	text-align: right;
}

.streak-crm-form__progress {
	height: 6px;
	overflow: hidden;
	background: #eee8df;
	border-radius: 99px;
}

.streak-crm-form__progress-bar {
	display: block;
	height: 100%;
	width: 0;
	background: var(--streak-crm-form-gold);
	border-radius: inherit;
	transition: width .25s ease;
}

.streak-crm-form__step {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.streak-crm-form__step:focus {
	outline: 0;
}

.streak-crm-form__section-heading {
	margin: 120px 60px 28px;
}

.streak-crm-form__section-heading h2 {
	max-width: 760px;
	margin: 12px 0 12px;
	color: var(--streak-crm-form-navy);
	font-size: 60px;
	line-height: 65px;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: "Spectral", serif;
}

.streak-crm-form__section-heading > p:not(.streak-crm-form__kicker) {
	margin: 0;
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__kicker {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--streak-crm-form-gold);
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}

.streak-crm-form__kicker span {
	display: block;
	width: 48px;
	height: 2px;
	background: currentColor;
}

.streak-crm-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin: 0 60px;
}

.streak-crm-form__field--wide,
.streak-crm-form__field--radio,
.streak-crm-form__field--checkbox,
.streak-crm-form__field--file,
.streak-crm-form__field--consent {
	grid-column: 1 / -1;
}

.streak-crm-form__label {
	display: block;
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
}

.streak-crm-form__label > span[aria-hidden="true"],
.streak-crm-form__consent span > span[aria-hidden="true"] {
	color: var(--streak-crm-form-gold);
}

.streak-crm-form__field-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.streak-crm-form__selection-count {
	flex: 0 0 auto;
	padding: 2px 10px;
	color: var(--streak-crm-form-muted);
	background: var(--streak-crm-form-chip);
	border-radius: 99px;
	font-size: 16px;
	line-height: 24px;
}

.streak-crm-form input[type="text"],
.streak-crm-form input[type="email"],
.streak-crm-form input[type="tel"],
.streak-crm-form input[type="number"],
.streak-crm-form input[type="date"],
.streak-crm-form select,
.streak-crm-form textarea {
	display: block;
	width: 100%;
	min-height: 54px;
	margin: 0;
	padding: 12px 20px;
	color: var(--streak-crm-form-navy);
	background: #fff;
	border: 1px solid var(--streak-crm-form-border);
	border-radius: 10px;
	font-size: 18px;
	line-height: 27px;
}

.streak-crm-form textarea {
	min-height: 140px;
	resize: vertical;
}

.streak-crm-form input::placeholder,
.streak-crm-form textarea::placeholder {
	color: #102B464D;
	opacity: 1;
}

.streak-crm-form input:focus,
.streak-crm-form select:focus,
.streak-crm-form textarea:focus {
	border-color: var(--streak-crm-form-gold);
	outline: 3px solid rgba(201, 150, 69, .18);
}

.streak-crm-form [aria-invalid="true"] {
	border-color: var(--streak-crm-form-red) !important;
}

.streak-crm-form__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.streak-crm-form__choices label {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 20px;
	color: var(--streak-crm-form-navy);
	background: var(--streak-crm-form-chip);
	border: 1px solid var(--streak-crm-form-border);
	border-radius: 99px;
	cursor: pointer;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
}

.streak-crm-form__choices input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-gold);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__choices label:has(input:focus-visible) {
	outline: 3px solid rgba(201, 150, 69, .35);
	outline-offset: 2px;
}

.streak-crm-form__choices--paths {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.streak-crm-form__choices--paths label {
	display: flex;
	min-height: 240px;
	padding: 40px 30px;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 20px;
	background: #fff;
	border-radius: 20px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	letter-spacing: -.48px;
}

.streak-crm-form__choices--paths label:has(input:checked) {
	color: var(--streak-crm-form-navy);
	background: #fff;
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__choices--paths label > span {
	display: block;
	max-width: 156px;
}

/* Step 2: Property Basics */
.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="2"]:not([hidden])) {
	margin-top: 64px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading {
	margin: 120px 70px 44px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading h2 {
	margin: 16px 0 0;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__grid {
	display: block;
	margin: 0 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_address"] input {
	min-height: 56px;
	border-width: 2px;
	border-radius: 12px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"],
.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="bedrooms_bathrooms"] {
	margin-top: 36px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__label {
	margin-bottom: 0;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__help {
	margin: 8px 0 20px;
	color: #102b46a1;
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices label {
	min-height: 51px;
	justify-content: center;
	padding: 12px 24px;
	font-size: 20px;
	line-height: 24px;
	white-space: nowrap;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-navy);
	background: #FDFBF4;
	border: 2px solid var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__actions {
	margin-right: 70px;
	margin-left: 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__button--back {
	min-height: 61px;
	padding: 16px 32px;
	color: var(--streak-crm-form-navy);
	border-color: var(--streak-crm-form-border);
	font-size: 18px;
	line-height: 27px;
}

/* Step 3: Property Details */
.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="3"]:not([hidden])) {
	margin-top: 64px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading {
	margin: 120px 70px 36px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading h2 {
	margin: 16px 0 0;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__grid {
	display: block;
	margin: 0 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 30px;
	padding-top: 36px;
	border-top: 1px solid #e5e5e5;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__label {
	margin-bottom: 0;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__help {
	margin: 17px 0 20px;
	color: var(--streak-crm-form-muted);
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__choices {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__choices label {
	min-height: 45px;
	padding: 10px 22px;
	font-size: 20px;
	line-height: 24px;
	white-space: nowrap;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-navy);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__actions {
	margin-right: 70px;
	margin-left: 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__button--back {
	min-height: 61px;
	padding: 16px 32px;
	border-color: var(--streak-crm-form-border);
	font-size: 18px;
	line-height: 27px;
}

/* Step 4: Motivation and Priorities */
.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="4"]:not([hidden])) {
	margin-top: 64px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__progress-bar {
	width: 53.96% !important;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading {
	margin: 120px 70px 36px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading h2 {
	margin: 16px 0 0;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__grid {
	display: block;
	margin: 0 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 30px;
	padding-top: 36px;
	border-top: 1px solid #e5e5e5;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__label {
	margin-bottom: 0;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__help {
	margin: 17px 0 20px;
	color: var(--streak-crm-form-muted);
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label {
	min-height: 46px;
	padding: 10px 20px;
	font-size: 20px;
	line-height: 24px;
	white-space: nowrap;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="primary_goal"] .streak-crm-form__choices label {
	min-height: 45px;
	padding-right: 20px;
	padding-left: 20px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-navy);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label:has(input:disabled) {
	color: rgb(16 43 70 / 38%);
	background: #fafbfb;
	border-color: #edf0f2;
	cursor: not-allowed;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label:has(input:checked) {
	color: #102b46;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label:has(input:checked) span {
	color: #BE9452;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="selling_situation"] .streak-crm-form__choices label:has(input:checked),
.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="primary_goal"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-gold);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="selling_situation"] .streak-crm-form__choices label:has(input:checked) span,
.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="primary_goal"] .streak-crm-form__choices label:has(input:checked) span {
	color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-module="property"] [data-field-key="property_type"] .streak-crm-form__choices label:has(input:checked),
.streak-crm-form__step[data-module="property"] [data-field-key="property_condition_summary"] .streak-crm-form__choices label:has(input:checked),
.streak-crm-form__step[data-module="property"] [data-field-key="occupancy_status"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-gold);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-module="property"] [data-field-key="property_type"] .streak-crm-form__choices label:has(input:checked) span,
.streak-crm-form__step[data-module="property"] [data-field-key="property_condition_summary"] .streak-crm-form__choices label:has(input:checked) span,
.streak-crm-form__step[data-module="property"] [data-field-key="occupancy_status"] .streak-crm-form__choices label:has(input:checked) span {
	color: var(--streak-crm-form-gold);
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__selection-count {
	padding: 4px 12px;
	font-size: 22px;
	line-height: 32px;
	font-weight: 400;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="primary_goal"] .streak-crm-form__help {
	margin-top: 1px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__actions {
	margin-right: 70px;
	margin-left: 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__button--back {
	min-height: 61px;
	padding: 16px 32px;
	border-color: var(--streak-crm-form-border);
	font-size: 18px;
	line-height: 27px;
}

/* Step 5: Additional Details */
.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="5"]:not([hidden])) {
	margin-top: 64px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__progress-bar {
	width: 67.21% !important;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading {
	margin: 120px 70px 40px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading h2 {
	margin: 16px 0 0;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__grid {
	display: block;
	margin: 0 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 24px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__field--file {
	margin-top: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__label {
	margin-bottom: 14px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] input[type="text"],
.streak-crm-form__step[data-streak-crm-form-step="5"] input[type="number"],
.streak-crm-form__step[data-streak-crm-form-step="5"] input[type="date"] {
	min-height: 56px;
	padding: 14px 20px;
	border-radius: 14px;
	font-size: 18px;
	line-height: 27px;
	font-weight: 500;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload {
	min-height: 336px;
	gap: 0;
	padding: 48px;
	border-width: 1px;
	border-radius: 16px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload > img {
	margin-bottom: 24px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload > span:not(.streak-crm-form__upload-help) {
	margin-bottom: 8px;
	color: var(--streak-crm-form-muted);
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload-help {
	display: block;
	max-width: 600px;
	margin-top: 16px;
	color: var(--streak-crm-form-muted);
	font-size: 22px;
	line-height: 32px;
	font-weight: 400;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__actions {
	margin-right: 70px;
	margin-left: 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__button--back {
	min-height: 61px;
	padding: 16px 32px;
	border-color: var(--streak-crm-form-border);
	font-size: 18px;
	line-height: 27px;
}

/* Step 6: Contact Information */
.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="6"]:not([hidden])) {
	margin-top: 64px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__progress-bar {
	width: 81.4% !important;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading {
	margin: 120px 70px 44px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading h2 {
	margin: 16px 0 0;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__grid {
	display: block;
	margin: 0 70px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 8px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__label {
	margin-bottom: 14px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="text"],
.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="email"],
.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="tel"] {
	min-height: 56px;
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"],
.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="best_time_contact"] {
	margin-top: 16px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"] .streak-crm-form__choices,
.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="best_time_contact"] .streak-crm-form__choices {
	gap: 10px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"] .streak-crm-form__choices label,
.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="best_time_contact"] .streak-crm-form__choices label {
	min-height: 52px;
	padding: 13px 24px;
	background: #fff;
	font-size: 20px;
	line-height: 24px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"] .streak-crm-form__choices label:has(input:checked),
.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="best_time_contact"] .streak-crm-form__choices label:has(input:checked) {
	color: var(--streak-crm-form-navy);
	background: var(--streak-crm-form-cream);
	border-color: var(--streak-crm-form-gold);
	box-shadow: 0 1px 2px rgba(16, 43, 70, .12);
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__field--consent {
	margin-top: 20px;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__actions {
	margin: 56px 70px 0;
}

.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__button--back {
	min-height: 61px;
	padding: 16px 32px;
	border-color: var(--streak-crm-form-border);
	font-size: 18px;
	line-height: 27px;
}

.streak-crm-form__choices--paths label:has(input:checked)::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background: url("../icons/selected.svg") center / 20px 20px no-repeat;
	border-radius: 50%;
}

.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__field + .streak-crm-form__field,
.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__field + .streak-crm-form__field {
	padding-top: 30px;
	border-top: 1px solid #e3e7eb;
}

.streak-crm-form__choices--paths img {
	display: block;
	width: 48px;
	height: 48px;
}

.streak-crm-form__consent {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px 18px;
	background: var(--streak-crm-form-cream);
	border: 1px solid #e6dccb;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
}

.streak-crm-form__consent input {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--streak-crm-form-gold);
}

.streak-crm-form__help {
	margin: 8px 0 10px;
	color: var(--streak-crm-form-muted);
	font-size: 18px;
	line-height: 28px;
}

.streak-crm-form__error {
	min-height: 20px;
	margin: 5px 0 0;
	color: var(--streak-crm-form-red);
	font-size: 14px;
	line-height: 20px;
}

.streak-crm-form__error:empty,
.streak-crm-form__status:empty {
	display: none;
}

.streak-crm-form__upload {
	display: flex;
	min-height: 336px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	padding: 40px;
	color: var(--streak-crm-form-muted);
	text-align: center;
	border: 2px dashed var(--streak-crm-form-gold);
	border-radius: 12px;
	cursor: pointer;
	font-size: 18px;
	line-height: 28px;
}

.streak-crm-form__upload strong {
	color: var(--streak-crm-form-gold);
	font-size: 16px;
	line-height: 24px;
	text-decoration: underline;
	transition: color .2s ease;
}

.streak-crm-form__upload strong:hover {
	color: var(--streak-crm-form-navy);
}

.streak-crm-form__upload--dragging,
.streak-crm-form__upload--has-file {
	border-color: var(--streak-crm-form-gold);
	background: var(--streak-crm-form-cream);
}

.streak-crm-form__file-selection {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 14px;
	padding: 16px 20px;
	background: var(--streak-crm-form-cream);
	border: 1px solid var(--streak-crm-form-gold);
	border-radius: 10px;
}

.streak-crm-form__file-selection[hidden] {
	display: none;
}

.streak-crm-form__file-details {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.streak-crm-form__file-details > span,
.streak-crm-form__file-details small {
	color: var(--streak-crm-form-muted);
	font-size: 14px;
	line-height: 20px;
}

.streak-crm-form__file-details strong {
	overflow: hidden;
	color: var(--streak-crm-form-navy);
	font-size: 17px;
	line-height: 24px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.streak-crm-form__file-selection button {
	flex: 0 0 auto;
	padding: 8px 14px;
	color: var(--streak-crm-form-red);
	background: #fff;
	border: 1px solid currentColor;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	transition: color .2s ease, background-color .2s ease;
}

.streak-crm-form__file-selection button:hover {
	color: #fff;
	background: var(--streak-crm-form-red);
}

.streak-crm-form__file-selection button:focus-visible {
	outline: 3px solid rgba(201, 150, 69, .35);
	outline-offset: 2px;
}

.streak-crm-form__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.streak-crm-form__field--file:focus-within .streak-crm-form__upload {
	outline: 3px solid rgba(201, 150, 69, .35);
	outline-offset: 2px;
}

.streak-crm-form__actions {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin: 56px 60px 0;
	padding-top: 40px;
	border-top: 1px solid #e3e7eb;
}

.streak-crm-form__button {
	display: inline-flex;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 19px 33px;
	border: 1px solid var(--streak-crm-form-border);
	border-radius: 99px;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.streak-crm-form__button--next,
.streak-crm-form__button--submit {
	color: #fff;
	background: #BE9452;
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__button--back {
	margin-right: auto;
	color: var(--streak-crm-form-navy);
	background: #fff;
}

.streak-crm-form__button:hover {
	filter: none;
}

.streak-crm-form__button--next:hover,
.streak-crm-form__button--submit:hover {
	color: #fff;
	background: var(--streak-crm-form-navy);
	border-color: var(--streak-crm-form-navy);
}

.streak-crm-form__button--back:hover {
	color: var(--streak-crm-form-navy);
	background: rgba(201, 150, 69, .1);
	border-color: var(--streak-crm-form-gold);
}

.streak-crm-form__button:focus-visible {
	outline: 3px solid rgba(201, 150, 69, .4);
	outline-offset: 2px;
}

.streak-crm-form__button:disabled {
	opacity: .6;
	cursor: wait;
}

.streak-crm-form__status {
	margin: 20px 60px 0;
	color: var(--streak-crm-form-red);
	font-size: 16px;
	line-height: 24px;
}

.streak-crm-form__success {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.streak-crm-form:has(> .streak-crm-form__success:not([hidden])) {
	width: min(840px, calc(100% - 40px));
	min-height: 942px;
	margin-top: 64px;
	padding: 80px;
}

.streak-crm-form__success > img {
	margin-bottom: 40px;
}

.streak-crm-form__success h2 {
	margin: 0 0 24px;
	font-family: "Spectral", serif;
	font-size: 60px;
	line-height: 65px;
	font-weight: 400;
	letter-spacing: -1.2px;
}

.streak-crm-form__success p {
	max-width: 580px;
	margin: 0;
	font-size: 22px;
	line-height: 32px;
}

.streak-crm-form__success > p:nth-of-type(1) {
	margin-bottom: 16px;
}

.streak-crm-form__success > p:nth-of-type(3) {
	max-width: 600px;
	margin-bottom: 16px;
}

.streak-crm-form__success > p:nth-of-type(4) {
	max-width: 520px;
}

.streak-crm-form__success > p:empty {
	display: none;
}

.streak-crm-form__reference {
	display: grid;
	width: 440px;
	min-height: 137px;
	gap: 8px;
	align-content: center;
	margin: 44px 0 20px;
	padding: 28px 48px;
	border: 1px solid rgba(190, 148, 82, .3);
	border-radius: 16px;
}

.streak-crm-form__reference strong {
	font-size: 20px;
	line-height: 24px;
}

.streak-crm-form__reference span {
	font-family: "Spectral", serif;
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
	letter-spacing: -.64px;
}

.streak-crm-form__success .streak-crm-form__button {
	width: 272px;
	margin-top: 48px;
	padding-right: 28px;
	padding-left: 28px;
	white-space: nowrap;
}

.streak-crm-form__hp {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.streak-crm-form [hidden] {
	display: none !important;
}

@media (max-width: 1024px) {
	.streak-crm-form {
		width: calc(100% - 40px);
		margin: 50px auto;
		padding: 56px 40px;
	}

	.streak-crm-form:has(> .streak-crm-form__success:not([hidden])) {
		width: calc(100% - 40px);
		min-height: 0;
		margin-top: 50px;
		padding: 56px 40px;
	}

	.streak-crm-form__section-heading {
		margin: 72px 20px 40px;
	}

	.streak-crm-form__grid,
	.streak-crm-form__actions,
	.streak-crm-form__status {
		margin-right: 20px;
		margin-left: 20px;
	}

	.streak-crm-form__section-heading h2 {
		font-size: 36px !important;
		line-height: 46px !important;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__actions {
		margin-right: 20px;
		margin-left: 20px;
	}
}

@media (max-width: 820px) {
	.streak-crm-form {
		padding: 44px 30px;
	}

	.streak-crm-form:has(> .streak-crm-form__success:not([hidden])) {
		padding: 48px 30px;
	}

	.streak-crm-form__section-heading {
		margin-top: 64px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading {
		margin-top: 64px;
	}

	.streak-crm-form input[type="text"],
	.streak-crm-form input[type="email"],
	.streak-crm-form input[type="tel"],
	.streak-crm-form input[type="number"],
	.streak-crm-form input[type="date"],
	.streak-crm-form select,
	.streak-crm-form textarea,
	.streak-crm-form input::placeholder,
	.streak-crm-form textarea::placeholder {
		font-size: 16px;
		line-height: 24px;
	}

	.streak-crm-form__choices label,
	.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices label,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__choices label,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label,
	.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"] .streak-crm-form__choices label,
	.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="best_time_contact"] .streak-crm-form__choices label {
		font-size: 16px;
		line-height: 24px;
		white-space: normal;
	}

	.streak-crm-form__upload > span:not(.streak-crm-form__upload-help),
	.streak-crm-form__upload-help {
		font-size: 18px;
		line-height: 28px;
	}
}

@media (max-width: 767px) {
	.streak-crm-form {
		width: calc(100% - 40px);
		margin: 35px auto;
		padding: 30px 20px;
		border-radius: 18px;
	}

	.streak-crm-form:has(> .streak-crm-form__success:not([hidden])) {
		width: calc(100% - 40px);
		margin-top: 35px;
		padding: 40px 20px;
	}

	.streak-crm-form__success > img {
		width: 80px;
		height: 80px;
		margin-bottom: 28px;
	}

	.streak-crm-form__success h2 {
		margin-bottom: 18px;
		letter-spacing: 0;
	}

	.streak-crm-form__success > p:nth-of-type(1) {
		margin-bottom: 12px;
	}

	.streak-crm-form__reference {
		min-height: 120px;
		margin: 32px 0 18px;
		padding: 22px 16px;
	}

	.streak-crm-form__success .streak-crm-form__button {
		width: auto;
		margin-top: 34px;
	}

	.streak-crm-form__progress-meta {
		font-size: 15px;
		line-height: 22px;
	}

	.streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__section-heading h2,
	.streak-crm-form__success h2 {
		font-size: 35px !important;
		line-height: 45px !important;
	}

	.streak-crm-form__section-heading > p:not(.streak-crm-form__kicker),
	.streak-crm-form__success p {
		font-size: 17px;
		line-height: 26px;
	}

	.streak-crm-form__kicker,
	.streak-crm-form__label {
		font-size: 16px;
		line-height: 22px;
	}

	.streak-crm-form__grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin: 0;
	}

	.streak-crm-form__field {
		grid-column: 1;
	}

	.streak-crm-form__choices--paths {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.streak-crm-form__choices--paths label {
		min-height: 130px;
		padding: 22px;
		font-size: 20px;
		line-height: 26px;
	}

	.streak-crm-form__choices--paths label > span {
		max-width: none;
	}

	.streak-crm-form__choices label:not(:has(img)) {
		min-height: 40px;
		padding: 7px 14px;
		font-size: 15px;
		line-height: 22px;
	}

	.streak-crm-form__upload {
		min-height: 240px;
		padding: 28px 18px;
	}

	.streak-crm-form__file-selection {
		align-items: flex-start;
		gap: 12px;
		padding: 14px;
	}

	.streak-crm-form__actions {
		flex-wrap: wrap;
		align-items: center;
		margin: 35px 0 0;
		padding-top: 28px;
	}

	.streak-crm-form__button {
		min-height: 52px;
		padding: 12px 22px;
		font-size: 16px;
		line-height: 24px;
	}

	.streak-crm-form__status {
		margin: 18px 0 0;
	}

	.streak-crm-form__reference {
		width: 100%;
		min-width: 0;
	}

	.streak-crm-form__reference span {
		font-size: 25px;
		line-height: 34px;
	}

	.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="2"]:not([hidden])) {
		margin-top: 35px;
	}

	.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="3"]:not([hidden])) {
		margin-top: 35px;
	}

	.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="4"]:not([hidden])) {
		margin-top: 35px;
	}

	.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="5"]:not([hidden])) {
		margin-top: 35px;
	}

	.streak-crm-form:has(.streak-crm-form__step[data-streak-crm-form-step="6"]:not([hidden])) {
		margin-top: 35px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="2"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__actions,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__grid,
	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__actions {
		margin-right: 0;
		margin-left: 0;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices {
		grid-template-columns: 1fr;
	}

	.streak-crm-form__step[data-streak-crm-form-step="2"] [data-field-key="property_type"] .streak-crm-form__choices label:not(:has(img)) {
		min-height: 48px;
		justify-content: flex-start;
		padding: 11px 18px;
		font-size: 16px;
		line-height: 24px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__field + .streak-crm-form__field {
		margin-top: 24px;
		padding-top: 28px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__help {
		margin: 10px 0 14px;
		font-size: 17px;
		line-height: 26px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="3"] .streak-crm-form__choices label:not(:has(img)) {
		min-height: 40px;
		padding: 7px 14px;
		font-size: 15px;
		line-height: 22px;
		white-space: normal;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__field + .streak-crm-form__field {
		margin-top: 24px;
		padding-top: 28px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__help {
		margin: 10px 0 14px;
		font-size: 17px;
		line-height: 26px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__choices label:not(:has(img)) {
		min-height: 40px;
		padding: 7px 14px;
		font-size: 15px;
		line-height: 22px;
		white-space: normal;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__field-heading {
		align-items: center;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] .streak-crm-form__selection-count {
		padding: 3px 9px;
		font-size: 14px;
		line-height: 22px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="4"] [data-field-key="primary_goal"] .streak-crm-form__help {
		margin-top: 10px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__field + .streak-crm-form__field,
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__field--file {
		margin-top: 20px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload {
		min-height: 280px;
		padding: 30px 18px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload > span:not(.streak-crm-form__upload-help),
	.streak-crm-form__step[data-streak-crm-form-step="5"] .streak-crm-form__upload-help {
		font-size: 17px;
		line-height: 26px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__field + .streak-crm-form__field {
		margin-top: 12px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="text"],
	.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="email"],
	.streak-crm-form__step[data-streak-crm-form-step="6"] input[type="tel"] {
		min-height: 52px;
		padding: 11px 16px;
		font-size: 16px;
		line-height: 24px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] [data-field-key="preferred_contact"] .streak-crm-form__choices label:not(:has(img)) {
		min-height: 44px;
		padding: 9px 16px;
		font-size: 16px;
		line-height: 24px;
	}

	.streak-crm-form__step[data-streak-crm-form-step="6"] .streak-crm-form__consent {
		padding: 14px;
		font-size: 14px;
		line-height: 21px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.streak-crm-form__progress-bar {
		transition: none;
	}
}

/* Keep the V5 module layout above legacy step-specific selectors. */
.streak-crm-form [hidden],
.streak-crm-form label[hidden] { display: none !important; }
.streak-crm-form__step[data-module="property"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="situation"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="offer"] .streak-crm-form__grid,
.streak-crm-form__step[data-module="final"] .streak-crm-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.streak-crm-form__step[data-module] .streak-crm-form__field--wide,
.streak-crm-form__step[data-module] [data-field-key="property_condition_summary"],
.streak-crm-form__step[data-module] [data-field-key="occupancy_status"] { grid-column: 1 / -1; }
.streak-crm-form__button--skip {
	margin-left: auto;
	border: 1px solid #0a2342;
	background: transparent;
	color: #0a2342;
}
.streak-crm-form__button--skip + .streak-crm-form__button--next { margin-left: 12px; }
@media (max-width: 767px) {
	.streak-crm-form__step[data-module] .streak-crm-form__grid { grid-template-columns: 1fr; }
	.streak-crm-form__button--skip { margin-left: 0; }
}

/* V5 module layout normalization: prevents legacy numeric-step rules from
 * changing spacing when a module appears in a different route position. */
.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
	margin: 96px 70px 38px;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading h2 {
	margin: 14px 0 10px;
	letter-spacing: -1.2px;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 20px;
	margin: 0 70px;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__field,
.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__field + .streak-crm-form__field {
	min-width: 0;
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__label {
	margin: 0 0 14px;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__choices {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 0;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__choices label {
	min-height: 46px;
	padding: 10px 20px;
	font-size: 18px;
	line-height: 24px;
	white-space: normal;
}

.streak-crm-form__step[data-module="property"] [data-field-key="property_type"],
.streak-crm-form__step[data-module="property"] [data-field-key="property_condition_summary"],
.streak-crm-form__step[data-module="property"] [data-field-key="occupancy_status"],
.streak-crm-form__step[data-module="situation"] .streak-crm-form__field,
.streak-crm-form__step[data-module="offer"] [data-field-key="offer_received"],
.streak-crm-form__step[data-module="offer"] .streak-crm-form__field--file,
.streak-crm-form__step[data-module="offer"] .streak-crm-form__field--textarea,
.streak-crm-form__step[data-module="final"] .streak-crm-form__field {
	grid-column: 1 / -1;
}

.streak-crm-form__step[data-module="property"] [data-field-key="property_condition_summary"],
.streak-crm-form__step[data-module="property"] [data-field-key="occupancy_status"],
.streak-crm-form__step[data-module="situation"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 6px;
	padding-top: 28px;
	border-top: 1px solid #e3e7eb;
}

.streak-crm-form__step[data-module="offer"] .streak-crm-form__upload {
	min-height: 300px;
	padding: 38px;
}

.streak-crm-form__step[data-module="final"] .streak-crm-form__grid {
	grid-template-columns: 1fr;
}

.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__actions {
	margin: 52px 70px 0;
	padding-top: 36px;
}

@media (max-width: 1024px) {
	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
		margin: 72px 20px 36px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__grid,
	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__actions {
		margin-right: 20px;
		margin-left: 20px;
	}
}

@media (max-width: 767px) {
	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
		margin: 52px 0 30px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading h2 {
		margin-top: 12px;
		letter-spacing: 0;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		margin: 0;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__label {
		margin-bottom: 12px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__choices {
		gap: 10px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__choices label {
		min-height: 42px;
		max-width: 100%;
		padding: 8px 14px;
		font-size: 15px;
		line-height: 22px;
	}

	.streak-crm-form__step[data-module="property"] [data-field-key="property_condition_summary"],
	.streak-crm-form__step[data-module="property"] [data-field-key="occupancy_status"],
	.streak-crm-form__step[data-module="situation"] .streak-crm-form__field + .streak-crm-form__field {
		margin-top: 4px;
		padding-top: 24px;
	}

	.streak-crm-form__step[data-module="offer"] .streak-crm-form__upload {
		min-height: 250px;
		padding: 28px 18px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		margin: 38px 0 0;
		padding-top: 28px;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button {
		width: auto;
		margin: 0;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--back {
		justify-self: start;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--skip {
		justify-self: end;
	}

	.streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--next {
		grid-column: 1 / -1;
		justify-self: end;
	}

	.streak-crm-form__step[data-module="final"] .streak-crm-form__button--submit {
		justify-self: end;
	}
}

/* Keep progress, headings, fields and actions on one shared alignment grid. */
.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__progress-meta,
.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__progress,
.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading,
.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__grid,
.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__actions,
.streak-crm-form .streak-crm-form__status {
	margin-right: 20px;
	margin-left: 20px;
}

.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__progress-meta {
	width: auto;
}

@media (max-width: 767px) {
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__progress-meta,
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__progress,
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading,
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__grid,
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__actions,
	.streak-crm-form .streak-crm-form__status {
		margin-right: 0;
		margin-left: 0;
	}
}

/* Full-form saving state for progressive AJAX submissions. */
.streak-crm-form__form {
	position: relative;
}

.streak-crm-form__saving-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(3px);
}

.streak-crm-form__saving-message {
	display: flex;
	width: min(460px, 100%);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	padding: 28px 24px;
	color: var(--streak-crm-form-navy);
	background: #fff;
	border: 1px solid rgba(201, 150, 69, .28);
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(10, 35, 66, .14);
	text-align: center;
}

.streak-crm-form__saving-message strong {
	font-size: 20px;
	line-height: 28px;
}

.streak-crm-form__saving-lead,
.streak-crm-form__saving-detail {
	display: block;
	color: var(--streak-crm-form-muted);
	font-size: 15px;
	line-height: 22px;
}

.streak-crm-form__saving-lead {
	margin-bottom: -6px;
	color: var(--streak-crm-form-navy);
	font-weight: 600;
}

.streak-crm-form__saving-spinner {
	display: block;
	width: 44px;
	height: 44px;
	border: 4px solid rgba(201, 150, 69, .24);
	border-top-color: var(--streak-crm-form-gold);
	border-radius: 50%;
	animation: streak-crm-form-spin .8s linear infinite;
}

@keyframes streak-crm-form-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.streak-crm-form__saving-spinner {
		animation: none;
	}
}

@media (max-width: 767px) {
	.streak-crm-form__saving-overlay {
		padding: 16px;
	}

	.streak-crm-form__saving-message {
		padding: 24px 18px;
	}
}

/* Keep the mobile wizard actions on one row at every supported viewport. */
@media (max-width: 767px) {
	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__actions {
		display: grid;
		grid-template-columns: auto auto auto;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button {
		min-width: 0;
		min-height: 52px;
		margin: 0;
		padding: 12px 14px;
		font-size: 16px;
		line-height: 24px;
		white-space: nowrap;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--back {
		grid-column: 1;
		justify-self: start;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--skip {
		grid-column: 2;
		justify-self: center;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--next,
	.streak-crm-form .streak-crm-form__step[data-module="final"] .streak-crm-form__button--submit {
		grid-column: 3;
		justify-self: end;
	}
}

/* August 28 client review: make the intake feel shorter and conversational. */
.streak-crm-form__progress-meta {
	display: none;
}

.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading,
.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
	margin-top: 54px;
	margin-bottom: 34px;
}

.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading h2 {
	max-width: 720px;
	font-size: 52px;
	line-height: 60px;
}

.streak-crm-form__progressive-confirmation {
	margin: 30px 20px 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.streak-crm-form__progressive-confirmation-primary {
	display: none;
	align-items: flex-start;
	gap: 20px;
	padding: 28px 30px;
	color: #123f32;
	background: #effaf5;
	border: 1px solid #b9d8ca;
	border-radius: 16px;
}

.streak-crm-form__progressive-confirmation--primary .streak-crm-form__progressive-confirmation-primary {
	display: flex;
}

.streak-crm-form__progressive-check {
	display: inline-flex;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #287a5d;
	border-radius: 50%;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
}

.streak-crm-form__progressive-confirmation-primary strong {
	display: block;
	margin: 0 0 8px;
	font-family: "Spectral", serif;
	font-size: 30px;
	line-height: 38px;
	font-weight: 500;
}

.streak-crm-form__progressive-confirmation-primary p {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
}

.streak-crm-form__progressive-confirmation-primary p + p {
	margin-top: 8px;
}

.streak-crm-form__progressive-confirmation-compact {
	display: none;
	margin: 0;
	padding: 14px 18px;
	color: #365466;
	background: #f6faf8;
	border-left: 3px solid #6aa98f;
	border-radius: 0 8px 8px 0;
	font-size: 16px;
	line-height: 25px;
}

.streak-crm-form__progressive-confirmation--compact .streak-crm-form__progressive-confirmation-compact {
	display: block;
}

.streak-crm-form .streak-crm-form__progressive-confirmation:not([hidden]) + .streak-crm-form__section-heading {
	margin-top: 42px;
}

.streak-crm-form__consent {
	gap: 10px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #365466;
	font-size: 15px;
	line-height: 23px;
}

.streak-crm-form__consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.streak-crm-form__consent-privacy {
	margin: 6px 0 0 28px;
	color: var(--streak-crm-form-muted);
	font-size: 13px;
	line-height: 20px;
}

.streak-crm-form__consent-privacy a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.streak-crm-form__consent-privacy a:hover,
.streak-crm-form__consent-privacy a:focus-visible {
	color: var(--streak-crm-form-navy);
}

.streak-crm-form__step[data-module="universal"] [data-field-key="email"] .streak-crm-form__help {
	position: relative;
	left: calc(-100% - 24px);
	width: calc(200% + 24px);
	margin-top: 10px;
	font-size: 15px;
	line-height: 23px;
}

.streak-crm-form__step[data-module="universal"] [data-field-key="inquiry_type"] {
	order: -10;
}

.streak-crm-form__step[data-module="property"] .streak-crm-form__grid {
	row-gap: 38px;
}

.streak-crm-form__step[data-module="situation"] .streak-crm-form__field + .streak-crm-form__field {
	margin-top: 10px;
	padding-top: 40px;
}

.streak-crm-form__step[data-module="situation"] [data-field-key="selling_situation"] .streak-crm-form__choices,
.streak-crm-form__step[data-module="situation"] [data-field-key="primary_goal"] .streak-crm-form__choices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
}

.streak-crm-form__step[data-module="situation"] [data-field-key="selling_situation"] .streak-crm-form__choices label,
.streak-crm-form__step[data-module="situation"] [data-field-key="primary_goal"] .streak-crm-form__choices label {
	width: 100%;
	justify-content: flex-start;
	border-radius: 12px;
}

.streak-crm-form .streak-crm-form__button--skip {
	min-height: auto;
	margin-left: auto;
	padding: 8px 6px;
	color: #54697d;
	background: transparent;
	border: 0;
	border-radius: 4px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.streak-crm-form .streak-crm-form__button--skip:hover,
.streak-crm-form .streak-crm-form__button--skip:focus-visible {
	color: var(--streak-crm-form-navy);
	background: transparent;
}

@media (max-width: 1024px) {
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading,
	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
		margin-top: 46px;
	}

	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading h2 {
		font-size: 36px !important;
		line-height: 46px !important;
	}
}

@media (max-width: 767px) {
	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading,
	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__section-heading {
		margin-top: 36px;
		margin-bottom: 28px;
	}

	.streak-crm-form .streak-crm-form__step[data-module] .streak-crm-form__section-heading h2 {
		font-size: 35px !important;
		line-height: 45px !important;
	}

	.streak-crm-form__progressive-confirmation {
		margin: 22px 0 0;
	}

	.streak-crm-form__progressive-confirmation-primary {
		gap: 14px;
		padding: 22px 18px;
	}

	.streak-crm-form__progressive-check {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		font-size: 21px;
	}

	.streak-crm-form__progressive-confirmation-primary strong {
		font-size: 24px;
		line-height: 32px;
	}

	.streak-crm-form__progressive-confirmation-primary p,
	.streak-crm-form__progressive-confirmation-compact {
		font-size: 15px;
		line-height: 23px;
	}

	.streak-crm-form .streak-crm-form__progressive-confirmation:not([hidden]) + .streak-crm-form__section-heading {
		margin-top: 34px;
	}

	.streak-crm-form__step[data-module="situation"] [data-field-key="selling_situation"] .streak-crm-form__choices,
	.streak-crm-form__step[data-module="situation"] [data-field-key="primary_goal"] .streak-crm-form__choices {
		grid-template-columns: minmax(0, 1fr);
	}

	.streak-crm-form__step[data-module="universal"] [data-field-key="email"] .streak-crm-form__help {
		left: 0;
		width: auto;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__actions {
		grid-template-columns: auto 1fr auto;
		gap: 6px;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--back,
	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--next,
	.streak-crm-form .streak-crm-form__step[data-module="final"] .streak-crm-form__button--submit {
		padding-right: 16px;
		padding-left: 16px;
	}

	.streak-crm-form .streak-crm-form__step[data-module]:not([data-module="universal"]) .streak-crm-form__button--skip {
		padding-right: 4px;
		padding-left: 4px;
		font-size: 14px;
	}
}
