.scqf-root {
	--scqf-accent: #d7b16a;
	--scqf-accent-soft: #f7efdb;
	--scqf-border: #eadfca;
	--scqf-text: #1f2937;
	--scqf-muted: #6b7280;
	--scqf-surface: #fffdf8;
	--scqf-shadow: 0 20px 48px rgba(31, 41, 55, 0.08);
	font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
	color: var(--scqf-text);
}

.scqf-root * {
	box-sizing: border-box;
}

.scqf-single-shell {
	max-width: 1180px;
	margin: 0 auto;
}

.scqf-single-header {
	margin-bottom: 30px;
	text-align: center;
}

.scqf-single-title {
	margin: 0;
	color: #343434;
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	font-style: italic;
	font-weight: 300;
	line-height: 1.05;
	letter-spacing: -0.05em;
}

.scqf-single-title span {
	color: #d9c270;
	font-style: normal;
	font-weight: 700;
}

.scqf-single-copy {
	max-width: 760px;
	margin: 14px auto 0;
	color: var(--scqf-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.scqf-card {
	position: relative;
	background: #ffffff;
	border: 1px solid var(--scqf-border);
	border-radius: 28px;
	box-shadow: none;
	padding: 28px;
	overflow: hidden;
}

.scqf-card::before {
	display: none;
}

.scqf-card--hero {
	max-width: 940px;
}

.scqf-card--detail {
	max-width: 920px;
	background: #ffffff;
}

.scqf-card__intro {
	position: relative;
	z-index: 1;
	margin-bottom: 22px;
}

.scqf-kicker {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(215, 177, 106, 0.14);
	color: #8c6b2c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.scqf-title {
	margin: 14px 0 8px;
	font-size: clamp(1.7rem, 2vw, 2.4rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.scqf-copy {
	margin: 0;
	color: var(--scqf-muted);
	font-size: 0.98rem;
	line-height: 1.6;
	max-width: 62ch;
}

.scqf-step2-copy {
	margin-bottom: 20px;
}

.scqf-step2-copy h3,
.scqf-complete h3 {
	margin: 0 0 8px;
	font-size: 1.3rem;
}

.scqf-step2-copy p,
.scqf-complete p,
.scqf-placeholder p {
	margin: 0;
	color: var(--scqf-muted);
	line-height: 1.6;
}

.scqf-form {
	position: relative;
	z-index: 1;
}

.scqf-submit-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	border-radius: 28px;
	background: rgba(244, 242, 237, 0.82);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.18s ease, visibility 0.18s ease;
	z-index: 50;
}

.scqf-form.is-submitting .scqf-submit-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.scqf-submit-overlay__panel {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 190px;
	padding: 22px 28px;
	border: 1px solid rgba(234, 223, 202, 0.96);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 16px 36px rgba(31, 41, 55, 0.08);
	text-align: center;
}

.scqf-submit-overlay__spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(215, 177, 106, 0.24);
	border-top-color: #d7b16a;
	border-radius: 999px;
	animation: scqf-spin 0.8s linear infinite;
}

.scqf-submit-overlay__text {
	color: #5f5b53;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

@keyframes scqf-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.scqf-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.scqf-grid--hero {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scqf-grid--hero-quote {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.scqf-grid--single {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 40px;
}

.scqf-field--wide {
	grid-column: 1 / -1;
}

.scqf-label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.92rem;
	font-weight: 700;
}

.scqf-control {
	position: relative;
}

.scqf-field__icon {
	position: absolute;
	top: 50%;
	left: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	color: #8d6c31;
	pointer-events: none;
}

.scqf-control--textarea .scqf-field__icon {
	top: 19px;
	transform: none;
}

.scqf-field__icon svg {
	width: 18px;
	height: 18px;
}

.scqf-input {
	width: 100%;
	min-height: 54px;
	border: 1px solid #e7dece;
	border-radius: 16px;
	background: #ffffff;
	padding: 14px 16px 14px 46px;
	color: var(--scqf-text);
	font: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.scqf-input--textarea {
	min-height: 132px;
	padding-top: 16px;
	resize: vertical;
}

.scqf-input--select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #8d6c31 50%),
		linear-gradient(135deg, #8d6c31 50%, transparent 50%);
	background-position:
		calc(100% - 21px) calc(50% - 3px),
		calc(100% - 14px) calc(50% - 3px);
	background-size: 7px 7px, 7px 7px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.scqf-input:focus {
	outline: none;
	border-color: var(--scqf-accent);
	box-shadow: 0 0 0 4px rgba(215, 177, 106, 0.18);
	transform: translateY(-1px);
}

.scqf-input::placeholder {
	color: #9aa2ae;
}

.scqf-control:focus-within .scqf-input::placeholder {
	color: transparent;
}

.scqf-field--single .scqf-control--single-box {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 94px;
	padding: 0 20px;
	background: #f6f5f2;
	border: 1px solid #efede7;
	border-radius: 24px;
	cursor: text;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.scqf-field--single .scqf-control--single-box:focus-within {
	border-color: rgba(215, 177, 106, 0.8);
	box-shadow: 0 0 0 4px rgba(215, 177, 106, 0.14);
	transform: translateY(-1px);
}

.scqf-input--single {
	width: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #616161;
	font-size: 1rem;
	line-height: 1.45;
	caret-color: #616161;
	box-shadow: none;
}

.scqf-input--single:focus {
	outline: none;
	border: 0;
	box-shadow: none;
	transform: none;
}

.scqf-input--single::placeholder {
	color: #7d7d7d;
	opacity: 1;
}

.scqf-control--single-date {
	cursor: pointer;
}

.scqf-control--single-date .scqf-date-display {
	width: 100%;
	color: #7d7d7d;
	font-size: 1rem;
	line-height: 1.2;
}

.scqf-control--single-date.has-value .scqf-date-display {
	color: #616161;
}

.scqf-control--single-select {
	cursor: pointer;
}

.scqf-input--single-select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 36px;
	cursor: pointer;
}

.scqf-single-select-arrow {
	position: absolute;
	right: 18px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	pointer-events: none;
}

.scqf-single-select-arrow::before {
	content: "\25BE";
	display: block;
	color: #7d7d7d;
	font-size: 0.9rem;
	line-height: 18px;
	text-align: center;
}

.scqf-control--single-textarea {
	align-items: flex-start;
	min-height: 158px;
	padding-top: 18px;
}

.scqf-input--single-textarea {
	align-self: stretch;
	min-height: 118px;
	resize: vertical;
}

.scqf-actions--single {
	margin-top: 28px;
}

.scqf-actions--single-grid {
	width: 100%;
	margin-top: 0;
}

.scqf-button--single {
	min-width: 240px;
	min-height: 68px;
	border-radius: 22px;
	background: #dccb80;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
}

.scqf-single-fields {
	padding: 24px 28px 30px;
	border-radius: 26px;
	background: #f7f5f1;
}

.scqf-grid--single-unified {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}

.scqf-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.scqf-actions--hero {
	margin-top: 18px;
}

.scqf-actions--align-left {
	justify-content: flex-start;
}

.scqf-actions--align-center {
	justify-content: center;
}

.scqf-actions--align-right {
	justify-content: flex-end;
}

.scqf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 54px;
	padding: 0 26px;
	border: 0;
	border-radius: 999px;
	background: #dccb80;
	color: #111827;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.scqf-button--hero {
	min-width: 310px;
	min-height: 82px;
	border-radius: 28px;
	background: #e4d184;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: none;
}

.scqf-button--hero:hover {
	box-shadow: none;
}

.scqf-button:hover {
	transform: translateY(-2px);
	box-shadow: none;
}

.scqf-button[disabled],
.scqf-form.is-submitting .scqf-button {
	opacity: 0.72;
	cursor: wait;
	transform: none;
}

.scqf-fineprint {
	color: var(--scqf-muted);
	font-size: 0.92rem;
}

.scqf-message {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 14px;
	font-size: 0.95rem;
	line-height: 1.5;
}

.scqf-message--success {
	background: #effaf2;
	border: 1px solid #bde0c7;
	color: #21613a;
}

.scqf-message--error {
	background: #fff3f1;
	border: 1px solid #f1c7c0;
	color: #8f2f2a;
}

.scqf-message--info {
	background: #f8f5ee;
	border: 1px solid #eadfca;
	color: #5f5b53;
}

.scqf-placeholder,
.scqf-complete {
	padding: 22px;
	border-radius: 18px;
	border: 1px dashed #d8ccb6;
	background: var(--scqf-accent-soft);
}

.scqf-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.scqf-hero-quote__panel {
	max-width: 616px;
	margin: 0 auto;
	background: #f7f5f1;
	padding: 14px 16px 24px;
	border-radius: 24px;
}

.scqf-form--hero .scqf-message {
	margin-bottom: 18px;
	border-radius: 22px;
	padding: 18px 22px;
	background: #fff1ef;
	border: 1px solid #efb5ad;
	color: #b14334;
	font-size: 0.96rem;
}

.scqf-field--hero-input .scqf-control {
	position: relative;
}

.scqf-root--step1 .scqf-field--hero-input .scqf-control--hero-box,
.scqf-root--single .scqf-field--hero-input .scqf-control--hero-box {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 90px;
	padding: 0 18px;
	background: #ffffff;
	border-radius: 22px;
	box-shadow: none;
	cursor: text;
}

.scqf-root--step1 .scqf-field--hero-input .scqf-control--hero-box:focus-within,
.scqf-root--single .scqf-field--hero-input .scqf-control--hero-box:focus-within {
	box-shadow: 0 0 0 3px rgba(220, 195, 109, 0.22);
}

.scqf-root--step1 .scqf-field--hero-input .scqf-field__icon,
.scqf-root--single .scqf-field--hero-input .scqf-field__icon {
	position: static;
	top: auto;
	left: auto;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	transform: none;
	color: #a3a3a3;
}

.scqf-root--step1 .scqf-field--hero-input .scqf-field__icon svg,
.scqf-root--single .scqf-field--hero-input .scqf-field__icon svg {
	width: 19px;
	height: 19px;
	stroke-width: 1.8;
}

.scqf-root--step1 .scqf-input--hero,
.scqf-root--single .scqf-input--hero {
	flex: 1 1 auto;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	padding: 0 !important;
	box-shadow: none !important;
	font-size: 1rem;
	color: #7d7d7d;
	line-height: 1.45 !important;
	min-height: 1.45em;
	caret-color: #7d7d7d;
	appearance: none;
	-webkit-appearance: none;
}

.scqf-root--step1 .scqf-input--hero:focus,
.scqf-root--single .scqf-input--hero:focus {
	border: 0;
	box-shadow: none !important;
	transform: none;
}

.scqf-root--step1 .scqf-input--hero::placeholder,
.scqf-root--single .scqf-input--hero::placeholder {
	color: #8f8f8f;
	opacity: 1;
}

.scqf-root--step1 .scqf-control--hero-box:focus-within .scqf-input--hero::placeholder,
.scqf-root--single .scqf-control--hero-box:focus-within .scqf-input--hero::placeholder {
	color: transparent;
	opacity: 0;
}

.scqf-root--step1 .scqf-field--hero-date .scqf-control--hero-date,
.scqf-root--single .scqf-field--hero-date .scqf-control--hero-date {
	position: relative;
	cursor: pointer;
}

.scqf-root--step1 [data-scqf-date-control]:not(.has-value):focus-within .scqf-date-display,
.scqf-root--single [data-scqf-date-control]:not(.has-value):focus-within .scqf-date-display,
.scqf-root--step2 [data-scqf-date-control]:not(.has-value):focus-within .scqf-date-display {
	color: transparent !important;
}

.scqf-root--step1 .scqf-date-display,
.scqf-root--single .scqf-date-display {
	flex: 1 1 auto;
	margin: 0;
	color: #8f8f8f;
	font-size: 1rem;
	line-height: 1.45;
	pointer-events: none;
}

.scqf-root--step1 .scqf-control--hero-date.has-value .scqf-date-display,
.scqf-root--single .scqf-control--hero-date.has-value .scqf-date-display {
	color: #7d7d7d;
}

[data-scqf-date-control] .scqf-date-native {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	color: transparent;
	caret-color: transparent;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	border: 0;
}

[data-scqf-date-control] .scqf-date-native::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

[data-scqf-date-control].scqf-date-control--custom {
	overflow: visible;
}

[data-scqf-date-control].scqf-date-control--custom .scqf-date-native {
	pointer-events: none;
}

[data-scqf-date-control].scqf-date-control--custom.is-open {
	z-index: 40;
}

.scqf-date-picker {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	width: min(340px, calc(100vw - 32px));
	padding: 14px 12px 12px;
	border: 1px solid #ece7dd;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 24px 48px rgba(31, 41, 55, 0.14);
	z-index: 60;
}

.scqf-date-picker--above {
	top: auto;
	bottom: calc(100% + 12px);
}

.scqf-date-picker[hidden] {
	display: none;
}

.scqf-date-picker__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.scqf-date-picker__title {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #1f2937;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.1;
}

.scqf-date-picker__month {
	font-size: 1.02rem;
	font-weight: 600;
}

.scqf-date-picker__year {
	color: #3f4752;
}

.scqf-date-picker__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #3f4752;
	font-size: 1.05rem;
	cursor: pointer;
}

.scqf-date-picker__nav:hover {
	background: #f4f1ea;
}

.scqf-date-picker__nav:disabled {
	opacity: 0.32;
	cursor: not-allowed;
	background: transparent;
}

.scqf-date-picker__weekdays,
.scqf-date-picker__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.scqf-date-picker__weekdays {
	margin-bottom: 6px;
}

.scqf-date-picker__weekday {
	padding: 6px 0;
	text-align: center;
	color: #7d7d7d;
	font-size: 0.82rem;
	font-weight: 700;
}

.scqf-date-picker__days {
	gap: 2px 0;
}

.scqf-date-picker__day {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 auto;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: #2f3742;
	font: inherit;
	font-size: 0.96rem;
	cursor: pointer;
}

.scqf-date-picker__day:hover {
	background: #f6f5f2;
}

.scqf-date-picker__day--muted {
	color: #c0c3c8;
}

.scqf-date-picker__day--today {
	border: 2px solid #d7b16a;
	font-weight: 600;
}

.scqf-date-picker__day--selected {
	border-color: #bfc5ce;
	background: #ffffff;
	color: #1f2937;
}

.scqf-date-picker__day--disabled {
	color: #d3d6db;
	cursor: not-allowed;
	background: transparent;
	border-color: transparent;
}

.scqf-date-picker__day--disabled:hover {
	background: transparent;
}

.scqf-date-picker__day--muted.scqf-date-picker__day--disabled {
	color: #e2e5e9;
}

.scqf-root--step1 .scqf-field--icon-person .scqf-field__icon,
.scqf-root--single .scqf-field--icon-person .scqf-field__icon {
	color: #8d73b8;
}

.scqf-root--step1 .scqf-field--icon-calendar .scqf-field__icon,
.scqf-root--single .scqf-field--icon-calendar .scqf-field__icon {
	color: #9cb5f2;
}

.scqf-root--step1 .scqf-field--icon-location .scqf-field__icon,
.scqf-root--single .scqf-field--icon-location .scqf-field__icon {
	color: #ef7fa4;
}

.scqf-root--step1 .scqf-message--success,
.scqf-root--step1 .scqf-message--info {
	background: #f7f5f1;
	border-color: #eadfca;
	color: #5f5b53;
}

.scqf-root--step2 .scqf-card {
	border-radius: 24px;
	background: #ffffff;
}

.scqf-step2-panel {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
	background: transparent;
}

.scqf-thankyou-state {
	max-width: 980px;
	margin: 0 auto;
	padding: clamp(36px, 8vw, 72px) clamp(24px, 6vw, 56px);
	border: 1px solid rgba(234, 223, 202, 0.95);
	border-radius: 32px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
		linear-gradient(135deg, rgba(247, 239, 219, 0.95), rgba(255, 255, 255, 0.98));
	box-shadow: 0 24px 56px rgba(31, 41, 55, 0.1);
	text-align: center;
}

.scqf-thankyou-state__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(215, 177, 106, 0.18);
	color: #8c6b2c;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.scqf-thankyou-state__title {
	margin: 22px 0 10px;
	color: #1f2937;
	font-size: clamp(2.2rem, 5.5vw, 4.2rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.scqf-thankyou-state__copy {
	margin: 0;
	color: #5f5b53;
	font-size: clamp(1.15rem, 2.4vw, 1.7rem);
	font-weight: 600;
	line-height: 1.45;
}

.scqf-step2-intro {
	padding: 0 0 18px;
	border-radius: 0;
	background: transparent;
}

.scqf-step2-fields {
	padding: 24px 28px 30px;
	border-radius: 26px;
	background: #f7f5f1;
}

.scqf-grid--quote-request {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}

.scqf-field--quote-request {
	position: relative;
}

.scqf-root--step2 .scqf-field--quote-extras-wide,
.scqf-root--single .scqf-field--quote-extras-wide {
	grid-column: 1 / -1;
}

.scqf-field--blank {
	pointer-events: none;
}

.scqf-field--single-cta {
	display: flex;
	align-items: stretch;
	min-height: 80px;
}

.scqf-single-cta-slot {
	display: flex;
	width: 100%;
	min-height: 80px;
}

.scqf-single-cta-slot--half {
	height: 80px;
	align-items: stretch;
}

.scqf-single-cta-slot--half.scqf-actions--align-left {
	justify-content: flex-start;
}

.scqf-single-cta-slot--half.scqf-actions--align-center {
	justify-content: center;
}

.scqf-single-cta-slot--half.scqf-actions--align-right {
	justify-content: flex-end;
}

.scqf-single-cta-slot--half .scqf-button--quote-request {
	display: flex;
	width: clamp(220px, 38%, 280px);
	height: 80px;
	min-height: 80px;
	min-width: 0;
	margin: 0;
	flex: 0 0 auto;
}

.scqf-single-cta-slot--wide.scqf-actions--align-left {
	justify-content: flex-start;
}

.scqf-single-cta-slot--wide.scqf-actions--align-center {
	justify-content: center;
}

.scqf-single-cta-slot--wide.scqf-actions--align-right {
	justify-content: flex-end;
}

.scqf-root--single .scqf-single-cta-slot .scqf-button--quote-request {
	width: clamp(220px, 38%, 300px);
	max-width: 100%;
}

.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-inline {
	grid-column: auto;
}

.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-inline .scqf-single-cta-slot {
	height: 100%;
	align-items: flex-end;
	justify-content: flex-end;
}

.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-row {
	grid-column: 1 / -1;
}

.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-row .scqf-single-cta-slot {
	justify-content: flex-end;
}

.scqf-duration-select.is-hidden {
	display: none !important;
}

.scqf-extras-panel {
	margin-top: 10px;
	padding: 10px 12px 12px;
	border: 1px solid #ece7dd;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 248, 242, 0.96) 100%);
}

.scqf-extras-panel.is-hidden {
	display: none;
}

.scqf-extras-placeholder {
	display: block;
	width: 100%;
	min-height: 92px;
	visibility: hidden;
	pointer-events: none;
}

.scqf-extras-placeholder.is-hidden {
	display: none;
}

.scqf-extras-panel--field {
	margin-top: 0;
	min-height: 0;
}

.scqf-extras-panel__head {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.scqf-extras-panel__label {
	display: inline-flex;
	align-items: center;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9a927f;
}

.scqf-extras-panel__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 8px;
}

.scqf-extras-option {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 8px 10px;
	border: 1px solid #e8e1d2;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.96);
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

.scqf-extras-option:hover {
	border-color: #dcc36d;
	background: #fffdf7;
}

.scqf-extras-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.scqf-extras-option__box {
	position: relative;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	border: 1.5px solid #c6cbd2;
	border-radius: 6px;
	background: #ffffff;
}

.scqf-extras-option__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	min-width: 0;
}

.scqf-extras-option__name {
	color: #374151;
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.28;
}

.scqf-extras-option__price {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(215, 177, 106, 0.16);
	color: #9b6c0d;
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1;
}

.scqf-root--step2 .scqf-field--quote-extras-compact .scqf-extras-panel__list,
.scqf-root--single .scqf-field--quote-extras-compact .scqf-extras-panel__list {
	grid-template-columns: 1fr;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-panel__list,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-panel__list {
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 10px 12px;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option {
	align-items: center;
	padding: 10px 12px;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__box,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__box {
	margin-top: 0;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__content,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__content {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__name,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__name {
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__price,
.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__price {
	flex: 0 0 auto;
	white-space: nowrap;
}

.scqf-extras-option input:checked + .scqf-extras-option__box {
	border-color: #dcc36d;
	background: #dcc36d;
}

.scqf-extras-option input:checked + .scqf-extras-option__box::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 6px;
	width: 4px;
	height: 8px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.scqf-extras-option input:checked ~ .scqf-extras-option__content .scqf-extras-option__name {
	color: #1f2937;
}

.scqf-root--step2 .scqf-control--quote-box,
.scqf-root--single .scqf-control--quote-box {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 80px;
	padding: 0 16px;
	background: #ffffff;
	border-radius: 20px;
	cursor: text;
}

.scqf-root--step2 .scqf-control--quote-box-textarea,
.scqf-root--single .scqf-control--quote-box-textarea {
	align-items: center;
}

.scqf-root--step2 .scqf-input--quote-request,
.scqf-root--single .scqf-input--quote-request {
	flex: 1 1 auto;
	width: 100%;
	height: auto;
	margin: 0;
	min-height: 0;
	border: 0 !important;
	border-radius: 0;
	background: transparent !important;
	padding: 0 !important;
	color: #7d7d7d;
	font: inherit;
	font-size: 1rem;
	line-height: 1.45;
	min-height: 1.45em;
	caret-color: #7d7d7d;
	box-shadow: none !important;
	appearance: none;
	-webkit-appearance: none;
}

.scqf-root--step2 .scqf-input--quote-request::placeholder,
.scqf-root--single .scqf-input--quote-request::placeholder {
	color: #6b7280;
	opacity: 1;
}

.scqf-root--step2 .scqf-control--quote-box:focus-within .scqf-input--quote-request::placeholder,
.scqf-root--single .scqf-control--quote-box:focus-within .scqf-input--quote-request::placeholder {
	color: transparent;
	opacity: 0;
}

.scqf-root--step2 .scqf-input--quote-request:focus,
.scqf-root--single .scqf-input--quote-request:focus {
	border: 0;
	outline: none;
	box-shadow: none;
	transform: none;
}

.scqf-root--step2 .scqf-input--quote-textarea,
.scqf-root--single .scqf-input--quote-textarea {
	align-self: center;
	min-height: 0;
	height: auto;
	resize: none;
}

.scqf-root--step2 .scqf-control--quote-select .scqf-input--quote-request,
.scqf-root--single .scqf-control--quote-select .scqf-input--quote-request {
	padding-right: 12px;
	cursor: pointer;
}

.scqf-root--step2 .scqf-control--quote-select,
.scqf-root--single .scqf-control--quote-select {
	cursor: pointer;
}

.scqf-root--step2 .scqf-control--quote-date,
.scqf-root--single .scqf-control--quote-date {
	cursor: pointer;
}

.scqf-root--step2 .scqf-control--quote-select .scqf-field__icon,
.scqf-root--step2 .scqf-control--quote-select .scqf-quote-select-arrow,
.scqf-root--single .scqf-control--quote-select .scqf-field__icon,
.scqf-root--single .scqf-control--quote-select .scqf-quote-select-arrow {
	pointer-events: none;
}

.scqf-root--step2 .scqf-quote-select-arrow,
.scqf-root--single .scqf-quote-select-arrow {
	position: absolute;
	right: 18px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 0;
}

.scqf-root--step2 .scqf-quote-select-arrow::before,
.scqf-root--single .scqf-quote-select-arrow::before {
	content: "\25BE";
	display: block;
	color: #7d7d7d;
	font-size: 0.9rem;
	line-height: 18px;
	text-align: center;
}

.scqf-actions--quote-request {
	margin-top: 18px;
}

.scqf-button--quote-request {
	min-width: 300px;
	min-height: 80px;
	border-radius: 20px;
	background: #e4d184;
	color: #ffffff;
	font-size: 1.06rem;
	font-weight: 700;
	box-shadow: none;
}

.scqf-single-cta-slot--half .scqf-button--quote-request {
	padding-left: 20px;
	padding-right: 20px;
}

@media (max-width: 767px) {
	.scqf-root--step1 {
		width: calc(100vw - 20px);
		max-width: none;
		margin-left: calc(50% - 50vw + 10px);
		margin-right: calc(50% - 50vw + 10px);
	}

	.scqf-card {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.scqf-submit-overlay {
		padding: 18px;
		border-radius: 22px;
	}

	.scqf-submit-overlay__panel {
		width: 100%;
		max-width: 240px;
		padding: 20px 22px;
	}

	.scqf-grid,
	.scqf-grid--hero,
	.scqf-grid--hero-quote,
	.scqf-grid--single,
	.scqf-grid--single-unified,
	.scqf-grid--quote-request {
		grid-template-columns: 1fr;
	}

	.scqf-actions {
		align-items: stretch;
	}

	.scqf-button {
		width: 100%;
	}

	.scqf-button--hero {
		min-width: 0;
		min-height: 72px;
	}

	.scqf-actions--single {
		justify-content: stretch;
	}

	.scqf-button--single {
		width: 100%;
		min-width: 0;
	}

	.scqf-single-cta-slot--half,
	.scqf-single-cta-slot--wide {
		height: auto;
	}

	.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-inline,
	.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-row {
		grid-column: auto;
	}

	.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-inline .scqf-single-cta-slot,
	.scqf-root--single .scqf-field--single-cta.scqf-field--single-cta-row .scqf-single-cta-slot {
		justify-content: stretch;
	}

	.scqf-single-cta-slot--half .scqf-button--quote-request,
	.scqf-single-cta-slot--wide .scqf-button--quote-request {
		width: 100%;
		max-width: none;
	}

	.scqf-root--step1 .scqf-hero-quote__panel {
		max-width: none;
		padding: 12px 8px 18px;
	}

	.scqf-step2-panel {
		padding: 0;
	}

	.scqf-thankyou-state {
		padding: 32px 20px 36px;
		border-radius: 24px;
	}

	.scqf-thankyou-state__title {
		margin-top: 18px;
		font-size: clamp(2rem, 9vw, 3rem);
	}

	.scqf-thankyou-state__copy {
		font-size: 1.05rem;
	}

	.scqf-step2-intro {
		padding: 0 0 16px;
		border-radius: 0;
	}

	.scqf-step2-fields {
		padding: 22px 18px 24px;
		border-radius: 22px;
	}

	.scqf-single-fields {
		padding: 22px 18px 24px;
		border-radius: 22px;
	}

	.scqf-extras-panel {
		padding: 12px 14px 14px;
	}

	.scqf-extras-panel__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.scqf-extras-panel__list {
		grid-template-columns: 1fr;
	}

	.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option,
	.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option {
		align-items: flex-start;
	}

	.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__box,
	.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__box {
		margin-top: 2px;
	}

	.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__content,
	.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.scqf-root--step2 .scqf-field--quote-extras-wide .scqf-extras-option__name,
	.scqf-root--single .scqf-field--quote-extras-wide .scqf-extras-option__name {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.scqf-field--blank {
		display: none;
	}

	.scqf-root--step1 .scqf-field--hero-input .scqf-control--hero-box,
	.scqf-root--single .scqf-field--hero-input .scqf-control--hero-box {
		min-height: 80px;
		padding: 0 16px;
	}

	.scqf-field--single .scqf-control--single-box {
		min-height: 84px;
		padding: 0 16px;
	}

	.scqf-single-title {
		font-size: clamp(2.1rem, 10vw, 3rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.scqf-input,
	.scqf-button {
		transition: none;
	}
}
