: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%;
}

.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);
	z-index: 50;
}

.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;
	padding: 0 24px 13px;
}

.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;
}

.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: 80;
}

.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-hero {
	background: #fff;
	border-bottom: 0;
	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 {
	margin-top: 8px;
	position: relative;
	z-index: 2;
}

.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-hero {
	background: var(--ms-ink);
	color: #fff;
	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(38px, 5.8vw, 62px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: .98;
	margin: 0 0 18px;
	max-width: 820px;
	overflow-wrap: anywhere;
	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 {
	justify-content: flex-start;
	margin-bottom: 18px;
}

.ms-landing-hero-bullets {
	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-left: 4px solid var(--ms-cyan);
	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 {
	color: var(--ms-ink);
	cursor: pointer;
	font-weight: 900;
}

.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-size: clamp(32px, 4vw, 46px);
	line-height: 1.02;
	margin: 12px 0 10px;
}

.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: 128px;
}

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

.ms-landing-side-card h2 {
	font-size: 24px;
	line-height: 1.15;
	margin: 0 0 10px;
}

.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(36px, 5vw, 56px);
	line-height: 1;
	margin: 0 0 16px;
}

.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-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;
}

.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: 0 7px 0 var(--ms-ink);
	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-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-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-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-hero {
	padding-bottom: 54px;
	padding-top: 32px;
}

.ms-thank-you {
	background: var(--ms-soft);
	padding: 36px 24px 72px;
}

.ms-thank-you-intro {
	margin: 0 auto 28px;
	max-width: 860px;
	text-align: center;
}

.ms-thank-you-intro .ms-section-title {
	font-size: clamp(34px, 5vw, 58px);
	margin-bottom: 12px;
}

.ms-thank-you-intro p {
	color: var(--ms-muted);
	font-size: 18px;
	margin: 0 auto;
	max-width: 620px;
}

.ms-thank-you-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 28px auto 0;
	max-width: 1060px;
	width: 100%;
}

.ms-thank-you-card {
	padding: 28px;
	text-align: left;
}

.ms-thank-you-card h2 {
	font-family: var(--ms-font-heading);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1;
	margin: 0 0 18px;
}

.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: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 14px 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: 18px;
	line-height: 1.35;
	text-align: right;
}

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

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

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

.ms-thank-you-steps li {
	border-bottom: 1px solid var(--ms-line);
	color: var(--ms-text);
	font-size: 17px;
	line-height: 1.6;
	padding: 14px 0 14px 26px;
	position: relative;
}

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

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

.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;
	margin: 0 0 16px;
	max-width: none;
}

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

	.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-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) {
	.ms-header-inner {
		flex-wrap: wrap;
		min-height: 68px;
		padding: 8px 18px 12px;
	}

	.ms-logo-bar {
		padding: 10px 18px 2px;
	}

	.ms-logo-banner img {
		width: min(405px, calc(100vw - 36px));
	}

	.ms-menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

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

	.ms-primary-nav {
		display: none;
		flex-basis: 100%;
		order: 5;
	}

	.ms-primary-nav.is-open {
		display: block;
	}

	.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-lead-grid,
	.ms-mobile-lead-grid,
	.ms-wds-hero-grid,
	.ms-wds-single-grid,
	.ms-footer-inner {
		grid-template-columns: 1fr;
	}

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

	.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-repair-hero-bullets,
	.ms-repair-breadcrumb {
		justify-content: center;
	}

	.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 (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 {
		padding: 14px 0 20px;
	}

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

	.ms-home-hero h1 {
		font-size: clamp(34px, 11vw, 48px);
		line-height: .95;
	}

	.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: 20px auto 24px;
	}

	.ms-home-cta-zone {
		margin-top: 8px;
		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: 1fr;
		margin-top: 16px;
		padding: 0 18px 18px;
	}

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

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

	.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-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: 52px 18px;
	}

	.ms-landing-hero h1 {
		font-size: 30px;
		line-height: 1.08;
		margin-left: auto;
		margin-right: auto;
		max-width: 330px;
	}

	.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;
	}
}
