		@font-face {
			font-family: "IBM Plex Sans";
			src: url("../../public/landing/fonts/IBMPlexSans-Regular.woff2") format("woff2");
			font-weight: 400;
			font-display: swap;
		}

		@font-face {
			font-family: "IBM Plex Sans";
			src: url("../../public/landing/fonts/IBMPlexSans-Medium.woff2") format("woff2");
			font-weight: 500;
			font-display: swap;
		}

		@font-face {
			font-family: "IBM Plex Sans";
			src: url("../../public/landing/fonts/IBMPlexSans-Bold.woff2") format("woff2");
			font-weight: 700;
			font-display: swap;
		}

		:root {
			--primary: #f93822;
			--primary-hover: #c72d1b;
			--text-main: #171717;
			--text-muted: #5f5f60;
			--bg-page: #fefefe;
			--border: #aaaaab;
		}

		* {
			box-sizing: border-box;
			margin: 0;
			padding: 0;
		}

		html {
			scroll-behavior: smooth;
		}

		body {
			color: var(--text-main);
			background: var(--bg-page);
			font-family: "IBM Plex Sans", sans-serif;
			line-height: 1.6;
		}

		.container {
			max-width: 1312px;
			margin: 0 auto;
			padding: 0 24px 80px;
		}

		.hero {
			position: relative;
			min-height: 620px;
			margin: 0 calc(50% - 50vw);
			padding: 112px max(24px, calc((100vw - 1264px) / 2));
			overflow: hidden;
			color: #fefefe;
			background:
				linear-gradient(90deg, rgba(23, 23, 23, 0.97) 0%, rgba(23, 23, 23, 0.88) 48%, rgba(23, 23, 23, 0.26) 100%),
				url("../../public/landing/img/main/camera-bg.webp") center right / cover no-repeat;
		}

		.hero::after {
			content: "CAR WASH / LIVE";
			position: absolute;
			right: max(24px, calc((100vw - 1264px) / 2));
			bottom: 28px;
			color: #aaaaab;
			font-size: 12px;
			font-weight: 500;
		}

		.hero h1 {
			max-width: 960px;
			margin-bottom: 24px;
			font-size: clamp(44px, 6vw, 78px);
			line-height: 0.98;
			font-weight: 500;
			text-transform: uppercase;
		}

		.hero .subtitle {
			max-width: 760px;
			margin-bottom: 32px;
			font-size: 22px;
			line-height: 1.35;
		}

		.hero p {
			max-width: 690px;
			margin-bottom: 14px;
			color: #aaaaab;
			font-size: 16px;
		}

		.btn {
			display: inline-block;
			min-height: 56px;
			margin-top: 24px;
			padding: 16px 26px;
			color: #ffffff;
			background: var(--primary);
			border-radius: 4px;
			font-size: 13px;
			font-weight: 500;
			text-decoration: none;
			text-transform: uppercase;
			transition: background-color 0.2s ease;
		}

		.btn:hover {
			background: var(--primary-hover);
		}

		.rtsp-link {
			color: inherit;
			text-decoration-color: var(--primary);
			text-underline-offset: 3px;
		}

		.rtsp-link:hover {
			color: var(--primary);
		}

		.section {
			display: grid;
			grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.45fr);
			column-gap: 72px;
			padding: 72px 0;
			border-bottom: 1px solid var(--border);
		}

		.section > h2 {
			grid-column: 1;
			grid-row: 1 / span 30;
			align-self: start;
			padding-top: 4px;
			font-size: clamp(28px, 3vw, 42px);
			line-height: 1.08;
			font-weight: 500;
			text-transform: uppercase;
		}

		.section > h2::before {
			content: "RTSP /";
			display: block;
			margin-bottom: 18px;
			color: var(--primary);
			font-size: 12px;
			font-weight: 700;
		}

		.section > :not(h2) {
			grid-column: 2;
		}

		.section h3 {
			margin: 30px 0 12px;
			font-size: 20px;
			font-weight: 500;
			text-transform: uppercase;
		}

		.section p,
		.section ul,
		.section ol {
			color: var(--text-muted);
			font-size: 17px;
			line-height: 1.65;
		}

		.section p {
			margin-bottom: 14px;
		}

		.section ul,
		.section ol {
			margin: 16px 0 16px 24px;
		}

		.section li {
			margin-bottom: 8px;
		}

		.section li::marker {
			color: var(--primary);
			font-weight: 700;
		}

		.scheme-box {
			margin: 24px 0;
			padding: 28px;
			color: #fefefe;
			background: #171717;
			border-left: 5px solid var(--primary);
			font-family: monospace;
			font-weight: 600;
		}

		.feature-grid {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 1px;
			margin-top: 24px;
			background: #d8d8d8;
			border: 1px solid #d8d8d8;
			list-style: none;
		}

		.feature-grid li {
			min-height: 112px;
			margin: 0;
			padding: 22px;
			color: #fefefe;
			background: #171717;
			font-size: 16px;
		}

		.feature-grid strong {
			display: block;
			margin-bottom: 5px;
			color: var(--primary);
			font-size: 12px;
			text-transform: uppercase;
		}

		.cameras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1px; margin-top: 24px; background: #2f2f2f; border: 1px solid #2f2f2f; }
		.camera-card { overflow: hidden; background: #171717; }
		.camera-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #000000; }
		.camera-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
		.camera-card:hover .camera-media img { transform: scale(1.025); }
		.live-badge { position: absolute; top: 14px; left: 14px; padding: 4px 10px; color: #ffffff; background: var(--primary); border-radius: 2px; font-size: 12px; font-weight: 700; }
		.camera-caption { min-height: 104px; padding: 18px 20px; }
		.camera-caption h3 { margin: 0 0 4px; color: #fefefe; font-size: 17px; }
		.camera-caption p { margin: 0; color: #aaaaab; font-size: 14px; }

		.faq-item {
			padding: 22px 0;
			border-bottom: 1px solid #d8d8d8;
		}

		.faq-item:last-child {
			border-bottom: 0;
		}

		.faq-question {
			margin-bottom: 8px;
			font-size: 18px;
			font-weight: 500;
			text-transform: uppercase;
		}

		.faq-answer {
			color: var(--text-muted);
		}

		.cta-bottom {
			margin-top: 72px;
			padding: 72px max(24px, 8vw);
			color: #fefefe;
			background: #171717;
			text-align: center;
		}

		.cta-bottom h2 {
			max-width: 820px;
			margin: 0 auto 24px;
			font-size: clamp(34px, 5vw, 62px);
			line-height: 1;
			font-weight: 500;
			text-transform: uppercase;
		}

		.cta-bottom p {
			max-width: 760px;
			margin: 0 auto 12px;
			color: #aaaaab;
		}

		@media (max-width: 900px) {
			.hero {
				min-height: 590px;
				padding-top: 88px;
				background-position: 65% center;
			}

			.section {
				grid-template-columns: 1fr;
				row-gap: 28px;
				padding: 54px 0;
			}

			.section > h2,
			.section > :not(h2) {
				grid-column: 1;
				grid-row: auto;
			}
		}

		@media (max-width: 640px) {
			.container {
				padding: 0 16px 48px;
			}

			.hero {
				min-height: 660px;
				padding: 72px 16px 88px;
				background-position: 72% center;
			}

			.hero h1 {
				font-size: 40px;
			}

			.hero .subtitle {
				font-size: 19px;
			}

			.feature-grid {
				grid-template-columns: 1fr;
			}
		}