@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
	--be-bg-primary: #f8f9fb;
	--be-bg-white: #ffffff;
	--be-accent-blue: #3a86ff;
	--be-accent-pink: #ff006e;
	--be-accent-yellow: #ffbe0b;
	--be-text-dark: #1e1e1e;
	--be-text-medium: #6b7280;
	--be-text-light: #9ca3af;
	--be-footer-bg: #f1f3f7;
	--be-shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
	--be-shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
	--be-border-radius: 12px;
	--be-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--be-text-dark);
	background-color: var(--be-bg-primary);
	overflow-x: hidden;
}

.be-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.be-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* === ЗАГОЛОВКИ === */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
}

h3 {
	font-size: 1.8rem;
}

h4 {
	font-size: 1.4rem;
}

p {
	margin-bottom: 1.2rem;
	color: var(--be-text-medium);
}

a {
	color: var(--be-accent-blue);
	text-decoration: none;
	transition: var(--be-transition);
}

a:hover {
	color: var(--be-accent-pink);
	text-decoration: underline;
}

/* === КНОПКИ === */
.be-btn {
	display: inline-block;
	padding: 14px 28px;
	border: none;
	border-radius: var(--be-border-radius);
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: var(--be-transition);
	text-align: center;
}

.be-btn-primary {
	background-color: var(--be-accent-blue);
	color: white;
	box-shadow: 0 4px 12px rgba(58, 134, 255, 0.3);
}

.be-btn-primary:hover {
	background-color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(58, 134, 255, 0.4);
	color: white;
	text-decoration: none;
}

.be-btn-secondary {
	background-color: transparent;
	color: var(--be-accent-blue);
	border: 2px solid var(--be-accent-blue);
}

.be-btn-secondary:hover {
	background-color: var(--be-accent-blue);
	color: white;
	text-decoration: none;
}

.be-btn-accent {
	background-color: var(--be-accent-pink);
	color: white;
	box-shadow: 0 4px 12px rgba(255, 0, 110, 0.3);
}

.be-btn-accent:hover {
	background-color: #db0057;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 0, 110, 0.4);
	color: white;
	text-decoration: none;
}

/* === HEADER === */
.be-header {
	background-color: var(--be-bg-white);
	box-shadow: var(--be-shadow-light);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--be-transition);
}

.be-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.be-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--be-accent-blue);
	text-decoration: none;
}

.be-logo:hover {
	color: var(--be-accent-pink);
	text-decoration: none;
}

.be-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.be-nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.be-nav-item {
	position: relative;
}

.be-nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: var(--be-text-dark);
	text-decoration: none;
	transition: var(--be-transition);
	padding: 0.5rem 0;
}

.be-nav-link:hover {
	color: var(--be-accent-blue);
	text-decoration: none;
}

.be-nav-link i {
	font-size: 0.9rem;
}

.be-nav-accent {
	position: absolute;
	bottom: -1rem;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--be-accent-blue),
		var(--be-accent-pink),
		var(--be-accent-yellow)
	);
}

.be-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--be-text-dark);
	cursor: pointer;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.be-mobile-menu {
	display: none;
	position: fixed;

	left: 0;
	width: 100%;
	background-color: var(--be-bg-white);
	box-shadow: var(--be-shadow-medium);
	z-index: 999;
	transform: translateY(-100%);
	transition: var(--be-transition);
}

.be-mobile-menu.be-active {
	display: block;
	transform: translateY(0);
}

.be-mobile-nav {
	padding: 2rem;
}

.be-mobile-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.be-mobile-nav-item {
	margin-bottom: 1rem;
}

.be-mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: var(--be-text-dark);
	text-decoration: none;
	padding: 1rem;
	border-radius: var(--be-border-radius);
	transition: var(--be-transition);
}

.be-mobile-nav-link:hover {
	background-color: var(--be-bg-primary);
	color: var(--be-accent-blue);
	text-decoration: none;
}

/* === HERO СЕКЦИЯ === */
.be-hero {
	background: linear-gradient(
		135deg,
		rgba(58, 134, 255, 0.1),
		rgba(255, 0, 110, 0.05)
	);
	padding: 8rem 0 4rem;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.be-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/be-hero.webp') center/cover;
	opacity: 0.3;
	z-index: 1;
}

.be-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.be-hero h1 {
	color: var(--be-text-dark);
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: be-fadeInUp 1s ease-out 0.3s forwards;
}

.be-hero-subtitle {
	font-size: 1.3rem;
	color: var(--be-text-medium);
	margin-bottom: 3rem;
	opacity: 0;
	animation: be-fadeInUp 1s ease-out 0.6s forwards;
}

.be-hero-buttons {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: be-fadeInUp 1s ease-out 0.9s forwards;
}

/* === СЕКЦИИ === */
.be-section {
	padding: 5rem 0;
	position: relative;
}

.be-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.be-section-header h2 {
	color: var(--be-text-dark);
	margin-bottom: 1rem;
}

.be-section-header p {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.be-section-accent {
	background-color: var(--be-bg-white);
}

/* === КАРТОЧКИ === */
.be-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.be-card {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	padding: 2rem;
	box-shadow: var(--be-shadow-light);
	transition: var(--be-transition);
	position: relative;
	overflow: hidden;
}

.be-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--be-accent-blue),
		var(--be-accent-pink)
	);
}

.be-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--be-shadow-medium);
}

.be-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--be-accent-blue),
		var(--be-accent-pink)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.be-card-icon i {
	font-size: 1.5rem;
	color: white;
}

.be-card h3 {
	color: var(--be-text-dark);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.be-card p {
	color: var(--be-text-medium);
}

/* === КОМАНДА === */
.be-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.be-team-card {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--be-shadow-light);
	transition: var(--be-transition);
}

.be-team-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--be-shadow-medium);
}

.be-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--be-accent-blue),
		var(--be-accent-pink)
	);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	font-weight: 700;
}

.be-team-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.be-team-name {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--be-text-dark);
	margin-bottom: 0.5rem;
}

.be-team-role {
	color: var(--be-accent-blue);
	font-weight: 500;
}

/* === ОТЗЫВЫ === */
.be-testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.be-testimonial {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	padding: 2rem;
	box-shadow: var(--be-shadow-light);
	position: relative;
	transition: var(--be-transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.be-testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: var(--be-accent-blue);
	opacity: 0.3;
}

.be-testimonial:hover {
	transform: translateY(-3px);
	box-shadow: var(--be-shadow-medium);
}

.be-testimonial-text {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--be-text-medium);
}

.be-testimonial-author {
	font-weight: 600;
	color: var(--be-accent-blue);
	margin-top: auto;
}

/* === ФОРМЫ === */
.be-form {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	padding: 2.5rem;
	box-shadow: var(--be-shadow-light);
}

.be-form-group {
	margin-bottom: 1.5rem;
}

.be-form-label {
	display: block;
	font-weight: 500;
	color: var(--be-text-dark);
	margin-bottom: 0.5rem;
}

.be-form-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: var(--be-border-radius);
	font-size: 16px;
	transition: var(--be-transition);
	background-color: var(--be-bg-white);
}

.be-form-input:focus {
	outline: none;
	border-color: var(--be-accent-blue);
	box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.be-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.be-form-error {
	color: #ef4444;
	font-size: 14px;
	margin-top: 0.5rem;
	display: none;
}

.be-form-success {
	background-color: #10b981;
	color: white;
	padding: 1rem;
	border-radius: var(--be-border-radius);
	text-align: center;
	margin-bottom: 1rem;
	display: none;
}

/* === ТАБЛИЦЫ === */
.be-table-container {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-light);
	overflow-x: auto;
	margin: 2rem 0;
}

.be-table {
	width: 100%;
	border-collapse: collapse;
}

.be-table th {
	background-color: var(--be-accent-blue);
	color: white;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
}

.be-table td {
	padding: 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.be-table tr:hover {
	background-color: var(--be-bg-primary);
}

/* === АККОРДЕОН === */
.be-accordion {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-light);
	overflow: hidden;
}

.be-accordion-item {
	border-bottom: 1px solid #e5e7eb;
}

.be-accordion-item:last-child {
	border-bottom: none;
}

.be-accordion-header {
	padding: 1.5rem;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--be-text-dark);
	transition: var(--be-transition);
}

.be-accordion-header:hover {
	background-color: var(--be-bg-primary);
}

.be-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.be-accordion-content.be-active {
	max-height: 1500px;
}

.be-accordion-body {
	padding: 1rem 1.5rem 1.5rem;
	color: var(--be-text-medium);
}

/* === ТАБЫ === */
.be-tabs {
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-light);
	overflow: hidden;
}

.be-tab-nav {
	display: flex;
	background-color: var(--be-bg-primary);
}

.be-tab-btn {
	flex: 1;
	padding: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: var(--be-transition);
	color: var(--be-text-medium);
}

.be-tab-btn.be-active {
	background-color: var(--be-accent-blue);
	color: white;
}

.be-tab-content {
	display: none;
	padding: 2rem;
}

.be-tab-content.be-active {
	display: block;
}

/* === КАРТА === */
.be-map-container {
	background-color: var(--be-bg-white);
	border-radius: 1rem;
	box-shadow: var(--be-shadow-light);
	overflow: hidden;
	height: 100%;
}

.be-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.be-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.be-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.be-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;
}

/* === COOKIE POPUP === */
.be-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background-color: var(--be-text-dark);
	color: white;
	padding: 1.5rem;
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-medium);
	z-index: 1001;
	display: none;
	animation: be-slideInUp 0.5s ease-out;
}

.be-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.be-cookie-text {
	flex: 1;
}

.be-cookie-text p {
	margin-bottom: 0;
}

.be-cookie-actions {
	display: flex;
	gap: 1rem;
}

.be-cookie-accept {
	background-color: var(--be-accent-blue);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--be-border-radius);
	font-weight: 500;
	cursor: pointer;
	transition: var(--be-transition);
}

.be-cookie-accept:hover {
	background-color: #2563eb;
}

.be-cookie-link {
	color: var(--be-accent-yellow);
	text-decoration: underline;
}

/* === FOOTER === */
.be-footer {
	background-color: var(--be-footer-bg);
	padding: 4rem 0 2rem;
}

.be-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.be-footer-section h3 {
	color: var(--be-text-dark);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.be-footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--be-accent-blue);
	margin-bottom: 1rem;
}

.be-footer-description {
	color: var(--be-text-medium);
	line-height: 1.6;
}

.be-footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.be-footer-nav-item {
	margin-bottom: 0.75rem;
}

.be-footer-nav-link {
	color: var(--be-text-medium);
	text-decoration: none;
	transition: var(--be-transition);
}

.be-footer-nav-link:hover {
	color: var(--be-accent-blue);
	text-decoration: none;
}

.be-contact-info {
	color: var(--be-text-medium);
	line-height: 1.8;
}

.be-contact-info strong {
	color: var(--be-text-dark);
}

.be-footer-bottom {
	border-top: 1px solid #e5e7eb;
	padding-top: 2rem;
	text-align: center;
	color: var(--be-text-medium);
}

/* === АНИМАЦИИ === */
@keyframes be-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes be-slideInUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes be-slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.be-animate-fade-in {
	opacity: 0;
	animation: be-fadeInUp 0.8s ease-out forwards;
}

.be-animate-slide-left {
	opacity: 0;
	animation: be-slideInLeft 0.8s ease-out forwards;
}

/* === УТИЛИТЫ === */
.be-text-center {
	text-align: center;
}

.be-text-left {
	text-align: left;
}

.be-text-right {
	text-align: right;
}

.be-mb-0 {
	margin-bottom: 0;
}
.be-mb-1 {
	margin-bottom: 0.5rem;
}
.be-mb-2 {
	margin-bottom: 1rem;
}
.be-mb-3 {
	margin-bottom: 1.5rem;
}
.be-mb-4 {
	margin-bottom: 2rem;
}

.be-mt-0 {
	margin-top: 0;
}
.be-mt-1 {
	margin-top: 0.5rem;
}
.be-mt-2 {
	margin-top: 1rem;
}
.be-mt-3 {
	margin-top: 1.5rem;
}
.be-mt-4 {
	margin-top: 2rem;
}

.be-hidden {
	display: none;
}

.be-visible {
	display: block;
}

/* === ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ === */
.be-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background-color: var(--be-accent-yellow);
	color: var(--be-text-dark);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
}

.be-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--be-accent-blue),
		transparent
	);
	margin: 3rem 0;
}

.be-highlight {
	background: linear-gradient(
		120deg,
		rgba(255, 190, 11, 0.2) 0%,
		rgba(255, 190, 11, 0.2) 100%
	);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-weight: 500;
}

.be-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.be-stat {
	text-align: center;
	padding: 2rem;
	background-color: var(--be-bg-white);
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-light);
}

.be-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--be-accent-blue);
	margin-bottom: 0.5rem;
}

.be-stat-label {
	color: var(--be-text-medium);
	font-weight: 500;
}

.be-loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #f3f3f3;
	border-top: 3px solid var(--be-accent-blue);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ КОНТЕНТА === */
.be-content-section {
	background-color: var(--be-bg-white);
	padding: 3rem;
	border-radius: var(--be-border-radius);
	box-shadow: var(--be-shadow-light);
	margin-bottom: 2rem;
}

.be-content-section h3 {
	color: var(--be-accent-blue);
	border-bottom: 2px solid var(--be-accent-blue);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.be-list {
	list-style: none;
	padding: 0;
}

.be-list-item {
	padding: 0.75rem 0;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
	padding-left: 2rem;
}

.be-list-item::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: var(--be-accent-blue);
	font-size: 0.8rem;
}

.be-list-item:last-child {
	border-bottom: none;
}

.be-quote {
	background-color: var(--be-bg-primary);
	border-left: 4px solid var(--be-accent-blue);
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 var(--be-border-radius) var(--be-border-radius) 0;
	font-style: italic;
}

.be-image-placeholder {
	width: 100%;
	height: 200px;
	background: linear-gradient(
		135deg,
		var(--be-accent-blue),
		var(--be-accent-pink)
	);
	border-radius: var(--be-border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	margin: 1rem 0;
}

/* === ФИНАЛЬНЫЕ СТИЛИ === */
.be-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: var(--be-accent-blue);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	z-index: 1000;
	transition: var(--be-transition);
	font-size: 1.2rem;
}

.be-back-to-top:hover {
	background-color: var(--be-accent-pink);
	transform: translateY(-3px);
}

.be-social-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.be-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--be-accent-blue);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	transition: var(--be-transition);
}

.be-social-link:hover {
	background-color: var(--be-accent-pink);
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

/* === АДАПТИВНЫЙ ДИЗАЙН === */
@media (max-width: 920px) {
	.be-nav-menu {
		display: none;
	}

	.be-mobile-menu-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.be-hero {
		padding: 6rem 0 3rem;
	}

	.be-hero-subtitle {
		font-size: 1.1rem;
	}

	.be-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.be-btn {
		width: 100%;
		max-width: 300px;
	}

	.be-section {
		padding: 3rem 0;
	}

	.be-cards {
		grid-template-columns: 1fr;
	}

	.be-team-grid {
		grid-template-columns: 1fr;
	}

	.be-testimonials {
		grid-template-columns: 1fr;
	}

	.be-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.be-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.be-cookie-actions {
		justify-content: center;
	}

	.be-tab-nav {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.be-container {
		padding: 0 15px;
	}

	h1 {
		font-size: 2rem;
	}

	.be-hero {
		padding: 5rem 0 2rem;
	}

	.be-card,
	.be-form {
		padding: 1.5rem;
	}

	.be-content-section {
		padding: 2rem;
	}

	.be-content-section h2 {
		font-size: 1.5rem;
	}

	.be-content-section h3,
	.be-tab-content h4 {
		font-size: 1.2rem;
		word-wrap: break-word;
	}

	.be-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
}

.be-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #f8f9fb;
}

.be-legal-content {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid rgba(58, 134, 255, 0.08);
}

/* Header Styles */
.be-legal-header {
	background: linear-gradient(135deg, #3a86ff 0%, #ff006e 100%);
	padding: 60px 40px;
	text-align: center;
	color: #ffffff;
	position: relative;
}

.be-legal-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
		repeat;
	opacity: 0.3;
}

.be-legal-title {
	font-size: 3.2rem;
	font-weight: 700;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	letter-spacing: -1px;
}

.be-legal-subtitle {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 24px;
	opacity: 0.9;
	position: relative;
	color: #fff;
	z-index: 1;
}

.be-legal-meta {
	display: flex;
	justify-content: center;
	gap: 32px;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}

.be-legal-date,
.be-legal-update {
	font-size: 0.95rem;
	background-color: rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

/* Introduction Section */
.be-legal-intro {
	padding: 40px;
	background-color: #ffffff;

	margin: 0;
	font-size: 1.1rem;
	color: #1e1e1e;
	background: linear-gradient(
		90deg,
		rgba(58, 134, 255, 0.05) 0%,
		transparent 100%
	);
}

.be-legal-intro p {
	margin: 0;
}

/* Section Styles */
.be-legal-section {
	padding: 0;
	border-bottom: 1px solid #e8ebf1;
	transition: all 0.3s ease;
}

.be-legal-section:last-child {
	border-bottom: none;
}

.be-legal-section:hover {
	background-color: rgba(58, 134, 255, 0.02);
}

.be-legal-section-title {
	background: linear-gradient(135deg, #3a86ff 0%, #ff006e 100%);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 24px 40px;
	margin: 0;
	position: relative;
	border: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.be-legal-content {
	counter-reset: section-counter;
}

.be-legal-section-content {
	padding: 40px;
	background-color: #ffffff;
}

.be-legal-section-content p {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 1rem;
}

.be-legal-section-content p:last-child {
	margin-bottom: 0;
}

/* Contact Information Styles */
.be-legal-contact-info {
	background: linear-gradient(
		135deg,
		rgba(58, 134, 255, 0.08) 0%,
		rgba(255, 0, 110, 0.08) 100%
	);
	border: 2px solid rgba(58, 134, 255, 0.15);
	border-radius: 12px;
	padding: 24px;
	margin: 24px 0;
	position: relative;
	overflow: hidden;
}

.be-legal-contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #3a86ff 0%, #ff006e 50%, #ffbe0b 100%);
}

.be-legal-contact-info p {
	margin-bottom: 12px;
	font-size: 1rem;
}

.be-legal-contact-info p:last-child {
	margin-bottom: 0;
}

/* Typography Enhancements */
strong {
	color: #1e1e1e;
	font-weight: 600;
}

/* Accent Elements */
.be-legal-section-content p strong {
	color: #3a86ff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.be-legal-header {
		padding: 40px 20px;
	}

	.be-legal-title {
		font-size: 2.4rem;
		line-height: 1.2;
	}

	.be-legal-subtitle {
		font-size: 1.1rem;
	}

	.be-legal-meta {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.be-legal-intro,
	.be-legal-section-content {
		padding: 24px 20px;
	}

	.be-legal-section-title {
		padding: 20px;
		font-size: 1.3rem;
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.be-legal-contact-info {
		padding: 20px;
		margin: 20px 0;
	}
}

@media (max-width: 480px) {
	.be-legal-title {
		font-size: 1.3rem;
	}

	.be-legal-section-title {
		font-size: 1.2rem;
	}

	.be-legal-intro,
	.be-legal-section-content {
		padding: 20px 16px;
	}

	.be-legal-contact-info {
		padding: 16px;
	}
}
