* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	color: #2d3436;
	background-color: #ffffff;
	line-height: 1.6;
	font-weight: 400;
	overflow-x: hidden;
}

/* ===========================================
   ТИПОГРАФИКА
   =========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #2c3e50;
}

ul,
ol {
	padding-left: 1.2rem;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2rem;
	font-weight: 600;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

h4 {
	font-size: 1.25rem;
	font-weight: 600;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.7;
}

a {
	color: #2c3e50;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #e74c3c;
}

/* ===========================================
   УТИЛИТЫ МАКЕТА
   =========================================== */
.acp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.acp-section {
	padding: 4rem 0;
}

.acp-grid {
	display: grid;
	gap: 2rem;
}

.acp-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.acp-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.acp-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.acp-flex {
	display: flex;
}

.acp-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.acp-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.acp-text-center {
	text-align: center;
}

.acp-text-left {
	text-align: left;
}

.acp-text-right {
	text-align: right;
}

.acp-mb-1 {
	margin-bottom: 0.5rem;
}
.acp-mb-2 {
	margin-bottom: 1rem;
}
.acp-mb-3 {
	margin-bottom: 1.5rem;
}
.acp-mb-4 {
	margin-bottom: 2rem;
}
.acp-mb-5 {
	margin-bottom: 2.5rem;
}

.acp-mt-1 {
	margin-top: 0.5rem;
}
.acp-mt-2 {
	margin-top: 1rem;
}
.acp-mt-3 {
	margin-top: 1.5rem;
}
.acp-mt-4 {
	margin-top: 2rem;
}
.acp-mt-5 {
	margin-top: 2.5rem;
}

/* ===========================================
   HEADER СТИЛИ
   =========================================== */
.acp-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
	height: 80px;
}

.acp-header.acp-scrolled {
	height: 70px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.acp-header-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.acp-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c3e50;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.acp-logo:hover {
	color: #e74c3c;
	transform: scale(1.05);
}

.acp-nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.acp-nav-item {
	position: relative;
}

.acp-nav-link {
	color: #2d3436;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.acp-nav-link:hover {
	color: #e74c3c;
	background: rgba(231, 76, 60, 0.1);
	transform: translateY(-2px);
}

.acp-nav-link.acp-active {
	color: #e74c3c;
	background: rgba(231, 76, 60, 0.15);
}

/* Мобильный навигационный переключатель */
.acp-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 3px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.acp-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #2c3e50;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.acp-menu-toggle.acp-active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.acp-menu-toggle.acp-active span:nth-child(2) {
	opacity: 0;
}

.acp-menu-toggle.acp-active span:nth-child(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}

/* Мобильная навигация */
.acp-mobile-nav {
	position: fixed;
	top: 100%;
	left: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	transition: all 0.3s ease;
	z-index: 999;
	padding: 2rem;
}

.acp-mobile-nav.acp-open {
	left: 0;
}

.acp-mobile-nav.acp-open .acp-nav {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.acp-mobile-nav .acp-nav-link {
	padding: 1rem;
	font-size: 1.1rem;
	border-radius: 12px;
	background: rgba(248, 249, 250, 0.5);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

/* ===========================================
   КНОПКИ
   =========================================== */
.acp-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.acp-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: all 0.5s ease;
}

.acp-btn:hover::before {
	left: 100%;
}

.acp-btn-primary {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.acp-btn-primary:hover {
	background: linear-gradient(135deg, #c0392b, #a93226);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
	color: white;
}

.acp-btn-secondary {
	background: linear-gradient(135deg, #2c3e50, #1b2631);
	color: white;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.acp-btn-secondary:hover {
	background: linear-gradient(135deg, #1b2631, #17202a);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
	color: white;
}

.acp-btn-outline {
	background: transparent;
	color: #2c3e50;
	border: 2px solid #2c3e50;
}

.acp-btn-outline:hover {
	background: #2c3e50;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.acp-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.acp-btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

/* ===========================================
   HERO СЕКЦИЯ
   =========================================== */
.acp-hero {
	min-height: 100vh;
	background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.9),
			rgba(44, 62, 80, 0.1)
		),
		url('assets/acp-hero.avif') center/cover;
	display: flex;
	background-attachment: fixed;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-top: 80px;
}

.acp-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.85),
		rgba(44, 62, 80, 0.1)
	);
	z-index: 1;
}

.acp-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	padding: 2rem;
	width: 100%;
}

.acp-hero-left h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #2c3e50;
	line-height: 1.2;
	animation: acp-fade-in-up 1s ease-out;
}

.acp-hero-left p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	color: #2d3436;
	opacity: 0.9;
	animation: acp-fade-in-up 1s ease-out 0.2s both;
}

.acp-hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	animation: acp-fade-in-up 1s ease-out 0.4s both;
}

.acp-hero-right {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: acp-fade-in-up 1s ease-out 0.3s both;
}

.acp-hero-illustration {
	width: 100%;

	height: 100%;
	object-fit: cover;
}

/* ===========================================
   КАРТОЧКИ
   =========================================== */
.acp-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.acp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #e74c3c, #2c3e50);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.acp-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.acp-card:hover::before {
	transform: scaleX(1);
}

.acp-benefit-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
}

.acp-benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-benefit-card .acp-benefit-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	transition: all 0.3s ease;
}

.acp-benefit-card:hover .acp-benefit-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.acp-service-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.acp-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-service-header {
	background: linear-gradient(135deg, #2c3e50, #1b2631);
	color: white;
	padding: 1.5rem;
	text-align: center;
	min-height: 150px;
}

.acp-service-header h3 {
	color: white;
	margin-bottom: 0.5rem;
}

.acp-service-content {
	padding: 2rem;
}

.acp-service-features {
	list-style: none;
	margin-bottom: 1.5rem;
	padding-left: 0;
}

.acp-service-features li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.acp-service-features li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #e74c3c;
}

.acp-testimonial-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	text-align: center;
	position: relative;
}

.acp-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	background: linear-gradient(135deg, #e74c3c, #2c3e50);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	font-weight: 600;
}

.acp-testimonial-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.acp-testimonial-name {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.acp-testimonial-role {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.acp-team-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.acp-team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-team-avatar {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, #e74c3c, #2c3e50);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
	font-weight: 600;
}

.acp-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.acp-team-content {
	padding: 2rem;
}

.acp-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.acp-team-role {
	color: #e74c3c;
	font-weight: 500;
	margin-bottom: 1rem;
}

/* ===========================================
   АККОРДЕОН
   =========================================== */
.acp-accordion {
	background: white;
	border-radius: 16px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	overflow: hidden;
}

.acp-accordion-header {
	padding: 1.5rem 2rem;
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-accordion-header:hover {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
}

.acp-accordion-header h3 {
	margin: 0;
	color: inherit;
}

.acp-accordion-header i {
	transition: transform 0.3s ease;
	color: #e74c3c;
}

.acp-accordion-header:hover i {
	color: white;
}

.acp-accordion.acp-active .acp-accordion-header i {
	transform: rotate(180deg);
}

.acp-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: white;
}

.acp-accordion-content-inner {
	padding: 2rem;
}

/* ===========================================
   ФОРМЫ
   =========================================== */
.acp-form {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-form-group {
	margin-bottom: 1.5rem;
}

.acp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #2c3e50;
}

.acp-form-input,
.acp-form-textarea,
.acp-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(44, 62, 80, 0.2);
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
}

.acp-form-input:focus,
.acp-form-textarea:focus,
.acp-form-select:focus {
	outline: none;
	border-color: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
	background: white;
}

.acp-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.acp-form-error {
	color: #e74c3c;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.acp-form-error.acp-show {
	display: block;
}

.acp-form-input.acp-error,
.acp-form-textarea.acp-error {
	border-color: #e74c3c;
	background: rgba(231, 76, 60, 0.05);
}

/* Map Section */
.acp-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.acp-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.acp-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.acp-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===========================================
   FOOTER
   =========================================== */
.acp-footer {
	background: linear-gradient(135deg, #2c3e50, #1b2631);
	color: white;
	padding: 3rem 0 1rem;
}

.acp-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
}

.acp-footer-section h4 {
	color: #e74c3c;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.acp-footer-section ul {
	list-style: none;
	padding-left: 0;
}

.acp-footer-section ul li {
	margin-bottom: 0.5rem;
}

.acp-footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
}

.acp-footer-section ul li a:hover {
	color: #e74c3c;
	transform: translateX(5px);
}

.acp-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   COOKIE POPUP
   =========================================== */
.acp-cookie-popup {
	position: fixed;
	bottom: -200px;
	display: none;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #2c3e50, #1b2631);
	color: white;
	padding: 1.5rem;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	transition: all 0.5s ease;
}

.acp-cookie-popup.acp-show {
	bottom: 0;
	display: block;
}

.acp-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.acp-cookie-text {
	flex: 1;
	min-width: 300px;
}

.acp-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.acp-cookie-accept {
	background: #e74c3c;
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.acp-cookie-accept:hover {
	background: #c0392b;
	transform: translateY(-2px);
}

.acp-cookie-link {
	color: #e74c3c;
	text-decoration: underline;
}

.acp-cookie-link:hover {
	color: white;
}

/* ===========================================
   СПЕЦИАЛЬНЫЕ ЭЛЕМЕНТЫ СТРАНИЦ
   =========================================== */

/* Чек-лист техобслуживания */
.acp-maintenance-check {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	margin-bottom: 2rem;
}

.acp-maintenance-check h3 {
	color: #2c3e50;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.acp-maintenance-check h3 i {
	color: #e74c3c;
}

.acp-check-list {
	list-style: none;
	padding-left: 0;
}

.acp-check-list li {
	padding: 0.75rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-check-list li:last-child {
	border-bottom: none;
}

.acp-check-list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #e74c3c;
	width: 20px;
}

/* Гайд по маслам */
.acp-oil-guide {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.acp-oil-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
}

.acp-oil-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-oil-card h4 {
	color: #2c3e50;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.acp-oil-card h4 i {
	color: #e74c3c;
}

/* Диагностические шаги */
.acp-diagnostic-steps {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}

.acp-diagnostic-step {
	background: white;
	border-radius: 16px;
	padding: 1.5rem 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.3s ease;
}

.acp-diagnostic-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.acp-step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 1.2rem;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.acp-step-content h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.acp-step-content p {
	margin: 0;
	color: #2d3436;
}

/* Карточки диагностики */
.acp-diagnostic-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.acp-diagnostic-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-diagnostic-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #2c3e50, #1b2631);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
	transition: all 0.3s ease;
}

.acp-diagnostic-card:hover .acp-diagnostic-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Сезонные советы */
.acp-seasonal-tips {
	margin: 2rem 0;
}

.acp-seasonal-accordion .acp-accordion-header {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
}

.acp-seasonal-accordion .acp-accordion-header:hover {
	background: linear-gradient(135deg, #c0392b, #a93226);
}

.acp-seasonal-accordion .acp-accordion-header i {
	color: white;
}

/* Инфографика экономии топлива */
.acp-fuel-infographic {
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	border-radius: 16px;
	padding: 3rem 2rem;
	margin: 2rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-fuel-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.acp-fuel-tip {
	text-align: center;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.acp-fuel-tip:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.acp-fuel-tip i {
	font-size: 2.5rem;
	color: #e74c3c;
	margin-bottom: 1rem;
}

.acp-fuel-tip h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

/* Рецепты ухода */
.acp-care-recipe {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	margin-bottom: 2rem;
	transition: all 0.3s ease;
}

.acp-care-recipe:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.acp-care-recipe h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.acp-care-recipe h3 i {
	color: #e74c3c;
}

.acp-recipe-ingredients,
.acp-recipe-steps {
	margin-top: 1.5rem;
}

.acp-recipe-ingredients h4,
.acp-recipe-steps h4 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.acp-recipe-ingredients ul,
.acp-recipe-steps ol {
	padding-left: 1.5rem;
}

.acp-recipe-ingredients li,
.acp-recipe-steps li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* ===========================================
   АНИМАЦИИ
   =========================================== */
@keyframes acp-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes acp-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes acp-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.acp-animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.acp-animate-on-scroll.acp-in-view {
	opacity: 1;
	transform: translateY(0);
}

.acp-pulse {
	animation: acp-pulse 2s infinite;
}

/* ===========================================
   УТИЛИТАРНЫЕ КЛАССЫ
   =========================================== */
.acp-hidden {
	display: none;
}

.acp-visible {
	display: block;
}

.acp-overflow-hidden {
	overflow: hidden;
}

.acp-relative {
	position: relative;
}

.acp-absolute {
	position: absolute;
}

.acp-fixed {
	position: fixed;
}

.acp-z-10 {
	z-index: 10;
}

.acp-z-50 {
	z-index: 50;
}

.acp-z-100 {
	z-index: 100;
}

/* ===========================================
   АДАПТИВНЫЙ ДИЗАЙН
   =========================================== */
@media (max-width: 768px) {
	.acp-container {
		padding: 0 1rem;
	}

	.acp-nav {
		display: none;
	}

	.acp-menu-toggle {
		display: flex;
	}

	.acp-hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.acp-hero-left h1 {
		font-size: 2.5rem;
	}

	.acp-hero-left p {
		font-size: 1.1rem;
	}

	.acp-hero-buttons {
		justify-content: center;
	}

	.acp-grid-2,
	.acp-grid-3,
	.acp-grid-4 {
		grid-template-columns: 1fr;
	}

	.acp-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.acp-cookie-content {
		flex-direction: column;
		text-align: center;
		flex-wrap: nowrap;
	}

	.acp-cookie-buttons {
		justify-content: center;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.acp-section {
		padding: 3rem 0;
	}

	.acp-diagnostic-step {
		flex-direction: column;
		text-align: center;
	}

	.acp-fuel-tips-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.acp-header-content {
		padding: 0 1rem;
	}

	.acp-hero-left h1 {
		font-size: 2rem;
	}

	.acp-hero-left p {
		font-size: 1rem;
	}

	.acp-btn {
		width: 100%;
		justify-content: center;
	}

	.acp-card,
	.acp-form {
		padding: 1.5rem;
	}

	.acp-benefit-card {
		padding: 1.5rem;
	}

	.acp-benefit-card .acp-benefit-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.acp-step-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.acp-diagnostic-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

/* ===========================================
   ПЛАВНЫЕ АНИМАЦИИ ДЛЯ ЛУЧШЕГО UX
   =========================================== */
.acp-fade-in {
	animation: acp-fade-in 0.6s ease-out;
}

.acp-slide-up {
	animation: acp-fade-in-up 0.8s ease-out;
}

/* ===========================================
   ДОСТУПНОСТЬ
   =========================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

.acp-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Поддержка высокого контраста */
@media (prefers-contrast: high) {
	.acp-card {
		border: 2px solid #2d3436;
	}

	.acp-btn-primary {
		border: 2px solid #2d3436;
	}

	.acp-btn-secondary {
		border: 2px solid #2d3436;
	}
}

.acp-contact-hero {
	background: linear-gradient(
			135deg,
			rgba(44, 62, 80, 0.9),
			rgba(231, 76, 60, 0.8)
		),
		url('assets/acp-hero-contact.webp') center/cover;
	color: white;
	text-align: center;
	padding: 8rem 0 6rem;
	margin-top: 80px;
}

.acp-contact-hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.acp-contact-hero h1 i {
	color: #e74c3c;
	font-size: 2.5rem;
}

.acp-contact-hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 0;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Info Section */
.acp-contact-info {
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	padding: 6rem 0;
}

.acp-contact-info h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #2c3e50;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.acp-contact-info h2 i {
	color: #e74c3c;
}

.acp-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.acp-contact-info-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.acp-contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.acp-contact-info-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	transition: all 0.3s ease;
}

.acp-contact-info-card:hover .acp-contact-info-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.acp-contact-info-card h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.acp-contact-info-card p {
	color: #2d3436;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.acp-contact-hours {
	font-size: 0.9rem;
	color: #e74c3c;
	font-weight: 500;
	margin-bottom: 0 !important;
}

/* Contact Form Section */
.acp-contact-form-section {
	padding: 6rem 0;
	background: white;
}

.acp-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.acp-contact-form-container h2 {
	color: #2c3e50;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.acp-contact-form-container h2 i {
	color: #e74c3c;
}

.acp-contact-form {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-contact-map-container h3 {
	color: #2c3e50;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.acp-contact-map-container h3 i {
	color: #e74c3c;
}

.acp-map-container {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.acp-map-container iframe {
	width: 100%;
	height: 350px;
	border: none;
}

/* Contact FAQ Section */
.acp-contact-faq {
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	padding: 6rem 0;
}

.acp-contact-faq h2 {
	text-align: center;
	margin-bottom: 3rem;
	color: #2c3e50;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.acp-contact-faq h2 i {
	color: #e74c3c;
}

.acp-faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.acp-faq-item {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.acp-faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.acp-faq-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #e74c3c, #2c3e50);
	border-radius: 16px 16px 0 0;
}

.acp-faq-item h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.4;
}

.acp-faq-item p {
	color: #2d3436;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Footer Contact Info */
.acp-footer-contact {
	line-height: 1.8;
}

.acp-footer-contact p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
}

.acp-footer-contact i {
	color: #e74c3c;
	width: 16px;
	text-align: center;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
	.acp-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.acp-contact-hero {
		padding: 6rem 0 4rem;
	}

	.acp-contact-hero h1 {
		font-size: 2.25rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.acp-contact-hero h1 i {
		font-size: 2rem;
	}

	.acp-contact-hero-subtitle {
		font-size: 1.1rem;
	}

	.acp-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.acp-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.acp-contact-form {
		padding: 1.5rem;
	}

	.acp-faq-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.acp-faq-item {
		padding: 1.5rem;
	}

	.acp-contact-info-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.acp-contact-hero {
		padding: 5rem 0 3rem;
	}

	.acp-grid-3 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.acp-diagnostic-card h3 {
		word-wrap: break-word;
	}

	.acp-contact-hero h1 {
		font-size: 1.875rem;
	}

	.acp-contact-hero-subtitle {
		font-size: 1rem;
	}

	.acp-contact-info-card,
	.acp-contact-form,
	.acp-faq-item {
		padding: 1.25rem;
	}

	.acp-contact-info {
		padding: 4rem 0;
	}

	.acp-contact-form-section,
	.acp-contact-faq {
		padding: 4rem 0;
	}

	.acp-map-container iframe {
		height: 250px;
	}
}

.acp-policy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px 80px;
	background-color: #ffffff;
	line-height: 1.6;
}

.acp-policy-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid #e74c3c;
}

.acp-policy-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.acp-policy-title i {
	color: #e74c3c;
	font-size: 2.2rem;
}

.acp-policy-date {
	font-size: 1.1rem;
	color: #2d3436;
	font-weight: 500;
}

.acp-policy-section {
	margin-bottom: 50px;
	background: #ffffff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
	border-left: 4px solid #e74c3c;
	transition: all 0.3s ease;
}

.acp-policy-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.15);
}

.acp-policy-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f8f9fa;
}

.acp-policy-section-title i {
	color: #e74c3c;
	font-size: 1.5rem;
}

.acp-policy-section-content {
	color: #2d3436;
	font-size: 1.05rem;
	line-height: 1.8;
}

.acp-policy-section-content p {
	margin-bottom: 20px;
}

.acp-policy-section-content p:last-child {
	margin-bottom: 0;
}

.acp-policy-contact {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: #ffffff;
	padding: 40px;
	border-radius: 12px;
	margin-top: 60px;
	text-align: center;
}

.acp-policy-contact-title {
	font-size: 1.6rem;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.acp-policy-contact-title i {
	color: #e74c3c;
}

.acp-policy-contact-info {
	max-width: 600px;
	margin: 0 auto;
}

.acp-policy-contact-info p {
	margin-bottom: 15px;
	font-size: 1.05rem;
}

.acp-policy-contact-info a {
	color: #e74c3c;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.acp-policy-contact-info a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
	.acp-policy-container {
		padding: 100px 15px 60px;
	}

	.acp-policy-title {
		font-size: 2rem;
		flex-direction: column;
		gap: 10px;
	}

	.acp-policy-title i {
		font-size: 1.8rem;
	}

	.acp-policy-section {
		padding: 25px;
		margin-bottom: 30px;
	}

	.acp-policy-section-title {
		font-size: 1.4rem;
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.acp-policy-section-content {
		font-size: 1rem;
	}

	.acp-policy-contact {
		padding: 30px 20px;
	}

	.acp-policy-contact-title {
		font-size: 1.4rem;
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 480px) {
	.acp-policy-title {
		font-size: 1.6rem;
	}

	.acp-policy-section {
		padding: 20px;
	}

	.acp-policy-section-title {
		font-size: 1.2rem;
	}

	.acp-policy-section-content {
		font-size: 0.95rem;
		line-height: 1.6;
	}
}
