/* HVACB — working-together section.

   Block-safe rewrite. Native core blocks, so decorative empty elements are now
   pseudo-elements and the per-panel colour tokens come from modifier classes
   instead of inline style attributes.

     .wt__bg          ->  .wt:before
     .wt__mesh        ->  .wt:after
     .wt__eyebrow i   ->  .wt__eyebrow:before
     .wt__panel-top   ->  .wt__panel:before
     .wt__panel-icon  ->  .wt__panel:after
     style="--pt;--pc" ->  .wt__panel--start / .wt__panel--own
     .wt__h2 em       ->  .wt__h2 em  (unchanged; <em> survives in RichText)
*/

/* Neutralise theme + block-layout margins inside the section. */
.wt p,
.wt h2 { margin: 0; }
.wt > *,
.wt .wp-block-group > * { margin-block-start: 0; margin-block-end: 0; }

.wt {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 7vw, 6rem) clamp(18px, 4vw, 48px);
}

.wt * { box-sizing: border-box; }

/* Was .wt__bg. */
.wt:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 70% 60% at 0% 0%, rgba(138, 92, 196, .28), transparent 55%),
		radial-gradient(ellipse 60% 50% at 100% 100%, rgba(217, 106, 43, .22), transparent 55%),
		radial-gradient(ellipse 80% 80% at 50% 50%, rgba(241, 236, 251, .9), transparent 100%),
		#FBFAFE;
}

/* Was .wt__mesh. */
.wt:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(75, 59, 143, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(75, 59, 143, .04) 1px, transparent 1px);
	background-size: 76px 76px;
}

.wt .wt__in {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
}

.wt .wt__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
	padding: 9px 20px;
	border-radius: 999px;
	background: linear-gradient(105deg, #3A2C7A 0%, #6B4FB8 42%, #D96A2B 100%);
	box-shadow: 0 14px 30px -10px rgba(75, 59, 143, .5);
}

.wt .wt__eyebrow:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	flex: none;
	animation: wtPing 2.4s ease-out infinite;
}

@keyframes wtPing {
	0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, .7); }
	70%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.wt .wt__h2 {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 800;
	letter-spacing: -.048em;
	line-height: .97;
	margin: 0 0 clamp(2.5rem, 4vw, 4rem);
	color: #14121F;
}

.wt .wt__h2 em {
	font-style: normal;
	background: linear-gradient(104deg, #4B3B8F 0%, #8A5CC4 50%, #D96A2B 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.wt .wt__panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.wt .wt__panel {
	position: relative;
	border-radius: 24px;
	padding: clamp(28px, 3vw, 42px);
	/* Top bar is a pseudo-element inside the padding box, so pad it clear. */
	padding-top: calc(clamp(28px, 3vw, 42px) + 5px);
	overflow: hidden;
	border: 1.5px solid rgba(255, 255, 255, .85);
	background: rgba(255, 255, 255, .72);
	box-shadow: 0 20px 60px -20px rgba(75, 59, 143, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s;
}

.wt .wt__panel:hover {
	transform: translateY(-5px);
	box-shadow: 0 32px 72px -20px rgba(75, 59, 143, .26);
}

/* Was .wt__panel-top. */
.wt .wt__panel:before {
	content: "";
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 24px 24px 0 0;
	background: var(--pt);
}

/* Per-panel tokens, were inline style attributes. */
.wt .wt__panel--start {
	--pt: linear-gradient(90deg, #4B3B8F, #8A5CC4);
	--pc: #4B3B8F;
	--pi: linear-gradient(135deg, #4B3B8F, #8A5CC4);
	--ps: rgba(75, 59, 143, .45);
}

.wt .wt__panel--own {
	--pt: linear-gradient(90deg, #D96A2B, #EDB088);
	--pc: #A8481A;
	--pi: linear-gradient(135deg, #D96A2B, #EDB088);
	--ps: rgba(217, 106, 43, .45);
}

.wt .wt__panel-num {
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--pc);
	margin: 0 0 clamp(14px, 1.8vw, 20px);
	opacity: .6;
}

/* Was div.wt__panel-icon — an empty tinted tile. */
.wt .wt__panel-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--pi);
	margin: 0 0 clamp(16px, 2vw, 22px);
	box-shadow: 0 10px 22px -8px var(--ps);
}

.wt .wt__panel-title {
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.04;
	color: #14121F;
	margin: 0 0 clamp(14px, 1.8vw, 22px);
}

.wt .wt__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 clamp(18px, 2.2vw, 26px);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wt .wt__bullet {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: clamp(14px, 1.35vw, 16px);
	line-height: 1.55;
	color: #2E2B3D;
	font-weight: 600;
}

.wt .wt__bullet:before {
	content: "";
	flex: none;
	margin-top: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pc);
}

.wt .wt__panel-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wt .wt__pill {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 6px 13px;
	border-radius: 999px;
	border: 1.5px solid;
	white-space: nowrap;
}

.wt .wt__pill--p { color: #4B3B8F; border-color: rgba(75, 59, 143, .3);  background: rgba(75, 59, 143, .08); }
.wt .wt__pill--o { color: #A8481A; border-color: rgba(217, 106, 43, .35); background: rgba(217, 106, 43, .1); }
.wt .wt__pill--g { color: #2C8F63; border-color: rgba(62, 190, 134, .35); background: rgba(62, 190, 134, .1); }
.wt .wt__pill--n { color: #14121F; border-color: rgba(20, 18, 31, .18);   background: rgba(20, 18, 31, .05); }

.wt .wt__strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(16px, 3vw, 40px);
	flex-wrap: wrap;
	padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.5vw, 32px);
	border-radius: 18px;
	background: rgba(255, 255, 255, .7);
	border: 1.5px solid rgba(255, 255, 255, .9);
	box-shadow: 0 8px 24px -12px rgba(75, 59, 143, .15);
}

.wt .wt__strip-text {
	font-size: clamp(14px, 1.4vw, 18px);
	font-weight: 700;
	color: #2E2B3D;
	margin: 0;
	letter-spacing: -.015em;
}

.wt .wt__strip-text strong { color: #14121F; }

/* core/button renders an <a>, so the pill styling goes on the link. */
.wt .wt__strip-cta { flex: none; }

.wt .wt__strip-cta .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: linear-gradient(105deg, #4B3B8F, #D96A2B);
	color: #FFFFFF;
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: -.01em;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 14px 28px -10px rgba(75, 59, 143, .5);
	transition: box-shadow .3s, transform .3s;
	min-height: 0;
}

.wt .wt__strip-cta .wp-block-button__link:hover {
	background: linear-gradient(105deg, #4B3B8F, #D96A2B);
	box-shadow: 0 20px 38px -10px rgba(75, 59, 143, .7);
	transform: translateY(-2px);
}

@media (max-width: 760px) {
	.wt .wt__panels { grid-template-columns: minmax(0, 1fr); }
	.wt .wt__strip { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	.wt .wt__panel { transition: none; }
	.wt .wt__eyebrow:before { animation: none; }
}

/* ==========================================================
   HVACB working-together v11 — items 9–11.
   ========================================================== */

/* Item 9 — give the tinted icon tiles their icons: search (How we start),
   shield (What you own). White glyph on the brand gradient = strong contrast. */
.wt .wt__panel-icon{display:flex;align-items:center;justify-content:center}
.wt .wt__panel-icon:before{
	content:"";width:26px;height:26px;background:#fff;
	-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
	-webkit-mask-position:center;mask-position:center;
	-webkit-mask-size:contain;mask-size:contain;
}
.wt .wt__panel--start .wt__panel-icon:before{-webkit-mask-image:var(--hvb-ico-search);mask-image:var(--hvb-ico-search)}
.wt .wt__panel--own .wt__panel-icon:before{-webkit-mask-image:var(--hvb-ico-shield);mask-image:var(--hvb-ico-shield)}

/* Item 10 — both panels are equal height (grid); make each a flex column and
   push the pill group to the bottom so the two pill rows align. The panels
   themselves are untouched. */
.wt .wt__panel{display:flex;flex-direction:column}
.wt .wt__panel-pills{margin-top:auto;padding-top:clamp(14px,1.8vw,20px)}

/* Item 11 — same phone icon as the hero on the Chat with Us button. */
.wt .wt__strip-cta .wp-block-button__link:before{
	content:"";width:15px;height:15px;flex:none;background:currentColor;
	-webkit-mask:var(--hvb-ico-phone) center/contain no-repeat;
	mask:var(--hvb-ico-phone) center/contain no-repeat;
}
