/* SF CARS Tuning — visual system aligned with sbkts.sfcars.ru */

:root {
	--color-primary: #b51817;
	--color-primary-hover: #f73453;
	--color-primary-faded: rgba(181, 24, 23, 0.15);
	--color-heading: #1a1a1a;
	--color-text: #333;
	--color-muted: #999;
	--color-bg: #f7f0f2;
	--color-bg-alt: #f9fafb;
	--color-surface: #fff;
	--color-border: #ede1e3;
	--color-footer-bg: #222;
	--color-footer-alt: #1a1a1a;
	--color-overlay: rgba(0, 0, 0, 0.75);
	--font-family: Montserrat, sans-serif;
	--font-size: 17px;
	--line-height: 1.45;
	--radius-card: 24px;
	--radius-promo: 32px;
	--radius-btn: 0.3em;
	--box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	--shadow-card: 0 8px 20px rgba(0, 0, 0, 0.08);
	--site-content-width: 1280px;
	--header-h: 88px;
	--sticky-cta-h: 72px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-family);
	font-size: var(--font-size);
	line-height: var(--line-height);
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.25s ease;
}

a:hover {
	color: var(--color-primary-hover);
}

h1, h2, h3, h4 {
	color: var(--color-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 0.75em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

.container {
	width: min(100% - 2rem, var(--site-content-width));
	margin-inline: auto;
}

.container.narrow {
	width: min(100% - 2rem, 860px);
}

.muted { color: var(--color-muted); }
.small { font-size: 0.875rem; }
.sr-only,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--color-heading);
}

.show-mobile { display: none !important; }
.hide-mobile { display: flex; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.75rem 1.35rem;
	border-radius: var(--radius-btn);
	border: 2px solid transparent;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

[hidden],
.btn[hidden],
button[hidden] {
	display: none !important;
}

.btn-primary {
	background: var(--color-primary);
	color: #fff !important;
	border-color: var(--color-primary);
}

.btn-primary:hover {
	background: var(--color-primary-hover);
	border-color: var(--color-primary-hover);
	color: #fff !important;
}

.btn-secondary,
.btn-outline {
	background: transparent;
	color: var(--color-primary) !important;
	border-color: var(--color-primary);
}

.btn-secondary:hover,
.btn-outline:hover {
	background: var(--color-primary);
	color: #fff !important;
}

.btn-light {
	background: #fff;
	color: var(--color-primary) !important;
	border-color: #fff;
}

.btn-light:hover {
	background: #ffe8ea;
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1.25rem 0 0.75rem;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-h);
	padding-block: 0.75rem;
}

.header-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.logo-text {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-heading);
	letter-spacing: 0.02em;
}

.logo a {
	display: inline-flex;
	align-items: center;
}

.logo img,
.custom-logo-link img,
.custom-logo {
	max-height: 48px;
	width: auto;
	height: auto;
}

.logo-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.logo-tagline {
	font-size: 0.75rem;
	color: var(--color-muted);
	line-height: 1.3;
}

.logo-city {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--color-heading);
}

.header-contacts {
	align-items: center;
	gap: 1.25rem;
}

.header-phone {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--color-heading);
	white-space: nowrap;
}

.header-phone:hover {
	color: var(--color-primary);
}

.header-rating {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.rating-stars { color: #facc15; }

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.nav-toggle {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 10px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--color-heading);
	border-radius: 2px;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 1.25rem 1.25rem;
	background: #fff;
	border-top: 1px solid var(--color-border);
}

.mobile-nav:not([hidden]) {
	display: flex;
}

.mobile-nav a {
	color: var(--color-heading);
	font-weight: 600;
	padding: 0.35rem 0;
}

/* Sections */
.section {
	padding: 4.5rem 0;
}

.section-alt {
	background: var(--color-bg-alt);
}

.section-surface {
	background: var(--color-surface);
}

.section-promo {
	background: var(--color-primary);
	color: #fff;
}

.section-promo h2,
.section-promo h3,
.section-promo p {
	color: #fff;
}

.section-head {
	max-width: 760px;
	margin-bottom: 2rem;
}

.section-head.center {
	margin-inline: auto;
	text-align: center;
}

.micro {
	font-size: 0.95rem;
	color: var(--color-muted);
}

/* Cards */
.card,
.service-card,
.bsection {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	padding: 1.5rem;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover,
.service-card:hover,
.bsection:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.bsection {
	border: 1px solid var(--color-border);
	background: var(--color-bg-alt);
}

.bsection.is-accent {
	background: rgba(181, 24, 23, 0.05);
	border-color: var(--color-primary);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.roundedicon {
	width: 5rem;
	height: 5rem;
	border-radius: 1rem;
	background: var(--color-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: 0 0 20px rgba(181, 24, 23, 0.3);
	margin-bottom: 1rem;
}

.bicon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 24px;
	background: var(--color-primary-faded);
	color: var(--color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 0.85rem;
}

.badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
}

.badge-dark {
	background: var(--color-primary-faded);
	color: var(--color-primary);
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.75rem 0 0;
	padding: 0;
	list-style: none;
}

.chip-list li {
	padding: 0.35rem 0.75rem;
	border-radius: 9999px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	font-size: 0.85rem;
}

/* Hero */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	display: flex;
	align-items: center;
	padding: 3.5rem 0 4rem;
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(181, 24, 23, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%),
		var(--hero-image, linear-gradient(135deg, #2a2a2a, #5a1a1a)) center / cover no-repeat;
	color: #fff;
}

.hero h1,
.hero p,
.hero .micro {
	color: #fff;
}

.hero .micro { opacity: 0.9; }

.hero-panel {
	max-width: 720px;
	padding: 1.75rem;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.hero .btn-secondary {
	color: #fff !important;
	border-color: #fff;
}

.hero .btn-secondary:hover {
	background: #fff;
	color: var(--color-primary) !important;
}

.hero-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.hero-labels span {
	font-size: 0.8rem;
	padding: 0.35rem 0.7rem;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
}

/* Trust */
.trust-card {
	text-align: center;
	padding: 1.35rem 1rem;
}

.trust-card .value {
	display: block;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 0.35rem;
}

/* Categories */
.category-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	padding: 0;
}

.category-card .media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #3a3a3a, #7a2020);
	background-size: cover;
	background-position: center;
}

.category-card .body {
	padding: 1.35rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.category-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* Quiz */
.quiz-card {
	background: var(--color-surface);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	padding: 1.75rem;
}

.quiz-progress {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 1.25rem;
}

.quiz-progress span {
	flex: 1;
	height: 4px;
	border-radius: 4px;
	background: var(--color-border);
}

.quiz-progress span.is-active,
.quiz-progress span.is-done {
	background: var(--color-primary);
}

.quiz-step { display: none; }
.quiz-step.is-active { display: block; }

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.choice {
	position: relative;
}

.choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.choice label {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0.85rem 1rem;
	border: 2px solid var(--color-border);
	border-radius: 14px;
	background: var(--color-bg-alt);
	cursor: pointer;
	font-weight: 600;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.choice input:checked + label {
	border-color: var(--color-primary);
	background: rgba(181, 24, 23, 0.06);
	color: var(--color-primary);
}

.quiz-nav {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Forms */
.form-grid {
	display: grid;
	gap: 0.85rem;
}

.form-row {
	display: grid;
	gap: 0.35rem;
}

.form-row label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-heading);
}

.form-row input,
.form-row textarea,
.form-row select {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	font: inherit;
	background: #fff;
}

.form-row textarea {
	min-height: 100px;
	resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
	outline: 2px solid var(--color-primary-faded);
	border-color: var(--color-primary);
}

.consent {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	font-size: 0.85rem;
	color: var(--color-muted);
}

.consent input {
	margin-top: 0.25rem;
}

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
}

.file-drop {
	border: 2px dashed var(--color-border);
	border-radius: 14px;
	padding: 1.25rem;
	text-align: center;
	background: var(--color-bg-alt);
}

.file-drop input[type="file"] {
	display: block;
	margin: 0.75rem auto 0;
	width: min(100%, 280px);
}

.file-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.file-preview img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
}

.form-message {
	margin-top: 0.75rem;
	font-weight: 600;
}

.form-message.is-error { color: var(--color-primary); }
.form-message.is-ok { color: #15803d; }

/* Cases */
.case-card {
	overflow: hidden;
	padding: 0;
}

.case-card .media {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #2d2d2d, #6b1d1d);
	background-size: cover;
	background-position: center;
}

.case-card .body { padding: 1.5rem; }

/* Process timeline */
.timeline {
	display: grid;
	gap: 1rem;
}

.timeline-step {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1.15rem;
	background: #fff;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
}

.step-num {
	width: 56px;
	height: 56px;
	border-radius: 24px;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	box-shadow: 0 0 20px rgba(181, 24, 23, 0.3);
}

/* Compare table */
.compare-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.compare-table th,
.compare-table td {
	padding: 1rem 1.15rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}

.compare-table th {
	background: var(--color-bg-alt);
	font-weight: 700;
}

.compare-table td:last-child {
	color: var(--color-primary);
	font-weight: 600;
}

/* Price */
.price-box {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.5rem;
	align-items: center;
	padding: 2rem;
	border-radius: var(--radius-promo);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.price-value {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
	margin: 0.35rem 0 0.75rem;
}

/* Before / after */
.ba-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ba-card .label {
	display: inline-block;
	margin-bottom: 0.75rem;
	padding: 0.3rem 0.75rem;
	border-radius: 9999px;
	background: var(--color-primary-faded);
	color: var(--color-primary);
	font-weight: 700;
	font-size: 0.85rem;
}

.ba-card .frame {
	aspect-ratio: 4 / 3;
	border-radius: 18px;
	background: linear-gradient(135deg, #ddd, #bbb);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

/* Reviews */
.review-card .author {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1rem;
	font-weight: 700;
}

/* FAQ */
.faq-item {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--shadow-card);
	margin-bottom: 0.75rem;
	overflow: hidden;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.15rem 1.35rem;
	font-weight: 700;
	color: var(--color-heading);
	position: relative;
	padding-right: 3rem;
}

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

.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-primary);
	font-size: 1.4rem;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .answer {
	padding: 0 1.35rem 1.25rem;
	color: var(--color-text);
}

/* Contacts */
.map-embed {
	border: 0;
	width: 100%;
	min-height: 360px;
	border-radius: var(--radius-card);
	background: #ddd;
}

/* Modal */
.modal[hidden] { display: none; }

.modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.modal-dialog {
	position: relative;
	width: min(100%, 560px);
	max-height: calc(100vh - 2rem);
	overflow: auto;
	background: #fff;
	border-radius: var(--radius-card);
	padding: 1.75rem;
	box-shadow: var(--box-shadow);
}

.modal-close {
	position: absolute;
	top: 0.65rem;
	right: 0.85rem;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: var(--color-muted);
}

/* Cookie / Metrika consent */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3000;
	padding: 1rem;
	padding-bottom: calc(1rem + env(safe-area-inset-bottom));
	background: #fff;
	box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

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

.cookie-banner__inner {
	width: min(100%, var(--site-content-width));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cookie-banner__text {
	flex: 1;
	min-width: 0;
}

.cookie-banner__text p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--color-text);
}

.cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	flex-shrink: 0;
}

.cookie-banner__actions .btn {
	min-height: 44px;
	padding: 0.65rem 1.1rem;
}

body.has-cookie-banner .mobile-sticky-cta {
	bottom: auto;
	/* keep sticky CTA above banner on mobile via stacking; banner is higher z-index */
}

@media (max-width: 899px) {
	.cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-banner__actions .btn {
		flex: 1;
	}

	body.has-cookie-banner .mobile-sticky-cta {
		display: none;
	}

	body.has-cookie-banner {
		padding-bottom: 0;
	}
}

/* Sticky mobile CTA */
.mobile-sticky-cta {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1500;
	gap: 0.65rem;
	padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
	background: #fff;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta .btn {
	flex: 1;
}

/* Footer */
.site-footer {
	background: var(--color-footer-bg);
	color: #999;
	padding: 3rem 0 0;
	margin-top: 2rem;
}

.site-footer a { color: #ccc; }
.site-footer a:hover { color: var(--color-primary); }
.site-footer strong,
.footer-logo {
	color: #fff;
}

.footer-logo {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding-bottom: 2rem;
}

.footer-bottom {
	background: var(--color-footer-alt);
	padding: 1rem 0;
	font-size: 0.9rem;
	color: #bbb;
}

/* Page content */
.page-content {
	padding: 3rem 0 4rem;
}

.content-card {
	background: #fff;
	border-radius: var(--radius-card);
	padding: 2rem;
	box-shadow: var(--shadow-card);
}

/* Appear animation */
.afb {
	opacity: 0;
	transform: translateY(2.5rem);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.afb.is-in {
	opacity: 1;
	transform: none;
}

/* Steps photo review */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.step-card {
	text-align: left;
}

/* Utility */
.text-primary { color: var(--color-primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-0 { margin-bottom: 0; }

body.is-front {
	padding-bottom: 0;
}

@media (max-width: 1100px) {
	.grid-5 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 899px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.65rem; }

	.hide-mobile { display: none !important; }
	.show-mobile { display: inline-flex !important; }

	.header-inner { min-height: 70px; }
	.logo-meta { display: none; }

	.hero {
		min-height: auto;
		padding: 2rem 0 2.5rem;
	}

	.hero-panel { padding: 1.25rem; }

	.section { padding: 3rem 0; }

	.grid-2,
	.grid-3,
	.grid-4,
	.grid-5,
	.ba-grid,
	.price-box,
	.choice-grid,
	.steps-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.mobile-sticky-cta {
		display: flex;
	}

	body.is-front {
		padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom));
	}

	.timeline-step {
		grid-template-columns: 44px 1fr;
	}

	.step-num {
		width: 44px;
		height: 44px;
		border-radius: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.afb {
		opacity: 1;
		transform: none;
	}
}
