:root {
			--dark: #06131b;
			--navy: #0a1a28;
			--lime: #8ee31f;
			--lime-2: #6ed21b;
			--text: #14202b;
			--muted: #667482;
			--line: #dfe7ee;
			--card: #ffffff;
			--shadow: 0 18px 48px rgba(9, 26, 40, .12);
			--font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
		}
		* { box-sizing: border-box; }
		html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
		body { margin: 0; font-family: var(--font); color: var(--text); background: #f8fbfd; }
		a { color: inherit; text-decoration: none; }
		.container { width: min(1340px, calc(100% - 64px)); margin: 0 auto; }
		.site-header {
			position: sticky;
			top: 0;
			z-index: 50;
			background: rgba(5, 15, 23, .98);
			border-bottom: 1px solid rgba(255,255,255,.08);
			backdrop-filter: blur(14px);
		}
		.nav {
			height: 76px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 28px;
		}
		.logo { display: flex; align-items: center; gap: 12px; min-width: 190px; color: #fff; font-weight: 900; }
		.logo img { width: 158px; height: 44px; object-fit: contain; background: #fff; border-radius: 7px; padding: 5px 8px; }
		.nav-links { display: flex; align-items: center; justify-content: center; gap: 34px; color: #fff; font-size: 14px; font-weight: 800; }
		.nav-links a { height: 76px; display: grid; place-items: center; border-bottom: 3px solid transparent; opacity: .9; }
		.nav-links a.active, .nav-links a:hover { color: var(--lime); border-bottom-color: var(--lime); opacity: 1; }
		.header-actions { display: flex; align-items: center; gap: 14px; color: #fff; }
		.bell { position: relative; width: 38px; height: 38px; display: grid; place-items: center; }
		.bell::after { content: "1"; position: absolute; top: 2px; right: 3px; width: 17px; height: 17px; border-radius: 50%; background: #ff3b30; color: #fff; font-size: 10px; display: grid; place-items: center; font-weight: 900; }
		.login-btn {
			min-height: 44px;
			padding: 0 24px;
			border-radius: 7px;
			background: linear-gradient(135deg, var(--lime), var(--lime-2));
			color: #102000;
			display: inline-flex;
			align-items: center;
			gap: 9px;
			font-weight: 900;
		}
		.hero {
			position: relative;
			min-height: 210px;
			color: #fff;
			background:
				linear-gradient(90deg, rgba(5,17,28,.96) 0%, rgba(5,24,39,.82) 48%, rgba(5,24,39,.25) 100%),
				url("img/background.jpg") center 42% / cover no-repeat;
			display: flex;
			align-items: center;
		}
		.hero h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.04em; text-transform: uppercase; }
		.hero p { margin: 14px 0 0; font-size: 17px; color: rgba(255,255,255,.86); font-weight: 600; }
		.hero-badges { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 34px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; }
		.hero-badges span { display: inline-flex; align-items: center; gap: 9px; }
		.hero-badges i { width: 24px; height: 24px; border-radius: 50%; background: var(--lime-2); color: #fff; display: grid; place-items: center; font-style: normal; }
		main { padding: 34px 0 28px; }
		.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
		.section-title {
			margin: 0 0 18px;
			display: flex;
			align-items: center;
			gap: 12px;
			font-size: 24px;
			letter-spacing: -.03em;
			text-transform: uppercase;
		}
		.title-icon { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--lime-2); color: var(--lime-2); display: grid; place-items: center; font-weight: 900; }
		.price-table-wrap {
			overflow: hidden;
			border-radius: 8px;
			border: 1px solid var(--line);
			background: var(--card);
			box-shadow: var(--shadow);
		}
		table { width: 100%; border-collapse: collapse; }
		th {
			padding: 14px 16px;
			background: #081a2d;
			color: #fff;
			font-size: 13px;
			text-align: left;
		}
		td {
			padding: 12px 16px;
			border-bottom: 1px solid #e8edf2;
			font-size: 14px;
			font-weight: 600;
			vertical-align: middle;
		}
		tr:last-child td { border-bottom: 0; }
		.item-name { display: flex; align-items: center; gap: 14px; min-width: 230px; }
		.item-name img, .item-thumb-fallback {
			width: 42px;
			height: 42px;
			border-radius: 6px;
			object-fit: cover;
			background: #eef8e8;
			flex: 0 0 auto;
		}
		.item-thumb-fallback { display: grid; place-items: center; color: var(--lime-2); font-weight: 900; }
		.status-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 13px; border-radius: 999px; background: #e8f9dc; color: #3d9408; font-weight: 900; font-size: 12px; }
		.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 130px; }
		.info-box {
			border: 1px solid #d8ebd2;
			background: linear-gradient(135deg, #f4fff1, #ffffff);
			border-radius: 10px;
			padding: 22px;
			box-shadow: var(--shadow);
		}
		.info-box h3 { margin: 0 0 16px; display: flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 15px; }
		.info-box p, .info-box li { margin: 0; color: #42505e; font-size: 14px; line-height: 1.8; font-weight: 600; }
		.info-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
		.info-box li::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; margin-right: 8px; background: #48aa24; color: #fff; font-size: 11px; }
		.empty { padding: 24px; color: var(--muted); font-weight: 700; }
		@media (max-width: 1040px) {
			.price-grid { grid-template-columns: 1fr; }
			.support-grid { margin-top: 28px; }
			.nav-links { display: none; }
		}
		@media (max-width: 720px) {
			.container { width: min(100% - 28px, 1340px); }
			.nav { height: 66px; gap: 12px; }
			.logo img { width: 128px; height: 38px; }
			.bell { display: none; }
			.login-btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
			.hero { min-height: 250px; }
			.hero-badges { gap: 14px; }
			th, td { padding: 11px 10px; font-size: 12px; }
			.item-name { min-width: 190px; }
			.price-table-wrap { overflow-x: auto; }
			table { min-width: 600px; }
			.support-grid { grid-template-columns: 1fr; }
		}
