/* ==========================================================================
   Mobile & Manufactured Home HVAC — Campaign Landing Page
   Standalone styles. Loaded only on page-templetes/page-mobile-home-hvac.php.
   All rules scoped under .sa-mhh so nothing leaks site-wide.

   Direction: "Trust & Authority" (specialist). Dark-blue photo-fade hero,
   calm cool surfaces below, brand blue as the foundation, red reserved for
   CTAs, gold used only as a value accent. Tuned for an older, trust-driven
   manufactured-home audience: larger type, generous spacing, high contrast.
   ========================================================================== */

.sa-mhh {
	/* Brand (from new-theme.css) */
	--mhh-blue:        #0051a3;
	--mhh-blue-dark:   #003366;
	--mhh-red:         #ee3a44;
	--mhh-red-hover:   #d63238;

	/* Value accents — used sparingly. Amber for text on the dark hero. */
	--mhh-gold:        #b7791f;
	--mhh-amber:       #ffd35c;

	/* Surfaces & neutrals */
	--mhh-tint:        #f5f8fc;   /* soft blue-tint section background */
	--mhh-tint-2:      #eef4fb;
	--mhh-ink:         #0f2942;
	--mhh-slate:       #48566a;
	--mhh-line:        #dbe4ee;
	--mhh-white:       #ffffff;

	--mhh-radius:      18px;
	--mhh-radius-sm:   12px;
	--mhh-shadow:      0 20px 48px rgba(15, 41, 66, 0.14);
	--mhh-shadow-sm:   0 8px 24px rgba(15, 41, 66, 0.09);
	--mhh-container:   1480px;
	--mhh-ease:        0.22s ease;

	font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--mhh-ink);
	font-size: 17px;            /* larger base for the audience */
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.sa-mhh * { box-sizing: border-box; }

.sa-mhh-container {
	width: 100%;
	max-width: var(--mhh-container) !important;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Shared type ------------------------------------------------------- */
.sa-mhh .sa-mhh-h1 {
	margin: 0;
	font-size: clamp(2.15rem, 4.6vw, 3.35rem);
	line-height: 1.07;
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--mhh-blue-dark);
}
.sa-mhh .sa-mhh-h2 {
	margin: 0;
	font-size: clamp(1.6rem, 3.2vw, 2.35rem);
	line-height: 1.14;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--mhh-blue-dark);
}
.sa-mhh-lead {
	margin: 18px 0 0;
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
	line-height: 1.6;
	color: var(--mhh-slate);
	max-width: 46ch;
}

/* ---- Eyebrow / pill label --------------------------------------------- */
.sa-mhh-eyebrow {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 9px;
	padding: 8px 16px;
	border-radius: 9999px;
	background: var(--mhh-blue);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.sa-mhh-eyebrow i { font-size: 0.95em; }
.sa-mhh-eyebrow--center { align-self: center; margin-top: 30px; }
/* Hero variant — legible on the dark-blue background */
.sa-mhh-eyebrow--hero {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}
.sa-mhh-eyebrow--hero i { color: #8ec5ff; }

.sa-mhh-section-head {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}
.sa-mhh-section-head .sa-mhh-eyebrow { margin-bottom: 16px; }
.sa-mhh-section-head p {
	margin: 14px 0 0;
	font-size: 1.12rem;
	line-height: 1.6;
	color: var(--mhh-slate);
}

/* ---- Buttons ----------------------------------------------------------- */
.sa-mhh .sa-mhh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;                 /* comfortable tap target */
	padding: 14px 28px;
	border-radius: 9999px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform var(--mhh-ease), background-color var(--mhh-ease), color var(--mhh-ease), box-shadow var(--mhh-ease);
}
.sa-mhh .sa-mhh-btn--call {
	background: var(--mhh-red);
	color: #fff;
	box-shadow: 0 8px 20px rgba(238, 58, 68, 0.30);
}
.sa-mhh .sa-mhh-btn--call:hover {
	background: var(--mhh-red-hover);
	transform: translateY(-2px);
}
.sa-mhh .sa-mhh-btn--ghost {
	background: #fff;
	color: var(--mhh-blue-dark);
	border-color: var(--mhh-blue);
}
.sa-mhh .sa-mhh-btn--ghost:hover {
	background: var(--mhh-blue);
	color: #fff;
	transform: translateY(-2px);
}
/* Ghost on the dark hero — white outline that fills on hover */
.sa-mhh .sa-mhh-btn--ghost-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}
.sa-mhh .sa-mhh-btn--ghost-light:hover {
	background: #fff;
	color: var(--mhh-blue-dark);
	border-color: #fff;
	transform: translateY(-2px);
}
.sa-mhh .sa-mhh-btn--block { width: 100%; }

/* Keyboard focus — never removed, always visible */
.sa-mhh a:focus-visible,
.sa-mhh .sa-mhh-btn:focus-visible {
	outline: 3px solid #8ec5ff;
	outline-offset: 3px;
}

/* ==========================================================================
   HERO — dark blue, photo bleeds in from the right and fades left
   ========================================================================== */
.sa-mhh-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: clamp(480px, 60vh, 620px);
	padding: clamp(48px, 7vw, 84px) 0;
	background: var(--mhh-blue-dark);
	color: #fff;
}
.sa-mhh-hero .sa-mhh-container {
	position: relative;
	z-index: 2;
	width: 100%;
}
.sa-mhh-hero-copy { max-width: 700px; }
.sa-mhh-hero-copy .sa-mhh-eyebrow { margin-top: 30px; margin-bottom: 22px; }

.sa-mhh .sa-mhh-hero .sa-mhh-h1 { color: #fff !important; }
.sa-mhh-hero .sa-mhh-lead {
	color: rgba(255, 255, 255, 0.9);
	max-width: 42ch;
}

/* Photo layer — pinned to the right, full height, faded into the blue */
.sa-mhh-hero-photo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 56%;
	z-index: 1;
}
.sa-mhh-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right top;   /* anchor top so the roofline/sky always show */
}
.sa-mhh-hero-photo picture { display: contents; }
.sa-mhh-hero-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--mhh-blue-dark) 0%,
		var(--mhh-blue-dark) 32%,
		rgba(0, 51, 102, 0.55) 56%,
		rgba(0, 51, 102, 0) 82%
	);
}
/* Larger screens (1400px+): let the blue recede sooner so more of the photo shows */
@media (min-width: 1400px) {
	.sa-mhh-hero-photo::before {
		background: linear-gradient(
			to right,
			var(--mhh-blue-dark) 0%,
			var(--mhh-blue-dark) 20%,
			rgba(0, 51, 102, 0.5) 42%,
			rgba(0, 51, 102, 0) 62%
		);
	}
}

/* Offer highlight chip (replaces the removed stat microline) */
.sa-mhh-hero-offer {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 26px 0 0;
	padding: 13px 20px;
	border-radius: var(--mhh-radius-sm);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.20);
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.35;
}
.sa-mhh-hero-offer i { flex: none; color: var(--mhh-amber); font-size: 1.2em; }
.sa-mhh-hero-offer strong { color: var(--mhh-amber); font-weight: 800; }

.sa-mhh-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* Gentle one-time entrance (reduced-motion safe, no JS/scroll library) */
@keyframes mhhFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}
.sa-mhh-hero-copy > * { animation: mhhFadeUp 0.5s ease both; }
.sa-mhh-hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.sa-mhh-hero-copy > *:nth-child(2) { animation-delay: 0.10s; }
.sa-mhh-hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.sa-mhh-hero-copy > *:nth-child(4) { animation-delay: 0.22s; }
.sa-mhh-hero-copy > *:nth-child(5) { animation-delay: 0.28s; }

/* ==========================================================================
   SECONDARY OFFER BANNER — AC add-on. Deliberately lighter than the flagship
   $3,500 offer card so it reads as a secondary ad, not a competing headline.
   ========================================================================== */
.sa-mhh-banner {
	background: var(--mhh-white);
	/* !important: the theme forces asymmetric section padding (0 top / 72px
	   bottom); override so the banner sits centered in its band. */
	padding: clamp(32px, 4vw, 48px) 0 !important;
}
.sa-mhh-banner-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(18px, 2.5vw, 34px);
	padding: clamp(22px, 3vw, 30px) clamp(24px, 3vw, 36px);
	border-radius: var(--mhh-radius);
	background: #002d5a;              /* same base as the footer CTA box */
	color: #fff;
	box-shadow: var(--mhh-shadow);
}
/* Angular texture mirrored from the site-wide .cta-section treatment.
   Absolutely positioned so they are NOT grid items and don't affect layout. */
.sa-mhh-banner-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.08) 60px, rgba(255, 255, 255, 0.08) 62px),
		repeating-linear-gradient(45deg, transparent, transparent 90px, rgba(255, 255, 255, 0.06) 90px, rgba(255, 255, 255, 0.06) 92px),
		linear-gradient(135deg, rgba(0, 100, 180, 0.4) 0%, transparent 45%),
		linear-gradient(-135deg, rgba(0, 80, 150, 0.35) 0%, transparent 40%),
		linear-gradient(45deg, rgba(0, 90, 160, 0.3) 0%, transparent 35%);
}
.sa-mhh-banner-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		repeating-linear-gradient(-60deg, transparent, transparent 100px, rgba(255, 255, 255, 0.04) 100px, rgba(255, 255, 255, 0.04) 103px),
		repeating-linear-gradient(60deg, transparent, transparent 100px, rgba(255, 255, 255, 0.04) 100px, rgba(255, 255, 255, 0.04) 103px);
}
/* Keep real content above the texture layers */
.sa-mhh-banner-media,
.sa-mhh-banner-body,
.sa-mhh-banner-cta { position: relative; z-index: 2; }

/* Product shot spans the full height of the card (negative margins cancel the
   card's vertical padding so it runs edge to edge). */
.sa-mhh-banner-media {
	align-self: stretch;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(-1 * clamp(22px, 3vw, 30px));
	margin-bottom: calc(-1 * clamp(22px, 3vw, 30px));
}
.sa-mhh-banner-media img {
	display: block;
	height: 100%;
	width: auto;
	max-height: 220px;
	object-fit: contain;
}

.sa-mhh-banner-body { min-width: 0; }
.sa-mhh-banner-tag {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mhh-amber);
}
.sa-mhh .sa-mhh-banner-title {
	margin: 0;
	font-size: clamp(1.3rem, 2.2vw, 1.75rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff !important;
}
.sa-mhh-banner-text {
	margin: 8px 0 0;
	max-width: 72ch;
	font-size: 1.02rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}
.sa-mhh-banner-text strong { color: var(--mhh-amber); font-weight: 800; }
.sa-mhh-banner-note {
	margin: 6px 0 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
	.sa-mhh-banner-card { grid-template-columns: 1fr; text-align: center; }
	.sa-mhh-banner-media {
		margin-top: 0;
		margin-bottom: 6px;
	}
	.sa-mhh-banner-media img { max-height: 150px; }
	.sa-mhh-banner-text,
	.sa-mhh-banner-note { margin-left: auto; margin-right: auto; }
	.sa-mhh-banner-cta { width: 100%; }
	.sa-mhh-banner-cta .sa-mhh-btn { width: 100%; }
}

/* ==========================================================================
   TRUST RIBBON — light credential strip under the dark hero
   ========================================================================== */
.sa-mhh-trust {
	background: var(--mhh-tint);
	/* !important: the theme forces section padding (0 top / 72px bottom) via a
	   higher-priority rule, which shoved the ribbon to the top of the grey band.
	   Override it so the boxes sit centered (equal space top and bottom). */
	padding: clamp(34px, 4vw, 48px) 0 !important;
}
.sa-mhh-trust-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.sa-mhh-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 16px;
	background: var(--mhh-white);
	border: 1px solid var(--mhh-line);
	border-radius: var(--mhh-radius-sm);
	box-shadow: var(--mhh-shadow-sm);
	font-weight: 700;
	font-size: 1rem;
	color: var(--mhh-ink);
	text-align: center;
}
.sa-mhh-trust-item i { flex: none; color: var(--mhh-blue); font-size: 1.3em; }
.sa-mhh-trust-item .sa-mhh-stars { color: #f5a623; }

/* ==========================================================================
   WHY A MOBILE HOME IS DIFFERENT  (the specialist proof — core of the page)
   ========================================================================== */
.sa-mhh-why {
	background: var(--mhh-white);
	padding: clamp(56px, 8vw, 92px) 0;
}
.sa-mhh-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.sa-mhh-card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"icon title"
		"desc desc";
	column-gap: 16px;
	row-gap: 14px;
	align-items: center;
	background: var(--mhh-white);
	border: 1px solid var(--mhh-line);
	border-radius: var(--mhh-radius);
	box-shadow: var(--mhh-shadow-sm);
	padding: 32px 26px;
	transition: transform var(--mhh-ease), box-shadow var(--mhh-ease);
}
.sa-mhh-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mhh-shadow);
}
.sa-mhh-card-icon {
	grid-area: icon;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 0;
	border-radius: 14px;
	background: var(--mhh-tint-2);
	color: var(--mhh-blue);
	font-size: 1.5rem;
}
.sa-mhh .sa-mhh-card h3 {
	grid-area: title;
	margin: 0;
	font-size: 1.24rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--mhh-blue-dark);
}
.sa-mhh-card p {
	grid-area: desc;
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.55;
	color: var(--mhh-slate);
}

/* ==========================================================================
   FLAGSHIP OFFER
   ========================================================================== */
.sa-mhh-offer {
	background: var(--mhh-tint);
	padding: clamp(56px, 8vw, 92px) 0;
}
.sa-mhh-offer-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(22px, 3vw, 40px);
	padding: clamp(28px, 4vw, 44px);
	border-radius: var(--mhh-radius);
	background: linear-gradient(135deg, var(--mhh-blue) 0%, var(--mhh-blue-dark) 100%);
	box-shadow: var(--mhh-shadow);
	color: #fff;
}
.sa-mhh-offer-icon {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 2rem;
}
.sa-mhh-offer-body { min-width: 0; }
.sa-mhh-offer-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mhh-amber);
}
.sa-mhh .sa-mhh-offer-title {
	margin: 0;
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
	font-weight: 800;
	line-height: 1.12;
	color: #fff !important;
}
.sa-mhh-offer-text {
	margin: 10px 0 0;
	max-width: 60ch;
	font-size: 1.08rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
}
.sa-mhh-offer-cta { flex: none; }
.sa-mhh-offer-cta .sa-mhh-btn--call {
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.sa-mhh-disclaimer {
	max-width: 900px;
	margin: 32px auto 0;
	text-align: center;
	font-size: 0.85rem;
	line-height: 1.5;
	color: #7c8798;
}

/* ==========================================================================
   REPAIR vs REPLACE  ("system getting older? let's talk options")
   ========================================================================== */
.sa-mhh-options {
	background: var(--mhh-white);
	padding: clamp(56px, 8vw, 92px) 0;
}
.sa-mhh-options-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}
.sa-mhh-lane {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--mhh-line);
	border-radius: var(--mhh-radius);
	padding: 34px 30px;
	background: var(--mhh-white);
	box-shadow: var(--mhh-shadow-sm);
}
.sa-mhh-lane--replace {
	border-color: var(--mhh-blue);
	background: var(--mhh-tint);
}
.sa-mhh-lane-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 9999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.sa-mhh-lane--repair .sa-mhh-lane-tag { background: var(--mhh-tint-2); color: var(--mhh-blue); }
.sa-mhh-lane--replace .sa-mhh-lane-tag { background: var(--mhh-blue); color: #fff; }
.sa-mhh .sa-mhh-lane h3 {
	margin: 0 0 10px;
	font-size: 1.42rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--mhh-blue-dark);
}
.sa-mhh-lane p {
	margin: 0 0 20px;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--mhh-slate);
}
.sa-mhh-lane .sa-mhh-btn { margin-top: auto; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.sa-mhh-steps {
	background: var(--mhh-tint);
	padding: clamp(56px, 8vw, 92px) 0;
}
.sa-mhh-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	counter-reset: mhh-step;
}
.sa-mhh-step {
	position: relative;
	background: var(--mhh-white);
	border: 1px solid var(--mhh-line);
	border-radius: var(--mhh-radius);
	padding: 34px 28px 30px;
	box-shadow: var(--mhh-shadow-sm);
}
.sa-mhh-step-num {
	counter-increment: mhh-step;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--mhh-blue);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
}
.sa-mhh-step-num::before { content: counter(mhh-step); }
.sa-mhh .sa-mhh-step h3 {
	margin: 0 0 6px;
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--mhh-blue-dark);
}
.sa-mhh-step p {
	margin: 0;
	font-size: 1.01rem;
	line-height: 1.55;
	color: var(--mhh-slate);
}

/* ==========================================================================
   FINAL CTA
   Uses the site-wide .cta-section component (styled in new-theme.css) so it
   matches every other page template exactly. No local styles needed.
   ========================================================================== */

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
	/* Hero stacks: photo becomes a top banner fading down into the blue */
	.sa-mhh-hero {
		display: block;
		min-height: 0;
		padding: 0 0 clamp(40px, 7vw, 56px);
	}
	.sa-mhh-hero-photo {
		position: relative;
		width: 100%;
		height: clamp(200px, 44vw, 300px);
	}
	.sa-mhh-hero-photo::before {
		background: linear-gradient(to bottom, rgba(0, 51, 102, 0) 30%, var(--mhh-blue-dark) 94%);
	}
	.sa-mhh-hero-photo img { object-position: center top; }
	.sa-mhh-hero .sa-mhh-container { padding-top: clamp(24px, 5vw, 34px); }
	.sa-mhh-hero-copy { max-width: none; }

	.sa-mhh-why-grid    { grid-template-columns: repeat(2, 1fr); }
	.sa-mhh-trust-grid  { grid-template-columns: repeat(2, 1fr); }
	.sa-mhh-steps-grid  { grid-template-columns: 1fr; }
	.sa-mhh-offer-card  { grid-template-columns: 1fr; text-align: center; }
	.sa-mhh-offer-icon  { margin: 0 auto; }
	.sa-mhh-offer-text  { margin-left: auto; margin-right: auto; }
	.sa-mhh-offer-cta   { width: 100%; }
	.sa-mhh-offer-cta .sa-mhh-btn { width: 100%; }
	.sa-mhh-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.sa-mhh-container   { padding: 0 18px; }
	.sa-mhh-why-grid    { grid-template-columns: 1fr; }
	.sa-mhh-trust-grid  { grid-template-columns: 1fr; }
	.sa-mhh-hero-offer  { width: 100%; }
	.sa-mhh-hero-cta    { flex-direction: column; width: 100%; }
	.sa-mhh-hero-cta .sa-mhh-btn { width: 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.sa-mhh * { transition: none !important; }
	.sa-mhh-hero-copy > * { animation: none !important; }
	.sa-mhh-card:hover,
	.sa-mhh .sa-mhh-btn:hover { transform: none; }
}
