* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	background: #2B2C5E;
	color: #E6E1DD;
}

body.is-drawer-open,
body.is-reg-open {
	overflow: hidden;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #2B2C5E;
	box-shadow: 0 10px 26px rgba(26,16,40,0.28);
}

.topbar__grid {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 18px;
	height: 78px;
	display: grid;
	grid-template-columns: 56px 1fr 280px 1fr;
	align-items: center;
	gap: 14px;
}

.topbar__line {
	height: 1px;
	background: rgba(230,225,221,0.14);
}

.burger {
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	background: rgba(90,27,74,0.22);
	box-shadow: inset 0 0 0 1px rgba(230,225,221,0.10);
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	gap: 5px;
}

.burger span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: rgba(230,225,221,0.86);
}

.topnav ul,
.drawer ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.topnav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 14px;
	text-decoration: none;
	color: rgba(230,225,221,0.88);
	background: rgba(90,27,74,0.12);
	box-shadow: inset 0 0 0 1px rgba(230,225,221,0.08);
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.topnav a:hover {
	transform: translateY(-1px);
	background: rgba(90,27,74,0.22);
	box-shadow: inset 0 0 0 1px rgba(43,195,230,0.22);
}


.topnav__txt {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.15px;
}

.brand {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand img {
	display: block;
	height: 55px;
	width: auto;
    margin-right: 65px;
}

.topacts {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 12px;
}

.topacts--m {
	display: none;
}

.lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
}

.lang__a {
	text-decoration: none;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 0.5px;
	color: rgba(230,225,221,0.80);
	padding: 4px 6px;
	border-radius: 999px;
	transition: background 160ms ease, color 160ms ease;
}

.lang__a:hover {
	background: rgba(43,195,230,0.14);
	color: rgba(230,225,221,0.92);
}

.lang__a.is-active {
	background: rgba(43,195,230,0.18);
	color: rgba(230,225,221,0.95);
}

.lang__sep {
	opacity: 0.4;
}

.topacts__btn {
	height: 44px;
	padding: 0 16px;
	border-radius: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.2px;
	box-shadow: 0 14px 26px rgba(26,16,40,0.22);
	transition: transform 160ms ease, filter 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.topacts__btn--ghost {
	color: rgba(230,225,221,0.92);
	background: rgba(90,27,74,0.18);
	box-shadow: inset 0 0 0 1px rgba(230,225,221,0.12), 0 14px 26px rgba(26,16,40,0.22);
}

.topacts__btn--solid {
	color: rgba(26,16,40,0.92);
	background: linear-gradient(90deg, rgba(43,195,230,0.95), rgba(43,195,230,0.62));
	box-shadow: 0 16px 30px rgba(43,195,230,0.12), 0 14px 26px rgba(26,16,40,0.24);
}

.topacts__btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.03);
}

.drawer {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: min(86vw, 360px);
	background: linear-gradient(180deg, rgba(90,27,74,0.22), rgba(26,16,40,0.52));
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	backdrop-filter: blur(18px) saturate(140%);
	box-shadow: 30px 0 80px rgba(26,16,40,0.56), inset 0 0 0 1px rgba(230,225,221,0.10);
	transform: translateX(-110%);
	transition: transform 220ms ease;
	z-index: 60;
	padding: 12px;
}

.drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 10px 14px 10px;
	border-bottom: 1px solid rgba(230,225,221,0.12);
}

.drawer__reg {
	text-decoration: none;
	font-weight: 900;
	font-size: 13px;
	color: rgba(230,225,221,0.92);
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(43,195,230,0.14);
	box-shadow: inset 0 0 0 1px rgba(43,195,230,0.20);
}

.drawer__close {
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	background: rgba(90,27,74,0.20);
	box-shadow: inset 0 0 0 1px rgba(230,225,221,0.10);
	display: grid;
	place-items: center;
	position: relative;
}

.drawer__close span {
	position: absolute;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: rgba(230,225,221,0.90);
}

.drawer__close span:nth-child(1) { transform: rotate(45deg); }
.drawer__close span:nth-child(2) { transform: rotate(-45deg); }

.drawer ul {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	padding: 12px 6px 16px 6px;
}

.drawer a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 12px;
	border-radius: 16px;
	text-decoration: none;
	color: rgba(230,225,221,0.88);
	background: rgba(26,16,40,0.18);
	box-shadow: inset 0 0 0 1px rgba(230,225,221,0.08);
}

.drawer a:hover { background: rgba(90,27,74,0.28); }

.drawer__txt {
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.2px;
}

.backdrop {
	position: fixed;
	inset: 0;
	background: rgba(26,16,40,0.28);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
	backdrop-filter: blur(14px) saturate(120%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
	z-index: 55;
}

body.is-drawer-open .drawer { transform: translateX(0); }
body.is-drawer-open .backdrop {
	opacity: 1;
	pointer-events: auto;
}

/* ===================== */
/* МОДАЛКА РЕГИСТРАЦИИ + BLUR */
/* ===================== */
.regmodal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(26,16,40,0.46);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 220ms ease, visibility 220ms ease;
	z-index: 80;
}

body.is-reg-open .regmodal {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.regmodal__dialog {
	width: min(520px, 100%);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(96,30,78,0.55), rgba(26,16,40,0.86));
	box-shadow: 0 24px 90px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(230,225,221,0.10);
	transform: translateY(10px) scale(0.985);
	transition: transform 220ms ease;
	overflow: hidden;
}

body.is-reg-open .regmodal__dialog {
	transform: translateY(0) scale(1);
}


@media (max-width: 920px) {
	.topbar__grid {
		height: 64px;
		padding: 0 14px;
		grid-template-columns: auto 1fr auto;
		gap: 10px;
	}

	.topnav { display: none; }
	.brand { justify-self: center; }
	.topacts { display: none; }
	.topacts--m { display: flex; justify-self: end; }
    .topbar img {
        margin-right: -15px;
    }
}

@media (max-width: 480px) {
	.drawer {
		width: 92vw;
		height: 100dvh;
		height: 100svh;
		padding: calc(10px + env(safe-area-inset-top)) 10px calc(10px + env(safe-area-inset-bottom)) 10px;
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	.drawer__top {
		padding: 10px 10px 12px 10px;
	}

	.drawer ul {
		flex: 1;
		min-height: 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		padding: 12px 6px calc(14px + env(safe-area-inset-bottom)) 6px;
	}

	.drawer a {
		padding: 12px 12px;
		border-radius: 14px;
	}

	.drawer__txt {
		font-size: 13px;
	}

}

@media (max-width: 360px) {
	.drawer {
		width: 94vw;
	}

	.drawer a {
		padding: 11px 10px;
	}

	.drawer__txt {
		font-size: 12.5px;
	}
}

.hslider {
	padding: 18px 0 18px 0;
}

.hslider__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 18px;
}

.hslider__viewport {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	background: rgba(26,16,40,0.10);
	box-shadow:
		inset 0 0 0 1px rgba(223,218,214,0.10),
		0 18px 40px rgba(26,16,40,0.24);

	touch-action: pan-y;
	user-select: none;
}

.hslider__track {
	display: flex;
	gap: 0;
	transform: translate3d(0,0,0);
	transition: transform 260ms ease;
	will-change: transform;
}

.hslider__slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	min-height: 360px;
	display: flex;
	align-items: center;
	color: #DFDAD6;
	overflow: hidden;
}

.hslider__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	filter: saturate(1.06) contrast(1.05);
}

.hslider__shade {
	position: absolute;
	inset: 0;
	background: radial-gradient(1200px 480px at 22% 48%, rgba(96,30,78,0.50), rgba(47,48,104,0.28) 58%, rgba(26,16,40,0.70) 100%);
}

.hslider__content {
	position: relative;
	z-index: 2;

	margin-left: 26px;
	padding: 22px 22px;

	max-width: 560px;

	border-radius: 22px;
	background: rgba(26,16,40,0.22);
	box-shadow:
		inset 0 0 0 1px rgba(223,218,214,0.10),
		0 22px 46px rgba(26,16,40,0.26);

	backdrop-filter: blur(10px);
}

.hslider__title {
	display: block;
	font-weight: 900;
	letter-spacing: 0.2px;
	font-size: 44px;
	line-height: 1.05;
	color: #DFDAD6;
	text-shadow: 0 18px 40px rgba(26,16,40,0.40);
}

.hslider__text {
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(223,218,214,0.88);
	text-shadow: 0 12px 28px rgba(26,16,40,0.40);
}

.hslider__cta {
	margin-top: 16px;
	height: 46px;
	padding: 0 18px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.2px;
	color: rgba(26,16,40,0.92);
	background: linear-gradient(90deg, rgba(36,172,217,0.95), rgba(36,172,217,0.62));
	box-shadow:
		0 16px 32px rgba(26,16,40,0.22),
		0 16px 26px rgba(36,172,217,0.12);
	text-decoration: none;
	white-space: nowrap;
}

.hslider__dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 6;
}

.hslider__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	background: rgba(36,172,217,0.95);
	box-shadow: inset 0 0 0 1px rgba(36,172,217,0.95);
	transition: width 180ms ease, background 180ms ease;
}

.hslider__dot.is-active {
	width: 28px;
	background: rgba(36,172,217,0.95);
}

@media (max-width: 920px) {
	.hslider {
		padding: 12px 0 16px 0;
	}

	.hslider__inner {
		padding: 0 14px;
	}

	.hslider__viewport {
		border-radius: 22px;
	}

	.hslider__slide {
		min-height: 300px;
		align-items: center;
		justify-content: flex-start;
	}

	.hslider__shade {
		background: rgba(26,16,40,0.65);
	}

	.hslider__content {
		margin: 0;
		margin-left: 14px;

		width: min(52vw, 320px);
		max-width: 320px;

		padding: 0;
		border-radius: 0;

		background: transparent;
		backdrop-filter: none;

		box-shadow: none;
	}

	.hslider__title {
		font-size: 22px;
		line-height: 1.12;
		text-shadow: 0 12px 26px rgba(26,16,40,0.55);
	}

	.hslider__text {
		margin-top: 8px;
		font-size: 13px;
		line-height: 1.45;
		text-shadow: 0 12px 26px rgba(26,16,40,0.55);
	}

	.hslider__cta {
		margin-top: 12px;
		height: 40px;
		padding: 0 14px;
		border-radius: 14px;
		font-size: 12px;
		background: #24ACD9;
		color: rgba(26,16,40,0.92);
	}

	.hslider__dots {
		left: 50%;
		transform: translateX(-50%);
		bottom: 10px;
	}

	.hslider__dot {
		width: 9px;
		height: 9px;
	}

	.hslider__dot.is-active {
		width: 26px;
	}
}

@media (max-width: 380px) {
	.hslider__content {
		width: 68vw;
		max-width: 300px;
		padding: 0;
	}

	.hslider__title {
		font-size: 20px;
	}

	.hslider__text {
		font-size: 12.5px;
	}

	.hslider__cta {
		height: 38px;
	}

	.hslider__dots {
		left: 50%;
		transform: translateX(-50%);
	}
}


.gpop{
	padding: 14px 0 24px 0;
}

.gpop__inner{
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 18px;
}

.gpop__box{
	padding: 12px;
	border-radius: 18px;
	background: rgba(26,16,40,0.10);
	box-shadow:
		inset 0 0 0 1px rgba(223,218,214,0.10),
		0 18px 40px rgba(26,16,40,0.22);
}

.gpop__head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.gpop__ttl{
	font-weight: 900;
	letter-spacing: 0.2px;
	color: #DFDAD6;
	font-size: 18px;
}

.gpop__all{
	text-decoration: none;
	font-weight: 800;
	font-size: 13px;
	color: rgba(223,218,214,0.86);
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(47,48,104,0.16);
	box-shadow: inset 0 0 0 1px rgba(223,218,214,0.10);
	transition: transform 160ms ease, background 160ms ease;
}

.gpop__all:hover{
	transform: translateY(-1px);
	background: rgba(96,30,78,0.16);
}

.gpop__viewport{
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 6px 10px 6px;
	border-radius: 16px;
	background: rgba(47,48,104,0.10);
	box-shadow: inset 0 0 0 1px rgba(223,218,214,0.06);
}

/* ВИДИМЫЙ скроллбар */
.gpop__viewport::-webkit-scrollbar{
	height: 10px;
}
.gpop__viewport::-webkit-scrollbar-track{
	background: rgba(223,218,214,0.10);
	border-radius: 999px;
}
.gpop__viewport::-webkit-scrollbar-thumb{
	background: rgba(223,218,214,0.28);
	border-radius: 999px;
}
.gpop__viewport::-webkit-scrollbar-thumb:hover{
	background: rgba(223,218,214,0.38);
}

.gpop__grid{
	width: max-content;
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2, 100px);
	grid-auto-columns: 100px;
	gap: 12px;
}

/* карточка 100x100 */
.gpop__tile{
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 16px;
	background-color: rgba(47,48,104,0.22);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	box-shadow:
		0 14px 30px rgba(26,16,40,0.22),
		inset 0 0 0 1px rgba(223,218,214,0.10);
	transform: translateZ(0);
	outline: none;
}

.gpop__tile::before{
	content:"";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26,16,40,0.10) 0%, rgba(26,16,40,0.46) 100%);
}

.gpop__overlay{
	position: absolute;
	inset: 0;
	background: rgba(26,16,40,0.62);
	opacity: 0;
	transition: opacity 160ms ease;
}

.gpop__actions{
	position: absolute;
	inset: 0;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 8px;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
	pointer-events: none;
}


.gpop__tile:hover .gpop__overlay,
.gpop__tile:focus-within .gpop__overlay{
	opacity: 1;
}

.gpop__tile:hover .gpop__actions,
.gpop__tile:focus-within .gpop__actions{
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}


.gpop__tile:focus-visible{
	box-shadow:
		0 16px 34px rgba(26,16,40,0.26),
		inset 0 0 0 1px rgba(223,218,214,0.14),
		0 0 0 3px rgba(36,172,217,0.18);
}

.gpop__btn{
	text-decoration: none;
	height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 11px;
	letter-spacing: 0.2px;
	color: #DFDAD6;
	box-shadow:
		0 12px 22px rgba(26,16,40,0.30),
		inset 0 0 0 1px rgba(223,218,214,0.12);
}

.gpop__btn--play{
	background: rgba(36,172,217,0.55);
	color: rgba(26,16,40,0.92);
}

.gpop__btn--demo{
	background: rgba(96,30,78,0.40);
}

.gpop__btn:hover{
	transform: translateY(-1px);
}

@media (max-width: 920px){
	.gpop{
		padding: 12px 0 20px 0;
	}

	.gpop__inner{
		padding: 0 14px;
	}

	.gpop__box{
		padding: 10px;
		border-radius: 16px;
	}

	.gpop__ttl{
		font-size: 16px;
	}

	.gpop__viewport{
		padding: 6px 6px 10px 6px;
	}

	.gpop__grid{
		gap: 10px;
	}

	.gpop__tile{
		border-radius: 14px;
	}
}


.cmain{
	max-width: 1300px;
	margin: 0 auto;
	padding: 22px 22px 34px 22px;

	position: relative;
	border-radius: 20px;

	background:
		linear-gradient(180deg, rgba(26,16,40,0.42), rgba(26,16,40,0.26));
	box-shadow:
		0 22px 46px rgba(26,16,40,0.34);
}

/* тонкая “рамка” без inset-обводок */
.cmain::before{
	content:"";
	position:absolute;
	inset: 10px;
	border-radius: 16px;
	border: 1px solid rgba(223,218,214,0.09);
	pointer-events:none;
}


/* ===== Typography ===== */
.cmain h1{
	margin: 0;
	padding-left: 10px;
	font-weight: 900;
	letter-spacing: 0.2px;
	color: #DFDAD6;
	font-size: 36px;
	line-height: 1.06;
    margin-bottom: 10px;
}

.cmain h2{
	margin-top: 18px;
	padding-top: 14px;
	padding-left: 10px;

	font-weight: 900;
	letter-spacing: 0.18px;
	color: #DFDAD6;
	font-size: 22px;
	line-height: 1.15;
    margin-bottom: 10px;
	border-top: 1px solid rgba(223,218,214,0.08);
}

.cmain h3{
	margin-top: 16px;
	padding-left: 10px;
    margin-bottom: 10px;
	font-weight: 900;
	letter-spacing: 0.14px;
	color: rgba(223,218,214,0.95);
	font-size: 18px;
	line-height: 1.2;
}

.cmain p{
	margin-top: 10px;
	padding-left: 10px;

	color: rgba(223,218,214,0.86);
	font-size: 15px;
	line-height: 1.7;
}

/* ===== Image ===== */
.cmain img{
	margin-top: 14px;
	max-width: 100%;
	height: auto;
	display: block;
    margin: 0 auto;
	border-radius: 16px;
	border: 1px solid rgba(223,218,214,0.08);
    
	filter: saturate(1.06) contrast(1.03);
	box-shadow:
		0 16px 34px rgba(26,16,40,0.22);
}

/* ===== Lists ===== */
.cmain ul,
.cmain ol{
	margin-top: 10px;
	padding-left: 32px;
	color: rgba(223,218,214,0.86);
	font-size: 15px;
	line-height: 1.7;
}

.cmain li{
	margin: 6px 0;
}

.cmain ul li::marker{
	color: rgba(36,172,217,0.85);
}

.cmain ol li::marker{
	color: rgba(223,218,214,0.62);
	font-weight: 800;
}

/* ===== Blockquote (совсем другой стиль) ===== */
.cmain blockquote{
	margin-top: 14px;
	padding: 12px 14px 12px 14px;

	border-radius: 14px;
	border-left: 3px solid rgba(36,172,217,0.85);

	background: rgba(26,16,40,0.10);
	color: rgba(223,218,214,0.90);

	box-shadow: none;
}

/* ===== Table: “панель + скролл” ===== */
.cmain table{
	width: 100%;
	margin-top: 14px;

	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;

	border-radius: 16px;
	border: 1px solid rgba(223,218,214,0.10);
	background: rgba(26,16,40,0.08);
}

.cmain thead,
.cmain tbody{
	display: table;
	width: 100%;
	min-width: 720px;
	table-layout: fixed;
}

.cmain th,
.cmain td{
	padding: 12px 12px;
	text-align: left;
	vertical-align: top;

	font-size: 14px;
	line-height: 1.5;
	color: rgba(223,218,214,0.88);

	border-bottom: 1px solid rgba(223,218,214,0.08);
}

.cmain th{
	font-weight: 900;
	color: #DFDAD6;
	background: rgba(47,48,104,0.16);
}

.cmain tr:last-child td{
	border-bottom: 0;
}

.cmain table::-webkit-scrollbar{
	height: 10px;
}
.cmain table::-webkit-scrollbar-track{
	background: rgba(223,218,214,0.10);
	border-radius: 999px;
}
.cmain table::-webkit-scrollbar-thumb{
	background: rgba(36,172,217,0.22);
	border-radius: 999px;
}
.cmain table::-webkit-scrollbar-thumb:hover{
	background: rgba(36,172,217,0.32);
}

@media (max-width: 920px){
	.cmain{
		padding: 16px 14px 26px 14px;
		border-radius: 16px;
	}

	.cmain::before{
		inset: 8px;
		border-radius: 12px;
	}

	.cmain h1{
		font-size: 26px;
	}

	.cmain h2{
		font-size: 20px;
	}

	.cmain h3{
		font-size: 17px;
	}

	.cmain p,
	.cmain ul,
	.cmain ol{
		font-size: 14px;
	}

	.cmain img{
		border-radius: 14px;
	}
}

.bfoot{
	margin-top: 22px;
	background:
		linear-gradient(180deg, rgba(26,16,40,0.34), rgba(26,16,40,0.18));
	border-top: 1px solid rgba(223,218,214,0.10);
}

.bfoot__inner{
	max-width: 1300px;
	margin: 0 auto;
	padding: 22px 18px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 18px;
	align-items: start;
}

.bfoot__left p{
	margin-top: 10px;
	color: rgba(223,218,214,0.80);
	font-size: 14px;
	line-height: 1.65;
}

.bfoot__lic{
	color: rgba(223,218,214,0.88);
	font-weight: 700;
}

.bfoot__logo{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.bfoot__logo img{
	display: block;
	height: 44px;
	width: auto;
	filter: saturate(1.05);
}

.bfoot__nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.bfoot__nav a{
	display: inline-flex;
	text-decoration: none;
	color: rgba(223,218,214,0.86);
	font-weight: 700;
	font-size: 14px;
	padding: 8px 10px;
	border-radius: 12px;
	border: 1px solid rgba(223,218,214,0.10);
	background: rgba(47,48,104,0.12);
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.bfoot__nav a:hover{
	transform: translateY(-1px);
	background: rgba(96,30,78,0.16);
	border-color: rgba(223,218,214,0.16);
}

.bfoot__bar{
	max-width: 1300px;
	margin: 0 auto;
	padding: 14px 18px 18px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid rgba(223,218,214,0.08);
	color: rgba(223,218,214,0.72);
	font-size: 13px;
}

.bfoot__top{
	color: rgba(223,218,214,0.86);
	text-decoration: none;
	border-bottom: 1px solid rgba(223,218,214,0.18);
	padding: 4px 6px;
	border-radius: 10px;
	transition: background 160ms ease, transform 160ms ease;
}

.bfoot__top:hover{
	background: rgba(47,48,104,0.14);
	transform: translateY(-1px);
}

@media (max-width: 920px){
	.bfoot__inner{
		grid-template-columns: 1fr;
		padding: 18px 14px;
		justify-items: center;
		text-align: center;
	}

	.bfoot__left{
		display: grid;
		justify-items: center;
	}

	.bfoot__left p{
		max-width: 520px;
	}

	.bfoot__nav{
		width: 100%;
		display: grid;
		justify-items: center;
	}

	.bfoot__nav ul{
		width: min(520px, 100%);
		justify-items: center;
	}

	.bfoot__nav a{
		justify-content: center;
		text-align: center;
		width: min(520px, 100%);
	}

	.bfoot__bar{
		padding: 12px 14px 16px 14px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

