/**
 * Front page sections — Phase 5 (tokens from tokens.css via main.css cascade).
 */

.nmp-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	height: 26px;
	padding: 0 0.75rem;
	border-radius: var(--nmp-radius-pill);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	background: var(--nmp-color-primary);
	color: #fff;
}

.nmp-pill__icon {
	display: inline-grid;
	place-items: center;
	width: 1em;
	line-height: 1;
	font-size: 0.95em;
}

.nmp-pill--outline {
	background: transparent;
	color: var(--nmp-color-primary);
	border: 1px solid rgba(214, 0, 0, 0.25);
}

.nmp-home-hero {
	position: relative;
	overflow: hidden;
	min-height: 744px;
	padding: 6rem 0 2.5rem;
	background:
		radial-gradient(ellipse 85% 70% at 92% 18%, rgba(214, 0, 0, 0.07) 0%, transparent 55%),
		linear-gradient(90deg, #fff 0%, #fff 100%);
}

.nmp-home-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(51vw, 920px);
	background: linear-gradient(180deg, rgba(255, 241, 241, 0.95) 0%, rgba(255, 232, 232, 0.92) 100%);
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.nmp-home-hero::after {
	content: "";
	position: absolute;
	top: 8rem;
	right: 4vw;
	width: min(44vw, 780px);
	height: 32rem;
	border-radius: 999px;
	background: radial-gradient(ellipse at center, rgba(204, 0, 0, 0.13), transparent 67%);
	filter: blur(36px);
	pointer-events: none;
}

.nmp-home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.nmp-home-hero__grid {
		grid-template-columns: 50.5% minmax(0, 1fr);
		gap: 1rem;
	}
}

.nmp-home-hero__title {
	font-size: clamp(2.5rem, 4.17vw, 3.75rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 1rem 0 0;
}

.nmp-text-accent {
	color: var(--nmp-color-primary);
}

.nmp-home-hero__lead {
	max-width: 35rem;
	margin: 1.7rem 0 0;
	font-size: 1.125rem;
	line-height: 1.58;
}

.nmp-home-hero__lead strong {
	font-weight: 800;
}

.nmp-home-hero__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin: 0.65rem 0 0;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--nmp-color-text);
}

.nmp-home-hero__rating-stars {
	color: var(--nmp-color-primary);
	letter-spacing: 0.06em;
	font-size: 0.75rem;
}

.nmp-home-hero__rating-sep {
	color: var(--nmp-color-muted);
	font-weight: 600;
}

.nmp-home-hero__rating-note {
	margin: 0.35rem 0 0.85rem;
	font-size: 0.75rem;
}

.nmp-home-hero__cta-row {
	margin-top: 1.95rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.nmp-home-hero__cta-row .nmp-btn {
	min-height: 52px;
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}

.nmp-home-hero__button-icon {
	display: inline-block;
	margin-left: 0.45rem;
	font-size: 1rem;
	line-height: 1;
	transform: translateY(-0.5px);
}

.nmp-home-hero__savings-badge {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	min-height: 42px;
	margin: 1rem 0 0;
	padding: 0.625rem 1rem;
	border: 1px solid #ffc107;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1.5;
	background: #fff3cd;
	color: #141414;
}

.nmp-home-hero__savings-badge > span:nth-child(2) {
	color: #8b4f00;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25rem;
}

.nmp-home-hero__savings-vs {
	color: #a86900;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.nmp-home-hero__savings-ico {
	font-size: 1rem;
	line-height: 1;
}

.nmp-home-hero__visual-stack {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	margin-top: 1.1rem;
	padding-bottom: 1.25rem;
}

.nmp-home-hero__visual-stack::before {
	content: "";
	position: absolute;
	inset: -1.1rem -1.6rem 4.8rem -1.2rem;
	z-index: -1;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(204, 0, 0, 0.22), rgba(204, 0, 0, 0));
	filter: blur(28px);
	opacity: 0.85;
}

.nmp-home-hero__new-chip {
	align-self: flex-end;
	transform: translateY(0);
}

@media (min-width: 900px) {
	.nmp-home-hero__new-chip {
		position: absolute;
		top: -0.5rem;
		right: 0;
	}
}

.nmp-home-hero__preview-card {
	min-height: 220px;
	padding: 1.5rem;
	border-radius: var(--nmp-radius-lg);
	background: var(--nmp-color-navy);
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.45;
	box-shadow: var(--nmp-shadow-md);
}

.nmp-home-hero__preview-muted {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
}

.nmp-home-hero__mini-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.5rem;
	margin-top: -0.15rem;
}

@media (min-width: 560px) {
	.nmp-home-hero__mini-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.nmp-home-hero__mini-stat {
	position: relative;
	overflow: hidden;
	min-height: 50px;
	padding: 0.62rem 0.65rem 0.55rem;
	text-align: center;
	font-size: 0.6875rem;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(229, 231, 235, 0.98);
	border-radius: 8px;
	color: var(--nmp-color-text);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.nmp-home-hero__mini-stat::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(135deg, rgba(214, 0, 0, 0.1), transparent 42%);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.nmp-home-hero__mini-stat:hover {
	transform: translateY(-3px);
	background: #fff;
	border-color: rgba(214, 0, 0, 0.28);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14), 0 0 0 3px rgba(214, 0, 0, 0.04);
}

.nmp-home-hero__mini-stat:hover::before {
	opacity: 1;
}

.nmp-home-hero__mini-stat:hover .nmp-home-hero__mini-label {
	color: var(--nmp-color-primary);
}

.nmp-home-hero__mini-label {
	display: block;
	font-size: 0.55rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.045em;
	color: #a8adba;
	margin-bottom: 0.16rem;
}

.nmp-home-hero__mini-stat strong {
	display: block;
	font-size: 0.72rem;
	line-height: 1.25;
	font-weight: 800;
}

.nmp-home-hero__mini-suffix {
	display: block;
	margin-top: 0.1rem;
	font-size: 10px;
	font-weight: 600;
	color: var(--nmp-color-muted);
}

@media (prefers-reduced-motion: reduce) {
	.nmp-home-hero__mini-stat,
	.nmp-home-hero__mini-stat::before {
		transition: none;
	}

	.nmp-home-hero__mini-stat:hover {
		transform: none;
	}
}

/* Hero — COMAND / map preview (reference UI) */
.nmp-home-hero__nav-ui {
	border-radius: var(--nmp-radius-lg);
	background: var(--nmp-color-navy);
	color: rgba(255, 255, 255, 0.95);
	box-shadow: var(--nmp-shadow-md);
	overflow: hidden;
	font-size: 0.8125rem;
	line-height: 1.35;
}

.nmp-home-hero__nav-ui-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.5rem;
	padding: 0.65rem 1rem;
	background: rgba(0, 0, 0, 0.2);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nmp-home-hero__nav-ui-dot {
	opacity: 0.5;
}

.nmp-home-hero__nav-ui-ver {
	margin-left: auto;
	opacity: 0.85;
	font-weight: 600;
}

.nmp-home-hero__nav-ui-map {
	position: relative;
	min-height: 375px;
	padding: 1rem 1rem 1.25rem;
	background: linear-gradient(145deg, #1e3a5f 0%, #0f1f33 55%, #0a1628 100%);
}

.nmp-home-hero__nav-ui-route {
	position: absolute;
	inset: 12% 18% 30% 12%;
	border-radius: 999px;
	border: 5px solid rgba(37, 153, 244, 0.95);
	border-bottom-color: transparent;
	border-left-color: transparent;
	transform: rotate(-8deg);
	pointer-events: none;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.nmp-home-hero__nav-ui-turn {
	position: absolute;
	left: 1.5rem;
	bottom: 1.55rem;
	z-index: 2;
	width: 292px;
	min-height: 98px;
	margin: 0;
	padding: 1.35rem 1rem 1rem 5.5rem;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	background: rgba(8, 17, 31, 0.72);
	font-size: 0.9375rem;
	font-weight: 600;
}

.nmp-home-hero__nav-ui-turn::before {
	content: "";
	position: absolute;
	left: 1.45rem;
	top: 1.85rem;
	width: 34px;
	height: 34px;
	border-left: 4px solid #22d3ee;
	border-top: 4px solid #22d3ee;
	transform: rotate(45deg);
}

.nmp-home-hero__nav-ui-meta {
	position: absolute;
	left: 7.5rem;
	bottom: 2.6rem;
	z-index: 3;
	margin: 0;
	font-size: 11px;
	opacity: 0.8;
}

.nmp-home-hero__nav-ui-speed {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.35);
	border: 2px solid rgba(255, 255, 255, 0.35);
	line-height: 1.05;
}

.nmp-home-hero__nav-ui-speed-val {
	font-size: 1.125rem;
	font-weight: 800;
}

.nmp-home-hero__nav-ui-speed-unit {
	display: block;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0.85;
}

.nmp-home-hero__nav-ui-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.65rem 1rem 0.85rem;
	background: rgba(0, 0, 0, 0.15);
}

.nmp-home-hero__nav-ui-tags span {
	font-size: 10px;
	font-weight: 700;
	padding: 0.25rem 0.5rem;
	border-radius: var(--nmp-radius-pill);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero right image panel */
.nmp-home-hero__nav-ui {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	min-height: auto;
	padding: 8px;
	border: 0;
	border-radius: 16px;
	background: #030712;
	color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18), 0 24px 60px rgba(204, 0, 0, 0.14);
	overflow: visible;
	font-size: 0.95rem;
	line-height: 1.35;
}

.nmp-home-hero__map-svg {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
	background: #0b1626;
}

.nmp-home-hero__map-img {
	aspect-ratio: 480 / 300;
	object-fit: cover;
	object-position: center;
}

/*
 * Legacy HTML map classes remain below for backwards safety, but the homepage hero now
 * renders the reference SVG map above.
 */
.nmp-home-hero__nav-ui--legacy {
	min-height: 405px;
	border: 8px solid #050814;
	background: #0b1829;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18), 0 24px 60px rgba(204, 0, 0, 0.14);
	overflow: visible;
	font-size: 0.95rem;
	line-height: 1.35;
}

.nmp-home-hero__nav-ui-head {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.35rem;
	min-height: 42px;
	padding: 0 1.05rem;
	background: #08101d;
	border-radius: 0 0 7px 7px;
	font-size: clamp(0.88rem, 1.18vw, 1.02rem);
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.nmp-home-hero__nav-ui-dot {
	opacity: 0.9;
}

.nmp-home-hero__nav-ui-ver {
	margin-left: auto;
	opacity: 0.85;
	font-weight: 600;
	white-space: nowrap;
}

.nmp-home-hero__nav-ui-map {
	position: relative;
	min-height: 347px;
	padding: 1rem 1rem 1.25rem;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(155deg, transparent 0 33%, rgba(255, 255, 255, 0.045) 33.5% 37%, transparent 37.5% 100%),
		linear-gradient(97deg, transparent 0 27%, rgba(255, 255, 255, 0.05) 27.7% 30%, transparent 30.8% 100%),
		linear-gradient(176deg, transparent 0 56%, rgba(255, 255, 255, 0.05) 56.5% 60%, transparent 60.5% 100%),
		#0f1c2d;
	background-size: 90px 90px, 90px 90px, 100% 100%, 100% 100%, 100% 100%, auto;
}

.nmp-home-hero__nav-ui-route {
	position: absolute;
	left: 35%;
	top: 37%;
	width: 48%;
	height: 38%;
	border-top: 10px solid #2b90ff;
	border-radius: 58% 82% 0 0;
	transform: rotate(-23deg);
	pointer-events: none;
	box-shadow: 0 -2px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.nmp-home-hero__nav-ui-route::before {
	content: "";
	position: absolute;
	inset: -7px 0 auto 0;
	height: 2px;
	border-top: 2px dashed rgba(255, 255, 255, 0.55);
	border-radius: inherit;
}

.nmp-home-hero__nav-ui-route::after {
	content: "";
	position: absolute;
	right: -8px;
	top: -22px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0 23%, #e60000 25% 100%);
}

.nmp-home-hero__nav-ui-turn {
	position: absolute;
	left: 1.05rem;
	bottom: 1rem;
	z-index: 2;
	width: min(292px, calc(100% - 2.1rem));
	min-height: 86px;
	margin: 0;
	padding: 0.98rem 1rem 0.85rem 5.25rem;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 12px;
	background: rgba(8, 17, 31, 0.82);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	font-size: 1.08rem;
	font-weight: 800;
}

.nmp-home-hero__nav-ui-turn::before {
	content: "";
	position: absolute;
	left: 1.35rem;
	top: 1.75rem;
	width: 40px;
	height: 40px;
	border-left: 4px solid #22d3ee;
	border-top: 4px solid #22d3ee;
	transform: rotate(45deg);
}

.nmp-home-hero__nav-ui-turn::after {
	content: "";
	position: absolute;
	left: 3.15rem;
	top: 1.45rem;
	width: 4px;
	height: 52px;
	border-radius: 999px;
	background: #22d3ee;
}

.nmp-home-hero__nav-ui-turn strong {
	display: block;
	margin-top: 0.25rem;
	color: #9fb1cf;
	font-size: 0.93rem;
	font-weight: 500;
}

.nmp-home-hero__nav-ui-meta {
	display: block;
	position: static;
	margin: 0.12rem 0 0;
	color: #8195b6;
	font-size: 0.86rem;
	opacity: 1;
	font-weight: 500;
}

.nmp-home-hero__nav-ui-speed {
	position: absolute;
	right: 2.25rem;
	bottom: 2.6rem;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	text-align: center;
	background: rgba(8, 17, 31, 0.45);
	border: 3px solid #e60000;
	line-height: 1.05;
}

.nmp-home-hero__nav-ui-speed-val {
	font-size: 1.45rem;
	font-weight: 800;
}

.nmp-home-hero__nav-ui-speed-unit {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: none;
	opacity: 0.85;
}

.nmp-home-hero__nav-ui-fsc {
	position: absolute;
	top: -10px;
	right: -12px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 0.9rem;
	border-radius: 9px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
}

.nmp-home-hero__nav-ui-active {
	position: absolute;
	left: -18px;
	bottom: -16px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 34px;
	padding: 0 0.95rem;
	border-radius: 9px;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.14);
	font-size: 0.76rem;
	font-weight: 800;
}

.nmp-home-hero__nav-ui-active::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
}

@media (max-width: 559px) {
	.nmp-home-hero {
		min-height: auto;
		padding: 4rem 0 2rem;
		overflow: hidden;
	}

	.nmp-home-hero__grid,
	.nmp-home-hero__copy,
	.nmp-home-hero__visual-stack {
		min-width: 0;
	}

	.nmp-home-hero__title {
		max-width: 100%;
		font-size: clamp(1.9rem, 9.6vw, 2.25rem);
		line-height: 1.08;
		overflow-wrap: break-word;
	}

	.nmp-home-hero__lead {
		max-width: 100%;
		font-size: 1rem;
	}

	.nmp-home-hero__cta-row {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nmp-home-hero__cta-row .nmp-btn {
		width: 100%;
		justify-content: center;
	}

	.nmp-home-hero__nav-ui {
		width: 100%;
		max-width: 100%;
		min-height: auto;
		padding: 7px;
		overflow: visible;
	}

	.nmp-home-hero__nav-ui-head {
		min-height: 44px;
		padding: 0 0.8rem;
		font-size: 0.82rem;
	}

	.nmp-home-hero__nav-ui-brand,
	.nmp-home-hero__nav-ui-ver {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.nmp-home-hero__nav-ui-map {
		min-height: 272px;
	}

	.nmp-home-hero__nav-ui-speed {
		right: 1.2rem;
		bottom: 1.5rem;
		width: 64px;
		height: 64px;
	}

	.nmp-home-hero__nav-ui-turn {
		left: 0.75rem;
		bottom: 0.8rem;
		transform: scale(0.76);
		transform-origin: left bottom;
	}

	.nmp-home-hero__nav-ui-active {
		left: 0.75rem;
		bottom: 0.75rem;
	}

	.nmp-home-hero__nav-ui-fsc {
		top: 0;
		right: 0;
		border-radius: 0 0 0 9px;
	}

	.nmp-home-hero__mini-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.nmp-stat-band {
	background: var(--nmp-color-primary);
	color: #fff;
	padding: 2.5rem 0;
	min-height: 144px;
	display: flex;
	align-items: center;
	line-height: 1.5;
}

.nmp-stat-band__grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.nmp-stat-band__grid {
		grid-template-columns: repeat(4, 1fr);
		align-items: center;
	}
}

.nmp-stat-band__value {
	font-size: clamp(1.95rem, 2.25vw, 2.25rem);
	font-weight: 800;
	margin: 0;
	line-height: 1.1;
}

.nmp-stat-band__label {
	margin: 0.45rem 0 0;
	font-size: 0.875rem;
	font-weight: 700;
	opacity: 1;
	max-width: 12rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.25rem;
}

/* Trust micro row */
.nmp-trust-micro-row {
	background: var(--nmp-color-background);
	border-bottom: 1px solid var(--nmp-color-border);
	padding: 1.15rem 0;
}

.nmp-trust-micro-row__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem 2.2rem;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #1f2937;
	line-height: 1.5rem;
}

.nmp-trust-micro-row__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.nmp-trust-micro-row__glyph {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: var(--nmp-radius-pill);
	border: 1.5px solid var(--nmp-color-primary);
	color: var(--nmp-color-primary);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 767px) {
	.nmp-stat-band {
		padding: 2rem 0;
		min-height: auto;
	}

	.nmp-stat-band__grid {
		gap: 1.6rem 1rem;
	}

	.nmp-trust-micro-row__items {
		justify-content: flex-start;
	}
}

/* Section rhythm */
.nmp-home-section {
	padding: var(--nmp-section-y-mobile) 0;
}

@media (min-width: 768px) {
	.nmp-home-section {
		padding: var(--nmp-section-y) 0;
	}
}

.nmp-home-section--surface {
	background: var(--nmp-color-surface);
}

.nmp-home-section--border-top {
	border-top: 1px solid var(--nmp-color-border);
}

.nmp-home-section-head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2rem;
}

.nmp-home-section-head__eyebrow {
	margin: 0 0 0.5rem;
}

.nmp-home-section-head__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: var(--nmp-color-text);
}

.nmp-home-section-head__sub {
	margin: 0 auto;
	max-width: 36rem;
	color: var(--nmp-color-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* Model strip — horizontal scroll (reference); wide desktop = single row grid */
.nmp-home-model-grid {
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0 0 0.5rem;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-gutter: stable;
}

.nmp-home-model-grid > li {
	flex: 0 0 min(220px, 82vw);
	scroll-snap-align: start;
	min-width: 0;
}

@media (min-width: 1400px) {
	.nmp-home-model-grid {
		display: grid;
		grid-template-columns: repeat(8, minmax(0, 1fr));
		overflow: visible;
		padding-bottom: 0;
		gap: 1rem;
	}

	.nmp-home-model-grid > li {
		flex: unset;
		min-width: 0;
	}
}

.nmp-home-model-grid__footer {
	text-align: center;
	margin: 1.25rem 0 0;
	font-size: 0.9375rem;
	font-weight: 700;
}

.nmp-text-link {
	color: var(--nmp-color-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nmp-text-link:hover {
	color: var(--nmp-color-navy);
}

.nmp-home-model-card {
	display: flex;
	flex-direction: column;
	background: var(--nmp-model-bg, var(--nmp-color-surface-red-tint));
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	min-height: 148px;
	padding: 1rem;
	padding-top: 1rem;
	text-decoration: none;
	color: var(--nmp-color-text);
	transition: border-color var(--nmp-transition), box-shadow var(--nmp-transition);
	position: relative;
	overflow: hidden;
}

.nmp-home-model-card:has(.nmp-home-model-card__badge) {
	padding-top: 1.85rem;
}

.nmp-home-model-card:hover {
	border-color: var(--nmp-color-primary);
	box-shadow: var(--nmp-shadow-md);
	text-decoration: none;
}

.nmp-home-model-card:focus-visible {
	outline: 2px solid var(--nmp-color-primary);
	outline-offset: 3px;
}

.nmp-home-model-card--accent {
	color: rgba(255, 255, 255, 0.96);
	border-color: rgba(255, 255, 255, 0.12);
	background: linear-gradient(160deg, #1a2942 0%, var(--nmp-color-navy) 55%);
	box-shadow: var(--nmp-shadow-sm);
}

.nmp-home-model-card--accent .nmp-home-model-card__meta,
.nmp-home-model-card--accent .nmp-home-model-card__price {
	color: rgba(255, 255, 255, 0.88);
}

.nmp-home-model-card--accent .nmp-home-model-card__link {
	color: #fff;
}

.nmp-home-model-card__badge {
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	z-index: 2;
	max-width: calc(100% - 3rem);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.2rem 0.45rem;
	border-radius: var(--nmp-radius-pill);
	color: var(--nmp-color-primary);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(214, 0, 0, 0.22);
	line-height: 1.2;
}

.nmp-home-model-card--accent .nmp-home-model-card__badge {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.28);
}

.nmp-home-model-card__ring {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	display: grid;
	place-items: center;
	box-shadow: var(--nmp-shadow-sm);
	color: var(--nmp-color-primary);
	font-weight: 800;
	font-size: 13px;
}

.nmp-home-model-card--accent .nmp-home-model-card__ring {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.95);
}

.nmp-home-model-card__silhouette-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 66px;
}

.nmp-home-model-card__silhouette-wrap span {
	opacity: 0.35;
	font-size: 2rem;
	user-select: none;
}

.nmp-home-model-card__label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--nmp-color-muted);
	letter-spacing: 0.04em;
}

.nmp-home-model-card__class {
	display: block;
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0.2rem 0 0.1rem;
	color: var(--nmp-color-text);
}

.nmp-home-model-card--accent .nmp-home-model-card__class {
	color: #fff;
}

.nmp-home-model-card--accent .nmp-home-model-card__label {
	color: rgba(255, 255, 255, 0.65);
}

.nmp-home-model-card__name {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 0.25rem;
	color: var(--nmp-color-muted);
}

.nmp-home-model-card--accent .nmp-home-model-card__name {
	color: rgba(255, 255, 255, 0.82);
}

.nmp-home-model-card__meta {
	font-size: 11px;
	color: var(--nmp-color-muted);
	margin: 0;
}

.nmp-home-model-card__price {
	margin-top: auto;
	padding-top: 0.5rem;
	font-size: 1rem;
	font-weight: 800;
	color: var(--nmp-color-primary);
}

.nmp-home-model-card--accent .nmp-home-model-card__price {
	color: #fff;
}

.nmp-home-model-card__link {
	font-size: 11px;
	font-weight: 700;
	color: var(--nmp-color-primary);
	margin-top: 0.15rem;
}

.nmp-home-model-card--accent .nmp-home-model-card__link {
	opacity: 0.95;
}

/* Per-model pastel tints */
.nmp-home-model-card--aclass {
	background: linear-gradient(180deg, #fcecf4 0%, #fff 45%);
}

.nmp-home-model-card--cclass {
	background: linear-gradient(180deg, #fce8f8 0%, #fff 45%);
}

.nmp-home-model-card--glc {
	background: linear-gradient(180deg, #e6f3ff 0%, #fff 45%);
}

.nmp-home-model-card--gle {
	background: linear-gradient(180deg, #fff7d6 0%, #fff 45%);
}

.nmp-home-model-card--sprinter {
	background: linear-gradient(180deg, #fff3c2 0%, #fff 45%);
}

.nmp-home-model-card--eclass {
	background: linear-gradient(180deg, #e8f4ff 0%, #fff 45%);
}

.nmp-home-model-card--sclass {
	background: linear-gradient(180deg, #f0e8ff 0%, #fff 45%);
}

.nmp-home-model-card--cla {
	background: linear-gradient(180deg, #e8fff4 0%, #fff 45%);
}

/* Live replica model cards */
#models.nmp-home-section {
	padding-top: 5.95rem;
	padding-bottom: 5.85rem;
	background: #fff;
}

#models .nmp-home-section-head {
	max-width: 47rem;
	margin-bottom: 3.25rem;
}

#models .nmp-home-section-head__eyebrow {
	margin: 0 0 0.9rem;
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--nmp-color-primary);
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

#models .nmp-home-section-head__title {
	margin-bottom: 1rem;
	font-size: clamp(2rem, 2.9vw, 2.35rem);
	letter-spacing: 0;
}

#models .nmp-home-section-head__sub {
	max-width: 42rem;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.nmp-home-model-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.45rem;
	max-width: 72.25rem;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	overflow: visible;
	scroll-snap-type: none;
}

.nmp-home-model-grid > li {
	min-width: 0;
	scroll-snap-align: unset;
}

@media (min-width: 680px) {
	.nmp-home-model-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1080px) {
	.nmp-home-model-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.35rem 1.5rem;
	}
}

.nmp-home-model-card {
	display: flex;
	flex-direction: column;
	min-height: 301px;
	padding: 1.25rem;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	background: #fff;
	color: var(--nmp-color-text);
	box-shadow: none;
	text-decoration: none;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nmp-home-model-card:hover {
	transform: translateY(-2px);
	border-color: rgba(214, 0, 0, 0.28);
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.09);
	text-decoration: none;
}

.nmp-home-model-card__art {
	position: relative;
	height: 138px;
	margin-bottom: 1rem;
	padding: 1rem;
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffdede 0%, #ff9daa 100%);
}

.nmp-home-model-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.nmp-home-model-card__badge {
	position: absolute;
	z-index: 3;
	top: 0.85rem;
	right: 0.85rem;
	left: auto;
	max-width: 7.4rem;
	padding: 0.45rem 0.7rem;
	border: 0;
	border-radius: 999px 999px 0 999px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.5625rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nmp-home-model-card__label {
	display: block;
	color: #46536b;
	font-size: 0.5625rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	line-height: 1.1;
	text-transform: uppercase;
}

.nmp-home-model-card__class {
	display: block;
	margin-top: 0.35rem;
	color: #020617;
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.05;
}

.nmp-home-model-card__star {
	position: absolute;
	top: 1.1rem;
	right: 1rem;
	width: 20px;
	height: 20px;
	border: 1.5px solid rgba(15, 23, 42, 0.55);
	border-radius: 50%;
}

.nmp-home-model-card__star::before,
.nmp-home-model-card__star::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 14px;
	background: rgba(15, 23, 42, 0.55);
	transform-origin: center;
}

.nmp-home-model-card__star::before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.nmp-home-model-card__star::after {
	transform: translate(-50%, -50%) rotate(120deg);
	box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.55);
}

.nmp-home-model-card__car {
	position: absolute;
	left: 1.75rem;
	right: 1.25rem;
	bottom: 0.72rem;
	height: 45px;
	border-radius: 45px 58px 8px 8px;
	background: #101828;
	clip-path: polygon(0 72%, 10% 55%, 27% 39%, 50% 30%, 72% 31%, 90% 52%, 100% 64%, 100% 82%, 0 82%);
}

.nmp-home-model-card__car::before {
	content: "";
	position: absolute;
	left: 12%;
	right: 9%;
	top: 26%;
	height: 14px;
	border-radius: 30px 44px 5px 5px;
	background: linear-gradient(90deg, #d9dee7 0%, #f8fafc 58%, #cbd5e1 100%);
	clip-path: polygon(0 100%, 20% 32%, 50% 9%, 82% 17%, 100% 100%);
}

.nmp-home-model-card__window {
	position: absolute;
	top: 15px;
	height: 14px;
	background: rgba(255, 255, 255, 0.52);
	border-radius: 2px;
}

.nmp-home-model-card__window--rear {
	left: 35%;
	width: 20%;
	transform: skewX(-14deg);
}

.nmp-home-model-card__window--front {
	left: 58%;
	width: 23%;
	transform: skewX(18deg);
}

.nmp-home-model-card__wheel {
	position: absolute;
	bottom: -4px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #0f172a;
	border: 5px solid #dbeafe;
}

.nmp-home-model-card__wheel--rear {
	left: 20%;
}

.nmp-home-model-card__wheel--front {
	right: 9%;
}

.nmp-home-model-card__name {
	margin: 0 0 0.42rem;
	color: #020617;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
}

.nmp-home-model-card__meta {
	margin: 0 0 0.95rem;
	color: #667085;
	font-size: 0.8125rem;
	line-height: 1.35;
}

.nmp-home-model-card__footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: auto;
	padding-top: 0.95rem;
	border-top: 1px solid #eaecf0;
}

.nmp-home-model-card__from {
	display: block;
	color: #98a2b3;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.nmp-home-model-card__price {
	display: block;
	margin-top: 0.25rem;
	padding: 0;
	color: var(--nmp-color-primary);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.05;
}

.nmp-home-model-card__link {
	flex-shrink: 0;
	margin: 0 0 0.18rem;
	color: #0f172a;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
}

.nmp-home-model-card:hover .nmp-home-model-card__link {
	color: var(--nmp-color-primary);
}

.nmp-home-model-grid__footer {
	display: flex;
	justify-content: center;
	margin: 2.5rem 0 0;
	text-align: center;
}

.nmp-home-model-grid__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 52px;
	padding: 0 1.65rem;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nmp-home-model-grid__view-all:hover {
	border-color: var(--nmp-color-primary);
	color: var(--nmp-color-primary);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.nmp-home-model-card--eclass .nmp-home-model-card__art,
.nmp-home-model-card--a-class .nmp-home-model-card__art {
	background: linear-gradient(135deg, #ffe0e0 0%, #fda4af 100%);
}

.nmp-home-model-card--s-class .nmp-home-model-card__art {
	background: #111c31;
}

.nmp-home-model-card--s-class .nmp-home-model-card__label,
.nmp-home-model-card--s-class .nmp-home-model-card__class {
	color: #fff;
}

.nmp-home-model-card--s-class .nmp-home-model-card__star {
	border-color: rgba(255, 255, 255, 0.6);
}

.nmp-home-model-card--s-class .nmp-home-model-card__star::before,
.nmp-home-model-card--s-class .nmp-home-model-card__star::after {
	background: rgba(255, 255, 255, 0.6);
}

.nmp-home-model-card--s-class .nmp-home-model-card__car {
	background: #f8fafc;
}

.nmp-home-model-card--s-class .nmp-home-model-card__wheel {
	background: #020617;
	border-color: #1e293b;
}

.nmp-home-model-card--glc .nmp-home-model-card__art,
.nmp-home-model-card--cla .nmp-home-model-card__art {
	background: linear-gradient(135deg, #d8f0ff 0%, #bae6fd 100%);
}

.nmp-home-model-card--gle .nmp-home-model-card__art,
.nmp-home-model-card--sprinter .nmp-home-model-card__art {
	background: linear-gradient(135deg, #fff4ba 0%, #fde68a 100%);
}

/* Benefits 2×3 */
.nmp-home-benefits {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	max-width: 1488px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.nmp-home-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.nmp-home-benefits {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.nmp-home-benefit-card {
	display: block;
	padding: 1.55rem 1.55rem 1.45rem;
	background: var(--nmp-color-background);
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	box-shadow: var(--nmp-shadow-sm);
	min-height: 192px;
}

.nmp-home-benefit-card__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1.15rem;
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 0.875rem;
	color: var(--nmp-color-primary);
	overflow: hidden;
}

.nmp-home-benefit-card__icon svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.nmp-home-benefit-card__icon img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.nmp-home-benefit-card__icon--red {
	background: #fef2f2;
	color: #dc0000;
}

.nmp-home-benefit-card__icon--blue {
	background: #eff6ff;
	color: #2563eb;
}

.nmp-home-benefit-card__icon--green {
	background: #ecfdf3;
	color: #16a34a;
}

.nmp-home-benefit-card__icon--navy {
	background: #f8fafc;
	color: #334155;
}

.nmp-home-benefit-card__icon--purple {
	background: #faf5ff;
	color: #9333ea;
}

.nmp-home-benefit-card__icon--amber {
	background: #fff7ed;
	color: #f97316;
}

.nmp-home-benefit-card__icon--slate {
	background: #f8fafc;
	color: #64748b;
}

.nmp-home-benefit-card__icon--teal {
	background: #f0fdfa;
	color: #0d9488;
}

.nmp-home-benefit-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.0625rem;
	font-weight: 800;
}

.nmp-home-benefit-card__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--nmp-color-muted);
}

/* How it works */
#how-it-works {
	padding-top: 6.15rem;
	padding-bottom: 6rem;
	background: #fff;
}

#how-it-works .nmp-home-section-head {
	max-width: 45rem;
	margin-bottom: 4.5rem;
}

#how-it-works .nmp-home-section-head__eyebrow {
	margin-bottom: 0.85rem;
	color: var(--nmp-color-primary);
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

#how-it-works .nmp-home-section-head__title {
	font-size: clamp(2rem, 2.7vw, 2.35rem);
}

#how-it-works .nmp-home-section-head__sub {
	max-width: 31rem;
	font-size: 1rem;
	line-height: 1.5;
}

.nmp-home-how {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.nmp-home-how {
		grid-template-columns: 1fr auto;
		align-items: start;
	}
}

.nmp-home-how-intro {
	max-width: none;
	text-align: left;
	margin: 0 0 1.75rem;
}

.nmp-home-how-intro__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 0.85rem;
	color: var(--nmp-color-text);
}

.nmp-home-how-intro__sub {
	margin: 0;
	max-width: 36rem;
	color: var(--nmp-color-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.nmp-home-how__steps {
	display: grid;
	gap: 2rem;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	position: relative;
}

@media (min-width: 768px) {
	.nmp-home-how__steps {
		grid-template-columns: repeat(3, 1fr);
		align-items: start;
	}

	.nmp-home-how__steps::before {
		content: "";
		position: absolute;
		left: calc(16.666% - 40px);
		right: calc(16.666% - 40px);
		top: 40px;
		height: 1px;
		background: rgba(214, 0, 0, 0.36);
		pointer-events: none;
		z-index: 0;
	}
}

.nmp-home-how-step {
	position: relative;
	padding: 0 1.5rem;
	text-align: center;
	z-index: 1;
}

@media (min-width: 768px) {
	.nmp-home-how-step:not(:last-child)::after {
		content: none;
	}
}

@media (max-width: 767px) {
	.nmp-home-how-step:not(:last-child)::after {
		content: "";
		position: absolute;
		left: 18px;
		top: 40px;
		bottom: -0.85rem;
		width: 2px;
		background: rgba(214, 0, 0, 0.15);
	}
}

.nmp-home-how-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 1.75rem;
	padding: 0;
	border-radius: 50%;
	background: var(--nmp-color-primary);
	color: #fff;
	font-weight: 800;
	font-size: 0;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 10px 22px rgba(214, 0, 0, 0.22);
	position: relative;
	z-index: 2;
}

.nmp-home-how-step__num::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	background: #fff;
	mask: var(--nmp-how-icon);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask: var(--nmp-how-icon);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.nmp-home-how-step:nth-child(1) {
	--nmp-how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.nmp-home-how-step:nth-child(2) {
	--nmp-how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.nmp-home-how-step:nth-child(3) {
	--nmp-how-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M12 15V3'/%3E%3C/svg%3E");
}

.nmp-home-how-step::before {
	content: attr(data-step);
	position: absolute;
	top: -0.05rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(15, 23, 42, 0.035);
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1;
	z-index: 0;
}

.nmp-home-how-step:nth-child(1)::before {
	content: "01";
}

.nmp-home-how-step:nth-child(2)::before {
	content: "02";
}

.nmp-home-how-step:nth-child(3)::before {
	content: "03";
}

.nmp-home-how-step__title {
	margin: 0;
	font-weight: 800;
	font-size: 1.25rem;
	line-height: 1.25;
}

.nmp-home-how-step__text {
	max-width: 20.5rem;
	margin: 1rem auto 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--nmp-color-muted);
}

.nmp-home-how__action {
	margin: 1.75rem 0 0;
	text-align: center;
}

#how-it-works .nmp-btn--outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	min-width: 240px;
	min-height: 52px;
	border-color: var(--nmp-color-primary);
	color: var(--nmp-color-primary);
	box-shadow: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#how-it-works .nmp-btn--outline:hover,
#how-it-works .nmp-btn--outline:focus-visible {
	background: var(--nmp-color-primary);
	border-color: var(--nmp-color-primary);
	color: #fff;
	box-shadow: 0 14px 28px rgba(214, 0, 0, 0.18);
	transform: translateY(-1px);
}

#how-it-works .nmp-btn--outline:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(214, 0, 0, 0.14);
}

.nmp-home-how__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15em;
	line-height: 1;
	transition: transform 180ms ease;
}

#how-it-works .nmp-btn--outline:hover .nmp-home-how__button-icon,
#how-it-works .nmp-btn--outline:focus-visible .nmp-home-how__button-icon {
	transform: translateX(3px);
}

.nmp-home-how__guide {
	justify-self: center;
	align-self: center;
}

/* Coverage preview */
.nmp-home-section--surface[aria-labelledby="nmp-coverage-heading"] {
	padding-top: 6.1rem;
	padding-bottom: 6rem;
	background: #f6f6f6;
}

.nmp-home-coverage {
	display: grid;
	gap: 4.35rem;
	align-items: start;
}

@media (min-width: 960px) {
	.nmp-home-coverage {
		grid-template-columns: minmax(0, 1fr) 720px;
	}
}

.nmp-home-coverage__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--nmp-color-primary);
}

.nmp-home-coverage__title {
	max-width: none;
	font-size: clamp(2rem, 2.55vw, 2.35rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 1.35rem;
}

.nmp-home-coverage__lead {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--nmp-color-muted);
	max-width: 44rem;
}

.nmp-home-coverage__col-copy {
	min-width: 0;
}

.nmp-home-coverage__checklist {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.88rem 6rem;
	max-width: 42rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--nmp-color-text);
}

.nmp-home-coverage__checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	line-height: 1.35;
}

.nmp-home-coverage__check {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	border-radius: var(--nmp-radius-pill);
	background: transparent;
	border: 1.5px solid var(--nmp-color-primary);
	color: var(--nmp-color-primary);
	font-size: 9px;
	font-weight: 800;
}

.nmp-home-coverage__cta {
	margin-top: 2.05rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.nmp-home-coverage__cta .nmp-btn--primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 48px;
	padding-inline: 1.35rem;
	box-shadow: none;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nmp-home-coverage__cta .nmp-btn--primary:hover,
.nmp-home-coverage__cta .nmp-btn--primary:focus-visible {
	background: #b80000;
	box-shadow: 0 14px 28px rgba(214, 0, 0, 0.18);
	transform: translateY(-1px);
}

.nmp-home-coverage__cta .nmp-btn--primary:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(214, 0, 0, 0.14);
}

.nmp-home-coverage__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
	line-height: 1;
	transition: transform 180ms ease;
}

.nmp-home-coverage__cta .nmp-btn--primary:hover .nmp-home-coverage__button-icon,
.nmp-home-coverage__cta .nmp-btn--primary:focus-visible .nmp-home-coverage__button-icon {
	transform: translateX(3px);
}

.nmp-home-coverage__alt {
	margin-top: 0.85rem;
	font-size: 0.8125rem;
	color: var(--nmp-color-muted);
}

.nmp-home-coverage__alt-link {
	margin-left: 0.35rem;
	font-weight: 700;
	color: var(--nmp-color-primary);
	text-decoration: none;
}

.nmp-home-coverage__alt-link:hover {
	text-decoration: underline;
}

.nmp-home-coverage-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.05rem 1.15rem;
}

.nmp-home-coverage-card {
	background: #fff;
	border-radius: 12px;
	min-height: 126px;
	padding: 20px;
	font-size: 0.8125rem;
	border: 1px solid #e6e8ec;
	font-weight: 600;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.nmp-home-coverage-card.is-active {
	border-color: #cc0000;
	box-shadow: none;
	background: #fdf2f2;
	color: var(--nmp-color-text);
}

.nmp-home-coverage-card__label {
	display: block;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--nmp-color-text);
}

.nmp-home-coverage-card.is-active .nmp-home-coverage-card__label {
	color: var(--nmp-color-primary);
}

.nmp-home-coverage-card__version {
	display: block;
	margin-top: 0.82rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--nmp-color-text);
	letter-spacing: 0.02em;
}

.nmp-home-coverage-card__ntg {
	display: block;
	margin-top: 0.72rem;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--nmp-color-muted);
	text-transform: none;
	letter-spacing: 0;
}

/* NTG dark panel */
.nmp-home-section[aria-label="Supported NTG navigation systems"] {
	padding: 0;
	background: var(--nmp-color-navy);
}

.nmp-home-section[aria-label="Supported NTG navigation systems"] .nmp-container {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.nmp-home-ntg {
	background: var(--nmp-color-navy);
	color: rgba(255, 255, 255, 0.88);
	border-radius: 0;
	padding: 6rem max(1rem, calc((100vw - 1488px) / 2)) 5.5rem;
	box-shadow: none;
	overflow: hidden;
}

@media (min-width: 768px) {
	.nmp-home-ntg {
		border-radius: 0;
	}
}

.nmp-home-ntg__intro {
	max-width: 70rem;
	margin: 0 auto;
	text-align: center;
}

.nmp-home-ntg__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--nmp-color-primary);
}

.nmp-home-ntg__title {
	font-size: clamp(2rem, 2.75vw, 2.35rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 0.85rem;
}

.nmp-home-ntg__text {
	max-width: 44rem;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.55;
	opacity: 0.9;
}

.nmp-home-ntg-strip {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 3.25rem;
}

@media (min-width: 720px) {
	.nmp-home-ntg-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 1fr;
	}
}

@media (min-width: 1024px) {
	.nmp-home-ntg-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.nmp-home-ntg__foot {
	margin: 1.75rem 0 0;
	text-align: center;
}

.nmp-home-ntg__table-link {
	min-width: 214px;
	background: #fff !important;
	border-color: #fff !important;
	color: var(--nmp-color-text) !important;
}

.nmp-home-ntg__table-link:hover {
	border-color: #fff !important;
	background: var(--nmp-color-primary) !important;
	color: #fff !important;
	transform: translateY(-2px);
}

.nmp-home-ntg-chip {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.35rem 0.65rem;
	border-radius: var(--nmp-radius-pill);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	background: rgba(214, 0, 0, 0.95);
	color: #fff;
}

.nmp-home-ntg-strip__panel {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--nmp-radius-md);
	min-height: 110px;
	padding: 1.35rem;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.nmp-home-ntg-strip__panel:hover {
	transform: translateY(-3px);
	border-color: rgba(214, 0, 0, 0.85);
	background: rgba(255, 255, 255, 0.075);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.nmp-home-ntg-strip__top {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 0.75rem;
	margin-bottom: 0.5rem;
}

.nmp-home-ntg-strip__tag {
	margin: 0;
	font-weight: 800;
	font-size: 0.8125rem;
	line-height: 1.25;
	color: #fff;
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	width: auto;
	flex: 0 0 auto;
	padding: 0.4rem 0.8rem;
	border-radius: var(--nmp-radius-pill);
	background: var(--nmp-color-primary);
}

.nmp-home-ntg-strip__markets {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.nmp-home-ntg-strip__body {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	opacity: 0.86;
	max-width: 28rem;
}

/* Reviews — featured + grid (mbnaviupdates.com) */
.nmp-home-reviews .nmp-container {
	text-align: center;
}

.nmp-home-reviews .nmp-home-section-head__eyebrow,
.nmp-home-faq-section .nmp-home-section-head__eyebrow {
	color: var(--nmp-color-primary);
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.nmp-home-reviews__score {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.35rem 0.5rem;
	margin: 0.5rem 0 0;
	font-weight: 700;
	font-size: 0.9375rem;
}

.nmp-home-reviews__stars {
	color: #f5b400;
	font-weight: 800;
	letter-spacing: 2px;
}

.nmp-home-reviews__sep {
	color: var(--nmp-color-muted);
	font-weight: 600;
}

.nmp-home-reviews__muted {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	color: var(--nmp-color-muted);
}

.nmp-home-reviews-featured {
	margin: 2.9rem auto 0;
	max-width: 690px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	box-shadow: none;
	padding: 2.25rem 3rem 2.35rem;
}

.nmp-home-reviews-featured__mark {
	display: block;
	margin-bottom: 0.95rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4.6rem;
	line-height: 0.55;
	font-weight: 800;
	color: rgba(214, 0, 0, 0.18);
}

.nmp-home-reviews-featured__quote {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.6;
	font-weight: 500;
	font-style: italic;
	color: var(--nmp-color-text);
}

.nmp-home-reviews-featured__stars,
.nmp-home-reviews-card__stars {
	margin: 1.35rem 0 0.6rem;
	color: #f5b400;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.nmp-home-reviews-featured__by {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 0.65rem;
	font-style: normal;
}

.nmp-home-reviews-featured__by .nmp-home-reviews-featured__avatar {
	display: none;
}

.nmp-home-reviews-featured__avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 1rem;
	background: var(--nmp-color-surface);
	border: 1px solid var(--nmp-color-border);
	color: var(--nmp-color-primary);
}

.nmp-home-reviews-featured__name {
	display: block;
	font-size: 0.9375rem;
	color: var(--nmp-color-text);
}

.nmp-home-reviews-featured__meta {
	display: block;
	font-size: 0.8125rem;
	color: var(--nmp-color-muted);
	margin-top: 0.15rem;
}

.nmp-home-reviews-grid {
	list-style: none;
	margin: 5.35rem auto 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
	text-align: left;
	max-width: 1320px;
}

@media (min-width: 640px) {
	.nmp-home-reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.nmp-home-reviews-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.nmp-home-reviews-card {
	padding: 1.25rem 1.25rem 1.35rem;
	border-radius: var(--nmp-radius-md);
	border: 1px solid var(--nmp-color-border);
	background: var(--nmp-color-background);
	box-shadow: var(--nmp-shadow-sm);
	min-height: 164px;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nmp-home-reviews-card:hover {
	transform: translateY(-3px);
	border-color: rgba(214, 0, 0, 0.45);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.nmp-home-reviews-card__head {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 1.05rem;
	padding-top: 1rem;
	border-top: 1px solid var(--nmp-color-border);
}

.nmp-home-reviews-card__avatar {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 0.875rem;
	background: var(--nmp-color-primary);
	border: 1px solid var(--nmp-color-primary);
	color: #fff;
}

.nmp-home-reviews-card__name {
	display: block;
	font-size: 0.875rem;
	color: var(--nmp-color-text);
}

.nmp-home-reviews-card__meta {
	display: block;
	font-size: 0.75rem;
	color: var(--nmp-color-muted);
	margin-top: 0.1rem;
}

.nmp-home-reviews-card__quote {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	font-style: italic;
	color: var(--nmp-color-text);
}

/* FAQ preview */
.nmp-home-faq {
	max-width: 580px;
	margin: 0 auto;
}

.nmp-home-faq__list {
	display: grid;
	border: 0;
	border-radius: 0;
	overflow: visible;
	background: transparent;
	box-shadow: none;
	margin: 2.6rem 0 0;
}

.nmp-home-faq__details {
	border-bottom: 1px solid var(--nmp-color-border);
	padding: 0;
}

.nmp-home-faq__details:last-child {
	border-bottom: 0;
}

.nmp-home-faq__details summary {
	list-style: none;
	cursor: pointer;
	padding: 1.17rem 0;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--nmp-color-text);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.nmp-home-faq__details summary::-webkit-details-marker {
	display: none;
}

.nmp-home-faq__details summary::after {
	content: "\2304";
	flex-shrink: 0;
	opacity: 0.45;
	font-weight: 800;
	font-size: 0.72rem;
	color: var(--nmp-color-text);
	text-decoration: none;
	transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nmp-home-faq__details summary:hover,
.nmp-home-faq__details summary:focus-visible {
	color: var(--nmp-color-primary);
	text-decoration-color: currentColor;
}

.nmp-home-faq__details summary:hover::after,
.nmp-home-faq__details summary:focus-visible::after {
	color: var(--nmp-color-primary);
	opacity: 1;
	transform: translateY(2px);
}

.nmp-home-faq__details[open] summary::after {
	content: "\2303";
	opacity: 0.8;
}

.nmp-home-faq__details[open] summary:hover::after,
.nmp-home-faq__details[open] summary:focus-visible::after {
	transform: translateY(-2px);
}

.nmp-home-faq__answer {
	margin: -0.75rem 0 1rem;
	padding: 0 0 1.25rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: var(--nmp-color-muted);
}

.nmp-home-faq__foot {
	text-align: center;
	margin-top: 2.2rem;
}

.nmp-home-faq__more {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--nmp-color-primary);
	text-decoration: none;
	text-underline-offset: 3px;
	transition: color 180ms ease;
}

.nmp-home-faq__more:hover {
	text-decoration: underline;
}

.nmp-home-faq__more::after {
	content: "\203A";
	margin-left: 0.45rem;
	display: inline-block;
	transition: transform 180ms ease;
}

.nmp-home-faq__more:hover::after,
.nmp-home-faq__more:focus-visible::after {
	transform: translateX(3px);
}

/* Final CTA */
.nmp-home-final-cta {
	background: var(--nmp-color-primary);
	color: #fff;
	text-align: center;
	padding: 5rem 0 4.85rem;
}

.nmp-home-final-cta__lead {
	max-width: 36rem;
	margin: 0 auto 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	opacity: 0.9;
	font-weight: 500;
}

.nmp-home-final-cta__title {
	font-size: clamp(2.1rem, 3.2vw, 2.65rem);
	font-weight: 800;
	margin: 0 0 0.85rem;
}

.nmp-home-final-cta__sub {
	max-width: 565px;
	margin: 0 auto 1.75rem;
	font-size: 1rem;
	line-height: 1.55;
	opacity: 0.92;
}

.nmp-home-final-cta__bullets {
	margin: 1.25rem 0 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	opacity: 0.88;
	line-height: 1.45;
}

.nmp-home-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}

.nmp-home-final-cta__actions .nmp-btn {
	min-width: 188px;
	height: 42px;
	justify-content: center;
}

.nmp-home-final-cta .nmp-btn--primary {
	background: #fff;
	color: var(--nmp-color-primary);
	border-color: #fff;
}

.nmp-home-final-cta .nmp-btn--primary:hover {
	background: var(--nmp-color-surface);
	color: var(--nmp-color-primary-hover);
}

.nmp-home-final-cta .nmp-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

.nmp-home-final-cta .nmp-btn--outline:hover {
	border-color: #fff;
	color: #fff;
}
