:root {
	--nm-ink: #2f454b;
	--nm-forest: #344b52;
	--nm-green: #4d646b;
	--nm-copper: #f2ae3f;
	--nm-gold: #f6bd54;
	--nm-mist: #eef3f4;
	--nm-cloud: #f8faf9;
	--nm-line: #d9e2e4;
	--nm-white: #ffffff;
	--nm-muted: #65787e;
	--nm-shadow: 0 20px 50px rgba(47, 69, 75, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--nm-ink);
	background: var(--nm-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

input,
select,
textarea,
button {
	font: inherit;
}

.screen-reader-text,
.nm-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.nm-skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	color: var(--nm-white);
	background: var(--nm-forest);
	clip: auto;
}

.nm-site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(217, 226, 228, 0.9);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

.nm-header-inner,
.nm-container,
.nm-hero-inner,
.nm-footer-main,
.nm-footer-cta {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.nm-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 76px;
}

.nm-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	font-weight: 800;
}

.nm-brand-logo {
	display: block;
	width: min(320px, 43vw);
	height: auto;
	max-height: 58px;
	object-fit: contain;
}

.nm-brand-mark {
	display: inline-grid;
	width: 40px;
	height: 40px;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 8px;
	color: var(--nm-white);
	background: linear-gradient(135deg, var(--nm-forest), var(--nm-copper));
	font-size: 18px;
}

.nm-brand-text {
	font-size: 18px;
	line-height: 1.15;
}

.custom-logo-link img,
.custom-logo {
	display: block;
	max-width: 320px;
	max-height: 58px;
}

.nm-menu,
.nm-footer-menu {
	display: flex;
	gap: 22px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nm-menu li {
	position: relative;
}

.nm-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	color: var(--nm-muted);
	font-size: 15px;
	font-weight: 700;
}

.nm-menu a:hover,
.nm-menu a:focus {
	color: var(--nm-forest);
}

.nm-menu .sub-menu {
	position: absolute;
	z-index: 20;
	top: 100%;
	left: 0;
	display: none;
	width: max-content;
	min-width: 230px;
	max-width: 290px;
	margin: 0;
	padding: 8px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
	box-shadow: var(--nm-shadow);
	list-style: none;
}

.nm-menu .sub-menu .sub-menu {
	top: -9px;
	left: calc(100% + 8px);
}

.nm-menu li:hover > .sub-menu,
.nm-menu li:focus-within > .sub-menu {
	display: grid;
	gap: 4px;
}

.nm-menu .sub-menu a {
	display: flex;
	width: 100%;
	min-height: 0;
	padding: 9px 10px;
	border-radius: 6px;
	color: var(--nm-ink);
	white-space: normal;
}

.nm-menu .sub-menu a:hover,
.nm-menu .sub-menu a:focus {
	background: var(--nm-cloud);
}

.nm-header-actions {
	display: flex;
	gap: 14px;
	align-items: center;
}

.nm-phone {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--nm-forest);
	font-weight: 800;
	white-space: nowrap;
}

.nm-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
}

.nm-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--nm-ink);
}

.nm-button {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid var(--nm-copper);
	border-radius: 8px;
	color: var(--nm-ink);
	background: var(--nm-copper);
	cursor: pointer;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nm-button:hover,
.nm-button:focus {
	transform: translateY(-1px);
	border-color: var(--nm-copper);
	background: var(--nm-copper);
	box-shadow: 0 14px 28px rgba(242, 174, 63, 0.28);
}

.nm-button-primary {
	color: var(--nm-ink);
	border-color: var(--nm-copper);
	background: var(--nm-copper);
	box-shadow: 0 12px 24px rgba(242, 174, 63, 0.28);
}

.nm-button-primary:hover,
.nm-button-primary:focus {
	border-color: var(--nm-copper);
	background: var(--nm-copper);
}

.nm-button-ghost {
	color: var(--nm-ink);
	border-color: var(--nm-copper);
	background: var(--nm-copper);
}

.nm-button-light {
	color: var(--nm-ink);
	border-color: var(--nm-copper);
	background: var(--nm-copper);
}

.nm-button-small {
	min-height: 40px;
	padding: 10px 14px;
	color: var(--nm-ink);
	border-color: var(--nm-copper);
	background: var(--nm-copper);
}

.nm-hero {
	position: relative;
	overflow: hidden;
	padding: 84px 0 72px;
	background:
		linear-gradient(120deg, rgba(52, 75, 82, 0.94), rgba(47, 69, 75, 0.76)),
		url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='900' fill='%23eef3f4'/%3E%3Cpath d='M0 720L230 600L460 680L680 520L910 580L1160 420L1600 520V900H0Z' fill='%23d9e2e4'/%3E%3Cpath d='M170 580L360 430L550 580V900H170Z' fill='%23ffffff' opacity='.85'/%3E%3Cpath d='M780 515L995 345L1210 515V900H780Z' fill='%23ffffff' opacity='.82'/%3E%3Cpath d='M1120 480L1280 360L1440 480V900H1120Z' fill='%23f8faf9' opacity='.9'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
}

.nm-hero::after {
	position: absolute;
	right: -120px;
	bottom: -180px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	content: "";
}

.nm-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
	gap: 48px;
	align-items: center;
}

.nm-hero-copy {
	color: var(--nm-white);
}

.nm-eyebrow {
	margin: 0 0 12px;
	color: var(--nm-copper);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.nm-hero .nm-eyebrow,
.nm-footer-cta .nm-eyebrow {
	color: #f1c778;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.08;
}

h1 {
	max-width: 760px;
	font-size: clamp(44px, 8vw, 82px);
}

h2 {
	font-size: clamp(30px, 4vw, 48px);
}

h3 {
	font-size: 21px;
}

.nm-hero-lede {
	max-width: 660px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 20px;
}

.nm-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.nm-hero-disclosure {
	border-bottom: 1px solid var(--nm-line);
	background: var(--nm-white);
}

.nm-hero-disclosure .nm-container {
	display: grid;
	gap: 8px;
	padding-top: 18px;
	padding-bottom: 18px;
}

.nm-hero-disclosure p {
	margin: 0;
	color: var(--nm-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
}

.nm-proof-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 620px;
	margin-top: 34px;
}

.nm-proof-row div {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
}

.nm-proof-row strong {
	display: block;
	color: var(--nm-white);
	font-size: 30px;
	line-height: 1;
}

.nm-proof-row span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 700;
}

.nm-rate-panel,
.nm-form-panel {
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
	box-shadow: var(--nm-shadow);
}

.nm-rate-panel {
	padding: 28px;
}

.nm-panel-heading {
	margin-bottom: 20px;
}

.nm-calc {
	display: grid;
	gap: 14px;
}

.nm-form label,
.nm-calc label {
	display: grid;
	gap: 7px;
	color: var(--nm-ink);
	font-size: 14px;
	font-weight: 800;
}

.nm-form input,
.nm-form select,
.nm-form textarea,
.nm-calc input,
.nm-calc select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	color: var(--nm-ink);
	background: var(--nm-white);
}

.nm-form textarea {
	resize: vertical;
}

.nm-form input:focus,
.nm-form select:focus,
.nm-form textarea:focus,
.nm-calc input:focus,
.nm-calc select:focus {
	outline: 3px solid rgba(184, 107, 54, 0.18);
	border-color: var(--nm-copper);
}

.nm-payment-result {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding: 18px;
	border-radius: 8px;
	background: var(--nm-mist);
}

.nm-payment-result span {
	color: var(--nm-muted);
	font-size: 13px;
	font-weight: 800;
}

.nm-payment-result strong {
	color: var(--nm-forest);
	font-size: 34px;
	line-height: 1;
}

.nm-small {
	margin: 0;
	color: var(--nm-muted);
	font-size: 13px;
}

.nm-section {
	padding: 86px 0;
}

.nm-section-light {
	background: var(--nm-cloud);
}

.nm-section-band {
	color: var(--nm-white);
	background: var(--nm-forest);
}

.nm-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.72fr);
	gap: 32px;
	align-items: end;
	margin-bottom: 34px;
}

.nm-program-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.nm-program-grid article {
	padding: 24px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
}

.nm-program-grid p,
.nm-split p,
.nm-contact-grid p,
.nm-form-intro p,
.nm-entry-content,
.nm-content p {
	color: var(--nm-muted);
}

.nm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 20px;
	border-radius: 8px;
	color: var(--nm-white);
	background: var(--nm-copper);
	font-size: 13px;
	font-weight: 900;
}

.nm-split,
.nm-band-grid,
.nm-form-layout,
.nm-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.nm-process-list {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: nm-process;
}

.nm-process-list li {
	position: relative;
	padding: 22px 22px 22px 72px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
	counter-increment: nm-process;
}

.nm-process-list li::before {
	position: absolute;
	top: 20px;
	left: 20px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 8px;
	color: var(--nm-white);
	background: var(--nm-forest);
	content: counter(nm-process);
	font-size: 13px;
	font-weight: 900;
}

.nm-process-list strong,
.nm-process-list span {
	display: block;
}

.nm-process-list span {
	margin-top: 4px;
	color: var(--nm-muted);
}

.nm-benefits {
	display: grid;
	gap: 16px;
}

.nm-benefits p {
	margin: 0;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.86);
}

.nm-form-intro {
	position: sticky;
	top: 108px;
}

.nm-check-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.nm-check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--nm-ink);
	font-weight: 800;
}

.nm-check-list li::before {
	position: absolute;
	left: 0;
	color: var(--nm-copper);
	content: "✓";
	font-weight: 900;
}

.nm-form-panel {
	padding: 26px;
}

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

.nm-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.nm-form-span {
	grid-column: 1 / -1;
}

.nm-consent {
	display: grid !important;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px !important;
	align-items: start;
	color: var(--nm-muted) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.nm-consent input {
	width: 18px !important;
	min-height: 18px !important;
	margin-top: 3px;
	padding: 0 !important;
}

.nm-captcha {
	max-width: 100%;
	min-height: 1px;
	overflow: hidden;
}

.nm-captcha .cf-turnstile,
.nm-captcha .g-recaptcha {
	max-width: 100%;
}

.nm-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nm-form-notice {
	padding: 12px 14px;
	border-radius: 8px;
	font-weight: 800;
}

.nm-form-notice.is-success {
	color: var(--nm-forest);
	background: var(--nm-mist);
}

.nm-form-notice.is-error {
	color: #8d3225;
	background: #fbe4df;
}

.nm-page-hero {
	padding: 70px 0;
	color: var(--nm-white);
	background: var(--nm-forest);
}

.nm-content {
	max-width: 860px;
}

.nm-page-intro {
	margin-top: 0;
	color: var(--nm-ink);
	font-size: 20px;
	font-weight: 700;
}

.nm-content-card,
.nm-page-cta,
.nm-page-disclosure {
	margin-top: 24px;
	padding: 24px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
}

.nm-content-card {
	box-shadow: 0 14px 34px rgba(47, 69, 75, 0.08);
}

.nm-page-cta {
	background: var(--nm-cloud);
}

.nm-page-cta .nm-button {
	margin-top: 8px;
}

.nm-page-disclosure {
	background: var(--nm-mist);
}

.nm-page-disclosure p {
	margin: 0;
	color: var(--nm-ink);
	font-size: 14px;
	font-weight: 800;
}

.nm-page-disclosure p + p {
	margin-top: 8px;
}

.nm-entry-content h2 {
	margin-top: 30px;
	margin-bottom: 12px;
}

.nm-entry-content .nm-content-card h2,
.nm-entry-content .nm-page-cta h2 {
	margin-top: 0;
}

.nm-entry-content ul:not(.nm-check-list) {
	padding-left: 22px;
	color: var(--nm-muted);
}

.nm-entry-content li + li {
	margin-top: 8px;
}

.nm-entry-content a {
	color: var(--nm-forest);
	text-decoration: underline;
}

.nm-entry-content img {
	border-radius: 8px;
}

.nm-footer {
	color: rgba(255, 255, 255, 0.78);
	background: var(--nm-ink);
}

.nm-footer-cta {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: space-between;
	padding: 46px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nm-footer-cta h2 {
	color: var(--nm-white);
	font-size: clamp(28px, 3vw, 42px);
}

.nm-footer-main {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	gap: 40px;
	padding: 44px 0;
}

.nm-footer-disclosure {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 24px 0 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.nm-footer-disclosure p {
	max-width: 1060px;
	margin: 0;
}

.nm-footer-disclosure p + p {
	margin-top: 8px;
}

.nm-footer a {
	color: var(--nm-white);
}

.nm-brand-footer {
	width: max-content;
	max-width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
	margin-bottom: 16px;
	background: var(--nm-white);
	color: var(--nm-ink);
}

.nm-brand-footer .nm-brand-logo {
	width: min(340px, 100%);
	max-height: 60px;
}

.nm-footer h3 {
	margin-bottom: 14px;
	color: var(--nm-white);
	font-size: 16px;
}

.nm-footer-menu {
	display: grid;
	gap: 10px;
	justify-content: start;
}

.nm-disclaimer {
	font-size: 13px;
}

.nm-cookie-banner {
	position: fixed;
	z-index: 1000;
	right: 16px;
	bottom: 16px;
	left: 16px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: min(1040px, calc(100% - 32px));
	margin: 0 auto;
	padding: 18px;
	border: 1px solid var(--nm-line);
	border-radius: 8px;
	background: var(--nm-white);
	box-shadow: var(--nm-shadow);
}

.nm-cookie-banner[hidden] {
	display: none;
}

.nm-cookie-copy {
	display: grid;
	gap: 6px;
}

.nm-cookie-copy strong {
	color: var(--nm-forest);
	font-size: 18px;
}

.nm-cookie-copy p {
	margin: 0;
	color: var(--nm-muted);
	font-size: 14px;
}

.nm-cookie-copy a {
	color: var(--nm-forest);
	font-weight: 800;
	text-decoration: underline;
}

.nm-cookie-actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

@media (max-width: 980px) {
	.nm-header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nm-menu-toggle {
		display: block;
	}

	.nm-primary-nav,
	.nm-header-actions {
		display: none;
	}

	.nm-primary-nav.is-open {
		display: block;
		grid-column: 1 / -1;
		padding: 0 0 18px;
	}

	.nm-primary-nav.is-open .nm-menu {
		display: grid;
		gap: 8px;
		justify-content: stretch;
	}

	.nm-primary-nav.is-open .nm-menu a {
		display: block;
		padding: 12px;
		border-radius: 8px;
		background: var(--nm-cloud);
	}

	.nm-primary-nav.is-open .nm-menu .sub-menu,
	.nm-primary-nav.is-open .nm-menu .sub-menu .sub-menu {
		position: static;
		display: grid;
		width: 100%;
		min-width: 0;
		max-width: none;
		padding: 6px 0 0 14px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.nm-primary-nav.is-open .nm-menu .sub-menu a {
		background: var(--nm-white);
	}

	.nm-hero-inner,
	.nm-section-heading,
	.nm-split,
	.nm-band-grid,
	.nm-form-layout,
	.nm-contact-grid,
	.nm-footer-main {
		grid-template-columns: 1fr;
	}

	.nm-program-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nm-form-intro {
		position: static;
	}
}

@media (max-width: 680px) {
	.nm-header-inner,
	.nm-container,
	.nm-hero-inner,
	.nm-footer-main,
	.nm-footer-cta {
		width: min(100% - 24px, 1180px);
	}

	.nm-header-inner {
		gap: 12px;
		min-height: 68px;
	}

	.nm-brand-logo,
	.custom-logo-link img,
	.custom-logo {
		width: min(270px, 72vw);
		max-height: 48px;
	}

	.nm-hero,
	.nm-section {
		padding: 58px 0;
	}

	.nm-hero-inner {
		gap: 28px;
	}

	h1 {
		font-size: clamp(38px, 13vw, 54px);
	}

	h2 {
		font-size: clamp(28px, 9vw, 38px);
	}

	.nm-hero-lede {
		font-size: 18px;
	}

	.nm-hero-actions,
	.nm-footer-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.nm-button {
		width: 100%;
	}

	.nm-proof-row,
	.nm-program-grid,
	.nm-form-grid {
		grid-template-columns: 1fr;
	}

	.nm-proof-row strong {
		font-size: 26px;
	}

	.nm-rate-panel,
	.nm-form-panel,
	.nm-program-grid article {
		padding: 20px;
	}

	.nm-payment-result {
		align-items: flex-start;
		flex-direction: column;
	}

	.nm-payment-result strong {
		font-size: 30px;
	}

	.nm-cookie-banner {
		grid-template-columns: 1fr;
	}

	.nm-cookie-actions {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 420px) {
	.nm-brand-logo,
	.custom-logo-link img,
	.custom-logo {
		width: min(225px, 66vw);
		max-height: 44px;
	}

	.nm-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.nm-rate-panel,
	.nm-form-panel,
	.nm-program-grid article,
	.nm-process-list li {
		padding: 18px;
	}

	.nm-process-list li {
		padding-left: 62px;
	}

	.nm-captcha .cf-turnstile,
	.nm-captcha .g-recaptcha {
		margin-bottom: -12px;
		transform: scale(0.84);
		transform-origin: left top;
	}
}
