* {
	margin: 0;
	padding: 0;
}

.bf-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-image: url('../img/bg.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-family: Arial, sans-serif;
}

.bf-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		rgba(168, 131, 181, 0.88) 0%,
		rgba(51, 14, 65, 0.72) 45%,
		rgba(70, 20, 97, 0.58) 100%
	);
}

.bf-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 20px;
}

.bf-hero__content {
	max-width: 760px;
	color: #ffffff;
}

.bf-hero__eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #dbeafe;
}

.bf-hero__title {
	margin: 0 0 22px;
	font-size: 56px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.bf-hero__text {
	margin: 0;
	max-width: 680px;
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
}

.bf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.bf-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.bf-hero__btn--primary {
	background: #ffffff;
	color: #0f2747;
}

.bf-hero__btn--primary:hover {
	background: #eaf2ff;
	transform: translateY(-2px);
}

.bf-hero__btn--secondary {
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	backdrop-filter: blur(6px);
}

.bf-hero__btn--secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-2px);
}

.bf-hero__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
	max-width: 1000px;
}

.bf-hero__card {
	padding: 20px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.bf-hero__card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.4;
	color: #ffffff;
}

.bf-hero__card span {
	display: block;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
	.bf-hero {
		min-height: auto;
	}

	.bf-hero__container {
		padding: 70px 18px;
	}

	.bf-hero__title {
		font-size: 42px;
	}

	.bf-hero__text {
		font-size: 17px;
	}

	.bf-hero__highlights {
		grid-template-columns: 1fr;
		max-width: 680px;
	}
}

@media (max-width: 575px) {
	.bf-hero__container {
		padding: 56px 16px;
	}

	.bf-hero__eyebrow {
		font-size: 11px;
		padding: 8px 12px;
	}

	.bf-hero__title {
		font-size: 32px;
		line-height: 1.15;
	}

	.bf-hero__text {
		font-size: 15px;
		line-height: 1.7;
	}

	.bf-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.bf-hero__btn {
		width: 100%;
	}

	.bf-hero__card {
		padding: 18px 16px;
	}
}

.bf-overview {
	padding: 90px 20px;
	background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
	font-family: Arial, sans-serif;
}

.bf-overview__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-overview__top {
	max-width: 820px;
	margin-bottom: 48px;
}

.bf-overview__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e8f0fb;
	color: #22476b;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bf-overview__title {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	color: #13263d;
	letter-spacing: -0.02em;
}

.bf-overview__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #526579;
}

.bf-overview__grid {
	display: grid;
	grid-template-columns: 1.35fr 0.95fr;
	gap: 28px;
	align-items: start;
}

.bf-overview__main {
	padding: 34px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 16px 45px rgba(16, 36, 64, 0.08);
	border: 1px solid rgba(19, 38, 61, 0.06);
}

.bf-overview__main p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.85;
	color: #44586d;
}

.bf-overview__main p:last-child {
	margin-bottom: 0;
}

.bf-overview__side {
	display: grid;
	gap: 18px;
}

.bf-overview__card {
	padding: 24px;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	border: 1px solid rgba(35, 71, 107, 0.1);
	box-shadow: 0 14px 36px rgba(19, 38, 61, 0.06);
}

.bf-overview__card h3 {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.3;
	color: #16304a;
}

.bf-overview__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #5a6d80;
}

.bf-overview__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 28px;
}

.bf-overview__stat {
	padding: 24px 22px;
	border-radius: 20px;
	background: #163a5f;
	box-shadow: 0 18px 40px rgba(22, 58, 95, 0.16);
}

.bf-overview__stat strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	line-height: 1.4;
	color: #ffffff;
}

.bf-overview__stat span {
	display: block;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
	.bf-overview {
		padding: 72px 18px;
	}

	.bf-overview__title {
		font-size: 34px;
	}

	.bf-overview__subtitle {
		font-size: 17px;
	}

	.bf-overview__grid {
		grid-template-columns: 1fr;
	}

	.bf-overview__stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.bf-overview {
		padding: 56px 16px;
	}

	.bf-overview__label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.bf-overview__title {
		font-size: 28px;
	}

	.bf-overview__subtitle {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-overview__main {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.bf-overview__main p {
		font-size: 15px;
	}

	.bf-overview__card {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-overview__card h3 {
		font-size: 17px;
	}

	.bf-overview__card p,
	.bf-overview__stat span {
		font-size: 14px;
	}

	.bf-overview__stat {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-overview__stat strong {
		font-size: 16px;
	}
}

.bf-sectors {
	padding: 90px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
	font-family: Arial, sans-serif;
}

.bf-sectors__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-sectors__header {
	max-width: 860px;
	margin-bottom: 46px;
}

.bf-sectors__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e7eef8;
	color: #244566;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bf-sectors__title {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.16;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #14283f;
}

.bf-sectors__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #55687d;
}

.bf-sectors__layout {
	display: grid;
	grid-template-columns: 0.9fr 1.5fr;
	gap: 28px;
	align-items: start;
}

.bf-sectors__intro {
	display: grid;
	gap: 18px;
}

.bf-sectors__intro-box {
	padding: 28px 24px;
	border-radius: 22px;
	background: #163a5f;
	box-shadow: 0 18px 40px rgba(22, 58, 95, 0.14);
}

.bf-sectors__intro-box h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.3;
	color: #ffffff;
}

.bf-sectors__intro-box p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.84);
}

.bf-sectors__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.bf-sectors__card {
	padding: 26px 24px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(20, 40, 63, 0.08);
	box-shadow: 0 14px 36px rgba(16, 36, 64, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-sectors__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(16, 36, 64, 0.12);
}

.bf-sectors__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, #e7f0fb 0%, #d8e7fb 100%);
	color: #163a5f;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.bf-sectors__card h3 {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.35;
	color: #18314b;
}

.bf-sectors__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #5a6c7e;
}

.bf-sectors__bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 30px;
}

.bf-sectors__point {
	padding: 22px 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
	border: 1px solid rgba(36, 69, 102, 0.08);
}

.bf-sectors__point strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	line-height: 1.4;
	color: #17324d;
}

.bf-sectors__point span {
	display: block;
	font-size: 14px;
	line-height: 1.75;
	color: #5c7084;
}

@media (max-width: 991px) {
	.bf-sectors {
		padding: 72px 18px;
	}

	.bf-sectors__title {
		font-size: 34px;
	}

	.bf-sectors__subtitle {
		font-size: 17px;
	}

	.bf-sectors__layout {
		grid-template-columns: 1fr;
	}

	.bf-sectors__grid {
		grid-template-columns: 1fr;
	}

	.bf-sectors__bottom {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.bf-sectors {
		padding: 56px 16px;
	}

	.bf-sectors__label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.bf-sectors__title {
		font-size: 28px;
	}

	.bf-sectors__subtitle {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-sectors__intro-box,
	.bf-sectors__card,
	.bf-sectors__point {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-sectors__intro-box h3 {
		font-size: 19px;
	}

	.bf-sectors__card h3 {
		font-size: 18px;
	}

	.bf-sectors__card p,
	.bf-sectors__intro-box p,
	.bf-sectors__point span {
		font-size: 14px;
	}

	.bf-sectors__icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
		font-size: 14px;
		margin-bottom: 14px;
	}
}

.bf-stats {
	padding: 90px 20px;
	background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
	font-family: Arial, sans-serif;
}

.bf-stats__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-stats__header {
	max-width: 860px;
	margin-bottom: 44px;
}

.bf-stats__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e7eef8;
	color: #244566;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bf-stats__title {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #14283f;
}

.bf-stats__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #56697d;
}

.bf-stats__hero-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 24px;
}

.bf-stats__highlight {
	padding: 28px 24px;
	border-radius: 24px;
	background: linear-gradient(180deg, #163a5f 0%, #1d486f 100%);
	box-shadow: 0 18px 40px rgba(22, 58, 95, 0.14);
}

.bf-stats__highlight-number {
	margin-bottom: 14px;
	font-size: 42px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.bf-stats__highlight h3 {
	margin: 0 0 12px;
	font-size: 21px;
	line-height: 1.3;
	color: #ffffff;
}

.bf-stats__highlight p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.84);
}

.bf-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 26px;
}

.bf-stats__card {
	padding: 24px 22px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(20, 40, 63, 0.08);
	box-shadow: 0 14px 34px rgba(16, 36, 64, 0.08);
}

.bf-stats__card-topline {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #956da0;
}

.bf-stats__card strong {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #562466;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bf-stats__card h3 {
	margin: 0 0 12px;
	font-size: 19px;
	line-height: 1.35;
	color: #3d184b;
}

.bf-stats__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #5d6f82;
}

.bf-stats__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.bf-stats__metric {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
	border: 1px solid rgba(36, 69, 102, 0.08);
}

.bf-stats__metric-value {
	flex: 0 0 auto;
	min-width: 74px;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #46174d;
}

.bf-stats__metric-text strong {
	display: block;
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.4;
	color: #45174d;
}

.bf-stats__metric-text span {
	display: block;
	font-size: 14px;
	line-height: 1.75;
	color: #825d84;
}

@media (max-width: 991px) {
	.bf-stats {
		padding: 72px 18px;
	}

	.bf-stats__title {
		font-size: 34px;
	}

	.bf-stats__subtitle {
		font-size: 17px;
	}

	.bf-stats__hero-grid {
		grid-template-columns: 1fr;
	}

	.bf-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bf-stats__metrics {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.bf-stats {
		padding: 56px 16px;
	}

	.bf-stats__label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.bf-stats__title {
		font-size: 28px;
	}

	.bf-stats__subtitle {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-stats__grid {
		grid-template-columns: 1fr;
	}

	.bf-stats__highlight,
	.bf-stats__card,
	.bf-stats__metric {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-stats__highlight-number {
		font-size: 34px;
	}

	.bf-stats__highlight h3,
	.bf-stats__card h3 {
		font-size: 18px;
	}

	.bf-stats__highlight p,
	.bf-stats__card p,
	.bf-stats__metric-text span {
		font-size: 14px;
	}

	.bf-stats__metric {
		flex-direction: column;
		gap: 12px;
	}

	.bf-stats__metric-value {
		min-width: auto;
		font-size: 26px;
	}

	.bf-stats__metric-text strong {
		font-size: 16px;
	}
}

.bf-insights {
	padding: 90px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
	font-family: Arial, sans-serif;
}

.bf-insights__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-insights__header {
	max-width: 860px;
	margin-bottom: 44px;
}

.bf-insights__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e7eef8;
	color: #4f2466;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bf-insights__title {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #14283f;
}

.bf-insights__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #78567d;
}

.bf-insights__top {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr;
	gap: 24px;
	margin-bottom: 24px;
}

.bf-insights__featured {
	padding: 32px;
	border-radius: 26px;
	background: linear-gradient(135deg, #4d165f 0%, #672178 100%);
	box-shadow: 0 20px 44px rgba(22, 58, 95, 0.15);
}

.bf-insights__featured-tag {
	display: inline-block;
	margin-bottom: 16px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bf-insights__featured h3 {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	color: #ffffff;
}

.bf-insights__featured p {
	margin: 0;
	font-size: 16px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.86);
}

.bf-insights__featured-points {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.bf-insights__mini {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-insights__mini strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.4;
	color: #ffffff;
}

.bf-insights__mini span {
	display: block;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.bf-insights__side {
	display: grid;
	gap: 18px;
}

.bf-insights__side-card {
	padding: 24px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(20, 40, 63, 0.08);
	box-shadow: 0 14px 34px rgba(16, 36, 64, 0.08);
}

.bf-insights__side-card h3 {
	margin: 0 0 12px;
	font-size: 21px;
	line-height: 1.35;
	color: #45184b;
}

.bf-insights__side-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #7d5d82;
}

.bf-insights__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 24px;
}

.bf-insights__card {
	padding: 24px 22px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(20, 40, 63, 0.08);
	box-shadow: 0 14px 34px rgba(16, 36, 64, 0.08);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.bf-insights__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(16, 36, 64, 0.12);
}

.bf-insights__card-label {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b84a0;
}

.bf-insights__card h3 {
	margin: 0 0 12px;
	font-size: 19px;
	line-height: 1.35;
	color: #41184b;
}

.bf-insights__card p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.75;
	color: #5d6f82;
}

.bf-insights__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: #671c74;
	transition: opacity 0.2s ease;
}

.bf-insights__link:hover {
	opacity: 0.8;
}

.bf-insights__bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.bf-insights__info {
	padding: 22px;
	border-radius: 20px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
	border: 1px solid rgba(36, 69, 102, 0.08);
}

.bf-insights__info strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	line-height: 1.4;
	color: #43174d;
}

.bf-insights__info span {
	display: block;
	font-size: 14px;
	line-height: 1.75;
	color: #5d7084;
}

@media (max-width: 991px) {
	.bf-insights {
		padding: 72px 18px;
	}

	.bf-insights__title {
		font-size: 34px;
	}

	.bf-insights__subtitle {
		font-size: 17px;
	}

	.bf-insights__top {
		grid-template-columns: 1fr;
	}

	.bf-insights__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bf-insights__bottom {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.bf-insights {
		padding: 56px 16px;
	}

	.bf-insights__label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.bf-insights__title {
		font-size: 28px;
	}

	.bf-insights__subtitle {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-insights__featured,
	.bf-insights__side-card,
	.bf-insights__card,
	.bf-insights__info {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-insights__featured h3 {
		font-size: 24px;
	}

	.bf-insights__featured-points {
		grid-template-columns: 1fr;
	}

	.bf-insights__grid {
		grid-template-columns: 1fr;
	}

	.bf-insights__card h3,
	.bf-insights__side-card h3 {
		font-size: 18px;
	}

	.bf-insights__featured p,
	.bf-insights__side-card p,
	.bf-insights__card p,
	.bf-insights__info span,
	.bf-insights__mini span {
		font-size: 14px;
	}

	.bf-insights__info strong,
	.bf-insights__mini strong {
		font-size: 16px;
	}
}

.bf-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(37, 10, 45, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-family: Arial, sans-serif;
}

.bf-header__container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo */
.bf-header__logo a {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.04em;
}

/* Nav */
.bf-header__nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.bf-header__nav a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.25s ease;
}

.bf-header__nav a:hover {
	color: #ffffff;
}

/* Button */
.bf-header__btn {
	padding: 10px 16px;
	border-radius: 10px;
	background: #ffffff;
	color: #0f2747;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
}

.bf-header__btn:hover {
	background: #e6effa;
	transform: translateY(-1px);
}

/* Actions */
.bf-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Burger */
.bf-header__burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
}

.bf-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
}

/* Mobile */
@media (max-width: 991px) {
	.bf-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
		background: #3d0f47;
		display: none;
		gap: 14px;
	}

	.bf-header__nav.active {
		display: flex;
	}

	.bf-header__burger {
		display: flex;
	}

	.bf-header__btn {
		display: none;
	}
}

.bf-footer {
	padding: 70px 20px 24px;
	background: linear-gradient(180deg, #3a103f 0%, #290a2e 100%);
	font-family: Arial, sans-serif;
	color: #ffffff;
}

.bf-footer__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1fr;
	gap: 28px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-footer__brand {
	max-width: 360px;
}

.bf-footer__logo {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-decoration: none;
}

.bf-footer__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.78);
}

.bf-footer__column h3 {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.4;
	color: #ffffff;
}

.bf-footer__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bf-footer__column li {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.76);
}

.bf-footer__column a {
	color: rgba(255, 255, 255, 0.76);
	text-decoration: none;
	transition: color 0.25s ease;
}

.bf-footer__column a:hover,
.bf-footer__bottom-links a:hover {
	color: #ffffff;
}

.bf-footer__contact li {
	margin-bottom: 8px;
}

.bf-footer__middle {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-footer__note {
	padding: 22px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(4px);
}

.bf-footer__note strong {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.4;
	color: #ffffff;
}

.bf-footer__note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.74);
}

.bf-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
}

.bf-footer__bottom p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
}

.bf-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.bf-footer__bottom-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.25s ease;
}

@media (max-width: 1100px) {
	.bf-footer__top {
		grid-template-columns: repeat(2, 1fr);
	}

	.bf-footer__brand {
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.bf-footer {
		padding: 56px 18px 22px;
	}

	.bf-footer__middle {
		grid-template-columns: 1fr;
	}

	.bf-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 575px) {
	.bf-footer {
		padding: 48px 16px 20px;
	}

	.bf-footer__top {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.bf-footer__logo {
		font-size: 22px;
	}

	.bf-footer__text,
	.bf-footer__column li,
	.bf-footer__note p {
		font-size: 14px;
	}

	.bf-footer__note {
		padding: 18px;
		border-radius: 16px;
	}

	.bf-footer__bottom-links {
		gap: 14px;
	}
}

.bf-cookie {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1200;
	display: none;
	animation: bfCookieSlideUp 0.35s ease;
	font-family: Arial, sans-serif;
}

.bf-cookie.show {
	display: block;
}

.bf-cookie__content {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 26px;
	border-radius: 24px;
	background: rgba(43, 11, 44, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
}

.bf-cookie__text {
	max-width: 760px;
}

.bf-cookie__label {
	display: inline-block;
	margin-bottom: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #dceafe;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bf-cookie__text h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.3;
	color: #ffffff;
}

.bf-cookie__text p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
}

.bf-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.bf-cookie__btn {
	padding: 13px 18px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
}

.bf-cookie__btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: transparent;
	color: #ffffff;
}

.bf-cookie__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
}

.bf-cookie__btn--primary {
	border: 1px solid #ffffff;
	background: #ffffff;
	color: #3e0f47;
}

.bf-cookie__btn--primary:hover {
	background: #e8f0fb;
	transform: translateY(-1px);
}

@keyframes bfCookieSlideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 991px) {
	.bf-cookie {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.bf-cookie__content {
		flex-direction: column;
		align-items: stretch;
		padding: 22px;
	}

	.bf-cookie__actions {
		width: 100%;
	}
}

@media (max-width: 575px) {
	.bf-cookie {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.bf-cookie__content {
		padding: 18px;
		border-radius: 18px;
		gap: 18px;
	}

	.bf-cookie__label {
		font-size: 11px;
	}

	.bf-cookie__text h3 {
		font-size: 18px;
	}

	.bf-cookie__text p {
		font-size: 14px;
		line-height: 1.7;
	}

	.bf-cookie__actions {
		flex-direction: column;
	}

	.bf-cookie__btn {
		width: 100%;
	}
}

.bf-contact {
	padding: 90px 20px;
	background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
	font-family: Arial, sans-serif;
}

.bf-contact__container {
	max-width: 1240px;
	margin: 0 auto;
}

.bf-contact__header {
	max-width: 860px;
	margin-bottom: 42px;
}

.bf-contact__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #e7eef8;
	color: #244566;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bf-contact__title {
	margin: 0 0 18px;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #14283f;
}

.bf-contact__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #56697d;
}

.bf-contact__layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 26px;
	align-items: start;
}

.bf-contact__left {
	display: grid;
	gap: 18px;
}

.bf-contact__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.bf-contact__panel,
.bf-contact__form {
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(20, 40, 63, 0.08);
	box-shadow: 0 16px 38px rgba(16, 36, 64, 0.08);
}

.bf-contact__panel {
	padding: 24px;
}

.bf-contact__panel--main {
	padding: 30px;
	background: linear-gradient(135deg, #54165f 0%, #5d2178 100%);
	border: none;
	box-shadow: 0 20px 44px rgba(22, 58, 95, 0.16);
}

.bf-contact__panel-tag {
	display: inline-block;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bf-contact__panel--main h3,
.bf-contact__panel h3 {
	margin: 0 0 12px;
	line-height: 1.3;
}

.bf-contact__panel--main h3 {
	font-size: 28px;
	color: #ffffff;
}

.bf-contact__panel h3 {
	font-size: 20px;
	color: #18314b;
}

.bf-contact__panel--main p {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.84);
}

.bf-contact__panel p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #5d6f82;
}

.bf-contact__info-list {
	display: grid;
	gap: 14px;
}

.bf-contact__info-item {
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bf-contact__info-item strong {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bf-contact__info-item span,
.bf-contact__info-item a {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
	text-decoration: none;
}

.bf-contact__right {
	position: relative;
}

.bf-contact__right::before {
	content: '';
	position: absolute;
	top: -14px;
	right: -14px;
	width: 120px;
	height: 120px;
	border-radius: 24px;
	background: linear-gradient(
		135deg,
		rgba(35, 79, 120, 0.12),
		rgba(22, 58, 95, 0.04)
	);
	z-index: 0;
}

.bf-contact__form {
	position: relative;
	z-index: 1;
	padding: 30px;
}

.bf-contact__form-top {
	margin-bottom: 22px;
}

.bf-contact__form-top h3 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
	color: #18314b;
}

.bf-contact__form-top p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #5d6f82;
}

.bf-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.bf-contact__field {
	margin-bottom: 18px;
}

.bf-contact__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #17324d;
}

.bf-contact__field input,
.bf-contact__field textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid rgba(20, 40, 63, 0.14);
	background: #f9fbfe;
	font-size: 15px;
	line-height: 1.5;
	color: #41184b;
	outline: none;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
	box-sizing: border-box;
	resize: vertical;
}

.bf-contact__field input:focus,
.bf-contact__field textarea:focus {
	border-color: #2e5b84;
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(46, 91, 132, 0.08);
}

.bf-contact__field input::placeholder,
.bf-contact__field textarea::placeholder {
	color: #8a9bad;
}

.bf-contact__error {
	display: block;
	min-height: 18px;
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.4;
	color: #b54747;
}

.bf-contact__actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 6px;
}

.bf-contact__btn {
	padding: 14px 24px;
	border: none;
	border-radius: 14px;
	background: #4e165f;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 14px 28px rgba(22, 58, 95, 0.16);
}

.bf-contact__btn:hover {
	background: #601d6f;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.bf-contact {
		padding: 72px 18px;
	}

	.bf-contact__title {
		font-size: 34px;
	}

	.bf-contact__subtitle {
		font-size: 17px;
	}

	.bf-contact__layout {
		grid-template-columns: 1fr;
	}

	.bf-contact__row,
	.bf-contact__grid {
		grid-template-columns: 1fr;
	}

	.bf-contact__right::before {
		display: none;
	}
}

@media (max-width: 575px) {
	.bf-contact {
		padding: 56px 16px;
	}

	.bf-contact__label {
		font-size: 11px;
		padding: 7px 12px;
	}

	.bf-contact__title {
		font-size: 28px;
	}

	.bf-contact__subtitle {
		font-size: 15px;
		line-height: 1.75;
	}

	.bf-contact__panel,
	.bf-contact__panel--main,
	.bf-contact__form {
		padding: 20px;
		border-radius: 18px;
	}

	.bf-contact__panel--main h3,
	.bf-contact__form-top h3 {
		font-size: 22px;
	}

	.bf-contact__panel h3 {
		font-size: 18px;
	}

	.bf-contact__panel p,
	.bf-contact__panel--main p,
	.bf-contact__form-top p,
	.bf-contact__info-item span,
	.bf-contact__info-item a {
		font-size: 14px;
	}

	.bf-contact__btn {
		width: 100%;
	}
}
.bf-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bf-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.bf-modal__content {
	position: relative;
	z-index: 2;
	background: #ffffff;
	padding: 32px 28px;
	border-radius: 20px;
	text-align: center;
	max-width: 420px;
	width: 90%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	font-family: Arial, sans-serif;
	animation: bfModalFade 0.3s ease;
}

.bf-modal__content h3 {
	margin: 0 0 12px;
	font-size: 24px;
	color: #54165f;
}

.bf-modal__content p {
	margin: 0 0 20px;
	font-size: 15px;
	color: #7c5d82;
}

.bf-modal__btn {
	padding: 12px 20px;
	border-radius: 12px;
	border: none;
	background: #49165f;
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
}

.bf-modal__btn:hover {
	background: #6c1d6f;
}

@keyframes bfModalFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bf-cookie-section {
	padding: 100px 0;
	background: #f9fafc;
}

/* HEAD */
.bf-cookie-head {
	max-width: 760px;
	margin: 0 auto;
}

.bf-cookie-label {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #666;
}

.bf-cookie-title {
	font-size: 3rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 12px;
}

.bf-cookie-subtitle {
	font-size: 1.5rem;
	color: #555;
	line-height: 1.6;
}

/* CARD */
.bf-cookie-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 30px;
}

/* SIDEBAR */
.bf-cookie-sidecard {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

/* BLOCK */
.bf-cookie-block {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}

.bf-cookie-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.bf-cookie-block h3 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: #222;
}

.bf-cookie-block h4 {
	font-size: 1.5rem;
	margin-top: 12px;
	margin-bottom: 6px;
	color: #333;
}

.bf-cookie-block p,
.bf-cookie-block li {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.7;
}

.bf-cookie-block ul {
	padding-left: 18px;
	margin-top: 8px;
}

/* SIDEBAR MINI */
.bf-cookie-mini {
	padding: 14px 0;
	border-top: 1px solid #eee;
}

.bf-cookie-mini:first-child {
	border-top: none;
	padding-top: 0;
}

.bf-cookie-mini h4 {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
}

.bf-cookie-mini p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.5;
}

/* GRID FIX (if no bootstrap) */
.bf-row {
	display: flex;
	gap: 24px;
}

.bf-col-main {
	flex: 2;
}

.bf-col-side {
	flex: 1;
}

/* TABLET */
@media (max-width: 991px) {
	.bf-row {
		flex-direction: column;
	}

	.bf-cookie-title {
		font-size: 2rem;
	}

	.bf-cookie-card,
	.bf-cookie-sidecard {
		padding: 24px;
	}
}

/* MOBILE */
@media (max-width: 576px) {
	.bf-cookie-title {
		font-size: 1.6rem;
	}

	.bf-cookie-subtitle {
		font-size: 0.95rem;
	}

	.bf-cookie-card,
	.bf-cookie-sidecard {
		padding: 18px;
	}

	.bf-cookie-block h3 {
		font-size: 1.05rem;
	}

	.bf-cookie-block p,
	.bf-cookie-block li {
		font-size: 0.9rem;
	}
}
