	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
	
	:root {
		/* Цвета для каждого здания - ВСЕ УНИФИЦИРОВАНЫ */
		--building-A-color: 181, 105, 62;
		--building-B-color: 181, 105, 62;
		--building-C-color: 181, 105, 62;
		--building-D-color: 181, 105, 62;
		
		/* Основные цвета - светлая тема */
		--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);
		--table-accent-primary: 74, 79, 101;
		--row-hover: rgba(0, 0, 0, 0.02);
	}

	/* Темная тема */
	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);
		--table-accent-primary: 255, 255, 255;
		--row-hover: rgba(255, 255, 255, 0.03);
	}

	* {
		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;
	}

	/* Индикатор загрузки */
	.loading-indicator {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 9999;
		display: none;
	}

	.loading-indicator.active {
		display: block;
	}

	.loading-spinner {
		width: 40px;
		height: 40px;
		border: 3px solid var(--border-light);
		border-top-color: rgb(181, 105, 62);
		border-radius: 50%;
		animation: spin 0.8s linear infinite;
	}

	@keyframes spin {
		to { transform: rotate(360deg); }
	}

	.filters-toggle {
		display: none !important;
	}

	.filters-content {
		max-height: none !important;
		overflow: visible !important;
		padding: 0 !important;
	}
	
	button,
	.mobile-link,
	.mobile-sublink,
	.burger,
	.theme-toggle,
	.building-option,
	.slider-thumb,
	.reset-filters,
	.sortable {
		cursor: pointer !important;
	}

	.page-container {
		display: flex;
		height: 100vh;
		overflow: hidden;
		padding-top: 60px;
	}

	.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%;
	}

	.page-title {
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--text-secondary);
	}

	.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);
		box-shadow: 
			0 4px 16px rgba(0, 0, 0, 0.2),
			inset 0 1px 0 rgba(100, 120, 255, 0.05);
	}

	.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);
	}

	.sun-icon svg, .moon-icon svg {
		width: 100%;
		height: 100%;
	}

	.sun-icon svg circle {
		fill: #FFC107;
	}

	.sun-icon svg line {
		stroke: #FFC107;
		stroke-width: 2;
		stroke-linecap: round;
	}

	.moon-icon svg {
		fill: #b8b8d0;
	}

	.filters-panel {
		width: 320px;
		padding: 60px 40px 40px;
		overflow-y: auto;
		flex-shrink: 0;
		border-right: 1px solid var(--border-light);
		background: var(--bg-secondary);
		transition: background 0.3s ease;
	}

	.filter-section {
		margin-bottom: 60px;
	}

	.filter-title {
		font-size: 10px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: var(--text-primary);
		margin-bottom: 30px;
	}

	.building-selector {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.building-option {
		position: relative;
		padding: 20px 24px;
		background: transparent;
		border: 1px solid var(--border-light);
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.building-option::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 3px;
		background: rgba(var(--color), 0.8);
		transform: scaleY(0);
		transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		border-radius: 8px 0 0 8px;
	}

	.building-option[data-building="A"] { --color: var(--building-A-color); }
	.building-option[data-building="B"] { --color: var(--building-B-color); }
	.building-option[data-building="C"] { --color: var(--building-C-color); }
	.building-option[data-building="D"] { --color: var(--building-D-color); }

	.building-option:hover {
		border-color: rgba(var(--color), 0.2);
		padding-left: 28px;
	}

	.building-option.active {
		background: rgba(var(--color), 0.03);
		border-color: rgba(var(--color), 0.3);
	}

	.building-option.active::before {
		transform: scaleY(1);
	}

	.building-info {
		display: flex;
		align-items: center;
	}

	.building-code {
		font-size: 14px;
		font-weight: 500;
		color: var(--text-primary);
		letter-spacing: -0.01em;
	}

	.building-check {
		width: 16px;
		height: 16px;
		border: 1.5px solid var(--border-light);
		border-radius: 3px;
		position: relative;
		transition: all 0.3s ease;
	}

	.building-option.active .building-check {
		background: rgba(var(--color), 0.8);
		border-color: rgba(var(--color), 0.8);
	}

	.building-option.active .building-check::after {
		content: '✓';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: white;
		font-size: 10px;
		font-weight: 600;
	}

	/* Чекбокс для складских помещений - премиальный стиль */
	.warehouse-filter {
		position: relative;
		padding: 20px 24px;
		background: transparent;
		border: 1px solid var(--border-light);
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		display: flex;
		align-items: center;
		justify-content: space-between;
		user-select: none;
	}

	.warehouse-filter::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 3px;
		background: rgba(181, 105, 62, 0.8);
		transform: scaleY(0);
		transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		border-radius: 8px 0 0 8px;
	}

	.warehouse-filter:hover {
		border-color: rgba(181, 105, 62, 0.2);
		padding-left: 28px;
	}

	.warehouse-filter.active {
		background: rgba(181, 105, 62, 0.03);
		border-color: rgba(181, 105, 62, 0.3);
	}

	.warehouse-filter.active::before {
		transform: scaleY(1);
	}

	.warehouse-filter input[type="checkbox"] {
		display: none;
	}

	.warehouse-filter label {
		font-size: 14px;
		font-weight: 500;
		color: var(--text-primary);
		cursor: pointer;
		letter-spacing: -0.01em;
		flex: 1;
	}

	.warehouse-check {
		width: 16px;
		height: 16px;
		border: 1.5px solid var(--border-light);
		border-radius: 3px;
		position: relative;
		transition: all 0.3s ease;
		flex-shrink: 0;
	}

	.warehouse-filter.active .warehouse-check {
		background: rgba(181, 105, 62, 0.8);
		border-color: rgba(181, 105, 62, 0.8);
	}

	.warehouse-filter.active .warehouse-check::after {
		content: '✓';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: white;
		font-size: 10px;
		font-weight: 600;
	}

	body.night-mode .warehouse-filter {
		background: rgba(255, 255, 255, 0.02);
		border-color: rgba(255, 255, 255, 0.08);
	}

	body.night-mode .warehouse-filter:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(181, 105, 62, 0.3);
	}

	body.night-mode .warehouse-filter.active {
		background: rgba(181, 105, 62, 0.08);
		border-color: rgba(181, 105, 62, 0.4);
	}

	.range-slider {
		margin-bottom: 45px;
	}

	.range-label {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		margin-bottom: 24px;
	}

	.range-title {
		font-size: 12px;
		font-weight: 600;
		color: var(--text-primary);
		letter-spacing: -0.01em;
	}

	.range-values {
		font-size: 11px;
		color: var(--text-secondary);
		font-weight: 500;
		letter-spacing: -0.01em;
		font-variant-numeric: tabular-nums;
	}

	.slider-container {
		position: relative;
		height: 32px;
		display: flex;
		align-items: center;
	}

	.slider-track {
		position: absolute;
		width: 100%;
		height: 2px;
		background: var(--border-light);
		border-radius: 1px;
	}

	.slider-range {
		position: absolute;
		height: 2px;
		background: rgba(var(--table-accent-primary), 0.8);
		border-radius: 1px;
	}

	.slider-thumb {
		position: absolute;
		width: 14px;
		height: 14px;
		background: white;
		border: 1.5px solid rgba(var(--table-accent-primary), 0.3);
		border-radius: 50%;
		cursor: grab;
		transform: translateX(-50%);
		transition: all 0.2s ease;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
	}

	.slider-thumb:hover {
		transform: translateX(-50%) scale(1.3);
		border-color: rgba(var(--table-accent-primary), 0.6);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	}

	.slider-thumb:active {
		cursor: grabbing;
		transform: translateX(-50%) scale(1.2);
	}

	.reset-filters {
		width: 100%;
		padding: 12px;
		background: transparent;
		border: none;
		font-size: 12px;
		font-weight: 400;
		color: var(--text-tertiary);
		cursor: pointer;
		transition: all 0.3s ease;
		text-decoration: underline;
		text-underline-offset: 4px;
		text-decoration-thickness: 0.5px;
	}

	.reset-filters:hover {
		color: var(--text-secondary);
	}

	.table-area {
		flex: 1;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		background: var(--bg-secondary);
	}

	.table-stats {
		padding: 40px 60px;
		border-bottom: 1px solid var(--border-light);
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: var(--bg-secondary);
		transition: background 0.3s ease;
	}

	.table-stats .page-title {
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 0.04em;
		color: var(--text-primary);
	}

	.stats-info {
		display: flex;
		align-items: baseline;
		gap: 60px;
	}

	.stat-item {
		display: flex;
		align-items: baseline;
		gap: 10px;
	}

	.stat-value {
		font-size: 32px;
		font-weight: 300;
		color: var(--text-primary);
		letter-spacing: -0.02em;
		font-variant-numeric: tabular-nums;
	}

	.stat-label {
		font-size: 11px;
		color: var(--text-secondary);
		font-weight: 400;
		letter-spacing: 0.02em;
	}

	.table-wrapper {
		flex: 1;
		overflow: auto;
		padding: 0 60px 60px;
		position: relative;
	}

	.table-wrapper::-webkit-scrollbar {
		width: 6px;
	}

	.table-wrapper::-webkit-scrollbar-track {
		background: transparent;
	}

	.table-wrapper::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.1);
		border-radius: 3px;
	}

	.table-wrapper::-webkit-scrollbar-thumb:hover {
		background: rgba(0, 0, 0, 0.2);
	}

	.offices-table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		margin-top: 0;
	}

	.offices-table thead {
		position: sticky;
		top: 0;
		z-index: 20;
	}

	.offices-table thead th {
		padding: 16px 20px;
		text-align: left;
		font-size: 0.65rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: var(--text-primary);
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		cursor: pointer;
		user-select: none;
		transition: color 0.2s ease;
		background: var(--bg-secondary);
		position: relative;
	}

	body.night-mode .offices-table thead th {
		color: var(--text-primary);
		border-bottom-color: rgba(255, 255, 255, 0.08);
	}

	.offices-table thead::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		right: 0;
		height: 5px;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
		pointer-events: none;
	}

	.offices-table thead th:first-child {
		padding-left: 0;
	}

	.offices-table thead th:hover {
		color: var(--text-secondary);
	}

	.offices-table thead th.sortable::after {
		content: '';
		display: inline-block;
		width: 0;
		height: 0;
		margin-left: 10px;
		border-left: 3px solid transparent;
		border-right: 3px solid transparent;
		opacity: 0;
		transition: opacity 0.2s ease;
	}

	.offices-table thead th.sorted-asc::after {
		border-bottom: 4px solid var(--text-secondary);
		opacity: 1;
	}

	.offices-table thead th.sorted-desc::after {
		border-top: 4px solid var(--text-secondary);
		opacity: 1;
	}

	.offices-table tbody tr {
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		cursor: pointer;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
		background: transparent;
		height: 3.2rem;
	}

	body.night-mode .offices-table tbody tr {
		border-bottom-color: rgba(255, 255, 255, 0.06);
	}

	body:not(.night-mode) .offices-table tbody tr:hover {
		background: rgb(181, 105, 62);
		transform: translateX(4px);
		box-shadow: 0 2px 8px rgba(181, 105, 62, 0.3);
	}

	body:not(.night-mode) .offices-table tbody tr:hover td {
		color: white;
		font-size: 1rem;
		font-weight: 500;
	}

	body:not(.night-mode) .offices-table tbody tr:hover .building-indicator {
		background: white !important;
		height: 1.6rem;
		opacity: 1;
	}

	body:not(.night-mode) .offices-table tbody tr:hover .furniture-badge {
		color: white !important;
		font-size: 0.85rem;
		font-weight: 500;
	}

	body:not(.night-mode) .offices-table tbody tr:hover .purpose-badge {
		color: white !important;
		font-size: 0.85rem;
		font-weight: 500;
	}

	body.night-mode .offices-table tbody tr:hover {
		background: rgba(181, 105, 62, 0.15);
		transform: translateX(4px);
		box-shadow: 0 2px 8px rgba(181, 105, 62, 0.2);
	}

	body.night-mode .offices-table tbody tr:hover td {
		font-size: 1rem;
		font-weight: 500;
	}

	body.night-mode .offices-table tbody tr:hover .building-indicator {
		background: rgba(255, 255, 255, 0.9) !important;
		height: 1.6rem;
		opacity: 1;
	}

	body.night-mode .offices-table tbody tr:hover .furniture-badge.furnished {
		color: rgb(181, 105, 62);
		font-size: 0.85rem;
		font-weight: 500;
	}

	body.night-mode .offices-table tbody tr:hover .furniture-badge.unfurnished {
		color: rgba(255, 255, 255, 0.8);
		font-size: 0.85rem;
		font-weight: 500;
	}

	body.night-mode .offices-table tbody tr:hover .purpose-badge {
		font-size: 0.85rem;
		font-weight: 500;
	}

	.offices-table tbody tr:hover td:first-child {
		padding-left: 8px;
	}

	.offices-table tbody td {
		padding: 0 20px;
		height: 3.2rem;
		line-height: 3.2rem;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
		font-size: 0.95rem;
		font-weight: 400;
		color: #2C2E3E;
		border-bottom: 1px solid rgba(0, 0, 0, 0.04);
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
		letter-spacing: -0.01em;
		font-variant-numeric: tabular-nums;
		vertical-align: middle;
	}

	.offices-table tbody td:first-child {
		padding-left: 0;
	}

	body.night-mode .offices-table tbody td {
		color: rgba(255, 255, 255, 0.9);
		border-bottom-color: rgba(255, 255, 255, 0.06);
	}

	.building-indicator {
		display: inline-block;
		width: 2px;
		height: 1.4rem;
		border-radius: 1px;
		margin-right: 10px;
		vertical-align: middle;
		opacity: 0.8;
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.building-indicator[data-building="A"] {
		background: rgba(126, 182, 227, 0.9);
	}

	.building-indicator[data-building="B"] {
		background: rgba(126, 182, 227, 0.9);
	}

	.building-indicator[data-building="C"] {
		background: rgba(126, 182, 227, 0.9);
	}

	.building-indicator[data-building="D"] {
		background: rgba(126, 182, 227, 0.9);
	}

	.furniture-badge {
		display: inline-block;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
		font-size: 0.8rem;
		font-weight: 400;
		letter-spacing: 0.03em;
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.furniture-badge.furnished {
		color: rgb(181, 105, 62);
	}

	.furniture-badge.unfurnished {
		color: var(--text-primary);
		opacity: 0.7;
	}

	body.night-mode .furniture-badge.furnished {
		color: rgb(181, 105, 62);
	}

	body.night-mode .furniture-badge.unfurnished {
		color: var(--text-primary);
		opacity: 0.7;
	}

	.purpose-badge {
		display: inline-block;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
		font-size: 0.8rem;
		font-weight: 400;
		letter-spacing: 0.03em;
		transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}

	.purpose-badge.office {
		color: var(--text-primary);
		opacity: 0.7;
	}

	.purpose-badge.warehouse {
		color: rgb(181, 105, 62);
	}

	body.night-mode .purpose-badge.office {
		color: var(--text-primary);
		opacity: 0.7;
	}

	body.night-mode .purpose-badge.warehouse {
		color: rgb(181, 105, 62);
	}

	.empty-state {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 120px 40px;
		text-align: center;
	}

	.empty-title {
		font-size: 14px;
		font-weight: 400;
		color: var(--text-secondary);
		margin-bottom: 8px;
		letter-spacing: 0.5px;
	}

	.empty-text {
		font-size: 12px;
		color: var(--text-secondary);
		max-width: 300px;
	}

	body.night-mode .building-option {
		background: rgba(255, 255, 255, 0.02);
		border-color: rgba(255, 255, 255, 0.08);
	}

	body.night-mode .building-option:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(var(--color), 0.3);
	}

	body.night-mode .building-option.active {
		background: rgba(var(--color), 0.08);
		border-color: rgba(var(--color), 0.4);
	}

	body.night-mode .slider-track {
		background: rgba(255, 255, 255, 0.08);
	}

	body.night-mode .slider-range {
		background: rgba(255, 255, 255, 0.6);
	}

	body.night-mode .slider-thumb {
		background: var(--bg-secondary);
		border-color: rgba(255, 255, 255, 0.4);
	}

	body.night-mode .reset-filters {
		color: var(--text-secondary);
	}

	body.night-mode .offices-table tbody tr {
		background: var(--bg-secondary);
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.offices-table tbody tr {
		animation: fadeInUp 0.5s ease backwards;
	}

	.offices-table tbody tr:nth-child(1) { animation-delay: 0.02s; }
	.offices-table tbody tr:nth-child(2) { animation-delay: 0.04s; }
	.offices-table tbody tr:nth-child(3) { animation-delay: 0.06s; }
	.offices-table tbody tr:nth-child(4) { animation-delay: 0.08s; }
	.offices-table tbody tr:nth-child(5) { animation-delay: 0.10s; }

	@media (max-width: 1024px) {
		.page-container {
			flex-direction: column;
		}

		.filters-panel {
			width: 100%;
			border-right: none;
			border-bottom: 1px solid var(--border-light);
			padding: 30px;
			max-height: 400px;
		}

		.building-selector {
			flex-direction: row;
			flex-wrap: wrap;
			gap: 8px;
		}

		.building-option {
			flex: 1;
			min-width: 120px;
		}
	}

	.site-header {
		display: none;
	}

	@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 {
			height: 24px;
			width: auto;
			opacity: 0.8;
		}

		.mobile-logo svg {
			height: 100%;
			width: auto;
		}

		.burger {
			margin-left: auto;
		}

		.page-header {
			display: none;
		}

		.main-navigation {
			display: none;
		}

		.page-container {
			padding-top: 60px;
			flex-direction: column;
			height: 100vh;
			overflow: hidden;
		}

		.filters-panel {
			width: 100%;
			padding: 0;
			background: var(--bg-secondary);
			border-bottom: 1px solid var(--border-light);
			border-right: none;
			flex-shrink: 0;
			position: relative;
			z-index: 10;
		}

		.filters-toggle {
			display: flex !important;
			width: 100%;
			padding: 16px 20px;
			background: var(--bg-secondary);
			border: none;
			border-bottom: 1px solid var(--border-light);
			align-items: center;
			justify-content: space-between;
			cursor: pointer;
			transition: background 0.2s ease;
			position: relative;
		}

		.filters-toggle:active {
			background: rgba(0, 0, 0, 0.05);
		}

		.filters-toggle-text {
			font-size: 14px;
			font-weight: 500;
			color: var(--text-primary);
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.filters-indicator {
			display: inline-block;
			width: 8px;
			height: 8px;
			background: rgb(181, 105, 62);
			border-radius: 50%;
			margin-left: 8px;
			animation: pulse 2s infinite;
		}

		@keyframes pulse {
			0%, 100% { opacity: 1; }
			50% { opacity: 0.5; }
		}

		.filters-toggle-icon {
			width: 20px;
			height: 20px;
			transition: transform 0.3s ease;
		}

		.filters-toggle-icon svg {
			stroke: var(--text-secondary);
			stroke-width: 2;
			fill: none;
		}

		body.night-mode .filters-toggle-icon svg {
			stroke: rgba(255, 255, 255, 0.9) !important;
		}

		body.night-mode .filters-toggle-icon path {
			stroke: rgba(255, 255, 255, 0.9) !important;
		}

		.filters-panel.expanded .filters-toggle-icon {
			transform: rotate(180deg);
		}

		.filters-content {
			max-height: 0 !important;
			overflow: hidden !important;
			transition: max-height 0.3s ease;
			padding: 0 !important;
		}

		.filters-panel.expanded .filters-content {
			max-height: 500px !important;
			padding: 20px !important;
			overflow-y: auto !important;
			border-bottom: 1px solid var(--border-light);
		}

		.filter-section {
			margin-bottom: 25px;
		}

		.filter-title {
			font-size: 11px;
			margin-bottom: 15px;
		}

		.building-selector {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 8px;
		}

		.building-option {
			padding: 15px;
			font-size: 13px;
		}

		.building-code {
			font-size: 13px;
		}

		.range-slider {
			margin-bottom: 30px;
		}

		.range-title {
			font-size: 11px;
		}

		.range-values {
			font-size: 10px;
		}

		.reset-filters {
			margin-top: 10px;
			padding: 10px;
			font-size: 11px;
		}

		.table-area {
			flex: 1;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			min-height: 0;
		}

		.table-stats {
			padding: 15px 20px;
			flex-shrink: 0;
			display: flex;
			flex-direction: column;
			gap: 10px;
		}

		.table-stats .page-title {
			font-size: 12px;
			letter-spacing: 0.06em;
		}

		.stats-info {
			gap: 20px;
		}

		.stat-value {
			font-size: 20px;
		}

		.stat-label {
			font-size: 9px;
		}

		.table-wrapper {
			flex: 1;
			overflow: auto;
			-webkit-overflow-scrolling: touch;
			padding: 15px 15px 15px;
		}

		.offices-table {
			display: none !important;
		}

		.offices-cards {
			display: flex !important;
			flex-direction: column;
			gap: 12px;
			padding-bottom: 20px;
		}

		.office-card {
			background: white;
			border: 1px solid var(--border-light);
			border-radius: 12px;
			padding: 16px;
			position: relative;
			transition: all 0.2s ease;
			cursor: pointer;
			overflow: hidden;
		}

		body.night-mode .office-card {
			background: var(--bg-secondary);
		}

		.office-card:active {
			transform: scale(0.98);
		}

		.office-card::before {
			content: '';
			position: absolute;
			left: 0;
			top: 0;
			bottom: 0;
			width: 4px;
			opacity: 0.8;
		}

		.office-card[data-building="A"]::before {
			background: rgb(126, 182, 227);
		}

		.office-card[data-building="B"]::before {
			background: rgb(126, 182, 227);
		}

		.office-card[data-building="C"]::before {
			background: rgb(126, 182, 227);
		}

		.office-card[data-building="D"]::before {
			background: rgb(126, 182, 227);
		}

		.card-header {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 12px;
		}

		.card-title {
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.card-building {
			font-size: 11px;
			color: var(--text-secondary);
			font-weight: 500;
			letter-spacing: 0.5px;
		}

		.card-office {
			font-size: 16px;
			font-weight: 600;
			color: var(--text-primary);
		}

		.card-badge {
			display: inline-flex;
			align-items: center;
			padding: 4px 8px;
			border-radius: 6px;
			font-size: 10px;
			font-weight: 500;
			background: rgba(181, 105, 62, 0.1);
			color: rgb(181, 105, 62);
		}

		.card-badge.unfurnished {
			background: rgba(0, 0, 0, 0.05);
			color: var(--text-primary);
			opacity: 0.7;
		}

		body.night-mode .card-badge.unfurnished {
			background: rgba(255, 255, 255, 0.05);
			color: var(--text-primary);
			opacity: 0.7;
		}

		.card-details {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 12px;
		}

		.card-detail {
			display: flex;
			flex-direction: column;
			gap: 4px;
		}

		.card-detail-label {
			font-size: 10px;
			color: var(--text-secondary);
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}

		.card-detail-value {
			font-size: 14px;
			font-weight: 500;
			color: var(--text-primary);
		}

		.card-detail-value.price {
			color: rgb(181, 105, 62);
			font-weight: 600;
		}

		.card-detail-value.warehouse {
			color: rgb(181, 105, 62);
		}

		.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%);
		}

		.theme-toggle-mobile .sun-icon,
		.theme-toggle-mobile .moon-icon {
			width: 14px;
			height: 14px;
		}
	}

	.offices-cards {
		display: none;
	}

	.cta-section {
		padding: 80px 60px;
		background: linear-gradient(135deg, rgba(181, 105, 62, 0.05) 0%, rgba(181, 105, 62, 0.02) 100%);
		border-top: 1px solid var(--border-light);
		transition: background 0.3s ease;
	}

	body.night-mode .cta-section {
		background: linear-gradient(135deg, rgba(181, 105, 62, 0.08) 0%, rgba(181, 105, 62, 0.03) 100%);
	}

	.cta-container {
		max-width: 1200px;
		margin: 0 auto;
		text-align: center;
	}

	.cta-content {
		margin-bottom: 50px;
	}

	.cta-title {
		font-size: 32px;
		font-weight: 300;
		color: var(--text-primary);
		margin-bottom: 12px;
		letter-spacing: -0.02em;
	}

	.cta-subtitle {
		font-size: 16px;
		color: var(--text-secondary);
		margin-bottom: 30px;
	}

	.cta-actions {
		display: flex;
		gap: 16px;
		justify-content: center;
		align-items: center;
	}

	.cta-button {
		padding: 14px 32px;
		border-radius: 8px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease;
		display: inline-flex;
		align-items: center;
		gap: 10px;
	}

	.cta-button svg {
		width: 18px;
		height: 18px;
	}

	.cta-button.primary {
		background: rgb(181, 105, 62);
		color: white;
		border: none;
	}

	.cta-button.primary:hover {
		background: rgb(161, 85, 42);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(181, 105, 62, 0.3);
	}

	.cta-button.secondary {
		background: transparent;
		color: var(--text-primary);
		border: 1px solid var(--border-medium);
	}

	.cta-button.secondary:hover {
		background: var(--bg-secondary);
		border-color: rgb(181, 105, 62);
		color: rgb(181, 105, 62);
	}

	.cta-features {
		display: flex;
		gap: 60px;
		justify-content: center;
		padding-top: 40px;
		border-top: 1px solid var(--border-light);
	}

	.cta-feature {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: 14px;
		color: var(--text-secondary);
	}

	.cta-feature-icon {
		width: 32px;
		height: 32px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(181, 105, 62, 0.1);
		border-radius: 8px;
	}

	.cta-feature-icon svg {
		width: 18px;
		height: 18px;
		stroke: rgb(181, 105, 62);
	}

	@media (max-width: 768px) {
		.cta-section {
			padding: 50px 20px;
		}
		
		.cta-title {
			font-size: 24px;
		}
		
		.cta-subtitle {
			font-size: 14px;
		}
		
		.cta-actions {
			flex-direction: column;
			width: 100%;
		}
		
		.cta-button {
			width: 100%;
			justify-content: center;
		}
		
		.cta-features {
			flex-direction: column;
			gap: 20px;
			align-items: flex-start;
			max-width: 200px;
			margin: 0 auto;
		}
	}

	.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;
	}