* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
	line-height: 1.6;
	color: #111827;
	background-color: #f9fafb;
}

/* === ТИПОГРАФИКА === */
.mce-heading-primary {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 3.5rem;
	line-height: 1.1;
	color: #111827;
	margin-bottom: 1.5rem;
}

.mce-heading-secondary {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.2;
	color: #111827;
	margin-bottom: 1.25rem;
}

.mce-heading-tertiary {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1.3;
	color: #111827;
	margin-bottom: 1rem;
}

.mce-heading-quaternary {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	color: #111827;
	margin-bottom: 0.875rem;
}

.mce-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 1.5rem;
}

.mce-text-regular {
	font-size: 1rem;
	line-height: 1.6;
	color: #374151;
	margin-bottom: 1rem;
}

.mce-text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #6b7280;
}

/* === КНОПКИ === */
.mce-btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 140px;
}

.mce-btn-primary {
	background-color: #2563eb;
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.mce-btn-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.2);
}

.mce-btn-secondary {
	background-color: #10b981;
	color: #ffffff;
	box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1);
}

.mce-btn-secondary:hover {
	background-color: #059669;
	transform: translateY(-2px);
	box-shadow: 0 8px 15px -3px rgba(16, 185, 129, 0.2);
}

.mce-btn-outline {
	background-color: transparent;
	color: #2563eb;
	border: 2px solid #2563eb;
}

.mce-btn-outline:hover {
	background-color: #2563eb;
	color: #ffffff;
	transform: translateY(-2px);
}

/* === HEADER === */
.mce-header {
	background-color: #ffffff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.mce-header.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
}

.mce-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.mce-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #2563eb;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mce-logo i {
	color: #f59e0b;
	font-size: 1.75rem;
}

.mce-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.mce-nav-link {
	color: #374151;
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease;
	position: relative;
}

.mce-nav-link:hover {
	color: #2563eb;
}

.mce-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2563eb;
	transition: width 0.3s ease;
}

.mce-nav-link:hover::after {
	width: 100%;
}

.mce-nav-link i {
	font-size: 0.875rem;
	color: #f59e0b;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.mce-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #374151;
	cursor: pointer;
}

.mce-mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #ffffff;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

.mce-mobile-menu.active {
	display: block;
	animation: mce-slideDown 0.3s ease;
}

.mce-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mce-mobile-nav-link {
	color: #374151;
	text-decoration: none;
	padding: 1rem 2rem;
	font-weight: 500;
	border-bottom: 1px solid #f3f4f6;
	transition: background-color 0.3s ease;
}

.mce-mobile-nav-link:hover {
	background-color: #f3f4f6;
	color: #2563eb;
}

/* === MAIN CONTENT === */
.mce-main {
	margin-top: 70px;
}

/* === HERO СЕКЦИЯ === */
.mce-hero {
	background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mce-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/mce-hero.webp') center/cover;
	opacity: 0.2;
}

.mce-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	text-align: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.mce-hero-content {
	animation: mce-fadeInUp 0.8s ease;
}

.mce-hero-subtitle {
	font-size: 1.25rem;
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.mce-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.mce-hero-image {
	text-align: center;
	animation: mce-fadeInRight 0.8s ease 0.2s both;
}

.mce-hero-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* === СЕКЦИИ === */
.mce-section {
	padding: 80px 0;
}

.mce-section-alt {
	background-color: #ffffff;
}

.mce-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mce-section-header {
	text-align: center;
	margin-bottom: 4rem;
	animation: mce-fadeInUp 0.6s ease;
}

.mce-section-subtitle {
	font-size: 1.125rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

/* === КАРТОЧКИ === */
.mce-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.mce-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #f3f4f6;
}

.mce-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.mce-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.mce-card-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.mce-card-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #111827;
	margin-bottom: 1rem;
}

.mce-card-text {
	color: #6b7280;
	line-height: 1.6;
}

/* === МАТЕРИАЛЫ GRID === */
.mce-materials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.mce-material-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-left: 4px solid #2563eb;
}

.mce-material-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
	border-left-color: #10b981;
}

.mce-material-icon {
	width: 50px;
	height: 50px;
	background-color: #f59e0b;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.mce-material-icon i {
	font-size: 1.25rem;
	color: #ffffff;
}

/* === ОТЗЫВЫ === */
.mce-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.mce-testimonial {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all 0.3s ease;
}

.mce-testimonial:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.mce-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
	border: 4px solid #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mce-testimonial-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mce-testimonial-text {
	font-style: italic;
	color: #6b7280;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.mce-testimonial-author {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.25rem;
	margin-top: auto;
}

.mce-testimonial-city {
	color: #2563eb;
	font-size: 0.875rem;
}

/* === СТАТИСТИКА === */
.mce-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.mce-stat-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-top: 4px solid #10b981;
}

.mce-stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.mce-stat-number {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.mce-stat-label {
	color: #6b7280;
	font-weight: 500;
}

/* === ФОРМА === */
.mce-contact-section {
	background-color: #ffffff;
	padding: 80px 0;
}

.mce-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.mce-form {
	background-color: #f9fafb;
	padding: 2.5rem;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.mce-form-group {
	margin-bottom: 1.5rem;
}

.mce-form-label {
	display: block;
	color: #374151;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.mce-form-input,
.mce-form-select,
.mce-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: #ffffff;
}

.mce-form-input:focus,
.mce-form-select:focus,
.mce-form-textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.mce-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.mce-form-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.mce-form-success {
	background-color: #d1fae5;
	color: #065f46;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	display: none;
}

/* === КАРТА === */
.mce-map-container {
	background-color: #f3f4f6;
	border-radius: 1rem;
	overflow: hidden;
	height: 100%;
	border: 1px solid #e5e7eb;
}

.mce-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.mce-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.mce-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.mce-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 === */
.mce-footer {
	background-color: #f3f4f6;
	padding: 60px 0 20px;
	border-top: 1px solid #e5e7eb;
}

.mce-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.mce-footer-section h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
}

.mce-footer-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #2563eb;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mce-footer-tagline {
	color: #6b7280;
	line-height: 1.6;
}

.mce-footer-nav {
	list-style: none;
}

.mce-footer-nav li {
	margin-bottom: 0.75rem;
}

.mce-footer-nav a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mce-footer-nav a:hover {
	color: #2563eb;
}

.mce-contact-info {
	color: #6b7280;
	line-height: 1.8;
}

.mce-contact-info strong {
	color: #374151;
}

.mce-disclaimer {
	background-color: #e5e7eb;
	padding: 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.5;
}

.mce-footer-bottom {
	border-top: 1px solid #d1d5db;
	padding-top: 2rem;
	text-align: center;
	color: #6b7280;
	font-size: 0.875rem;
}

/* === COOKIE POPUP === */
.mce-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
	z-index: 10000;
	display: none;
	max-width: 500px;
	margin: 0 auto;
	border: 1px solid #e5e7eb;
}

.mce-cookie-popup.show {
	display: block;
	animation: mce-slideUp 0.5s ease;
}

.mce-cookie-text {
	color: #374151;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.mce-cookie-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.mce-cookie-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mce-cookie-accept {
	background-color: #2563eb;
	color: #ffffff;
}

.mce-cookie-accept:hover {
	background-color: #1d4ed8;
}

.mce-cookie-decline {
	background-color: #6b7280;
	color: #ffffff;
}

.mce-cookie-decline:hover {
	background-color: #4b5563;
}

/* === БЛОГ === */
.mce-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.mce-blog-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #f3f4f6;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mce-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.mce-blog-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
	border-bottom: 1px solid #f3f4f6;
}

.mce-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mce-blog-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.mce-blog-date {
	color: #2563eb;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.mce-blog-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	word-wrap: break-word;
	color: #111827;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.mce-blog-excerpt {
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.mce-blog-read-more {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.mce-blog-read-more:hover {
	color: #1d4ed8;
}

/* === КОМАНДА === */
.mce-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.mce-team-member {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.mce-team-member:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.mce-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
	border: 4px solid #ffffff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mce-team-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.mce-team-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
	color: #111827;
	margin-bottom: 0.5rem;
}

.mce-team-position {
	color: #2563eb;
	font-weight: 500;
	margin-bottom: 1rem;
}

.mce-team-bio {
	color: #6b7280;
	line-height: 1.6;
}

/* === АНИМАЦИИ === */
@keyframes mce-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mce-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes mce-slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mce-slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Анимации при скролле */
.mce-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.mce-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
	.mce-hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.mce-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.mce-materials-grid {
		grid-template-columns: 1fr;
	}

	.mce-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	.mce-nav {
		display: none;
	}

	.mce-mobile-menu-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.mce-heading-primary {
		font-size: 2.5rem;
	}

	.mce-heading-secondary {
		font-size: 2rem;
	}

	.mce-section {
		padding: 60px 0;
	}

	.mce-hero {
		padding: 60px 0;
	}

	.mce-hero-buttons {
		justify-content: center;
	}

	.mce-cards-grid {
		grid-template-columns: 1fr;
	}

	.mce-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.mce-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mce-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.mce-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.mce-cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.mce-header-container {
		padding: 0 15px;
	}

	.mce-container {
		padding: 0 15px;
	}

	.mce-heading-primary {
		font-size: 1.8rem;
	}

	.mce-heading-secondary {
		font-size: 1.5rem;
	}

	.mce-btn {
		padding: 10px 20px;
		font-size: 0.875rem;
		min-width: 120px;
	}

	.mce-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.mce-stats-grid {
		grid-template-columns: 1fr;
	}

	.mce-form {
		padding: 1.5rem;
	}

	.mce-cookie-buttons {
		flex-direction: column;
	}

	.mce-cookie-btn {
		width: 100%;
		text-align: center;
	}

	.mce-blog-grid,
	.mce-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

/* === ДОПОЛНИТЕЛЬНЫЕ УТИЛИТЫ === */
.mce-text-center {
	text-align: center;
}

.mce-text-left {
	text-align: left;
}

.mce-text-right {
	text-align: right;
}

.mce-mb-0 {
	margin-bottom: 0;
}
.mce-mb-1 {
	margin-bottom: 0.25rem;
}
.mce-mb-2 {
	margin-bottom: 0.5rem;
}
.mce-mb-3 {
	margin-bottom: 0.75rem;
}
.mce-mb-4 {
	margin-bottom: 1rem;
}
.mce-mb-5 {
	margin-bottom: 1.25rem;
}
.mce-mb-6 {
	margin-bottom: 1.5rem;
}

.mce-mt-0 {
	margin-top: 0;
}
.mce-mt-1 {
	margin-top: 0.25rem;
}
.mce-mt-2 {
	margin-top: 0.5rem;
}
.mce-mt-3 {
	margin-top: 0.75rem;
}
.mce-mt-4 {
	margin-top: 1rem;
}
.mce-mt-5 {
	margin-top: 1.25rem;
}
.mce-mt-6 {
	margin-top: 1.5rem;
}

.mce-hidden {
	display: none;
}

.mce-visible {
	display: block;
}

/* === ДОПОЛНИТЕЛЬНЫЕ КОМПОНЕНТЫ === */
.mce-breadcrumb {
	background-color: #f9fafb;
	padding: 1rem 0;
	border-bottom: 1px solid #e5e7eb;
}

.mce-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	color: #6b7280;
	font-size: 0.875rem;
}

.mce-breadcrumb-item a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mce-breadcrumb-item a:hover {
	color: #2563eb;
}

.mce-breadcrumb-separator {
	color: #d1d5db;
}

.mce-page-title {
	background-color: #ffffff;
	padding: 3rem 0;
	border-bottom: 1px solid #e5e7eb;
}

.mce-page-title h1 {
	margin-bottom: 0.5rem;
}

.mce-page-subtitle {
	color: #6b7280;
	font-size: 1.125rem;
	line-height: 1.6;
}

.mce-legal-container {
	max-width: 1000px;
	margin: 120px auto;

	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	animation: mce-legal-fadeIn 0.8s ease-out;
}

/* Анимация появления */
@keyframes mce-legal-fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Заголовочная секция */
.mce-legal-header {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	padding: 3rem 2.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mce-legal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	animation: mce-legal-rotate 20s linear infinite;
}

@keyframes mce-legal-rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.mce-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.mce-legal-subtitle {
	font-size: 1.2rem;
	opacity: 0.95;
	margin-bottom: 0.5rem;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

.mce-legal-date {
	font-size: 0.95rem;
	opacity: 0.8;
	font-weight: 300;
	position: relative;
	z-index: 1;
}

/* Основной контент */
.mce-legal-content {
	padding: 0;
}

.mce-legal-section {
	border-bottom: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

.mce-legal-section:last-child {
	border-bottom: none;
}

.mce-legal-section:hover {
	background-color: #fafbfc;
}

.mce-legal-section-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #2563eb;
	padding: 2rem 2.5rem 1rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
}

.mce-legal-section-title::before {
	content: '';
	width: 4px;
	height: 24px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 2px;
	flex-shrink: 0;
}

.mce-legal-section-content {
	padding: 0 2.5rem 2rem 2.5rem;
	color: #374151;
	line-height: 1.8;
}

.mce-legal-section-content p {
	margin-bottom: 1.2rem;
}

.mce-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Выделенный текст */
.mce-legal-highlight {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	padding: 1rem 1.5rem;
	border-radius: 8px;
	border-left: 4px solid #f59e0b;
	margin: 1.5rem 0;
	font-weight: 500;
}

/* Списки */
.mce-legal-list {
	margin: 1.2rem 0;
	padding-left: 0;
	list-style: none;
}

.mce-legal-list li {
	margin-bottom: 0.8rem;
	padding-left: 2rem;
	position: relative;
	line-height: 1.6;
}

.mce-legal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 50%;
	transform: translateY(-50%);
}

.mce-legal-list li strong {
	color: #2563eb;
	font-weight: 600;
}

/* Ссылки */
.mce-legal-link {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.mce-legal-link:hover {
	color: #1d4ed8;
	border-bottom-color: #1d4ed8;
}

/* Контактная информация */
.mce-legal-contact {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 1.5rem;
	border: 1px solid #bae6fd;
	text-align: center;
	font-weight: 500;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
	.mce-legal-main {
		padding: 1rem 0.5rem;
	}

	.mce-legal-container {
		border-radius: 8px;
		margin: 120px 20px;
	}

	.mce-legal-header {
		padding: 2rem 1.5rem;
	}

	.mce-legal-title {
		font-size: 2rem;
	}

	.mce-legal-subtitle {
		font-size: 1.1rem;
	}

	.mce-legal-section-title {
		padding: 1.5rem 1.5rem 0.8rem 1.5rem;
		font-size: 1.3rem;
	}

	.mce-legal-section-content {
		padding: 0 1.5rem 1.5rem 1.5rem;
	}

	.mce-legal-list li {
		padding-left: 1.5rem;
	}
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
	.mce-legal-main {
		padding: 0.5rem 0.25rem;
	}

	.mce-legal-container {
		border-radius: 4px;
	}

	.mce-legal-header {
		padding: 1.5rem 1rem;
	}

	.mce-legal-title {
		font-size: 1.3rem;
		line-height: 1.2;
	}

	.mce-legal-subtitle {
		font-size: 1rem;
		line-height: 1.4;
	}

	.mce-legal-date {
		font-size: 0.9rem;
	}

	.mce-legal-section-title {
		padding: 1.2rem 1rem 0.6rem 1rem;
		font-size: 1.2rem;
	}

	.mce-legal-section-content {
		padding: 0 1rem 1.2rem 1rem;
		font-size: 0.95rem;
	}

	.mce-legal-list li {
		padding-left: 1.2rem;
		margin-bottom: 0.6rem;
	}

	.mce-legal-highlight {
		padding: 0.8rem 1rem;
		margin: 1rem 0;
		font-size: 0.95rem;
	}

	.mce-legal-contact {
		padding: 1rem;
		font-size: 0.9rem;
	}
}
