/* =========================================================================
 * HomePros Finder — Lead Modal
 * Front-end styles. Scoped under .hpf-* to avoid theme collisions.
 * Mirrors the look & feel of the reference HomeProsFinder homepage.
 * ====================================================================== */

.hpf-glass-card,
.hpf-glass-card *,
.hpf-page-card,
.hpf-page-card *,
.hpf-hero-card,
.hpf-hero-card *,
.hpf-modal-ov,
.hpf-modal-ov * {
	box-sizing: border-box;
}

.hpf-glass-card,
.hpf-page-card,
.hpf-modal-ov {
	--hpf-blue: #1291df;
	--hpf-blue-d: #0e7bc2;
	--hpf-navy: #0d1f3c;
	--hpf-g1: #f4f7fc;
	--hpf-g2: #e8edf6;
	--hpf-g3: #c8d2e4;
	--hpf-g4: #8899b8;
	--hpf-ink-60: rgba(13, 31, 60, .6);
	--hpf-fn: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.hpf-service-mobile-panel,
.hpf-service-mobile-sheet {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	;
}

/* =========================================================================
 * GLASS SEARCH CARD
 * ====================================================================== */
.hpf-glass-card {
	background: rgba(255, 255, 255, .7);
	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 20px;
	padding: 20px;
	max-width: 620px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .15);
	font-family: var(--hpf-fn);
}

@media(max-width:992px) {
	.hpf-glass-card {
		max-width: 100%;
	}
}

.hpf-glass-label {
	color: #000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.hpf-glass-label i {
	color: var(--hpf-blue);
	font-size: 15px;
}

.hpf-step1 {
	margin: 0;
}

.hpf-glass-row {
	display: flex;
	gap: 10px;
	margin-bottom: 14px;
}

.hpf-sel-wrap {
	flex: 1;
	position: relative;
}

.hpf-sel-wrap .hpf-si {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hpf-blue);
	font-size: 16px;
	pointer-events: none;
	z-index: 1;
}

.hpf-sel-wrap .hpf-sc {
	left: auto;
	right: 13px;
	color: #000;
	font-size: 12px;
}

.hpf-glass-select {
	width: 100%;
	padding: 9px 38px 9px 40px;
	background: #fff;
	border: 1.5px solid rgba(255, 255, 255, .22);
	border-radius: 12px;
	color: #000;
	font-size: 15px;
	font-family: var(--hpf-fn);
	font-weight: 500;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	outline: none;
	transition: border-color .15s, background .15s;
	min-height: 44px;
}

.hpf-glass-select:focus {
	border-color: var(--hpf-blue);
}

.hpf-glass-select option {
	background: #fff;
	color: #000;
}

.hpf-zip-wrap {
	width: 148px;
	position: relative;
	flex-shrink: 0;
}

.hpf-zip-wrap i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hpf-blue);
	font-size: 16px;
	pointer-events: none;
}

.hpf-glass-zip {
	width: 100%;
	padding: 9px 12px 9px 36px !important;
	background: #fff !important;
	border: 1.5px solid rgba(255, 255, 255, .22) !important;
	border-radius: 12px !important;
	color: #000 !important;
	font-size: 15px !important;
	font-family: var(--hpf-fn) !important;
	font-weight: 500 !important;
	outline: none;
	transition: border-color .15s, background .15s;
	min-height: 44px;

}

.hpf-glass-zip::placeholder {
	color: #000;
}

.hpf-glass-zip:focus {
	border-color: var(--hpf-blue);
}

.hpf-glass-btn {
	width: 100% !important;
	padding: 9px 24px !important;
	;
	background: var(--hpf-blue);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--hpf-fn) !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 9px;
	box-shadow: 0 4px 20px rgba(18, 145, 223, .5);
	transition: background .15s, transform .15s, box-shadow .15s;
	min-height: 48px;
	line-height: 1.2;
	border: none !important;
}

.hpf-glass-btn:hover {
	background: var(--hpf-blue-d);
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(18, 145, 223, .55);
}

.hpf-step1-error {
	display: none;
	color: #dc2626;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 8px 11px;
	font-size: 12.5px;
	font-weight: 600;
	margin-bottom: 12px;
}

.hpf-step1-error.show {
	display: block;
}

.hpf-field-invalid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}

@media (max-width: 767px) {
	.hpf-glass-card {
		padding: 16px;
		border-radius: 18px;
	}

	.hpf-glass-row {
		flex-direction: column;
	}

	.hpf-zip-wrap {
		width: 100%;
	}

	.hpf-glass-select,
	.hpf-glass-zip,
	.hpf-glass-btn {
		min-height: 52px;
		font-size: 15px;
	}
}

/* =========================================================================
 * PAGE REQUEST CARD (inner pages — Denver style)
 * ====================================================================== */
.hpf-page-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px 28px 24px;
	max-width: 480px;
	box-shadow: 0 8px 32px rgba(13, 31, 60, .1);
	font-family: var(--hpf-fn);
}

.hpf-page-title {
	margin: 0 0 8px;
	color: var(--hpf-navy);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.hpf-page-subtitle {
	margin: 0 0 20px;
	color: var(--hpf-g4);
	font-size: 14px;
	line-height: 1.5;
}

.hpf-page-form {
	margin: 0;
}

.hpf-page-fields {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.hpf-page-field {
	position: relative;
}

.hpf-page-select,
.hpf-page-zip {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: 1.5px solid var(--hpf-g3);
	border-radius: 10px;
	color: var(--hpf-navy);
	font-size: 15px;
	font-family: var(--hpf-fn);
	font-weight: 500;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
	min-height: 48px;
	-webkit-appearance: none;
	appearance: none;
}

.hpf-page-select {
	padding-right: 38px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238899b8' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	cursor: pointer;
}

/* 
.hpf-page-select:focus,
.hpf-page-zip:focus {
	border-color: var(--hpf-blue);
	box-shadow: 0 0 0 3px rgba(18, 145, 223, .12);
} */

.hpf-page-select option {
	background: #fff;
	color: var(--hpf-navy);
}

.hpf-page-zip::placeholder {
	color: var(--hpf-g4);
}

.hpf-page-btn {
	width: 100%;
	padding: 13px 24px;
	background: var(--hpf-blue);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--hpf-fn);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	box-shadow: 0 4px 16px rgba(18, 145, 223, .35);
	transition: background .15s, transform .15s, box-shadow .15s;
	min-height: 50px;
	line-height: 1.2;
}

.hpf-page-btn:hover {
	background: var(--hpf-blue-d);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(18, 145, 223, .4);
}

.hpf-page-card .hpf-step1-error {
	margin-bottom: 14px;
}

@media (max-width: 767px) {
	.hpf-page-card {
		padding: 22px 20px 20px;
		border-radius: 14px;
	}

	.hpf-page-title {
		font-size: 20px;
	}
}

/* =========================================================================
 * MODAL OVERLAY + BOX
 * ====================================================================== */
.hpf-modal-ov {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	background: rgba(8, 18, 45, .78);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
	font-family: var(--hpf-fn);
	animation: hpf-fadein .2s ease;
}

.hpf-modal-ov[hidden]:not(.is-open) {
	display: none !important;
}

.hpf-modal-ov.is-open {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

@keyframes hpf-fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.hpf-modal-box {
	background: #fff;
	border-radius: 22px;
	width: 100%;
	max-width: 900px;
	padding: 38px 38px 30px;
	position: relative;
	box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
	animation: hpf-slideup .3s cubic-bezier(.16, 1, .3, 1);
	/* max-height: min(900px, calc(100vh - 26px)); */
	min-height: 680px;
	display: flex;
	flex-direction: column;

}

@media(max-width:992px) {
	.hpf-modal-box {
		height: 300px;
		overflow-y: auto;
	}
}

@keyframes hpf-slideup {
	from {
		transform: translateY(28px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

/* Hide site chrome entirely while the lead modal is open (sticky SHE header uses z-index ~999980). */
body.hpf-modal-open #masthead,
body.hpf-modal-open header,
body.hpf-modal-open .site-header,
body.hpf-modal-open .site-navigation,
body.hpf-modal-open .elementor-location-header,
body.hpf-modal-open .tsc-smm-sticky-header-bar,
body.hpf-modal-open .she-header-yes,
body.hpf-modal-open .hfe-flyout-wrapper,
body.hpf-modal-open .tsc-smm-portaled-backdrop,
body.hpf-modal-open .tsc-smm-portaled-panel {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Legacy modal flow uses body.modal-open + #step2Modal. */
body.modal-open {
	overflow: hidden !important;
}

body.modal-open #masthead,
body.modal-open header,
body.modal-open .site-header,
body.modal-open .site-navigation,
body.modal-open .elementor-location-header,
body.modal-open .tsc-smm-sticky-header-bar,
body.modal-open .she-header-yes,
body.modal-open .hfe-flyout-wrapper,
body.modal-open .tsc-smm-portaled-backdrop,
body.modal-open .tsc-smm-portaled-panel {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Portaled modals must sit above sticky header / flyout layers. */
#hpfModal,
#step2Modal,
.hpf-modal-ov.is-open {
	z-index: 2147483000 !important;
}

.hpf-mclose {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50% !important;
	border: none;
	background: var(--hpf-g1) !important;
	color: var(--hpf-g4) !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: background .15s, color .15s;
	z-index: 2;
	box-shadow: none !important;
	padding: 0px !important;
	border: none !important;
}

.hpf-mclose:hover {
	background: var(--hpf-navy);
	color: #fff;
}

.hpf-mtitle {
	font-family: var(--hpf-fn);
	font-size: 24px;
	line-height: 1.12;
	font-weight: 700;
	color: var(--hpf-navy);
	margin: 0 0 8px;
	padding-right: 40px;
}

@media(max-width:991px) {
	.hpf-mtitle {
		font-size: 19px;
		line-height: 1.08;
		margin-bottom: 6px;
	}
}

.hpf-span-blue {
	color: var(--hpf-blue);
}

.hpf-msub {
	color: var(--hpf-ink-60);
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 18px;
}

/* =========================================================================
 * LEAD FORM LAYOUT
 * ====================================================================== */
.hpf-leadform {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.hpf-lf-grid {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 24px;
	/* flex: 1 1 auto; */
	min-height: 0;
}

.hpf-lf-side {
	border-right: 1px solid var(--hpf-g2);
	padding-right: 22px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hpf-lf-main {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1 1 0;
}

.hpf-lf-bar {
	height: 5px;
	background: var(--hpf-g2);
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 5px;
}

.hpf-lf-fill {
	height: 100%;
	background: linear-gradient(to right, var(--hpf-blue), #60b8f5);
	width: 25%;
	transition: width .4s ease;
	border-radius: 5px;
}

.hpf-lf-pct {
	font-size: 12px;
	color: var(--hpf-g4);
	margin-bottom: 14px;
}

@media (max-width: 991px) {
	.hpf-lf-pct {
		margin-bottom: 10px;
	}
}

.hpf-lf-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hpf-lf-nav li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--hpf-ink-60);
	padding: 7px 10px;
	border-radius: 8px;
	cursor: pointer;
	margin-bottom: 4px;
	transition: background .12s, color .12s;
	text-align: center;
}

.hpf-lf-nav.is-locked li {
	pointer-events: none;
	cursor: default;
	opacity: .86;
}

.hpf-lf-nav li .hpf-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid var(--hpf-g3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

@media(max-width:991px) {
	.hpf-lf-nav li .hpf-dot {
		width: 20px;
		height: 20px;
		font-size: 10px;
	}
}

.hpf-lf-nav li.is-active {
	background: rgba(18, 145, 223, .08);
	color: var(--hpf-blue);
}

.hpf-lf-nav li.is-active .hpf-dot {
	background: var(--hpf-blue);
	border-color: var(--hpf-blue);
	color: #fff;
}

.hpf-lf-nav li.is-done .hpf-dot {
	background: #16a34a;
	border-color: #16a34a;
	color: #fff;
}

.hpf-lf-assure {
	margin-top: auto;
	padding: 14px;
	border: 1px solid rgba(18, 145, 223, .14);
	background: linear-gradient(180deg, #f8fbff, #f1f7fd);
	box-shadow: 0 8px 22px rgba(13, 31, 60, .06);
	border-radius: 12px;
}

.hpf-lf-assure h6 {
	font-size: 13px;
	font-weight: 700;
	color: var(--hpf-navy);
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hpf-lf-assure h6 i {
	color: var(--hpf-blue);
}

.hpf-lf-assure ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hpf-lf-assure li {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12.5px;
	line-height: 1.35;
	color: var(--hpf-ink-60);
	margin-bottom: 7px;
}

.hpf-lf-assure li i {
	color: #16a34a;
	font-size: 13px;
}

@media(max-width:991px) {
	.hpf-lf-assure {
		display: none;
		;
	}

	.hpf-lf-grid {
		display: flex;
		flex-direction: column;
		gap: 10px !important;
		flex: 1 1 auto;
		min-height: 0;
	}
}

@media(max-width: 991px) {
	.hpf-lf-sec {
		display: none !important;
	}
}

@media(max-width: 991px) {

	.hpf-btn-out,
	.hpf-btn-hp {
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding: 8px 14px !important;
		font-size: 13px !important;
		border-radius: 10px !important;
	}
}

/* =========================================================================
 * STEPS
 * ====================================================================== */
.hpf-leadstep {
	display: none;
	border: none;
	padding: 0;
	margin: 0;
	min-height: 350px;
}

.hpf-leadstep.is-active {
	display: flex;
	flex-direction: column;
}

@media (max-width: 991px) {
	.hpf-leadstep.is-active {
		display: flex;
		flex-direction: column;
		flex: 1 1 auto;
		min-height: 0;
	}
}

.hpf-leadstep legend {
	font-weight: 700;
	font-size: 16px;
	color: var(--hpf-navy);
	margin-bottom: 12px;
	padding: 0;
}

@media(max-width:991px) {
	.hpf-leadstep legend {
		font-size: 15px;
		margin-bottom: 10px;
	}
}

.hpf-lgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.hpf-lf {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
}

.hpf-lfs2 {
	grid-column: span 2;
}

.hpf-lfs3 {
	grid-column: span 3;
}

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

.hpf-lfl {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--hpf-navy);
	line-height: 1.5;
}

@media(max-width:991px) {
	.hpf-lfl {
		font-size: 12px;
	}
}

.hpf-lfh {
	font-weight: 400;
	color: var(--hpf-g4);
	font-size: 11px;
}

.hpf-req {
	color: #dc2626;
	font-weight: 800;
	margin-left: 2px;
}

.hpf-lf select,
.hpf-lf input,
.hpf-lf textarea {
	padding: 9px 11px !important;
	border: 1.5px solid var(--hpf-g3) !important;
	border-radius: 8px !important;
	font-size: 13.5px !important;
	font-family: var(--hpf-fn);
	color: var(--hpf-navy);
	background: #fff !important;
	outline: none;
	width: 100%;
	transition: border-color .15s, box-shadow .15s;
}

@media(max-width:767px) {

	.hpf-lf select,
	.hpf-lf input,
	.hpf-lf textarea {
		padding: 8px 10px !important;
		font-size: 12.5px !important;
	}
}

.hpf-lf select:focus,
.hpf-lf input:focus,
.hpf-lf textarea:focus {
	border-color: var(--hpf-blue);
	box-shadow: 0 0 0 3px rgba(18, 145, 223, .12);
}

.hpf-lf textarea {
	resize: vertical;
	min-height: 62px;
}

.hpf-lf input.hpf-field-invalid,
.hpf-lf textarea.hpf-field-invalid,
.hpf-lf select.hpf-field-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

.hpf-char-counter {
	margin-top: 4px;
	font-size: 11.5px;
	color: var(--hpf-ink-60);
	text-align: right;
	line-height: 1.5;
}

.hpf-photo-note {
	color: var(--hpf-ink-60);
	font-size: 12.5px;
	margin-top: 6px;
}

@media(max-width:991px) {
	.hpf-photo-note {
		display: none;
		;
	}
}

.hpf-lf input[type="file"] {
	line-height: 1.35;
	min-height: 44px;
	padding: 8px 11px;
}

.hpf-photo-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.hpf-photo-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--hpf-g1);
	border: 1px solid var(--hpf-g2);
	border-radius: 8px;
	padding: 3px 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-navy);
}

.hpf-photo-tag i {
	color: var(--hpf-blue);
}

.hpf-photo-tag button {
	border: 0;
	background: 0;
	padding: 0;
	margin-left: 3px;
	color: var(--hpf-g4);
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}

.hpf-photo-count {
	flex: 1 0 100%;
	margin: 4px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-g4);
}

/* Date field */
.hpf-date-field {
	position: relative;
}

.hpf-date-field input[type="date"] {
	padding-left: 42px !important;
	min-height: 46px;
}

.hpf-date-icon {
	position: absolute;
	left: 12px;
	bottom: 16px;
	color: #0d1f3c;
	pointer-events: none;
	font-size: 15px;
}

.hpf-date-field input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
}

/* Chips */
.hpf-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hpf-chip {
	padding: 6px 12px !important;
	border-radius: 20px !important;
	border: 1.5px solid var(--hpf-g3) !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	;
	font-family: var(--hpf-fn) !important;
	color: var(--hpf-ink-60) !important;
	background: #fff !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s;
}

@media(max-width:991px) {
	.hpf-chip {
		padding: 4px 8px !important;
		font-size: 11.5px !important;
	}
}

.hpf-chip:hover {
	border-color: var(--hpf-blue) !important;
	color: var(--hpf-blue) !important;
}

.hpf-chip.is-sel {
	background: var(--hpf-blue) !important;
	border-color: var(--hpf-blue) !important;
	color: #fff !important;
}

/* Consent checkbox */
.hpf-lf-ck {
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.45;
}

.hpf-lf-ck input {
	width: auto;
	margin-top: 4px;
	flex: 0 0 auto;
}

.hpf-lf-ck span {
	font-size: 13px;
	color: var(--hpf-ink-60);
}

/* Step error banner */
.hpf-lf-error {
	display: none;
	grid-column: span 3;
	color: #dc2626;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 12.5px;
	font-weight: 600;
}

.hpf-lf-error.show {
	display: block;
}

/* =========================================================================
 * FOOTER + BUTTONS
 * ====================================================================== */
.hpf-lf-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--hpf-g2);
	gap: 14px;
}

.hpf-lf-sec {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--hpf-g4);
}

.hpf-lf-sec i {
	color: var(--hpf-blue);
}

.hpf-btn-hp {
	background: var(--hpf-blue) !important;
	color: #fff;
	border: none;
	background: var(--hpf-blue) !important;
	font-size: 14px !important;
	padding: 10px 18px !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	line-height: 18px !important;
	font-weight: 700 !important;
	font-family: var(--hpf-fn) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background .15s, transform .15s;
	box-shadow: 0 4px 18px rgba(18, 145, 223, .35) !important;
	cursor: pointer;
	border: none !important
}

.hpf-btn-hp:hover:not(:disabled) {
	background: var(--hpf-blue-d) !important;
	transform: translateY(-1px) !important;
}

.hpf-btn-hp:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.hpf-btn-out {
	background: transparent !important;
	color: var(--hpf-navy) !important;
	border: 1.5px solid var(--hpf-g3) !important;
	padding: 9px 18px !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	line-height: 18px !important;
	font-weight: 600 !important;
	font-family: var(--hpf-fn) !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: border-color .15s, color .15s;
	cursor: pointer;
	box-shadow: none !important;

}

.hpf-btn-out:hover:not(:disabled) {
	border-color: var(--hpf-blue) !important;
	color: var(--hpf-blue) !important;
}

.hpf-btn-out:disabled {
	opacity: .45;
	cursor: not-allowed;
}

/* =========================================================================
 * THANK YOU / DONE
 * ====================================================================== */
.hpf-leaddone {
	text-align: center;
	padding: 20px 0 0;
	display: none;
	flex: 1 1 auto;
	align-items: center;
	flex-direction: column;
}

.hpf-leaddone.is-active {
	display: flex;
}

.hpf-done-ic {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #dcfce7;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	animation: hpf-pop .35s cubic-bezier(.16, 1, .3, 1);
}

@keyframes hpf-pop {
	from {
		transform: scale(.6);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.hpf-done-ic i {
	font-size: 36px;
	color: #16a34a;

}

.hpf-leaddone h3 {
	font-size: 28px;
	color: var(--hpf-navy);
	margin: 0 0 12px;
	font-weight: 500;
}

.hpf-leaddone p {
	color: var(--hpf-ink-60);
	font-size: 15px;
	max-width: 44ch;
	margin: 0 auto 16px;
	line-height: 1.5;
}

.hpf-leaddone p strong,
.hpf-leaddone p .hpf-success-ref {
	font-weight: 700;
	color: var(--hpf-navy);
}

/* Submitted state hides chrome */
.hpf-modal-box.is-submitted .hpf-lf-side,
.hpf-modal-box.is-submitted .hpf-lf-foot,
.hpf-modal-box.is-submitted .hpf-leadstep:not(.hpf-leaddone) {
	display: none !important;
}

.hpf-modal-box.is-submitted .hpf-lf-grid {
	display: block;
}

.hpf-modal-box.is-submitted .hpf-leaddone.is-active {
	display: flex !important;
}

/* =========================================================================
 * RESPONSIVE
 * ====================================================================== */
@media (max-width: 991px) {
	.hpf-modal-ov {
		align-items: flex-end;
		padding: 0;
	}

	.hpf-modal-box {
		max-width: 100%;
		width: 100%;
		min-height: 100vh;
		overflow-y: auto;
		border-radius: 22px 22px 0 0;
		padding: 18px 14px calc(14px + env(safe-area-inset-bottom, 0px));
	}

	.hpf-lf-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hpf-lf-side {
		border-right: none;
		border-bottom: 1px solid var(--hpf-g2);
		padding-right: 0;
		padding-bottom: 16px;
	}

	@media (max-width: 991px) {
		.hpf-lf-side {
			padding-bottom: 8px;
			flex: 0 0 auto;
			;
			height: auto;
		}
	}

	.hpf-lf-nav {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 6px;
	}

	.hpf-lf-nav li {
		margin-bottom: 0;
		padding: 7px 4px;
		font-size: 10.5px;
		line-height: 1.25;
		text-align: center;
		white-space: normal;
		justify-content: center;
		gap: 5px;
	}

}

@media (max-width: 767px) {
	.hpf-modal-box {
		padding: 18px 14px calc(14px + env(safe-area-inset-bottom, 0px));
	}

	.hpf-mtitle {
		font-size: 19px;
	}

	.hpf-msub {
		font-size: 12.5px;
		line-height: 1.35;
		margin-bottom: 12px;
	}

	.hpf-lgrid,
	.hpf-you-grid {
		grid-template-columns: 1fr;
	}

	.hpf-lfs2,
	.hpf-lfs3 {
		grid-column: span 1;
	}

	.hpf-lf-error {
		grid-column: span 1;
	}

	.hpf-lf-sec {
		order: 3;
		width: 100%;
		justify-content: center;
	}

	/* .hpf-btn-hp,
	.hpf-btn-out {
		flex: 1;
	} */
	.hpf-leaddone h3 {
		font-size: 23px;
	}
}

@media(max-width:991px) {
	.hpf-lf-foot {
		position: sticky;
		bottom: 0;
		z-index: 10;
		margin-top: 0;
		padding: 10px 0 0;
		background: linear-gradient(to top, #fff 82%, rgba(255, 255, 255, .92) 100%);
		border-top: 1px solid var(--g2);
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		align-items: stretch;
		flex: 0 0 auto;
	}
}

/* Thank-you email delivery status */
.hpf-email-status {
	margin: 14px 0 0;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.55;
	text-align: left;
}

.hpf-email-status--ok {
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.hpf-email-status--err {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.hpf-email-status--pending {
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

/* .hpf-modal-box{
  transform: translateY(170px);
}
@media(min-width:1024px){
	.hpf-modal-box{
		transform: translateY(100px);
	}
} */
.sm-chart {
	background-color: #00738C !important;
}

/* ========== TSC Service Mega Menu (frontend) ========== */
/* Toggle mode: hamburger sits in header right column */
.tsc-smm-wrap--toggle {
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 0 0 auto !important;
	padding: 0 !important;
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
	flex: 0 0 auto !important;
	clear: none !important;
}

.tsc-smm-mobile-only--toggle {
	display: none !important;
}

@media (max-width: 1024px) {
	.tsc-smm-mobile-only--toggle {
		display: block !important;
		width: auto !important;
		max-width: none !important;
		margin-left: auto !important;
	}
}

/* Blue hamburger â€“ header row ke andar (scroll par row sticky rehti hai) */
.tsc-smm-toggle-app {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	width: 44px;
	height: 44px;
	min-height: 44px;
	flex-shrink: 0;
}

.tsc-smm-hamburger {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative !important;
	top: auto !important;
	right: auto !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	margin: 0 !important;
	padding: 10px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
	z-index: 2 !important;
	-webkit-tap-highlight-color: transparent;
	appearance: none !important;
}

/* Mobile: logo + hamburger wali poori header row scroll par stable (2nd screenshot) */
@media (max-width: 1024px) {
	.tsc-smm-sticky-header-bar {
		position: sticky !important;
		top: var(--tsc-smm-sticky-top, 0px) !important;
		z-index: 999980 !important;
		background: #fff !important;
		background-color: #fff !important;
		width: 100% !important;
		max-width: 100% !important;
		box-shadow: 0 1px 0 #e8ecf0;
		isolation: isolate;
	}

	.tsc-smm-sticky-header-bar .tsc-smm-hamburger {
		position: relative !important;
		top: auto !important;
		right: auto !important;
	}

	.elementor-location-header:has(.tsc-smm-wrap--toggle) {
		overflow: visible !important;
	}
}

.tsc-smm-hamburger-bars {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 21px;
	height: 18px;
}

.tsc-smm-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--tsc-smm-icon, #119cf5) !important;
	border-radius: 1px;
	transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.tsc-smm-toggle-app.is-open .tsc-smm-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.tsc-smm-toggle-app.is-open .tsc-smm-bar:nth-child(2) {
	opacity: 0;
}

.tsc-smm-toggle-app.is-open .tsc-smm-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Portaled to body â€“ full screen overlay (screenshot) */
.tsc-smm-portaled-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 27, 50, 0.4);
	z-index: 999998;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.tsc-smm-portaled-backdrop.is-visible {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

.tsc-smm-portaled-panel,
.tsc-smm-services-panel {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
	height: 100dvh;
	max-height: 100dvh;
	z-index: 999999;
	background: #fff;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
	transform: none !important;
}

.tsc-smm-portaled-panel.is-visible,
.tsc-smm-toggle-app.is-open .tsc-smm-services-panel.is-visible {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.tsc-smm-services-panel[hidden] {
	display: block !important;
}

.tsc-smm-portaled-panel .tsc-smm-mobile,
.tsc-smm-services-panel .tsc-smm-mobile {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	height: 100%;
	max-height: 100dvh;
}

.tsc-smm-portaled-panel .tsc-smm-mobile-panels,
.tsc-smm-services-panel .tsc-smm-mobile-panels {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.tsc-smm-portaled-panel .hpf-mobile-menu__head,
.tsc-smm-portaled-panel .tsc-smm-m-brandbar,
.tsc-smm-services-panel .hpf-mobile-menu__head,
.tsc-smm-services-panel .tsc-smm-m-brandbar {
	position: sticky;
	top: 0;
	z-index: 2;
	flex-shrink: 0;
	background: #fff;
}

body.tsc-smm-menu-open {
	overflow: hidden !important;
}

@media (min-width: 1025px) {

	.tsc-smm-mobile-only--toggle,
	.tsc-smm-wrap--toggle {
		display: none !important;
	}
}

/* Wrapper: force full width (fixes narrow Elementor columns) */
.tsc-smm-wrap,
.tsc-smm-fullwidth {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: both !important;
	flex: 0 0 100% !important;
}

/* Expand parent Elementor column to full row width */
@supports selector(:has(*)) {

	.elementor-column:has(.tsc-smm-wrap--toggle),
	.e-con:has(.tsc-smm-wrap--toggle) {
		/* width: auto !important; */
		max-width: none !important;
		flex: 0 0 auto !important;
		--width: auto !important;
		margin-left: auto !important;
	}

	.elementor-column:has(.tsc-smm-fullwidth),
	.elementor-column:has(.tsc-smm-mobile):not(:has(.tsc-smm-wrap--toggle)),
	.e-con:has(.tsc-smm-fullwidth),
	.e-con:has(.tsc-smm-mobile):not(:has(.tsc-smm-wrap--toggle)) {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		--width: 100% !important;
	}

	.elementor-widget-wrap:has(.tsc-smm-wrap),
	.elementor-widget-wrap:has(.tsc-smm-mobile) {
		width: 100% !important;
	}

	.elementor-row:has(.tsc-smm-wrap),
	.elementor-row:has(.tsc-smm-mobile),
	.e-con.e-parent:has(.tsc-smm-wrap) {
		flex-wrap: wrap !important;
	}
}

@media (max-width: 1024px) {

	.elementor-popup-modal .tsc-smm-wrap,
	.elementor-popup-modal .tsc-smm-mobile,
	.elementor-location-header .tsc-smm-wrap,
	.elementor-menu-popup .tsc-smm-wrap,
	[class*="popup"] .tsc-smm-wrap,
	[class*="off-canvas"] .tsc-smm-wrap,
	[class*="drawer"] .tsc-smm-wrap {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
}

/* Hidden on desktop when using default shortcode */
.tsc-smm-mobile-only {
	display: none !important;
	width: 100% !important;
	max-width: 100% !important;
}

@media (max-width: 1024px) {
	.tsc-smm-mobile-only {
		display: block !important;
	}
}

/* Always visible inside Elementor / theme mobile popup */
.tsc-smm-in-drawer,
.tsc-smm-mobile-only .tsc-smm-in-drawer {
	display: block !important;
	width: 100% !important;
}

/* â”€â”€â”€ Desktop mega menu (only with with_desktop="1") â”€â”€â”€ */
.tsc-smm-nav--desktop,
.tsc-smm-nav--desktop * {
	box-sizing: border-box;
}

.tsc-smm-nav--desktop {
	--tsc-smm-main-text: #0f1b32;
	--tsc-smm-sub-text: #6b778b;
	--tsc-smm-icon: #119cf5;
	--tsc-smm-active-bg: #eef9ff;
	--tsc-smm-dropdown-bg: #ffffff;
	--tsc-smm-dropdown-width: 410px;
	width: 100%;
	font-family: inherit;
	position: relative;
	z-index: 99;
}

.tsc-smm-nav--desktop .tsc-smm-main-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tsc-smm-nav--desktop .tsc-smm-main-item {
	position: relative;
	margin: 0;
	padding: 0;
}

.tsc-smm-nav--desktop .tsc-smm-main-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 12px;
	border-radius: 11px;
	color: var(--tsc-smm-item-text, var(--tsc-smm-main-text));
	text-decoration: none !important;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.tsc-smm-nav--desktop .tsc-smm-main-item:hover>.tsc-smm-main-link,
.tsc-smm-nav--desktop .tsc-smm-main-item:focus-within>.tsc-smm-main-link,
.tsc-smm-nav--desktop .tsc-smm-main-item.is-open>.tsc-smm-main-link {
	background: var(--tsc-smm-active-bg);
	color: var(--tsc-smm-icon);
}

.tsc-smm-nav--desktop .tsc-smm-main-icon,
.tsc-smm-nav--desktop .tsc-smm-sub-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: var(--tsc-smm-icon);
}

.tsc-smm-nav--desktop .tsc-smm-main-icon {
	width: 21px;
	height: 21px;
}

.tsc-smm-nav--desktop .tsc-smm-sub-icon {
	width: 24px;
	height: 24px;
}

.tsc-smm-nav--desktop .tsc-smm-main-icon svg,
.tsc-smm-nav--desktop .tsc-smm-sub-icon svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tsc-smm-nav--desktop .tsc-smm-image-icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.tsc-smm-nav--desktop .tsc-smm-caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
}

.tsc-smm-nav--desktop .tsc-smm-dropdown {
	position: absolute;
	top: calc(100% + 0px);
	left: 0;
	width: var(--tsc-smm-dropdown-width);
	max-width: calc(100vw - 24px);
	background: var(--tsc-smm-dropdown-bg);
	border: 1px solid #eef1f5;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 18px 35px rgba(23, 38, 55, 0.12);
	padding: 15px 18px 16px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.tsc-smm-nav--desktop .tsc-smm-main-item:hover>.tsc-smm-dropdown,
.tsc-smm-nav--desktop .tsc-smm-main-item:focus-within>.tsc-smm-dropdown,
.tsc-smm-nav--desktop .tsc-smm-main-item.is-open>.tsc-smm-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.tsc-smm-nav--desktop .tsc-smm-dropdown ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsc-smm-nav--desktop .tsc-smm-dropdown li {
	margin: 0;
	padding: 0;
}

.tsc-smm-nav--desktop .tsc-smm-sub-link {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 52px;
	padding: 8px 8px 8px 10px;
	color: var(--tsc-smm-item-text, var(--tsc-smm-sub-text));
	text-decoration: none !important;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.25;
	border-radius: 10px;
	transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.tsc-smm-nav--desktop .tsc-smm-sub-link:hover,
.tsc-smm-nav--desktop .tsc-smm-sub-link:focus {
	color: var(--tsc-smm-icon);
	background: rgba(17, 156, 245, 0.07);
	transform: translateX(2px);
	outline: none;
}

@media (max-width: 1024px) {
	.tsc-smm-nav--desktop {
		display: none !important;
	}
}

/* â”€â”€â”€ Mobile drill-down menu (screenshot design) â”€â”€â”€ */
.tsc-smm-mobile,
.tsc-smm-mobile *,
.tsc-smm-mobile *::before,
.tsc-smm-mobile *::after {
	box-sizing: border-box;
}

.tsc-smm-mobile {
	--tsc-smm-main-text: #0d1f3c;
	--tsc-smm-sub-text: #0d1f3c;
	--tsc-smm-icon: #119cf5;
	--tsc-smm-border: #e8edf6;
	--tsc-smm-muted: #9aa3b2;
	--tsc-smm-pad-x: 20px;
	--tsc-smm-row-pad-y: 17px;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	background: #fff !important;
	color: var(--tsc-smm-main-text) !important;
	text-align: left !important;
	float: none !important;
	position: relative !important;
	z-index: 1 !important;
}

.tsc-smm-mobile-panels {
	position: relative;
	overflow: hidden;
	width: 100% !important;
}

.tsc-smm-mobile-panel {
	background: #fff !important;
	width: 100% !important;
}

.tsc-smm-mobile-panel[hidden] {
	display: none !important;
}

.tsc-smm-mobile-panel.is-active {
	display: block !important;
}

/* Brand bar â€“ hpf-mobile-menu__head (screenshot HTML) */
.hpf-mobile-menu__head,
.tsc-smm-m-brandbar {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	min-height: 58px;
	padding: 14px var(--tsc-smm-pad-x) !important;
	border-bottom: 1px solid var(--tsc-smm-border) !important;
	background: #fff !important;
	width: 100% !important;
	gap: 12px;
}

.hpf-mobile-menu__logo {
	display: block !important;
	width: 141px !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	object-position: left center !important;
	flex: 0 1 auto;
}

.hpf-mobile-menu__close {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	margin: 0 0 0 auto !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: var(--tsc-smm-main-text, #0f1b32) !important;
	cursor: pointer;
	flex-shrink: 0;
	-webkit-tap-highlight-color: transparent;
	appearance: none !important;
}

.hpf-mobile-menu__close .bi-x-lg {
	font-size: 1.35rem;
	line-height: 1;
	font-weight: 700;
}

.tsc-smm-m-brand {
	display: flex !important;
	align-items: center !important;
	gap: 10px;
	min-width: 0;
	flex: 1 1 auto;
}

.tsc-smm-m-brand-logo {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.tsc-smm-m-brand-text {
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.15 !important;
	color: var(--tsc-smm-main-text) !important;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.tsc-smm-m-brand-text .tsc-smm-brand-homepros,
.tsc-smm-m-brand-text .tsc-smm-brand-home,
.tsc-smm-m-brand-text .tsc-smm-brand-rest {
	color: var(--tsc-smm-main-text) !important;
}

.tsc-smm-m-brand-text .tsc-smm-brand-pros,
.tsc-smm-m-brand-text .tsc-smm-brand-finder {
	color: var(--tsc-smm-icon, #119cf5) !important;
}

/* Toolbar */
.tsc-smm-m-toolbar {
	display: grid !important;
	grid-template-columns: 40px 1fr 40px;
	align-items: center !important;
	min-height: 52px;
	padding: 8px 12px !important;
	border-bottom: 1px solid var(--tsc-smm-border) !important;
	background: #fff !important;
	width: 100% !important;
}

.tsc-smm-m-toolbar-title {
	grid-column: 2;
	text-align: left !important;
	padding-left: 4px;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--tsc-smm-main-text) !important;
}

.tsc-smm-m-icon-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: var(--tsc-smm-main-text) !important;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	appearance: none !important;
	text-transform: none !important;
}

.tsc-smm-m-icon-btn svg {
	width: 22px;
	height: 22px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tsc-smm-m-back {
	grid-column: 1;
}

.tsc-smm-m-toolbar .tsc-smm-m-close {
	grid-column: 3;
	justify-self: end;
}

.hpf-mobile-menu__head .hpf-mobile-menu__close,
.tsc-smm-m-brandbar .tsc-smm-m-close {
	margin-left: auto;
}

/* Find a pro */
.tsc-smm-m-heading {
	margin: 0 !important;
	padding: 22px 20px 10px !important;
	font-size: 20px !important;
	line-height: 1.2 !important;
	font-weight: 800 !important;
	color: var(--tsc-smm-main-text) !important;
	background: #fff !important;
}

/* Lists */
.tsc-smm-m-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.tsc-smm-m-item {
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: 1px solid var(--tsc-smm-border) !important;
	width: 100% !important;
	float: none !important;
	display: block !important;
}

.tsc-smm-m-item--all {
	border-bottom: 1px solid var(--tsc-smm-border) !important;
}

.tsc-smm-m-item:last-child:not(.tsc-smm-m-item--all) {
	border-bottom: 0 !important;
}

/* Rows â€“ grid layout prevents crushed text in narrow columns */
.tsc-smm-mobile .tsc-smm-m-row,
.tsc-smm-mobile button.tsc-smm-m-row,
.tsc-smm-mobile a.tsc-smm-m-row {
	display: grid !important;
	grid-template-columns: 24px minmax(0, 1fr) 20px !important;
	column-gap: 14px !important;
	align-items: center !important;
	justify-items: start !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	min-height: 54px !important;
	height: auto !important;
	padding: 0px 20px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	text-align: left !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	color: #0d1f3c !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	appearance: none !important;
	float: none !important;
	position: relative !important;
}

.tsc-smm-m-row:not(:has(.tsc-smm-m-chevron)) {
	grid-template-columns: 24px minmax(0, 1fr) !important;
}

.tsc-smm-m-row--all {
	grid-template-columns: 26px minmax(0, 1fr) 18px !important;
	column-gap: 12px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	font-weight: 700 !important;
}

.tsc-smm-m-row--all .tsc-smm-m-label {
	grid-column: 2 !important;
	padding-left: 0 !important;
	overflow: visible !important;
	text-overflow: clip !important;
	white-space: normal !important;
}

.tsc-smm-m-row--all .tsc-smm-m-chevron {
	grid-column: 3 !important;
	justify-self: end !important;
}

.tsc-smm-m-item--all {
	border-bottom: 1px solid #e8ecf0 !important;
}

.tsc-smm-m-row--parent {
	padding-right: var(--tsc-smm-pad-x) !important;
}

.tsc-smm-m-icon {
	grid-column: 1 !important;
}

.tsc-smm-m-label {
	grid-column: 2 !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	white-space: nowrap !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
	word-wrap: normal !important;
	hyphens: none !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	color: inherit !important;
	display: block !important;
}

.tsc-smm-m-chevron {
	grid-column: 3 !important;
	justify-self: end !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 20px !important;
	height: 20px !important;
	margin: 0 !important;
	color: var(--tsc-smm-muted) !important;
	background: transparent !important;
	flex-shrink: 0 !important;
}

.tsc-smm-m-chevron svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tsc-smm-mobile .tsc-smm-m-icon {
	width: 24px !important;
	height: 24px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--tsc-smm-icon) !important;
	background: transparent !important;
	flex-shrink: 0 !important;
}

.tsc-smm-m-icon svg {
	width: 14px;
	height: 14px;
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tsc-smm-m-icon.tsc-smm-image-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.tsc-smm-m-row:active {
	background: rgba(17, 156, 245, 0.06) !important;
}

/* Elementor widget container */
.elementor-widget-shortcode .elementor-widget-container,
.elementor-widget-html .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
}

.elementor-widget-shortcode .tsc-smm-wrap,
.elementor-widget-html .tsc-smm-wrap,
.elementor-element .tsc-smm-wrap {
	width: 100% !important;
}

/* Root main list only â€“ screenshot layout (submenu panels unchanged) */
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-item {
	border-bottom-color: #e8ecf0 !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row,
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root button.tsc-smm-m-row,
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root a.tsc-smm-m-row {
	min-height: 56px !important;
	padding: 0px 20px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	color: #0d1f3c !important;
	grid-template-columns: 26px minmax(0, 1fr) 18px !important;
	column-gap: 14px !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-icon {
	width: 26px !important;
	height: 26px !important;
	color: var(--tsc-smm-icon, #119cf5) !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-icon svg {
	width: 14px;
	height: 14px;
	stroke-width: 1.75;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-chevron {
	color: #b8c0cc !important;
	width: 18px !important;
	height: 18px !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-chevron svg {
	width: 16px;
	height: 16px;
	stroke-width: 2;
	color: #0d1f3c;
	opacity: 0.9;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-item--all {
	border-bottom: 1px solid #e8ecf0 !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-item--all .tsc-smm-m-row--all {
	grid-template-columns: 26px minmax(0, 1fr) 18px !important;
	column-gap: 12px !important;
	font-size: 16px !important;
	letter-spacing: 0.04em;
	font-weight: 700 !important;
	text-transform: uppercase;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-item--all .tsc-smm-m-row--all .tsc-smm-m-label {
	grid-column: 2 !important;
	padding-left: 0 !important;
	overflow: visible !important;
	text-overflow: clip !important;
	white-space: normal !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-item--all .tsc-smm-m-row--all .tsc-smm-m-chevron {
	grid-column: 3 !important;
	justify-self: end !important;
}

/* Theme/Elementor button overrides â€“ root rows only */
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row,
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root button.tsc-smm-m-row {
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	text-shadow: none !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row:hover,
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row:focus,
.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row:active {
	background: #fff !important;
	color: var(--tsc-smm-main-text, #0f1b32) !important;
}

.tsc-smm-mobile-panel[data-panel="root"] .tsc-smm-m-list--root .tsc-smm-m-row:active {
	background: rgba(17, 156, 245, 0.05) !important;
}

/* =========================================================================
 * English homepage — mobile service picker (glass card + page card)
 * ====================================================================== */
.hpf-service-field {
	flex: 1;
	position: relative;
	min-width: 0;
}

.hpf-service-mobile-open {
	display: none;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 100%;
	margin: 0;
	border: 1.5px solid #c8d2e4 !important;
	background: #fff !important;
	color: var(--hpf-navy) !important;
	border-radius: 12px;
	padding: 10px 12px !important;
	font-weight: 500 !important;
	font-size: 15px !important;
	font-family: inherit;
	cursor: pointer;
	box-shadow: none !important;
	text-align: left;
	line-height: 1.35;
	min-height: 44px;
}

.hpf-service-mobile-open .bi {
	color: var(--hpf-blue) !important;
	font-size: 16px;
	flex-shrink: 0;
}

.hpf-service-mobile-open span {
	flex: 1 1 auto;
	min-width: 0;
}

.hpf-service-mobile-open.is-invalid,
.hpf-service-field .hpf-glass-select.hpf-field-invalid+.hpf-service-mobile-open {
	border-color: #e53935 !important;
}

[data-hpf-service-panel].hpf-service-mobile-panel {
	display: none !important;
}

[data-hpf-service-panel].hpf-service-mobile-panel.is-open {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100dvh !important;
	z-index: 100050 !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
	padding: max(8px, env(safe-area-inset-top, 0px)) 10px max(10px, env(safe-area-inset-bottom, 0px)) !important;
	background: rgba(8, 18, 45, 0.48) !important;
	overflow: hidden !important;
	overscroll-behavior: contain !important;
	touch-action: none !important;
	box-sizing: border-box;
	font-family: var(--hpf-fn);
}

[data-hpf-service-panel] .hpf-service-mobile-sheet {
	position: relative !important;
	width: min(100%, 520px) !important;
	max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
	min-height: 0 !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	padding: 0 !important;
	border-radius: 20px 20px 12px 12px !important;
	background: #fff !important;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35) !important;
	touch-action: auto !important;
}

[data-hpf-service-panel] .hpf-service-mobile-head {
	flex: 0 0 auto !important;
	display: flex !important;
	justify-content: space-between !important;
	gap: 12px !important;
	align-items: flex-start !important;
	padding: 16px 16px 12px !important;
	margin: 0 !important;
	border-bottom: 1px solid var(--hpf-g2) !important;
}

[data-hpf-service-panel] .hpf-service-mobile-head h3 {
	margin: 0 !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	color: var(--hpf-navy) !important;
	line-height: 1.2 !important;
}

[data-hpf-service-panel] .hpf-service-mobile-sub {
	margin: 4px 0 0 !important;
	font-size: 13px !important;
	line-height: 1.4 !important;
	color: var(--hpf-ink-60) !important;
}

[data-hpf-service-panel] .hpf-service-mobile-close {
	width: 36px !important;
	min-width: 36px !important;
	height: 36px !important;
	min-height: 36px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: var(--hpf-g1) !important;
	color: var(--hpf-g4) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-shadow: none !important;
	cursor: pointer !important;
	flex-shrink: 0;
}

[data-hpf-service-panel] .hpf-service-mobile-close .bi,
[data-hpf-service-panel] .hpf-service-mobile-close i {
	display: inline-block !important;
	font-size: 16px !important;
	line-height: 1 !important;
	color: var(--hpf-g4) !important;
}

[data-hpf-service-panel] .hpf-service-mobile-close:hover,
[data-hpf-service-panel] .hpf-service-mobile-close:focus {
	background: var(--hpf-navy) !important;
	color: #fff !important;
}

[data-hpf-service-panel] .hpf-service-mobile-close:hover .bi,
[data-hpf-service-panel] .hpf-service-mobile-close:focus .bi {
	color: #fff !important;
}

[data-hpf-service-panel] .hpf-service-mobile-list {
	flex: 1 1 auto !important;
	min-height: 0 !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch !important;
	padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
}

[data-hpf-service-panel] .hpf-service-mobile-group+.hpf-service-mobile-group {
	margin-top: 14px;
}

[data-hpf-service-panel] .hpf-service-mobile-title {
	font-weight: 800 !important;
	text-transform: uppercase !important;
	color: var(--hpf-navy) !important;
	margin: 0 0 8px !important;
	font-size: 14px !important;
	letter-spacing: 0.02em !important;
}

[data-hpf-service-panel] .hpf-service-mobile-grid {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 7px !important;
}

[data-hpf-service-panel] button.hpf-service-mobile-choice {
	display: block !important;
	appearance: none !important;
	width: 100% !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 12px 13px !important;
	border: 1px solid #e8edf6 !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	color: var(--hpf-navy) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
	text-align: left !important;
	font-family: inherit !important;
	cursor: pointer !important;
	box-shadow: none !important;
	white-space: normal !important;
	word-break: break-word !important;
	overflow-wrap: anywhere !important;
	outline: none !important;
}

[data-hpf-service-panel] button.hpf-service-mobile-choice:hover,
[data-hpf-service-panel] button.hpf-service-mobile-choice:focus {
	border-color: var(--hpf-blue) !important;
	color: var(--hpf-blue) !important;
	background: rgba(18, 145, 223, 0.06) !important;
}

@media (max-width: 575.98px) {

	.hpf-service-field .hpf-sel-wrap,
	.hpf-service-field .hpf-page-select {
		display: none !important;
	}

	.hpf-service-mobile-open {
		display: flex !important;
	}

	.hpf-glass-row .hpf-service-field {
		flex: 1 1 100%;
		min-width: 0;
	}
}

@media (min-width: 576px) {

	.hpf-service-mobile-open,
	[data-hpf-service-panel].hpf-service-mobile-panel.is-open {
		display: none !important;
	}
}

.hpf-leadstep a {
	color: #1291df !important;
}

.call-time-text {
	margin-bottom: 10px;
}

.hpf-modal-box.is-submitted .hpf-mtitle {
	display: none;
}

.leaddone p {
	max-width: 44ch !important;
}

@media(min-width:992px) {
	.hpf-leadstep {
		min-height: 365px;

	}
}

/* =============================================================================
   HPF — HERO CARD  ([hpf_service_finder])
   ============================================================================= */
.hpf-hero-shell {
	max-width: 720px;
	margin-bottom: 16px;
}

.hpf-hero-card {
	--hpf-brand: #1291df;
	--hpf-brand-dark: #0d73b3;
	--hpf-brand-light: #e8f4fd;
	--hpf-brand-mid: #b8dff7;
	--hpf-black: #111111;
	--hpf-gray-900: #1a1a1a;
	--hpf-gray-400: #999999;
	--hpf-gray-300: #cccccc;
	--hpf-gray-200: #e5e5e5;
	--hpf-white: #ffffff;
	--hpf-radius-sm: 10px;
	--hpf-radius-md: 14px;
	--hpf-radius-lg: 20px;
	--hpf-transition: 0.18s ease;
	font-family: var(--hpf-fn, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif);
	background: var(--hpf-white);
	border-radius: var(--hpf-radius-lg);
	padding: 24px 24px 18px;
	margin-bottom: 0;
	max-width: none;
}

.hpf-hero-card-heading {
	font-size: 16px;
	font-weight: 600;
	color: var(--hpf-black);
	margin: 0 0 14px;
}

.hpf-hero-svc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin-bottom: 14px;
}

@media (max-width: 639px) {
	.hpf-hero-svc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hpf-hero-svc-card {
	border: 1.5px solid var(--hpf-gray-200);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 8px 10px;
	text-align: center;
	cursor: pointer;
	transition: all var(--hpf-transition);
	background: var(--hpf-white);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 92px;
}

.hpf-hero-svc-card:hover {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
}

.hpf-hero-svc-card.selected {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
	border-width: 2px;
}

.hpf-hero-svc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-bottom: 6px;
	flex-shrink: 0;
	color: var(--hpf-brand);
}

.hpf-hero-svc-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hpf-hero-svc-card.selected .hpf-hero-svc-icon {
	color: var(--hpf-brand-dark);
}

.hpf-hero-svc-label {
	font-size: 11px;
	font-weight: 500;
	color: var(--hpf-gray-900);
	line-height: 1.3;
	display: block;
}

.hpf-hero-svc-card.selected .hpf-hero-svc-label {
	color: var(--hpf-brand-dark);
	font-weight: 600;
}

.hpf-hero-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.hpf-hero-see-all {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--hpf-brand);
	font-weight: 500;
	cursor: pointer;
	padding: 7px 10px;
	border-radius: var(--hpf-radius-sm);
	border: 1px dashed var(--hpf-brand-mid);
	transition: background var(--hpf-transition);
	white-space: nowrap;
}

.hpf-hero-see-all:hover {
	background: var(--hpf-brand-light);
}

.hpf-hero-cta {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 11px 20px;
	border-radius: var(--hpf-radius-md);
	border: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: not-allowed;
	white-space: nowrap;
	background: var(--hpf-gray-200);
	color: var(--hpf-gray-400);
	transition: background 0.25s, color 0.25s, transform 0.1s;
}

.hpf-hero-cta.ready {
	background: #25d366;
	color: var(--hpf-white);
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
}

.hpf-hero-cta.ready:hover {
	background: #1fb859;
}

.hpf-hero-cta.ready:active {
	transform: scale(0.98);
}

@media (max-width: 639px) {
	.hpf-hero-cta {
		font-size: 12px;
		padding: 10px 14px;
	}
}

.hpf-hero-all-wrap {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
	pointer-events: none;
}

.hpf-hero-all-wrap.open {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
	pointer-events: auto;
	box-shadow: 0 0 0 2px var(--hpf-brand-light);
	border-radius: var(--hpf-radius-sm);
}

.hpf-hero-all-wrap select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: 1.5px solid var(--hpf-gray-300);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 14px;
	font-size: 16px;
	font-family: inherit;
	color: var(--hpf-black);
	background: var(--hpf-white);
}

.hpf-hero-all-wrap select:focus {
	outline: none;
	border-color: var(--hpf-brand);
}

.hpf-hero-trust {
	margin-top: 10px;
	padding: 0 2px;
}

.hpf-inline-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	margin: 0;
}

.hpf-inline-trust--hero {
	gap: 5px 10px;
}

.hpf-inline-trust--step {
	margin: 0 0 8px;
	gap: 5px 10px;
}

.hpf-inline-trust--footer {
	justify-content: center;
	gap: 4px 8px;
}

.hpf-inline-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 500;
	color: var(--hpf-gray-700, #3d3d3d);
	line-height: 1.25;
	white-space: nowrap;
}

.hpf-inline-trust--footer .hpf-inline-trust-item {
	font-size: 9px;
}

.hpf-inline-trust-item i {
	color: var(--hpf-success, #16a34a);
	font-size: 12px;
	flex-shrink: 0;
}

.hpf-inline-trust--footer .hpf-inline-trust-item i {
	font-size: 11px;
}

@media (max-width: 639px) {

	.hpf-inline-trust--hero,
	.hpf-inline-trust--step {
		gap: 4px 8px;
	}

	.hpf-inline-trust--hero .hpf-inline-trust-item,
	.hpf-inline-trust--step .hpf-inline-trust-item {
		font-size: 9px;
	}

	.hpf-inline-trust--hero .hpf-inline-trust-item i,
	.hpf-inline-trust--step .hpf-inline-trust-item i {
		font-size: 11px;
	}
}

.hpf-char-count {
	font-size: 11px;
	color: var(--hpf-gray-500, #6b6b6b);
	margin-top: 4px;
	text-align: right;
}

.hpf-ref-label {
	font-size: 12px;
	color: var(--hpf-gray-500, #6b6b6b);
	margin: 0 0 4px;
}

.hpf-field .hpf-ferror {
	display: none;
	font-size: 11px;
	color: var(--hpf-error, #dc2626);
	margin-top: 4px;
}

.hpf-field.has-error .hpf-ferror {
	display: block;
}

#hpfOverlay .hpf-body {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

#hpfOverlay .hpf-body::-webkit-scrollbar {
	display: none;
}

@media (max-width: 639px) {
	#hpfOverlay.hpf-overlay.active {
		padding: 0 !important;
		align-items: stretch !important;
	}

	#hpfOverlay .hpf-modal {
		width: 100% !important;
		max-width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		max-height: 100vh !important;
		max-height: 100dvh !important;
		border-radius: 0 !important;
	}
}


/* ---------- CSS Custom Properties ---------- */
:root {
	--hpf-brand: #1291df;
	--hpf-brand-dark: #0d73b3;
	--hpf-brand-light: #e8f4fd;
	--hpf-brand-mid: #b8dff7;
	--hpf-black: #111111;
	--hpf-gray-900: #1a1a1a;
	--hpf-gray-700: #3d3d3d;
	--hpf-gray-500: #6b6b6b;
	--hpf-gray-400: #999999;
	--hpf-gray-300: #cccccc;
	--hpf-gray-200: #e5e5e5;
	--hpf-gray-100: #f3f3f3;
	--hpf-gray-50: #fafafa;
	--hpf-white: #ffffff;
	--hpf-success: #16a34a;
	--hpf-success-light: #dcfce7;
	--hpf-error: #dc2626;
	--hpf-radius-sm: 10px;
	--hpf-radius-md: 14px;
	--hpf-radius-lg: 20px;
	--hpf-transition: 0.18s ease;
	--hpf-modal-body-h: 640px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO CARD  (.hpf-hero-card)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hpf-hero-shell {
	max-width: 720px;
	margin-bottom: 16px;
}

.hpf-hero-card {
	background: var(--hpf-white);
	border-radius: var(--hpf-radius-lg);
	padding: 24px 24px 18px;
	margin-bottom: 0;
	max-width: none;
}

.hpf-hero-trust {
	margin-top: 10px;
	padding: 0 2px;
}

.hpf-hero-card-heading {
	font-size: 16px;
	font-weight: 600;
	color: var(--hpf-black);
	margin: 0 0 14px;
}

/* 6-col service grid (desktop) â†’ 3-col (mobile) */
.hpf-hero-svc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin-bottom: 14px;
}

@media (max-width: 639px) {
	.hpf-hero-svc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hpf-hero-svc-card {
	border: 1.5px solid var(--hpf-gray-200);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 8px 10px;
	text-align: center;
	cursor: pointer;
	transition: all var(--hpf-transition);
	background: var(--hpf-white);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 92px;
}

.hpf-hero-svc-card:hover {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
}

.hpf-hero-svc-card.selected {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
	border-width: 2px;
}

.hpf-hero-svc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-bottom: 6px;
	flex-shrink: 0;
	color: var(--hpf-brand);
}

.hpf-hero-svc-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hpf-hero-svc-card.selected .hpf-hero-svc-icon {
	color: var(--hpf-brand-dark);
}

.hpf-hero-svc-label {
	font-size: 11px;
	font-weight: 500;
	color: var(--hpf-gray-900);
	line-height: 1.3;
	display: block;
}

.hpf-hero-svc-card.selected .hpf-hero-svc-label {
	color: var(--hpf-brand-dark);
	font-weight: 600;
}

/* Footer row: see-all + CTA */
.hpf-hero-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.hpf-hero-see-all {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: var(--hpf-brand);
	font-weight: 500;
	cursor: pointer;
	padding: 7px 10px;
	border-radius: var(--hpf-radius-sm);
	border: 1px dashed var(--hpf-brand-mid);
	transition: background var(--hpf-transition);
	white-space: nowrap;
}

.hpf-hero-see-all:hover {
	background: var(--hpf-brand-light);
}

/* Hero CTA â€” gray/disabled by default; green when service is selected */
.hpf-hero-cta {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 11px 20px;
	border-radius: var(--hpf-radius-md);
	border: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: not-allowed;
	white-space: nowrap;
	background: var(--hpf-gray-200);
	color: var(--hpf-gray-400);
	transition: background 0.25s, color 0.25s, transform 0.1s;
}

.hpf-hero-cta.ready {
	background: #25d366;
	color: var(--hpf-white);
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
}

.hpf-hero-cta.ready:hover {
	background: #1fb859;
}

.hpf-hero-cta.ready:active {
	transform: scale(0.98);
}

@media (max-width: 639px) {
	.hpf-hero-cta {
		font-size: 12px;
		padding: 10px 14px;
	}
}

/* Full-list dropdown */
.hpf-hero-all-wrap {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
	pointer-events: none;
}

.hpf-hero-all-wrap.open {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
	pointer-events: auto;
	box-shadow: 0 0 0 2px var(--hpf-brand-light);
	border-radius: var(--hpf-radius-sm);
}

.hpf-hero-all-wrap select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: 1.5px solid var(--hpf-gray-300);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 14px;
	font-size: 16px;
	font-family: inherit;
	color: var(--hpf-black);
	background: var(--hpf-white);
}

.hpf-hero-all-wrap select:focus {
	outline: none;
	border-color: var(--hpf-brand);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODAL OVERLAY + SHELL  (.hpf-overlay)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hpf-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10, 30, 60, .65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99999;
	align-items: stretch;
	justify-content: center;
	animation: hpfFade .25s ease;
}

@media (min-width: 640px) {
	.hpf-overlay {
		align-items: center;
		padding: 1.5rem;
	}
}

.hpf-overlay.active {
	display: flex;
}

@keyframes hpfFade {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes hpfSlideUp {
	from {
		transform: translateY(40px);
		opacity: 0
	}

	to {
		transform: translateY(0);
		opacity: 1
	}
}

@keyframes hpfSlideX {
	from {
		transform: translateX(24px);
		opacity: 0
	}

	to {
		transform: translateX(0);
		opacity: 1
	}
}

.hpf-modal {
	position: relative;
	background: var(--hpf-white);
	width: 100%;
	max-width: 500px;
	border-radius: 0;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: hpfSlideUp .3s cubic-bezier(.34, 1.56, .64, 1);
	height: 100%;
}

.hpf-submit-overlay {
	position: absolute;
	inset: 0;
	z-index: 30;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.94);
	text-align: center;
}

.hpf-submit-overlay.active {
	display: flex;
}

.hpf-submit-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid var(--hpf-gray-200, #e5e5e5);
	border-top-color: var(--hpf-brand, #1291df);
	border-radius: 50%;
	animation: hpfSpin 0.8s linear infinite;
}

.hpf-submit-msg {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--hpf-gray-700, #3d3d3d);
	line-height: 1.45;
	max-width: 260px;
}

.hpf-modal.is-submitting .hpf-footer {
	pointer-events: none;
}

@keyframes hpfSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 640px) {
	.hpf-modal {
		border-radius: var(--hpf-radius-lg);
		height: auto;
		max-height: 90vh;
		overflow: visible;
	}
}

/* â”€â”€ Header â”€â”€ */
.hpf-header {
	background: var(--hpf-brand);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
}

.hpf-header-left {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.hpf-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--hpf-white);
	line-height: 1.3;
}

.hpf-subtitle {
	font-size: 11px;
	color: rgba(255, 255, 255, .75);
}

.hpf-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.hpf-lang {
	display: flex;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 20px;
	padding: 4px 10px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-white);
	font-family: inherit;
}

.hpf-lang:hover {
	background: rgba(255, 255, 255, .25);
}

.hpf-close {
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--hpf-white);
	font-size: 15px;
}

.hpf-close:hover {
	background: rgba(255, 255, 255, .25);
}

/* â”€â”€ Progress bar â”€â”€ */
.hpf-progress {
	background: rgba(255, 255, 255, .2);
	height: 3px;
	flex-shrink: 0;
}

.hpf-progress-fill {
	height: 3px;
	background: var(--hpf-white);
	transition: width .4s cubic-bezier(.4, 0, .2, 1);
	width: 25%;
}

/* â”€â”€ Step dots â”€â”€ */
.hpf-steps {
	display: flex;
	align-items: flex-start;
	padding: 12px 18px 0;
	flex-shrink: 0;
}

.hpf-dot-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.hpf-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	transition: all .25s;
	flex-shrink: 0;
}

.hpf-dot.pending {
	background: var(--hpf-gray-100);
	color: var(--hpf-gray-400);
	border: 1.5px solid var(--hpf-gray-200);
}

.hpf-dot.active {
	background: var(--hpf-brand);
	color: var(--hpf-white);
	box-shadow: 0 0 0 3px var(--hpf-brand-light);
}

.hpf-dot.done {
	background: var(--hpf-success);
	color: var(--hpf-white);
}

.hpf-dot-label {
	font-size: 9px;
	color: var(--hpf-gray-400);
	font-weight: 500;
	white-space: nowrap;
}

.hpf-line {
	flex: 1;
	height: 2px;
	background: var(--hpf-gray-200);
	margin: 11px 4px 0;
	transition: background .3s;
}

.hpf-line.done {
	background: var(--hpf-success);
}

/* â”€â”€ Service pill â”€â”€ */
.hpf-service-pill {
	display: none;
	align-items: center;
	gap: 5px;
	margin: 10px 18px 0;
	padding: 6px 12px;
	background: var(--hpf-brand-light);
	border-radius: 8px;
	font-size: 12px;
	color: var(--hpf-gray-700);
	width: fit-content;
}

.hpf-service-pill.show {
	display: flex;
}

.hpf-service-pill i {
	font-size: 14px;
	color: var(--hpf-brand);
}

.hpf-service-pill strong {
	color: var(--hpf-brand-dark);
	font-weight: 600;
}

/* â”€â”€ Body (fixed height, scrollable) â”€â”€ */
.hpf-body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 14px 18px;
}

@media (min-width: 640px) {
	.hpf-body {
		height: var(--hpf-modal-body-h);
		flex: none;
		overflow-y: auto;
	}
}

/* â”€â”€ Step panels â”€â”€ */
.hpf-panel {
	display: none;
	animation: hpfSlideX .25s ease;
}

.hpf-panel.active {
	display: block;
}

.hpf-step-heading {
	font-size: 16px;
	font-weight: 600;
	color: var(--hpf-black);
	margin-bottom: 2px;
	line-height: 1.3;
}

.hpf-step-sub {
	font-size: 12px;
	color: var(--hpf-gray-500);
	margin-bottom: 12px;
	line-height: 1.5;
}

/* â”€â”€ Service grid (inside modal step 1) â”€â”€ */
.hpf-svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px;
	margin-bottom: 10px;
}

.hpf-svc-card {
	border: 1.5px solid var(--hpf-gray-200);
	border-radius: var(--hpf-radius-sm);
	padding: 9px 5px 7px;
	text-align: center;
	cursor: pointer;
	transition: all var(--hpf-transition);
	background: var(--hpf-white);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.hpf-svc-card:hover {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
}

.hpf-svc-card.selected {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
	border-width: 2px;
}

.hpf-svc-card i {
	font-size: 20px;
	color: var(--hpf-brand);
	display: block;
	margin-bottom: 3px;
}

.hpf-svc-card span {
	font-size: 10.5px;
	font-weight: 500;
	color: var(--hpf-gray-900);
	line-height: 1.25;
	display: block;
}

.hpf-svc-card.selected span {
	color: var(--hpf-brand-dark);
	font-weight: 600;
}

/* â”€â”€ "See all" toggle â”€â”€ */
.hpf-see-all {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 12px;
	color: var(--hpf-brand);
	font-weight: 500;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--hpf-radius-sm);
	border: 1px dashed var(--hpf-brand-mid);
	transition: background var(--hpf-transition);
}

.hpf-see-all:hover {
	background: var(--hpf-brand-light);
}

.hpf-select-wrap {
	position: relative;
	margin-top: 10px;
	overflow: hidden;
	max-height: 0;
	transition: max-height .3s ease, opacity .3s ease;
	opacity: 0;
}

.hpf-select-wrap.hidden {
	display: block;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}

.hpf-select-wrap.open {
	max-height: 200px;
	opacity: 1;
	pointer-events: auto;
	box-shadow: 0 0 0 2px var(--hpf-brand-light);
	border-radius: var(--hpf-radius-sm);
}

.hpf-select-wrap select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	border: 1.5px solid var(--hpf-gray-300);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 38px 12px 14px;
	font-size: 16px;
	font-family: inherit;
	color: var(--hpf-black);
	background: var(--hpf-white);
	cursor: pointer;
}

.hpf-select-wrap select:focus {
	outline: none;
	border-color: var(--hpf-brand);
}

/* â”€â”€ Form labels â”€â”€ */
.hpf-flabel {
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-gray-700);
	display: block;
	margin-bottom: 6px;
}

.hpf-flabel .req {
	color: var(--hpf-error);
	font-weight: 700;
}

.hpf-flabel .opt {
	color: var(--hpf-gray-400);
	font-weight: 400;
}

/* â”€â”€ Option grids â”€â”€ */
.hpf-opt-grid {
	display: grid;
	gap: 7px;
	margin-bottom: 12px;
}

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

.hpf-opt-3 {
	grid-template-columns: repeat(3, 1fr);
}

.hpf-opt-4 {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 400px) {
	.hpf-opt-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.hpf-opt-budget .hpf-opt {
	min-height: 48px;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 10px 6px;
	gap: 4px;
}

.hpf-opt-budget .hpf-opt i {
	font-size: 16px;
	margin-bottom: 1px;
}

.hpf-opt-budget .hpf-opt span {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
}

.hpf-opt {
	border: 1.5px solid var(--hpf-gray-200);
	border-radius: var(--hpf-radius-sm);
	padding: 9px 6px;
	cursor: pointer;
	text-align: center;
	font-size: 11.5px;
	font-weight: 500;
	color: var(--hpf-gray-700);
	transition: all var(--hpf-transition);
	line-height: 1.25;
	background: var(--hpf-white);
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	min-height: 46px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.hpf-opt i {
	font-size: 15px;
	color: var(--hpf-gray-400);
}

.hpf-opt:hover {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
}

.hpf-opt.selected {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
	border-width: 2px;
	color: var(--hpf-brand-dark);
	font-weight: 600;
}

.hpf-opt.selected i {
	color: var(--hpf-brand);
}

.hpf-opt-group.has-error {
	border-radius: var(--hpf-radius-sm);
	padding: 4px;
	margin: -4px -4px 8px;
	box-shadow: 0 0 0 1.5px var(--hpf-error);
}

/* â”€â”€ Fields â”€â”€ */
.hpf-field {
	margin-bottom: 12px;
}

.hpf-field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-gray-700);
	margin-bottom: 5px;
}

.hpf-field label .req {
	color: var(--hpf-error);
	font-weight: 700;
}

.hpf-field label .opt {
	color: var(--hpf-gray-400);
	font-weight: 400;
}

.hpf-field input,
.hpf-field textarea {
	width: 100%;
	border: 1.5px solid var(--hpf-gray-300);
	border-radius: var(--hpf-radius-sm);
	padding: 12px 14px;
	font-size: 16px;
	font-family: inherit;
	color: var(--hpf-black);
	background: var(--hpf-white);
	transition: border-color var(--hpf-transition);
	-webkit-appearance: none;
	appearance: none;
}

.hpf-field input:focus,
.hpf-field textarea:focus {
	outline: none;
	border-color: var(--hpf-brand);
	box-shadow: 0 0 0 3px rgba(18, 145, 223, .12);
}

.hpf-field textarea {
	resize: none;
	height: 64px;
	font-size: 15px;
}

.hpf-fhint {
	font-size: 11px;
	color: var(--hpf-gray-500);
	margin-top: 3px;
}

.hpf-ferror {
	font-size: 11px;
	color: var(--hpf-error);
	margin-top: 3px;
	display: none;
}

.hpf-field.has-error input,
.hpf-field.has-error textarea {
	border-color: var(--hpf-error);
}

.hpf-field.has-error .hpf-ferror {
	display: block;
}

.hpf-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* â”€â”€ Photo upload â”€â”€ */
.hpf-upload {
	border: 1.5px dashed var(--hpf-gray-300);
	border-radius: var(--hpf-radius-sm);
	padding: 11px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all var(--hpf-transition);
	margin-bottom: 10px;
}

.hpf-upload:hover {
	border-color: var(--hpf-brand);
	background: var(--hpf-brand-light);
}

.hpf-upload i {
	font-size: 19px;
	color: var(--hpf-gray-400);
	flex-shrink: 0;
}

.hpf-upload-t {
	font-size: 12px;
	font-weight: 600;
	color: var(--hpf-gray-700);
}

.hpf-upload-h {
	font-size: 10px;
	color: var(--hpf-gray-500);
	margin-top: 1px;
}

.hpf-photo-input {
	display: none;
}

.hpf-previews {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.hpf-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	border: 1.5px solid var(--hpf-gray-200);
}

/* â”€â”€ Consent checkbox â”€â”€ */
.hpf-consent {
	margin-top: 4px;
	padding: 10px;
	border-radius: var(--hpf-radius-sm);
	border: 1.5px solid transparent;
}

.hpf-consent.has-error {
	border-color: var(--hpf-error);
	background: #fef2f2;
}

.hpf-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	cursor: pointer;
}

.hpf-consent-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--hpf-brand);
}

.hpf-consent-label span {
	font-size: 11px;
	color: var(--hpf-gray-500);
	line-height: 1.6;
}

.hpf-consent-label a {
	color: var(--hpf-brand);
}

/* â”€â”€ Step 1 alert â”€â”€ */
.hpf-s1-alert {
	display: none;
	background: #fef2f2;
	border: 1.5px solid var(--hpf-error);
	color: var(--hpf-error);
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--hpf-radius-sm);
	padding: 9px 12px;
	margin-bottom: 10px;
	text-align: center;
}

/* â”€â”€ Footer â”€â”€ */
.hpf-footer {
	padding: 11px 18px 14px;
	flex-shrink: 0;
	border-top: 1px solid var(--hpf-gray-100);
	background: var(--hpf-white);
}

.hpf-cta {
	width: 100%;
	padding: 14px;
	background: var(--hpf-brand);
	color: var(--hpf-white);
	border: none;
	border-radius: var(--hpf-radius-md);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background var(--hpf-transition), transform .1s;
	min-height: 50px;
	-webkit-tap-highlight-color: transparent;
}

.hpf-cta:hover {
	background: var(--hpf-brand-dark);
}

.hpf-cta:active {
	transform: scale(.99);
}

.hpf-cta.green {
	background: var(--hpf-success);
}

.hpf-cta.green:hover {
	background: #15803d;
}

.hpf-cta:disabled {
	opacity: .7;
	cursor: not-allowed;
}

.hpf-modal.is-submitting .hpf-cta {
	opacity: 0.85;
}

.hpf-back {
	background: none;
	border: none;
	color: var(--hpf-gray-500);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 7px 0 0;
	margin: 0 auto;
}

.hpf-back:hover {
	color: var(--hpf-black);
}

.hpf-ftrust {
	margin-top: 8px;
}

/* â”€â”€ Confirmation â”€â”€ */
.hpf-confirm {
	display: none;
	padding: 18px 18px 14px;
	text-align: center;
	animation: hpfSlideX .3s ease;
}

.hpf-confirm.active {
	display: block;
}

.hpf-check {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--hpf-success-light);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}

.hpf-check i {
	font-size: 28px;
	color: var(--hpf-success);
}

.hpf-confirm-title {
	font-size: 21px;
	font-weight: 700;
	color: var(--hpf-black);
	margin-bottom: 5px;
}

.hpf-ref {
	display: inline-block;
	background: var(--hpf-brand-light);
	color: var(--hpf-brand-dark);
	font-size: 13px;
	font-weight: 700;
	border-radius: 8px;
	padding: 5px 14px;
	margin-bottom: 12px;
	letter-spacing: .04em;
}

.hpf-confirm-body {
	font-size: 13px;
	color: var(--hpf-gray-500);
	line-height: 1.7;
	margin-bottom: 14px;
}

.hpf-summary {
	background: var(--hpf-gray-50);
	border: 1px solid var(--hpf-gray-100);
	border-radius: var(--hpf-radius-md);
	padding: 12px 14px;
	text-align: left;
	margin-bottom: 14px;
}

.hpf-summary-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--hpf-gray-700);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.hpf-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	padding: 3px 0;
	gap: 12px;
}

.hpf-summary-row .k {
	color: var(--hpf-gray-500);
	flex-shrink: 0;
}

.hpf-summary-row .v {
	color: var(--hpf-gray-900);
	font-weight: 500;
	text-align: right;
}

.hpf-ctrust {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.hpf-ct-item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--hpf-gray-500);
}

.hpf-ct-item i {
	font-size: 13px;
	color: var(--hpf-success);
}

.hpf-home-btn {
	width: 100%;
	padding: 13px;
	background: var(--hpf-brand);
	color: var(--hpf-white);
	border: none;
	border-radius: var(--hpf-radius-md);
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 9px;
	border:none!important;
}

.hpf-another-btn {
	width: 100%;
	padding: 11px;
	background: none;
	border: 1.5px solid var(--hpf-gray-200);
	border-radius: var(--hpf-radius-md);
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	color: var(--hpf-gray-500);
	cursor: pointer;
	border:none!important;
}

/* END HPF v2 styles */

/* =========================================================================
 * HPF 1.3.2 â€” Responsive modal scroll + optional ZIP hotfix
 * Keeps the submit/footer area reachable on short screens and mobile devices.
 * ====================================================================== */
.hpf-modal-ov,
#step2Modal {
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: 16px !important;
}

.hpf-modal-ov .hpf-modal-box,
#step2Modal .hpf-modal-box,
#step2Modal .modal-box {
	max-height: calc(100vh - 32px) !important;
	max-height: calc(100dvh - 32px) !important;
	min-height: auto !important;
	height: auto !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	margin: 0 auto !important;
}

.hpf-modal-ov .hpf-leadform,
#step2Modal .hpf-leadform,
#step2Modal [data-leadform] {
	min-height: 0 !important;
}

.hpf-modal-ov .hpf-lf-foot,
#step2Modal .hpf-lf-foot,
#step2Modal [data-leadfooter] {
	flex-shrink: 0;
}

.hpf-overlay {
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.hpf-overlay .hpf-modal {
	max-height: calc(100vh - 32px);
	max-height: calc(100dvh - 32px);
	overflow: hidden;
}

.hpf-overlay .hpf-body {
	min-height: 0;
	flex: 1 1 auto;
}

@media (min-width: 640px) {
	.hpf-overlay .hpf-body {
		height: auto !important;
	}
}

@media (max-width: 991px) {

	.hpf-modal-ov,
	#step2Modal {
		padding: 10px !important;
		align-items: flex-start !important;
	}

	.hpf-modal-ov .hpf-modal-box,
	#step2Modal .hpf-modal-box,
	#step2Modal .modal-box {
		width: 100% !important;
		max-height: calc(100vh - 20px) !important;
		max-height: calc(100dvh - 20px) !important;
		min-height: auto !important;
		height: auto !important;
		border-radius: 18px !important;
	}
}

@media (max-width: 575px) {

	.hpf-modal-ov,
	#step2Modal {
		padding: 0 !important;
	}

	.hpf-modal-ov .hpf-modal-box,
	#step2Modal .hpf-modal-box,
	#step2Modal .modal-box {
		max-height: 100vh !important;
		max-height: 100dvh !important;
		border-radius: 0 !important;
	}
}

/* =========================================================================
 * HPF 1.3.3 â€” Modal top visibility / sticky header hotfix
 * Makes the new #hpfOverlay modal sit above all theme headers and start from
 * the top of the viewport, while keeping the modal body scrollable.
 * ====================================================================== */
body.hpf-modal-open,
body.modal-open {
	overflow: hidden !important;
}

#hpfOverlay.hpf-overlay,
.hpf-overlay.active,
#hpfModal.hpf-modal-ov,
#step2Modal {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	height: 100dvh !important;
	z-index: 2147483640 !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	align-items: flex-start !important;
	justify-content: center !important;
	padding: 12px !important;
}

#hpfOverlay.hpf-overlay.active,
.hpf-overlay.active {
	display: flex !important;
}

#hpfOverlay .hpf-modal {
	width: min(500px, 100%) !important;
	max-width: 500px !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: calc(100vh - 24px) !important;
	max-height: calc(100dvh - 24px) !important;
	margin: 0 auto !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
}

#hpfOverlay .hpf-header,
#hpfOverlay .hpf-progress,
#hpfOverlay .hpf-steps,
#hpfOverlay .hpf-service-pill,
#hpfOverlay .hpf-footer {
	flex: 0 0 auto !important;
}

#hpfOverlay .hpf-body {
	flex: 1 1 auto !important;
	min-height: 0 !important;
	height: auto !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
}

#hpfModal.hpf-modal-ov .hpf-modal-box,
#step2Modal .hpf-modal-box,
#step2Modal .modal-box {
	margin-top: 0 !important;
	max-height: calc(100vh - 24px) !important;
	max-height: calc(100dvh - 24px) !important;
}

body.hpf-modal-open #masthead,
body.hpf-modal-open header,
body.hpf-modal-open .site-header,
body.hpf-modal-open .site-navigation,
body.hpf-modal-open .elementor-location-header,
body.hpf-modal-open .elementor-sticky,
body.hpf-modal-open .elementor-sticky--active,
body.hpf-modal-open .hfe-header,
body.hpf-modal-open .hfe-flyout-wrapper,
body.hpf-modal-open .she-header-yes,
body.hpf-modal-open .tsc-smm-sticky-header-bar,
body.hpf-modal-open .tsc-smm-portaled-backdrop,
body.hpf-modal-open .tsc-smm-portaled-panel,
body.modal-open #masthead,
body.modal-open header,
body.modal-open .site-header,
body.modal-open .site-navigation,
body.modal-open .elementor-location-header,
body.modal-open .elementor-sticky,
body.modal-open .elementor-sticky--active,
body.modal-open .hfe-header,
body.modal-open .hfe-flyout-wrapper,
body.modal-open .she-header-yes,
body.modal-open .tsc-smm-sticky-header-bar,
body.modal-open .tsc-smm-portaled-backdrop,
body.modal-open .tsc-smm-portaled-panel {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 575px) {

	#hpfOverlay.hpf-overlay,
	.hpf-overlay.active,
	#hpfModal.hpf-modal-ov,
	#step2Modal {
		padding: 0 !important;
	}

	#hpfOverlay .hpf-modal,
	#hpfModal.hpf-modal-ov .hpf-modal-box,
	#step2Modal .hpf-modal-box,
	#step2Modal .modal-box {
		width: 100% !important;
		max-width: 100% !important;
		max-height: 100vh !important;
		max-height: 100dvh !important;
		border-radius: 0 !important;
	}
}

/* =============================================================================
   HPF FINDER v2 — Manager design match (DM Sans, hero trust, modal polish)
   Scope: [hpf_service_finder] hero + #hpfOverlay modal only.
   ============================================================================= */
.hpf-hero-shell,
.hpf-hero-card,
#hpfOverlay,
#hpfOverlay .hpf-modal {
	font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Hero trust — short row below card (mockup: Free / No obligation / Privacy respected) */
.hpf-hero-trust {
	margin-top: 12px;
}

.hpf-hero-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
}

.hpf-hero-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
}

.hpf-hero-trust-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	color: #25d366;
	flex-shrink: 0;
}

.hpf-hero-trust-check svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Hero shell — wider card on desktop (manager mockup) */
.hpf-hero-shell {
	max-width: 720px !important;
}

.hpf-hero-card {
	padding: 24px 24px 18px !important;
}

.hpf-hero-card-heading {
	font-size: 16px !important;
	margin-bottom: 14px !important;
}

.hpf-hero-svc-grid {
	gap: 10px !important;
	margin-bottom: 14px !important;
}

.hpf-hero-svc-card {
	min-height: 92px !important;
	padding: 12px 8px 10px !important;
}

.hpf-hero-svc-icon {
	width: 32px !important;
	height: 32px !important;
	margin-bottom: 8px !important;
}

.hpf-hero-svc-label {
	font-size: 11px !important;
}

/* Hero CTA — grey disabled, green when .ready (beat theme button styles) */
.hpf-hero-card .hpf-hero-cta,
.hpf-hero-card button.hpf-hero-cta {
	background: var(--hpf-gray-200, #e5e5e5) !important;
	color: var(--hpf-gray-400, #999) !important;
	box-shadow: none !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
}

.hpf-hero-card .hpf-hero-cta.ready,
.hpf-hero-card button.hpf-hero-cta.ready {
	background: #25d366 !important;
	color: #fff !important;
	cursor: pointer !important;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
}

.hpf-hero-card .hpf-hero-cta.ready:hover,
.hpf-hero-card button.hpf-hero-cta.ready:hover {
	background: #1fb859 !important;
}

.hpf-hero-card .hpf-hero-cta:disabled {
	pointer-events: none;
}

.hpf-hero-card .hpf-hero-cta.ready:disabled {
	pointer-events: auto;
}

/* Step 1 — project panel (manager mockup) */
#hpfOverlay .hpf-step-heading {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: var(--hpf-black, #111) !important;
	margin-bottom: 2px !important;
}

#hpfOverlay .hpf-step-sub {
	font-size: 12px !important;
	color: var(--hpf-gray-500, #6b6b6b) !important;
	margin-bottom: 12px !important;
	line-height: 1.5 !important;
}

#hpfOverlay .hpf-inline-trust--step {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 12px;
	margin: 0 0 8px;
}

#hpfOverlay .hpf-inline-trust--step .hpf-inline-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 500;
	color: var(--hpf-gray-500, #6b6b6b);
	white-space: nowrap;
}

#hpfOverlay .hpf-trust-check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	color: var(--hpf-success, #16a34a);
	flex-shrink: 0;
}

#hpfOverlay .hpf-trust-check-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

#hpfOverlay .hpf-flabel {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: var(--hpf-gray-700, #3d3d3d) !important;
	margin-bottom: 6px !important;
}

#hpfOverlay .hpf-opt-grid {
	gap: 7px !important;
	margin-bottom: 12px !important;
}

#hpfOverlay .hpf-opt {
	min-height: 52px !important;
	padding: 10px 6px !important;
	gap: 4px !important;
	border: 1.5px solid var(--hpf-gray-200, #e5e5e5) !important;
	border-radius: var(--hpf-radius-sm, 10px) !important;
	background: var(--hpf-white, #fff) !important;
}

#hpfOverlay .hpf-opt-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--hpf-gray-400, #999);
}

#hpfOverlay .hpf-opt-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

#hpfOverlay .hpf-opt-label {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.25;
	color: var(--hpf-gray-700, #3d3d3d);
}

#hpfOverlay .hpf-opt.selected {
	border-color: var(--hpf-brand, #1291df) !important;
	background: var(--hpf-brand-light, #e8f4fd) !important;
	border-width: 2px !important;
	color: var(--hpf-brand-dark, #0d73b3) !important;
}

#hpfOverlay .hpf-opt.selected .hpf-opt-icon {
	color: var(--hpf-brand, #1291df) !important;
}

#hpfOverlay .hpf-opt.selected .hpf-opt-label {
	color: var(--hpf-brand-dark, #0d73b3) !important;
	font-weight: 600;
}

#hpfOverlay .hpf-opt-budget .hpf-opt {
	min-height: 48px !important;
}

#hpfOverlay .hpf-opt-budget .hpf-opt-icon {
	width: 16px;
	height: 16px;
}

#hpfOverlay .hpf-upload-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--hpf-gray-400, #999);
}

#hpfOverlay .hpf-upload-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

#hpfOverlay .hpf-upload {
	border: 1.5px dashed var(--hpf-gray-300, #ccc) !important;
	border-radius: var(--hpf-radius-sm, 10px) !important;
	padding: 11px 14px !important;
	margin-bottom: 10px !important;
}

#hpfOverlay .hpf-upload-t {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: var(--hpf-gray-700, #3d3d3d) !important;
}

#hpfOverlay .hpf-upload-h {
	font-size: 10px !important;
	color: var(--hpf-gray-500, #6b6b6b) !important;
}

#hpfOverlay .hpf-char-count {
	font-size: 11px;
	color: var(--hpf-gray-500, #6b6b6b);
	margin-top: 4px;
	text-align: right;
}

/* Modal header / footer — center buttons & size icons */
#hpfOverlay .hpf-header-actions {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 8px !important;
}

#hpfOverlay .hpf-lang,
#hpfOverlay button.hpf-lang {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 5px !important;
	line-height: 1 !important;
	padding: 5px 11px !important;
	margin: 0 !important;
	vertical-align: middle !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	background: rgba(255, 255, 255, 0.15) !important;
}

#hpfOverlay .hpf-close,
#hpfOverlay button.hpf-close {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	padding: 0 !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	vertical-align: middle !important;
	flex-shrink: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	background: rgba(255, 255, 255, 0.15) !important;
}

#hpfOverlay .hpf-close-icon {
	width: 18px !important;
	height: 18px !important;
}

#hpfOverlay .hpf-lang-icon {
	width: 14px;
	height: 14px;
}

#hpfOverlay .hpf-footer {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0 !important;
}

#hpfOverlay.hpf-confirm-active .hpf-footer,
#hpfOverlay .hpf-footer.hpf-footer-hidden {
	display: none !important;
}

#hpfOverlay .hpf-cta,
#hpfOverlay button.hpf-cta {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	gap: 8px !important;
	width: 100% !important;
	line-height: 1.2 !important;
	padding: 14px 16px !important;
	margin: 0 !important;
	border: none !important;
	box-shadow: none !important;
}

#hpfOverlay .hpf-cta .hpf-cta-icon {
	width: 18px !important;
	height: 18px !important;
	flex-shrink: 0 !important;
}

#hpfOverlay .hpf-back,
#hpfOverlay button.hpf-back {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: center !important;
	width: auto !important;
	max-width: 100% !important;
	min-height: 0 !important;
	margin: 10px auto 0 !important;
	gap: 5px !important;
	line-height: 1 !important;
	padding: 4px 8px !important;
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	border-width: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	color: var(--hpf-gray-500, #999) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

#hpfOverlay .hpf-back:hover,
#hpfOverlay button.hpf-back:hover {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--hpf-black, #111) !important;
}

#hpfOverlay .hpf-back-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

#hpfOverlay .hpf-lock-icon {
	width: 13px;
	height: 13px;
	flex-shrink: 0;
}

#hpfOverlay .hpf-pill-icon {
	width: 14px;
	height: 14px;
	color: var(--hpf-brand, #1291df);
	flex-shrink: 0;
}

#hpfOverlay .hpf-close-icon svg,
#hpfOverlay .hpf-lang-icon svg,
#hpfOverlay .hpf-cta-icon svg,
#hpfOverlay .hpf-back-icon svg,
#hpfOverlay .hpf-lock-icon svg,
#hpfOverlay .hpf-pill-icon svg,
#hpfOverlay .hpf-dot-check svg {
	display: block;
	width: 100%;
	height: 100%;
}

#hpfOverlay .hpf-close-icon,
#hpfOverlay .hpf-lang-icon,
#hpfOverlay .hpf-cta-icon,
#hpfOverlay .hpf-back-icon,
#hpfOverlay .hpf-lock-icon,
#hpfOverlay .hpf-pill-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: currentColor;
}

#hpfOverlay .hpf-opt {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
}

#hpfOverlay .hpf-opt-label {
	text-align: center !important;
	width: 100%;
}

/* Hero footer — center CTA + see-all row */
.hpf-hero-card-footer {
	align-items: center !important;
}

.hpf-hero-see-all {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 5px !important;
	line-height: 1 !important;
}

.hpf-hero-see-all .hpf-seeall-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hpf-brand, #1291df);
}

.hpf-hero-see-all .hpf-seeall-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.hpf-hero-card .hpf-hero-cta,
.hpf-hero-card button.hpf-hero-cta {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	gap: 7px !important;
	line-height: 1.2 !important;
	vertical-align: middle !important;
	margin: 0 !important;
}

.hpf-hero-card .hpf-hero-cta .hpf-cta-icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hpf-hero-card .hpf-hero-cta .hpf-cta-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

#hpfOverlay .hpf-dot-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	color: #fff;
}

#hpfOverlay .hpf-service-pill.show {
	margin: 10px 18px 0 !important;
	padding: 6px 12px !important;
	background: var(--hpf-brand-light, #e8f4fd) !important;
	border-radius: 8px !important;
	font-size: 12px !important;
}

#hpfOverlay .hpf-service-pill strong {
	color: var(--hpf-brand-dark, #0d73b3) !important;
}

/* Inputs — subtle blue tint like mockups */
#hpfOverlay .hpf-field input,
#hpfOverlay .hpf-field textarea {
	background: #f8fbff;
}

#hpfOverlay .hpf-field input:focus,
#hpfOverlay .hpf-field textarea:focus {
	background: var(--hpf-white, #fff);
}

/* Footer trust row with lock icon */
#hpfOverlay .hpf-ftrust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: 7px;
	font-size: 11px;
	color: var(--hpf-gray-400, #999);
}

#hpfOverlay .hpf-ftrust>.ti-lock {
	font-size: 13px;
	flex-shrink: 0;
	color: var(--hpf-gray-400, #999);
}

#hpfOverlay .hpf-ftrust #hpfFTrust {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 8px;
}

#hpfOverlay .hpf-ftrust #hpfFTrust .hpf-inline-trust {
	display: contents;
}

#hpfOverlay .hpf-ftrust #hpfFTrust .hpf-inline-trust-item {
	font-size: 11px;
	color: var(--hpf-gray-400, #999);
}

#hpfOverlay .hpf-ftrust #hpfFTrust .hpf-inline-trust-item i {
	display: none;
}

#hpfOverlay .hpf-ftrust #hpfFTrust .hpf-trust-check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: var(--hpf-success, #16a34a);
}

#hpfOverlay .hpf-ftrust #hpfFTrust .hpf-trust-check-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Modal header — admin trust signals below title (same as footer) */
#hpfOverlay .hpf-subtitle {
	line-height: 1.3;
}

#hpfOverlay .hpf-inline-trust--header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
	margin-top: 2px;
}

#hpfOverlay .hpf-inline-trust--header .hpf-inline-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
	line-height: 1.25;
}

#hpfOverlay .hpf-inline-trust--header .hpf-trust-check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	color: #25d366;
}

#hpfOverlay .hpf-inline-trust--header .hpf-trust-check-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Desktop — fixed modal body height (no layout jump between steps) */
@media (min-width: 640px) {
	#hpfOverlay.hpf-overlay.active {
		align-items: center !important;
		padding: 1.5rem !important;
	}

	#hpfOverlay .hpf-modal {
		border-radius: var(--hpf-radius-lg, 20px) !important;
		max-height: none !important;
		height: auto !important;
		overflow: hidden !important;
	}

	#hpfOverlay .hpf-body {
		height: var(--hpf-modal-body-h, 640px) !important;
		max-height: var(--hpf-modal-body-h, 640px) !important;
		flex: 0 0 auto !important;
		overflow-y: auto !important;
	}
}

/* Mobile — full-screen modal, no gray letterboxing */
@media (max-width: 639px) {
	#hpfOverlay.hpf-overlay.active {
		padding: 0 !important;
		align-items: stretch !important;
		background: var(--hpf-white, #fff) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	#hpfOverlay .hpf-modal {
		width: 100% !important;
		max-width: 100% !important;
		height: 100dvh !important;
		max-height: 100dvh !important;
		min-height: 100dvh !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		animation: none !important;
	}

	#hpfOverlay .hpf-body {
		flex: 1 1 auto !important;
		height: auto !important;
		max-height: none !important;
	}
}

/* Confirmation — header shows reference in subtitle */
#hpfOverlay .hpf-confirm.active {
	padding: 16px 18px 18px;
}

#hpfOverlay .hpf-confirm .hpf-ref-label {
	font-size: 12px;
	color: var(--hpf-gray-500, #6b6b6b);
	margin: 0 0 4px;
}

#hpfOverlay .hpf-confirm .hpf-ref {
	margin-bottom: 14px;
}

#hpfOverlay .hpf-home-btn:hover {
	background: var(--hpf-brand-dark, #0d73b3);
}

#hpfOverlay .hpf-another-btn:hover {
	border-color: var(--hpf-gray-300, #ccc);
	color: var(--hpf-gray-700, #3d3d3d);
}

/* Option cards — match manager selected state */
#hpfOverlay .hpf-opt.selected,
.hpf-hero-svc-card.selected {
	box-shadow: inset 0 0 0 1px var(--hpf-brand-light, #e8f4fd);
}

/* CTA submit — green on step 4 */
#hpfOverlay .hpf-cta.green {
	background: var(--hpf-success, #16a34a);
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.28);
}

#hpfOverlay .hpf-cta.green:hover {
	background: #15803d;
}

/* Service pill — tighter spacing */
#hpfOverlay .hpf-service-pill.show {
	margin-bottom: 2px;
}

/* Progress + steps on white modal body */
#hpfOverlay .hpf-steps {
	background: var(--hpf-white, #fff);
}

@media (max-width: 639px) {
	.hpf-hero-cta {
		font-size: 12px !important;
		padding: 10px 14px !important;
	}
}