/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-wy9hjqx5smi7 > .fl-row-content-wrap {
	background-image: url(/wp-content/uploads/2023/08/hvac-medium-installing-air-conditioner-in-house-man-specialis-2023-06-26-22-30-08-utc-Medium.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-wy9hjqx5smi7 .fl-row-content {
	max-width: 1300px;
}
 .fl-node-wy9hjqx5smi7 > .fl-row-content-wrap {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-wy9hjqx5smi7 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-oqivbdnyklc4 .fl-row-content {
	max-width: 1300px;
}
 .fl-node-oqivbdnyklc4 > .fl-row-content-wrap {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-oqivbdnyklc4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-idr98h0lsaq1 .fl-row-content {
	max-width: 1300px;
}
 .fl-node-idr98h0lsaq1 > .fl-row-content-wrap {
	padding-top:72px;
	padding-right:24px;
	padding-bottom:72px;
	padding-left:24px;
}
@media ( max-width: 992px ) {
 .fl-node-idr98h0lsaq1.fl-row > .fl-row-content-wrap {
	padding-top:56px;
	padding-bottom:56px;
}
}
@media ( max-width: 768px ) {
 .fl-node-idr98h0lsaq1.fl-row > .fl-row-content-wrap {
	padding-top:48px;
	padding-bottom:48px;
}
}






 .fl-node-5igx20sf9o6p > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-ruj8m53pcx9g > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-p3zg6te0cq87 > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-on6qrfu01j2y > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-4b9ym8zgqtuf > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-smwthb78iy50 > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-6t29clfn0a3i > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-ougmdv3qhsi4 > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-jrpzwlf70y5n > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}






 .fl-node-pcs5kwvxift0 > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}




.fl-node-mipjfw138q50 {
	width: 57.5%;
}
 .fl-node-mipjfw138q50 > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-q56jyv4gasut {
	width: 100%;
}




.fl-node-580vwikpsyf1 {
	width: 60%;
}
 .fl-node-580vwikpsyf1 > .fl-col-content {
	padding-right:20px;
}




.fl-node-6v97ytfpemn5 {
	width: 100%;
}




.fl-node-8rudc2xz5kt0 {
	width: 100%;
}




.fl-node-wnb4kcfi2pjz {
	width: 100%;
}




.fl-node-e08l4pdzxub6 {
	width: 20%;
}




.fl-node-3lyxr048zq76 {
	width: 100%;
}




.fl-node-ok69h3bn7eix {
	width: 100%;
}




.fl-node-vso79lh4g3ty {
	width: 100%;
}




.fl-node-vpqxk9ol0d83 {
	width: 100%;
}




.fl-node-s7e2m9lfjp8c {
	width: 100%;
}




.fl-node-gysalzf930r5 {
	width: 100%;
}




.fl-node-n0rsiwx7tdmf {
	width: 100%;
}




.fl-node-yl1j8ntkc2e0 {
	width: 100%;
}




.fl-node-a9i7tp2zwqmv {
	width: 60%;
}




.fl-node-cyglkpjt83ew {
	width: 100%;
}




.fl-node-flg8i0vtch1m {
	width: 42.5%;
}
 .fl-node-flg8i0vtch1m > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-snzfl6dr5qwv {
	width: 40%;
}
 .fl-node-snzfl6dr5qwv > .fl-col-content {
	padding-bottom:24px;
}




.fl-node-ht3l1yo408eq {
	width: 80%;
}




.fl-node-58nbaytkf7ch {
	width: 40%;
}




.fl-node-2wfy8tl4m70e {
	width: 100%;
}
 .fl-node-oz4aj062yn8q > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-qm4y5xvhk1e7, .fl-node-qm4y5xvhk1e7 .fl-photo {
	text-align: center;
}
 .fl-node-qm4y5xvhk1e7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-k3dzu250cym6 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-s0xty75fzbum > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-node-b27aqzrm1ekw, .fl-node-b27aqzrm1ekw .fl-photo {
	text-align: center;
}
 .fl-node-ym53irafvge4.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-qpzgns3k6yat > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
 .fl-node-dqwrvba8upsc.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
.fl-node-t0bayh7sd9xk, .fl-node-t0bayh7sd9xk .fl-photo {
	text-align: center;
}
 .fl-node-5r24x81cfbs0 > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-w3rsu9qc065n > .fl-module-content {
	margin-right:0px;
	margin-bottom:28px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-w3rsu9qc065n > .fl-module-content { margin-bottom:20px; } } .fl-node-z7yjoe8u6wt5.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-pbti5kjgohl9.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-tl5orhbqmyzi.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-sp6h5itu0nyc > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-m6qfdgsoae3b > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-l8zr2357ykqu.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-2rxot6cyhgfl > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-right {
  	animation: fl-slide-in-right 1s ease;
  	-webkit-animation: fl-slide-in-right 1s ease;
}
@-webkit-keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-accordion-button {
	cursor: pointer;
	display: table;
}

.fl-accordion-button button,
.fl-accordion-button button:focus,
.fl-accordion-button button:hover {
	all: unset;
}

.fl-accordion-button:focus {
	outline: 0
}

.fl-accordion-button-label {
	display: table-cell;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	text-decoration: none;
}

.fl-accordion-button-label:not(a) {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}

.fl-accordion-button .fl-accordion-button-icon:focus,
.fl-accordion-button .fl-accordion-button-icon:active {
	opacity: 1;
	background: none;
	text-decoration: none;
	outline: 1px auto -webkit-focus-ring-color;
}

.fl-accordion-button-label:is(a):hover,
.fl-accordion-button-icon:is(a):hover {
	text-decoration: none;
}

.fl-accordion-button .fl-accordion-button-icon {
	display: block;
	line-height: inherit;
}

.fl-accordion-button .fl-accordion-button-icon-left,
.fl-accordion-button .fl-accordion-button-icon-left:focus,
.fl-accordion-button .fl-accordion-button-icon-left:hover {
	margin-inline-end: 10px;
}

.fl-accordion-button .fl-accordion-button-icon-right,
.fl-accordion-button .fl-accordion-button-icon-right:focus,
.fl-accordion-button .fl-accordion-button-icon-right:hover {
	margin-inline-start: 10px;
}

.fl-accordion-button .fl-accordion-button-icon-left,
.fl-accordion-button .fl-accordion-button-icon-right {
	opacity: .5;
}

.fl-accordion-button .fl-accordion-button-icon-left:hover,
.fl-accordion-button .fl-accordion-button-icon-right:hover {
	opacity: 1;
}

.fl-accordion-content {
	display: none;
}
.fl-accordion-item {
	overflow: hidden;
}

/* Small */
.fl-accordion-small .fl-accordion-button {
	padding: 10px 15px;
}
.fl-accordion-small .fl-accordion-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.fl-accordion-medium .fl-accordion-button {
	padding: 15px 20px;
}
.fl-accordion-medium .fl-accordion-button-label,
.fl-accordion-medium .fl-accordion-button-icon {
	font-size: 20px;
}
.fl-accordion-medium .fl-accordion-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.fl-accordion-large .fl-accordion-button {
	padding: 20px 25px;
}
.fl-accordion-large .fl-accordion-button-label,
.fl-accordion-large .fl-accordion-button-icon {
	font-size: 26px;
}
.fl-accordion-large .fl-accordion-content {
	padding: 0 50px 25px 25px;
}

.rtl .fl-accordion-item .fl-accordion-button-label,
.rtl .fl-accordion-item .fl-accordion-content * {
	text-align: right;
}

.fl-node-nsej1ku50q6v .fl-accordion-item {
	margin-bottom: 10px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #e5e5e5;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-dxr8vq7bi4p0 > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-5ty4lj63a2w1.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
} .fl-node-pn3sbzc2wa4v > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-t4chvzfqued1 > .fl-module-content {
	margin-top:24px;
	margin-right:24px;
	margin-bottom:8px;
	margin-left:24px;
}
@media (max-width: 768px) { .fl-node-t4chvzfqued1 > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } } .fl-node-gco52960edj4.fl-module-html {
	margin-right:0px;
	margin-bottom:28px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-gco52960edj4.fl-module-html { margin-bottom:20px; } } .fl-node-95mqn6tdpfrz > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-a9cd4c6ee38 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-q1h8ckf0bos4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:24px;
}
@media (max-width: 768px) { .fl-node-q1h8ckf0bos4 > .fl-module-content { margin-bottom:20px; } }.fl-module-list .fl-list-item .fl-list-item-wrapper {
  width: 100%;
}

.fl-module-list .fl-list {
  padding-inline-start: unset;
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item {
  border-bottom: none;
}

.fl-module-list .fl-list-item-heading {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon,
.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon .fl-list-item-icon {
  display: inline-block;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.fl-module-list .fl-list-item-content {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
  display: table-cell; 
  vertical-align: middle;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text {
  display: table-cell;
  vertical-align: middle; 
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text p:last-child {
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text b,
.fl-module-list .fl-list-item-content .fl-list-item-content-text strong {
	font-weight: bold;
}
	.fl-node-gf6o23eps41m .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-gf6o23eps41m .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gf6o23eps41m .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gf6o23eps41m .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 10px;
	}
	
.fl-node-gf6o23eps41m ul.fl-list,
.fl-node-gf6o23eps41m ol.fl-list {
	list-style-type: none;
}


.fl-node-gf6o23eps41m .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-gf6o23eps41m .fl-list {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-gf6o23eps41m .fl-list .fl-list-item {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-gf6o23eps41m .fl-list .fl-list-item-icon {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-gf6o23eps41m .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-vpofxgi5thn1 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-vb69twi5edg0 > .fl-module-content {
	margin-top:16px;
}
 .fl-node-syx0ulbpkh3q.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

@charset "UTF-8";
.fl-node-wy9hjqx5smi7 {
  /* Option B glow-breathe: slow gentle accent radial glow loop (GPU-cheap: opacity only). */
  /* ===== HCPR-82 hero animation: snaking logo line -> sidecard (Option A, CSS-only) ===== */
  /* A thin multicolor logo-stripe segment snakes in from the left across the top
   edge of the hero bg, travels right, and exits the far-right corner; the
   sidecard top stripe reveals right->left as the segment exits, so the line
   appears to travel from the bg into the sidecard. prefers-reduced-motion safe. */
  /* ===== HCPR-82 hero animation: light-sheen sweep (Option B, CSS-only) ===== */
  /* Subtle diagonal light sweep across the hero, once on load. Own dedicated
   pseudo (row ::after) on z-index 2 below text content (z 1 is .fl-row-content,
   but sheen sits above bg/glow yet stays pointer-events:none and translucent),
   distinct from the snake line (::before) — no conflict. */
  /* ===== HCPR-257 graceful degradation (base CSS; states produced by node OMISSION at assembly, no toggle classes) ===== */
  /* (a) sidebar column dropped -> remaining single column fills full width (BB keeps set % otherwise -> ~42% empty gap) */
  /* (b) vertical rhythm: last surviving module in the main column never leaves a dangling bottom gap
   (proof-row / trust-row may be the omitted last node). Prefer last-child reset over fixed margins. */
}
.fl-node-wy9hjqx5smi7 {
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  /* HCPR-82 accent token — copper by default (heating); a page applies the
     .hero-accent--cool modifier on this row to switch glow/sheen to navy (AC/cooling). */
  --hero-accent: var(--hcpr-copper);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
.fl-node-wy9hjqx5smi7.hero-accent--cool {
  --hero-accent: var(--hcpr-navy);
}
.fl-node-wy9hjqx5smi7.hero-pillar--compact {
  min-height: 0;
}
.fl-node-wy9hjqx5smi7 *, .fl-node-wy9hjqx5smi7 *::before, .fl-node-wy9hjqx5smi7 *::after {
  box-sizing: border-box;
}
.fl-node-wy9hjqx5smi7 > .fl-row-content-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.fl-node-wy9hjqx5smi7 > .fl-row-content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(45, 39, 53, 0.55), rgba(24, 29, 37, 0.45));
  pointer-events: none;
}
.fl-node-wy9hjqx5smi7 > .fl-row-content-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 80%;
  z-index: 0;
  background: radial-gradient(circle at 80% 20%, var(--hero-accent) 0%, transparent 50%);
  opacity: 0.15;
  pointer-events: none;
  animation: hero-glow-breathe 7s ease-in-out 1200ms infinite alternate;
  will-change: opacity;
}
@keyframes hero-glow-breathe {
  from {
    opacity: 0.08;
  }
  to {
    opacity: 0.2;
  }
}
.fl-node-wy9hjqx5smi7 .fl-row-content {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 8vw, 6rem) 24px;
}
.fl-node-wy9hjqx5smi7 .fl-col-group {
  display: flex !important;
  align-items: center;
}
@media (max-width: 992px) {
  .fl-node-wy9hjqx5smi7 .fl-col-group {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 400px) {
  .fl-node-wy9hjqx5smi7 .fl-row-content {
    padding: 2.5rem 16px;
  }
}
.fl-node-wy9hjqx5smi7::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  height: 4px;
  width: 22%;
  min-width: 160px;
  max-width: 320px;
  background: var(--hcpr-logo-stripe);
  border-radius: 0 0 3px 0;
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
  animation: hero-snake-line 2600ms cubic-bezier(0.5, 0, 0.2, 1) 500ms 1 both;
  will-change: transform, opacity;
}
@keyframes hero-snake-line {
  0% {
    transform: translateX(-110%);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 10%));
    opacity: 0;
  }
}
.fl-node-wy9hjqx5smi7::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(251, 224, 182, 0.1) 48%, rgba(252, 234, 207, 0.16) 50%, rgba(251, 224, 182, 0.1) 52%, transparent 65%);
  transform: translateX(-60%);
  opacity: 0;
  animation: hero-sheen 5200ms cubic-bezier(0.45, 0, 0.25, 1) 700ms 1 both;
  will-change: transform, opacity;
}
@keyframes hero-sheen {
  0% {
    transform: translateX(-60%);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fl-node-wy9hjqx5smi7::before {
    display: none !important;
    animation: none !important;
  }
  .fl-node-wy9hjqx5smi7::after {
    display: none !important;
    animation: none !important;
  }
  .fl-node-wy9hjqx5smi7 > .fl-row-content-wrap::after {
    animation: none !important;
    opacity: 0.15 !important;
  }
}
.fl-node-wy9hjqx5smi7 .fl-col-group > .fl-col:only-child {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
}
.fl-node-wy9hjqx5smi7 .fl-col-group:has(> .fl-col:only-child) {
  align-items: stretch;
}
.fl-node-wy9hjqx5smi7 .fl-col > .fl-col-content > .fl-module:last-child {
  margin-bottom: 0 !important;
}
.fl-node-wy9hjqx5smi7 .fl-col > .fl-col-content > .fl-module:last-child .fl-module-content {
  margin-bottom: 0 !important;
}
.fl-node-oqivbdnyklc4 {
  --plum: hsl(268 40% 28%);
  --plum-dark: hsl(270 20% 15%);
  --plum-tint: hsl(268 20% 95%);
  --copper: hsl(28 85% 52%);
  --copper-soft: hsl(28 85% 92%);
  --cream: hsl(30 25% 97%);
  --white: #ffffff;
  --muted: hsl(270 12% 42%);
  --line: hsla(268 25% 24% / 0.12);
  --shadow-soft: 0 4px 16px rgba(33, 20, 42, 0.06);
  --shadow-deep: 0 24px 50px rgba(33, 20, 42, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --hcpr-logo-stripe: linear-gradient(90deg, hsl(268 40% 28%) 0%, hsl(268 40% 28%) 45%, #64be5c 45%, #64be5c 63%, #ffd245 63%, #ffd245 81%, #e7743d 81%, #e7743d 100%);
  background: var(--hcpr-white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  font-family: var(--sans);
  color: var(--plum-dark);
  line-height: 1.6;
}
.fl-node-jrpzwlf70y5n {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
}
.fl-node-e08l4pdzxub6 .fl-col-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px 34px;
  align-items: start;
}
.fl-node-e08l4pdzxub6 .fl-col-content > .fl-module.eb-header-mod {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .fl-node-e08l4pdzxub6 .fl-col-content {
    gap: 26px;
  }
}
.fl-node-flg8i0vtch1m {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius-lg);
  box-shadow: var(--hcpr-shadow);
  overflow: hidden;
  position: relative;
  padding: 0 24px 24px !important;
}
.fl-node-flg8i0vtch1m::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hcpr-logo-stripe) !important;
  z-index: 2;
  clip-path: inset(0 0 0 100%);
  animation: hero-sidecard-stripe 700ms cubic-bezier(0.4, 0, 0.2, 1) 2600ms 1 both;
}
@keyframes hero-sidecard-stripe {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fl-node-flg8i0vtch1m::after {
    clip-path: none !important;
    animation: none !important;
  }
}
@media (max-width: 992px) {
  .fl-node-flg8i0vtch1m {
    margin-top: 28px !important;
  }
}
.fl-node-snzfl6dr5qwv {
  background: var(--hcpr-white);
  border: 1px solid rgba(60, 46, 77, 0.1);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(45, 28, 64, 0.14);
  overflow: hidden;
  position: relative;
  padding: 0 24px 16px !important;
}
.fl-node-snzfl6dr5qwv::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #452b64 0%, #452b64 45%, #64be5c 45%, #64be5c 63%, #ffd245 63%, #ffd245 81%, #e7743d 81%, #e7743d 100%) !important;
  z-index: 2;
}
.fl-node-ht3l1yo408eq .fl-col-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px 34px;
  align-items: start;
}
.fl-node-ht3l1yo408eq .fl-col-content > .fl-module.eb-header-mod {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .fl-node-ht3l1yo408eq .fl-col-content {
    gap: 26px;
  }
}
.fl-node-58nbaytkf7ch {
  align-self: start;
}
.fl-node-oz4aj062yn8q .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--hcpr-copper) !important;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Source Sans 3", system-ui, sans-serif !important;
}
.fl-node-oz4aj062yn8q .eyebrow::before, .fl-node-oz4aj062yn8q .eyebrow::after {
  content: "" !important;
  display: block !important;
  width: 28px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
  flex-shrink: 0;
}
.fl-node-qm4y5xvhk1e7 {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.fl-node-qm4y5xvhk1e7 .fl-photo, .fl-node-qm4y5xvhk1e7 .fl-photo-content {
  height: 100%;
}
.fl-node-qm4y5xvhk1e7 .fl-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.fl-node-qm4y5xvhk1e7::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.fl-node-qm4y5xvhk1e7::before {
  content: "Built for peace of mind" !important;
  display: block !important;
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: var(--hcpr-radius-sm);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-plum);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: auto !important;
  clear: none !important;
}
.fl-node-k3dzu250cym6 .hp-rating-card {
  text-align: center;
  padding: 28px 0 18px;
  border-bottom: 1px solid var(--hcpr-line);
  margin-bottom: 4px;
}
.fl-node-k3dzu250cym6 .hp-rating-num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--hcpr-plum);
  line-height: 1;
}
.fl-node-k3dzu250cym6 .hp-rating-stars svg {
  width: 20px;
  height: 20px;
  fill: #f5c518;
}
.fl-node-k3dzu250cym6 .hp-rating-sub {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 13px;
  color: var(--hcpr-muted);
}
.fl-node-s0xty75fzbum {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  margin-bottom: 4px;
}
.fl-node-s0xty75fzbum::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
  flex-shrink: 0;
}
.fl-node-bzq3451wio76 .fl-rich-text {
  font-family: var(--sans);
}
.fl-node-bzq3451wio76 .fl-rich-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.fl-node-bzq3451wio76 .fl-rich-text p strong {
  color: var(--plum-dark);
  font-weight: 700;
}
.fl-node-b27aqzrm1ekw {
  margin: 0 -24px !important;
  padding: 0 !important;
}
.fl-node-b27aqzrm1ekw .fl-module-content {
  margin: 0 !important;
}
.fl-node-b27aqzrm1ekw .fl-photo, .fl-node-b27aqzrm1ekw .fl-photo-content {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  display: block;
}
.fl-node-b27aqzrm1ekw .fl-photo-content {
  background: var(--hcpr-plum-tint);
}
.fl-node-b27aqzrm1ekw img {
  width: 100% !important;
  max-width: none !important;
  max-height: 100px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fl-node-ym53irafvge4 {
  /* HCPR-166 as-low-as box */
}
.fl-node-ym53irafvge4 .hcp-tpl {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-ym53irafvge4 .hcp-tpl *, .fl-node-ym53irafvge4 .hcp-tpl *::before, .fl-node-ym53irafvge4 .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-ym53irafvge4 .hcp-tpl a {
  color: inherit;
}
.fl-node-ym53irafvge4 .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-ym53irafvge4 .hcp-tpl h1, .fl-node-ym53irafvge4 .hcp-tpl h2, .fl-node-ym53irafvge4 .hcp-tpl h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-ym53irafvge4 .hcp-tpl .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a0520d;
  background: rgba(237, 126, 29, 0.1);
  padding: 6px 16px;
  border-radius: var(--hcpr-radius-pill);
  margin-bottom: 14px;
}
.fl-node-ym53irafvge4 .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-ym53irafvge4 .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl .section-head {
  margin-bottom: 36px;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid {
  background: var(--hcpr-white);
  padding: var(--hcpr-section) 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--hcpr-radius);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  text-decoration: none;
  color: var(--hcpr-plum-dark);
  overflow: hidden;
  box-shadow: var(--hcpr-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card:hover {
  transform: translateY(-2px);
  border-color: var(--hcpr-copper);
  box-shadow: var(--hcpr-shadow-lg);
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card-body {
  padding: 24px 22px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: rgba(237, 126, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hcpr-copper);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-system {
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-cost-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hcpr-muted);
  font-weight: 600;
  margin-top: 4px;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-price {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--hcpr-plum);
  line-height: 1.25;
  margin: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-rebate {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--hcpr-radius-pill);
  background: var(--hcpr-copper-soft);
  font-size: 14px;
  font-weight: 600;
  color: #a0520d;
  width: fit-content;
  margin: 4px 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-rebate::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: var(--hcpr-dot-glow);
  flex-shrink: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card.has-rebate .prg-rebate {
  display: inline-flex;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-desc {
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.55;
  margin: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-net-cost {
  background: var(--hcpr-plum-gradient);
  color: var(--hcpr-white);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-net-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  opacity: 0.85;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-net-value {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-action {
  padding: 14px 22px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #a0520d;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-action svg {
  width: 18px;
  height: 18px;
  stroke: var(--hcpr-copper);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card:hover .prg-action svg {
  transform: translateX(4px);
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card .prg-action {
  display: none;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(237, 126, 29, 0.06);
  border-radius: var(--hcpr-radius-sm);
  border: 1px solid rgba(237, 126, 29, 0.12);
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--hcpr-radius-sm);
  background: rgba(237, 126, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-footer-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--hcpr-copper);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-footer p {
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 375px) {
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card-body {
    padding: 20px 18px 8px;
  }
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-net-cost {
    padding: 12px 18px;
  }
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-action {
    padding: 12px 18px 16px;
  }
}
@media (min-width: 376px) and (max-width: 600px) {
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-grid {
    grid-template-columns: 1fr;
  }
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card {
  position: relative;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-monthly {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  background: var(--hcpr-plum-gradient);
  color: var(--hcpr-white);
  padding: 7px 12px;
  border-radius: var(--hcpr-radius-md);
  box-shadow: var(--hcpr-shadow);
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-monthly .prg-monthly-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-monthly .prg-monthly-amt {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-monthly .prg-monthly-amt span {
  font-size: 0.7rem;
  font-weight: 600;
}
.fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card-body {
  padding-right: 96px;
}
@media (max-width: 375px) {
  .fl-node-ym53irafvge4 .hcp-tpl.price-route-grid .prg-card-body {
    padding-right: 90px;
  }
}
@charset "UTF-8";
.fl-node-qpzgns3k6yat {
  /* value-snapshot-outcome — &-scoped (X10), var(--hcpr-*) tokens (X1). HCPR-90/203 */
  /* value-snapshot-outcome */
  /* Optional hero image slot — full feature/image card => --hcpr-radius-lg (22px) per BRANDBOOK §6.11. HCPR-90 */
  /* Grid: 3-up on desktop, stacks on mobile */
  /* Card: §6.6 surface gradient, radius 18 (ratified), shadow tokens, hover lift */
  /* Plum gradient icon container — RATIFIED (do NOT revert to copper) §6.9 */
  /* Card kicker — copper per BRANDBOOK §4.2 (eyebrow/kicker standard). HCPR-90 */
  /* Main stat/value */
  /* Description text */
  /* Active heading underline bar */
  /* Mobile */
}
.fl-node-qpzgns3k6yat .hcp-tpl {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-qpzgns3k6yat .hcp-tpl *, .fl-node-qpzgns3k6yat .hcp-tpl *::before, .fl-node-qpzgns3k6yat .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-qpzgns3k6yat .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-qpzgns3k6yat .hcp-tpl a {
  color: inherit;
}
.fl-node-qpzgns3k6yat .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-qpzgns3k6yat .hcp-tpl h1, .fl-node-qpzgns3k6yat .hcp-tpl h2, .fl-node-qpzgns3k6yat .hcp-tpl h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-qpzgns3k6yat .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-qpzgns3k6yat .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-qpzgns3k6yat .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-qpzgns3k6yat .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-qpzgns3k6yat .hcp-tpl .section-head {
  margin-bottom: 36px;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome {
  background: var(--hcpr-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-hero-img {
  margin-bottom: 32px;
  border-radius: var(--hcpr-radius-lg);
  overflow: hidden;
  max-height: 320px;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--hcpr-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-card:hover {
  box-shadow: var(--hcpr-shadow-lg);
  transform: translateY(-4px);
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hcpr-white);
  stroke-width: 1.75;
  fill: none;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  font-family: var(--hcpr-sans);
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-value {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--hcpr-plum);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-desc {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin-top: 4px;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--hcpr-copper);
  border-radius: 2px;
}
@media (max-width: 375px) {
  .fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-card {
    padding: 24px 20px 20px;
  }
  .fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-hero-img {
    max-height: 200px;
    border-radius: var(--hcpr-radius);
    margin-bottom: 24px;
  }
  .fl-node-qpzgns3k6yat .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
    max-height: 200px;
  }
}
.fl-node-qpzgns3k6yat .block-label {
  display: none !important;
}
.fl-node-dqwrvba8upsc {
  /* v4: Image area reduced to ~half. aspect-ratio 16/5 + max-height cap */
  /* CSS :target fallback (no-JS) */
  /* Mobile: tighter tab grid + reduced image */
}
.fl-node-dqwrvba8upsc .block--process-stepper {
  --plum: hsl(268 40% 28%);
  --plum-dark: hsl(270 20% 15%);
  --plum-deep: hsl(268 42% 22%);
  --plum-tint: hsl(268 25% 95%);
  --copper: hsl(28 85% 52%);
  --copper-soft: hsl(28 85% 92%);
  --white: #ffffff;
  --card: hsl(30 20% 99%);
  --muted: hsl(270 12% 42%);
  --line: hsla(268 25% 24% / 0.1);
  --line-strong: hsla(268 25% 24% / 0.18);
  --shadow-card: 0 10px 24px rgba(33,20,42,0.07);
  --shadow-hover: 0 12px 32px rgba(33,20,42,0.12);
  --shadow-active: 0 8px 20px rgba(212,119,42,0.18);
  --radius: 18px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --max: 1100px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --ps-steps: 5;
}
.fl-node-dqwrvba8upsc .block--process-stepper .block-label {
  display: none;
}
.fl-node-dqwrvba8upsc .block--process-stepper {
  background: var(--hcpr-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}
.fl-node-dqwrvba8upsc .block--process-stepper .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-dqwrvba8upsc .block--process-stepper .section-intro {
  margin-bottom: 44px;
}
.fl-node-dqwrvba8upsc .block--process-stepper .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}
.fl-node-dqwrvba8upsc .block--process-stepper .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-dqwrvba8upsc .block--process-stepper h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--plum-dark);
  max-width: 750px;
  margin-bottom: 10px;
}
.fl-node-dqwrvba8upsc .block--process-stepper .section-intro .lead {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.55;
}
.fl-node-dqwrvba8upsc .ps-stepper {
  display: grid;
  grid-template-columns: repeat(var(--ps-steps), 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.fl-node-dqwrvba8upsc .ps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 10px 14px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(33, 20, 42, 0.04);
}
.fl-node-dqwrvba8upsc .ps-step:focus-visible {
  outline: 3px solid var(--copper-soft);
  outline-offset: 2px;
}
.fl-node-dqwrvba8upsc .ps-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  background: var(--hcpr-white);
  color: var(--muted);
  border: 2px solid var(--line);
  transition: all 0.25s ease;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fl-node-dqwrvba8upsc .ps-step-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--plum-dark);
  text-align: center;
  line-height: 1.25;
  transition: color 0.2s;
}
.fl-node-dqwrvba8upsc .ps-step-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  opacity: 0.65;
  margin-top: 3px;
  transition: opacity 0.2s;
}
.fl-node-dqwrvba8upsc .ps-step[data-visited] {
  border-color: var(--line-strong);
}
.fl-node-dqwrvba8upsc .ps-step[data-visited] .ps-num {
  background: var(--copper-soft);
  border-color: var(--copper);
  color: var(--plum-dark);
}
.fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
  background: var(--white);
}
.fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] .ps-num {
  background: var(--hcpr-copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
.fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] .ps-step-desc {
  opacity: 1;
  color: var(--plum-dark);
}
.fl-node-dqwrvba8upsc .ps-step:hover {
  border-color: var(--copper);
  box-shadow: 0 4px 12px rgba(212, 119, 42, 0.1);
}
.fl-node-dqwrvba8upsc .ps-step:hover .ps-num {
  border-color: var(--copper);
  transform: scale(1.05);
}
.fl-node-dqwrvba8upsc .ps-stage {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .fl-node-dqwrvba8upsc .ps-stage {
    grid-template-columns: 1fr 300px;
  }
}
.fl-node-dqwrvba8upsc .ps-panel {
  display: none;
}
.fl-node-dqwrvba8upsc .ps-panel[data-active] {
  display: block;
  animation: psFadeIn 0.3s ease-out;
}
.fl-node-dqwrvba8upsc .ps-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.fl-node-dqwrvba8upsc .ps-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.2;
  max-height: 220px;
}
.fl-node-dqwrvba8upsc .ps-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.fl-node-dqwrvba8upsc .ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 14, 35, 0.45), transparent 60%);
  pointer-events: none;
}
.fl-node-dqwrvba8upsc .ps-hero-badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--sans);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fl-node-dqwrvba8upsc .ps-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: 0 0 0 4px rgba(212, 119, 42, 0.16);
}
.fl-node-dqwrvba8upsc .ps-card-body {
  padding: clamp(20px, 4vw, 36px);
}
.fl-node-dqwrvba8upsc .ps-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 12px;
}
.fl-node-dqwrvba8upsc .ps-card > .ps-card-body > p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--plum-dark);
  margin-bottom: 20px;
  max-width: 640px;
}
.fl-node-dqwrvba8upsc .ps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.fl-node-dqwrvba8upsc .ps-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--plum-tint);
  color: var(--plum);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
}
.fl-node-dqwrvba8upsc .ps-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
@media (min-width: 600px) {
  .fl-node-dqwrvba8upsc .ps-checks {
    grid-template-columns: 1fr 1fr;
  }
}
.fl-node-dqwrvba8upsc .ps-checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.fl-node-dqwrvba8upsc .ps-check-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--hcpr-radius-md);
  background: rgba(212, 119, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-node-dqwrvba8upsc .ps-check-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-dqwrvba8upsc .ps-check-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 2px;
}
.fl-node-dqwrvba8upsc .ps-check-text span {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}
.fl-node-dqwrvba8upsc .ps-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fl-node-dqwrvba8upsc .ps-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  min-height: 44px;
  transition: color 0.15s;
}
.fl-node-dqwrvba8upsc .ps-nav a:hover {
  color: var(--copper);
}
.fl-node-dqwrvba8upsc .ps-nav a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-dqwrvba8upsc .ps-nav .ps-counter {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.fl-node-dqwrvba8upsc .ps-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
}
@media (min-width: 900px) {
  .fl-node-dqwrvba8upsc .ps-cta {
    position: sticky;
    top: 24px;
  }
}
.fl-node-dqwrvba8upsc .ps-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fl-node-dqwrvba8upsc .ps-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-dqwrvba8upsc .ps-cta h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum-dark);
  margin-bottom: 8px;
}
.fl-node-dqwrvba8upsc .ps-cta p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 24px;
}
.fl-node-dqwrvba8upsc .ps-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--hcpr-radius-md);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: var(--hcpr-copper);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(212, 119, 42, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 50px;
}
.fl-node-dqwrvba8upsc .ps-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.3);
}
.fl-node-dqwrvba8upsc .ps-cta .btn-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-dqwrvba8upsc .ps-cta .ps-cta-trust {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--sans);
}
.fl-node-dqwrvba8upsc .ps-cta .ps-cta-trust::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: 0 0 0 4px rgba(212, 119, 42, 0.16);
  flex-shrink: 0;
}
.fl-node-dqwrvba8upsc .no-js .ps-panel, .fl-node-dqwrvba8upsc .ps-noscript .ps-panel {
  display: none;
}
.fl-node-dqwrvba8upsc .no-js .ps-panel:first-child, .fl-node-dqwrvba8upsc .ps-noscript .ps-panel:first-child {
  display: block;
}
.fl-node-dqwrvba8upsc .no-js .ps-panel:target, .fl-node-dqwrvba8upsc .ps-noscript .ps-panel:target {
  display: block;
}
.fl-node-dqwrvba8upsc .no-js .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target), .fl-node-dqwrvba8upsc .ps-noscript .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target) {
  display: none;
}
.fl-node-dqwrvba8upsc .no-js .ps-step:first-child, .fl-node-dqwrvba8upsc .ps-noscript .ps-step:first-child {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
}
.fl-node-dqwrvba8upsc .no-js .ps-step:first-child .ps-num, .fl-node-dqwrvba8upsc .ps-noscript .ps-step:first-child .ps-num {
  background: var(--hcpr-copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-dqwrvba8upsc .no-js .ps-step:first-child .ps-step-label, .fl-node-dqwrvba8upsc .ps-noscript .ps-step:first-child .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
.fl-node-dqwrvba8upsc .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child, .fl-node-dqwrvba8upsc .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child {
  border-color: var(--line);
  box-shadow: 0 2px 8px rgba(33, 20, 42, 0.04);
  transform: none;
}
.fl-node-dqwrvba8upsc .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-num {
  background: var(--hcpr-white);
  border-color: var(--line);
  color: var(--muted);
  box-shadow: none;
}
.fl-node-dqwrvba8upsc .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-step-label {
  color: var(--plum-dark);
  font-weight: 700;
}
.fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"], .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"], .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"], .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"], .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"], .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"], .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
}
.fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-num, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-num, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-num, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-num, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-num, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-num, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-num {
  background: var(--hcpr-copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-step-label, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-step-label, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-step-label, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-step-label, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-step-label, .fl-node-dqwrvba8upsc .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-step-label, .fl-node-dqwrvba8upsc .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
@keyframes psFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fl-node-dqwrvba8upsc .ps-panel[data-active] {
    animation: none;
  }
  .fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] {
    transform: none;
  }
  .fl-node-dqwrvba8upsc .ps-step[aria-selected="true"] .ps-num {
    transform: none;
  }
  .fl-node-dqwrvba8upsc .ps-step:hover .ps-num {
    transform: none;
  }
  .fl-node-dqwrvba8upsc .ps-step:hover {
    transform: none;
  }
  .fl-node-dqwrvba8upsc .ps-cta .btn-cta {
    transition: none;
  }
  .fl-node-dqwrvba8upsc .ps-step {
    transition: none;
  }
}
@media (max-width: 599px) {
  .fl-node-dqwrvba8upsc {
    /* v4: reduced image on mobile too */
  }
  .fl-node-dqwrvba8upsc .ps-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }
  .fl-node-dqwrvba8upsc .ps-step {
    padding: 10px 8px 8px;
  }
  .fl-node-dqwrvba8upsc .ps-num {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 6px;
  }
  .fl-node-dqwrvba8upsc .ps-step-label {
    font-size: 12px;
  }
  .fl-node-dqwrvba8upsc .ps-step-desc {
    display: none;
  }
  .fl-node-dqwrvba8upsc .ps-hero {
    aspect-ratio: 2.6666666667;
    max-height: 160px;
  }
  .fl-node-dqwrvba8upsc .ps-card-body {
    padding: 20px 16px;
  }
  .fl-node-dqwrvba8upsc .ps-checks {
    grid-template-columns: 1fr;
  }
  .fl-node-dqwrvba8upsc .ps-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fl-node-dqwrvba8upsc .ps-cta {
    padding: 24px 16px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .fl-node-dqwrvba8upsc .ps-stepper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .fl-node-dqwrvba8upsc .ps-stage {
    grid-template-columns: 1fr;
  }
}
@media print {
  .fl-node-dqwrvba8upsc .ps-panel {
    display: block !important;
    page-break-inside: avoid;
  }
  .fl-node-dqwrvba8upsc .ps-panel + .ps-panel {
    border-top: 1px solid #ccc;
    padding-top: 16px;
    margin-top: 16px;
  }
  .fl-node-dqwrvba8upsc .ps-stepper, .fl-node-dqwrvba8upsc .ps-nav {
    display: none;
  }
  .fl-node-dqwrvba8upsc .ps-hero {
    height: 80px;
    aspect-ratio: auto;
    max-height: none;
  }
}
@charset "UTF-8";
.fl-node-t0bayh7sd9xk {
  /* HCPR-265: equal-height split — photo fills column beside stacked text (desktop only) */
}
.fl-node-t0bayh7sd9xk .fl-node-j69iy1l2h4zd .fl-photo-img, .fl-node-t0bayh7sd9xk .fl-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--hcpr-radius);
  box-shadow: var(--hcpr-shadow-soft);
  display: block;
}
.fl-node-t0bayh7sd9xk .fl-photo, .fl-node-t0bayh7sd9xk .fl-photo-content {
  height: 100%;
}
@media (min-width: 769px) {
  .fl-node-t0bayh7sd9xk .fl-node-crfb0unqe71t {
    display: flex;
  }
  .fl-node-t0bayh7sd9xk .fl-node-crfb0unqe71t > .fl-col {
    float: none;
  }
  .fl-node-t0bayh7sd9xk .fl-node-e7augh3smjq0 .fl-col-content {
    height: 100%;
  }
  .fl-node-t0bayh7sd9xk {
    height: 100%;
  }
}
.fl-node-5r24x81cfbs0 {
  display: block;
  max-width: 760px;
}
.fl-node-5r24x81cfbs0 .eb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 10px;
}
.fl-node-5r24x81cfbs0 .eb-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-5r24x81cfbs0 .eb-h2 {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 1.9rem);
  line-height: 1.22;
  color: var(--hcpr-plum);
  margin: 0;
  max-width: 26ch;
}
.fl-node-w3rsu9qc065n {
  /* HCPR-265: default ordinal marker when payload supplies no icon (supersedes HCPR-197 lightbulb default). */
}
.fl-node-w3rsu9qc065n {
  --eb-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  display: block;
}
.fl-node-w3rsu9qc065n .eb-seg__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hcpr-radius-sm);
  background: rgba(237, 126, 29, 0.1);
  color: var(--hcpr-plum-dark);
  margin: 0 0 14px;
}
.fl-node-w3rsu9qc065n .eb-seg__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.fl-node-w3rsu9qc065n .eb-seg__head {
  font-family: var(--hcpr-serif);
  font-size: 1.12rem;
  line-height: 1.28;
  color: var(--hcpr-plum);
  font-weight: 700;
  margin: 0 0 7px;
}
.fl-node-w3rsu9qc065n .eb-seg__text {
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-w3rsu9qc065n .eb-seg__text p {
  margin: 0 0 0.55em;
}
.fl-node-w3rsu9qc065n .eb-seg__text p:last-child {
  margin-bottom: 0;
}
.fl-node-w3rsu9qc065n .eb-seg__text ul {
  list-style: none;
  margin: 0.55em 0 0;
  padding: 0;
}
.fl-node-w3rsu9qc065n .eb-seg__text li {
  position: relative;
  padding-left: 26px;
  margin: 0 0 0.35em;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--hcpr-muted);
}
.fl-node-w3rsu9qc065n .eb-seg__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 15px;
  height: 15px;
  background-color: var(--hcpr-copper);
  -webkit-mask: var(--eb-check) center / contain no-repeat;
  mask: var(--eb-check) center / contain no-repeat;
}
.fl-node-w3rsu9qc065n .eb-seg__img {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: var(--hcpr-radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--hcpr-shadow-soft);
}
.fl-node-w3rsu9qc065n .eb-seg__icon:empty::before {
  content: "1";
  font-family: var(--hcpr-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hcpr-plum-dark);
}
@charset "UTF-8";
.fl-node-z7yjoe8u6wt5 {
  /* -- eligibility-prompt v4 -- */
  /* Tab row */
  /* Active tab */
  /* Panels wrapper — CSS grid overlap for equal-height, zero layout shift */
  /* Content panels — overlap via grid placement, visibility toggle */
  /* Panel image slot — cover fill, no stretch, no empty areas */
  /* Large icon */
  /* Panel content area */
  /* Panel heading + coverage badge */
  /* Coverage badge */
  /* Description text */
  /* Stat highlights */
  /* Rebate items list */
  /* Dollar amount emphasis */
  /* Panel footer link */
  /* Mobile: 375px */
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl {
  --plum: var(--hcpr-plum);
  --plum-dark: var(--hcpr-plum-dark);
  --plum-deep: var(--hcpr-plum-deep);
  --plum-tint: var(--hcpr-plum-tint);
  --copper: var(--hcpr-copper);
  --copper-soft: var(--hcpr-copper-soft);
  --hcpr-copper-tint: hsla(28, 85%, 52%, .1);
  --white: var(--hcpr-white);
  --muted: var(--hcpr-muted);
  --line: hsla(268, 25%, 24%, 0.12);
  --line-strong: hsla(268, 25%, 24%, 0.18);
  --shadow: 0 12px 32px rgba(33,20,42,0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1100px;
  --gap: clamp(4.5rem,7vw,6rem);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  font-family: var(--sans);
  color: var(--plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl *, .fl-node-z7yjoe8u6wt5 .hcp-tpl *::before, .fl-node-z7yjoe8u6wt5 .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl a {
  color: inherit;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl h1, .fl-node-z7yjoe8u6wt5 .hcp-tpl h2, .fl-node-z7yjoe8u6wt5 .hcp-tpl h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-dark);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .section-head {
  margin-bottom: 36px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: var(--copper);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(39, 22, 50, 0.12);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--plum);
  border: 1px solid var(--line-strong);
  background: transparent;
  transition: border-color 0.15s, transform 0.15s;
  min-height: 44px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl .btn-ghost:hover {
  border-color: var(--copper);
  transform: translateY(-1px);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt {
  background: var(--hcpr-white);
  padding: var(--gap) 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  background: rgba(69, 43, 100, 0.06);
  color: var(--plum-dark);
  min-height: 44px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  flex-shrink: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab:hover {
  background: rgba(69, 43, 100, 0.1);
  transform: translateY(-1px);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab[aria-selected="true"], .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab--active {
  background: var(--plum);
  color: #fff;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panels-wrap {
  display: grid;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  gap: 32px;
  background: var(--hcpr-white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(33, 20, 42, 0.06);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}
@media (min-width: 768px) {
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel--active, .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel--default {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel:target ~ .ep-panel--default {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-img {
  width: 100%;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  stroke-width: 1.75;
  fill: none;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-head h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--plum-dark);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--hcpr-copper-tint);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: #c66510;
  line-height: 1.3;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-badge svg {
  width: 16px;
  height: 16px;
  stroke: #c66510;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-desc {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-stat {
  padding: 14px 12px;
  background: var(--hcpr-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-stat-val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--plum);
  display: block;
  line-height: 1.2;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-stat-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-items li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--plum-dark);
  padding: 7px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-items li:last-child {
  border-bottom: none;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-items li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 7px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-items .ep-amount {
  font-weight: 700;
  color: var(--plum);
  white-space: nowrap;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-link {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-link:hover {
  text-decoration: underline;
}
.fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-link::after {
  content: "→";
}
@media (max-width: 375px) {
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tabs {
    gap: 6px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab {
    padding: 10px 14px;
    font-size: 14px;
    gap: 6px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-tab svg {
    width: 16px;
    height: 16px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel {
    padding: 24px 18px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .ep-panel-icon svg {
    width: 24px;
    height: 24px;
  }
  .fl-node-z7yjoe8u6wt5 .hcp-tpl.eligibility-prompt .wrap {
    padding: 0 16px;
  }
}
@charset "UTF-8";
.fl-node-pbti5kjgohl9 {
  /* ── Row base: centered flex ── */
  /* ── Top row: 7 items (6 rectangular + 1 square NAHB) — 130px wide, 95px tall ── */
  /* ── NAHB square cell: same height, narrower width to honor square proportions ── */
  /* ── Bottom row: 3 wide/flat logos — larger boxes to fill the row ── */
  /* ── Mobile (≤479px): 3-per-line top, 2-per-line bottom ── */
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
  background: var(--hcpr-white);
  padding: 40px 0;
  border-top: 1px solid var(--hcpr-line);
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip *, .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip *::before, .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip img {
  max-width: 100%;
  display: block;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip a {
  color: inherit;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo {
  width: 130px;
  height: 95px;
  border-radius: var(--hcpr-radius-sm);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo img {
  max-height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo--square {
  width: 95px;
  height: 95px;
  padding: 6px;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo--square img {
  max-height: 82px;
  max-width: 82px;
  width: auto;
  object-fit: contain;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide {
  width: 280px;
  height: 110px;
  border-radius: var(--hcpr-radius-sm);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  flex-shrink: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide img {
  max-height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-license {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--hcpr-line);
  font-family: var(--hcpr-sans);
  font-size: 13px;
  color: var(--hcpr-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-license .license-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  flex-shrink: 0;
}
.fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-disclosure {
  margin-top: 14px;
  font-family: var(--hcpr-sans);
  font-size: 13px;
  color: var(--hcpr-muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 479px) {
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row {
    gap: 6px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo {
    width: 108px;
    height: 76px;
    padding: 6px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo img {
    max-height: 60px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo--square {
    width: 76px;
    height: 76px;
    padding: 5px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--top .cred-logo--square img {
    max-height: 64px;
    max-width: 64px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide {
    width: 170px;
    height: 80px;
    padding: 8px 12px;
  }
  .fl-node-pbti5kjgohl9 .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide img {
    max-height: 64px;
  }
}
@charset "UTF-8";
.fl-node-tl5orhbqmyzi {
  /* ── Row base: centered flex ── */
  /* ── Top row: 7 items (6 rectangular + 1 square NAHB) — 130px wide, 95px tall ── */
  /* ── NAHB square cell: same height, narrower width to honor square proportions ── */
  /* ── Bottom row: 3 wide/flat logos — larger boxes to fill the row ── */
  /* ── Mobile (≤479px): 3-per-line top, 2-per-line bottom ── */
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
  background: var(--hcpr-white);
  padding: 40px 0;
  border-top: 1px solid var(--hcpr-line);
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip *, .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip *::before, .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip img {
  max-width: 100%;
  display: block;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip a {
  color: inherit;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo {
  width: 130px;
  height: 95px;
  border-radius: var(--hcpr-radius-sm);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo img {
  max-height: 78px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo--square {
  width: 95px;
  height: 95px;
  padding: 6px;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo--square img {
  max-height: 82px;
  max-width: 82px;
  width: auto;
  object-fit: contain;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide {
  width: 280px;
  height: 110px;
  border-radius: var(--hcpr-radius-sm);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  flex-shrink: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide img {
  max-height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-license {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--hcpr-line);
  font-family: var(--hcpr-sans);
  font-size: 13px;
  color: var(--hcpr-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-license .license-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  flex-shrink: 0;
}
.fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-disclosure {
  margin-top: 14px;
  font-family: var(--hcpr-sans);
  font-size: 13px;
  color: var(--hcpr-muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 479px) {
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row {
    gap: 6px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo {
    width: 108px;
    height: 76px;
    padding: 6px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo img {
    max-height: 60px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo--square {
    width: 76px;
    height: 76px;
    padding: 5px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--top .cred-logo--square img {
    max-height: 64px;
    max-width: 64px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide {
    width: 170px;
    height: 80px;
    padding: 8px 12px;
  }
  .fl-node-tl5orhbqmyzi .hcp-tpl.credential-strip .cred-row--bottom .cred-logo--wide img {
    max-height: 64px;
  }
}
.fl-node-sp6h5itu0nyc .sps {
  background: var(--hcpr-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.fl-node-sp6h5itu0nyc .sps .sps-wrap {
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.fl-node-sp6h5itu0nyc .sps * {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-sp6h5itu0nyc .sps .sps-head {
  text-align: center;
  margin-bottom: 40px;
}
.fl-node-sp6h5itu0nyc .sps .sps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
}
.fl-node-sp6h5itu0nyc .sps .sps-eyebrow::before, .fl-node-sp6h5itu0nyc .sps .sps-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-sp6h5itu0nyc .sps .sps-head h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__aggregate {
  text-align: center;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--hcpr-white);
  border-radius: var(--hcpr-radius);
  border: 1px solid var(--hcpr-line);
  box-shadow: var(--hcpr-shadow-soft);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__stars-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__rating-value {
  font-family: var(--hcpr-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--hcpr-plum);
  line-height: 1;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__stars {
  font-size: 24px;
  letter-spacing: 2px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-star--full {
  color: #f59f0a;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-star--half {
  color: #f59f0a;
  opacity: 0.7;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-star--empty {
  color: #dbd0bd;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__count {
  font-size: 16px;
  color: var(--hcpr-muted);
  font-weight: 500;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__count a {
  color: var(--hcpr-plum);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(69, 43, 100, 0.2);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__count a:hover {
  border-bottom-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 28px 24px;
  box-shadow: var(--hcpr-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--hcpr-cream);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__author-info {
  flex: 1;
  min-width: 0;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__author {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--hcpr-plum-dark);
  font-family: var(--hcpr-serif);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__date {
  display: block;
  font-size: 14px;
  color: var(--hcpr-muted);
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__card-stars {
  margin-left: auto;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__card-stars .hcpr-star--full {
  color: #f59f0a;
  font-size: 16px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__card-stars .hcpr-star--empty {
  color: #dbd0bd;
  font-size: 16px;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hcpr-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-node-sp6h5itu0nyc .sps .hcpr-reviews__footer {
  display: none;
}
.fl-node-sp6h5itu0nyc .sps .sps-footer {
  text-align: center;
  margin-top: 32px;
}
.fl-node-sp6h5itu0nyc .sps .sps-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--hcpr-radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--hcpr-plum);
  border: 1px solid var(--hcpr-line-strong);
  background: transparent;
  font-family: var(--hcpr-sans);
  transition: border-color 0.15s, color 0.15s;
}
.fl-node-sp6h5itu0nyc .sps .sps-footer a:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
@media (max-width: 900px) {
  .fl-node-sp6h5itu0nyc .sps .hcpr-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fl-node-sp6h5itu0nyc .sps .hcpr-reviews__grid {
    grid-template-columns: 1fr;
  }
  .fl-node-sp6h5itu0nyc .sps .hcpr-reviews__aggregate {
    padding: 20px 16px;
  }
  .fl-node-sp6h5itu0nyc .sps .hcpr-reviews__rating-value {
    font-size: 2.4rem;
  }
  .fl-node-sp6h5itu0nyc .sps .sps-wrap {
    padding: 0 16px;
  }
  .fl-node-sp6h5itu0nyc .sps .sps-head h2 {
    font-size: 1.4rem;
  }
}
.fl-node-m6qfdgsoae3b .promo-overlay {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--hcpr-white);
}
.fl-node-m6qfdgsoae3b .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-m6qfdgsoae3b .promo-card {
  position: relative;
  padding: 32px 36px;
  border-radius: var(--hcpr-radius);
  background: linear-gradient(135deg, #f26c0d, #ea943e);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(200, 100, 30, 0.25), 0 4px 12px rgba(200, 100, 30, 0.1);
}
.fl-node-m6qfdgsoae3b .promo-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 180, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.fl-node-m6qfdgsoae3b .promo-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.fl-node-m6qfdgsoae3b .promo-layout {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.fl-node-m6qfdgsoae3b .promo-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-node-m6qfdgsoae3b .promo-icon svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
}
.fl-node-m6qfdgsoae3b .promo-content {
  flex: 1;
  min-width: 240px;
}
.fl-node-m6qfdgsoae3b .promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--hcpr-radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(39, 22, 50, 0.25);
  margin-bottom: 12px;
}
.fl-node-m6qfdgsoae3b .promo-badge svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.fl-node-m6qfdgsoae3b .promo-headline {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.fl-node-m6qfdgsoae3b .promo-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 8px;
}
.fl-node-m6qfdgsoae3b .promo-expires {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.fl-node-m6qfdgsoae3b .promo-expires-date {
  font-weight: 700;
  color: #fff;
}
.fl-node-m6qfdgsoae3b .promo-action {
  flex-shrink: 0;
}
.fl-node-m6qfdgsoae3b .btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--hcpr-radius-md);
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: var(--hcpr-plum);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 20px rgba(39, 22, 50, 0.3);
  white-space: nowrap;
}
.fl-node-m6qfdgsoae3b .btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(39, 22, 50, 0.4);
}
.fl-node-m6qfdgsoae3b .btn-promo svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.fl-node-m6qfdgsoae3b .promo-terms {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.fl-node-m6qfdgsoae3b .promo-overlay--expired {
  display: none;
}
@media (max-width: 768px) {
  .fl-node-m6qfdgsoae3b .promo-card {
    padding: 24px 20px;
  }
  .fl-node-m6qfdgsoae3b .promo-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .fl-node-m6qfdgsoae3b .promo-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }
  .fl-node-m6qfdgsoae3b .promo-icon svg {
    width: 32px;
    height: 32px;
  }
  .fl-node-m6qfdgsoae3b .promo-action {
    width: 100%;
  }
  .fl-node-m6qfdgsoae3b .btn-promo {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .fl-node-m6qfdgsoae3b .promo-overlay {
    padding: 1.5rem 0;
  }
  .fl-node-m6qfdgsoae3b .promo-card {
    padding: 20px 16px;
  }
  .fl-node-m6qfdgsoae3b .promo-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  .fl-node-m6qfdgsoae3b .promo-icon svg {
    width: 26px;
    height: 26px;
  }
  .fl-node-m6qfdgsoae3b .promo-headline {
    font-size: 1.1rem;
  }
  .fl-node-m6qfdgsoae3b .wrap {
    padding: 0 16px;
  }
}
.fl-node-l8zr2357ykqu .hcp-tpl {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-l8zr2357ykqu .hcp-tpl *, .fl-node-l8zr2357ykqu .hcp-tpl *::before, .fl-node-l8zr2357ykqu .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-l8zr2357ykqu .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-l8zr2357ykqu .hcp-tpl a {
  color: inherit;
}
.fl-node-l8zr2357ykqu .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--hcpr-max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-l8zr2357ykqu .hcp-tpl h1, .fl-node-l8zr2357ykqu .hcp-tpl h2, .fl-node-l8zr2357ykqu .hcp-tpl h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-l8zr2357ykqu .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-l8zr2357ykqu .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-l8zr2357ykqu .hcp-tpl .section-head {
  margin-bottom: 32px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .sec-plain {
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.fl-node-l8zr2357ykqu .hcp-tpl .service-grid {
  display: grid;
  grid-template-columns: var(--hcpr-svc-cols, repeat(auto-fill, minmax(280px, 1fr)));
  gap: 24px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--hcpr-radius);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  text-decoration: none;
  color: var(--hcpr-plum-dark);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 28, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  position: relative;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card:hover {
  transform: scale(1.02);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0 12px 28px rgba(45, 28, 64, 0.12);
  border-color: var(--hcpr-copper);
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-img-wrap {
  position: relative;
  width: 100%;
  height: 192px;
  overflow: hidden;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card:hover .svc-card-img {
  transform: scale(1.1);
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
  pointer-events: none;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hcpr-radius-md);
  background: var(--hcpr-copper);
  box-shadow: 0 4px 12px rgba(45, 28, 64, 0.2);
  z-index: 1;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fce9d9;
  white-space: nowrap;
  color: #974d0c;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--hcpr-radius-pill, 999px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid #f7c9a1;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-body {
  padding: 20px 22px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card-body h4 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-desc {
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-incentive-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: #974d0c;
  background: rgba(237, 126, 29, 0.1);
  padding: 5px 14px;
  border-radius: var(--hcpr-radius-pill, 999px);
  margin-top: 4px;
  width: fit-content;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-incentive-pill svg {
  width: 16px;
  height: 16px;
  stroke: #974d0c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-l8zr2357ykqu .hcp-tpl.service-nav-grid .svc-action {
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: var(--hcpr-plum);
  color: #ffffff !important;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s ease;
}
.fl-node-l8zr2357ykqu .hcp-tpl.service-nav-grid .svc-action:hover {
  background: var(--hcpr-plum-deep);
}
.fl-node-l8zr2357ykqu .hcp-tpl.service-nav-grid .svc-action svg {
  display: none;
}
.fl-node-l8zr2357ykqu .hcp-tpl.service-nav-grid .svc-action::after {
  display: none !important;
}
.fl-node-l8zr2357ykqu .hcp-tpl .svc-card--highlight {
  border: 1px solid var(--hcpr-line);
}
@media (max-width: 768px) {
  .fl-node-l8zr2357ykqu .hcp-tpl .service-grid {
    grid-template-columns: 1fr;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-card:hover {
    transform: none;
  }
}
@media (max-width: 480px) {
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-card-body {
    padding: 16px 16px 8px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-card-body h4 {
    font-size: 16px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-desc {
    font-size: 16px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-incentive-pill {
    font-size: 14px;
    padding: 4px 12px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-action {
    padding: 12px 16px 16px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .svc-card-img-wrap {
    height: 160px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .wrap {
    padding: 0 16px;
  }
  .fl-node-l8zr2357ykqu .hcp-tpl .section-head h2 {
    font-size: 1.4rem;
  }
}
.fl-node-l8zr2357ykqu .hcp-tpl.service-nav-grid .svc-card:nth-child(n+7) {
  display: none !important;
}
@media (min-width: 1100px) {
  .fl-node-l8zr2357ykqu .hcp-tpl .service-grid {
    --hcpr-svc-cols: repeat(3, 1fr);
  }
}
.fl-node-2rxot6cyhgfl .section-head {
  margin-bottom: 32px;
}
.fl-node-2rxot6cyhgfl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-2rxot6cyhgfl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-2rxot6cyhgfl h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-nsej1ku50q6v .fl-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-nsej1ku50q6v .fl-accordion-item {
  border-radius: var(--hcpr-radius) !important;
  border: 1px solid var(--hcpr-line) !important;
  background: var(--hcpr-white);
  overflow: hidden;
  box-shadow: var(--hcpr-shadow);
  transition: border-color 0.2s, box-shadow 0.25s, background-color 0.2s;
}
.fl-node-nsej1ku50q6v .fl-accordion-item:hover {
  background: var(--hcpr-white);
}
.fl-node-nsej1ku50q6v .fl-accordion-item-active {
  border-color: var(--hcpr-line-strong) !important;
  box-shadow: var(--hcpr-shadow-lg);
}
.fl-node-nsej1ku50q6v .fl-accordion-button {
  padding: 20px 24px !important;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hcpr-plum-dark);
}
.fl-node-nsej1ku50q6v .fl-accordion-button-label {
  font-family: var(--hcpr-sans) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: var(--hcpr-plum-dark) !important;
  margin: 0;
}
.fl-node-nsej1ku50q6v .fl-accordion-button-icon {
  color: var(--hcpr-copper) !important;
  background: rgba(237, 126, 29, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.2s;
}
.fl-node-nsej1ku50q6v .fl-accordion-item-active .fl-accordion-button-icon {
  transform: rotate(180deg);
  background: rgba(237, 126, 29, 0.16);
}
.fl-node-nsej1ku50q6v .fl-accordion-content {
  padding: 0 24px 20px !important;
}
.fl-node-nsej1ku50q6v .fl-accordion-content p {
  font-size: 1.05rem;
  color: var(--hcpr-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--hcpr-line);
}
@media (max-width: 480px) {
  .fl-node-nsej1ku50q6v .fl-accordion-button {
    padding: 16px !important;
  }
  .fl-node-nsej1ku50q6v .fl-accordion-button-label {
    font-size: 1rem !important;
  }
  .fl-node-nsej1ku50q6v .fl-accordion-content {
    padding: 0 16px 16px !important;
  }
}
.fl-node-nsej1ku50q6v .fl-accordion-item[hidden] {
  display: none !important;
}
.fl-node-dxr8vq7bi4p0 .faq-sidebar {
  position: sticky;
  top: 24px;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-card {
  border-radius: 24px;
  background: linear-gradient(165deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  color: var(--hcpr-white);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(33, 20, 42, 0.2);
}
.fl-node-dxr8vq7bi4p0 .faq-contact-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-body {
  padding: 28px 24px 32px;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-body h3 {
  font-family: var(--hcpr-serif);
  font-size: 1.3rem;
  color: var(--hcpr-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
  border: none;
  padding: 0;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: var(--hcpr-white);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-link:hover {
  background: rgba(255, 255, 255, 0.18);
}
.fl-node-dxr8vq7bi4p0 .faq-contact-link--primary {
  background: var(--hcpr-copper);
  border-color: var(--hcpr-copper);
}
.fl-node-dxr8vq7bi4p0 .faq-contact-link--primary:hover {
  background: #d96f12;
}
.fl-node-dxr8vq7bi4p0 .faq-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(237, 126, 29, 0.9);
}
.fl-node-dxr8vq7bi4p0 .faq-contact-link--primary .faq-contact-icon {
  background: rgba(255, 255, 255, 0.2);
}
.fl-node-dxr8vq7bi4p0 .faq-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hcpr-white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .fl-node-dxr8vq7bi4p0 .faq-sidebar {
    position: static;
    margin-top: 24px;
  }
  .fl-node-dxr8vq7bi4p0 .faq-contact-card {
    border-radius: 18px;
  }
}
@charset "UTF-8";
.fl-node-5ty4lj63a2w1 {
  /* final-cta-band — module bb_css_code (&-scoped, X10 + X1). HCPR-89.
   Canonical: §6.2 plum-gradient band, centered, white copy, one copper CTA.
   Inline style block, webfont import, and dev-changelog comments removed (fonts load
   site-wide via hcpr_ds_fonts; tokens via hcpr_ds_inline). Brand literals → --hcpr-*. */
  /* Rating strip */
  /* Heading — white on plum */
  /* Subtext */
  /* CTA button row */
  /* Primary CTA — copper, §6.1 radius-md */
  /* Trust chip row — pills (§6.3) */
  /* Responsive */
  /* rating-only shortcode adoption (HCPR-173) — fit + light colors on dark band */
}
.fl-node-5ty4lj63a2w1 .final-cta-band {
  --gap: clamp(4.5rem, 7vw, 6rem);
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.6;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  padding: var(--gap) 0;
  text-align: center;
}
.fl-node-5ty4lj63a2w1 .final-cta-band *, .fl-node-5ty4lj63a2w1 .final-cta-band *::before, .fl-node-5ty4lj63a2w1 .final-cta-band *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .block-label {
  display: none !important;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: var(--hcpr-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .stars {
  color: #ffc94d;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .rating-num {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .rating-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 243, 239, 0.8);
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band h2.cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-content .cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-content h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 12px;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-subtext {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(247, 243, 239, 0.88);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hcpr-copper);
  color: #fff;
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
  border-radius: var(--hcpr-radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.4);
}
.fl-node-5ty4lj63a2w1 .final-cta-band .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 119, 42, 0.5);
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .trust-chip {
  font-size: 13px;
  font-weight: 600;
  color: rgba(247, 243, 239, 0.75);
  padding: 5px 12px 5px 10px;
  border-radius: var(--hcpr-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .trust-chip .glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: 0 0 0 3px rgba(212, 119, 42, 0.2);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fl-node-5ty4lj63a2w1 .final-cta-band {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band h2.cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-content .cta-heading, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .btn-primary {
    width: 100%;
    max-width: 320px;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-trust {
    gap: 6px;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .trust-chip {
    font-size: 12px;
    padding: 4px 10px 4px 8px;
  }
}
@media (max-width: 400px) {
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-content {
    padding: 0 16px;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
    gap: 6px;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .rating-num {
    font-size: 1.125rem;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .rating-text {
    font-size: 0.8125rem;
  }
  .fl-node-5ty4lj63a2w1 .final-cta-band .btn-primary {
    max-width: 100%;
  }
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews--rating-only, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__aggregate, .fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__stars-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__rating-value {
  color: #fff;
  font-size: 1.375rem;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__stars {
  color: #ffc94d;
  font-size: 1.25rem;
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__count {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.fl-node-5ty4lj63a2w1 .final-cta-band .cta-rating .hcpr-reviews__count a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.fl-node-pn3sbzc2wa4v, .fl-node-pn3sbzc2wa4v .fl-heading-text {
  font-family: "Libre Baskerville", Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em;
  color: var(--hcpr-cream) !important;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .fl-node-pn3sbzc2wa4v, .fl-node-pn3sbzc2wa4v .fl-heading-text {
    font-size: clamp(1.75rem, 5vw, 2.6rem) !important;
  }
}
.fl-node-cua2npoti69v .fl-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--plum-dark);
  margin-bottom: 0;
}
.fl-node-t4chvzfqued1 {
  padding: 12px 0 2px !important;
}
.fl-node-t4chvzfqued1 .fl-heading {
  font-family: "Libre Baskerville", Georgia, serif !important;
  font-size: 1.125rem !important;
  color: #261f2e !important;
  font-weight: 700 !important;
  line-height: 1.3;
}
.fl-node-gco52960edj4 {
  /* HCPR-265: default ordinal marker when payload supplies no icon (supersedes HCPR-197 lightbulb default). */
  /* HCPR-265: spacing between stacked segments */
}
.fl-node-gco52960edj4 {
  --eb-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  display: block;
}
.fl-node-gco52960edj4 .eb-seg__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hcpr-radius-sm);
  background: rgba(237, 126, 29, 0.1);
  color: var(--hcpr-plum-dark);
  margin: 0 0 14px;
}
.fl-node-gco52960edj4 .eb-seg__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.fl-node-gco52960edj4 .eb-seg__head {
  font-family: var(--hcpr-serif);
  font-size: 1.12rem;
  line-height: 1.28;
  color: var(--hcpr-plum);
  font-weight: 700;
  margin: 0 0 7px;
}
.fl-node-gco52960edj4 .eb-seg__text {
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-gco52960edj4 .eb-seg__text p {
  margin: 0 0 0.55em;
}
.fl-node-gco52960edj4 .eb-seg__text p:last-child {
  margin-bottom: 0;
}
.fl-node-gco52960edj4 .eb-seg__text ul {
  list-style: none;
  margin: 0.55em 0 0;
  padding: 0;
}
.fl-node-gco52960edj4 .eb-seg__text li {
  position: relative;
  padding-left: 26px;
  margin: 0 0 0.35em;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--hcpr-muted);
}
.fl-node-gco52960edj4 .eb-seg__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 15px;
  height: 15px;
  background-color: var(--hcpr-copper);
  -webkit-mask: var(--eb-check) center / contain no-repeat;
  mask: var(--eb-check) center / contain no-repeat;
}
.fl-node-gco52960edj4 .eb-seg__img {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: var(--hcpr-radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--hcpr-shadow-soft);
}
.fl-node-gco52960edj4 .eb-seg__icon:empty::before {
  content: "2";
  font-family: var(--hcpr-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hcpr-plum-dark);
}
.fl-node-gco52960edj4 {
  margin-top: 32px;
}
.fl-node-95mqn6tdpfrz .faq-show-more {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--hcpr-line-strong);
  border-radius: var(--hcpr-radius-md);
  font-family: var(--hcpr-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--hcpr-plum);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.fl-node-95mqn6tdpfrz .faq-show-more:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
  background: rgba(237, 126, 29, 0.05);
}
.fl-node-95mqn6tdpfrz .faq-show-more:focus-visible {
  outline: 3px solid var(--hcpr-copper);
  outline-offset: 2px;
}
.fl-node-95mqn6tdpfrz .faq-show-more[hidden] {
  display: none !important;
}
.fl-node-a9cd4c6ee38 .sc-dual-stat {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius-md);
  overflow: hidden;
  margin: 12px 0 4px;
}
.fl-node-a9cd4c6ee38 .sc-ds-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
  gap: 3px;
}
.fl-node-a9cd4c6ee38 .sc-ds-divider {
  width: 1px;
  background: var(--hcpr-line);
  flex-shrink: 0;
}
.fl-node-a9cd4c6ee38 .sc-ds-num {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--hcpr-plum-dark);
  line-height: 1;
}
.fl-node-a9cd4c6ee38 .sc-ds-cap {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hcpr-muted);
}
.fl-node-a9cd4c6ee38 .sc-ds-cap sup {
  font-size: 8px;
}
.fl-node-a9cd4c6ee38 .sc-ds-footnote {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 10px;
  color: var(--hcpr-muted);
  margin: 0 !important;
  text-align: center;
  line-height: 1.4;
}
.fl-node-q1h8ckf0bos4, .fl-node-q1h8ckf0bos4 .fl-rich-text {
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  color: rgba(247, 243, 239, 0.88) !important;
  line-height: 1.6;
  max-width: 580px;
  font-family: "Source Sans 3", system-ui, sans-serif !important;
}
.fl-node-q1h8ckf0bos4 p {
  margin-bottom: 0;
  color: inherit !important;
}
@charset "UTF-8";
.fl-node-gf6o23eps41m {
  /* HCPR-212: durable sidecar item cap — keep ~3 regardless of payload count */
}
.fl-node-gf6o23eps41m {
  padding: 4px 0 4px;
}
.fl-node-gf6o23eps41m .fl-list-item {
  padding: 8px 0;
}
.fl-node-gf6o23eps41m .fl-list .fl-list-item + .fl-list-item {
  border-top: 1px solid var(--hcpr-line) !important;
}
.fl-node-gf6o23eps41m .fl-list-item-heading {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.fl-node-gf6o23eps41m .fl-list-item-heading-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
  background: rgba(237, 126, 29, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 28px !important;
  margin-top: 1px;
}
.fl-node-gf6o23eps41m .fl-list-item-icon {
  color: var(--hcpr-copper) !important;
  font-size: 15px !important;
  line-height: 1 !important;
}
.fl-node-gf6o23eps41m .fl-list-item-heading-text {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--hcpr-plum-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-node-gf6o23eps41m .fl-list-item-content-text, .fl-node-gf6o23eps41m .fl-list-item-content-text p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-node-gf6o23eps41m .fl-list .fl-list-item:nth-child(n+4) {
  display: none !important;
}
.fl-node-vpofxgi5thn1 .hcpr-hero-cta {
  display: inline-block;
  width: 100%;
  margin-top: 16px;
  box-sizing: border-box;
  background: var(--hcpr-copper);
  color: #fff;
  border: none;
  border-radius: var(--hcpr-radius-md);
  padding: 16px 24px;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(237, 126, 29, 0.3);
}
.fl-node-vpofxgi5thn1 .hcpr-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(237, 126, 29, 0.4);
  color: #fff;
}
.fl-node-vb69twi5edg0 {
  padding: 12px 0 0 !important;
}
.fl-node-vb69twi5edg0 .fl-button {
  width: 100% !important;
  background: #ed7e1d !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 13px 24px !important;
  font-family: "Source Sans 3", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 8px 18px rgba(237, 126, 29, 0.3) !important;
}
.fl-node-vb69twi5edg0 .fl-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(237, 126, 29, 0.4) !important;
}
.fl-node-syx0ulbpkh3q.brand-showcase {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--hcpr-white);
  border-top: 1px solid var(--hcpr-line);
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-syx0ulbpkh3q .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-syx0ulbpkh3q .brand-header {
  text-align: center;
  margin-bottom: 28px;
}
.fl-node-syx0ulbpkh3q .brand-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.fl-node-syx0ulbpkh3q .brand-title {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--hcpr-plum-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}
.fl-node-syx0ulbpkh3q .brand-subtitle {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.fl-node-syx0ulbpkh3q .brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.fl-node-syx0ulbpkh3q .brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 120px;
  flex-shrink: 0;
}
.fl-node-syx0ulbpkh3q .brand-logo {
  width: 120px;
  height: 60px;
  border-radius: var(--hcpr-radius-sm);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  box-shadow: var(--hcpr-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fl-node-syx0ulbpkh3q .brand-logo:hover {
  border-color: var(--hcpr-copper);
  box-shadow: var(--hcpr-shadow);
  transform: translateY(-2px);
}
.fl-node-syx0ulbpkh3q .brand-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.2s;
}
.fl-node-syx0ulbpkh3q .brand-logo:hover img {
  filter: grayscale(0);
}
.fl-node-syx0ulbpkh3q .brand-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--hcpr-muted);
  line-height: 1.5;
}
.fl-node-syx0ulbpkh3q .brand-footer a {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--hcpr-plum);
  color: var(--hcpr-plum);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--hcpr-radius-md);
  transition: background 0.15s, color 0.15s;
}
.fl-node-syx0ulbpkh3q .brand-footer a:hover {
  background: var(--hcpr-plum);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .fl-node-syx0ulbpkh3q .brand-grid {
    gap: 12px;
  }
  .fl-node-syx0ulbpkh3q .brand-item {
    width: 110px;
  }
  .fl-node-syx0ulbpkh3q .brand-logo {
    width: 110px;
    height: 55px;
    padding: 8px 10px;
  }
}
@media (max-width: 480px) {
  .fl-node-syx0ulbpkh3q .brand-grid {
    gap: 10px;
  }
  .fl-node-syx0ulbpkh3q .brand-item {
    width: calc(25% - 8px);
    min-width: 75px;
  }
  .fl-node-syx0ulbpkh3q .brand-logo {
    width: 100%;
    height: 50px;
    padding: 6px 8px;
  }
  .fl-node-syx0ulbpkh3q .brand-logo img {
    max-height: 38px;
  }
}
@media (max-width: 375px) {
  .fl-node-syx0ulbpkh3q.brand-showcase {
    padding: 2rem 0;
  }
  .fl-node-syx0ulbpkh3q .brand-grid {
    gap: 8px;
  }
  .fl-node-syx0ulbpkh3q .brand-item {
    width: calc(25% - 6px);
  }
  .fl-node-syx0ulbpkh3q .brand-logo {
    height: 46px;
    padding: 6px;
    border-radius: 8px;
  }
  .fl-node-syx0ulbpkh3q .brand-logo img {
    max-height: 34px;
  }
  .fl-node-syx0ulbpkh3q .wrap {
    padding: 0 16px;
  }
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


/* Buttons
------------------------------------------------------ */

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

/* Photos
------------------------------------------------------ */

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		font-family: inherit;
			font-weight: inherit;
	
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
		font-family: inherit;
			font-weight: inherit;
		
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																								
					
					
					
																																																																																																																					