.nb-foreign-page {
	--navy: #0b1f3a;
	--navy-dark: #061426;
	--navy-soft: #142d4f;
	--gold: #d4af37;
	--gold-dark: #b78e16;
	--text: #182238;
	--muted: #667085;
	--soft: #f5f7fa;
	--white: #ffffff;
	--border: #e1e6ed;
	--success: #1f7a4c;

	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	color: var(--text);
	font-family: inherit;
}

.nb-foreign-page *,
.nb-foreign-page *::before,
.nb-foreign-page *::after {
	box-sizing: border-box;
}

.nb-fp-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.nb-fp-eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.nb-fp-title {
	margin: 0;
	color: var(--navy);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 850;
	line-height: 1.14;
	letter-spacing: -.03em;
}

.nb-fp-description {
	max-width: 780px;
	margin: 20px auto 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.nb-fp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.3;
	text-align: center;
	text-decoration: none !important;
	transition:
		transform .2s ease,
		background-color .2s ease,
		border-color .2s ease,
		color .2s ease;
}

.nb-fp-button:hover {
	transform: translateY(-2px);
}

.nb-fp-button--gold {
	background: var(--gold);
	color: var(--navy-dark) !important;
}

.nb-fp-button--gold:hover {
	background: var(--gold-dark);
	color: var(--white) !important;
}

.nb-fp-button--outline {
	border-color: rgba(255,255,255,.48);
	color: var(--white) !important;
}

.nb-fp-button--outline:hover {
	border-color: var(--white);
	background: var(--white);
	color: var(--navy) !important;
}


/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.nb-fp-hero {
	position: relative;
	overflow: hidden;
	padding: 104px 0;
	background:
		radial-gradient(
			circle at 84% 17%,
			rgba(212,175,55,.18),
			transparent 31%
		),
		linear-gradient(
			135deg,
			var(--navy-dark),
			var(--navy-soft)
		);
}

.nb-fp-hero::before {
	content: "";
	position: absolute;
	top: -210px;
	right: -120px;
	width: 540px;
	height: 540px;
	border: 1px solid rgba(212,175,55,.23);
	border-radius: 50%;
}

.nb-fp-hero::after {
	content: "";
	position: absolute;
	right: 80px;
	bottom: -330px;
	width: 610px;
	height: 610px;
	border: 90px solid rgba(255,255,255,.025);
	border-radius: 50%;
}

.nb-fp-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
	gap: 72px;
	align-items: center;
}

.nb-fp-hero h1 {
	max-width: 820px;
	margin: 0;
	color: var(--white);
	font-size: clamp(42px, 5.5vw, 70px);
	font-weight: 850;
	line-height: 1.06;
	letter-spacing: -.045em;
}

.nb-fp-hero p {
	max-width: 730px;
	margin: 28px 0 0;
	color: rgba(255,255,255,.77);
	font-size: 19px;
	line-height: 1.75;
}

.nb-fp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.nb-fp-hero__panel {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 16px;
	background: rgba(255,255,255,.055);
	backdrop-filter: blur(12px);
}

.nb-fp-hero__item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.nb-fp-hero__item:last-child {
	border-bottom: 0;
}

.nb-fp-hero__item strong {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(212,175,55,.55);
	border-radius: 50%;
	color: var(--gold);
	font-size: 13px;
	font-weight: 850;
}

.nb-fp-hero__item span {
	color: rgba(255,255,255,.84);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

/*
|--------------------------------------------------------------------------
| Introduction
|--------------------------------------------------------------------------
*/

.nb-fp-intro {
	padding: 90px 0 58px;
	text-align: center;
}

/*
|--------------------------------------------------------------------------
| What We Do
|--------------------------------------------------------------------------
*/

.nb-fp-support {
	padding: 35px 0 90px;
}

.nb-fp-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.nb-fp-card {
	position: relative;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 12px 35px rgba(11,31,58,.055);
	transition:
		transform .25s ease,
		border-color .25s ease,
		box-shadow .25s ease;
}

.nb-fp-card:hover {
	transform: translateY(-7px);
	border-color: var(--gold);
	box-shadow: 0 20px 45px rgba(11,31,58,.11);
}

.nb-fp-card__number {
	display: grid;
	place-items: center;
	width: 55px;
	height: 55px;
	margin-bottom: 23px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--gold);
	font-size: 14px;
	font-weight: 850;
}

.nb-fp-card h3 {
	margin: 0;
	color: var(--navy);
	font-size: 23px;
	font-weight: 800;
	line-height: 1.3;
}

.nb-fp-card p {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

/*
|--------------------------------------------------------------------------
| Who Can Apply
|--------------------------------------------------------------------------
*/

.nb-fp-apply {
	padding: 92px 0;
	background: var(--soft);
}

.nb-fp-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	gap: 60px;
	align-items: start;
}

.nb-fp-content > p {
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.nb-fp-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px 25px;
	margin: 31px 0 0;
	padding: 0;
	list-style: none;
}

.nb-fp-check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--text);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.55;
}

.nb-fp-check-list li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	display: grid;
	place-items: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: rgba(212,175,55,.17);
	color: #8a6812;
	font-size: 12px;
	font-weight: 900;
}

.nb-fp-note {
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 14px 38px rgba(11,31,58,.07);
}

.nb-fp-note h3 {
	margin: 0;
	color: var(--navy);
	font-size: 22px;
	line-height: 1.3;
}

.nb-fp-note p {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.nb-fp-note ul {
	display: grid;
	gap: 11px;
	margin: 23px 0 0;
	padding: 0;
	list-style: none;
}

.nb-fp-note li {
	position: relative;
	padding-left: 20px;
	color: var(--text);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

.nb-fp-note li::before {
	content: "";
	position: absolute;
	top: .54em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

/*
|--------------------------------------------------------------------------
| Application Requirements
|--------------------------------------------------------------------------
*/

.nb-fp-requirements {
	padding: 95px 0;
}

.nb-fp-section-heading {
	max-width: 790px;
	margin-bottom: 42px;
}

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

.nb-fp-requirement {
	display: flex;
	gap: 20px;
	padding: 27px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
}

.nb-fp-requirement__icon {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--navy);
	color: var(--gold);
	font-size: 14px;
	font-weight: 850;
}

.nb-fp-requirement h3 {
	margin: 0;
	color: var(--navy);
	font-size: 18px;
	line-height: 1.35;
}

.nb-fp-requirement p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.65;
}

/*
|--------------------------------------------------------------------------
| Process
|--------------------------------------------------------------------------
*/

.nb-fp-process {
	padding: 95px 0;
	background: var(--navy);
}

.nb-fp-process .nb-fp-title {
	color: var(--white);
}

.nb-fp-process .nb-fp-description {
	color: rgba(255,255,255,.7);
}

.nb-fp-process__heading {
	margin-bottom: 43px;
	text-align: center;
}

.nb-fp-process-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.nb-fp-process-item {
	position: relative;
	min-height: 205px;
	padding: 27px 20px;
	border: 1px solid rgba(255,255,255,.12);
	border-top: 3px solid var(--gold);
	border-radius: 0 0 13px 13px;
	background: rgba(255,255,255,.055);
}

.nb-fp-process-item span {
	display: block;
	margin-bottom: 24px;
	color: var(--gold);
	font-size: 27px;
	font-weight: 850;
	line-height: 1;
}

.nb-fp-process-item h3 {
	margin: 0;
	color: var(--white);
	font-size: 18px;
	line-height: 1.35;
}

.nb-fp-process-item p {
	margin: 11px 0 0;
	color: rgba(255,255,255,.65);
	font-size: 13px;
	line-height: 1.65;
}

/*
|--------------------------------------------------------------------------
| Important Information
|--------------------------------------------------------------------------
*/

.nb-fp-important {
	padding: 92px 0;
	background: var(--white);
}

.nb-fp-important-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 38px;
}

.nb-fp-important-card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--soft);
}

.nb-fp-important-card__label {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(212,175,55,.15);
	color: #83620e;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.nb-fp-important-card h3 {
	margin: 0;
	color: var(--navy);
	font-size: 19px;
	line-height: 1.35;
}

.nb-fp-important-card p {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.nb-fp-cta {
	padding: 80px 0;
	background: var(--soft);
}

.nb-fp-cta__inner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: 48px;
	border-radius: 18px;
	background:
		radial-gradient(
			circle at 90% 10%,
			rgba(212,175,55,.18),
			transparent 30%
		),
		var(--navy);
	box-shadow: 0 18px 50px rgba(11,31,58,.14);
}

.nb-fp-cta__inner::after {
	content: "";
	position: absolute;
	right: -130px;
	bottom: -220px;
	width: 400px;
	height: 400px;
	border: 55px solid rgba(255,255,255,.025);
	border-radius: 50%;
}

.nb-fp-cta__content {
	position: relative;
	z-index: 1;
}

.nb-fp-cta h2 {
	max-width: 720px;
	margin: 0;
	color: var(--white);
	font-size: clamp(30px, 4vw, 45px);
	line-height: 1.15;
}

.nb-fp-cta p {
	max-width: 720px;
	margin: 16px 0 0;
	color: rgba(255,255,255,.69);
	font-size: 16px;
	line-height: 1.7;
}

.nb-fp-cta__actions {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {

	.nb-fp-hero__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.nb-fp-hero__panel {
		grid-template-columns: repeat(3, 1fr);
	}

	.nb-fp-hero__item {
		align-items: flex-start;
		flex-direction: column;
	}

	.nb-fp-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nb-fp-process-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.nb-fp-important-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nb-fp-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

}

@media (max-width: 768px) {

	.nb-fp-container {
		width: min(100% - 28px, 1180px);
	}

	.nb-fp-hero {
		padding: 72px 0;
	}

	.nb-fp-hero h1 {
		font-size: 39px;
	}

	.nb-fp-hero p {
		font-size: 17px;
	}

	.nb-fp-hero__actions {
		flex-direction: column;
	}

	.nb-fp-hero__actions .nb-fp-button {
		width: 100%;
	}

	.nb-fp-hero__panel,
	.nb-fp-card-grid,
	.nb-fp-two-column,
	.nb-fp-requirements-grid,
	.nb-fp-process-grid,
	.nb-fp-important-grid {
		grid-template-columns: 1fr;
	}

	.nb-fp-hero__item {
		align-items: center;
		flex-direction: row;
	}

	.nb-fp-check-list {
		grid-template-columns: 1fr;
	}

	.nb-fp-intro,
	.nb-fp-support,
	.nb-fp-apply,
	.nb-fp-requirements,
	.nb-fp-process,
	.nb-fp-important {
		padding-top: 65px;
		padding-bottom: 65px;
	}

	.nb-fp-cta {
		padding: 60px 0;
	}

	.nb-fp-cta__inner {
		padding: 33px 25px;
	}

	.nb-fp-cta__actions {
		width: 100%;
	}

	.nb-fp-cta__actions .nb-fp-button {
		width: 100%;
	}

}

@media (max-width: 480px) {

	.nb-fp-hero h1 {
		font-size: 35px;
	}

	.nb-fp-card,
	.nb-fp-note,
	.nb-fp-requirement,
	.nb-fp-important-card {
		padding: 23px;
	}

	.nb-fp-requirement {
		flex-direction: column;
	}

}

.nb-fp-description--left {
	margin-left: 0;
}
