* {
	box-sizing: border-box;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
}

.be-topbar {
	position: relative;
	background: linear-gradient(90deg, #ed763a 0%, #eb7e25 50%, #142ab8 100%);
	padding: 18px 20px;
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.16);
	z-index: 1000;
}

.be-topbar__container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
}

.be-topbar__brand {
	color: #ffffff;
	font-size: 30px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.1;
	white-space: nowrap;
}

.be-topbar__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 22px;
}

.be-topbar__nav a {
	color: rgba(255, 255, 255, 0.94);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.be-topbar__nav a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.be-topbar__toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.16);
	padding: 10px;
	cursor: pointer;
	position: relative;
	z-index: 1002;
}

.be-topbar__toggle span {
	display: block;
	width: 100%;
	height: 3px;
	margin: 5px 0;
	border-radius: 999px;
	background: #ffffff;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

@media (max-width: 1100px) {
	.be-topbar__brand {
		font-size: 24px;
	}

	.be-topbar__nav {
		gap: 16px;
	}

	.be-topbar__nav a {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.be-topbar {
		padding: 16px;
	}

	.be-topbar__container {
		gap: 16px;
	}

	.be-topbar__brand {
		font-size: 22px;
		max-width: calc(100% - 70px);
		white-space: normal;
	}

	.be-topbar__toggle {
		display: block;
		margin-left: auto;
	}

	.be-topbar__nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 14px;
		background: #ffffff;
		border-radius: 18px;
		box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		pointer-events: none;
		transition:
			opacity 0.25s ease,
			transform 0.25s ease,
			visibility 0.25s ease;
		z-index: 1001;
	}

	.be-topbar__nav a {
		width: 100%;
		padding: 14px 12px;
		border-radius: 12px;
		color: #172033;
		font-size: 15px;
	}

	.be-topbar__nav a:hover {
		background: #f3f7ff;
		transform: none;
	}

	.be-topbar.menu-open .be-topbar__nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.be-topbar.menu-open .be-topbar__toggle span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.be-topbar.menu-open .be-topbar__toggle span:nth-child(2) {
		opacity: 0;
	}

	.be-topbar.menu-open .be-topbar__toggle span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}

@media (max-width: 480px) {
	.be-topbar__brand {
		font-size: 19px;
		max-width: 220px;
	}
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f7f9fc;
	color: #111;
}

/* SECTION */
.hero-be {
	padding: 80px 20px;
	background: linear-gradient(135deg, #fff8ee, #fbfbf9);
}

/* CONTAINER */
.hero-be__container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

/* LEFT */
.hero-be__content {
	flex: 1;
}

.hero-be__badge {
	display: inline-block;
	padding: 6px 14px;
	background: #e0e7ff;
	color: #ca7238;
	border-radius: 999px;
	font-size: 14px;
	margin-bottom: 20px;
}

.hero-be__title {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-be__subtitle {
	font-size: 18px;
	color: #555;
	margin-bottom: 30px;
	max-width: 500px;
}

/* FEATURES */
.hero-be__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 30px;
}

.hero-be__feature {
	background: #fff;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* BUTTON */
.hero-be__button {
	display: inline-block;
	padding: 14px 28px;
	background: linear-gradient(90deg, #f163d9, #ec4899);
	color: #fff;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.25s;
}

.hero-be__button:hover {
	transform: translateY(-2px);
}

/* RIGHT */
.hero-be__visual {
	flex: 1;
	position: relative;
}

.hero-be__visual img {
	width: 100%;
	border-radius: 16px;
}

/* STATS */
.hero-be__stats {
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
	background: #fff;
	padding: 18px;
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hero-be__stats div {
	text-align: center;
}

.hero-be__stats strong {
	display: block;
	font-size: 22px;
	margin-bottom: 4px;
}

.hero-be__stats span {
	font-size: 13px;
	color: #777;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
	.hero-be__container {
		flex-direction: column;
		text-align: center;
	}

	.hero-be__subtitle {
		margin: 0 auto 30px;
	}

	.hero-be__features {
		grid-template-columns: 1fr;
	}

	.hero-be__stats {
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 600px) {
	.hero-be__title {
		font-size: 32px;
	}

	.hero-be {
		padding: 50px 16px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f7f8fc;
	color: #1f2937;
}

.be-learning {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fcfbf7 0%, #fff5ee 100%);
}

.be-learning__container {
	max-width: 1200px;
	margin: 0 auto;
}

.be-learning__top {
	max-width: 760px;
	margin-bottom: 48px;
}

.be-learning__label {
	display: inline-block;
	margin-bottom: 18px;
	padding: 7px 14px;
	border-radius: 999px;
	background: #e0f2fe;
	color: #075985;
	font-size: 14px;
	font-weight: 700;
}

.be-learning__title {
	margin: 0 0 18px;
	font-size: 48px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-learning__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	color: #4b5563;
}

.be-learning__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 32px;
	align-items: start;
}

.be-learning__left,
.be-learning__right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.be-learning__benefits {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.be-learning__benefit {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #dbe7ff;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(31, 41, 55, 0.05);
}

.be-learning__icon {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.be-learning__benefit h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.2;
	color: #172033;
}

.be-learning__benefit p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: #5b6472;
}

.be-learning__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: 8px;
	padding: 16px 28px;
	border-radius: 14px;
	background: linear-gradient(90deg, #760f73, #b87f14);
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 12px 24px rgba(20, 184, 166, 0.22);
}

.be-learning__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(20, 184, 166, 0.28);
}

.be-learning__card {
	padding: 28px;
	background: #ffffff;
	border: 1px solid #d9e4f7;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(23, 32, 51, 0.06);
}

.be-learning__card-badge {
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
	font-size: 13px;
	font-weight: 700;
}

.be-learning__card h3 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
	color: #172033;
}

.be-learning__card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5b6472;
}

@media (max-width: 991px) {
	.be-learning__title {
		font-size: 40px;
	}

	.be-learning__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.be-learning {
		padding: 56px 16px;
	}

	.be-learning__top {
		margin-bottom: 32px;
	}

	.be-learning__title {
		font-size: 32px;
	}

	.be-learning__text {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-learning__benefit {
		padding: 18px;
	}

	.be-learning__benefit h3 {
		font-size: 20px;
	}

	.be-learning__card {
		padding: 22px;
	}

	.be-learning__card h3 {
		font-size: 24px;
	}

	.be-learning__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-learning__title {
		font-size: 28px;
	}

	.be-learning__benefit {
		flex-direction: column;
	}

	.be-learning__icon {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
}

.be-cta-learning {
	padding: 72px 20px;
	background: linear-gradient(135deg, #3b2a1e 0%, #6a2e81 55%, #76710f 100%);
}

.be-cta-learning__container {
	max-width: 1180px;
	margin: 0 auto;
}

.be-cta-learning__content {
	padding: 40px 44px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.be-cta-learning__eyebrow {
	display: inline-block;
	margin-bottom: 24px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #dbeafe;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-cta-learning__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 36px;
	align-items: center;
}

.be-cta-learning__title {
	margin: 0;
	font-size: 52px;
	line-height: 1.08;
	font-weight: 700;
	color: #ffffff;
	max-width: 620px;
}

.be-cta-learning__text {
	margin: 0 0 28px;
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	max-width: 520px;
}

.be-cta-learning__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.be-cta-learning__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 26px;
	border-radius: 14px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		color 0.25s ease;
}

.be-cta-learning__button--primary {
	background: #f50bca;
	color: #1f2937;
}

.be-cta-learning__button--primary:hover {
	background: #fb24e5;
	transform: translateY(-2px);
}

.be-cta-learning__button--secondary {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.be-cta-learning__button--secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.be-cta-learning__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.be-cta-learning__title {
		font-size: 42px;
		max-width: 100%;
	}

	.be-cta-learning__text {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.be-cta-learning {
		padding: 52px 16px;
	}

	.be-cta-learning__content {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.be-cta-learning__title {
		font-size: 32px;
	}

	.be-cta-learning__text {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-cta-learning__actions {
		flex-direction: column;
	}

	.be-cta-learning__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-cta-learning__title {
		font-size: 28px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f6f7fb;
	color: #1f2937;
}

.be-team {
	padding: 80px 20px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef6f2 100%);
}

.be-team__container {
	max-width: 1240px;
	margin: 0 auto;
}

.be-team__header {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.be-team__label {
	display: inline-block;
	margin-bottom: 14px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.be-team__title {
	margin: 0 0 16px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #162033;
}

.be-team__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #556070;
}

.be-team__layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: start;
}

.be-team__members {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.be-team__member {
	/* display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px; */
	padding: 22px;
	background: #ffffff;
	border: 1px solid #dbe8df;
	border-radius: 24px;
	box-shadow: 0 12px 28px rgba(22, 32, 51, 0.06);
}

.be-team__member-image {
	height: 100%;
	min-height: 180px;
	border-radius: 18px;
	overflow: hidden;
}

.be-team__member-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.be-team__member-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.be-team__member-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.be-team__member-name {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 700;
	color: #162033;
}

.be-team__member-role {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 700;
	color: #0f766e;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.be-team__member-number {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #f59e0b, #f97316);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

.be-team__member-text {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.75;
	color: #556070;
}

.be-team__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.be-team__tags span {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 13px;
	font-weight: 700;
}

.be-team__stats {
	position: sticky;
	top: 20px;
}

.be-team__stats-card {
	padding: 30px;
	background: #162033;
	border-radius: 26px;
	color: #ffffff;
	box-shadow: 0 16px 36px rgba(22, 32, 51, 0.14);
}

.be-team__stats-title {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
}

.be-team__stats-text {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.82);
}

.be-team__stat-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.be-team__stat-item {
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.be-team__stat-item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 34px;
	line-height: 1;
	font-weight: 700;
	color: #fbbf24;
}

.be-team__stat-item span {
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1100px) {
	.be-team__layout {
		grid-template-columns: 1fr;
	}

	.be-team__stats {
		position: static;
	}
}

@media (max-width: 768px) {
	.be-team {
		padding: 56px 16px;
	}

	.be-team__header {
		margin-bottom: 32px;
	}

	.be-team__title {
		font-size: 34px;
	}

	.be-team__subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-team__member {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.be-team__member-image {
		min-height: 240px;
	}

	.be-team__member-name {
		font-size: 26px;
	}

	.be-team__stats-card {
		padding: 24px;
	}

	.be-team__stats-title {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.be-team__title {
		font-size: 28px;
	}

	.be-team__member-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.be-team__member-number {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
		font-size: 13px;
	}

	.be-team__member-name {
		font-size: 23px;
	}

	.be-team__tags span {
		font-size: 12px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
}

/* SECTION */
.be-advantages {
	padding: 80px 20px;
	background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

/* CONTAINER */
.be-advantages__container {
	max-width: 1200px;
	margin: 0 auto;
}

/* HEADER */
.be-advantages__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.be-advantages__badge {
	display: inline-block;
	padding: 6px 14px;
	background: #dbeafe;
	color: #1d4ed8;
	border-radius: 999px;
	font-size: 14px;
	margin-bottom: 18px;
}

.be-advantages__title {
	font-size: 44px;
	margin-bottom: 16px;
	color: #0f172a;
}

.be-advantages__subtitle {
	font-size: 18px;
	color: #64748b;
	line-height: 1.6;
}

/* GRID */
.be-advantages__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

/* CARD */
.be-advantages__card {
	background: #ffffff;
	padding: 26px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
}

.be-advantages__card:hover {
	transform: translateY(-6px);
}

/* HIGHLIGHT */
.be-advantages__card.highlight {
	background: linear-gradient(135deg, #6366f1, #22c55e);
	color: #fff;
}

/* ICON */
.be-advantages__icon {
	font-size: 26px;
	margin-bottom: 14px;
}

/* TEXT */
.be-advantages__card h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.be-advantages__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: inherit;
}

/* 📱 TABLET */
@media (max-width: 900px) {
	.be-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 📱 MOBILE */
@media (max-width: 600px) {
	.be-advantages__grid {
		grid-template-columns: 1fr;
	}

	.be-advantages__title {
		font-size: 30px;
	}

	.be-advantages {
		padding: 50px 16px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-contact {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffdf8 0%, #f3f7ff 100%);
}

.be-contact__container {
	max-width: 1220px;
	margin: 0 auto;
}

.be-contact__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.be-contact__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #ede9fe;
	color: #6d28d9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-contact__title {
	margin: 0 0 16px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-contact__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
}

.be-contact__layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 30px;
	align-items: start;
}

.be-contact__info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.be-contact__card {
	padding: 24px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(23, 32, 51, 0.05);
}

.be-contact__icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #f59e0b, #f97316);
	font-size: 22px;
}

.be-contact__card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
	color: #172033;
}

.be-contact__card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5b6472;
}

.be-contact__form-wrap {
	padding: 30px;
	background: #ffffff;
	border: 1px solid #dbeafe;
	border-radius: 26px;
	box-shadow: 0 16px 34px rgba(30, 64, 175, 0.08);
}

.be-contact__form-title {
	margin: 0 0 24px;
	font-size: 32px;
	line-height: 1.2;
	color: #172033;
}

.be-contact__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.be-contact__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.be-contact__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.be-contact__field label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #475569;
}

.be-contact__field input,
.be-contact__field textarea {
	width: 100%;
	padding: 16px 18px;
	border: 1px solid #d7deea;
	border-radius: 14px;
	background: #f8fbff;
	font-size: 15px;
	color: #172033;
	outline: none;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease;
}

.be-contact__field input:focus,
.be-contact__field textarea:focus {
	border-color: #8b5cf6;
	box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.be-contact__field textarea {
	resize: vertical;
	min-height: 150px;
}

.be-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 28px;
	border: none;
	border-radius: 14px;
	background: linear-gradient(90deg, #2563eb, #7c3aed);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 14px 28px rgba(124, 58, 237, 0.18);
}

.be-contact__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 32px rgba(124, 58, 237, 0.24);
}

@media (max-width: 1100px) {
	.be-contact__layout {
		grid-template-columns: 1fr;
	}

	.be-contact__info {
		order: 2;
	}

	.be-contact__form-wrap {
		order: 1;
	}
}

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

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

	.be-contact__subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-contact__info {
		grid-template-columns: 1fr;
	}

	.be-contact__row {
		grid-template-columns: 1fr;
	}

	.be-contact__form-wrap {
		padding: 22px;
	}

	.be-contact__form-title {
		font-size: 26px;
	}

	.be-contact__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-contact__title {
		font-size: 28px;
	}

	.be-contact__card h3 {
		font-size: 20px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
}

/* SECTION */
.be-growth {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fff7ed, #f0f9ff);
}

/* CONTAINER */
.be-growth__container {
	max-width: 1100px;
	margin: 0 auto;
}

/* BOX */
.be-growth__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	background: #ffffff;
	padding: 60px;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* LEFT */
.be-growth__left {
	max-width: 520px;
}

.be-growth__label {
	display: inline-block;
	margin-bottom: 18px;
	padding: 6px 14px;
	background: #fde68a;
	color: #92400e;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.be-growth__title {
	font-size: 44px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #0f172a;
}

.be-growth__text {
	font-size: 18px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* BUTTON */
.be-growth__button {
	display: inline-block;
	padding: 14px 28px;
	background: linear-gradient(90deg, #f97316, #ef4444);
	color: #fff;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}

.be-growth__button:hover {
	transform: translateY(-2px);
}

/* RIGHT DECOR */
.be-growth__right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.be-growth__accent {
	position: relative;
	width: 200px;
	height: 200px;
}

.be-growth__circle {
	position: absolute;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	border-radius: 50%;
	filter: blur(40px);
}

.be-growth__circle.small {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #f97316, #ec4899);
	top: 40px;
	left: 40px;
}

/* 📱 TABLET */
@media (max-width: 900px) {
	.be-growth__box {
		flex-direction: column;
		text-align: center;
		padding: 40px;
	}

	.be-growth__left {
		max-width: 100%;
	}
}

/* 📱 MOBILE */
@media (max-width: 600px) {
	.be-growth {
		padding: 50px 16px;
	}

	.be-growth__title {
		font-size: 30px;
	}

	.be-growth__text {
		font-size: 16px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
}

/* FOOTER */
.be-footer {
	background: linear-gradient(135deg, #220f2a, #3b2b1e);
	color: #e2e8f0;
	padding: 60px 20px 30px;
}

/* CONTAINER */
.be-footer__container {
	max-width: 1200px;
	margin: 0 auto;
}

/* TOP */
.be-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

/* BRAND */
.be-footer__brand {
	display: flex;
	gap: 16px;
}

.be-footer__logo {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fff;
}

.be-footer__brand h3 {
	margin: 0 0 10px;
}

.be-footer__brand p {
	margin: 0;
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.6;
}

/* CONTACT */
.be-footer__contact h4,
.be-footer__nav h4 {
	margin-bottom: 12px;
	color: #f1f5f9;
}

.be-footer__contact p {
	margin: 6px 0;
	font-size: 14px;
	color: #cbd5f5;
}

/* NAV */
.be-footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.be-footer__nav li {
	margin-bottom: 8px;
}

.be-footer__nav a {
	color: #cbd5f5;
	text-decoration: none;
	font-size: 14px;
	transition: 0.2s;
}

.be-footer__nav a:hover {
	color: #fff;
}

/* BOTTOM */
.be-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.be-footer__bottom p {
	margin: 0;
	font-size: 13px;
	color: #94a3b8;
}

.be-footer__legal {
	max-width: 800px;
	line-height: 1.6;
}

/* 📱 TABLET */
@media (max-width: 900px) {
	.be-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

/* 📱 MOBILE */
@media (max-width: 600px) {
	.be-footer__top {
		grid-template-columns: 1fr;
	}

	.be-footer {
		padding: 40px 16px;
	}

	.be-footer__brand {
		flex-direction: column;
	}
}

.be-cookie {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

.be-cookie.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.be-cookie__content {
	width: 100%;
	max-width: 1120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid #dbe7ff;
	box-shadow: 0 18px 45px rgba(23, 32, 51, 0.14);
}

.be-cookie__text {
	flex: 1;
}

.be-cookie__title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	color: #172033;
}

.be-cookie__description {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #5b6472;
	max-width: 760px;
}

.be-cookie__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.be-cookie__button {
	min-width: 130px;
	padding: 14px 20px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease;
}

.be-cookie__button:hover {
	transform: translateY(-1px);
}

.be-cookie__button--primary {
	border: none;
	background: linear-gradient(90deg, #2563eb, #7c3aed);
	color: #ffffff;
}

.be-cookie__button--secondary {
	border: 1px solid #cfd8ea;
	background: #f8fbff;
	color: #172033;
}

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

	.be-cookie__content {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 18px;
	}

	.be-cookie__actions {
		width: 100%;
		flex-direction: column;
	}

	.be-cookie__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-cookie__title {
		font-size: 18px;
	}

	.be-cookie__description {
		font-size: 14px;
		line-height: 1.6;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-story {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffef8 0%, #eef6ff 100%);
}

.be-story__container {
	max-width: 1240px;
	margin: 0 auto;
}

.be-story__intro {
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 54px;
}

.be-story__label,
.be-story__small-label {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: #ede9fe;
	color: #6d28d9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-story__label {
	margin-bottom: 18px;
}

.be-story__title {
	margin: 0;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
	max-width: 720px;
}

.be-story__description {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
	max-width: 560px;
}

.be-story__timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}

.be-story__step {
	position: relative;
	padding: 28px 22px 24px;
	background: #ffffff;
	border: 1px solid #e4e9f3;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(23, 32, 51, 0.05);
}

.be-story__step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 22px;
	right: 22px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2563eb, #14b8a6);
}

.be-story__year {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 10px 14px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.be-story__step-title {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 700;
	color: #172033;
}

.be-story__step-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: #5b6472;
}

.be-story__bottom {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 30px;
	align-items: start;
}

.be-story__cta {
	padding: 34px;
	background: linear-gradient(135deg, #172033 0%, #1e3a8a 100%);
	border-radius: 26px;
	box-shadow: 0 18px 40px rgba(23, 32, 51, 0.14);
	color: #ffffff;
}

.be-story__cta .be-story__small-label {
	margin-bottom: 18px;
	background: rgba(255, 255, 255, 0.12);
	color: #dbeafe;
}

.be-story__cta-title {
	margin: 0 0 18px;
	font-size: 38px;
	line-height: 1.15;
	font-weight: 700;
}

.be-story__cta-text {
	margin: 0 0 28px;
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.84);
	max-width: 560px;
}

.be-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 26px;
	border-radius: 14px;
	background: linear-gradient(90deg, #f59e0b, #f97316);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22);
}

.be-story__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
}

.be-story__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.be-story__feature-card {
	padding: 26px 22px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	box-shadow: 0 12px 28px rgba(23, 32, 51, 0.05);
}

.be-story__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #dcfce7, #dbeafe);
	font-size: 24px;
}

.be-story__feature-card h4 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.2;
	color: #172033;
}

.be-story__feature-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #5b6472;
}

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

	.be-story__bottom {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.be-story {
		padding: 56px 16px;
	}

	.be-story__intro {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 34px;
	}

	.be-story__title {
		font-size: 34px;
	}

	.be-story__description {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-story__timeline {
		grid-template-columns: 1fr;
		margin-bottom: 34px;
	}

	.be-story__step {
		padding: 24px 18px 20px;
	}

	.be-story__step-title {
		font-size: 21px;
	}

	.be-story__cta {
		padding: 24px 22px;
	}

	.be-story__cta-title {
		font-size: 29px;
	}

	.be-story__cta-text {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-story__features {
		grid-template-columns: 1fr;
	}

	.be-story__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-story__title {
		font-size: 28px;
	}

	.be-story__year {
		font-size: 18px;
		min-width: 68px;
	}

	.be-story__feature-card h4 {
		font-size: 21px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f7f8fc;
	color: #1f2937;
}

.be-service-policy {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffefb 0%, #eef4ff 100%);
}

.be-service-policy__container {
	max-width: 1220px;
	margin: 0 auto;
}

.be-service-policy__hero {
	max-width: 860px;
	margin-bottom: 42px;
}

.be-service-policy__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-service-policy__title {
	margin: 0 0 18px;
	font-size: 48px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-service-policy__intro {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
	max-width: 760px;
}

.be-service-policy__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 30px;
	align-items: start;
}

.be-service-policy__main {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.be-service-policy__block {
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 14px 30px rgba(23, 32, 51, 0.05);
}

.be-service-policy__block h2 {
	margin: 0 0 16px;
	font-size: 30px;
	line-height: 1.2;
	color: #172033;
}

.be-service-policy__block p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.8;
	color: #5b6472;
}

.be-service-policy__block p:last-child {
	margin-bottom: 0;
}

.be-service-policy__side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.be-service-policy__card {
	padding: 26px;
	background: linear-gradient(135deg, #172033 0%, #1e3a8a 100%);
	border-radius: 24px;
	box-shadow: 0 16px 34px rgba(23, 32, 51, 0.12);
	color: #ffffff;
}

.be-service-policy__card h3 {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
}

.be-service-policy__card p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
}

.be-service-policy__card p:last-child {
	margin-bottom: 0;
}

.be-service-policy__card ul {
	margin: 0;
	padding-left: 20px;
}

.be-service-policy__card li {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.be-service-policy__card li:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.be-service-policy__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.be-service-policy {
		padding: 56px 16px;
	}

	.be-service-policy__title {
		font-size: 34px;
	}

	.be-service-policy__intro {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-service-policy__block,
	.be-service-policy__card {
		padding: 22px;
		border-radius: 20px;
	}

	.be-service-policy__block h2 {
		font-size: 24px;
	}

	.be-service-policy__card h3 {
		font-size: 21px;
	}
}

@media (max-width: 480px) {
	.be-service-policy__title {
		font-size: 28px;
	}

	.be-service-policy__block h2 {
		font-size: 22px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-plans {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffef8 0%, #eef6ff 100%);
}

.be-plans__container {
	max-width: 1240px;
	margin: 0 auto;
}

.be-plans__header {
	max-width: 780px;
	margin: 0 auto 48px;
	text-align: center;
}

.be-plans__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-plans__title {
	margin: 0 0 16px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-plans__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
}

.be-plans__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

.be-plans__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.be-plans__card--featured {
	transform: translateY(-10px);
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.14);
	border-color: #c7d9ff;
}

.be-plans__badge {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	padding: 7px 12px;
	border-radius: 999px;
	background: #1d4ed8;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.be-plans__visual {
	height: 210px;
	display: flex;
	align-items: flex-end;
	padding: 24px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
}

.be-plans__visual span {
	position: relative;
	z-index: 1;
}

.be-plans__visual::before,
.be-plans__visual::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	opacity: 0.22;
}

.be-plans__visual::before {
	width: 180px;
	height: 180px;
	top: -40px;
	right: -20px;
	background: rgba(255, 255, 255, 0.35);
}

.be-plans__visual::after {
	width: 110px;
	height: 110px;
	bottom: -20px;
	left: -10px;
	background: rgba(255, 255, 255, 0.22);
}

.be-plans__visual--design {
	background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.be-plans__visual--web {
	background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.be-plans__visual--marketing {
	background: linear-gradient(135deg, #f97316, #f59e0b);
}

.be-plans__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 26px 24px 24px;
}

.be-plans__content h3 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.2;
	color: #172033;
}

.be-plans__content p {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 1.75;
	color: #5b6472;
}

.be-plans__bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.be-plans__price {
	font-size: 30px;
	line-height: 1.1;
	font-weight: 700;
	color: #1d4ed8;
}

.be-plans__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 22px;
	border-radius: 14px;
	background: #172033;
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.be-plans__button:hover {
	transform: translateY(-2px);
	background: #0f172a;
	box-shadow: 0 14px 28px rgba(23, 32, 51, 0.18);
}

@media (max-width: 1100px) {
	.be-plans__grid {
		grid-template-columns: 1fr;
	}

	.be-plans__card--featured {
		transform: none;
	}
}

@media (max-width: 768px) {
	.be-plans {
		padding: 56px 16px;
	}

	.be-plans__header {
		margin-bottom: 34px;
	}

	.be-plans__title {
		font-size: 34px;
	}

	.be-plans__subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-plans__visual {
		height: 180px;
		padding: 18px;
		font-size: 16px;
	}

	.be-plans__content {
		padding: 22px 18px 18px;
	}

	.be-plans__content h3 {
		font-size: 24px;
	}

	.be-plans__price {
		font-size: 26px;
	}

	.be-plans__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-plans__title {
		font-size: 28px;
	}

	.be-plans__content h3 {
		font-size: 22px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-process {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffefb 0%, #eef6ff 100%);
}

.be-process__container {
	max-width: 1180px;
	margin: 0 auto;
}

.be-process__header {
	max-width: 760px;
	margin: 0 auto 54px;
	text-align: center;
}

.be-process__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #ede9fe;
	color: #6d28d9;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-process__title {
	margin: 0 0 16px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-process__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
}

.be-process__timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.be-process__timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: linear-gradient(180deg, #c7d2fe 0%, #93c5fd 100%);
}

.be-process__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.be-process__item--reverse {
	justify-content: flex-end;
}

.be-process__marker {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ffffff;
	border: 4px solid #dbeafe;
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.12);
	font-size: 16px;
	font-weight: 700;
	color: #172033;
}

.be-process__card {
	width: calc(50% - 56px);
	padding: 30px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.be-process__card--violet {
	border-top: 5px solid #8b5cf6;
}

.be-process__card--orange {
	border-top: 5px solid #f97316;
}

.be-process__card--blue {
	border-top: 5px solid #2563eb;
}

.be-process__card--green {
	border-top: 5px solid #10b981;
}

.be-process__card h3 {
	margin: 0 0 14px;
	font-size: 28px;
	line-height: 1.2;
	color: #172033;
}

.be-process__card p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.75;
	color: #5b6472;
}

.be-process__card ul {
	margin: 0 0 22px;
	padding-left: 20px;
}

.be-process__card li {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.65;
	color: #475569;
}

.be-process__card li:last-child {
	margin-bottom: 0;
}

.be-process__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 12px;
	background: #172033;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

.be-process__button:hover {
	transform: translateY(-2px);
	background: #0f172a;
	box-shadow: 0 12px 24px rgba(23, 32, 51, 0.16);
}

@media (max-width: 900px) {
	.be-process__timeline::before {
		left: 24px;
		transform: none;
	}

	.be-process__item,
	.be-process__item--reverse {
		justify-content: flex-start;
		padding-left: 68px;
	}

	.be-process__marker {
		left: 24px;
		transform: translate(-50%, -50%);
		width: 54px;
		height: 54px;
		font-size: 14px;
	}

	.be-process__card {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.be-process {
		padding: 56px 16px;
	}

	.be-process__header {
		margin-bottom: 34px;
	}

	.be-process__title {
		font-size: 34px;
	}

	.be-process__subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-process__timeline {
		gap: 20px;
	}

	.be-process__item,
	.be-process__item--reverse {
		padding-left: 58px;
	}

	.be-process__timeline::before {
		left: 20px;
	}

	.be-process__marker {
		left: 20px;
		width: 46px;
		height: 46px;
		font-size: 13px;
		border-width: 3px;
	}

	.be-process__card {
		padding: 22px 18px;
		border-radius: 20px;
	}

	.be-process__card h3 {
		font-size: 23px;
	}
}

@media (max-width: 480px) {
	.be-process__title {
		font-size: 28px;
	}

	.be-process__card h3 {
		font-size: 21px;
	}

	.be-process__card p,
	.be-process__card li {
		font-size: 14px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-final-cta {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffef9 0%, #eef6ff 100%);
}

.be-final-cta__container {
	max-width: 1180px;
	margin: 0 auto;
}

.be-final-cta__content {
	padding: 42px 46px;
	border-radius: 28px;
	background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
	border: 1px solid #dde7f5;
	box-shadow: 0 18px 38px rgba(23, 32, 51, 0.07);
}

.be-final-cta__label {
	display: inline-block;
	margin-bottom: 22px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-final-cta__layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 34px;
	align-items: center;
}

.be-final-cta__title {
	margin: 0;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
	max-width: 620px;
}

.be-final-cta__text {
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
	max-width: 480px;
}

.be-final-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 26px;
	border-radius: 14px;
	background: linear-gradient(90deg, #7c3aed, #2563eb);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.be-final-cta__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

@media (max-width: 900px) {
	.be-final-cta__layout {
		grid-template-columns: 1fr;
	}

	.be-final-cta__title,
	.be-final-cta__text {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.be-final-cta {
		padding: 56px 16px;
	}

	.be-final-cta__content {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.be-final-cta__title {
		font-size: 34px;
	}

	.be-final-cta__text {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-final-cta__button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.be-final-cta__title {
		font-size: 28px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-faq {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffefb 0%, #eef5ff 100%);
}

.be-faq__container {
	max-width: 1200px;
	margin: 0 auto;
}

.be-faq__intro {
	max-width: 780px;
	margin: 0 auto 42px;
	text-align: center;
}

.be-faq__badge {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-faq__title {
	margin: 0 0 16px;
	font-size: 46px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-faq__subtitle {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
}

/* .be-faq__layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 28px;
	align-items: start;
} */

.be-faq__side-card {
	padding: 28px;
	border-radius: 24px;
	background: linear-gradient(135deg, #172033 0%, #1e3a8a 100%);
	color: #ffffff;
	box-shadow: 0 18px 38px rgba(23, 32, 51, 0.14);
}

.be-faq__side-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f59e0b, #f97316);
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
}

.be-faq__side-card h3 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.2;
}

.be-faq__side-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.84);
}

.be-faq__accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.be-faq__item {
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.05);
	overflow: hidden;
}

.be-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 24px;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
	color: #172033;
}

.be-faq__item.is-open .be-faq__question {
	background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
	color: #ffffff;
}

.be-faq__arrow {
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.be-faq__arrow::before,
.be-faq__arrow::after {
	content: '';
	position: absolute;
	top: 8px;
	width: 11px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease;
}

.be-faq__arrow::before {
	left: -1px;
	transform: rotate(45deg);
}

.be-faq__arrow::after {
	right: -1px;
	transform: rotate(-45deg);
}

.be-faq__item.is-open .be-faq__arrow::before {
	transform: rotate(-45deg);
}

.be-faq__item.is-open .be-faq__arrow::after {
	transform: rotate(45deg);
}

.be-faq__answer {
	display: none;
	padding: 0 24px 22px;
	background: #ffffff;
}

.be-faq__item.is-open .be-faq__answer {
	display: block;
}

.be-faq__answer p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #5b6472;
}

@media (max-width: 992px) {
	.be-faq__layout {
		grid-template-columns: 1fr;
	}

	.be-faq__side-card {
		order: 2;
	}

	.be-faq__accordion {
		order: 1;
	}
}

@media (max-width: 768px) {
	.be-faq {
		padding: 56px 16px;
	}

	.be-faq__intro {
		margin-bottom: 30px;
	}

	.be-faq__title {
		font-size: 34px;
	}

	.be-faq__subtitle {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-faq__side-card {
		padding: 22px;
		border-radius: 20px;
	}

	.be-faq__side-card h3 {
		font-size: 24px;
	}

	.be-faq__question {
		padding: 20px 18px;
		font-size: 19px;
	}

	.be-faq__answer {
		padding: 0 18px 18px;
	}

	.be-faq__answer p {
		font-size: 15px;
		line-height: 1.7;
	}
}

@media (max-width: 480px) {
	.be-faq__title {
		font-size: 28px;
	}

	.be-faq__question {
		font-size: 17px;
	}
}

.be-contact__success {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 12px;
	background: #dcfce7;
	color: #166534;
	font-size: 14px;
	display: none;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-terms-service {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffef8 0%, #eef5ff 100%);
}

.be-terms-service__container {
	max-width: 1220px;
	margin: 0 auto;
}

.be-terms-service__hero {
	max-width: 860px;
	margin-bottom: 42px;
}

.be-terms-service__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fef3c7;
	color: #92400e;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-terms-service__title {
	margin: 0 0 18px;
	font-size: 48px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-terms-service__intro {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
	max-width: 760px;
}

.be-terms-service__layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 30px;
	align-items: start;
}

.be-terms-service__content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.be-terms-service__block {
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 14px 30px rgba(23, 32, 51, 0.05);
}

.be-terms-service__block h2 {
	margin: 0 0 16px;
	font-size: 30px;
	line-height: 1.2;
	color: #172033;
}

.be-terms-service__block p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.8;
	color: #5b6472;
}

.be-terms-service__block p:last-child {
	margin-bottom: 0;
}

.be-terms-service__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.be-terms-service__card {
	padding: 26px;
	background: linear-gradient(135deg, #172033 0%, #0f766e 100%);
	border-radius: 24px;
	box-shadow: 0 16px 34px rgba(23, 32, 51, 0.12);
	color: #ffffff;
}

.be-terms-service__card h3 {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
}

.be-terms-service__card p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.be-terms-service__card p:last-child {
	margin-bottom: 0;
}

.be-terms-service__card ul {
	margin: 0;
	padding-left: 20px;
}

.be-terms-service__card li {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.be-terms-service__card li:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.be-terms-service__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.be-terms-service {
		padding: 56px 16px;
	}

	.be-terms-service__title {
		font-size: 34px;
	}

	.be-terms-service__intro {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-terms-service__block,
	.be-terms-service__card {
		padding: 22px;
		border-radius: 20px;
	}

	.be-terms-service__block h2 {
		font-size: 24px;
	}

	.be-terms-service__card h3 {
		font-size: 21px;
	}
}

@media (max-width: 480px) {
	.be-terms-service__title {
		font-size: 28px;
	}

	.be-terms-service__block h2 {
		font-size: 22px;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f8fafc;
	color: #1f2937;
}

.be-privacy-policy {
	padding: 80px 20px;
	background: linear-gradient(180deg, #fffefb 0%, #edf7f4 100%);
}

.be-privacy-policy__container {
	max-width: 1220px;
	margin: 0 auto;
}

.be-privacy-policy__hero {
	max-width: 860px;
	margin-bottom: 42px;
}

.be-privacy-policy__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #d1fae5;
	color: #065f46;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.be-privacy-policy__title {
	margin: 0 0 16px;
	font-size: 48px;
	line-height: 1.12;
	font-weight: 700;
	color: #172033;
}

.be-privacy-policy__date {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 700;
	color: #0f766e;
}

.be-privacy-policy__intro {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #5b6472;
	max-width: 760px;
}

.be-privacy-policy__layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 30px;
	align-items: start;
}

.be-privacy-policy__content {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.be-privacy-policy__block {
	padding: 30px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 14px 30px rgba(23, 32, 51, 0.05);
}

.be-privacy-policy__block h2 {
	margin: 0 0 16px;
	font-size: 30px;
	line-height: 1.2;
	color: #172033;
}

.be-privacy-policy__block p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #5b6472;
}

.be-privacy-policy__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.be-privacy-policy__card {
	padding: 26px;
	background: linear-gradient(135deg, #172033 0%, #0f766e 100%);
	border-radius: 24px;
	box-shadow: 0 16px 34px rgba(23, 32, 51, 0.12);
	color: #ffffff;
}

.be-privacy-policy__card h3 {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.2;
}

.be-privacy-policy__card p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.be-privacy-policy__card p:last-child {
	margin-bottom: 0;
}

.be-privacy-policy__card ul {
	margin: 0;
	padding-left: 20px;
}

.be-privacy-policy__card li {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.be-privacy-policy__card li:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.be-privacy-policy__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.be-privacy-policy {
		padding: 56px 16px;
	}

	.be-privacy-policy__title {
		font-size: 34px;
	}

	.be-privacy-policy__intro {
		font-size: 16px;
		line-height: 1.65;
	}

	.be-privacy-policy__block,
	.be-privacy-policy__card {
		padding: 22px;
		border-radius: 20px;
	}

	.be-privacy-policy__block h2 {
		font-size: 24px;
	}

	.be-privacy-policy__card h3 {
		font-size: 21px;
	}
}

@media (max-width: 480px) {
	.be-privacy-policy__title {
		font-size: 28px;
	}

	.be-privacy-policy__block h2 {
		font-size: 22px;
	}
}
