/**
 * Fluid typography: clamp(min, preferred, max).
 * Max = former desktop px; min = comfortable floor on narrow viewports.
 */

.nl-hero {
	position: relative;
	background: var(--FFFFFF, #FFF);
	background-image: var(--nl-hero-bg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: min(100vw, 1360px) auto;
	padding: 130px 0 130px;
}

.nl-container {
	width: 96%;
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}

.nl-hero__content {
	max-width: 900px;
}

.nl-hero__title {
	margin: 0 0 40px;
	color: var(--28BD3F, #28BD3F);
	font-size: clamp(1.75rem, 1.1rem + 3.2vw, 3.375rem);
	font-style: normal;
	font-weight: 700;
	line-height: 58px; /* 107.407% */
}
@media (max-width: 1024px) {
	.nl-hero__title {
		line-height: 36px;
	}
}
.nl-hero__description {
	margin-bottom: 40px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.125rem, 0.95rem + 0.65vw, 1.3125rem);
	font-style: normal;
	font-weight: 400;
	line-height: 31px; /* 147.619% */
	max-width: 600px;
}

.nl-hero__description p {
	margin: 0;
}

.nl-hero__box {
	max-width: 560px;
	border-radius: 15px;
	border: 2px solid var(--FEAF28, #FEAF28);
	background: rgba(255, 255, 255, 0.60);
	padding: 26px 36px;
}

.nl-hero__box-title {
	margin: 0 0 16px;
	font-size: clamp(1.375rem, 1rem + 1.5vw, 1.875rem);
	line-height: 36px; /* 120% */
	font-weight: 700;
	text-transform: uppercase;
	color: #2D2D2D;
}

.nl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	background: #f2aa2e;
	color: #232323;
	font-size: clamp(0.65rem, 0.58rem + 0.25vw, 0.82rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 10px 20px;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nl-btn:hover,
.nl-btn:focus {
	transform: translateY(-1px);
	opacity: 0.92;
	color: #232323;
}


.nl-video {
	background: linear-gradient(180deg, #262626 0%, #444647 100%);
	padding: 64px 0 86px;
}

.nl-video__title {
	margin: 0 0 44px;
	color: var(--28BD3F, #28BD3F);
	text-align: center;
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-weight: 500;
}

.nl-video__content {
	max-width: 960px;
	margin: 0 auto;
}

.nl-video-player {
	width: 100%;
	max-width: 960px;
	height: 529px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	background: #0f1012;
}

.nl-video-player__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1e2125;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 2;
}

.nl-video-player__overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.38));
}

.nl-video-player__overlay.is-disabled {
	opacity: 0.85;
}

.nl-video-player__iframe,
.nl-video-player__native {
	width: 100%;
	height: 100%;
	border: 0;
	display: none;
}

.nl-video-player__native {
	background: #000;
}

.nl-video-player.is-playing .nl-video-player__overlay {
	display: none;
}

.nl-video__play {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 0;
	border-radius: 999px;
	padding: 14px 26px;
	background: #20b241;
	color: #fff;
	font-size: clamp(0.8125rem, 0.75rem + 0.35vw, 0.95rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nl-video__play:hover,
.nl-video__play:focus {
	transform: translateY(-1px);
	background: var(--FEAF28, #FEAF28);
	color: #fff;
	opacity: 1;
}

.nl-video__play:hover .nl-video__play-icon,
.nl-video__play:focus .nl-video__play-icon {
	background: rgba(255, 255, 255, 0.24);
}

.nl-video__play:hover .nl-video__play-icon::before,
.nl-video__play:focus .nl-video__play-icon::before {
	border-left-color: #fff;
}

.nl-video__play:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.nl-video__play-icon {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.24);
}

.nl-video__play-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
}

.nl-steps {
	background: var(--F2F2F2, #F2F2F2);
	padding: 80px 0 105px;
}

.nl-steps__title {
	margin: 0 0 88px;
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-family: Roboto;
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.nl-steps__wrap {
	position: relative;
}

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

.nl-step {
	position: relative;
    display: flex;
    border-radius: 15px;
    background: var(--FFFFFF, #FFF);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    padding: 66px 30px 50px;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
}

.nl-step__number {
	position: absolute;
	top: -25px;
	left: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #28bd3f;
	color: var(--FFFFFF, #FFF);
	text-align: center;
	font-size: clamp(1.0625rem, 0.75rem + 1vw, 1.3125rem);
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 133.333% */
}

.nl-step__heading {
	margin: 0 0 20px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.125rem, 0.85rem + 1.1vw, 1.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 133.333% */
}

.nl-step__description {
	margin: 0;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 300;
	line-height: 150%;
	letter-spacing: 0.18px;
}

.nl-step__description p {
	margin: 0;
}

.nl-step__icon {
	
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
    margin-top: 30px;
}

.nl-step__icon svg {
	max-width: 110px;
	height: auto;
}

.nl-steps__arrows {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.nl-steps__arrow {
	position: absolute;
	width: 211px;
	min-width: 140px;
	max-width: 211px;
	color: transparent;
}

.nl-steps__arrow svg {
	display: block;
	width: 100%;
	height: auto;
}

.nl-steps__arrow--1 {
	top: -35px;
    left: 7%;
}

.nl-steps__arrow--2 {
	top: 17px;
    left: 32%;
}

.nl-steps__arrow--3 {
	top: -35px;
	left: 57.6%;
}

.nl-support {
	background: #FEAF28;
	padding: 70px 0;
}

.nl-support__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.nl-support__left {
	max-width: 850px;
}

.nl-support__title {
	margin: 0 0 50px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.nl-support__lead-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 21px;
}

.nl-support__lead-icon {
	display: inline-flex;
	flex: 0 0 auto;
}

.nl-support__lead-icon svg {
	width: 57px;
	height: 41px;
	display: block;
}

.nl-support__lead {
	margin: 0;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.125rem, 0.85rem + 1.5vw, 1.625rem);
	font-weight: 500;
	line-height: 28px; /* 107.692% */
}

.nl-support__description {
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-weight: 400;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
	margin-bottom: 30px;
	max-width: 590px;
}

.nl-support__description p {
	margin: 0;
}

.nl-support__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 100px;
	border: 2px solid transparent;
	box-sizing: border-box;
	background: #28bd3f;
	color: #fff;
	font-size: clamp(0.75rem, 0.55rem + 0.6vw, 1.125rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 26px;
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	height: 61px;
}

.nl-support__btn:hover,
.nl-support__btn:focus {
	background: var(--FEAF28, #FEAF28);
	color: #fff;
	border-color: var(--28BD3F, #28bd3f);
	transform: translateY(-1px);
	opacity: 1;
}

.nl-support__right {
	position: absolute;
    right: 0;
    bottom: -70px;
}

.nl-support__right img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: auto;
}

.nl-alt-process {
	background: #f2f2f2;
	padding: 75px 0 90px;
}

.nl-alt-process__title {
	margin: 0 0 58px;
	color: #2D2D2D;
	text-align: center;
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

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

.nl-alt-process__card {
	background: #fff;
	border-radius: 15px;
	padding: 34px 34px 30px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
	text-align: center;
}

.nl-alt-process__card-title {
	margin: 0 0 25px;
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-size: clamp(1.125rem, 0.85rem + 1.5vw, 1.625rem);
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.nl-alt-process__warning {
	margin: 0 0 14px;
	color: var(--FEAF28, #FEAF28);
	text-align: center;
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
	text-transform: uppercase;
}

.nl-alt-process__description {
	max-width: 550px;
	margin: 0 auto 22px;
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
}

.nl-alt-process__description p {
	margin: 0;
}

.nl-alt-process__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 100px;
	background: #28bd3f;
	color: #fff;
	font-size: clamp(0.875rem, 0.65rem + 0.65vw, 1.125rem);
	font-weight: 700;
	line-height: 1;
	padding: 18px 30px;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nl-alt-process__btn:hover,
.nl-alt-process__btn:focus {
	background: var(--FEAF28, #FEAF28);
	color: #fff;
	transform: translateY(-1px);
	opacity: 1;
}

.nl-reason-block {
	background: var(--nl-reason-bg, #f2f2f2);
	padding: 90px 0 85px 0; 
}

.nl-reason-block__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 90px;
	align-items: center;
}

.nl-reason-block__inner.is-image-right .nl-reason-block__media {
	order: 2;
}

.nl-reason-block__inner.is-image-right .nl-reason-block__content {
	order: 1;
}

.nl-reason-block__media img {
	display: block;
	width: 100%;
	max-width: 760px;
	height: auto;
	border-radius: 12px;
}

.nl-reason-block__content {
	max-width: 520px;
}

.nl-reason-block__title {
	margin: 0 0 25px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.nl-reason-block__text {
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
}

.nl-reason-block__text p {
	margin: 0;
}

.nl-trust {
	background: #f2f2f2;
	padding: 68px 0 58px;
}

.nl-trust__title {
	margin: 0 0 45px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}

.nl-trust__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 21px;
	margin-bottom: 75px;
}

.nl-trust__stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 35px 35px;
	background: var(--FFFFFF, #FFF);
    border-radius: 30px;
    gap: 8px;
	/* Shadow */
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.nl-trust__stat-prefix {
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-size: clamp(0.8125rem, 0.65rem + 0.6vw, 0.9375rem);
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 186.667% */
}

.nl-trust__stat-value {
	color: var(--28BD3F, #28BD3F);
	font-size: clamp(2rem, 1.35rem + 3.2vw, 3.625rem);
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-align: center;
}

.nl-trust__stat-label {
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-size: clamp(1.0625rem, 0.75rem + 1vw, 1.3125rem);
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 133.333% */
}

.nl-trust__subtitle {
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1rem, 0.75rem + 0.95vw, 1.25rem);
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 55% */
	margin-bottom: 30px;
	text-align: center;
}

.nl-trust__logos {
	padding: 0 8px;
}

.nl-trust__logos .logo {
	margin: 0 auto;
}

@media (max-width: 1024px) {
	.nl-hero {
		background-size: 70vw auto;
		padding-bottom: 80px;
	}

	.nl-step {
		min-height: 300px;
	}

	.nl-steps__arrow {
		min-width: 120px;
	}

	.nl-reason-block__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.nl-container {
		width: calc(100% - 28px);
	}

	.nl-hero {
		background-size: 100vw auto;
		background-position: center bottom;
		padding: 46px 0 280px;
	}

	.nl-hero__box {
		padding: 20px;
	}

	.nl-video {
		padding: 60px 0 70px;
	}

	.nl-video-player {
		height: auto;
		aspect-ratio: 960 / 529;
	}

	.nl-video__play {
		line-height: 1.3;
	}

	.nl-steps {
		padding: 58px 0 64px;
	}

	.nl-steps__title {
		margin-bottom: 24px;
	}

	.nl-steps__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.nl-step {
		min-height: 0;
		padding: 28px 18px 24px;
	}

	.nl-step__icon {
		position: static;
		justify-content: flex-start;
		margin-top: 18px;
	}

	.nl-steps__arrows {
		display: none;
	}

	.nl-support {
		padding: 38px 0 42px;
	}

	.nl-support__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.nl-support__title {
		margin-bottom: 16px;
	}

	.nl-support__lead-row {
		gap: 12px;
		margin-bottom: 14px;
	}

	

	.nl-support__description {
		margin-bottom: 20px;
	}

	.nl-support__btn {
		padding: 12px 20px;
		height: auto;
		min-height: 48px;
		line-height: 1.25;
	}

	.nl-support__right {
		width: 100%;
		position: relative;
		bottom: 0;
	}

	.nl-support__right img {
		margin: 0 auto;
		max-width: 320px;
	}

	.nl-alt-process {
		padding: 52px 0 60px;
	}

	.nl-alt-process__title {
		margin-bottom: 20px;
	}

	.nl-alt-process__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.nl-alt-process__card {
		padding: 24px 18px 20px;
	}

	.nl-alt-process__description {
		margin-bottom: 16px;
	}

	.nl-alt-process__btn {
		padding: 14px 22px;
		line-height: 1.25;
	}

	.nl-reason-block {
		padding: 44px 0;
	}

	.nl-reason-block__inner {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.nl-reason-block__inner.is-image-right .nl-reason-block__media,
	.nl-reason-block__inner.is-image-right .nl-reason-block__content {
		order: initial;
	}

	.nl-reason-block__title {
		margin-bottom: 12px;
	}

	.nl-trust {
		padding: 52px 0 44px;
	}

	.nl-trust__title {
		margin-bottom: 20px;
	}

	.nl-trust__stats {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 22px;
	}

	.nl-trust__stat-card {
		padding: 18px 14px 20px;
	}

	.nl-trust__subtitle {
		margin-bottom: 18px;
	}
}

.nl-how {
	background: #fff;
	padding: 75px 0 90px;
}

.nl-how__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr);
	gap: 94px;
	align-items: start;
}

.nl-how__title {
	color: var(--2D2D2D, #2D2D2D);
	text-align: left;
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: 0;
	margin-bottom: 50px;
}

.nl-how__item {
	display: grid;
	grid-template-columns: 115px 1fr;
	gap: 30px;
	padding: 0 0 30px;
	margin: 0 0 30px;
	border-bottom: 1px solid #7E7E7E;

}

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

.nl-how__index {
	width: 115px;
height: 115px;
	border-radius: 50%;
	background: #e9e9e9;
	color: var(--28BD3F, #28BD3F);
	text-align: center;
	font-size: clamp(1.75rem, 1.1rem + 3.5vw, 3.1875rem);
	font-style: normal;
	font-weight: 700;
	line-height: 28px; /* 54.902% */
	display: flex;
	align-items: center;
	justify-content: center;
}

.nl-how__item-title {
	margin: 0px 0 21px;
	color: var(--2D2D2D, #2D2D2D);
	font-family: Roboto;
	font-size: clamp(1.125rem, 0.85rem + 1.5vw, 1.625rem);
	font-style: normal;
	font-weight: 500;
	line-height: 34px; /* 130.769% */
}

.nl-how__item-text {
	color: var(--2D2D2D, #2D2D2D);
	font-family: Roboto;
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
	margin: 0;
	margin-bottom: 21px;
}

.nl-how__item-text p {
	margin: 0;
}

.nl-how__cta {
	display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #28bd3f;
    color: #fff;
    font-size: clamp(0.75rem, 0.55rem + 0.6vw, 1.125rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    height: 61px;
}

.nl-how__cta:hover,
.nl-how__cta:focus {
	background: var(--FEAF28, #FEAF28);
	color: #fff;
	transform: translateY(-1px);
	opacity: 1;
}

.nl-how__right img {
	display: block;
	width: 92%;
	height: auto;
	border-radius: 10px;
	margin-left: auto;
	will-change: transform;
}
@media (max-width: 1024px) {
	.nl-how__right img{
		aspect-ratio: 1;
		object-fit: cover;
	}
}
.nl-how__right {
	position: sticky;
	top: 110px;
	align-self: start;
}

.nl-how.nl-how--scrollimg .nl-how__inner {
	align-items: stretch;
}

.nl-how.nl-how--scrollimg .nl-how__right {
	position: relative;
	top: auto;
	align-self: stretch;
}

.nl-faq {
	padding: 80px 0;
}

.nl-faq__title {
	margin: 0 0 26px;
	color: var(--2D2D2D, #2D2D2D);
	text-align: center;
	font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.5rem);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.nl-faq__list {
	max-width: 980px;
	margin: 0 auto;
}

.nl-faq__item {
	border-bottom: 1px solid #d6d6d6;
}

.nl-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: 0;
	padding: 18px 0;
	text-align: left;
	cursor: pointer;
}

.nl-faq__question-text {
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1.125rem, 0.85rem + 1.5vw, 1.625rem);
	font-style: normal;
	font-weight: 500;
	line-height: 34px; /* 130.769% */
}

.nl-faq__icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #F2F2F2;
	position: relative;
}

.nl-faq__item.is-open .nl-faq__icon {
	background: #28bd3f;
}

.nl-faq__icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 7px;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-size: 11px 7px;
	background-position: center;
	transition: transform 0.2s ease, background-image 0.2s ease;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.86919 6.01194L-0.000467353 1.20222L1.21673 -4.25719e-07L5.47779 4.20861L9.73885 -5.32055e-08L10.9561 1.20222L6.08639 6.01194C5.92497 6.17133 5.70605 6.26087 5.47779 6.26087C5.24954 6.26087 5.03062 6.17133 4.86919 6.01194Z' fill='%2328BD3F'/%3E%3C/svg%3E");
}

.nl-faq__item.is-open .nl-faq__icon::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.08686 0.248806L10.9565 5.05852L9.73932 6.26074L5.47826 2.05213L1.2172 6.26074L-5.25506e-08 5.05852L4.86966 0.248806C5.03109 0.0894139 5.25 -0.000128022 5.47826 -0.000128032C5.70652 -0.000128042 5.92543 0.0894139 6.08686 0.248806Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.nl-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.26s ease;
}

.nl-faq__answer-inner {
	padding: 0 0 20px;
	color: var(--2D2D2D, #2D2D2D);
	font-size: clamp(1rem, 0.88rem + 0.5vw, 1.125rem);
	font-style: normal;
	font-weight: 300;
	line-height: 150%; /* 27px */
	letter-spacing: 0.18px;
}

.nl-faq__answer-inner p {
	margin: 0 0 10px;
}

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

.nl-faq__answer-inner ul,
.nl-faq__answer-inner ol {
	margin: 10px 0 12px 20px;
}

.nl-faq__answer-inner li {
	margin: 0 0 6px;
}

@media (max-width: 768px) {
	.nl-how {
		padding: 46px 0 52px;
	}

	.nl-how__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.nl-how__right {
		position: static;
		top: auto;
	}

	.nl-how__title {
		margin-bottom: 16px;
	}

	.nl-how__item {
		grid-template-columns: 42px 1fr;
		gap: 12px;
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	.nl-how__index {
		width: 42px;
		height: 42px;
		font-size: clamp(1rem, 0.65rem + 1.5vw, 1.625rem);
		line-height: 42px;
	}

	.nl-how__cta {
		padding: 10px 16px;
		height: auto;
		min-height: 44px;
		line-height: 1.25;
	}

	.nl-faq {
		padding: 52px 0 58px;
	}

	.nl-faq__title {
		margin-bottom: 16px;
	}

	.nl-faq__question {
		padding: 14px 0;
	}

	.nl-faq__icon {
		width: 26px;
		height: 26px;
	}

	.nl-faq__answer-inner {
		padding-bottom: 14px;
	}
}
