:root {
	--ms-ink: #0e3441;
	--ms-ink-2: #173f4d;
	--ms-cyan: #00b4d8;
	--ms-cyan-dark: #008fb0;
	--ms-cyan-soft: #e9f9fc;
	--ms-line: #d9e6eb;
	--ms-soft: #f5f9fb;
	--ms-white: #fff;
	--ms-muted: #5e7280;
	--ms-radius: 8px;
	--ms-wrap: 1160px;
	--ms-font-heading: "Bowlby One SC", "Oswald", Impact, sans-serif;
	--ms-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	background: var(--ms-white);
	scroll-behavior: smooth;
}

body {
	background: var(--ms-white);
	color: var(--ms-ink);
	font-family: var(--ms-font-body);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow-x: hidden;
}

a {
	color: var(--ms-cyan-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

img {
	height: auto;
	max-width: 100%;
}

.microsmith-icon {
	--ms-icon-accent: var(--ms-cyan);
	color: currentColor;
	overflow: visible;
}

.microsmith-icon .accent {
	stroke: var(--ms-icon-accent);
}

a:hover .microsmith-icon .accent,
button:hover .microsmith-icon .accent,
.ms-button:hover .microsmith-icon .accent {
	stroke: currentColor;
}

a:hover .microsmith-icon,
button:hover .microsmith-icon,
.ms-button:hover .microsmith-icon {
	--ms-icon-accent: currentColor;
}

.microsmith-icon .spin,
.microsmith-icon .needle,
.microsmith-icon .tick,
.microsmith-icon .pulse {
	transform-box: fill-box;
	transform-origin: center;
}

a:hover .microsmith-icon--animated .spin,
button:hover .microsmith-icon--animated .spin,
.ms-button:hover .microsmith-icon--animated .spin {
	animation: microsmith-icon-spin .8s linear infinite;
}

a:hover .microsmith-icon--animated .needle,
button:hover .microsmith-icon--animated .needle,
.ms-button:hover .microsmith-icon--animated .needle {
	animation: microsmith-icon-needle .9s ease-in-out infinite alternate;
}

a:hover .microsmith-icon--animated .tick,
button:hover .microsmith-icon--animated .tick,
.ms-button:hover .microsmith-icon--animated .tick {
	animation: microsmith-icon-tick .8s ease-in-out infinite alternate;
}

a:hover .microsmith-icon--animated .pulse,
button:hover .microsmith-icon--animated .pulse,
.ms-button:hover .microsmith-icon--animated .pulse {
	animation: microsmith-icon-pulse .9s ease-in-out infinite alternate;
}

@keyframes microsmith-icon-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes microsmith-icon-needle {
	from {
		transform: rotate(-22deg);
	}

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

@keyframes microsmith-icon-tick {
	from {
		stroke-dasharray: 12;
		stroke-dashoffset: 12;
	}

	to {
		stroke-dasharray: 12;
		stroke-dashoffset: 0;
	}
}

@keyframes microsmith-icon-pulse {
	to {
		transform: scale(1.12);
	}
}

.ms-skip-link {
	background: var(--ms-ink);
	color: #fff;
	left: 16px;
	padding: 10px 14px;
	position: fixed;
	top: -80px;
	z-index: 100000;
}

.ms-skip-link:focus {
	top: 16px;
}

.ms-site-header {
	background: #fff;
	border-bottom: 1px solid var(--ms-line);
	overflow: visible;
	position: relative;
	z-index: 1000;
}

.ms-topline {
	align-items: center;
	background: var(--ms-ink);
	color: rgba(255,255,255,.78);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 18px;
	justify-content: center;
	min-height: 34px;
	padding: 6px 20px;
}

.ms-topline a {
	color: #fff;
	text-decoration: none;
}

.ms-header-inner {
	align-items: center;
	display: flex;
	gap: 0;
	margin: 0 auto;
	max-width: var(--ms-wrap);
	min-height: 50px;
	overflow: visible;
	padding: 0 24px 13px;
	position: relative;
	z-index: 1001;
}

.ms-logo {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	line-height: 0;
}

.ms-logo img {
	display: block;
	width: 132px;
}

.ms-logo-bar {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: var(--ms-wrap);
	padding: 10px 24px 4px;
}

.ms-logo-banner img {
	width: 495px;
}

.ms-primary-nav {
	flex: 1 1 auto;
	min-width: 0;
	overflow: visible;
	position: relative;
	z-index: 1002;
}

.ms-menu-backdrop {
	display: none;
}

.ms-nav-list {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ms-nav-list li {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.ms-nav-list a {
	border-radius: var(--ms-radius);
	color: var(--ms-ink);
	display: block;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	padding: 10px 4px;
	text-decoration: none;
}

.ms-nav-list a:hover,
.ms-nav-list .current-menu-item > a,
.ms-nav-list .current-menu-ancestor > a {
	background: var(--ms-cyan-soft);
	color: var(--ms-cyan-dark);
}

.ms-nav-list .menu-item-has-children > a::after {
	content: "";
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	display: inline-block;
	margin-left: 7px;
	vertical-align: middle;
}

.ms-nav-list .sub-menu {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 18px 42px rgba(14,52,65,.12);
	display: grid;
	gap: 2px;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 238px;
	opacity: 0;
	padding: 8px;
	position: absolute;
	top: calc(100% + 8px);
	transform: translateY(4px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
	visibility: hidden;
	z-index: 1003;
}

.ms-nav-list .sub-menu::before {
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	right: 0;
	top: -10px;
}

.ms-nav-list li:hover > .sub-menu,
.ms-nav-list li:focus-within > .sub-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.ms-nav-list .sub-menu a {
	font-size: 13px;
	line-height: 1.35;
	padding: 10px 12px;
	white-space: normal;
}

.ms-nav-list > li:last-child .sub-menu,
.ms-nav-list > li:nth-last-child(2) .sub-menu {
	left: auto;
	right: 0;
}

.ms-header-cta,
.ms-button {
	align-items: center;
	background: var(--ms-cyan);
	border: 0;
	border-radius: var(--ms-radius);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: 13px 20px;
	text-decoration: none;
	white-space: nowrap;
}

.ms-button svg,
.ms-landing-phone svg {
	flex: 0 0 auto;
	height: 18px;
	margin-right: 8px;
	width: 18px;
}

.ms-header-cta {
	min-width: 130px;
}

.ms-header-cta:hover,
.ms-button:hover {
	background: var(--ms-cyan-dark);
	color: #fff;
}

.ms-button.ms-button-dark {
	background: var(--ms-ink);
}

.ms-button.ms-button-dark:hover {
	background: var(--ms-ink-2);
}

.ms-menu-toggle {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	color: var(--ms-ink);
	display: none;
	font-weight: 900;
	min-height: 42px;
	padding: 10px 14px;
}

.ms-section {
	padding: 72px 24px;
}

.ms-wrap {
	margin: 0 auto;
	max-width: var(--ms-wrap);
}

.ms-kicker {
	background: var(--ms-cyan-soft);
	border: 1px solid rgba(0,180,216,.22);
	border-radius: 999px;
	color: var(--ms-cyan-dark);
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-bottom: 16px;
	padding: 5px 14px;
	text-transform: uppercase;
}

.ms-hero {
	background: linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
	border-bottom: 1px solid var(--ms-line);
	padding: 84px 24px 0;
	text-align: center;
}

.ms-hero-inner {
	margin: 0 auto;
	max-width: 760px;
}

.ms-hero h1,
.ms-page-hero h1,
.ms-section-title {
	color: var(--ms-ink);
	font-family: var(--ms-font-heading);
	font-size: clamp(42px, 7vw, 76px);
	letter-spacing: .01em;
	line-height: .98;
	margin: 0 0 18px;
}

.ms-hero h1 span {
	color: var(--ms-cyan);
}

.ms-hero p,
.ms-page-hero p,
.ms-section-intro {
	color: var(--ms-muted);
	font-size: 18px;
	line-height: 1.8;
	margin: 0 auto 30px;
	max-width: 620px;
}

.ms-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 36px;
}

.ms-homepage {
	--ms-home-cta-hit: 0;
}

.ms-home-first-screen {
	display: flex;
	flex-direction: column;
	min-height: calc(100svh - 154px);
}

.ms-home-hero {
	background: #fff;
	border-bottom: 0;
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	overflow: hidden;
	padding: 28px 0 76px;
	position: relative;
}

.ms-home-hero-inner {
	margin: 0 auto;
	max-width: 860px;
	position: relative;
	text-align: center;
}

.ms-home-hero h1 {
	color: var(--ms-ink);
	font-family: "Bowlby One SC", "Oswald", Impact, sans-serif;
	font-size: clamp(50px, 6vw, 64px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: .95;
	margin: 0;
	overflow-wrap: anywhere;
	text-transform: none;
}

.ms-home-hero h1 span {
	color: var(--ms-cyan);
	display: block;
}

.ms-home-hero-copy {
	color: var(--ms-muted);
	font-family: var(--ms-font-body);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 400;
	line-height: 1.6;
	margin: 22px auto 28px;
	max-width: 720px;
}

.ms-home-hero .ms-kicker {
	align-items: center;
	background: #f2fbfe;
	border: 1px solid rgba(19,183,222,.2);
	border-radius: 999px;
	color: #56cceb;
	display: inline-flex;
	font-family: var(--ms-font-body);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 18px;
	padding: 8px 16px;
	text-transform: uppercase;
}

.ms-home-chip-row li,
.ms-home-service-card a {
	font-family: var(--ms-font-body);
}

.ms-home-chip-row li {
	letter-spacing: .08em;
}

.ms-home-stats {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 26px auto 0;
	max-width: 1320px;
	padding: 0 24px 34px;
}

.ms-homepage > .ms-home-stats,
.ms-home-first-screen > .ms-home-stats {
	margin-top: 8px;
	position: relative;
	z-index: 2;
}

.ms-home-first-screen > .ms-home-stats {
	padding-bottom: 0;
}

.ms-home-stat {
	background: #fff;
	border: 1px solid var(--ms-line);
	padding: 28px 20px;
	text-align: center;
}

.ms-home-stat:first-child {
	border-radius: 12px 0 0 12px;
}

.ms-home-stat:last-child {
	border-radius: 0 12px 12px 0;
}

.ms-home-stat strong {
	color: var(--ms-ink);
	display: block;
	font-family: var(--ms-font-heading);
	font-size: clamp(30px, 3vw, 48px);
	font-weight: 400;
	line-height: 1;
}

.ms-home-stat span {
	color: var(--ms-muted);
	display: block;
	font-family: var(--ms-font-body);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	margin-top: 8px;
	text-transform: uppercase;
}

.ms-home-cta-zone {
	margin: 8px auto 0;
	max-width: 520px;
	position: relative;
}

.ms-home-cta-wave {
	height: 132px;
	left: 50%;
	max-width: 1280px;
	pointer-events: none;
	position: absolute;
	top: -34px;
	transform: translateX(-50%);
	width: calc(100vw - 28px);
	z-index: 1;
}

.ms-home-wave {
	height: 100%;
	overflow: visible;
	width: 100%;
}

.ms-home-wave-mobile {
	display: none;
}

.ms-home-cta-shadow {
	fill: none;
	filter: blur(8px);
	stroke: rgba(102,224,251,.14);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 14;
}

.ms-home-cta-track {
	fill: none;
	stroke: rgba(24,184,222,.18);
	stroke-dasharray: 10 12;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ms-home-cta-energy {
	fill: none;
	filter: drop-shadow(0 0 12px rgba(102,224,251,.95));
	stroke: rgba(102,224,251,.95);
	stroke-dasharray: 140 1800;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
}

.ms-home-hero-actions {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

.ms-home-hero-button {
	background: linear-gradient(180deg, #66dbf8, #30b9df);
	border: 1px solid rgba(48,185,223,.6);
	box-shadow:
		0 0 0 calc(10px + (8px * var(--ms-home-cta-hit))) rgba(87, 215, 247, calc(.17 + (.18 * var(--ms-home-cta-hit)))),
		0 calc(16px + (8px * var(--ms-home-cta-hit))) calc(34px + (12px * var(--ms-home-cta-hit))) rgba(48,185,223, calc(.18 + (.22 * var(--ms-home-cta-hit))));
	font-size: 20px;
	min-height: 68px;
	min-width: 260px;
	padding: 16px 28px;
	position: relative;
	transition: box-shadow .18s ease, filter .18s ease, transform .18s ease;
	z-index: 3;
}

.ms-home-hero-button::after {
	border: 1px solid rgba(102,224,251, calc(.18 + (.46 * var(--ms-home-cta-hit))));
	border-radius: 14px;
	content: "";
	inset: -10px;
	opacity: calc(.25 + (.75 * var(--ms-home-cta-hit)));
	position: absolute;
	transition: opacity .18s ease, border-color .18s ease;
}

.ms-home-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}

.ms-home-chip-row li {
	align-items: center;
	color: var(--ms-ink);
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
}

.ms-home-chip-icon {
	align-items: center;
	background: rgba(95,224,251,.16);
	border-radius: 999px;
	color: var(--ms-cyan-dark);
	display: inline-flex;
	flex: 0 0 28px;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.ms-home-chip-icon svg {
	height: 15px;
	margin: 0;
	width: 15px;
}

.ms-home-routes,
.ms-home-final {
	background: #fff;
}

.ms-home-route-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	margin-top: 28px;
}

.ms-home-route-panel {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	min-height: 260px;
	overflow: hidden;
	padding: 28px;
	position: relative;
}

.ms-home-route-panel.is-large { grid-column: span 5; }
.ms-home-route-panel.is-medium { grid-column: span 4; }
.ms-home-route-panel.is-accent { grid-column: span 3; }
.ms-home-route-panel.is-small { grid-column: span 4; }

.ms-home-route-panel.is-accent {
	background: linear-gradient(180deg, #123948, #0f3040);
	border-color: rgba(19,183,222,.22);
	color: #fff;
}

.ms-home-route-watermark {
	color: rgba(24,184,222,.2);
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 18px;
}

.ms-home-route-watermark svg {
	height: 72px;
	margin: 0;
	width: 72px;
}

.ms-home-route-panel.is-accent .ms-home-route-watermark {
	color: rgba(102,224,251,.24);
}

.ms-home-route-head {
	margin-bottom: 14px;
	max-width: 86%;
	position: relative;
	z-index: 1;
}

.ms-home-route-eyebrow,
.ms-home-proof-eyebrow {
	color: var(--ms-cyan-dark);
	display: inline-block;
	font-family: var(--ms-font-body);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.ms-home-route-panel.is-accent .ms-home-route-eyebrow,
.ms-home-route-panel.is-accent h3,
.ms-home-route-panel.is-accent p,
.ms-home-route-panel.is-accent a {
	color: #fff;
}

.ms-home-route-panel h3,
.ms-home-proof-card h3 {
	font-size: 24px;
	line-height: 1.08;
	margin: 0;
}

.ms-home-route-panel p,
.ms-home-proof-card p {
	color: var(--ms-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 18px;
}

.ms-home-route-links {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.ms-home-route-links a {
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

.ms-home-route-links a::after {
	content: " ->";
}

.ms-home-proof-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 28px;
}

.ms-home-proof-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	padding: 28px;
	position: relative;
}

.ms-home-proof-icon {
	align-items: center;
	background:
		linear-gradient(180deg, rgba(102,224,251,.24), rgba(24,184,222,.08)),
		#f2fbfe;
	border: 1px solid rgba(24,184,222,.22);
	border-radius: 999px;
	color: var(--ms-cyan-dark);
	display: inline-flex;
	height: 58px;
	justify-content: center;
	margin-bottom: 16px;
	width: 58px;
}

.ms-home-proof-icon svg {
	height: 29px;
	margin: 0;
	width: 29px;
}

.ms-home-final-inner {
	text-align: center;
}

.ms-home-final .ms-section-title {
	font-size: clamp(36px, 4.6vw, 56px);
	line-height: 1.02;
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
}

.ms-homepage .ms-section-title {
	font-size: clamp(36px, 4.8vw, 58px);
}

.ms-stat-row {
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius) var(--ms-radius) 0 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 56px auto 0;
	max-width: var(--ms-wrap);
	overflow: hidden;
}

.ms-stat {
	background: #fff;
	border-right: 1px solid var(--ms-line);
	padding: 24px 16px;
}

.ms-stat:last-child {
	border-right: 0;
}

.ms-stat strong {
	display: block;
	font-family: var(--ms-font-heading);
	font-size: 30px;
	line-height: 1;
}

.ms-stat span {
	color: var(--ms-muted);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-top: 8px;
	text-transform: uppercase;
}

.ms-card-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ms-card-grid.ms-card-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-card,
.ms-content-box {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	padding: 26px;
}

.ms-card h2,
.ms-card h3 {
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 10px;
}

.ms-card p {
	color: var(--ms-muted);
	margin: 0 0 18px;
}

.ms-band {
	background: var(--ms-soft);
}

.ms-booking-shell {
	background: #fff;
	padding-bottom: 40px;
}

.ms-page-hero {
	background: var(--ms-ink);
	color: #fff;
	padding: 30px 24px 60px;
	text-align: center;
}

.ms-page-hero h1 {
	color: #fff !important;
}

.ms-page-hero h1 span {
	color: #62dff5 !important;
}

.ms-page-hero p {
	color: rgba(255,255,255,.78) !important;
}

.ms-booking-selector-section {
	margin-top: -54px;
	padding-bottom: 28px;
	padding-top: 0;
	position: relative;
	z-index: 2;
}

.ms-booking-selector-section .msrs-wrap .hp-service-picker {
	margin-top: 0 !important;
	padding-bottom: 16px !important;
	padding-top: 22px !important;
}

.ms-booking-selector-section .msrs-wrap .hp-service-picker,
.ms-booking-selector-section .msrs-wrap #device-picker {
	border-top: 0 !important;
}

.ms-booking-support {
	padding-top: 0;
	margin-top: -10px;
}

.ms-booking-support-intro,
.ms-booking-reviews-intro {
	text-align: center;
}

.ms-booking-support-intro .ms-section-title,
.ms-booking-reviews-intro .ms-section-title {
	font-size: clamp(30px, 5vw, 52px);
	margin-bottom: 14px;
}

.ms-landing-first-screen {
	background: var(--ms-ink);
	display: flex;
	flex-direction: column;
	min-height: calc(100svh - 143px);
}

.ms-landing-hero {
	background: var(--ms-ink);
	color: #fff;
	display: flex;
	align-items: flex-end;
	flex: 1 1 auto;
	min-height: 0;
	padding: 70px 24px;
}

.ms-landing-hero-grid {
	align-items: center;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 1fr) 460px;
}

.ms-landing-hero h1 {
	color: #fff;
	font-family: "Bowlby One SC", "Oswald", Impact, sans-serif;
	font-size: clamp(36px, 5.2vw, 58px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 18px;
	max-width: 780px;
	overflow-wrap: anywhere;
	text-wrap: balance;
	text-transform: none;
}

.ms-landing-hero p {
	color: rgba(255,255,255,.78);
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 28px;
	max-width: 720px;
}

.ms-landing-hero .ms-hero-actions {
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0;
}

.page-template-page-landing .ms-landing-first-screen > .ms-home-stats {
	flex: 0 0 auto;
	margin-top: 0;
	padding-bottom: 42px;
}

.ms-landing-hero-bullets {
	align-items: center;
	color: rgba(255,255,255,.82);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 900;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ms-landing-hero-bullets li {
	align-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--ms-radius);
	display: inline-flex;
	min-height: 36px;
	padding: 8px 12px;
}

.ms-landing-hero-bullets li::before {
	background: var(--ms-cyan);
	border-radius: 50%;
	content: "";
	height: 7px;
	margin-right: 8px;
	width: 7px;
}

.ms-landing-map-card {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: var(--ms-radius);
	overflow: hidden;
}

.ms-landing-map-frame {
	background: #e9f9fc;
	display: block;
	height: 230px;
	overflow: hidden;
	position: relative;
}

.ms-landing-map-frame iframe {
	border: 0;
	display: block;
	height: 100%;
	pointer-events: none;
	width: 100%;
}

.ms-landing-review-chip {
	background: #fff;
	border: 1px solid rgba(14,52,65,.12);
	border-radius: var(--ms-radius);
	box-shadow: 0 8px 20px rgba(14,52,65,.13);
	color: var(--ms-ink);
	display: inline-flex;
	flex-direction: column;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.1;
	padding: 7px 9px;
	position: absolute;
	z-index: 3;
}

.ms-landing-review-chip {
	color: var(--ms-ink);
	left: auto;
	right: 10px;
	text-align: center;
	top: 10px;
}

.ms-stars {
	color: #ffc940;
	display: block;
	font-size: 10px;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 2px 0 1px;
}

.ms-landing-map-card > div:last-child {
	padding: 22px;
}

.ms-landing-map-card strong {
	color: #fff;
	display: block;
	font-size: 21px;
	line-height: 1.25;
	margin-bottom: 8px;
}

.ms-landing-map-card p {
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 12px;
}

.ms-landing-map-card a {
	color: #62dff5;
	font-weight: 900;
	text-decoration: none;
}

.ms-landing-trust {
	background: #fff;
	border-bottom: 1px solid var(--ms-line);
}

.ms-landing-trust .ms-wrap {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-landing-trust div {
	border-right: 1px solid var(--ms-line);
	padding: 24px 18px;
	text-align: center;
}

.ms-landing-trust div:last-child {
	border-right: 0;
}

.ms-landing-trust strong {
	display: block;
	font-family: var(--ms-font-heading);
	font-size: 31px;
	line-height: 1;
}

.ms-landing-trust span {
	color: var(--ms-muted);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-top: 8px;
	text-transform: uppercase;
}

.ms-landing-main {
	background: var(--ms-soft);
	padding: 56px 24px;
}

.ms-landing-main-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.ms-landing-content {
	display: grid;
	gap: 22px;
	min-width: 0;
}

.ms-landing-section,
.ms-landing-cta,
.ms-landing-side-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	padding: 28px;
}

.ms-landing-section-soft {
	background: #fbfdfe;
}

.ms-landing-section .ms-section-title {
	font-size: clamp(30px, 3.4vw, 42px);
	line-height: 1.06;
	margin-bottom: 18px;
	max-width: 720px;
	text-wrap: balance;
}

.ms-landing-action-list {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ms-landing-action-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	color: var(--ms-ink);
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	grid-template-rows: auto auto auto;
	column-gap: 16px;
	padding: 18px 20px;
	text-decoration: none;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.ms-landing-card-icon {
	align-items: center;
	background: var(--ms-cyan-soft);
	border-radius: var(--ms-radius);
	color: var(--ms-cyan-dark) !important;
	display: inline-flex !important;
	grid-column: 1;
	grid-row: 1 / span 3;
	height: 54px;
	justify-content: center;
	letter-spacing: 0 !important;
	margin: 2px 0 0 !important;
	min-width: 0 !important;
	padding: 0 !important;
	text-transform: none !important;
	width: 54px;
}

.ms-landing-card-icon svg {
	height: 32px;
	width: 32px;
}

.ms-landing-action-card:hover {
	border-color: rgba(0,180,216,.5);
	box-shadow: 0 10px 28px rgba(14,52,65,.1);
	transform: translateY(-1px);
}

.ms-landing-info-card:hover {
	border-color: var(--ms-line);
	box-shadow: none;
	transform: none;
}

.ms-landing-action-card span {
	color: var(--ms-cyan-dark);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.ms-landing-action-card > span:not(.ms-landing-card-icon),
.ms-landing-action-card > h3,
.ms-landing-action-card > p,
.ms-landing-action-card > .ms-landing-card-copy {
	grid-column: 2;
}

.ms-landing-card-icon {
	font-size: 0 !important;
}

.ms-landing-action-card h3 {
	color: var(--ms-ink);
	font-size: 21px;
	line-height: 1.12;
	margin: 0 0 10px;
	text-wrap: balance;
}

.ms-landing-action-card p {
	color: var(--ms-muted);
	margin: 0;
}

.ms-landing-card-copy {
	color: var(--ms-muted);
}

.ms-landing-card-copy > *:first-child {
	margin-top: 0;
}

.ms-landing-card-copy > *:last-child {
	margin-bottom: 0;
}

.ms-landing-card-copy p {
	color: inherit;
	margin: 0 0 10px;
}

.ms-landing-card-copy a {
	font-weight: 900;
}

.ms-landing-card-copy p:empty {
	display: none;
}

.ms-landing-card-copy p:last-child {
	margin-bottom: 0;
}

.ms-landing-copy > *:first-child {
	margin-top: 0;
}

.ms-landing-copy > *:last-child {
	margin-bottom: 0;
}

.ms-landing-faq-list {
	display: grid;
	gap: 10px;
}

.ms-landing-faq-list details {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	padding: 16px 18px;
}

.ms-landing-faq-list summary {
	align-items: center;
	color: var(--ms-ink);
	cursor: pointer;
	display: flex;
	gap: 10px;
	font-weight: 900;
	list-style: none;
}

.ms-landing-faq-list summary::-webkit-details-marker {
	display: none;
}

.ms-landing-faq-list summary::before {
	align-items: center;
	background: var(--ms-cyan-soft);
	border-radius: 999px;
	color: var(--ms-cyan-dark);
	content: "+";
	display: inline-flex;
	flex: 0 0 24px;
	font-size: 18px;
	font-weight: 900;
	height: 24px;
	justify-content: center;
	line-height: 1;
	width: 24px;
}

.ms-landing-faq-list details[open] summary::before {
	content: "-";
}

.ms-landing-faq-list p {
	color: var(--ms-muted);
	margin: 12px 0 0;
}

.ms-landing-link-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ms-landing-link-list a {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	color: var(--ms-ink);
	display: flex;
	gap: 18px;
	font-weight: 900;
	min-height: 90px;
	padding: 16px 18px;
	text-decoration: none;
}

.ms-landing-link-list a:hover {
	border-color: var(--ms-cyan);
	color: var(--ms-cyan-dark);
}

.ms-landing-link-icon {
	align-items: center;
	background: var(--ms-cyan-soft);
	border-radius: var(--ms-radius);
	color: var(--ms-cyan-dark);
	display: inline-flex;
	flex: 0 0 62px;
	height: 62px;
	justify-content: center;
}

.ms-landing-link-icon svg {
	height: 36px;
	width: 36px;
}

.ms-landing-reviews {
	background: #fff;
	border-bottom: 1px solid var(--ms-line);
	padding: 42px 24px;
}

.ms-landing-reviews-head {
	margin: 0 auto 22px;
	max-width: var(--ms-wrap);
	text-align: center;
}

.ms-landing-reviews-head h2 {
	font-family: var(--ms-font-heading);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 12px 0 10px;
	text-wrap: balance;
}

.ms-landing-reviews-head p {
	color: var(--ms-muted);
	margin: 0 auto;
	max-width: 620px;
}

.ms-landing-review-list {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-landing-review-card {
	background: #fbfdfe;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 10px 28px rgba(14,52,65,.06);
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	min-height: 260px;
	padding: 20px;
}

.ms-landing-review-card[hidden] {
	display: none !important;
}

.ms-landing-review-stars {
	color: #ffc940;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 12px;
}

.ms-landing-review-card p {
	color: var(--ms-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

.ms-landing-review-source {
	align-self: end;
	color: var(--ms-cyan-dark);
	font-size: 12px;
	font-weight: 900;
	margin: 16px 0 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.ms-landing-review-source:hover {
	color: var(--ms-ink);
}

.ms-landing-review-card footer {
	border-top: 1px solid var(--ms-line);
	display: grid;
	gap: 3px;
	min-height: 54px;
	padding-top: 12px;
}

.ms-landing-review-card strong {
	color: var(--ms-ink);
	font-size: 14px;
}

.ms-landing-review-card span {
	color: var(--ms-muted);
	font-size: 12px;
	font-weight: 800;
}

.ms-landing-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 48px;
}

.admin-bar .ms-landing-sidebar {
	top: 80px;
}

.ms-landing-side-card h2 {
	font-family: var(--ms-font-heading);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 10px;
	text-wrap: balance;
}

.ms-landing-sidebar .ms-landing-side-card:first-child {
	background: var(--ms-ink);
	border-color: var(--ms-ink);
	box-shadow: 0 16px 38px rgba(14,52,65,.2);
	color: #fff;
}

.ms-landing-sidebar .ms-landing-side-card:first-child .ms-kicker {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.16);
	color: #62dff5;
}

.ms-landing-sidebar .ms-landing-side-card:first-child h2 {
	color: #fff;
}

.ms-landing-side-card p {
	color: var(--ms-muted);
	margin: 0 0 18px;
}

.ms-landing-sidebar .ms-landing-side-card:first-child p {
	color: rgba(255,255,255,.68);
}

.ms-landing-side-card .ms-button {
	width: 100%;
}

.ms-landing-phone {
	align-items: center;
	background: rgba(255,255,255,.1);
	border: 2px solid rgba(255,255,255,.2);
	border-radius: var(--ms-radius);
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 900;
	gap: 8px;
	justify-content: center;
	margin-top: 12px;
	min-height: 46px;
	padding: 10px 14px;
	text-align: center;
	text-decoration: none;
}

.ms-landing-phone svg {
	margin-right: 0;
}

.ms-landing-phone span {
	text-align: center;
}

.ms-landing-hours dl {
	display: grid;
	gap: 8px;
	margin: 14px 0 16px;
}

.ms-landing-hours dl div {
	align-items: center;
	border-bottom: 1px solid var(--ms-line);
	display: flex;
	justify-content: space-between;
	padding-bottom: 8px;
}

.ms-landing-hours dt,
.ms-landing-hours dd {
	margin: 0;
}

.ms-landing-hours dt {
	color: var(--ms-muted);
	font-weight: 800;
}

.ms-landing-hours dd {
	color: var(--ms-ink);
	font-weight: 900;
}

.ms-landing-hours a {
	font-weight: 900;
	text-decoration: none;
}

.ms-landing-cta {
	background: var(--ms-ink);
	color: #fff;
	text-align: center;
}

.ms-landing-cta h2 {
	color: #fff;
	font-family: var(--ms-font-heading);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0 0 16px;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.ms-landing-cta p {
	color: rgba(255,255,255,.78);
	font-size: 18px;
	margin: 0 auto 26px;
	max-width: 620px;
}

.ms-landing-cta-box {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.14);
}

.ms-landing-cta-box p {
	color: rgba(255,255,255,.86);
	font-size: 17px;
	line-height: 1.8;
	margin: 0 0 18px;
	max-width: none;
}

.ms-landing-cta .ms-kicker {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.14);
	color: #9fe8f7;
}

.ms-landing-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
}

.ms-repair-single {
	background: var(--ms-soft);
}

.ms-repair-hero {
	background: var(--ms-ink);
	color: #fff;
	padding: 58px 24px;
}

.ms-repair-hero-grid {
	align-items: center;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) 360px;
}

.ms-repair-breadcrumb {
	align-items: center;
	color: rgba(255,255,255,.54);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
	margin-bottom: 18px;
}

.ms-repair-breadcrumb a {
	color: rgba(255,255,255,.76);
	text-decoration: none;
}

.ms-repair-hero h1 {
	color: #fff;
	font-family: var(--ms-font-heading);
	font-size: clamp(46px, 7vw, 82px);
	letter-spacing: 0;
	line-height: .94;
	margin: 10px 0 18px;
	max-width: 780px;
}

.ms-repair-hero p {
	color: rgba(255,255,255,.74);
	font-size: 18px;
	line-height: 1.7;
	margin: 0 0 24px;
	max-width: 680px;
}

.ms-repair-hero .ms-button-dark {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.28);
}

.ms-repair-hero-bullets {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.ms-repair-hero-bullets li {
	align-items: center;
	color: rgba(255,255,255,.7);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	gap: 8px;
}

.ms-repair-hero-bullets li::before {
	background: var(--ms-cyan);
	border-radius: 999px;
	content: "";
	height: 7px;
	width: 7px;
}

.ms-repair-summary {
	background: #fff;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: var(--ms-radius);
	box-shadow: 0 22px 60px rgba(0,0,0,.22);
	color: var(--ms-ink);
	overflow: hidden;
}

.ms-repair-summary-icon {
	align-items: center;
	background: var(--ms-cyan-soft);
	color: var(--ms-cyan-dark);
	display: flex;
	height: 112px;
	justify-content: center;
}

.ms-repair-summary-icon svg {
	height: 58px;
	width: 58px;
}

.ms-repair-summary dl {
	margin: 0;
}

.ms-repair-summary dl div {
	border-top: 1px solid var(--ms-line);
	display: grid;
	gap: 14px;
	grid-template-columns: 112px 1fr;
	padding: 14px 18px;
}

.ms-repair-summary dt,
.ms-repair-summary dd {
	margin: 0;
}

.ms-repair-summary dt {
	color: var(--ms-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ms-repair-summary dd {
	color: var(--ms-ink);
	font-size: 15px;
	font-weight: 900;
}

.ms-repair-body {
	padding: 34px 24px 72px;
}

.ms-repair-layout {
	align-items: start;
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.ms-repair-content-column {
	display: grid;
	gap: 20px;
	min-width: 0;
}

.ms-repair-featured {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	margin: 0;
	overflow: hidden;
}

.ms-repair-featured img {
	display: block;
	max-height: 420px;
	object-fit: contain;
	width: 100%;
}

.ms-repair-facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 20px;
}

.ms-repair-facts div {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	padding: 18px;
}

.ms-repair-facts svg {
	color: var(--ms-cyan-dark);
	height: 28px;
	margin-bottom: 12px;
	width: 28px;
}

.ms-repair-facts strong,
.ms-repair-facts span {
	display: block;
}

.ms-repair-facts strong {
	color: var(--ms-ink);
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 4px;
}

.ms-repair-facts span {
	color: var(--ms-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ms-repair-parts {
	background: var(--ms-cyan-soft);
	border-left: 4px solid var(--ms-cyan);
	border-radius: var(--ms-radius);
	color: var(--ms-muted);
	margin: 18px 0 0;
	padding: 14px 16px;
}

.ms-content {
	margin: 0 auto;
	max-width: 900px;
	padding: 58px 24px;
}

.ms-content h1,
.ms-content h2,
.ms-content h3 {
	line-height: 1.2;
}

.ms-content > *:first-child {
	margin-top: 0;
}

.ms-form-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 320px;
}

.ms-form-main,
.ms-form-side {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	padding: 28px;
}

.ms-form-main input[type="text"],
.ms-form-main input[type="email"],
.ms-form-main input[type="tel"],
.ms-form-main input[type="url"],
.ms-form-main input[type="date"],
.ms-form-main input[type="time"],
.ms-form-main select,
.ms-form-main textarea,
.ms-content input[type="text"],
.ms-content input[type="email"],
.ms-content input[type="tel"],
.ms-content input[type="url"],
.ms-content input[type="date"],
.ms-content input[type="time"],
.ms-content select,
.ms-content textarea {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	color: var(--ms-ink);
	display: block;
	font: inherit;
	min-height: 46px;
	padding: 11px 13px;
	width: 100%;
}

.ms-form-main textarea,
.ms-content textarea {
	min-height: 130px;
	resize: vertical;
}

.ms-form-main input:focus,
.ms-form-main select:focus,
.ms-form-main textarea:focus,
.ms-content input:focus,
.ms-content select:focus,
.ms-content textarea:focus {
	border-color: var(--ms-cyan);
	box-shadow: 0 0 0 3px rgba(0,180,216,.12);
	outline: none;
}

.ms-form-main label,
.ms-content label {
	color: var(--ms-ink);
	font-weight: 800;
}

.ms-form-main button,
.ms-form-main input[type="submit"],
.ms-content button,
.ms-content input[type="submit"] {
	background: var(--ms-cyan);
	border: 0;
	border-radius: var(--ms-radius);
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	min-height: 46px;
	padding: 12px 20px;
}

.ms-form-main button:hover,
.ms-form-main input[type="submit"]:hover,
.ms-content button:hover,
.ms-content input[type="submit"]:hover {
	background: var(--ms-cyan-dark);
}

.ms-form-side h2 {
	font-size: 22px;
	margin: 0 0 10px;
}

.ms-form-side a {
	font-size: 22px;
	font-weight: 900;
	text-decoration: none;
}

.ms-form-side hr {
	border: 0;
	border-top: 1px solid var(--ms-line);
	margin: 22px 0;
}

.ms-support-page {
	background: #fff;
}

.ms-support-hero {
	background: var(--ms-ink);
	color: #fff;
	overflow: hidden;
	padding: 66px 24px 72px;
	position: relative;
	text-align: center;
}

.ms-support-hero::before {
	background:
		linear-gradient(90deg, transparent 0, transparent 12%, rgba(98,223,245,.28) 12.5%, transparent 13%),
		linear-gradient(90deg, transparent 0, transparent 34%, rgba(255,255,255,.12) 34.4%, transparent 35%),
		linear-gradient(90deg, transparent 0, transparent 68%, rgba(98,223,245,.22) 68.5%, transparent 69%);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	opacity: .8;
	position: absolute;
	right: 0;
}

.ms-support-hero-inner {
	margin: 0 auto;
	max-width: 900px;
	position: relative;
	z-index: 2;
}

.ms-support-hero h1,
.ms-support-display,
.ms-support-intro h2,
.ms-support-cta-band h2 {
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-weight: 400;
	letter-spacing: 0;
	line-height: .96;
	text-transform: none;
}

.ms-support-hero h1 {
	color: #fff;
	font-size: clamp(46px, 7vw, 86px);
	margin: 0 auto 20px;
	max-width: 900px;
}

.ms-support-hero h1 span {
	color: #62dff5;
}

.ms-support-hero h1 span.ms-support-hero-light {
	color: #fff !important;
}

.ms-display-hero h1 .ms-display-hero-main,
.ms-display-hero h1 .ms-display-hero-accent {
	display: inline-block;
	font-family: "Bowlby One SC", "Oswald", Impact, sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	line-height: .95;
	text-transform: none;
}

.ms-display-hero h1 .ms-display-hero-main {
	color: #fff !important;
}

.ms-display-hero h1 .ms-display-hero-accent {
	color: #62dff5 !important;
}

.ms-support-hero p {
	color: rgba(255,255,255,.78);
	font-size: 18px;
	line-height: 1.75;
	margin: 0 auto 30px;
	max-width: 720px;
}

.ms-support-hero .ms-button-dark {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.2);
}

.ms-contact-hero {
	padding-bottom: 52px;
	padding-top: 46px;
}

.ms-contact-hero h1 {
	color: #fff !important;
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-size: clamp(48px, 7vw, 82px);
}

.ms-contact-hero h1 .ms-contact-hero-main,
.ms-contact-hero h1 .ms-contact-hero-accent {
	display: inline-block;
	font-family: "Bowlby One SC", "Oswald", Impact, sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	line-height: .95;
	text-transform: none;
}

.ms-contact-hero h1 .ms-contact-hero-main {
	color: #fff !important;
}

.ms-contact-hero h1 .ms-contact-hero-accent {
	color: #62dff5 !important;
}

.ms-contact-hero p {
	max-width: 780px;
}

.ms-contact-main-section {
	padding-top: 48px;
}

.ms-contact-page-direct .ms-contact-main-section {
	padding-top: 28px;
}

.ms-contact-trust .ms-wrap {
	max-width: 1040px;
}

.ms-contact-trust div {
	padding-bottom: 20px;
	padding-top: 20px;
}

.ms-contact-trust strong {
	font-size: 28px;
}

.ms-support-trust {
	background: #fff;
	border-bottom: 1px solid var(--ms-line);
}

.ms-support-trust .ms-wrap {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-support-trust div {
	border-right: 1px solid var(--ms-line);
	padding: 25px 18px;
	text-align: center;
}

.ms-support-trust div:last-child {
	border-right: 0;
}

.ms-support-trust strong {
	color: var(--ms-ink);
	display: block;
	font-family: var(--ms-font-heading);
	font-size: 32px;
	line-height: 1;
}

.ms-support-trust span {
	color: var(--ms-muted);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-top: 8px;
	text-transform: uppercase;
}

.ms-support-intro {
	margin: 0 auto 30px;
	max-width: 840px;
	text-align: center;
}

.ms-support-intro h2,
.ms-support-display {
	color: var(--ms-ink);
	font-size: clamp(34px, 5vw, 58px);
	margin: 0 0 14px;
}

.ms-support-intro p {
	color: var(--ms-muted);
	font-size: 18px;
	line-height: 1.75;
	margin: 0 auto;
	max-width: 680px;
}

.ms-contact-grid,
.ms-two-column {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 380px;
}

.ms-two-column {
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.ms-contact-sidebar {
	display: grid;
	gap: 18px;
}

.ms-support-panel,
.ms-support-side-card,
.ms-support-card,
.ms-service-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	padding: 28px;
}

.ms-contact-form-panel h2,
.ms-support-side-card h2,
.ms-support-card h3,
.ms-service-card h3,
.ms-review-submit-panel h3 {
	color: var(--ms-ink);
	font-size: 24px;
	line-height: 1.15;
	margin: 0 0 10px;
}

.ms-contact-form-panel h2 {
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 400;
	letter-spacing: 0;
}

.ms-contact-form-panel > p,
.ms-support-side-card p,
.ms-support-card p,
.ms-service-card p,
.ms-support-panel p {
	color: var(--ms-muted);
	line-height: 1.65;
	margin: 0 0 18px;
}

.ms-contact-page .ms-landing-map-card {
	background: var(--ms-ink);
}

.ms-support-side-card-dark {
	background: var(--ms-ink);
	border-color: var(--ms-ink);
	color: #fff;
}

.ms-support-side-card-dark h2 {
	color: #fff !important;
}

.ms-support-side-card-dark p {
	color: rgba(255,255,255,.72);
}

.ms-support-side-card-dark .ms-kicker {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.16);
	color: #62dff5;
}

.ms-contact-form-panel {
	padding: 30px 34px;
	scroll-margin-top: 18px;
}

.ms-contact-form-panel .jet-form-builder,
.ms-contact-form-panel form {
	display: grid;
	gap: 16px;
	margin-top: 22px;
}

.ms-contact-form-panel .jet-form-builder-row {
	display: block !important;
	width: 100% !important;
}

.ms-contact-form-panel .jet-form-builder__label,
.ms-contact-form-panel .jet-form-builder__label-text {
	display: block !important;
	width: 100% !important;
}

.ms-contact-form-panel .jet-form-builder-row,
.ms-contact-form-panel .jet-form-builder__field-wrap,
.ms-contact-form-panel .jet-form-builder__field,
.ms-contact-form-panel .wp-block-jet-forms-text-field,
.ms-contact-form-panel .wp-block-jet-forms-textarea-field {
	margin-bottom: 0 !important;
}

.ms-contact-form-panel .jet-form-builder__field-wrap {
	display: block !important;
	margin-left: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.ms-contact-form-panel input[type="text"],
.ms-contact-form-panel input[type="email"],
.ms-contact-form-panel input[type="tel"],
.ms-contact-form-panel input[type="url"],
.ms-contact-form-panel select,
.ms-contact-form-panel textarea {
	background: #fbfdfe;
	border: 1px solid rgba(14,52,65,.2);
	border-radius: 6px;
	color: var(--ms-ink);
	display: block;
	font: inherit;
	margin: 0 !important;
	max-width: none !important;
	min-height: 48px;
	position: static !important;
	padding: 12px 14px;
	width: 100%;
}

.ms-contact-form-panel textarea {
	min-height: 128px;
}

.ms-contact-form-panel input:focus,
.ms-contact-form-panel select:focus,
.ms-contact-form-panel textarea:focus {
	background: #fff;
	border-color: var(--ms-cyan);
	box-shadow: 0 0 0 3px rgba(0,180,216,.12);
	outline: none;
}

.ms-contact-form-panel label {
	color: var(--ms-ink);
	font-size: 15px;
	font-weight: 900;
	margin-bottom: 6px;
}

.ms-contact-form-panel button,
.ms-contact-form-panel input[type="submit"] {
	background: var(--ms-cyan);
	border: 0;
	border-radius: var(--ms-radius);
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	min-height: 48px;
	padding: 12px 22px;
	width: fit-content;
}

.ms-contact-form-panel button:hover,
.ms-contact-form-panel input[type="submit"]:hover {
	background: var(--ms-cyan-dark);
}

.ms-contact-detail-list {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.ms-contact-detail-list li {
	align-items: flex-start;
	display: grid;
	gap: 14px;
	grid-template-columns: 42px minmax(0, 1fr);
}

.ms-contact-detail-list svg {
	background: var(--ms-cyan-soft);
	border-radius: 8px;
	color: var(--ms-cyan-dark);
	height: 42px;
	padding: 10px;
	width: 42px;
}

.ms-contact-detail-list strong,
.ms-contact-detail-list span {
	display: block;
}

.ms-contact-detail-list strong {
	color: var(--ms-muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.ms-contact-detail-list span {
	color: var(--ms-ink);
	font-weight: 900;
	line-height: 1.45;
}

.ms-tick-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ms-tick-list li {
	color: var(--ms-muted);
	font-weight: 800;
	line-height: 1.45;
	padding-left: 28px;
	position: relative;
}

.ms-tick-list li::before {
	background: var(--ms-cyan);
	border-radius: 50%;
	color: #fff;
	content: "";
	height: 10px;
	left: 4px;
	position: absolute;
	top: .45em;
	width: 10px;
}

.ms-tick-list-large {
	gap: 14px;
}

.ms-tick-list-large li {
	color: var(--ms-ink);
	font-size: 17px;
}

.ms-feature-grid,
.ms-service-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ms-support-card svg,
.ms-service-icon svg {
	color: var(--ms-cyan-dark);
	height: 34px;
	margin-bottom: 16px;
	opacity: .85;
	width: 34px;
}

.ms-service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ms-service-card {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	min-height: 255px;
}

.ms-service-card a {
	color: var(--ms-cyan-dark);
	font-weight: 900;
	text-decoration: none;
}

.ms-service-card a:hover {
	color: var(--ms-ink);
}

.ms-portal-page .ms-home-stats,
.ms-mobile-workshop-page .ms-home-stats {
	margin-bottom: 0;
	margin-top: 0;
}

.ms-portal-hero-b {
	background: #fff;
	border-bottom: 1px solid var(--ms-line);
	padding: 72px 24px;
}

.ms-portal-hero-grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(360px, .96fr) minmax(0, 1.04fr);
}

.ms-portal-dashboard {
	background: var(--ms-ink);
	border-radius: var(--ms-radius);
	box-shadow: 0 30px 80px rgba(14,52,65,.2);
	color: #fff;
	padding: 22px;
}

.ms-portal-dashboard-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ms-portal-dashboard-card {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	padding: 16px;
}

.ms-portal-dashboard-card-wide {
	grid-column: 1 / -1;
}

.ms-portal-dashboard-card span {
	color: #62dff5;
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ms-portal-dashboard-card strong {
	color: #fff;
	display: block;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.2;
	margin-top: 6px;
}

.ms-portal-dashboard-card i {
	background: rgba(255,255,255,.12);
	border-radius: 999px;
	display: block;
	height: 10px;
	margin-top: 13px;
	overflow: hidden;
	position: relative;
}

.ms-portal-dashboard-card i::after {
	background: #62dff5;
	border-radius: inherit;
	content: "";
	display: block;
	height: 100%;
	width: var(--bar, 58%);
}

.ms-portal-hero-copy h1 {
	color: var(--ms-ink);
	font-family: var(--ms-font-body);
	font-size: clamp(34px, 3.3vw, 44px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 18px;
	max-width: 660px;
	text-transform: none;
}

.ms-portal-hero-copy p {
	color: var(--ms-muted);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 28px;
	max-width: 650px;
}

.ms-portal-hero-copy .ms-button-dark {
	background: var(--ms-ink);
}

.ms-portal-lead-grid,
.ms-mobile-lead-grid {
	align-items: stretch;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 420px;
}

.ms-portal-copy {
	align-content: center;
	display: grid;
}

.ms-portal-mockup,
.ms-mobile-route-card {
	background: var(--ms-ink);
	border-radius: var(--ms-radius);
	box-shadow: 0 24px 60px rgba(14,52,65,.16);
	color: #fff;
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.ms-portal-mockup::after,
.ms-mobile-route-card::after {
	background: linear-gradient(135deg, rgba(98,223,245,.22), transparent 56%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ms-portal-window-bar {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.ms-portal-window-bar span {
	background: rgba(255,255,255,.35);
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

.ms-portal-window-bar span:first-child {
	background: #62dff5;
}

.ms-portal-window-bar strong {
	color: rgba(255,255,255,.7);
	font-size: 11px;
	letter-spacing: .08em;
	margin-left: 8px;
	text-transform: uppercase;
}

.ms-portal-job-row {
	align-items: center;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 8px;
	display: grid;
	gap: 14px;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	margin-top: 12px;
	padding: 14px;
	position: relative;
	z-index: 2;
}

.ms-portal-job-row svg {
	background: rgba(98,223,245,.13);
	border-radius: 8px;
	color: #62dff5;
	height: 42px;
	padding: 10px;
	width: 42px;
}

.ms-portal-job-row strong,
.ms-portal-job-row small {
	display: block;
}

.ms-portal-job-row strong {
	color: #fff;
	font-weight: 900;
}

.ms-portal-job-row small {
	color: rgba(255,255,255,.58);
	font-weight: 800;
	margin-top: 2px;
}

.ms-portal-job-row em {
	background: rgba(98,223,245,.12);
	border: 1px solid rgba(98,223,245,.22);
	border-radius: 999px;
	color: #62dff5;
	font-size: 11px;
	font-style: normal;
	font-weight: 900;
	padding: 7px 10px;
	white-space: nowrap;
}

.ms-portal-job-row .ms-portal-status-live {
	background: rgba(255,255,255,.12);
	color: #fff;
}

.ms-portal-feature-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ms-portal-workflow-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
}

.ms-portal-workflow-panel .ms-support-display {
	font-size: clamp(30px, 3.3vw, 40px);
}

.ms-portal-page .ms-support-intro h2 {
	font-size: clamp(28px, 3.1vw, 38px);
	line-height: 1.04;
}

.ms-portal-service-list {
	display: grid;
	gap: 16px;
}

.ms-portal-service-list div {
	align-items: flex-start;
	border-bottom: 1px solid var(--ms-line);
	display: grid;
	gap: 14px;
	grid-template-columns: 46px minmax(0, 1fr);
	padding-bottom: 16px;
}

.ms-portal-service-list div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ms-portal-service-list svg {
	background: var(--ms-cyan-soft);
	border-radius: 8px;
	color: var(--ms-cyan-dark);
	height: 46px;
	padding: 11px;
	width: 46px;
}

.ms-portal-service-list strong,
.ms-portal-service-list span {
	display: block;
}

.ms-portal-service-list strong {
	color: var(--ms-ink);
	font-weight: 900;
	margin-bottom: 4px;
}

.ms-portal-service-list span {
	color: var(--ms-muted);
	line-height: 1.55;
}

.ms-process-list {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.ms-process-step {
	align-items: flex-start;
	display: grid;
	gap: 16px;
	grid-template-columns: 54px minmax(0, 1fr);
}

.ms-process-step strong {
	align-items: center;
	background: var(--ms-cyan-soft);
	border: 1px solid rgba(0,180,216,.18);
	border-radius: 999px;
	color: var(--ms-cyan-dark);
	display: inline-flex;
	font-family: var(--ms-font-heading);
	font-size: 18px;
	height: 54px;
	justify-content: center;
	line-height: 1;
	width: 54px;
}

.ms-process-step span {
	color: var(--ms-muted);
	display: block;
	font-weight: 800;
	line-height: 1.6;
	padding-top: 3px;
}

.ms-process-step b {
	color: var(--ms-ink);
	display: block;
	font-size: 18px;
	margin-bottom: 3px;
}

.ms-portal-cta-band {
	background: var(--ms-ink);
	color: #fff;
	padding: 42px 24px;
}

.ms-portal-cta-band .ms-wrap {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.ms-portal-cta-band .ms-kicker {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.16);
	color: #62dff5;
}

.ms-portal-cta-band h2 {
	color: #fff;
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 10px;
}

.ms-portal-cta-band p {
	color: rgba(255,255,255,.74);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
	margin: 0;
	max-width: 720px;
}

.ms-mobile-route-card {
	align-content: center;
	display: grid;
	min-height: 100%;
}

.ms-mobile-route-icon {
	align-items: center;
	background: rgba(98,223,245,.12);
	border: 1px solid rgba(98,223,245,.22);
	border-radius: 16px;
	color: #62dff5;
	display: flex;
	height: 104px;
	justify-content: center;
	margin-bottom: 22px;
	position: relative;
	width: 104px;
	z-index: 2;
}

.ms-mobile-route-icon svg {
	height: 62px;
	width: 62px;
}

.ms-mobile-route-card h2,
.ms-mobile-route-card p,
.ms-mobile-route-card a {
	position: relative;
	z-index: 2;
}

.ms-mobile-route-card h2 {
	color: #fff !important;
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: .98;
	margin: 0 0 14px;
}

.ms-mobile-route-card p {
	color: rgba(255,255,255,.74);
	font-weight: 800;
	line-height: 1.65;
	margin: 0 0 22px;
}

.ms-area-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.ms-area-chip-grid span {
	align-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	color: rgba(255,255,255,.82);
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	gap: 7px;
	padding: 8px 11px;
}

.ms-area-chip-grid svg {
	color: #62dff5;
	height: 15px;
	width: 15px;
}

.ms-mobile-selector-section {
	background: var(--ms-soft);
}

.ms-support-cta-band {
	background: var(--ms-ink);
	color: #fff;
	text-align: center;
}

.ms-support-cta-band h2 {
	color: #fff;
	font-size: clamp(34px, 5vw, 58px);
	margin: 0 auto 14px;
	max-width: 780px;
}

.ms-support-cta-band p {
	color: rgba(255,255,255,.76);
	font-size: 18px;
	line-height: 1.7;
	margin: 0 auto 24px;
	max-width: 680px;
}

.ms-review-submit-panel .ms-hero-actions,
.ms-services-page .ms-support-panel .ms-hero-actions {
	justify-content: flex-start;
	margin: 0;
}

.ms-thank-you {
	background:
		linear-gradient(180deg, rgba(235,248,252,.74), rgba(255,255,255,.94) 42%),
		var(--ms-soft);
	padding: 32px 24px 58px;
}

.ms-thank-you .ms-wrap {
	max-width: 1160px;
}

.ms-thank-you-panel {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: 8px;
	box-shadow: 0 22px 54px rgba(12,45,57,.1);
	overflow: hidden;
}

.ms-thank-you-confirmation {
	align-items: end;
	background:
		linear-gradient(90deg, rgba(83,187,218,.14), rgba(255,255,255,0) 48%),
		#fff;
	border-bottom: 1px solid var(--ms-line);
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 0;
	padding: 24px;
}

.ms-thank-you-confirmation h1 {
	font-family: var(--ms-font-body);
	font-size: clamp(30px, 3.4vw, 42px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 10px 0 8px;
	max-width: 720px;
	text-transform: none;
}

.ms-thank-you-confirmation p {
	color: var(--ms-muted);
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
	max-width: 680px;
}

.ms-thank-you-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.ms-thank-you-actions .ms-button {
	min-height: 48px;
	padding: 12px 18px;
}

.ms-thank-you-grid {
	display: grid;
	gap: 0;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}

.ms-thank-you-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 22px 24px 24px;
	text-align: left;
}

.ms-thank-you-card + .ms-thank-you-card {
	border-left: 1px solid var(--ms-line);
}

.ms-thank-you-card h2 {
	font-family: var(--ms-font-body);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 16px;
	text-transform: none;
}

.ms-thank-you-list,
.ms-thank-you-steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ms-thank-you-list li {
	align-items: baseline;
	border-bottom: 1px solid var(--ms-line);
	display: grid;
	gap: 16px;
	grid-template-columns: 150px minmax(0, 1fr);
	padding: 9px 0;
}

.ms-thank-you-list li:first-child {
	padding-top: 0;
}

.ms-thank-you-list span,
.ms-thank-you-summary span {
	color: var(--ms-muted);
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ms-thank-you-list strong {
	font-size: 17px;
	line-height: 1.35;
	text-align: right;
	word-break: break-word;
}

.ms-thank-you-summary {
	border-top: 1px solid var(--ms-line);
	margin-top: 16px;
	padding-top: 16px;
}

.ms-thank-you-summary p,
.ms-thank-you-notes p {
	color: var(--ms-text);
	font-size: 16px;
	line-height: 1.55;
	margin: 10px 0 0;
	max-width: none;
}

.ms-thank-you-notes {
	margin-top: 16px;
}

.ms-thank-you-steps li {
	border-bottom: 1px solid var(--ms-line);
	color: var(--ms-text);
	font-size: 16px;
	line-height: 1.55;
	padding: 11px 0 11px 28px;
	position: relative;
}

.ms-thank-you-steps li::before {
	background: var(--ms-cyan);
	border-radius: 999px;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 20px;
	width: 8px;
}

.ms-thank-you-contact {
	background: rgba(83,187,218,.12);
	border: 1px solid rgba(83,187,218,.32);
	border-radius: 8px;
	margin-top: 16px;
	padding: 16px;
}

.ms-thank-you-contact span {
	color: var(--ms-muted);
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.ms-thank-you-contact p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 16px;
	max-width: none;
}

.ms-thank-you-o {
	background: linear-gradient(180deg, #eefbfe, #fff 70%);
	padding: 24px 24px 52px;
}

.ms-thank-you-o .ms-wrap {
	max-width: 1160px;
}

.ms-thank-you-motion {
	background:
		radial-gradient(circle at 20% 20%, rgba(83,187,218,.2), transparent 24%),
		radial-gradient(circle at 86% 72%, rgba(50,212,155,.16), transparent 26%),
		var(--ms-ink);
	border-radius: 14px;
	box-shadow: 0 28px 80px rgba(15,49,61,.16);
	color: #fff;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	min-height: clamp(500px, calc(100vh - 260px), 560px);
	overflow: hidden;
	position: relative;
}

.ms-thank-you-motion::before,
.ms-thank-you-motion::after {
	background: rgba(255,255,255,.06);
	border-radius: 999px;
	content: "";
	position: absolute;
}

.ms-thank-you-motion::before {
	animation: ms-thank-you-drift 9s ease-in-out infinite;
	height: 260px;
	left: -80px;
	top: -90px;
	width: 260px;
}

.ms-thank-you-motion::after {
	animation: ms-thank-you-drift-alt 11s ease-in-out infinite;
	bottom: -90px;
	height: 230px;
	right: -70px;
	width: 230px;
}

.ms-thank-you-motion-copy,
.ms-thank-you-motion-board {
	position: relative;
	z-index: 2;
}

.ms-thank-you-motion-copy {
	align-content: center;
	display: grid;
	gap: 16px;
	padding: 34px;
}

.ms-thank-you-motion-kicker {
	animation: ms-thank-you-fade-up .65s ease both;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	color: #8ee8f7;
	display: inline-flex;
	font-size: 11px;
	font-weight: 900;
	justify-self: start;
	letter-spacing: .08em;
	padding: 8px 14px;
	text-transform: uppercase;
}

.ms-thank-you-motion-copy h1 {
	animation: ms-thank-you-fade-up .65s .08s ease both;
	color: #fff;
	font-family: var(--ms-font-body);
	font-size: clamp(38px, 4.4vw, 58px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: .94;
	margin: 0;
	text-transform: none;
}

.ms-thank-you-motion-copy p {
	animation: ms-thank-you-fade-up .65s .16s ease both;
	color: rgba(255,255,255,.76);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.6;
	margin: 0;
	max-width: 540px;
}

.ms-thank-you-motion-ref {
	animation: ms-thank-you-fade-up .65s .24s ease both;
	align-items: center;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 10px;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
	max-width: 480px;
	padding: 15px;
}

.ms-thank-you-motion-ref span {
	color: #8ee8f7;
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.ms-thank-you-motion-ref strong {
	color: #fff;
	display: block;
	font-size: 28px;
	line-height: 1;
}

.ms-thank-you-motion-ref .ms-button {
	min-height: 46px;
	padding: 12px 18px;
}

.ms-thank-you-motion-chips {
	animation: ms-thank-you-fade-up .65s .36s ease both;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.ms-thank-you-motion-chips span {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	padding: 8px 11px;
}

.ms-thank-you-motion-board {
	align-content: center;
	display: grid;
	gap: 12px;
	padding: 28px;
}

.ms-thank-you-motion-card {
	animation: ms-thank-you-slide-in .6s ease both;
	background: #fff;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 12px;
	box-shadow: 0 18px 46px rgba(0,0,0,.16);
	color: var(--ms-ink);
	padding: 16px;
}

.ms-thank-you-motion-card:nth-child(2) {
	animation-delay: .12s;
	margin-left: 28px;
}

.ms-thank-you-motion-card:nth-child(3) {
	animation-delay: .24s;
	margin-left: 56px;
}

.ms-thank-you-motion-card h2 {
	color: var(--ms-ink);
	font-family: var(--ms-font-body);
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 8px;
	text-transform: none;
}

.ms-thank-you-motion-card p {
	color: var(--ms-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
	max-width: none;
}

@media (max-height: 850px) and (min-width: 801px) {
	.ms-thank-you-o {
		padding-top: 18px;
	}

	.ms-thank-you-motion {
		min-height: 460px;
	}

	.ms-thank-you-motion-copy {
		gap: 12px;
		padding: 28px 32px;
	}

	.ms-thank-you-motion-copy h1 {
		font-size: clamp(34px, 4vw, 50px);
		line-height: .98;
	}

	.ms-thank-you-motion-copy p {
		font-size: 15px;
		line-height: 1.45;
	}

	.ms-thank-you-motion-ref strong {
		font-size: 24px;
	}

	.ms-thank-you-motion-chips {
		gap: 8px;
		margin-top: 0;
	}

	.ms-thank-you-motion-board {
		gap: 10px;
		padding: 24px 28px;
	}

	.ms-thank-you-motion-card {
		padding: 14px 16px;
	}
}

.ms-thank-you-motion-card.is-active {
	border-color: rgba(83,187,218,.78);
	position: relative;
}

.ms-thank-you-motion-card.is-active::before {
	animation: ms-thank-you-pulse 1.7s ease-in-out infinite;
	background: var(--ms-cyan);
	border-radius: 999px;
	content: "";
	height: 12px;
	position: absolute;
	right: 18px;
	top: 20px;
	width: 12px;
}

@keyframes ms-thank-you-fade-up {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ms-thank-you-slide-in {
	from {
		opacity: 0;
		transform: translateX(22px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ms-thank-you-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(83,187,218,.34);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 0 12px rgba(83,187,218,0);
		transform: scale(1.12);
	}
}

@keyframes ms-thank-you-drift {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(34px, 22px, 0);
	}
}

@keyframes ms-thank-you-drift-alt {
	0%, 100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(-28px, -24px, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ms-thank-you-motion,
	.ms-thank-you-motion *,
	.ms-thank-you-motion::before,
	.ms-thank-you-motion::after {
		animation: none !important;
		transition: none !important;
	}
}

@media (max-width: 800px) {
	.ms-thank-you {
		padding: 28px 18px 56px;
	}

	.ms-thank-you-o {
		overflow: hidden;
		padding-left: 12px;
		padding-right: 12px;
	}

	.ms-thank-you-o .ms-wrap {
		max-width: 100%;
		width: 100%;
	}

	.ms-thank-you-confirmation {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.ms-thank-you-actions {
		justify-content: flex-start;
	}

	.ms-thank-you-grid {
		grid-template-columns: 1fr;
	}

	.ms-thank-you-card {
		padding: 24px 20px;
	}

	.ms-thank-you-list li {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.ms-thank-you-list strong {
		text-align: left;
	}

	.ms-thank-you-motion {
		box-sizing: border-box;
		grid-template-columns: 1fr;
		min-height: 0;
		margin: 0 auto;
		max-width: min(calc(100vw - 24px), 360px);
		width: min(calc(100vw - 24px), 360px);
	}

	.ms-thank-you-motion-copy,
	.ms-thank-you-motion-board {
		box-sizing: border-box;
		max-width: 100%;
		padding: 26px 20px;
		min-width: 0;
		width: 100%;
	}

	.ms-thank-you-motion-copy h1 {
		font-size: clamp(32px, 11vw, 42px);
		overflow-wrap: anywhere;
	}

	.ms-thank-you-motion-ref {
		grid-template-columns: 1fr;
		max-width: 100%;
		min-width: 0;
	}

	.ms-thank-you-motion-ref strong {
		font-size: 28px;
		overflow-wrap: anywhere;
	}

	.ms-thank-you-motion-ref .ms-button {
		justify-content: center;
		width: 100%;
	}

	.ms-thank-you-motion-card {
		box-sizing: border-box;
		min-width: 0;
		width: 100%;
	}

	.ms-thank-you-motion-card h2,
	.ms-thank-you-motion-card p {
		overflow-wrap: anywhere;
	}

	.ms-thank-you-motion-card:nth-child(2),
	.ms-thank-you-motion-card:nth-child(3) {
		margin-left: 0;
	}
}

.ms-wds-hero,
.ms-wds-single-hero {
	background: var(--ms-ink);
	color: #fff;
	overflow: hidden;
	padding: 68px 24px;
	position: relative;
}

.ms-wds-hero::before,
.ms-wds-single-hero::before {
	background:
		linear-gradient(90deg, transparent 0 15%, rgba(98,223,245,.18) 15.2% 15.35%, transparent 15.6%),
		linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,.1) 46.2% 46.35%, transparent 46.6%),
		linear-gradient(90deg, transparent 0 82%, rgba(98,223,245,.16) 82.2% 82.35%, transparent 82.6%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ms-wds-hero-grid,
.ms-wds-single-grid {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) 430px;
	position: relative;
	z-index: 2;
}

.ms-wds-hero h1,
.ms-wds-single-hero h1 {
	color: #fff;
	font-family: "Bowlby One SC", var(--ms-font-heading);
	font-size: clamp(46px, 6vw, 78px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: .96;
	margin: 0 0 20px;
	text-transform: none;
}

.ms-wds-hero h1 span,
.ms-wds-hero h1 strong {
	display: block;
	font: inherit;
}

.ms-wds-hero h1 strong {
	color: #62dff5;
}

.ms-wds-hero p,
.ms-wds-single-hero p {
	color: rgba(255,255,255,.78);
	font-size: 18px;
	line-height: 1.75;
	margin: 0 0 28px;
	max-width: 650px;
}

.ms-wds-visual,
.ms-wds-single-panel {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--ms-radius);
	box-shadow: 0 28px 70px rgba(0,0,0,.22);
	padding: 18px;
}

.ms-wds-browser {
	background: #f8fbfc;
	border-radius: 10px;
	color: var(--ms-ink);
	overflow: hidden;
}

.ms-wds-browser-bar {
	align-items: center;
	background: #eaf4f7;
	border-bottom: 1px solid rgba(14,52,65,.12);
	display: flex;
	gap: 8px;
	padding: 13px 15px;
}

.ms-wds-browser-bar span {
	background: var(--ms-cyan);
	border-radius: 50%;
	height: 10px;
	opacity: .8;
	width: 10px;
}

.ms-wds-browser-bar strong {
	color: var(--ms-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	margin-left: 6px;
	text-transform: uppercase;
}

.ms-wds-browser-stage {
	display: grid;
	gap: 16px;
	padding: 22px;
}

.ms-wds-signal-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: 10px;
	display: grid;
	gap: 16px;
	padding: 18px;
}

.ms-wds-signal-card .ms-signal-line {
	height: 54px;
	overflow: hidden;
}

.ms-wds-signal-card strong,
.ms-wds-signal-card span {
	display: block;
}

.ms-wds-signal-card strong {
	color: var(--ms-ink);
	font-family: var(--ms-font-heading);
	font-size: 22px;
	line-height: 1;
}

.ms-wds-signal-card span {
	color: var(--ms-muted);
	line-height: 1.55;
}

.ms-wds-mini-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ms-wds-mini-grid span {
	align-items: center;
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: 8px;
	color: var(--ms-ink);
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	gap: 8px;
	padding: 12px;
}

.ms-wds-mini-grid svg {
	color: var(--ms-cyan-dark);
	height: 18px;
	width: 18px;
}

.ms-wds-services-section {
	background: var(--ms-soft);
}

.ms-wds-service-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ms-wds-service-card {
	background: #fff;
	border: 1px solid var(--ms-line);
	border-radius: var(--ms-radius);
	box-shadow: 0 12px 34px rgba(14,52,65,.06);
	color: var(--ms-ink);
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	min-height: 265px;
	padding: 28px;
	text-decoration: none;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.ms-wds-service-card:hover {
	border-color: rgba(0,180,216,.45);
	box-shadow: 0 18px 42px rgba(14,52,65,.11);
	color: var(--ms-ink);
	transform: translateY(-3px);
}

.ms-wds-service-card > svg {
	background: var(--ms-cyan-soft);
	border-radius: 10px;
	color: var(--ms-cyan-dark);
	height: 54px;
	margin-bottom: 18px;
	padding: 13px;
	width: 54px;
}

.ms-wds-service-card h3 {
	color: var(--ms-ink);
	font-size: 24px;
	line-height: 1.1;
	margin: 0 0 12px;
}

.ms-wds-service-card p {
	color: var(--ms-muted);
	line-height: 1.65;
	margin: 0 0 20px;
}

.ms-wds-service-card span {
	color: var(--ms-cyan-dark);
	font-weight: 900;
}

.ms-wds-process-section,
.ms-wds-related-section {
	background: #fff;
}

.ms-wds-single-panel {
	align-content: center;
	display: grid;
	gap: 18px;
	min-height: 330px;
}

.ms-wds-single-panel > svg {
	background: rgba(98,223,245,.12);
	border: 1px solid rgba(98,223,245,.2);
	border-radius: 16px;
	color: #62dff5;
	height: 96px;
	padding: 24px;
	width: 96px;
}

.ms-wds-single-panel strong,
.ms-wds-single-panel span {
	display: block;
	position: relative;
	z-index: 2;
}

.ms-wds-single-panel strong {
	color: #fff;
	font-family: var(--ms-font-heading);
	font-size: 28px;
	line-height: 1;
}

.ms-wds-single-panel span {
	color: rgba(255,255,255,.72);
	font-weight: 800;
	line-height: 1.6;
}

.ms-wds-single-panel .ms-signal-line {
	height: 64px;
	opacity: .6;
	overflow: hidden;
}

.ms-wds-article {
	color: var(--ms-text);
	font-size: 18px;
	line-height: 1.75;
}

.ms-wds-article h2,
.ms-wds-article h3 {
	color: var(--ms-ink);
	line-height: 1.1;
	margin: 32px 0 14px;
}

.ms-wds-article h2:first-child,
.ms-wds-article h3:first-child {
	margin-top: 0;
}

.ms-wds-article p,
.ms-wds-article li {
	color: var(--ms-text);
}

.ms-site-footer {
	background: var(--ms-ink);
	color: rgba(255,255,255,.72);
}

.ms-footer-contact-strip {
	background: #f4f8fa;
	border-top: 1px solid var(--ms-line);
	color: var(--ms-ink);
}

.ms-footer-contact-strip .ms-wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	justify-content: center;
	padding: 22px 24px;
}

.ms-footer-contact-strip a,
.ms-footer-contact-strip span {
	align-items: center;
	color: var(--ms-ink);
	display: inline-flex;
	font-weight: 900;
	gap: 8px;
	text-decoration: none;
}

.ms-footer-contact-strip svg {
	color: var(--ms-cyan-dark);
	height: 18px;
	width: 18px;
}

.ms-footer-inner {
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(260px, 1.5fr) minmax(150px, .75fr) minmax(150px, .75fr) minmax(230px, 1fr);
	margin: 0 auto;
	max-width: var(--ms-wrap);
	padding: 64px 24px 48px;
}

.ms-footer-logo {
	display: inline-block;
	line-height: 0;
	margin-bottom: 24px;
}

.ms-footer-logo img {
	width: min(330px, 100%);
}

.ms-footer-brand p {
	font-size: 20px;
	line-height: 1.7;
	margin: 0 0 42px;
	max-width: 390px;
}

.ms-footer-brand address {
	color: rgba(255,255,255,.62);
	font-style: normal;
	line-height: 1.8;
	margin: 0 0 16px;
}

.ms-footer-phone {
	color: var(--ms-cyan);
	font-size: 20px;
	font-weight: 900;
	text-decoration: none;
}

.ms-footer-column {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.ms-footer-column h2 {
	color: var(--ms-cyan);
	font-family: var(--ms-font-heading);
	font-size: 22px;
	letter-spacing: .08em;
	line-height: 1;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.ms-footer-column a,
.ms-footer-hours span {
	color: rgba(255,255,255,.62);
	font-size: 18px;
	line-height: 1.35;
	text-decoration: none;
}

.ms-footer-column a:hover,
.ms-footer-phone:hover {
	color: #fff;
}

.ms-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	margin: 0 auto;
	max-width: var(--ms-wrap);
	padding: 24px;
	text-align: center;
}

.ms-footer-bottom p {
	color: rgba(255,255,255,.36);
	font-size: 13px;
	font-weight: 800;
	margin: 0;
}

@media (max-width: 900px) {
	html,
	body {
		max-width: 100%;
		overflow-x: clip;
		width: 100%;
	}

	body.ms-menu-is-open {
		overflow: hidden;
	}

	.ms-header-inner {
		min-height: 0;
		padding: 0;
	}

	.ms-logo-bar {
		max-width: 100%;
		padding: 8px 18px;
		width: 100%;
	}

	.ms-logo-banner {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.ms-logo-banner img {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		width: min(405px, calc(100vw - 36px));
	}

	.ms-menu-toggle {
		align-items: center;
		background: rgba(255,255,255,.94);
		border: 1px solid var(--ms-line);
		border-radius: 8px 0 0 8px;
		border-right: 0;
		box-shadow: -10px 0 28px rgba(14,52,65,.14);
		color: var(--ms-ink);
		display: inline-flex;
		font-size: 13px;
		font-weight: 900;
		justify-content: center;
		min-height: 86px;
		min-width: 42px;
		padding: 10px 8px;
		position: fixed;
		right: 0;
		top: 150px;
		writing-mode: vertical-rl;
		z-index: 120;
	}

	.home .ms-menu-toggle {
		top: 190px;
	}

	.ms-menu-toggle[aria-expanded="true"] {
		background: var(--ms-ink);
		border-color: var(--ms-ink);
		color: #fff;
	}

	.ms-header-cta {
		display: none;
	}

	.ms-menu-backdrop {
		background: rgba(14,52,65,.42);
		border: 0;
		bottom: 0;
		display: block;
		left: 0;
		opacity: 0;
		padding: 0;
		pointer-events: none;
		position: fixed;
		right: 0;
		top: 0;
		transition: opacity .2s ease, visibility .2s ease;
		visibility: hidden;
		z-index: 100;
	}

	.ms-menu-backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
	}

	.ms-primary-nav {
		background: #fff;
		border-right: 1px solid var(--ms-line);
		bottom: 0;
		box-shadow: 18px 0 44px rgba(14,52,65,.18);
		display: block;
		left: 0;
		max-width: min(86vw, 340px);
		overflow-y: auto;
		padding: 74px 18px 24px;
		position: fixed;
		top: 0;
		transform: translateX(-105%);
		transition: transform .24s ease;
		width: min(86vw, 340px);
		z-index: 110;
	}

	.ms-primary-nav.is-open {
		transform: translateX(0);
	}

	.ms-nav-list {
		align-items: stretch;
		flex-direction: column;
		padding: 8px 0 12px;
	}

	.ms-nav-list a {
		border: 1px solid var(--ms-line);
	}

	.ms-nav-list .sub-menu {
		background: transparent;
		border: 0;
		box-shadow: none;
		display: none;
		margin: 6px 0 8px 16px;
		min-width: 0;
		opacity: 1;
		padding: 0;
		position: static;
		transform: none;
		visibility: visible;
	}

	.ms-nav-list .is-submenu-open > .sub-menu {
		display: grid;
	}

	.ms-nav-list .sub-menu::before {
		display: none;
	}

	.ms-nav-list .sub-menu a {
		background: #fff;
		font-size: 13px;
	}

	.ms-card-grid,
	.ms-card-grid.ms-card-grid-four,
	.ms-landing-action-list,
	.ms-landing-link-list,
	.ms-landing-hero-grid,
	.ms-landing-main-grid,
	.ms-repair-hero-grid,
	.ms-repair-layout,
	.ms-form-layout,
	.ms-contact-grid,
	.ms-two-column,
	.ms-portal-hero-grid,
	.ms-portal-lead-grid,
	.ms-portal-workflow-grid,
	.ms-mobile-lead-grid,
	.ms-wds-hero-grid,
	.ms-wds-single-grid,
	.ms-footer-inner {
		grid-template-columns: 1fr;
	}

	.ms-landing-first-screen {
		min-height: calc(100svh - 75px);
	}

	.ms-landing-hero {
		overflow: clip;
		text-align: center;
	}

	.ms-landing-hero > .ms-wrap,
	.ms-landing-hero-grid,
	.ms-landing-main > .ms-wrap,
	.ms-landing-main-grid,
	.ms-landing-content,
	.ms-landing-sidebar {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.ms-landing-hero-grid > *,
	.ms-landing-main-grid > * {
		min-width: 0;
	}

	.ms-landing-hero .ms-hero-actions {
		justify-content: center;
	}

	.ms-landing-hero-bullets {
		justify-content: center;
	}

	.ms-landing-map-card {
		text-align: left;
	}

	.ms-landing-sidebar {
		position: static;
	}

	.ms-repair-hero {
		text-align: center;
	}

	.ms-repair-hero .ms-hero-actions,
	.ms-portal-hero-copy .ms-hero-actions,
	.ms-repair-hero-bullets,
	.ms-repair-breadcrumb {
		justify-content: center;
	}

	.ms-portal-hero-b {
		padding-top: 54px;
		text-align: center;
	}

	.ms-portal-dashboard {
		margin: 0 auto;
		max-width: 560px;
		text-align: left;
		width: 100%;
	}

	.ms-portal-hero-copy h1,
	.ms-portal-hero-copy p {
		margin-left: auto;
		margin-right: auto;
	}

	.ms-repair-summary {
		margin: 0 auto;
		max-width: 430px;
		width: 100%;
	}

	.ms-repair-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ms-landing-review-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ms-support-trust .ms-wrap,
	.ms-feature-grid,
	.ms-service-grid,
	.ms-portal-feature-grid,
	.ms-wds-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ms-home-hero {
		padding-top: 28px;
	}

	.ms-home-hero h1 {
		font-size: clamp(48px, 8vw, 66px);
	}

	.ms-home-route-panel.is-large,
	.ms-home-route-panel.is-medium,
	.ms-home-route-panel.is-accent,
	.ms-home-route-panel.is-small {
		grid-column: span 6;
	}
}

@media (min-width: 901px) and (max-height: 1000px) {
	.ms-home-hero {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: calc(100vh - 283px);
	}

	.ms-home-hero > .ms-wrap {
		width: 100%;
	}
}

@media (min-width: 901px) {
	.page-template-page-landing .ms-landing-first-screen {
		position: relative;
	}

	.page-template-page-landing .ms-landing-hero {
		align-items: center;
		display: flex;
		min-height: calc(100svh - 143px);
		padding-bottom: 170px;
		padding-top: 34px;
	}

	.page-template-page-landing .ms-landing-first-screen > .ms-home-stats {
		bottom: 0;
		left: 0;
		position: absolute;
		right: 0;
		z-index: 3;
	}

	.page-template-page-landing .ms-landing-hero > .ms-wrap {
		width: 100%;
	}

	.page-template-page-landing .ms-landing-hero-grid {
		gap: 36px;
		grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
	}

	.page-template-page-landing .ms-landing-hero h1 {
		font-size: clamp(36px, 4.7vw, 52px);
		margin-bottom: 14px;
		max-width: 720px;
	}

	.page-template-page-landing .ms-landing-hero p {
		font-size: 17px;
		line-height: 1.65;
		margin-bottom: 22px;
		max-width: 680px;
	}

	.page-template-page-landing .ms-landing-hero .ms-hero-actions {
		gap: 12px;
	}

	.page-template-page-landing .ms-landing-hero-bullets {
		display: flex;
		margin-top: 12px;
	}

	.page-template-page-landing .ms-landing-hero-bullets li {
		min-height: 46px;
	}

	.page-template-page-landing .ms-landing-map-frame {
		height: 194px;
	}

	.page-template-page-landing .ms-landing-map-card > div:last-child {
		padding: 18px;
	}
}

@media (max-width: 640px) {
	.ms-topline {
		align-items: center;
		flex-direction: column;
		gap: 2px;
	}

	.ms-hero {
		padding-top: 52px;
	}

	.ms-page-hero {
		padding: 20px 18px 38px;
	}

	.ms-page-hero h1 {
		font-size: 42px;
	}

	.ms-support-hero {
		padding: 44px 18px 52px;
	}

	.ms-support-hero h1 {
		font-size: clamp(38px, 12vw, 56px);
	}

	.ms-support-hero p,
	.ms-support-intro p {
		font-size: 16px;
	}

	.ms-support-trust .ms-wrap,
	.ms-feature-grid,
	.ms-service-grid {
		grid-template-columns: 1fr;
	}

	.ms-support-trust div {
		border-right: 0;
		border-bottom: 1px solid var(--ms-line);
	}

	.ms-support-trust div:last-child {
		border-bottom: 0;
	}

	.ms-support-panel,
	.ms-support-side-card,
	.ms-support-card,
	.ms-service-card {
		padding: 22px;
	}

	.ms-review-submit-panel .ms-hero-actions,
	.ms-services-page .ms-support-panel .ms-hero-actions {
		justify-content: center;
	}

	.ms-home-hero {
		flex: 1 1 auto;
		padding: 18px 0 26px;
	}

	.ms-home-first-screen {
		min-height: calc(100svh - 75px);
	}

	.ms-home-hero-inner {
		padding: 0 18px;
	}

	.ms-home-hero .ms-kicker {
		margin-bottom: 22px;
	}

	.ms-home-hero h1 {
		font-size: clamp(32px, 10vw, 42px);
		line-height: .95;
		margin-bottom: 24px;
	}

	.ms-section-title {
		font-size: clamp(34px, 10vw, 44px);
		line-height: 1;
	}

	.ms-home-final .ms-section-title {
		font-size: clamp(32px, 9vw, 40px);
	}

	.ms-home-hero-copy {
		font-size: 18px;
		line-height: 1.6;
		margin: 0 auto 30px;
	}

	.ms-home-cta-zone {
		margin-top: 12px;
		max-width: 100%;
	}

	.ms-home-cta-wave {
		height: 138px;
		top: -28px;
		width: calc(100vw - 8px);
	}

	.ms-home-wave-desktop {
		display: none;
	}

	.ms-home-wave-mobile {
		display: block;
	}

	.ms-home-hero-button {
		font-size: 18px;
		min-height: 62px;
		min-width: 232px;
	}

	.ms-home-chip-row {
		gap: 10px;
	}

	.ms-home-chip-row li {
		font-size: 14px;
	}

	.ms-home-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-left: auto;
		margin-right: auto;
		margin-top: 14px;
		max-width: calc(100vw - 36px);
		padding: 0 0 18px;
		width: min(100%, calc(100vw - 36px));
	}

	.ms-home-first-screen > .ms-home-stats {
		padding-bottom: 0;
	}

	body.page-template-page-landing .ms-landing-first-screen > .ms-home-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		margin-left: auto;
		margin-right: auto;
		max-width: calc(100vw - 36px);
		padding: 0;
		width: min(100%, calc(100vw - 36px));
	}

	.page-template-page-landing .ms-landing-hero {
		align-items: stretch;
		min-height: 0;
	}

	body.page-template-page-landing .ms-home-stat {
		min-width: 0;
		overflow: hidden;
		padding: 12px 8px;
	}

	body.page-template-page-landing .ms-home-stat strong {
		font-size: 28px;
	}

	body.page-template-page-landing .ms-home-stat span {
		font-size: 11px;
		letter-spacing: .06em;
	}

	.ms-homepage > .ms-home-stats,
	.ms-home-first-screen > .ms-home-stats {
		margin-top: 10px;
	}

	.ms-homepage .ms-home-stat {
		min-width: 0;
		overflow: hidden;
		padding: 18px 8px;
	}

	.ms-homepage .ms-home-stat strong {
		font-size: 28px;
	}

	.ms-homepage .ms-home-stat span {
		font-size: 11px;
		letter-spacing: .06em;
	}

	.ms-home-stat:first-child,
	.ms-home-stat:last-child {
		border-radius: 12px;
	}

	.ms-homepage .ms-home-stat:first-child {
		border-radius: 12px 0 0 0;
	}

	.ms-homepage .ms-home-stat:nth-child(2) {
		border-radius: 0 12px 0 0;
	}

	.ms-homepage .ms-home-stat:nth-child(3) {
		border-radius: 0 0 0 12px;
	}

	.ms-homepage .ms-home-stat:last-child {
		border-radius: 0 0 12px 0;
	}

	.page-template-page-landing .ms-home-stat:first-child {
		border-radius: 12px 0 0 0;
	}

	.page-template-page-landing .ms-home-stat:nth-child(2) {
		border-radius: 0 12px 0 0;
	}

	.page-template-page-landing .ms-home-stat:nth-child(3) {
		border-radius: 0 0 0 12px;
	}

	.page-template-page-landing .ms-home-stat:last-child {
		border-radius: 0 0 12px 0;
	}

	.ms-home-route-grid,
	.ms-home-proof-grid,
	.ms-portal-feature-grid,
	.ms-wds-service-grid,
	.ms-wds-mini-grid {
		grid-template-columns: 1fr;
	}

	.ms-portal-dashboard-grid,
	.ms-portal-cta-band .ms-wrap {
		grid-template-columns: 1fr;
	}

	.ms-portal-cta-band {
		text-align: center;
	}

	.ms-portal-job-row {
		grid-template-columns: 40px minmax(0, 1fr);
	}

	.ms-portal-job-row em {
		grid-column: 2;
		justify-self: start;
	}

	.ms-process-step {
		grid-template-columns: 46px minmax(0, 1fr);
	}

	.ms-process-step strong {
		font-size: 16px;
		height: 46px;
		width: 46px;
	}

	.ms-home-route-panel.is-large,
	.ms-home-route-panel.is-medium,
	.ms-home-route-panel.is-accent,
	.ms-home-route-panel.is-small {
		grid-column: span 1;
	}

	.ms-booking-selector-section {
		margin-top: -38px;
		padding-bottom: 18px;
	}

	.ms-booking-selector-section .msrs-wrap .hp-service-picker {
		padding-bottom: 8px !important;
		padding-top: 14px !important;
	}

	.ms-booking-support {
		margin-top: -8px;
		padding-top: 0;
	}

	.ms-section {
		padding: 52px 18px;
	}

	.ms-stat-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ms-landing-hero {
		padding: 24px 14px 22px;
	}

	.ms-landing-hero-grid {
		align-content: space-evenly;
		gap: 16px;
		min-height: 0;
	}

	.ms-landing-hero h1 {
		font-size: 24px;
		line-height: 1.1;
		margin-left: auto;
		margin-right: auto;
		max-width: min(100%, 318px);
		overflow-wrap: break-word;
		text-wrap: balance;
	}

	.ms-landing-hero p {
		font-size: 15px;
		line-height: 1.48;
		margin-bottom: 18px;
		margin-left: auto;
		margin-right: auto;
		max-width: min(100%, 340px);
		overflow-wrap: break-word;
	}

	.ms-landing-hero .ms-kicker {
		max-width: calc(100vw - 48px);
		white-space: normal;
	}

	.ms-landing-hero .ms-button {
		max-width: calc(100vw - 48px);
		white-space: normal;
	}

	.ms-landing-hero .ms-hero-actions {
		margin-bottom: 12px;
	}

	.ms-landing-hero-bullets {
		font-size: 13px;
		gap: 8px;
	}

	.ms-landing-hero-bullets li {
		min-height: 32px;
		padding: 7px 9px;
	}

	.ms-landing-hero .ms-landing-map-card {
		margin-top: 0;
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	.ms-landing-hero .ms-landing-map-frame {
		height: 104px;
	}

	.ms-landing-hero .ms-landing-map-card > div:last-child {
		padding: 12px;
	}

	.ms-landing-hero .ms-landing-map-card strong {
		font-size: 16px;
		margin-bottom: 4px;
	}

	.ms-landing-hero .ms-landing-map-card p {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.ms-landing-hero .ms-landing-map-card a {
		overflow-wrap: anywhere;
	}

	.ms-landing-main {
		padding: 22px 14px;
	}

	.ms-repair-hero {
		padding: 52px 18px;
	}

	.ms-repair-hero h1 {
		font-size: 48px;
	}

	.ms-repair-body {
		padding: 22px 14px 52px;
	}

	.ms-landing-section,
	.ms-landing-cta,
	.ms-landing-side-card {
		padding: 22px;
	}

	.ms-repair-facts {
		grid-template-columns: 1fr;
	}

	.ms-repair-summary dl div {
		gap: 4px;
		grid-template-columns: 1fr;
	}

	.ms-landing-trust .ms-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ms-landing-trust div:nth-child(2) {
		border-right: 0;
	}

	.ms-landing-trust div:nth-child(1),
	.ms-landing-trust div:nth-child(2) {
		border-bottom: 1px solid var(--ms-line);
	}

	.ms-landing-action-card {
		padding: 16px;
	}

	.ms-landing-reviews {
		padding: 34px 14px;
	}

	.ms-landing-review-list {
		grid-template-columns: 1fr;
	}

	.ms-stat:nth-child(2) {
		border-right: 0;
	}

	.ms-stat:nth-child(1),
	.ms-stat:nth-child(2) {
		border-bottom: 1px solid var(--ms-line);
	}

	.ms-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
