﻿/* Автолайн — чёрно-белый современный сайт */

:root {
	--black: #0a0a0a;
	--black-soft: #141414;
	--gray-900: #1a1a1a;
	--gray-700: #404040;
	--gray-500: #737373;
	--gray-300: #d4d4d4;
	--gray-100: #f5f5f5;
	--white: #ffffff;
	--text: #111111;
	--text-inv: #fafafa;
	--muted: #525252;
	--muted-inv: #a3a3a3;
	--border: #e5e5e5;
	--border-inv: rgba(255, 255, 255, 0.14);
	--shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.2);
	--radius: 14px;
	--max: 1200px;
	--font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.55;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a {
	color: var(--black);
	text-decoration: none;
	transition: color 0.25s var(--ease-out), opacity 0.25s;
}

a:hover { opacity: 0.72; }

.container {
	width: min(100% - 32px, var(--max));
	margin: 0 auto;
}

/* ——— Анимации ——— */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(36px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes heroZoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

@keyframes lineSweep {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(200%); }
}

@keyframes gridPulse {
	0%, 100% { opacity: 0.04; }
	50% { opacity: 0.09; }
}

@keyframes shimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}

@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Верхняя полоса ——— */
.topbar {
	background: var(--black);
	color: var(--muted-inv);
	font-size: 13px;
	border-bottom: 1px solid var(--border-inv);
}

.topbar__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
}

.topbar__item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.topbar__item strong { color: var(--white); font-weight: 600; }
.topbar__item a { color: var(--white); }
.topbar__item a:hover { opacity: 1; text-decoration: underline; }

.topbar__muted { opacity: 0.65; font-size: 12px; }

/* ——— Шапка ——— */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: padding 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.header.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	transition: padding 0.35s var(--ease-out);
}

.header.is-scrolled .header__inner { padding: 12px 0; }

.logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.logo:hover { opacity: 1; }

.logo__title {
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0.2em;
	color: var(--black);
	line-height: 1;
	transition: letter-spacing 0.4s var(--ease-out);
}

.logo:hover .logo__title { letter-spacing: 0.24em; }

.logo__sub {
	margin-top: 6px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gray-500);
}

.nav { display: flex; align-items: center; gap: 8px; }

.nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list a {
	display: block;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gray-700);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	transition: color 0.3s, background 0.3s;
}

.nav__list a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 2px;
	background: var(--black);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s var(--ease-out);
}

.nav__list a:hover::after,
.nav__list a.is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav__list a:hover,
.nav__list a.is-active {
	color: var(--black);
	background: var(--gray-100);
	opacity: 1;
}

/* Кнопки */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 2px solid var(--black);
	border-radius: 999px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.35s, color 0.35s;
}

.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
	background-size: 200% 100%;
	opacity: 0;
	transition: opacity 0.3s;
}

.btn:hover::before {
	opacity: 1;
	animation: shimmer 1.2s ease infinite;
}

.btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	opacity: 1;
}

.btn--primary {
	background: var(--black);
	color: var(--white);
	border-color: var(--black);
}

.btn--primary:hover {
	background: var(--gray-900);
	color: var(--white);
}

.btn--outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

.btn--dark {
	background: var(--black);
	color: var(--white);
}

.btn--ghost {
	background: var(--white);
	color: var(--black);
	border-color: var(--black);
}

.btn--ghost:hover {
	background: var(--gray-100);
	color: var(--black);
}

/* Запись по телефону */
.book-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.book-cta--inline { margin-top: 24px; }

.book-cta-section { text-align: center; }

.book-cta-box {
	max-width: 720px;
	margin: 0 auto;
}

.book-cta-box .section__title { margin-bottom: 12px; }

.book-cta-box .book-cta {
	justify-content: center;
	margin-top: 28px;
}

.book-cta-box .btn { white-space: normal; text-align: center; max-width: 100%; }

.card__book { margin-top: 14px; }

.nav__burger {
	display: none;
	width: 44px;
	height: 44px;
	border: 2px solid var(--black);
	background: var(--white);
	border-radius: 10px;
	cursor: pointer;
	font-size: 18px;
	transition: transform 0.3s var(--ease-spring), background 0.3s;
}

.nav__burger:hover {
	transform: scale(1.05);
	background: var(--gray-100);
}

/* ——— Герой ——— */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--black);
	color: var(--white);
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	animation: gridPulse 6s ease-in-out infinite;
	pointer-events: none;
}

.hero__glow {
	position: absolute;
	width: 60vw;
	height: 60vw;
	max-width: 600px;
	max-height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	top: -20%;
	right: -10%;
	animation: floatY 8s ease-in-out infinite;
	pointer-events: none;
}

.hero__slides { position: relative; min-height: 480px; }

.hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.9s var(--ease-out);
}

.hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.hero__slide.is-active .hero__bg {
	animation: heroZoom 8s var(--ease-out) forwards;
}

.hero__slide.is-active .hero__label {
	animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.hero__slide.is-active .hero__title {
	animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__slide.is-active .hero__text {
	animation: fadeUp 0.8s var(--ease-out) 0.35s both;
}

.hero__slide.is-active .hero__actions {
	animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background: var(--black-soft);
}

.hero__slide--parts .hero__bg {
	background: linear-gradient(135deg, #0a0a0a 0%, #1f1f1f 50%, #0a0a0a 100%);
}

.hero__slide--sto .hero__bg {
	background: linear-gradient(160deg, #111 0%, #2a2a2a 45%, #0a0a0a 100%);
}

.hero__slide--wash .hero__bg {
	background: linear-gradient(200deg, #0d0d0d 0%, #262626 55%, #050505 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding: 72px 0;
	max-width: 680px;
}

.hero__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--white);
	border: 1px solid var(--border-inv);
	border-radius: 999px;
}

.hero__title {
	margin: 0 0 20px;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--white);
}

.hero__text {
	margin: 0 0 32px;
	font-size: 18px;
	line-height: 1.55;
	color: var(--muted-inv);
	max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 0 0 28px;
	background: var(--black);
	position: relative;
	z-index: 2;
}

.hero__dot {
	width: 40px;
	height: 4px;
	border: 0;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	padding: 0;
	transition: background 0.4s, transform 0.4s var(--ease-spring), width 0.4s;
}

.hero__dot.is-active {
	background: var(--white);
	width: 56px;
	transform: scaleY(1.3);
}

.hero__line {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--border-inv);
	overflow: hidden;
}

.hero__line::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 40%;
	background: linear-gradient(90deg, transparent, var(--white), transparent);
	animation: lineSweep 4s linear infinite;
}

/* ——— Секции ——— */
.section { padding: 88px 0; }
.section--gray { background: var(--gray-100); }
.section--dark {
	background: var(--black);
	color: var(--text-inv);
}

.section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.section__label {
	display: inline-block;
	margin-bottom: 12px;
	padding-bottom: 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gray-500);
	border-bottom: 2px solid var(--black);
}

.section--dark .section__label {
	color: var(--muted-inv);
	border-bottom-color: var(--white);
}

.section__title {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--black);
}

.section--dark .section__title { color: var(--white); }

.section__desc {
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.section--dark .section__desc { color: var(--muted-inv); }

/* Карточки */
.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--black);
}

.card__img {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 56px;
	background: var(--black);
	color: var(--white);
	position: relative;
	overflow: hidden;
	transition: transform 0.6s var(--ease-out);
}

.card:hover .card__img { transform: scale(1.04); }

.card__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4));
}

.card__body { padding: 28px; }

.card__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 800;
	color: var(--black);
}

.card__text {
	margin: 0 0 20px;
	font-size: 15px;
	color: var(--muted);
	line-height: 1.55;
}

.card__link {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.3s var(--ease-out);
}

.card:hover .card__link { gap: 12px; opacity: 1; }

/* Преимущества */
.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.feature {
	text-align: left;
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-inv);
	border-radius: var(--radius);
	transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}

.feature:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}

.feature__icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: inline-block;
	transition: transform 0.5s var(--ease-spring);
}

.feature:hover .feature__icon { transform: scale(1.15) rotate(-5deg); }

.feature__title {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
}

.feature__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted-inv);
}

.feature__text a { color: var(--white); text-decoration: underline; }

/* О компании */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.about-grid p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 17px;
}

.branches {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.branch {
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.branch:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: var(--black);
}

.branch__title {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 800;
	color: var(--black);
}

.branch__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.branch__list li {
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--muted);
}

.branch__list a { font-weight: 700; opacity: 1; }

/* Карты */
.map-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 36px;
}

.map-item iframe {
	width: 100%;
	height: 300px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	filter: grayscale(100%);
	transition: filter 0.5s, transform 0.5s var(--ease-out);
}

.map-item:hover iframe {
	filter: grayscale(30%);
	transform: scale(1.01);
}

.map-item__title {
	margin: 0 0 12px;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Форма */
.cta-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	padding: 48px;
	background: var(--black);
	color: var(--white);
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -30%;
	width: 80%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
	transform: rotate(15deg);
	pointer-events: none;
}

.cta-box .section__title { color: var(--white); }
.cta-box .section__label { border-color: var(--white); color: var(--muted-inv); }
.cta-box .section__desc { color: var(--muted-inv); }

.form label {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted-inv);
}

.form input,
.form textarea {
	width: 100%;
	margin-bottom: 18px;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 15px;
	border: 1px solid var(--border-inv);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form input::placeholder,
.form textarea::placeholder { color: var(--gray-500); }

.form input:focus,
.form textarea:focus {
	outline: none;
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form .btn--primary {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

.form .btn--primary:hover {
	background: var(--gray-100);
}

.form__note {
	font-size: 12px;
	color: var(--gray-500);
	margin-top: 12px;
}

/* Советы */
.tips-list { display: grid; gap: 20px; }

.tip {
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 4px solid var(--black);
	border-radius: var(--radius);
	transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.tip:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow);
}

.tip__title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 800;
}

.tip__title a { color: var(--black); opacity: 1; }

.tip__text { margin: 0; color: var(--muted); font-size: 16px; }

/* Подвал */
.footer {
	background: var(--black);
	color: var(--muted-inv);
	padding: 64px 0 28px;
	font-size: 14px;
	border-top: 1px solid var(--border-inv);
}

.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer__brand .logo__title { color: var(--white); font-size: 20px; }
.footer__brand .logo__sub { color: var(--gray-500); }

.footer__tagline {
	margin-top: 16px;
	opacity: 0.85;
}

.price-note .btn { margin-top: 12px; }

.footer h4 {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--white);
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--muted-inv); }
.footer a:hover { color: var(--white); opacity: 1; }

.footer__copy {
	padding-top: 28px;
	border-top: 1px solid var(--border-inv);
	text-align: center;
	font-size: 13px;
	color: var(--gray-500);
}

/* Внутренние страницы */
.page-hero {
	padding: 64px 0;
	background: var(--black);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 40px 40px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 900;
	letter-spacing: -0.02em;
	animation: fadeUp 0.8s var(--ease-out) both;
}

.page-hero p {
	margin: 0;
	opacity: 0.75;
	max-width: 560px;
	font-size: 18px;
	animation: fadeUp 0.8s var(--ease-out) 0.15s both;
}

.content-block { max-width: 760px; }
.content-block h2 {
	color: var(--black);
	margin-top: 36px;
	font-weight: 900;
	font-size: 24px;
}

.content-block ul { padding-left: 20px; }
.content-block li { margin-bottom: 10px; color: var(--muted); }

.price-note {
	margin: 36px 0;
	padding: 28px;
	text-align: center;
	background: var(--gray-100);
	border: 2px solid var(--black);
	border-radius: var(--radius);
	font-weight: 600;
	color: var(--black);
}

.price-note a { font-weight: 800; text-decoration: underline; opacity: 1; }

/* Адаптив */
@media (max-width: 992px) {
	.cards { grid-template-columns: 1fr; }
	.features { grid-template-columns: repeat(2, 1fr); }
	.about-grid,
	.branches,
	.map-grid,
	.cta-box,
	.footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.nav__burger { display: block; }

	.nav__list {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		left: 16px;
		right: 16px;
		flex-direction: column;
		background: var(--white);
		padding: 12px;
		border: 1px solid var(--border);
		border-radius: var(--radius);
		box-shadow: var(--shadow-lg);
	}

	.nav.is-open .nav__list { display: flex; }

	.header__inner { position: relative; flex-wrap: wrap; }

	.header .btn--primary:not(.form .btn--primary) { display: none; }

	.topbar__inner { justify-content: center; text-align: center; }

	.hero__slides { min-height: 420px; }
	.hero__content { padding: 48px 0; }

	.features { grid-template-columns: 1fr; }

	.cta-box { padding: 32px 24px; }
}

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

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