:root {
	/* Light Theme */
	--bg-primary: #F7F8FA;
	--bg-secondary: rgba(255, 255, 255, 0.9);
	--text-primary: #3c4052;
	--text-secondary: rgba(74, 79, 101, 0.85);
	--text-tertiary: rgba(74, 79, 101, 0.45);
	--border-light: rgba(0, 0, 0, 0.06);
	--border-medium: rgba(0, 0, 0, 0.12);
	--accent-primary: #7EB6E3;
	--accent-secondary: #65A9DD;
	--row-hover: rgba(0, 0, 0, 0.02);
	--gradient-primary: linear-gradient(135deg, #7EB6E3 0%, #65A9DD 100%);
	--gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.05) 0%, rgba(126, 182, 227, 0) 100%);
	--ease-premium: cubic-bezier(0.33, 1, 0.68, 1);
	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
	
	/* Category Colors */
	--cat-banks: #eeac2c;
	--cat-fitness: #e34e72;
	--cat-pharmacy: #38c87a;
	--cat-beauty: #b55cec;
	--cat-legal: #df6246;
}

/* ========================================
   ПРЕВЕНТИВНАЯ ТЕМА (предотвращение мигания)
   ======================================== */
html.night-mode-loading {
	background: #0e1116;
}

html.night-mode-loading body {
	background: #0e1116;
	color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   ТЕМНАЯ ТЕМА
   ======================================== */
body.night-mode {
	--bg-primary: #0e1116;
	--bg-secondary: rgba(26, 26, 31, 0.95);
	--text-primary: rgba(255, 255, 255, 0.95);
	--text-secondary: rgba(255, 255, 255, 0.7);
	--text-tertiary: rgba(255, 255, 255, 0.45);
	--border-light: rgba(255, 255, 255, 0.1);
	--border-medium: rgba(255, 255, 255, 0.15);
	--row-hover: rgba(255, 255, 255, 0.03);
	--gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.08) 0%, rgba(126, 182, 227, 0) 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: var(--bg-primary);
	color: var(--text-primary);
	min-height: 100vh;
	font-weight: 400;
	letter-spacing: -0.011em;
	font-feature-settings: 'ss01' on, 'ss02' on, 'cv01' on;
	transition: background 0.4s ease, color 0.3s ease;
}

/* Header */
.page-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: var(--bg-primary);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	border-bottom: 1px solid var(--border-light);
	transition: background 0.3s ease;
}

.header-logo {
	width: 80px;
	height: 40px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.header-logo:hover {
	opacity: 1;
}

.header-logo svg {
	width: 100%;
	height: 100%;
}

/* Theme Toggle */
.theme-toggle {
	width: 72px;
	height: 36px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	border-radius: 36px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	position: relative;
}

.theme-toggle:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-toggle.night-mode {
	background: linear-gradient(135deg, rgba(20, 20, 35, 0.4) 0%, rgba(40, 40, 70, 0.3) 100%);
	border-color: rgba(100, 120, 255, 0.15);
}

.toggle-slider {
	position: absolute;
	top: 50%;
	left: 4px;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform: translateY(-50%);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.theme-toggle.night-mode .toggle-slider {
	transform: translateX(36px) translateY(-50%);
	background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
}

.sun-icon, .moon-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease;
}

.sun-icon {
	width: 18px;
	height: 18px;
	opacity: 1;
}

.theme-toggle.night-mode .sun-icon {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
}

.moon-icon {
	width: 14px;
	height: 14px;
	opacity: 0;
	transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
}

.theme-toggle.night-mode .moon-icon {
	opacity: 1;
	transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

/* Page Container */
.page-container {
	padding-top: 0px;
	min-height: 100vh;
	background: var(--bg-primary);
}

/* Hero Section - Fixed padding and unified title style */
.hero-section {
	position: relative;
	padding: 120px 60px 80px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
	margin-top: 40px;
}

body.night-mode .hero-section {
	background: linear-gradient(135deg, 
		rgba(126, 182, 227, 0.15) 0%, 
		rgba(101, 169, 221, 0.1) 100%);
	border-bottom: 1px solid rgba(126, 182, 227, 0.2);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0px 0px 50px;
}

/* Unified title style matching other pages */
.page-title {
	font-size: clamp(42px, 6vw, 56px);
	font-weight: 200;
	color: white;
	margin-bottom: 24px;
	letter-spacing: -0.02em;
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.night-mode .page-title {
	color: var(--text-primary);
}

.page-subtitle {
	font-size: 19px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto;
	animation: fadeInUp 1s ease 0.2s both;
}

body.night-mode .page-subtitle {
	color: var(--text-secondary);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Category Tabs - Fixed to remove gap */
.categories-tabs {
	padding: 40px 60px;
	background: var(--bg-secondary);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 100px;
	z-index: 50;
	margin-top: -40px; /* Remove gap between hero and tabs */
}

.tabs-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.tab-button {
	position: relative;
	padding: 16px 32px;
	background: transparent;
	border: none;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 0.3s var(--ease-premium);
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 12px;
}

.tab-button::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	border-radius: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.tab-button:hover {
	color: var(--text-primary);
	transform: translateY(-2px);
}

.tab-button.active {
	color: white;
}

.tab-button.active::before {
	opacity: 1;
}

.tab-icon {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.tab-button.active .tab-icon {
	background: rgba(255, 255, 255, 0.2);
}

/* Content Section */
.infrastructure-content {
	padding: 60px;
	max-width: 1400px;
	margin: 0 auto;
}

.content-wrapper {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 40px;
	height: 700px;
}

/* Objects Sidebar */
.objects-sidebar {
	background: var(--bg-secondary);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.sidebar-header {
	padding: 30px;
	background: var(--gradient-subtle);
	border-bottom: 1px solid var(--border-light);
}

.sidebar-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.objects-count {
	font-size: 14px;
	color: var(--text-tertiary);
}

.objects-list {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
}

.objects-list::-webkit-scrollbar {
	width: 6px;
}

.objects-list::-webkit-scrollbar-track {
	background: var(--border-light);
	border-radius: 3px;
}

.objects-list::-webkit-scrollbar-thumb {
	background: var(--accent-primary);
	border-radius: 3px;
}

/* Fixed object card animation */
.object-card {
	position: relative;
	padding: 20px;
	margin-bottom: 16px;
	background: var(--bg-primary);
	border: 1px solid var(--border-light);
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s var(--ease-premium);
	overflow: hidden;
}

.object-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.object-card[data-category="banks"]::before { background: var(--cat-banks); }
.object-card[data-category="fitness"]::before { background: var(--cat-fitness); }
.object-card[data-category="pharmacy"]::before { background: var(--cat-pharmacy); }
.object-card[data-category="beauty"]::before { background: var(--cat-beauty); }
.object-card[data-category="legal"]::before { background: var(--cat-legal); }

.object-card:hover {
	transform: translateX(4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--accent-primary);
}

.object-card:hover::before {
	opacity: 1;
}

.object-card.active {
	background: var(--gradient-primary);
	color: white;
	border-color: transparent;
	transform: translateX(4px);
	box-shadow: 0 12px 32px rgba(126, 182, 227, 0.25);
}

.object-card.active::before {
	opacity: 0;
}

.object-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.object-category-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.object-card[data-category="banks"] .object-category-dot { background: var(--cat-banks); }
.object-card[data-category="fitness"] .object-category-dot { background: var(--cat-fitness); }
.object-card[data-category="pharmacy"] .object-category-dot { background: var(--cat-pharmacy); }
.object-card[data-category="beauty"] .object-category-dot { background: var(--cat-beauty); }
.object-card[data-category="legal"] .object-category-dot { background: var(--cat-legal); }

.object-card.active .object-category-dot {
	background: rgba(255, 255, 255, 0.8);
}

.object-name {
	font-size: 16px;
	font-weight: 500;
	flex: 1;
}

.object-info {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	opacity: 0.7;
}

.object-card.active .object-info {
	opacity: 0.9;
}

.object-distance {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Map Wrapper */
.map-wrapper {
	position: relative;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	overflow: hidden;
}

.map-controls {
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
}

.map-search {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-light);
	border-radius: 16px;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	pointer-events: auto;
}

body.night-mode .map-search {
	background: rgba(26, 26, 31, 0.95);
}

.map-search-icon {
	width: 20px;
	height: 20px;
	color: var(--text-tertiary);
}

.map-search-text {
	font-size: 14px;
	color: var(--text-secondary);
}

#infrastructure-map {
	width: 100%;
	height: 100%;
}

/* Statistics Section */
.stats-section {
	padding: 80px 60px;
	background: var(--gradient-subtle);
}

.stats-container {
	max-width: 1200px;
	margin: 0 auto;
}

.stats-title {
	text-align: center;
	font-size: 40px;
	font-weight: 200;
	color: var(--text-primary);
	margin-bottom: 60px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.stat-card {
	position: relative;
	padding: 40px 30px;
	background: var(--bg-secondary);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	text-align: center;
	transition: all 0.4s var(--ease-premium);
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(126, 182, 227, 0.15);
}

.stat-card:hover::before {
	transform: scaleX(1);
}

.stat-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	background: var(--gradient-subtle);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
	background: var(--gradient-primary);
	transform: scale(1.1) rotate(5deg);
}

/* Добавить эти стили для изменения цвета SVG */
.stat-icon svg * {
	stroke: var(--accent-primary);
	transition: stroke 0.3s ease;
}

.stat-card:hover .stat-icon svg * {
	stroke: white;
}
.stat-number {
	font-size: 42px;
	font-weight: 600;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-tertiary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Call Button */
.call-me-btn {
	position: fixed;
	bottom: 120px;
	right: 24px;
	width: 64px;
	height: 64px;
	padding: 0;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s var(--ease-premium);
	box-shadow: 0 10px 30px rgba(101, 169, 221, 0.3), 0 20px 60px rgba(101, 169, 221, 0.15);
	z-index: 100;
	animation: breathe 4s ease-in-out infinite;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes breathe {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.call-me-btn::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-primary), transparent, var(--accent-secondary));
	opacity: 0;
	animation: rotateGlow 3s linear infinite;
	z-index: -1;
}

@keyframes rotateGlow {
	0% { transform: rotate(0deg); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: rotate(360deg); opacity: 0; }
}

.call-me-btn svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: all 0.3s ease;
}

.call-me-btn:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 15px 40px rgba(101, 169, 221, 0.4), 0 25px 70px rgba(101, 169, 221, 0.2);
}

/* Modal */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(20px);
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s var(--ease-premium);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	width: 90%;
	max-width: 400px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border-radius: 18px;
	padding: 32px 28px 28px;
	position: relative;
	transform: scale(0.9) translateY(30px);
	transition: all 0.4s var(--ease-premium);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.night-mode .modal-container {
	background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.95));
}

.modal-overlay.active .modal-container {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.15);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s var(--ease-premium);
}

.modal-close:hover {
	background: rgba(0, 0, 0, 0.08);
	transform: rotate(90deg);
}

.modal-close svg {
	width: 14px;
	height: 14px;
	stroke: #1a1a1a;
	stroke-width: 1.5;
}

body.night-mode .modal-close {
	border-color: rgba(255, 255, 255, 0.1);
}

body.night-mode .modal-close:hover {
	background: rgba(255, 255, 255, 0.05);
}

body.night-mode .modal-close svg {
	stroke: #fff;
}

.modal-header {
	text-align: center;
	margin-bottom: 20px;
}

.modal-title {
	font-size: 26px;
	font-weight: 400;
	color: #0d0d0d;
	margin-bottom: 4px;
	letter-spacing: -0.5px;
}

body.night-mode .modal-title {
	color: #ffffff;
	font-weight: 300;
}

.modal-subtitle {
	font-size: 12px;
	color: #2a2a2a;
	letter-spacing: 0.2px;
	font-weight: 400;
}

body.night-mode .modal-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.form-group {
	position: relative;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 400;
	color: #1a1a1a;
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	transition: all 0.3s var(--ease-premium);
	outline: none;
}

body.night-mode .form-input {
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
	font-weight: 300;
}

.form-input:focus {
	background: #fff;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
}

body.night-mode .form-input:focus {
	background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
	color: #6a6a6a;
	font-weight: 300;
}

body.night-mode .form-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-label {
	position: absolute;
	top: -8px;
	left: 12px;
	padding: 0 4px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: var(--accent-primary);
	background: linear-gradient(to bottom, transparent 50%, white 50%);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s var(--ease-premium);
	pointer-events: none;
}

body.night-mode .form-label {
	background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 30, 0.98) 50%);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
	opacity: 1;
	transform: translateY(0);
}

.form-agreements {
	margin: 12px 0 6px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.agreement-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.agreement-checkbox {
	width: 16px;
	height: 16px;
	min-width: 16px;
	cursor: pointer;
	position: relative;
	appearance: none;
	background: rgba(0, 0, 0, 0.03);
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	transition: all 0.3s var(--ease-premium);
}

body.night-mode .agreement-checkbox {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.2);
}

.agreement-checkbox:hover {
	border-color: var(--accent-primary);
}

.agreement-checkbox:checked {
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	border-color: var(--accent-primary);
}

.agreement-checkbox:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 6px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}

.agreement-checkbox:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
}

.agreement-label {
	font-size: 10px;
	line-height: 1.3;
	color: #2a2a2a;
	font-weight: 400;
	cursor: pointer;
	user-select: none;
}

body.night-mode .agreement-label {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
}

.agreement-link {
	color: var(--accent-primary);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
	display: inline;
	font-weight: 500;
}

.agreement-link:hover {
	color: var(--accent-secondary);
	border-bottom-color: var(--accent-secondary);
}

.agreement-checkbox.error {
	border-color: #e74c3c;
	animation: shake 0.5s ease;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.recaptcha-container {
	margin: 12px 0;
	display: flex;
	justify-content: center;
	transform: scale(0.85);
	transform-origin: center;
}

.form-submit {
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.6px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s var(--ease-premium);
	margin-top: 2px;
	position: relative;
	overflow: hidden;
}

.form-submit::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
	width: 400px;
	height: 400px;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(101, 169, 221, 0.3);
}

.form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form-message {
	margin-top: 10px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 400;
	text-align: center;
	display: none;
}

.form-message.success {
	background: rgba(76, 175, 80, 0.1);
	color: #2e7d32;
	border: 1px solid rgba(76, 175, 80, 0.2);
	display: block;
}

.form-message.error {
	background: rgba(244, 67, 54, 0.1);
	color: #c62828;
	border: 1px solid rgba(244, 67, 54, 0.2);
	display: block;
}

/* Mobile Header */
.site-header {
	display: none;
}

/* Responsive */
@media (max-width: 1200px) {
	.content-wrapper {
		grid-template-columns: 350px 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.site-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 60px;
		padding: 0 20px;
		background: var(--bg-primary);
		border-bottom: 1px solid var(--border-light);
		z-index: 1000;
	}

	body:not(.night-mode) .site-header {
		background: #E8EBF0;
	}

	.mobile-logo {
		width: 48px;
		height: 24px;
		opacity: 0.9;
		transition: opacity 0.3s ease;
	}
	
	.mobile-logo:hover {
		opacity: 1;
	}
	
	.mobile-logo svg {
		width: 100%;
		height: 100%;
	}

	.burger {
		margin-left: auto;
	}

	.page-header {
		display: none;
	}

	.main-navigation {
		display: none;
	}

	.page-container {
		padding-top: 0px;
	}

	.hero-section {
		padding: 60px 20px 40px;
	}

	.page-title {
		font-size: 36px;
	}

	.categories-tabs {
		padding: 20px;
		position: relative;
		top: 0px;
		margin-top: -20px;
	}

	.tabs-wrapper {
		gap: 12px;
	}

	.tab-button {
		padding: 12px 20px;
		font-size: 13px;
	}

	.infrastructure-content {
		padding: 30px 20px;
	}

	.content-wrapper {
		grid-template-columns: 1fr;
		height: auto;
	}

	.objects-sidebar {
		height: 450px;
		order: 2;
	}

	.map-wrapper {
		height: 400px;
		order: 1;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.call-me-btn {
		right: 20px;
		bottom: 90px;
		width: 56px;
		height: 56px;
	}

	.theme-toggle-mobile {
		position: fixed;
		top: 16px;
		right: 80px;
		z-index: 1001;
		width: 55px;
		height: 28px;
	}

	.theme-toggle-mobile .toggle-slider {
		width: 22px;
		height: 22px;
		left: 3px;
	}

	.theme-toggle-mobile.night-mode .toggle-slider {
		transform: translateX(25px) translateY(-50%);
	}
}

.mobile-header-logo {
	width: 52px;
	height: 26px;
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.mobile-header-logo:hover {
	opacity: 1;
}

.site-header__brand {
	padding-top: 5px;
}
