* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f5f7fb;
	color: #18202b;
}

a {
	text-decoration: none;
}

.be-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(35, 62, 24, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.be-header__wrap,
.be-hero__container,
.be-pathways__container,
.be-banner__container {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.be-header__wrap {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.be-header__logo {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.be-header__nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.be-header__nav a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	transition: 0.3s ease;
}

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

.be-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.be-header__cta {
	padding: 12px 18px;
	border-radius: 999px;
	background: #e7f2df;
	color: #0b1220;
	font-size: 14px;
	font-weight: 700;
}

.be-header__burger {
	display: none;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	padding: 0;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

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

.be-mobile {
	position: fixed;
	inset: 0;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.3s ease;
}

.be-mobile.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.be-mobile__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 18, 10, 0.6);
}

.be-mobile__window {
	position: absolute;
	top: 0;
	right: 0;
	width: min(360px, 100%);
	height: 100%;
	background: #f9fbff;
	padding: 20px;
	box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
}

.be-mobile__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.be-mobile__brand {
	font-size: 18px;
	font-weight: 700;
	color: #101827;
}

.be-mobile__close {
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 12px;
	background: #e8edf5;
	color: #101827;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.be-mobile__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	gap: 24px;
}

.be-mobile__nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.be-mobile__nav a {
	padding: 14px 16px;
	border-radius: 14px;
	background: #eef3fa;
	color: #162133;
	font-size: 15px;
	font-weight: 600;
}

.be-mobile__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 18px;
	border-radius: 14px;
	background: #101827;
	color: #ffffff;
	font-weight: 700;
}

.be-hero {
	padding: 56px 0 28px;
	background: linear-gradient(180deg, #f0f9ee 0%, #f8fff9 100%);
}

/* .be-hero__container {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 36px;
} */

.be-hero__content {
	order: 1;
}

.be-hero__visual {
	order: 2;
	min-height: 480px;
	border-radius: 28px;
	padding: 24px;
	background: linear-gradient(135deg, #0f2617 0%, #213f1d 100%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.be-hero__visual::before,
.be-hero__visual::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(10px);
}

.be-hero__visual::before {
	width: 220px;
	height: 220px;
	top: -40px;
	right: -50px;
	background: rgba(222, 233, 247, 0.14);
}

.be-hero__visual::after {
	width: 160px;
	height: 160px;
	left: -30px;
	bottom: -30px;
	background: rgba(255, 255, 255, 0.08);
}

.be-hero__panel {
	position: relative;
	z-index: 1;
	border-radius: 22px;
	padding: 24px;
}

.be-hero__panel--dark {
	max-width: 280px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.be-hero__panel--dark span {
	display: block;
	font-size: 13px;
	margin-bottom: 10px;
	opacity: 0.72;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.be-hero__panel--dark strong {
	font-size: 24px;
	line-height: 1.3;
}

.be-hero__panel--light {
	align-self: flex-end;
	min-width: 260px;
	background: #edf3fa;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.be-hero__panel--light b {
	display: block;
	font-size: 28px;
	color: #0f2614;
	margin-bottom: 6px;
}

.be-hero__panel--light p {
	margin: 0;
	font-size: 13px;
	color: #4d5b70;
}

.be-hero__tag,
.be-pathways__label,
.be-banner__eyebrow {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: #dce6f2;
	color: #223149;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.be-hero__title,
.be-pathways__title,
.be-banner__title {
	margin: 0;
	line-height: 1.1;
	color: #12260f;
}

.be-hero__title {
	font-size: clamp(34px, 5vw, 58px);
}

.be-hero__text,
.be-pathways__text,
.be-banner__text {
	font-size: 17px;
	line-height: 1.7;
	color: #516074;
}

.be-hero__text {
	margin: 22px 0 0;
}

.be-hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.be-hero__points span {
	padding: 12px 16px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid #dde6f0;
	font-size: 14px;
	font-weight: 600;
	color: #1d2a3f;
}

.be-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.be-hero__button,
.be-pathways__button,
.be-banner__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 22px;
	border-radius: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.be-hero__button--primary,
.be-pathways__button,
.be-banner__link--dark {
	background: #102711;
	color: #ffffff;
}

.be-hero__button--secondary,
.be-banner__link--light {
	background: #ffffff;
	color: #101827;
	border: 1px solid #d7e0eb;
}

.be-pathways {
	padding: 34px 0 34px;
}

.be-pathways__intro {
	max-width: 760px;
	margin-bottom: 34px;
}

.be-pathways__title {
	font-size: clamp(30px, 4vw, 48px);
	margin-bottom: 16px;
}

.be-pathways__text {
	margin: 0;
}

.be-pathways__layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 26px;
	align-items: start;
}

.be-pathways__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.be-pathways__card {
	background: #ffffff;
	border: 1px solid #e1e8f1;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 12px 35px rgba(20, 54, 26, 0.06);
}

.be-pathways__number {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #112710;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 18px;
}

.be-pathways__card h3,
.be-pathways__module h3 {
	margin: 0 0 10px;
	font-size: 22px;
	color: #122b11;
}

.be-pathways__card p,
.be-pathways__module p {
	margin: 0;
	line-height: 1.7;
	color: #556578;
	font-size: 15px;
}

.be-pathways__side {
	display: grid;
	gap: 18px;
}

.be-pathways__module {
	background: linear-gradient(180deg, #183624 0%, #162710 100%);
	border-radius: 24px;
	padding: 24px;
	color: #ffffff;
}

.be-pathways__module span {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.72;
	margin-bottom: 12px;
}

.be-pathways__module h3 {
	color: #ffffff;
}

.be-pathways__module p {
	color: rgba(255, 255, 255, 0.78);
}

.be-banner {
	padding: 34px 0 70px;
}

.be-banner__box {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 28px;
	background: linear-gradient(135deg, #dfe8f4 0%, #fdfefe 100%);
	border: 1px solid #d8e2ee;
	border-radius: 30px;
	padding: 34px;
}

.be-banner__title {
	font-size: clamp(28px, 4vw, 46px);
}

.be-banner__text {
	margin: 0 0 22px;
}

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

@media (max-width: 991px) {
	.be-header__nav--desktop,
	.be-header__cta--desktop {
		display: none;
	}

	.be-header__burger {
		display: inline-flex;
	}

	.be-pathways__layout,
	.be-banner__box {
		grid-template-columns: 1fr;
	}

	.be-hero__content {
		order: 2;
	}

	.be-hero__visual {
		order: 1;
		min-height: 360px;
	}
}

@media (max-width: 767px) {
	.be-header__wrap,
	.be-hero__container,
	.be-pathways__container,
	.be-banner__container {
		width: min(100% - 24px, 1200px);
	}

	.be-hero {
		padding-top: 28px;
	}

	.be-hero__visual,
	.be-banner__box,
	.be-pathways__card,
	.be-pathways__module {
		border-radius: 22px;
	}

	.be-hero__panel--light {
		min-width: auto;
		width: 100%;
	}

	.be-hero__buttons,
	.be-banner__actions {
		flex-direction: column;
	}

	.be-hero__button,
	.be-pathways__button,
	.be-banner__link {
		width: 100%;
	}

	.be-banner {
		padding-bottom: 44px;
	}
}

nl-benefits,
.nl-contact-block {
	padding: 72px 0;
}

.nl-team-section {
	background: #f4f7fb;
}

.nl-benefits {
	background: #ffffff;
	padding: 60px 0;
}

.nl-contact-block {
	background: linear-gradient(180deg, #edf8ee 0%, #fbfff8 100%);
}

.nl-team-section__container,
.nl-benefits__container,
.nl-contact-block__container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.nl-team-section__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
}

.nl-team-section__intro {
	background: #15240f;
	color: #ffffff;
	border-radius: 24px;
	padding: 32px;
	position: sticky;
	top: 20px;
}

.nl-team-section__eyebrow,
.nl-benefits__label,
.nl-contact-block__tag {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.nl-team-section__eyebrow,
.nl-contact-block__tag {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nl-benefits__label {
	background: #dff3e4;
	color: #1d401b;
}

.nl-team-section__title,
.nl-benefits__title,
.nl-contact-block__title {
	margin: 18px 0 16px;
	line-height: 1.15;
	font-size: clamp(30px, 4vw, 48px);
}

.nl-team-section__text,
.nl-benefits__subtitle,
.nl-contact-block__text,
.nl-team-card__desc,
.nl-benefits__content p,
.nl-contact-block__detail p {
	margin: 0;
	line-height: 1.7;
	font-size: 16px;
}

.nl-team-section__text,
.nl-contact-block__text {
	color: rgba(255, 255, 255, 0.78);
}

.nl-team-section__facts {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.nl-team-section__fact {
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.nl-team-section__fact strong {
	display: block;
	font-size: 30px;
	margin-bottom: 6px;
}

.nl-team-section__fact span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
}

.nl-team-section__list {
	display: grid;
	gap: 20px;
}

.nl-team-card {
	background: #ffffff;
	border: 1px solid #dbe4ef;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 14px 34px rgba(20, 46, 17, 0.06);
}

.nl-team-card--dark {
	background: #24351a;
	border-color: #20351a;
	color: #ffffff;
}

.nl-team-card__top {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-bottom: 18px;
}

.nl-team-card__image {
	width: 96px;
	height: 96px;
	border-radius: 22px;
	overflow: hidden;
	flex: 0 0 96px;
	background: #e9eef5;
}

.nl-team-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nl-team-card__head h3 {
	margin: 6px 0 6px;
	font-size: 24px;
	line-height: 1.2;
}

.nl-team-card__role {
	margin: 0;
	font-size: 15px;
	color: #627289;
}

.nl-team-card--dark .nl-team-card__role,
.nl-team-card--dark .nl-team-card__desc {
	color: rgba(255, 255, 255, 0.78);
}

.nl-team-card__index {
	display: inline-flex;
	padding: 7px 12px;
	border-radius: 999px;
	background: #e9f0f7;
	color: #132034;
	font-size: 12px;
	font-weight: 700;
}

.nl-team-card--dark .nl-team-card__index {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nl-team-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.nl-team-card__tags span {
	padding: 10px 14px;
	border-radius: 999px;
	background: #eef3f8;
	color: #224b2b;
	font-size: 13px;
	font-weight: 600;
}

.nl-team-card--dark .nl-team-card__tags span {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.nl-benefits__header {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.nl-benefits__title {
	color: #0f1724;
}

.nl-benefits__subtitle {
	color: #607086;
}

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

.nl-benefits__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 22px;
	border-radius: 22px;
	background: #f6f9fc;
	border: 1px solid #dde6f0;
}

.nl-benefits__symbol {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: #263413;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex: 0 0 54px;
}

.nl-benefits__content h3 {
	margin: 0 0 8px;
	font-size: 22px;
	color: #101a2a;
}

.nl-benefits__content p {
	color: #5d6d82;
}

.nl-contact-block__box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.nl-contact-block__panel {
	border-radius: 28px;
	padding: 30px;
}

.nl-contact-block__panel--dark {
	background: #162911;
	color: #ffffff;
}

.nl-contact-block__panel--light {
	background: #ffffff;
	border: 1px solid #dde6ef;
	box-shadow: 0 14px 40px rgba(17, 28, 45, 0.06);
}

.nl-contact-block__details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 28px;
}

.nl-contact-block__detail {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.nl-contact-block__detail h3 {
	margin: 0 0 10px;
	font-size: 18px;
}

.nl-contact-block__detail p {
	color: rgba(255, 255, 255, 0.78);
}

.nl-contact-block__form-title {
	margin: 0 0 22px;
	font-size: 28px;
	color: #1c2a10;
}

.nl-contact-form {
	display: grid;
	gap: 18px;
}

.nl-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.nl-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nl-contact-form__field label {
	font-size: 14px;
	font-weight: 600;
	color: #234a22;
}

.nl-contact-form__field input,
.nl-contact-form__field textarea {
	width: 100%;
	padding: 15px 16px;
	border-radius: 16px;
	border: 1px solid #d7e1eb;
	background: #f8fbff;
	font-size: 15px;
	color: #152235;
	outline: none;
	transition: 0.25s ease;
}

.nl-contact-form__field input:focus,
.nl-contact-form__field textarea:focus {
	border-color: #94a8bf;
	background: #ffffff;
}

.nl-contact-form__button {
	border: none;
	border-radius: 16px;
	padding: 16px 22px;
	background: #173413;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.25s ease;
}

.nl-contact-form__button:hover {
	background: #23471c;
}

.nl-contact-form__success {
	display: none;
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 16px;
	background: #e8f4eb;
	color: #1f5d35;
	font-size: 14px;
	font-weight: 600;
}

.nl-contact-form__success.is-visible {
	display: block;
}

@media (max-width: 991px) {
	.nl-team-section__grid,
	.nl-contact-block__box {
		grid-template-columns: 1fr;
	}

	.nl-team-section__intro {
		position: static;
	}

	.nl-benefits__rows,
	.nl-contact-form__grid,
	.nl-contact-block__details {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.nl-team-section,
	.nl-benefits,
	.nl-contact-block {
		padding: 52px 0;
	}

	.nl-team-card__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.nl-team-card__image {
		width: 84px;
		height: 84px;
		flex-basis: 84px;
	}

	.nl-team-section__title,
	.nl-benefits__title,
	.nl-contact-block__title {
		font-size: 30px;
	}

	.nl-contact-block__panel,
	.nl-team-section__intro,
	.nl-team-card,
	.nl-benefits__item {
		padding: 22px;
		border-radius: 22px;
	}
}

.nl-progress-block {
	padding: 72px 0;
	background: linear-gradient(180deg, #f2f8ee 0%, #f9fff8 100%);
}

.nl-progress-block__container,
.nl-site-footer__container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

.nl-progress-block__layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 28px;
	align-items: center;
}

.nl-progress-block__visual {
	position: relative;
	min-height: 420px;
	border-radius: 30px;
	background: linear-gradient(135deg, #192811 0%, #314920 100%);
	padding: 28px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.nl-progress-block__shape {
	position: absolute;
	border-radius: 50%;
}

.nl-progress-block__shape--large {
	width: 240px;
	height: 240px;
	right: -60px;
	top: -30px;
	background: rgba(255, 255, 255, 0.08);
}

.nl-progress-block__shape--small {
	width: 140px;
	height: 140px;
	left: -20px;
	bottom: 40px;
	background: rgba(255, 255, 255, 0.1);
}

.nl-progress-block__card {
	position: relative;
	z-index: 2;
	border-radius: 22px;
	padding: 22px;
	max-width: 320px;
}

.nl-progress-block__card--dark {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.nl-progress-block__card--dark span {
	display: block;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.72;
	margin-bottom: 10px;
}

.nl-progress-block__card--dark strong {
	font-size: 28px;
	line-height: 1.25;
}

.nl-progress-block__card--light {
	background: #f2f6fb;
	align-self: flex-end;
	color: #142033;
	box-shadow: 0 14px 30px rgba(21, 30, 10, 0.12);
}

.nl-progress-block__card--light b {
	display: block;
	font-size: 20px;
	margin-bottom: 8px;
}

.nl-progress-block__card--light p {
	margin: 0;
	line-height: 1.6;
	font-size: 15px;
	color: #5a6b81;
}

.nl-progress-block__label {
	display: inline-block;
	padding: 9px 14px;
	border-radius: 999px;
	background: #dbe6f2;
	color: #2b4a22;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nl-progress-block__title {
	margin: 0 0 18px;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.12;
	color: #101a29;
}

.nl-progress-block__text {
	margin: 0;
	font-size: 17px;
	line-height: 1.75;
	color: #58697f;
	max-width: 620px;
}

.nl-progress-block__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.nl-progress-block__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 22px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.25s ease;
}

.nl-progress-block__button--primary {
	background: #132910;
	color: #ffffff;
}

.nl-progress-block__button--secondary {
	background: #ffffff;
	color: #1a2910;
	border: 1px solid #d6e0ea;
}

.nl-site-footer {
	padding: 70px 0 28px;
	background: #18240f;
	color: #ffffff;
}

.nl-site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr;
	gap: 24px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nl-site-footer__logo {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.nl-site-footer__description {
	margin: 0;
	max-width: 420px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

.nl-site-footer__column h4 {
	margin: 0 0 14px;
	font-size: 18px;
}

.nl-site-footer__list,
.nl-site-footer__nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.nl-site-footer__list li,
.nl-site-footer__nav a {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.nl-site-footer__nav a:hover {
	color: #ffffff;
}

.nl-site-footer__bottom {
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.nl-site-footer__bottom p {
	margin: 0;
	max-width: 600px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
}

.nl-cookie-bar {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 80;
	background: #ffffff;
	border: 1px solid #dbe4ef;
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(19, 41, 16, 0.14);
	padding: 18px;
}

.nl-cookie-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.nl-cookie-bar__title {
	margin: 0 0 8px;
	font-size: 20px;
	color: #182910;
}

.nl-cookie-bar__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #5a6a80;
	max-width: 820px;
}

.nl-cookie-bar__buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.nl-cookie-bar__button {
	border: none;
	border-radius: 14px;
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.25s ease;
}

.nl-cookie-bar__button--light {
	background: #eef3f8;
	color: #27401a;
}

.nl-cookie-bar__button--dark {
	background: #1f2910;
	color: #ffffff;
}

.nl-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 120;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: 0.3s ease;
}

.nl-mobile-panel.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nl-mobile-panel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 7, 0.62);
}

.nl-mobile-panel__window {
	position: absolute;
	top: 0;
	right: 0;
	width: min(360px, 100%);
	height: 100%;
	background: #f8fbff;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	box-shadow: -18px 0 40px rgba(0, 0, 0, 0.16);
}

.nl-mobile-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.nl-mobile-panel__brand {
	font-size: 18px;
	font-weight: 700;
	color: #101a29;
}

.nl-mobile-panel__close {
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 12px;
	background: #e7eef6;
	color: #101a29;
	font-size: 28px;
	cursor: pointer;
}

.nl-mobile-panel__nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-mobile-panel__nav a {
	padding: 14px 16px;
	border-radius: 14px;
	background: #edf3f9;
	color: #27401a;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.nl-mobile-panel__button {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 18px;
	border-radius: 14px;
	background: #152910;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 991px) {
	.nl-progress-block__layout,
	.nl-site-footer__grid {
		grid-template-columns: 1fr;
	}

	.nl-progress-block__visual {
		min-height: 340px;
	}

	.nl-cookie-bar__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.nl-cookie-bar__buttons {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.nl-progress-block,
	.nl-site-footer {
		padding-top: 52px;
	}

	.nl-progress-block__container,
	.nl-site-footer__container {
		padding: 0 16px;
	}

	.nl-progress-block__visual,
	.nl-cookie-bar {
		border-radius: 22px;
	}

	.nl-progress-block__actions,
	.nl-cookie-bar__buttons {
		flex-direction: column;
	}

	.nl-progress-block__button,
	.nl-cookie-bar__button {
		width: 100%;
	}

	.nl-cookie-bar {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}
}

.nl-gebruiksvoorwaarden {
	padding: 48px 20px;
	background: linear-gradient(180deg, #f2f7ee 0%, #fafcf8 100%);

	color: #182f18;
}

.nl-gebruiksvoorwaarden__wrap {
	max-width: 1240px;
	margin: 0 auto;
}

.nl-gebruiksvoorwaarden__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 24px;
}

.nl-gebruiksvoorwaarden__intro,
.nl-gebruiksvoorwaarden__highlight,
.nl-gebruiksvoorwaarden__point,
.nl-gebruiksvoorwaarden__item,
.nl-gebruiksvoorwaarden__panel {
	border-radius: 20px;
}

.nl-gebruiksvoorwaarden__intro {
	background: #1a2f16;
	color: #ffffff;
	padding: 32px;
}

.nl-gebruiksvoorwaarden__eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.nl-gebruiksvoorwaarden__title {
	margin: 0 0 16px;
	font-size: 38px;
	line-height: 1.15;
}

.nl-gebruiksvoorwaarden__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	max-width: 780px;
}

.nl-gebruiksvoorwaarden__highlight {
	background: #d7e4ef;
	padding: 28px;
	border: 1px solid #ccddbf;
}

.nl-gebruiksvoorwaarden__highlight h2 {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.3;
}

.nl-gebruiksvoorwaarden__highlight p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #324152;
}

.nl-gebruiksvoorwaarden__points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.nl-gebruiksvoorwaarden__point {
	background: #ffffff;
	padding: 22px;
	border: 1px solid #dbe3ea;
	box-shadow: 0 12px 30px rgba(19, 35, 55, 0.06);
}

.nl-gebruiksvoorwaarden__point strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	color: #16212f;
}

.nl-gebruiksvoorwaarden__point span {
	display: block;
	font-size: 14px;
	line-height: 1.6;
	color: #566575;
}

.nl-gebruiksvoorwaarden__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.nl-gebruiksvoorwaarden__main {
	display: grid;
	gap: 18px;
}

.nl-gebruiksvoorwaarden__item {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 18px;
	background: #ffffff;
	padding: 24px;
	border: 1px solid #dde5ec;
	box-shadow: 0 14px 34px rgba(19, 35, 55, 0.05);
}

.nl-gebruiksvoorwaarden__number {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	border-radius: 16px;
	background: #1d3145;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
}

.nl-gebruiksvoorwaarden__body h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.3;
	color: #16212f;
}

.nl-gebruiksvoorwaarden__body p {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.75;
	color: #4f5e6c;
}

.nl-gebruiksvoorwaarden__body p:last-child {
	margin-bottom: 0;
}

.nl-gebruiksvoorwaarden__side {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 20px;
}

.nl-gebruiksvoorwaarden__panel {
	background: #fdfefe;
	padding: 24px;
	border: 1px solid #d8e2ea;
	box-shadow: 0 12px 28px rgba(19, 35, 55, 0.05);
}

.nl-gebruiksvoorwaarden__panel h3 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.3;
	color: #1e2f16;
}

.nl-gebruiksvoorwaarden__panel p,
.nl-gebruiksvoorwaarden__panel li {
	font-size: 15px;
	line-height: 1.7;
	color: #536272;
}

.nl-gebruiksvoorwaarden__panel p {
	margin: 0 0 12px;
}

.nl-gebruiksvoorwaarden__panel p:last-child {
	margin-bottom: 0;
}

.nl-gebruiksvoorwaarden__panel ul {
	margin: 0;
	padding-left: 18px;
}

.nl-gebruiksvoorwaarden__panel li + li {
	margin-top: 8px;
}

@media (max-width: 991px) {
	.nl-gebruiksvoorwaarden__top,
	.nl-gebruiksvoorwaarden__grid,
	.nl-gebruiksvoorwaarden__points {
		grid-template-columns: 1fr;
	}

	.nl-gebruiksvoorwaarden__side {
		position: static;
	}

	.nl-gebruiksvoorwaarden__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nl-gebruiksvoorwaarden {
		padding: 34px 14px;
	}

	.nl-gebruiksvoorwaarden__intro,
	.nl-gebruiksvoorwaarden__highlight,
	.nl-gebruiksvoorwaarden__point,
	.nl-gebruiksvoorwaarden__item,
	.nl-gebruiksvoorwaarden__panel {
		padding: 20px;
		border-radius: 16px;
	}

	.nl-gebruiksvoorwaarden__title {
		font-size: 28px;
	}

	.nl-gebruiksvoorwaarden__item {
		grid-template-columns: 1fr;
	}

	.nl-gebruiksvoorwaarden__number {
		width: 64px;
		height: 64px;
	}

	.nl-gebruiksvoorwaarden__body h3 {
		font-size: 20px;
	}
}

.nl-privacy-be {
	padding: 48px 20px;
	background: linear-gradient(180deg, #eaf6ef 0%, #f8fbf7 100%);

	color: #22301e;
}

.nl-privacy-be__container {
	max-width: 1240px;
	margin: 0 auto;
}

.nl-privacy-be__hero-box {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
	gap: 22px;
	margin-bottom: 24px;
}

.nl-privacy-be__hero-main {
	background: #232b39;
	color: #ffffff;
	padding: 34px;
	border-radius: 24px;
}

.nl-privacy-be__tag {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 13px;
	margin-bottom: 14px;
}

.nl-privacy-be__kicker {
	margin: 0 0 10px;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.nl-privacy-be__title {
	margin: 0 0 16px;
	font-size: 38px;
	line-height: 1.15;
}

.nl-privacy-be__lead {
	margin: 0;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.nl-privacy-be__hero-side {
	display: grid;
	gap: 18px;
}

.nl-privacy-be__date-card,
.nl-privacy-be__mini-note,
.nl-privacy-be__summary-card,
.nl-privacy-be__panel,
.nl-privacy-be__article {
	border-radius: 20px;
}

.nl-privacy-be__date-card {
	background: #d6c2a8;
	padding: 24px;
	border: 1px solid #c6af92;
}

.nl-privacy-be__date-label {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #4f4236;
}

.nl-privacy-be__date-card strong {
	font-size: 26px;
	line-height: 1.2;
	color: #2d261f;
}

.nl-privacy-be__mini-note {
	background: #fffdf8;
	padding: 24px;
	border: 1px solid #e6ddd0;
}

.nl-privacy-be__mini-note h2 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.3;
}

.nl-privacy-be__mini-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #5e615f;
}

.nl-privacy-be__summary-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.nl-privacy-be__summary-card {
	background: #ffffff;
	padding: 22px;
	border: 1px solid #e6dfd6;
	box-shadow: 0 12px 30px rgba(27, 31, 39, 0.05);
}

.nl-privacy-be__summary-card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	color: #243722;
}

.nl-privacy-be__summary-card span {
	display: block;
	font-size: 14px;
	line-height: 1.65;
	color: #616871;
}

.nl-privacy-be__layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.45fr);
	gap: 24px;
	align-items: start;
}

.nl-privacy-be__info {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 20px;
}

.nl-privacy-be__panel {
	background: #ffffff;
	padding: 24px;
	border: 1px solid #e5ddd2;
	box-shadow: 0 12px 26px rgba(27, 31, 39, 0.05);
}

.nl-privacy-be__panel--dark {
	background: #33472f;
	border-color: #2f4734;
}

.nl-privacy-be__panel h3 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.3;
	color: #1f3129;
}

.nl-privacy-be__panel--dark h3,
.nl-privacy-be__panel--dark p {
	color: #ffffff;
}

.nl-privacy-be__panel p,
.nl-privacy-be__panel li {
	font-size: 15px;
	line-height: 1.7;
	color: #5a6570;
}

.nl-privacy-be__panel p {
	margin: 0 0 12px;
}

.nl-privacy-be__panel p:last-child {
	margin-bottom: 0;
}

.nl-privacy-be__panel ul {
	margin: 0;
	padding-left: 18px;
}

.nl-privacy-be__panel li + li {
	margin-top: 8px;
}

.nl-privacy-be__content {
	display: grid;
	gap: 18px;
}

.nl-privacy-be__article {
	background: #fffefc;
	padding: 24px;
	border: 1px solid #e8e0d6;
	box-shadow: 0 14px 34px rgba(27, 31, 39, 0.04);
}

.nl-privacy-be__article-head {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin-bottom: 14px;
}

.nl-privacy-be__article-head span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 16px;
	background: #d9c6ae;
	color: #252f24;
	font-size: 22px;
	font-weight: 700;
}

.nl-privacy-be__article-head h2 {
	margin: 0;
	font-size: 23px;
	line-height: 1.3;
	color: #203421;
}

.nl-privacy-be__article p {
	margin: 0;
	font-size: 15px;
	line-height: 1.78;
	color: #56606a;
}

@media (max-width: 991px) {
	.nl-privacy-be__hero-box,
	.nl-privacy-be__summary-row,
	.nl-privacy-be__layout {
		grid-template-columns: 1fr;
	}

	.nl-privacy-be__info {
		position: static;
	}

	.nl-privacy-be__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nl-privacy-be {
		padding: 34px 14px;
	}

	.nl-privacy-be__hero-main,
	.nl-privacy-be__date-card,
	.nl-privacy-be__mini-note,
	.nl-privacy-be__summary-card,
	.nl-privacy-be__panel,
	.nl-privacy-be__article {
		padding: 20px;
		border-radius: 16px;
	}

	.nl-privacy-be__title {
		font-size: 28px;
	}

	.nl-privacy-be__article-head {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.nl-privacy-be__article-head span {
		width: 58px;
		height: 58px;
	}
}

.nl-learning-offers,
.nl-learning-steps,
.nl-growth-banner {
	font-family: Arial, sans-serif;
}

.nl-learning-offers {
	padding: 52px 20px;
	background: linear-gradient(180deg, #eff4ee 0%, #f8fbf8 100%);
	color: #1a301c;
}

.nl-learning-offers__container,
.nl-learning-steps__container,
.nl-growth-banner__container {
	max-width: 1240px;
	margin: 0 auto;
}

.nl-learning-offers__intro {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 28px;
}

.nl-learning-offers__label,
.nl-learning-steps__label,
.nl-growth-banner__small {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nl-learning-offers__label {
	margin-bottom: 14px;
	background: #d9e4ec;
	color: #314250;
}

.nl-learning-offers__title {
	margin: 0;
	font-size: 38px;
	line-height: 1.14;
	color: #1a2f18;
}

.nl-learning-offers__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #56755a;
}

.nl-learning-offers__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.nl-learning-offers__course {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #dce4ea;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(20, 35, 52, 0.06);
}

.nl-learning-offers__course--dark .nl-learning-offers__media {
	background: linear-gradient(135deg, #2b4524 0%, #3f7242 100%);
}

.nl-learning-offers__course--accent .nl-learning-offers__media {
	background: linear-gradient(135deg, #477a44 0%, #76c573 100%);
}

.nl-learning-offers__course--light .nl-learning-offers__media {
	background: linear-gradient(135deg, #576d50 0%, #90b08e 100%);
}

.nl-learning-offers__media {
	min-height: 170px;
	padding: 24px;
	display: flex;
	align-items: flex-end;
}

.nl-learning-offers__category {
	display: inline-flex;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	font-size: 14px;
}

.nl-learning-offers__recommend {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	padding: 8px 12px;
	border-radius: 999px;
	background: #22391f;
	color: #ffffff;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nl-learning-offers__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.nl-learning-offers__topline {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nl-learning-offers__topline h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
	color: #182f18;
}

.nl-learning-offers__price {
	display: inline-flex;
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 12px;
	background: #edf2f5;
	color: #31414f;
	font-size: 14px;
	font-weight: 700;
}

.nl-learning-offers__body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #566575;
}

.nl-learning-offers__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 13px 18px;
	border-radius: 14px;
	background: #273d1d;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.nl-learning-offers__button:hover {
	background: #2d425a;
}

.nl-learning-steps {
	padding: 52px 20px;
	background: #ffffff;
	color: #1d301a;
}

.nl-learning-steps__header {
	max-width: 840px;
	margin-bottom: 28px;
}

.nl-learning-steps__label {
	margin-bottom: 14px;
	background: #ece3d7;
	color: #675644;
}

.nl-learning-steps__title {
	margin: 0 0 14px;
	font-size: 38px;
	line-height: 1.14;
	color: #182f18;
}

.nl-learning-steps__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #586675;
}

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

.nl-learning-steps__item {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr);
	gap: 16px;
	padding: 22px;
	background: #f8fafb;
	border: 1px solid #dde5ea;
	border-radius: 22px;
	box-shadow: 0 12px 30px rgba(21, 32, 45, 0.04);
}

.nl-learning-steps__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 18px;
	background: #204221;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
}

.nl-learning-steps__content h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
	color: #182f1a;
}

.nl-learning-steps__content p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.75;
	color: #586675;
}

.nl-learning-steps__content ul {
	margin: 0 0 18px;
	padding-left: 18px;
}

.nl-learning-steps__content li {
	font-size: 15px;
	line-height: 1.7;
	color: #4d5b69;
}

.nl-learning-steps__content li + li {
	margin-top: 8px;
}

.nl-learning-steps__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 14px;
	background: #8ec8c9;
	color: #21301f;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.nl-learning-steps__button:hover {
	background: #b89875;
}

.nl-growth-banner {
	padding: 0 20px 52px;
	background: #ffffff;
}

.nl-growth-banner__box {
	padding: 34px;
	border-radius: 28px;
	background: linear-gradient(135deg, #1f2d3d 0%, #32465f 100%);
	color: #ffffff;
}

.nl-growth-banner__small {
	margin-bottom: 18px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nl-growth-banner__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: center;
}

.nl-growth-banner__title {
	margin: 0;
	font-size: 38px;
	line-height: 1.15;
	color: #ffffff;
}

.nl-growth-banner__text {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
}

.nl-growth-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 14px;
	background: #d9b693;
	color: #1c2430;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.nl-growth-banner__button:hover {
	background: #e5c4a3;
}

@media (max-width: 991px) {
	.nl-learning-offers__intro,
	.nl-growth-banner__layout,
	.nl-learning-offers__list,
	.nl-learning-steps__grid {
		grid-template-columns: 1fr;
	}

	.nl-learning-offers__title,
	.nl-learning-steps__title,
	.nl-growth-banner__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nl-learning-offers,
	.nl-learning-steps {
		padding: 36px 14px;
	}

	.nl-growth-banner {
		padding: 0 14px 36px;
	}

	.nl-learning-offers__title,
	.nl-learning-steps__title,
	.nl-growth-banner__title {
		font-size: 28px;
	}

	.nl-learning-offers__body,
	.nl-learning-steps__item,
	.nl-growth-banner__box {
		padding: 20px;
	}

	.nl-learning-steps__item {
		grid-template-columns: 1fr;
	}

	.nl-learning-steps__num {
		width: 64px;
		height: 64px;
		border-radius: 16px;
		font-size: 21px;
	}

	.nl-learning-offers__media {
		min-height: 140px;
	}

	.nl-learning-offers__topline h3,
	.nl-learning-steps__content h3 {
		font-size: 21px;
	}
}

.nl-faq-section {
	padding: 52px 20px;
	background: linear-gradient(180deg, #f2f5f7 0%, #fcfcfd 100%);
	font-family: Arial, sans-serif;
	color: #1f2933;
}

.nl-faq-section__container {
	max-width: 1240px;
	margin: 0 auto;
}

.nl-faq-section__top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 26px;
}

.nl-faq-section__label {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: #d7e2e8;
	color: #344655;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.nl-faq-section__title {
	margin: 0;
	font-size: 38px;
	line-height: 1.14;
	color: #18222d;
	max-width: 760px;
}

.nl-faq-section__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: #5b6977;
}

/* .nl-faq-section__content {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.4fr);
	gap: 24px;
	align-items: start;
} */

.nl-faq-section__help,
.nl-faq-section__item {
	border-radius: 22px;
}

.nl-faq-section__help {
	padding: 28px;
	background: #233244;
	color: #ffffff;
	position: sticky;
	top: 20px;
	box-shadow: 0 14px 34px rgba(21, 36, 53, 0.08);
}

.nl-faq-section__help-mark {
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nl-faq-section__help h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
}

.nl-faq-section__help p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.86);
}

.nl-faq-section__help-box {
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.nl-faq-section__help-box strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	color: #ffffff;
}

.nl-faq-section__help-box span {
	display: block;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.nl-faq-section__items {
	display: grid;
	gap: 16px;
}

.nl-faq-section__item {
	background: #ffffff;
	border: 1px solid #dce4ea;
	box-shadow: 0 12px 28px rgba(20, 35, 52, 0.05);
	overflow: hidden;
}

.nl-faq-section__question {
	width: 100%;
	padding: 22px 24px;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: #18222d;
}

.nl-faq-section__question span:first-child {
	font-size: 19px;
	line-height: 1.45;
	font-weight: 700;
}

.nl-faq-section__icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.nl-faq-section__icon::before,
.nl-faq-section__icon::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background: #5a6a78;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: 0.3s ease;
}

.nl-faq-section__icon::before {
	width: 18px;
	height: 2px;
}

.nl-faq-section__icon::after {
	width: 2px;
	height: 18px;
}

.nl-faq-section__answer {
	display: none;
	padding: 0 24px 22px;
}

.nl-faq-section__answer p {
	margin: 0;
	font-size: 15px;
	line-height: 1.78;
	color: #566473;
}

.nl-faq-section__item.is-open .nl-faq-section__answer {
	display: block;
}

.nl-faq-section__item.is-open .nl-faq-section__icon::after {
	opacity: 0;
}

@media (max-width: 991px) {
	.nl-faq-section__top,
	.nl-faq-section__content {
		grid-template-columns: 1fr;
	}

	.nl-faq-section__help {
		position: static;
	}

	.nl-faq-section__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nl-faq-section {
		padding: 36px 14px;
	}

	.nl-faq-section__help,
	.nl-faq-section__question,
	.nl-faq-section__answer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nl-faq-section__help {
		padding-top: 22px;
		padding-bottom: 22px;
		border-radius: 18px;
	}

	.nl-faq-section__item {
		border-radius: 18px;
	}

	.nl-faq-section__title {
		font-size: 28px;
	}

	.nl-faq-section__question {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.nl-faq-section__question span:first-child {
		font-size: 17px;
	}
}

.nl-service-overview {
	padding: 52px 20px;
	background: linear-gradient(180deg, #eef2f6 0%, #fafbfd 100%);
	font-family: Arial, sans-serif;
	color: #1d2732;
}

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

.nl-service-overview__header {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 24px;
}

.nl-service-overview__header-main,
.nl-service-overview__header-note,
.nl-service-overview__highlight,
.nl-service-overview__card,
.nl-service-overview__block {
	border-radius: 22px;
}

.nl-service-overview__header-main {
	padding: 34px;
	background: #1f2f40;
	color: #ffffff;
}

.nl-service-overview__label {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.nl-service-overview__title {
	margin: 0 0 16px;
	font-size: 38px;
	line-height: 1.14;
	color: #ffffff;
}

.nl-service-overview__intro {
	margin: 0;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.88);
}

.nl-service-overview__header-note {
	padding: 28px;
	background: #d9c4a9;
	border: 1px solid #c8ae8d;
}

.nl-service-overview__header-note h2 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
	color: #2e261f;
}

.nl-service-overview__header-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #4d4135;
}

.nl-service-overview__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.nl-service-overview__highlight {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #dce4ea;
	box-shadow: 0 12px 28px rgba(18, 33, 49, 0.05);
}

.nl-service-overview__highlight strong {
	display: block;
	margin-bottom: 10px;
	font-size: 17px;
	color: #1d2732;
}

.nl-service-overview__highlight span {
	display: block;
	font-size: 14px;
	line-height: 1.65;
	color: #5a6977;
}

.nl-service-overview__layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.42fr);
	gap: 24px;
	align-items: start;
}

.nl-service-overview__sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 20px;
}

.nl-service-overview__card {
	padding: 24px;
	background: #ffffff;
	border: 1px solid #dce4ea;
	box-shadow: 0 12px 28px rgba(18, 33, 49, 0.05);
}

.nl-service-overview__card--dark {
	background: #2c3f54;
	border-color: #2c3f54;
}

.nl-service-overview__card h3 {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.3;
	color: #1e2833;
}

.nl-service-overview__card--dark h3,
.nl-service-overview__card--dark li {
	color: #ffffff;
}

.nl-service-overview__card p,
.nl-service-overview__card li {
	font-size: 15px;
	line-height: 1.72;
	color: #586674;
}

.nl-service-overview__card p {
	margin: 0 0 12px;
}

.nl-service-overview__card p:last-child {
	margin-bottom: 0;
}

.nl-service-overview__card ul {
	margin: 0;
	padding-left: 18px;
}

.nl-service-overview__card li + li {
	margin-top: 8px;
}

.nl-service-overview__content {
	display: grid;
	gap: 18px;
}

.nl-service-overview__block {
	padding: 24px;
	background: #ffffff;
	border: 1px solid #dce4ea;
	box-shadow: 0 14px 32px rgba(18, 33, 49, 0.04);
}

.nl-service-overview__block-top {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin-bottom: 14px;
}

.nl-service-overview__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 18px;
	background: #e7edf2;
	color: #233243;
	font-size: 22px;
	font-weight: 700;
}

.nl-service-overview__block h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
	color: #1d2732;
}

.nl-service-overview__block p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.8;
	color: #586674;
}

.nl-service-overview__block p:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.nl-service-overview__header,
	.nl-service-overview__highlights,
	.nl-service-overview__layout {
		grid-template-columns: 1fr;
	}

	.nl-service-overview__sidebar {
		position: static;
	}

	.nl-service-overview__title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.nl-service-overview {
		padding: 36px 14px;
	}

	.nl-service-overview__header-main,
	.nl-service-overview__header-note,
	.nl-service-overview__highlight,
	.nl-service-overview__card,
	.nl-service-overview__block {
		padding: 20px;
		border-radius: 18px;
	}

	.nl-service-overview__title {
		font-size: 28px;
	}

	.nl-service-overview__block-top {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.nl-service-overview__number {
		width: 58px;
		height: 58px;
		border-radius: 16px;
		font-size: 20px;
	}

	.nl-service-overview__block h2 {
		font-size: 21px;
	}
}

.nl-platform-story {
	padding: 52px 20px;
	background: linear-gradient(180deg, #f4efe8 0%, #fcfbf8 100%);
	font-family: Arial, sans-serif;
	color: #1f2833;
}

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

.nl-platform-story__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
	gap: 24px;
	margin-bottom: 30px;
}

.nl-platform-story__hero-card,
.nl-platform-story__hero-note,
.nl-platform-story__milestone-card,
.nl-platform-story__benefit-card,
.nl-platform-story__cta {
	border-radius: 24px;
}

.nl-platform-story__hero-card {
	padding: 34px;
	background: #243445;
	color: #ffffff;
}

.nl-platform-story__label,
.nl-platform-story__cta-label {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nl-platform-story__label {
	margin-bottom: 14px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nl-platform-story__title {
	margin: 0 0 16px;
	font-size: 38px;
	line-height: 1.14;
	color: #ffffff;
	max-width: 820px;
}

.nl-platform-story__lead {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.88);
	max-width: 760px;
}

.nl-platform-story__hero-note {
	padding: 28px;
	background: #d8c0a2;
	border: 1px solid #c4a583;
}

.nl-platform-story__hero-note h3 {
	margin: 0 0 12px;
	font-size: 24px;
	line-height: 1.25;
	color: #33271d;
}

.nl-platform-story__hero-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #554334;
}

.nl-platform-story__roadmap {
	position: relative;
	display: grid;
	gap: 18px;
	margin-bottom: 30px;
}

.nl-platform-story__roadmap-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #d8dfe6;
	transform: translateX(-50%);
}

.nl-platform-story__milestone {
	position: relative;
	width: calc(50% - 24px);
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.nl-platform-story__milestone--right {
	margin-left: auto;
}

.nl-platform-story__year {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 20px;
	background: #1f3042;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 24px rgba(20, 35, 52, 0.12);
}

.nl-platform-story__milestone-card {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #dfe5ea;
	box-shadow: 0 12px 30px rgba(20, 35, 52, 0.05);
}

.nl-platform-story__milestone-card h3 {
	margin: 0 0 12px;
	font-size: 23px;
	line-height: 1.28;
	color: #1f2833;
}

.nl-platform-story__milestone-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.78;
	color: #5a6875;
}

.nl-platform-story__bottom {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.nl-platform-story__benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.nl-platform-story__benefit-card {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #dfe5ea;
	box-shadow: 0 12px 28px rgba(20, 35, 52, 0.05);
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.nl-platform-story__benefit-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 16px;
	background: #e6edf2;
	color: #223243;
	font-size: 20px;
	font-weight: 700;
}

.nl-platform-story__benefit-body h4 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.3;
	color: #1f2833;
}

.nl-platform-story__benefit-body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.72;
	color: #5a6875;
}

.nl-platform-story__cta {
	padding: 30px;
	background: linear-gradient(135deg, #2d4054 0%, #445c76 100%);
	color: #ffffff;
}

.nl-platform-story__cta-label {
	margin-bottom: 14px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.nl-platform-story__cta-title {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	color: #ffffff;
}

.nl-platform-story__cta-text {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.86);
}

.nl-platform-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 14px;
	background: #d8b492;
	color: #1f2833;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.nl-platform-story__button:hover {
	background: #e4c3a2;
}

@media (max-width: 991px) {
	.nl-platform-story__hero,
	.nl-platform-story__bottom,
	.nl-platform-story__benefits {
		grid-template-columns: 1fr;
	}

	.nl-platform-story__roadmap-line {
		display: none;
	}

	.nl-platform-story__milestone,
	.nl-platform-story__milestone--right {
		width: 100%;
		margin-left: 0;
	}

	.nl-platform-story__title {
		font-size: 32px;
	}

	.nl-platform-story__cta-title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.nl-platform-story {
		padding: 36px 14px;
	}

	.nl-platform-story__hero-card,
	.nl-platform-story__hero-note,
	.nl-platform-story__milestone-card,
	.nl-platform-story__benefit-card,
	.nl-platform-story__cta {
		padding: 20px;
		border-radius: 18px;
	}

	.nl-platform-story__title {
		font-size: 28px;
	}

	.nl-platform-story__milestone {
		grid-template-columns: 1fr;
	}

	.nl-platform-story__year {
		width: 64px;
		height: 64px;
		border-radius: 16px;
		font-size: 18px;
	}

	.nl-platform-story__benefit-card {
		grid-template-columns: 1fr;
	}

	.nl-platform-story__benefit-number {
		width: 56px;
		height: 56px;
		border-radius: 14px;
		font-size: 18px;
	}

	.nl-platform-story__milestone-card h3,
	.nl-platform-story__benefit-body h4 {
		font-size: 20px;
	}

	.nl-platform-story__cta-title {
		font-size: 24px;
	}
}
