@charset "UTF-8";

:root {
	--bg: #ffffff;
	--bg-soft: #f4f8ff;
	--text: #07111f;
	--muted: #607086;
	--line: #e3ebf6;
	--blue: #1768ff;
	--blue-dark: #0b4ee4;
	--cyan: #10b5d8;
	--green: #19b982;
	--orange: #ff8a1f;
	--pink: #f05a9d;
	--violet: #8b5cf6;
	--radius: 30px;
	--shadow: 0 24px 80px rgba(15, 35, 70, .12);
	--shadow-soft: 0 18px 50px rgba(15, 35, 70, .08);
	--container: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

[id] {
	scroll-margin-top: 118px;
}

.entry-content,
.page-shell .entry-content,
.single-shell .entry-content {
	overflow-wrap: anywhere;
}

.entry-content img,
.entry-content video,
.entry-content iframe,
.entry-content svg,
.entry-content table {
	max-width: 100%;
	height: auto;
}

.entry-content .ym-table-wrap,
.entry-content .ym-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--bg);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

body.menu-open::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(15, 23, 42, 0.45);
	pointer-events: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.repair-header a,
.repair-main a,
.repair-footer a,
.repair-button {
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.repair-ai-geo-context {
	position: relative;
	z-index: 5;
	width: var(--container);
	margin: 112px auto -126px;
	background: transparent;
}

.repair-ai-geo-context__inner {
	width: 100%;
	margin: 0;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #334155;
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 26px;
	box-shadow: 0 18px 52px rgba(15, 23, 42, .10);
	backdrop-filter: blur(18px);
	font-size: 12px;
	line-height: 1.34;
}

.repair-ai-geo-context__inner p {
	margin: 0;
	flex: 1;
}

.repair-ai-geo-context__link {
	flex: 0 0 auto;
	color: var(--blue-dark);
	font-weight: 800;
	white-space: nowrap;
}

.repair-ai-geo-context__mobile-bar {
	display: none;
}

@media (max-width: 720px) {
	.repair-ai-geo-context {
		width: min(100% - 28px, 420px);
		margin-top: 88px;
		margin-bottom: -72px;
	}

	.repair-ai-geo-context__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
		padding: 6px 10px;
		border-radius: 14px;
		font-size: 9px;
		line-height: 1.22;
	}

	.repair-ai-geo-context__link {
		display: none;
	}

	.repair-ai-geo-context__mobile-bar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		margin-top: 6px;
	}

	.repair-ai-geo-context__phone,
	.repair-ai-geo-context__cta {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 38px;
		padding: 0 8px;
		border-radius: 12px;
		font-size: 11px;
		font-weight: 800;
		text-align: center;
		text-decoration: none;
		white-space: nowrap;
	}

	.repair-ai-geo-context__phone {
		color: #1768ff;
		background: rgba(23, 104, 255, 0.08);
		border: 1px solid rgba(23, 104, 255, 0.18);
	}

	.repair-ai-geo-context__cta {
		color: #fff;
		background: linear-gradient(135deg, var(--blue), var(--blue-dark));
		box-shadow: 0 8px 20px rgba(23, 104, 255, 0.22);
	}
}

@media (max-width: 420px) {
	.repair-ai-geo-context__phone,
	.repair-ai-geo-context__cta {
		font-size: 10px;
		min-height: 36px;
	}
}

button,
input {
	font: inherit;
}

img,
iframe {
	max-width: 100%;
}

[hidden] {
	display: none !important;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--text);
	color: #fff;
	border-radius: 12px;
}

.repair-main {
	position: relative;
	overflow: hidden;
}

.repair-header {
	position: fixed;
	top: 24px;
	left: 50%;
	z-index: 1000;
	width: min(1280px, calc(100vw - 48px));
	transform: translateX(-50%);
	transition: top .25s ease, box-shadow .25s ease, background .25s ease;
}

.admin-bar .repair-header {
	top: 56px;
}

.repair-header.is-scrolled {
	top: 14px;
}

.admin-bar .repair-header.is-scrolled {
	top: 42px;
}

.repair-header__inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 70px;
	padding: 10px 14px 10px 18px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 999px;
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 16px 50px rgba(15, 23, 42, .10);
	backdrop-filter: blur(22px);
}

.repair-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	min-width: 0;
}

.repair-logo__mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), #54d8ae);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(23, 104, 255, .35);
}

.repair-logo__text {
	display: grid;
	line-height: 1.08;
}

.repair-logo__text strong {
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0;
}

.repair-logo__text small {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.repair-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.repair-nav ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border-radius: 999px;
	background: #f1f5fb;
	border: 1px solid rgba(15, 23, 42, .04);
}

.repair-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	color: #263346;
	font-size: 14px;
	font-weight: 850;
	white-space: nowrap;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.repair-nav a:hover,
.repair-nav a:focus-visible {
	color: var(--text);
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
	outline: none;
}

.repair-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	box-shadow: 0 14px 30px rgba(23, 104, 255, .32);
	font-size: 14px;
	font-weight: 900;
	white-space: nowrap;
}

.repair-header__cta--tel {
	display: none;
}

.repair-header__cta--chat {
	display: none;
}

.repair-header__cta--quiz {
	display: inline-flex;
}

.repair-nav__cta-item--tel {
	display: none;
}

[id^="article-quick-search"],
#quick-search {
	scroll-margin-top: 120px;
}

.repair-nav__chat-link {
	color: #fff !important;
	background: linear-gradient(135deg, #f58220, #ee8208) !important;
	box-shadow: 0 8px 20px rgba(238, 130, 8, 0.28);
}

.repair-floating-actions {
	position: fixed;
	right: max(14px, env(safe-area-inset-right, 0px));
	bottom: max(18px, env(safe-area-inset-bottom, 0px));
	z-index: 9990;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
	width: min(220px, calc(100vw - 28px));
	pointer-events: none;
}

.repair-floating-actions a {
	pointer-events: auto;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.repair-floating-actions a:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.repair-floating-actions__call--tel {
	display: none !important;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff !important;
}

.repair-floating-actions__call--quiz {
	display: inline-flex !important;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff !important;
}

.repair-floating-actions__chat {
	display: inline-flex !important;
	background: linear-gradient(135deg, #f58220, #ee8208);
	color: #fff !important;
	box-shadow: 0 14px 34px rgba(238, 130, 8, 0.32);
}

@media (max-width: 1024px) {
	.repair-floating-actions__call--quiz {
		display: none !important;
	}

	.repair-floating-actions__call--tel {
		display: inline-flex !important;
	}

	.repair-floating-actions {
		width: min(200px, calc(100% - 24px));
	}
}

.repair-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: #f1f5fb;
	cursor: pointer;
}

.repair-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: var(--text);
}

.repair-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0 26px;
	border: 0;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.repair-button:hover,
.repair-button:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.repair-button--primary {
	color: #fff;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	box-shadow: 0 14px 30px rgba(23, 104, 255, .30);
}

.repair-button--light {
	color: var(--text);
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.repair-button--ghost {
	color: var(--text);
	background: #f4f8ff;
	border: 1px solid var(--line);
}

.repair-kicker,
.repair-badge {
	margin: 0 0 14px;
	color: var(--blue);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.repair-kicker__link {
	color: inherit;
	text-decoration: none !important;
}

.repair-kicker__link:hover,
.repair-kicker__link:focus-visible {
	color: var(--blue-dark);
	outline: none;
}

.repair-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text);
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.repair-badge span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 6px rgba(25, 185, 130, .13);
}

.repair-section-head {
	width: var(--container);
	margin: 0 auto 44px;
}

.repair-section-head--center {
	text-align: center;
}

.repair-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.repair-section-head h2 {
	max-width: 880px;
	margin: 0;
	color: var(--text);
	font-size: clamp(34px, 4.2vw, 62px);
	font-weight: 950;
	line-height: .98;
	letter-spacing: 0;
}

.repair-section-head--center h2 {
	margin-right: auto;
	margin-left: auto;
}

.repair-section-head p:not(.repair-kicker) {
	max-width: 720px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 18px;
	font-weight: 650;
}

.repair-section-head--center p:not(.repair-kicker) {
	margin-right: auto;
	margin-left: auto;
}

.repair-section-more {
	display: flex;
	justify-content: center;
	width: var(--container);
	margin: 30px auto 0;
}

.repair-hero {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: 140px 24px 64px;
	overflow: hidden;
	background: #fff;
	text-align: center;
}

.repair-orbits {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1.5px dashed rgba(23, 104, 255, .18);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.orbit--one {
	width: 980px;
	height: 980px;
	animation: orbit-spin 160s linear infinite;
}

.orbit--two {
	width: 1350px;
	height: 1350px;
	animation: orbit-spin-reverse 220s linear infinite;
}

.orbit--three {
	width: 1720px;
	height: 1720px;
	border-style: solid;
	opacity: .7;
	animation: orbit-spin 260s linear infinite;
}

@keyframes orbit-spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
	to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.repair-stickers {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.repair-hero-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.repair-sticker {
	position: absolute;
	display: grid;
	grid-template-columns: 36px 1fr;
	grid-template-areas:
		"icon title"
		"icon meta";
	align-items: center;
	column-gap: 12px;
	width: 228px;
	min-height: 58px;
	padding: 8px 18px 8px 10px;
	border-radius: 999px;
	color: #fff;
	text-align: left;
	box-shadow: 0 18px 38px rgba(15, 23, 42, .15);
	animation: sticker-float var(--duration, 9s) ease-in-out infinite alternate;
}

.repair-sticker svg {
	grid-area: icon;
	width: 36px;
	height: 36px;
	padding: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .24);
	filter: drop-shadow(0 8px 14px rgba(15, 23, 42, .18));
	animation: hero-icon-breathe 2.6s ease-in-out infinite;
}

.repair-sticker b {
	grid-area: title;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.05;
}

.repair-sticker small {
	grid-area: meta;
	font-size: 11px;
	font-weight: 800;
	opacity: .86;
}

.repair-sticker--blue { background: linear-gradient(135deg, #4b8cff, var(--blue)); }
.repair-sticker--green { background: linear-gradient(135deg, #40d99c, #05966a); }
.repair-sticker--orange { background: linear-gradient(135deg, #ffb54d, #ff7a00); }
.repair-sticker--pink { background: linear-gradient(135deg, #ff80be, #e63380); }
.repair-sticker--violet { background: linear-gradient(135deg, #a98bff, #7548ef); }
.repair-sticker--cyan { background: linear-gradient(135deg, #3ddcff, #0698bb); }

.repair-sticker--one {
	top: 15vh;
	left: 12px;
	--duration: 8s;
	--move-x: -18px;
	--move-y: -34px;
	--rotate: 6deg;
}

.repair-sticker--two {
	top: 17vh;
	right: 12px;
	--duration: 10s;
	--move-x: 22px;
	--move-y: 38px;
	--rotate: -7deg;
}

.repair-sticker--three {
	bottom: 18vh;
	left: -22px;
	--duration: 9s;
	--move-x: 16px;
	--move-y: -38px;
	--rotate: -5deg;
}

.repair-sticker--four {
	right: -22px;
	bottom: 18vh;
	--duration: 11s;
	--move-x: -22px;
	--move-y: 42px;
	--rotate: 7deg;
}

.repair-sticker--five {
	top: 42vh;
	left: 0;
	--duration: 10s;
	--move-x: 14px;
	--move-y: -24px;
	--rotate: -3deg;
}

.repair-sticker--six {
	top: 44vh;
	right: 0;
	--duration: 12s;
	--move-x: -18px;
	--move-y: 36px;
	--rotate: 4deg;
}

@keyframes sticker-float {
	to {
		transform: translate(var(--move-x), var(--move-y)) rotate(var(--rotate));
	}
}

@keyframes hero-icon-breathe {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-2px) scale(1.06); }
}

.repair-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(980px, 100%);
}

.repair-hero h1 {
	margin: 0;
	font-size: clamp(52px, 7vw, 96px);
	font-weight: 950;
	line-height: .95;
	letter-spacing: 0;
	text-transform: uppercase;
}

.repair-hero-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: min(760px, 100%);
	margin: 22px auto 0;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
	backdrop-filter: blur(12px);
}

.repair-hero-flow span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
	white-space: nowrap;
}

.repair-hero-flow svg {
	width: 30px;
	height: 30px;
	animation: hero-flow-float 2.8s ease-in-out infinite;
}

.repair-hero-flow span:nth-of-type(2) svg { animation-delay: .25s; }
.repair-hero-flow span:nth-of-type(3) svg { animation-delay: .5s; }
.repair-hero-flow span:nth-of-type(4) svg { animation-delay: .75s; }

.repair-hero-flow i {
	display: block;
	width: 54px;
	height: 2px;
	border-top: 2px dashed rgba(23, 104, 255, .32);
}

@keyframes hero-flow-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.repair-hero__subtitle {
	margin: 22px 0 0;
	color: var(--blue);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
	line-height: 1.45;
	max-width: 100%;
}

.repair-hero__lead {
	max-width: 780px;
	margin: 24px auto 0;
	color: var(--muted);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
}

.repair-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 30px;
}

.repair-direct-answer {
	max-width: 840px;
	margin: 28px auto 0;
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
	text-align: left;
}

.repair-direct-answer h2 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 950;
}

.repair-direct-answer p {
	margin: 0;
	color: #334155;
	font-size: 15px;
	font-weight: 650;
	line-height: 1.6;
}

.repair-search-section,
.repair-bento,
.repair-proof,
.repair-zigzag,
.repair-features,
.repair-faq,
.repair-guides,
.repair-blog {
	padding: 92px 0;
}

.repair-search-section {
	background: var(--bg-soft);
}

.repair-search-card {
	position: relative;
	width: min(920px, calc(100vw - 48px));
	margin: 0 auto;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.quick-search-form {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
}

.quick-search-input {
	width: 100%;
	min-height: 60px;
	padding: 0 20px;
	border: 2px solid #dbe7f7;
	border-radius: 18px;
	color: var(--text);
	background: #f8fbff;
	font-size: 17px;
	font-weight: 800;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quick-search-input:focus {
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 5px rgba(23, 104, 255, .10);
}

.quick-search-typewriter {
	position: absolute;
	left: 22px;
	top: 19px;
	z-index: 1;
	color: #94a3b8;
	font-size: 17px;
	font-weight: 800;
	pointer-events: none;
}

.quick-search-input:focus + .quick-search-typewriter,
.quick-search-form.has-value .quick-search-typewriter {
	opacity: 0;
}

.quick-search-suggestions {
	position: absolute;
	top: 100px;
	left: 26px;
	right: 26px;
	z-index: 20;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow);
}

.quick-search-suggestions-head,
.quick-search-group-label {
	padding: 10px 12px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.quick-search-option {
	display: grid;
	width: 100%;
	gap: 4px;
	padding: 13px 14px;
	border: 0;
	border-radius: 14px;
	color: var(--text);
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.quick-search-option:hover,
.quick-search-option[aria-selected="true"] {
	background: #f2f7ff;
}

.quick-search-option-main {
	font-weight: 900;
}

.quick-search-option-meta {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.quick-search-highlight {
	color: var(--blue);
	background: rgba(23, 104, 255, .10);
}

.quick-search-empty {
	margin: 16px 0 0;
	padding: 14px 16px;
	border-radius: 16px;
	color: #9f1239;
	background: #fff1f2;
	font-weight: 750;
}

.quick-search-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.quick-search-chip {
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid #dbe7f7;
	border-radius: 999px;
	color: #263346;
	background: #f8fbff;
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
}

.quick-search-chip:hover {
	color: var(--blue);
	background: #fff;
}

.quick-search-flow {
	margin-top: 22px;
	padding: 22px;
	border-radius: 24px;
	background: #f8fbff;
	border: 1px solid var(--line);
}

.quick-search-flow__top {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.quick-search-flow__top p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.quick-search-flow__top strong {
	color: var(--blue);
	font-weight: 950;
}

.quick-search-stepper {
	display: flex;
	gap: 8px;
	margin-bottom: 18px;
}

.quick-search-stepper span {
	flex: 1;
	height: 8px;
	border-radius: 999px;
	background: #dbe7f7;
}

.quick-search-stepper span.is-active,
.quick-search-stepper span.is-done {
	background: var(--blue);
}

.quick-search-step h3,
.quick-search-finish h3 {
	margin: 0 0 14px;
	font-size: 24px;
	font-weight: 950;
}

.quick-search-step-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.quick-search-step-option {
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 14px;
	color: var(--text);
	background: #fff;
	font-weight: 850;
	cursor: pointer;
}

.quick-search-finish dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 8px 14px;
	margin: 0 0 14px;
}

.quick-search-finish dt {
	color: var(--muted);
	font-weight: 850;
}

.quick-search-finish dd {
	margin: 0;
	font-weight: 900;
}

.quick-order-form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
	padding: 18px;
	border: 1px solid #dce8f8;
	border-radius: 22px;
	background: #fff;
}

.quick-order-form label {
	display: grid;
	gap: 7px;
	color: #243247;
	font-size: 13px;
	font-weight: 900;
}

.quick-order-form input,
.quick-order-form textarea {
	width: 100%;
	border: 1px solid #dbe7f7;
	border-radius: 14px;
	background: #f8fbff;
	color: var(--text);
	font-size: 15px;
	font-weight: 750;
	outline: none;
}

.quick-order-form input {
	min-height: 48px;
	padding: 0 14px;
}

.quick-order-form textarea {
	min-height: 92px;
	padding: 13px 14px;
	resize: vertical;
}

.quick-order-form input:focus,
.quick-order-form textarea:focus {
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(23, 104, 255, .10);
}

.quick-order-form__agree {
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 10px !important;
	font-size: 13px !important;
	line-height: 1.45;
}

.quick-order-form__agree input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 2px;
	accent-color: var(--blue);
}

.quick-order-form__agree a {
	color: var(--blue);
	text-decoration: underline !important;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 3px;
}

.quick-order-form__trap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.quick-order-form__status {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 850;
}

.quick-order-form__status.is-success {
	color: #047857;
}

.quick-order-form__status.is-error {
	color: #be123c;
}

.quick-search-flow__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.repair-stats {
	padding: 92px 0;
	background: var(--bg-soft);
}

.repair-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	width: var(--container);
	margin: 0 auto;
}

.stat-card {
	min-height: 220px;
	padding: 28px;
	border: 1px solid rgba(15, 23, 42, .04);
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.stat-card--main {
	grid-column: span 2;
	min-height: 464px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.stat-card__top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.stat-card__top span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	color: #14518a;
	background: #eef6ff;
	font-size: 13px;
	font-weight: 950;
}

.stat-card__top i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--green);
}

.stat-card strong {
	display: block;
	color: var(--blue);
	font-size: clamp(56px, 6vw, 96px);
	font-weight: 950;
	line-height: .95;
}

.stat-card--main strong {
	color: var(--text);
	font-size: clamp(90px, 10vw, 140px);
}

.stat-card p {
	max-width: 330px;
	margin: 18px 0 0;
	color: #5d6b7e;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.28;
}

.stat-bars {
	display: flex;
	align-items: end;
	justify-content: flex-end;
	gap: 12px;
	min-height: 170px;
}

.stat-bars span {
	width: 58px;
	border-radius: 16px 16px 8px 8px;
	background: linear-gradient(#1768ff, #5fd9aa);
	box-shadow: 0 20px 36px rgba(23, 104, 255, .16);
}

.stat-bars span:nth-child(1) { height: 82px; }
.stat-bars span:nth-child(2) { height: 120px; }
.stat-bars span:nth-child(3) { height: 96px; }
.stat-bars span:nth-child(4) { height: 150px; }
.stat-bars span:nth-child(5) { height: 190px; }

.repair-bento,
.repair-proof,
.repair-features,
.repair-guides {
	background: #fff;
}

.repair-service-grid,
.repair-proof-grid,
.repair-feature-grid,
.repair-guide-grid,
.repair-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	width: var(--container);
	margin: 0 auto;
}

.repair-service-card,
.repair-proof-card,
.repair-feature-grid article,
.repair-guide-card,
.repair-post-card a,
.repair-faq details {
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 14px 44px rgba(15, 35, 70, .07);
}

.repair-service-card {
	position: relative;
	min-height: 330px;
	padding: 28px;
	overflow: hidden;
}

.repair-service-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: var(--blue);
}

.repair-service-card--cyan::before { background: var(--cyan); }
.repair-service-card--green::before { background: var(--green); }
.repair-service-card--orange::before { background: var(--orange); }
.repair-service-card--pink::before { background: var(--pink); }
.repair-service-card--violet::before { background: var(--violet); }

.repair-appliance {
	width: 72px;
	height: 92px;
	margin-bottom: 28px;
	border: 4px solid #152033;
	border-radius: 18px;
	background: linear-gradient(#eef6ff 0 28%, #fff 28% 100%);
	box-shadow: 0 12px 0 rgba(15, 23, 42, .08);
}

.repair-appliance::before {
	content: "";
	display: block;
	width: 38px;
	height: 38px;
	margin: 36px auto 0;
	border: 6px solid var(--blue);
	border-radius: 50%;
	background: #e8f4ff;
}

.repair-appliance--cyan::before { border-color: var(--cyan); }
.repair-appliance--green::before { border-color: var(--green); }
.repair-appliance--orange::before { border-color: var(--orange); }
.repair-appliance--pink::before { border-color: var(--pink); }
.repair-appliance--violet::before { border-color: var(--violet); }

.repair-service-card h3,
.repair-feature-grid h3,
.repair-guide-card h3,
.repair-guide-card h2,
.repair-post-card h3,
.repair-post-card h2 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 950;
	line-height: 1.08;
}

.repair-service-card p,
.repair-feature-grid p,
.repair-guide-card p,
.repair-post-card p {
	margin: 0;
	color: var(--muted);
	font-weight: 720;
	line-height: 1.58;
}

.repair-service-card small {
	display: block;
	margin-top: 22px;
	color: var(--blue);
	font-size: 13px;
	font-weight: 950;
	line-height: 1.4;
}

.repair-proof {
	background:
		radial-gradient(circle at 12% 14%, rgba(23, 104, 255, .08), transparent 30%),
		linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.repair-proof-grid {
	grid-template-columns: repeat(6, 1fr);
	align-items: stretch;
}

.repair-proof-card {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.repair-proof-card:nth-child(1),
.repair-proof-card:nth-child(4) {
	grid-column: span 3;
}

.repair-proof-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 70px rgba(23, 104, 255, .14);
}

.repair-proof-card figure {
	position: relative;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(237, 245, 255, .92)),
		#edf5ff;
}

.repair-proof-card figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 31, .14));
	pointer-events: none;
}

.repair-proof-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	display: block;
	transition: transform .45s ease;
}

.repair-proof-card:hover img {
	transform: scale(1.018);
}

.repair-proof-card div {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.repair-proof-card span {
	align-self: flex-start;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	color: var(--blue);
	background: #eef6ff;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.repair-proof-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 950;
	line-height: 1.1;
}

.repair-proof-card p {
	margin: 0;
	color: var(--muted);
	font-weight: 720;
	line-height: 1.55;
}

.repair-zigzag {
	background: var(--bg-soft);
}

.repair-steps {
	display: grid;
	gap: 24px;
	width: min(980px, calc(100vw - 48px));
	margin: 0 auto;
}

.repair-steps article {
	position: relative;
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 28px;
	align-items: center;
	min-height: 190px;
	padding: 30px;
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.repair-steps article:nth-child(even) {
	margin-left: 80px;
}

.repair-steps span {
	grid-row: 1 / 3;
	color: rgba(23, 104, 255, .13);
	font-size: 90px;
	font-weight: 950;
	line-height: .8;
}

.repair-steps h3 {
	grid-column: 2;
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 950;
}

.repair-steps p {
	grid-column: 2;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
	font-weight: 720;
}

.repair-feature-grid article {
	min-height: 220px;
	padding: 28px;
}

.repair-faq {
	background: var(--bg-soft);
}

.repair-faq__grid {
	display: grid;
	gap: 16px;
	width: min(920px, calc(100vw - 48px));
	margin: 0 auto;
}

.repair-faq details {
	padding: 0;
	overflow: hidden;
}

.repair-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 72px;
	padding: 22px 26px;
	font-size: 18px;
	font-weight: 950;
	cursor: pointer;
	list-style: none;
}

.repair-faq summary::-webkit-details-marker {
	display: none;
}

.repair-faq summary::after {
	content: "+";
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--blue);
	background: #eef6ff;
	font-size: 24px;
}

.repair-faq details[open] summary::after {
	content: "−";
	color: #fff;
	background: var(--blue);
}

.repair-faq details p {
	margin: 0;
	padding: 0 26px 24px;
	color: var(--muted);
	font-size: 16px;
	font-weight: 720;
}

.repair-resources {
	padding: 92px 0;
	background: #fff;
}

.repair-resources__inner {
	display: grid;
	grid-template-columns: 1.4fr repeat(2, 1fr);
	gap: 0;
	width: var(--container);
	margin: 0 auto;
	border-top: 1px solid var(--line);
}

.repair-resources__inner > * {
	min-height: 96px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

.repair-resources h2 {
	margin: 0;
	font-size: 46px;
	font-weight: 950;
	text-transform: uppercase;
}

.repair-resources a {
	display: grid;
	gap: 4px;
	padding-left: 28px;
	border-left: 1px solid var(--line);
}

.repair-resources strong {
	font-size: 20px;
	font-weight: 950;
}

.repair-resources span {
	color: var(--muted);
	font-weight: 750;
}

.repair-guide-card {
	display: flex;
	flex-direction: column;
	min-height: 280px;
	padding: 30px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.repair-guide-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 70px rgba(23, 104, 255, .14);
}

.repair-guide-card span {
	align-self: flex-start;
	margin-bottom: 22px;
	padding: 7px 13px;
	border-radius: 999px;
	color: var(--blue);
	background: #eef6ff;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.repair-guide-card p {
	flex: 1;
}

.repair-guide-card h2 {
	margin-top: 0;
}

.repair-guide-card small {
	margin-top: 26px;
	color: var(--blue);
	font-weight: 950;
}

.repair-blog {
	background: #fff;
}

.repair-post-card {
	min-width: 0;
}

.repair-post-card a {
	display: block;
	min-height: 380px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.repair-post-card a:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 70px rgba(15, 35, 70, .12);
}

.repair-post-card img,
.repair-post-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background:
		linear-gradient(135deg, rgba(23, 104, 255, .92), rgba(95, 217, 170, .92)),
		linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
	background-size: auto, 28px 28px, 28px 28px;
}

.repair-post-card h3,
.repair-post-card h2,
.repair-post-card p {
	padding-right: 24px;
	padding-left: 24px;
}

.repair-post-card__meta {
	display: block;
	margin: 18px 24px 0;
	color: var(--blue);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.repair-post-card h3,
.repair-post-card h2 {
	margin-top: 22px;
}

.repair-post-card p {
	padding-bottom: 26px;
}

.repair-post-card--guide .repair-post-card__placeholder {
	background:
		linear-gradient(135deg, rgba(245, 130, 32, .92), rgba(23, 104, 255, .86)),
		linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
	background-size: auto, 28px 28px, 28px 28px;
}

.guide-archive-shell {
	width: var(--container);
	margin: 0 auto;
	padding: 150px 0 90px;
}

.guide-archive-empty {
	padding: 30px;
}

.repair-footer {
	padding: 80px 0 34px;
	color: #e7eef8;
	background: #07111f;
}

.repair-footer__map {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 36px;
	align-items: center;
	width: var(--container);
	margin: 0 auto;
}

.repair-footer h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 950;
	line-height: 1;
}

.repair-footer p {
	color: #b5c1d2;
	font-weight: 720;
}

.repair-footer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.repair-map-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(23, 104, 255, .22), rgba(94, 218, 185, .12)),
		radial-gradient(circle at 18% 24%, rgba(255, 255, 255, .2), transparent 34%),
		#061224;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .26);
}

.repair-map-frame__label {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	max-width: calc(100% - 36px);
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: var(--ink);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
	pointer-events: none;
}

.repair-map-frame iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.repair-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 22px;
	align-items: center;
	width: var(--container);
	margin: 46px auto 0;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.repair-logo--footer .repair-logo__text small,
.repair-footer__bottom p,
.repair-footer__bottom a {
	color: #b5c1d2;
}

.repair-footer__bottom nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px;
}

.repair-footer__bottom p {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 14px;
}

.repair-footer__legal {
	opacity: .78;
}

.archive-shell,
.page-shell,
.single-shell {
	width: min(960px, calc(100vw - 48px));
	margin: 0 auto;
	padding: 150px 0 90px;
}

.archive-hero,
.entry-header {
	margin-bottom: 42px;
	text-align: center;
}

.page-title,
.entry-title {
	margin: 0;
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 950;
	line-height: 1;
}

.archive-description,
.entry-content,
.entry-content p {
	color: #334155;
	font-size: 18px;
	line-height: 1.75;
}

.entry-content h2 {
	margin: 54px 0 18px;
	color: var(--text);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 950;
	line-height: 1.08;
}

.entry-content h3 {
	margin: 32px 0 12px;
	color: var(--text);
	font-size: 25px;
	font-weight: 900;
	line-height: 1.18;
}

.entry-content a {
	color: var(--blue);
	font-weight: 850;
}

.entry-content .article-banner {
	margin: 2rem 0;
	overflow: hidden;
	border-radius: 18px;
	background: #1a2332;
}

.entry-content .article-banner img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	object-position: center;
}

.entry-content .article-banner-caption {
	margin-top: 0.5rem;
	font-size: 0.9em;
	color: var(--muted);
}

.entry-content .article-toc a {
	color: var(--blue);
	font-weight: 850;
}

.entry-content .seo-answer,
.entry-content .seo-toc,
.entry-content .seo-cta,
.entry-content .seo-note {
	margin: 28px 0;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.entry-content .seo-answer {
	border-color: rgba(23, 104, 255, .20);
	background: linear-gradient(135deg, #f5f9ff, #fff);
}

.entry-content .seo-toc {
	display: grid;
	gap: 10px;
	background: #f8fbff;
}

.entry-content .seo-toc a {
	display: flex;
	justify-content: space-between;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	color: var(--text);
}

.entry-content table {
	width: 100%;
	margin: 26px 0;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.entry-content th,
.entry-content td {
	padding: 16px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	color: var(--text);
	background: #f4f8ff;
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.entry-content tr:last-child td {
	border-bottom: 0;
}

.entry-content .seo-cta {
	display: grid;
	gap: 16px;
	background: var(--text);
	color: #fff;
}

.entry-content .seo-cta p,
.entry-content .seo-cta h2 {
	color: #fff;
}

.entry-content .seo-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.repair-blog-archive-grid,
.repair-guide-archive-grid {
	margin-top: 28px;
}

.repair-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 34px;
}

.repair-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid rgba(15, 23, 42, .1);
	border-radius: 999px;
	background: #fff;
	color: var(--text);
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.repair-pagination .page-numbers.current {
	border-color: rgba(23, 104, 255, .35);
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff;
}

.repair-pagination .page-numbers.prev,
.repair-pagination .page-numbers.next {
	min-width: 0;
	padding-right: 20px;
	padding-left: 20px;
}

.repair-archive-nav {
	display: grid;
	gap: 14px;
	justify-items: center;
	margin-top: 42px;
	padding-top: 10px;
}

.repair-pagination__status {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	font-weight: 750;
}

.repair-archive-more {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: min(100%, 320px);
	min-height: 72px;
	padding: 16px 28px;
	border: 1px solid rgba(23, 104, 255, .22);
	border-radius: 999px;
	background: linear-gradient(135deg, #f5f9ff, #fff);
	color: var(--text);
	font-size: 16px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 44px rgba(23, 104, 255, .12);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.repair-archive-more:hover,
.repair-archive-more:focus-visible {
	transform: translateY(2px);
	border-color: rgba(23, 104, 255, .42);
	box-shadow: 0 22px 50px rgba(23, 104, 255, .18);
	color: var(--blue);
}

.repair-archive-more__arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: #fff;
	font-size: 22px;
	font-weight: 950;
	line-height: 1;
}

.repair-archive-more--prev .repair-archive-more__arrow {
	background: #e8eef8;
	color: var(--blue);
}

.post-grid article,
.content-card {
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #fff;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.bytmaster-guide-page,
.nero-office-page,
[class*="-page"].nero-office-page {
	max-width: 100%;
	overflow-x: clip;
}

.bytmaster-guide-page img,
.nero-office-page img,
.bytmaster-guide-page canvas,
.nero-office-page canvas,
.bytmaster-guide-page video,
.nero-office-page video {
	max-width: 100%;
	height: auto;
}

.bytmaster-guide-page table,
.nero-office-page table {
	max-width: 100%;
}

.repair-cookie-consent {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 2000;
	display: grid;
	gap: 16px;
	width: min(390px, calc(100vw - 48px));
	padding: 22px;
	border: 1px solid rgba(15, 23, 42, .08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
}

.repair-cookie-consent[hidden] {
	display: none !important;
}

.repair-cookie-consent p {
	margin: 0;
	color: #526176;
	font-size: 15px;
	font-weight: 720;
	line-height: 1.55;
}

.repair-cookie-consent a {
	color: var(--blue);
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.repair-cookie-consent .repair-button {
	width: 100%;
}

@media (min-width: 1025px) {
	.repair-nav {
		position: static;
		display: flex !important;
		flex: 1 1 auto;
		width: auto;
		max-width: none;
		max-height: none;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		overflow: visible;
	}

	.repair-header__cta--chat,
	.repair-menu-toggle {
		display: none !important;
	}

	.repair-header__cta--quiz {
		display: inline-flex !important;
	}
}

@media (max-width: 1180px) {
	.repair-nav a {
		padding: 0 10px;
		font-size: 13px;
	}

	.repair-header__cta {
		padding: 0 16px;
	}

}

@media (max-width: 1024px) {
	:root {
		--container: min(100% - 32px, 720px);
	}

	[id],
	[id^="article-quick-search"],
	#quick-search {
		scroll-margin-top: 100px;
	}

	.repair-header {
		top: max(14px, env(safe-area-inset-top, 0px));
		left: max(12px, env(safe-area-inset-left, 0px));
		right: max(12px, env(safe-area-inset-right, 0px));
		width: auto;
		max-width: none;
		transform: none;
	}

	.admin-bar .repair-header,
	.admin-bar .repair-header.is-scrolled {
		top: max(46px, calc(env(safe-area-inset-top, 0px) + 32px));
	}

	.repair-header__inner {
		flex-wrap: nowrap;
		gap: 8px;
		min-height: 58px;
		padding: 8px max(10px, env(safe-area-inset-right, 0px)) 8px max(12px, env(safe-area-inset-left, 0px));
		border-radius: 28px;
	}

	.repair-logo {
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(100% - 112px);
	}

	.repair-logo__mark {
		width: 42px;
		height: 42px;
		font-size: 12px;
	}

	.repair-header__inner > .repair-nav {
		flex: none;
	}

	.repair-menu-toggle {
		display: grid;
		place-items: center;
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
	}

	.repair-header__cta--quiz,
	.repair-header__cta--tel {
		display: none !important;
	}

	.repair-header__cta--chat {
		display: inline-flex !important;
		flex: 0 0 auto;
		padding: 0 14px;
		font-size: 13px;
		min-height: 42px;
		color: #fff;
		background: linear-gradient(135deg, #f58220, #ee8208);
		box-shadow: 0 10px 24px rgba(238, 130, 8, 0.28);
	}

	.repair-nav__cta-item--tel {
		display: block;
	}

	.repair-nav__cta-item--tel a {
		background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
		color: #fff !important;
		font-weight: 900;
		justify-content: center;
	}

	.repair-nav {
		position: fixed;
		top: var(--repair-nav-top, 76px);
		left: max(12px, env(safe-area-inset-left, 0px));
		right: max(12px, env(safe-area-inset-right, 0px));
		display: none;
		flex: none;
		width: auto;
		max-width: none;
		margin: 0;
		padding: 14px;
		border: 1px solid var(--line);
		border-radius: 28px;
		background: rgba(255, 255, 255, .96);
		box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
		backdrop-filter: blur(18px);
		z-index: 1100;
		max-height: calc(100dvh - var(--repair-nav-top, 76px) - 16px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.admin-bar .repair-nav {
		top: var(--repair-nav-top, 108px);
		max-height: calc(100dvh - var(--repair-nav-top, 108px) - 16px);
	}

	body.menu-open .repair-nav {
		display: block;
	}

	body.menu-open .repair-header {
		z-index: 1101;
	}

	body.menu-open::before {
		z-index: 1099;
	}

	.repair-nav ul {
		display: grid;
		gap: 10px;
		background: transparent;
		border: 0;
		padding: 0;
	}

	.repair-nav a {
		min-height: 52px;
		padding: 0 18px;
		background: #f4f8ff;
		font-size: 16px;
		white-space: normal;
	}

	.repair-hero {
		min-height: min(94vh, 820px);
		padding-top: 118px;
		padding-bottom: 56px;
	}

	.repair-sticker--five,
	.repair-sticker--six {
		display: none;
	}

	.repair-sticker {
		min-width: 180px;
		min-height: 54px;
		padding: 8px 16px;
		transform: scale(.82);
	}

	.repair-sticker svg {
		width: 34px;
		height: 34px;
	}

	.repair-sticker--one { top: 110px; left: -44px; }
	.repair-sticker--two { top: 116px; right: -56px; }
	.repair-sticker--three { bottom: 92px; left: -58px; }
	.repair-sticker--four { bottom: 88px; right: -62px; }

	.repair-hero h1 {
		font-size: clamp(40px, 10vw, 72px);
		letter-spacing: -.03em;
	}

	.repair-hero__lead {
		font-size: 15px;
	}

	.repair-hero-flow {
		max-width: 720px;
		gap: 8px;
		box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
	}

	.repair-hero-flow i {
		width: 30px;
	}

	.quick-search-form {
		grid-template-columns: 1fr;
	}

	.quick-search-suggestions {
		top: 96px;
	}


	.repair-stats__grid,
	.repair-service-grid,
	.repair-proof-grid,
	.repair-feature-grid,
	.repair-guide-grid,
	.repair-blog-grid,
	.post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.stat-card--main {
		grid-column: 1 / -1;
	}

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

	.repair-resources a {
		padding-left: 0;
		border-left: 0;
	}

	.repair-proof-card,
	.repair-proof-card:nth-child(1),
	.repair-proof-card:nth-child(4) {
		grid-column: auto;
	}

	.repair-footer__map,
	.repair-footer__bottom {
		grid-template-columns: 1fr;
	}

	.repair-footer__bottom nav {
		justify-content: flex-start;
	}
}

@media (max-width: 820px) {
	.repair-hero {
		min-height: auto;
		padding-top: 112px;
	}

	.repair-sticker {
		display: none;
	}

	.repair-hero h1 {
		font-size: clamp(38px, 10vw, 62px);
		line-height: .98;
	}

	.repair-hero__content {
		width: min(680px, 100%);
	}
}

@media (max-width: 640px) {
	:root {
		--container: min(100% - 28px, 420px);
	}

	.repair-section-head--split {
		display: grid;
		align-items: start;
	}

	.repair-logo__text small {
		display: none;
	}

	.repair-logo__text strong {
		font-size: 14px;
	}

	.repair-header__inner {
		min-height: 54px;
		gap: 6px;
		padding: 7px 9px 7px 10px;
		box-shadow: 0 12px 34px rgba(15, 23, 42, .12);
	}

	.repair-header__cta--chat {
		padding: 0 12px;
		font-size: 12px;
		min-height: 40px;
	}

	.repair-menu-toggle {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.repair-logo {
		max-width: calc(100% - 100px);
	}

	.repair-hero {
		min-height: auto;
		padding: 104px 14px 46px;
	}

	.orbit--one { width: 620px; height: 620px; }
	.orbit--two { width: 860px; height: 860px; }
	.orbit--three { width: 1100px; height: 1100px; }

	.repair-sticker {
		display: none;
	}

	.repair-hero__subtitle {
		font-size: 12px;
		line-height: 1.45;
		margin-top: 16px;
	}

	.repair-hero h1 {
		font-size: clamp(36px, 11vw, 54px);
		line-height: .98;
		letter-spacing: -.035em;
	}

	.repair-hero__lead {
		margin-top: 16px;
		font-size: 14px;
		line-height: 1.55;
	}

	.repair-hero-flow {
		flex-wrap: wrap;
		gap: 8px;
		padding: 10px;
		border-radius: 22px;
		margin-top: 16px;
	}

	.repair-hero-flow span {
		flex: 1 1 calc(50% - 8px);
		justify-content: center;
		font-size: 11px;
	}

	.repair-hero-flow svg {
		width: 26px;
		height: 26px;
	}

	.repair-hero-flow i {
		display: none;
	}

	.repair-hero__actions,
	.repair-footer__actions,
	.quick-search-flow__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.repair-button {
		width: 100%;
		min-height: 50px;
	}

	.repair-direct-answer {
		padding: 16px;
	}

	.repair-search-section,
	.repair-bento,
	.repair-proof,
	.repair-zigzag,
	.repair-features,
	.repair-faq,
	.repair-guides,
	.repair-blog,
	.repair-stats,
	.repair-resources {
		padding: 64px 0;
	}

	.repair-section-head h2 {
		font-size: clamp(34px, 11vw, 46px);
	}

	.repair-section-head p:not(.repair-kicker) {
		font-size: 16px;
	}

	.repair-search-card {
		width: min(100%, calc(100% - 28px));
		padding: 14px;
		border-radius: 24px;
	}

	.quick-search-input {
		min-height: 56px;
		padding: 0 16px;
		font-size: 15px;
	}

	.quick-search-typewriter {
		left: 18px;
		right: 18px;
		font-size: 14px;
	}

	.quick-search-suggestions {
		left: 16px;
		right: 16px;
		top: 86px;
		max-height: min(58vh, 420px);
		overflow-y: auto;
	}

	.quick-search-chips {
		display: grid;
		grid-template-columns: 1fr;
	}


	.repair-stats__grid,
	.repair-service-grid,
	.repair-proof-grid,
	.repair-feature-grid,
	.repair-guide-grid,
	.repair-blog-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.stat-card,
	.stat-card--main {
		min-height: auto;
	}

	.stat-card__top {
		display: grid;
	}

	.stat-bars {
		justify-content: flex-start;
		min-height: 120px;
		margin-top: 22px;
	}

	.stat-bars span {
		width: 38px;
	}

	.repair-service-card {
		min-height: auto;
		padding: 26px 22px;
	}

	.repair-proof-card,
	.repair-proof-card:nth-child(1),
	.repair-proof-card:nth-child(4) {
		grid-column: auto;
	}

	.repair-steps article {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 24px;
	}

	.repair-steps article:nth-child(even) {
		margin-left: 0;
	}

	.repair-steps span {
		grid-row: auto;
		font-size: 64px;
	}

	.repair-steps h3,
	.repair-steps p {
		grid-column: auto;
	}

	.repair-resources h2 {
		font-size: 34px;
	}

	.repair-map-frame iframe {
		min-height: 300px;
	}

	.archive-shell,
	.page-shell,
	.single-shell {
		width: min(100%, calc(100% - 28px));
		padding-top: 120px;
		padding-left: max(0px, env(safe-area-inset-left, 0px));
		padding-right: max(0px, env(safe-area-inset-right, 0px));
	}

	.guide-archive-shell {
		width: min(100%, calc(100% - 28px));
		padding-top: 120px;
		padding-bottom: 56px;
	}

	.repair-post-card h2,
	.repair-post-card h3,
	.repair-post-card p {
		padding-right: 18px;
		padding-left: 18px;
	}

	.repair-post-card__meta {
		margin-right: 18px;
		margin-left: 18px;
	}

	.repair-pagination {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, auto));
		gap: 8px;
		margin-top: 26px;
	}

	.repair-pagination .page-numbers {
		min-width: 42px;
		min-height: 42px;
		padding-right: 12px;
		padding-left: 12px;
		font-size: 14px;
	}

	.repair-pagination .page-numbers.prev,
	.repair-pagination .page-numbers.next {
		grid-column: span 3;
		width: 100%;
	}

	.repair-archive-more {
		width: 100%;
		min-height: 64px;
		padding-right: 20px;
		padding-left: 20px;
		font-size: 15px;
	}

	.repair-archive-more__arrow {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}

	.bytmaster-guide-page .entry-content,
	.nero-office-page .entry-content {
		max-width: min(100%, calc(100vw - 28px)) !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.nero-office-page > section,
	.nero-office-page > div,
	.office-mobile-safe > section,
	.office-mobile-safe > div {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	.nero-office-page .fullscreen-white-office,
	.office-mobile-safe .fullscreen-white-office,
	.office-mobile-safe section:first-of-type {
		width: 100vw !important;
		max-width: 100vw !important;
		margin-right: calc(50% - 50vw) !important;
		margin-left: calc(50% - 50vw) !important;
		padding-right: max(14px, env(safe-area-inset-right, 0px)) !important;
		padding-left: max(14px, env(safe-area-inset-left, 0px)) !important;
		border-radius: 0 !important;
	}

	.nero-office-page .fullscreen-white-office > *,
	.office-mobile-safe .fullscreen-white-office > * {
		max-width: min(100%, calc(100vw - 28px)) !important;
	}

	.office-mobile-safe [class*="hero-copy"],
	.office-mobile-safe [class*="hero-panel"],
	.office-mobile-safe [class*="hero-card"] {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		padding: clamp(18px, 5vw, 28px) !important;
		border-radius: 24px !important;
		box-sizing: border-box !important;
	}

	.office-mobile-safe .giant-seo,
	.office-mobile-safe h1 {
		font-size: clamp(30px, 10vw, 44px) !important;
		line-height: .98 !important;
		letter-spacing: -.055em !important;
	}

	.office-mobile-safe .giant-seo-sub,
	.office-mobile-safe [class*="hero-sub"] {
		font-size: clamp(16px, 4.6vw, 20px) !important;
		line-height: 1.32 !important;
	}

	.office-mobile-safe .office-hero-cta,
	.office-mobile-safe .office-hero-cta__inner {
		width: 100% !important;
		max-width: 100% !important;
	}

	.bytmaster-guide-page .article-table-scroll,
	.nero-office-page .article-table-scroll,
	.bytmaster-guide-page .wp-block-table,
	.nero-office-page .wp-block-table {
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.bytmaster-guide-page h1,
	.bytmaster-guide-page h2,
	.bytmaster-guide-page h3,
	.nero-office-page h1,
	.nero-office-page h2,
	.nero-office-page h3 {
		overflow-wrap: anywhere;
		hyphens: auto;
	}

	.repair-hero__subtitle {
		font-size: clamp(10px, 2.6vw, 12px);
		letter-spacing: 0.04em;
		hyphens: auto;
	}

	.repair-cookie-consent {
		left: max(14px, env(safe-area-inset-left, 0px));
		right: max(14px, env(safe-area-inset-right, 0px));
		bottom: max(14px, env(safe-area-inset-bottom, 0px));
		width: auto;
		padding: 18px;
		border-radius: 22px;
	}

	.repair-floating-actions {
		right: max(14px, env(safe-area-inset-right, 0px));
		bottom: max(18px, env(safe-area-inset-bottom, 0px));
	}
}

@media (max-width: 380px) {
	.repair-header {
		left: max(8px, env(safe-area-inset-left, 0px));
		right: max(8px, env(safe-area-inset-right, 0px));
	}

	.repair-header__cta--chat {
		padding: 0 9px;
		font-size: 11px;
	}

	.repair-logo__text strong {
		font-size: 13px;
	}

	.repair-logo__mark {
		width: 38px;
		height: 38px;
	}

	.repair-menu-toggle {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.repair-hero {
		padding-top: 98px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.repair-hero h1 {
		font-size: clamp(32px, 10.5vw, 42px);
	}

	.repair-hero-flow span {
		flex-basis: 100%;
		min-height: 42px;
		border-radius: 14px;
		background: rgba(248, 251, 255, .9);
	}

	.repair-search-card {
		width: calc(100% - 20px);
	}
}

/* Service cards: relevant SVG scenes and quiz affordance */
.repair-service-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.repair-service-card {
	cursor: pointer;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.repair-service-card:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 5px;
}

.repair-service-card:hover {
	border-color: rgba(37, 99, 235, .22);
	box-shadow: 0 24px 64px rgba(15, 35, 70, .12);
	transform: translateY(-4px);
}

.repair-service-card::after {
	content: "открыть квиз";
	position: absolute;
	right: 24px;
	top: 24px;
	padding: 8px 12px;
	border-radius: 999px;
	color: #14518a;
	background: #eef6ff;
	font-size: 12px;
	font-weight: 950;
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity .2s ease, transform .2s ease;
}

.repair-service-card:hover::after,
.repair-service-card:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.repair-service-svg {
	display: block;
	width: 92px;
	height: 92px;
	margin: 0 0 26px;
	color: var(--blue);
	overflow: visible;
}

.repair-service-card--cyan { --service-color: var(--cyan); }
.repair-service-card--green { --service-color: var(--green); }
.repair-service-card--orange { --service-color: var(--orange); }
.repair-service-card--pink { --service-color: var(--pink); }
.repair-service-card--violet { --service-color: var(--violet); }
.repair-service-card--blue { --service-color: var(--blue); }

.repair-service-card--cyan small { color: var(--cyan); }
.repair-service-card--green small { color: var(--green); }
.repair-service-card--orange small { color: var(--orange); }
.repair-service-card--pink small { color: var(--pink); }
.repair-service-card--violet small { color: var(--violet); }

.repair-service-svg .service-shell {
	fill: #fff;
	stroke: #152033;
	stroke-width: 5;
	filter: drop-shadow(0 9px 0 rgba(15, 23, 42, .08));
}

.repair-service-svg .service-panel {
	fill: #eef6ff;
	stroke: #152033;
	stroke-width: 4;
}

.repair-service-svg .service-ring,
.repair-service-svg .service-line,
.repair-service-svg .service-accent {
	fill: none;
	stroke: var(--service-color, var(--blue));
	stroke-width: 7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.repair-service-svg .service-accent {
	fill: color-mix(in srgb, var(--service-color, var(--blue)) 14%, #fff);
}

.repair-service-svg .service-dot {
	fill: var(--service-color, var(--blue));
}

.repair-service-svg .service-text {
	fill: var(--service-color, var(--blue));
	font-size: 15px;
	font-weight: 950;
	letter-spacing: 0;
}

.repair-service-svg .service-motion {
	transform-origin: center;
	animation: service-icon-pulse 2.8s ease-in-out infinite;
}

.repair-service-svg .service-delay-1 {
	animation-delay: .35s;
}

.repair-service-svg .service-delay-2 {
	animation-delay: .7s;
}

@keyframes service-icon-pulse {
	0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
	50% { transform: translateY(-2px) scale(1.04); opacity: .78; }
}

@media (max-width: 640px) {
	.repair-service-card::after {
		position: static;
		display: inline-flex;
		margin-top: 18px;
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}




/* --- ULTRA MODERN HEADER & MOBILE MENU --- */

/* Fix Hero Card on Mobile */
@media (max-width: 1100px) {
  .dish-hero-copy,
  .ac-hero-copy,
  .wash-hero-copy,
  .fridge-hero-copy,
  .stove-hero-copy,
  .commercial-hero-copy {
    transform: translateX(-50%) !important;
    width: 92vw !important;
    padding: 24px 16px !important;
  }

  .giant-seo {
    font-size: clamp(22px, 6vw, 30px) !important;
  }
  
  .giant-seo span {
    font-size: clamp(13px, 3.5vw, 16px) !important;
    margin-top: 6px !important;
  }
  
  .giant-seo-sub {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-top: 12px !important;
  }
  
  .repair-button--emergency {
    min-height: 48px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    width: 100% !important;
  }
  
  .repair-hero-phone {
    font-size: 20px !important;
  }
  
  .repair-phone-descr {
    font-size: 11px !important;
  }
}

/* Desktop Header Enhancements */
.repair-header__inner {
	background: rgba(255, 255, 255, 0.65) !important;
	backdrop-filter: blur(24px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(24px) saturate(180%) !important;
	border: 1px solid rgba(255, 255, 255, 0.8) !important;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 100px !important;
}

.repair-header.is-scrolled .repair-header__inner {
	background: rgba(255, 255, 255, 0.9) !important;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
}

.repair-nav ul {
	background: rgba(241, 245, 251, 0.5) !important;
	backdrop-filter: blur(12px) !important;
	border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 100px !important;
    padding: 4px !important;
}

.repair-nav a {
	font-weight: 700 !important;
	letter-spacing: 0.01em !important;
	transition: all 0.3s ease !important;
    border-radius: 100px !important;
}

.repair-nav a:hover {
	background: #ffffff !important;
	color: #1768ff !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(23, 104, 255, 0.1) !important;
}

.repair-header__cta {
	font-weight: 800 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	font-size: 13px !important;
	transition: all 0.3s ease !important;
    border-radius: 100px !important;
}

.repair-header__cta:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 16px 32px rgba(23, 104, 255, 0.4) !important;
}

/* Mobile Menu Toggle (Hamburger to X) */
.repair-menu-toggle {
	position: relative !important;
	z-index: 1102 !important;
	background: #ffffff !important;
	border: 1px solid rgba(15, 23, 42, 0.08) !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
	transition: background 0.3s ease !important;
}

body.menu-open .repair-menu-toggle {
	background: #f8fafc !important;
}

.repair-menu-toggle span:not(.screen-reader-text) {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	transform-origin: center !important;
}

body.menu-open .repair-menu-toggle span:nth-child(1) {
	transform: translateY(6px) rotate(45deg) !important;
}
body.menu-open .repair-menu-toggle span:nth-child(2) {
	opacity: 0 !important;
}
body.menu-open .repair-menu-toggle span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg) !important;
}

/* Mobile Menu Overlay */
@media (max-width: 1024px) {
	body.menu-open::before {
		background: rgba(15, 23, 42, 0.4) !important;
		backdrop-filter: blur(16px) saturate(180%) !important;
		-webkit-backdrop-filter: blur(16px) saturate(180%) !important;
	}

	body.menu-open .repair-nav {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100dvh !important;
		background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%) !important;
		z-index: 1100 !important;
		display: flex !important;
		flex-direction: column !important;
		padding: 100px 24px 40px !important;
		overflow-y: auto !important;
		clip-path: circle(0% at 100% 0%) !important;
		animation: menuReveal 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards !important;
	}

	@keyframes menuReveal {
		to { clip-path: circle(150% at 100% 0%); }
	}

	body.menu-open .repair-nav ul {
		display: flex !important;
		flex-direction: column !important;
		gap: 8px !important;
		background: transparent !important;
		border: none !important;
		padding: 0 !important;
		margin-bottom: auto !important;
        box-shadow: none !important;
	}

	body.menu-open .repair-nav a {
		font-size: 22px !important;
		font-weight: 800 !important;
		color: #0f172a !important;
		padding: 16px 20px !important;
		background: #ffffff !important;
		border: 1px solid rgba(15, 23, 42, 0.04) !important;
		border-radius: 20px !important;
		min-height: auto !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
	}

	body.menu-open .repair-nav a::after {
		content: "→" !important;
		font-size: 20px !important;
		color: #1768ff !important;
		opacity: 0.5 !important;
		transform: translateX(0) !important;
		transition: all 0.3s ease !important;
	}

	body.menu-open .repair-nav a:active {
		color: #1768ff !important;
		background: #f4f8ff !important;
		border-color: rgba(23, 104, 255, 0.2) !important;
		transform: scale(0.98) !important;
	}

	body.menu-open .repair-nav__chat-link {
		margin-top: 24px !important;
		background: linear-gradient(135deg, #f58220, #ee8208) !important;
		color: #ffffff !important;
		padding: 18px 24px !important;
		border-radius: 20px !important;
		justify-content: center !important;
		border: none !important;
		box-shadow: 0 12px 24px rgba(238, 130, 8, 0.25) !important;
        font-size: 18px !important;
	}

	body.menu-open .repair-nav__chat-link::after {
		display: none !important;
	}

	body.menu-open .repair-nav__cta-item--tel {
		display: block !important;
	}

	body.menu-open .repair-nav__cta-item--tel a {
		background: linear-gradient(135deg, #1768ff, #0d4bc6) !important;
		color: #ffffff !important;
		padding: 18px 24px !important;
		border-radius: 20px !important;
		justify-content: center !important;
		border: none !important;
		box-shadow: 0 12px 24px rgba(23, 104, 255, 0.25) !important;
		margin-top: 12px !important;
        font-size: 18px !important;
	}

	body.menu-open .repair-nav__cta-item--tel a::after {
		display: none !important;
	}
}


/* Fix containing block for mobile menu */
body.menu-open .repair-header__inner {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

body.menu-open .repair-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

@media (max-width: 1024px) {
    body.menu-open .repair-nav {
        /* Reset position to fixed relative to viewport if containing block is fixed */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        clip-path: circle(150% at 100% 0%) !important; /* Remove animation for a moment to ensure it shows */
        animation: none !important;
        transition: clip-path 0.4s ease-out !important;
    }
    
    /* When menu is NOT open, hide it properly on mobile */
    body:not(.menu-open) .repair-nav {
        clip-path: circle(0% at 100% 0%) !important;
        pointer-events: none !important;
    }
}
