:root {
	--c0: #20092e; /* основной фон */
	--c1: #463d5a; /* тёмный акцент */
	--c2: #5aada8; /* основной акцент (CTA) */
	--c3: #bde9d1; /* мягкий акцент */
	--c4: #f3f3f3; /* светлый текст/фон */
	--ease: cubic-bezier(0.2, 0.6, 0, 1);
}

* {
	box-sizing: border-box;
}
body,
html {
	height: 100%;
}
body {
	margin: 0;
	background: var(--c0);
	color: var(--c4);
	font:
		400 16px/1.65 system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Ubuntu,
		'Helvetica Neue',
		Arial;
	max-width: 100vw;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}

.p-101 {
	position: sticky;
	top: 0;
	z-index: 40;
	background: linear-gradient(
		180deg,
		rgba(9, 24, 46, 0.85),
		rgba(9, 24, 46, 0.5),
		transparent
	);
	backdrop-filter: saturate(1.2) blur(6px);
}
.p-102 {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px clamp(16px, 4vw, 40px);
}
.p-103 {
	display: flex;
	align-items: center;
	gap: 12px;
}
.p-104 {
	font-weight: 900;
	letter-spacing: 0.4px;
	font-size: clamp(18px, 2.2vw, 24px);
}
.p-105 {
	display: flex;
	gap: 18px;
}
.p-105 a {
	opacity: 0.9;
	padding: 10px 12px;
	border-radius: 10px;
	transition:
		opacity 0.3s,
		background 0.3s;
}
.p-105 a:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.06);
}

.p-106 {
	display: none;
	flex-direction: column;
	gap: 8px;
}
.p-106 span {
	width: 26px;
	height: 2px;
	background: var(--c4);
	border-radius: 2px;
	display: block;
}

.p-107 {
	position: fixed;
	inset: 0;
	background: rgba(9, 24, 46, 0.9);
	display: none;
	z-index: 50;
}
.p-107 nav {
	position: absolute;
	inset: auto 0 0 0;
	background: var(--c1);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px clamp(16px, 6vw, 56px);
}
.p-107 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}
.p-107 a {
	display: block;
	padding: 12px 8px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 900px) {
	.p-105 {
		display: none;
	}
	.p-106 {
		display: flex;
	}
}

.p-201 {
	min-height: 40svh;
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}
.p-201:before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
			900px 400px at 12% 0,
			rgba(255, 255, 255, 0.05),
			transparent 60%
		),
		radial-gradient(
			900px 400px at 90% 0,
			rgba(255, 255, 255, 0.03),
			transparent 60%
		);
	animation: 16s linear infinite alternate p-bg;
}
.p-202 {
	position: absolute;
	inset: 0;
	opacity: 0.22;
	background: url('https://commons.wikimedia.org/wiki/Special:FilePath/Spices%20market%20Istanbul.jpg?width=1800')
		center/cover no-repeat;
	filter: saturate(1.1) contrast(1.05) brightness(0.9);
	transform: scale(1.06);
	animation: p-kb 24s var(--ease) infinite;
}
.p-203 {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(20px, 6vw, 60px);
	text-align: center;
}
.p-203 h1 {
	margin: 0 0 8px;
	font-size: clamp(30px, 6vw, 64px);
	line-height: 1;
	background: linear-gradient(
		90deg,
		var(--c4) 20%,
		var(--c3) 50%,
		var(--c4) 80%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: 8s linear infinite p-sh;
}
.p-203 p {
	margin: 0 auto;
	max-width: 72ch;
	opacity: 0.92;
}

.p-301 {
	min-height: 100svh;
	padding: clamp(32px, 8vw, 120px) 0;
	background: linear-gradient(180deg, var(--c0), var(--c1));
}

.p-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 40px);
}

.p-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 20px;
}
.p-card h2 {
	margin-top: 18px;
}
.p-card h3 {
	margin-top: 16px;
}
.p-card li,
.p-card p {
	opacity: 0.92;
}

.p-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 1000px) {
	.p-grid {
		grid-template-columns: 1fr;
	}
}

footer.p-901 {
	padding: 28px clamp(16px, 4vw, 40px);
	background: var(--c1);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}
.p-fnav {
	display: flex;
	gap: 14px;
}
.p-addr {
	font-size: 14px;
	opacity: 0.85;
}

@keyframes p-kb {
	0%,
	100% {
		transform: scale(1.06) translate(0, 0);
	}
	50% {
		transform: scale(1.12) translate(2%, -1%);
	}
}
@keyframes p-bg {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(16px);
	}
}
@keyframes p-sh {
	0% {
		background-position: 0 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}
