/**
 * Marketing page templates (map coverage, compatibility, instructions, FAQ, contact).
 */

.nmp-page .nmp-site-main {
	padding-top: 0;
}

/* —— Map coverage hero —— */
.nmp-page-hero--coverage {
	background: linear-gradient(135deg, var(--nmp-color-navy) 0%, #1a0a0a 45%, var(--nmp-color-primary) 160%);
	color: #fff;
	padding: 2.5rem 0 3rem;
	margin-bottom: 0;
}

.nmp-page-hero--coverage .nmp-breadcrumbs,
.nmp-page-hero--coverage .nmp-breadcrumbs a {
	color: rgba(255, 255, 255, 0.75);
}

.nmp-page-hero__inner {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.nmp-page-hero__inner {
		grid-template-columns: 1fr 280px;
	}
}

.nmp-page-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0.75rem 0;
}

.nmp-page-hero__lead {
	max-width: 36rem;
	margin: 0;
	opacity: 0.92;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.nmp-page-hero__stats {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nmp-glass-stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--nmp-radius-md);
	padding: 0.85rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.nmp-glass-stat strong {
	font-size: 1.35rem;
	font-weight: 800;
}

.nmp-glass-stat span {
	font-size: 0.75rem;
	opacity: 0.85;
}

.nmp-pill--ghost {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.nmp-pill--soft {
	background: rgba(214, 0, 0, 0.08);
	color: var(--nmp-color-primary);
	border: 1px solid rgba(214, 0, 0, 0.2);
}

/* Region tabs + panels */
.nmp-page-section {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.nmp-region-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.nmp-region-tab {
	border: 1px solid var(--nmp-color-border);
	background: #fff;
	border-radius: var(--nmp-radius-pill);
	padding: 0.45rem 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	color: var(--nmp-color-text);
}

.nmp-region-tab.is-active {
	border-color: var(--nmp-color-primary);
	background: rgba(214, 0, 0, 0.06);
	color: var(--nmp-color-primary);
}

.nmp-coverage-panel {
	display: grid;
	gap: 1.5rem;
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-lg);
	padding: 1.5rem;
	background: #fff;
	box-shadow: var(--nmp-shadow-sm);
}

@media (min-width: 900px) {
	.nmp-coverage-panel {
		grid-template-columns: 1fr minmax(240px, 32%);
	}
}

.nmp-coverage-panel__head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.nmp-coverage-panel__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
}

.nmp-chip {
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: var(--nmp-radius-pill);
	background: var(--nmp-color-surface);
	border: 1px solid var(--nmp-color-border);
}

.nmp-release-grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	margin-top: 1rem;
}

.nmp-release-card {
	display: block;
	width: 100%;
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	padding: 1rem;
	position: relative;
	appearance: none;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.nmp-release-card__badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #1e40af;
	background: #eff6ff;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	margin-bottom: 0.5rem;
}

.nmp-release-card__title {
	margin: 0 0 0.35rem;
	font-size: 0.9375rem;
	font-weight: 700;
}

.nmp-release-card__meta {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--nmp-color-muted);
}

.nmp-coverage-panel__countries {
	background: var(--nmp-color-surface);
	border-radius: var(--nmp-radius-md);
	padding: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.nmp-coverage-panel__countries-title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

.nmp-info-trio {
	background: var(--nmp-color-surface);
	margin-top: 1rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.nmp-section-title {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	text-align: center;
}

.nmp-section-lead {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2rem;
}

.nmp-info-trio__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nmp-info-card {
	background: #fff;
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	padding: 1.25rem;
}

.nmp-info-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

.nmp-cta-band--inset {
	margin: 2rem auto 3rem;
}

.nmp-cta-band__inner {
	background: var(--nmp-color-primary);
	color: #fff;
	border-radius: var(--nmp-radius-lg);
	padding: 2rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.nmp-cta-band__title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
}

.nmp-btn--light {
	background: #fff;
	color: var(--nmp-color-primary);
}

.nmp-btn--light:hover {
	background: var(--nmp-color-surface);
	color: var(--nmp-color-primary-hover);
}

.nmp-btn--outline-light {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
}

.nmp-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.nmp-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* —— Compatibility —— */
/* Map coverage pixel pass */
.nmp-page-hero--coverage {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 88%, rgba(214, 0, 0, 0.72), transparent 34%),
		radial-gradient(circle at 52% 68%, rgba(214, 0, 0, 0.18), transparent 34%),
		linear-gradient(135deg, #0b1422 0%, #101827 54%, #2b1014 100%);
	color: #fff;
	padding: 3.55rem 0 3.55rem;
}

.nmp-page-hero--coverage::before,
.nmp-cta-band__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.34;
}

.nmp-page-hero--coverage .nmp-page-hero__inner {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 760px) 470px;
	justify-content: space-between;
	gap: 4rem;
}

.nmp-page-hero--coverage .nmp-breadcrumbs {
	margin: 0 0 1.45rem;
	font-size: 0.86rem;
	color: #8ea0b8;
}

.nmp-page-hero--coverage .nmp-breadcrumbs a {
	color: #8ea0b8;
	text-decoration: none;
}

.nmp-page-hero--coverage .nmp-pill--ghost {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: 24px;
	padding: 0 0.9rem;
	border: 0;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0;
	border-radius: 999px;
}

.nmp-page-hero--coverage .nmp-pill--ghost::before {
	content: "";
	width: 11px;
	height: 11px;
	margin-right: 0.42rem;
	border-radius: 50%;
	background: #fff;
	box-shadow: inset 0 0 0 3px var(--nmp-color-primary);
}

.nmp-page-hero--coverage .nmp-page-hero__title {
	margin: 1.05rem 0 1rem;
	font-size: clamp(2.45rem, 3.35vw, 3.25rem);
	line-height: 1.09;
	letter-spacing: 0;
	font-weight: 800;
}

.nmp-page-hero--coverage .nmp-text-accent {
	color: #ff4b4b;
}

.nmp-page-hero--coverage .nmp-page-hero__lead {
	max-width: 560px;
	color: #fff;
	font-size: 1.01rem;
	line-height: 1.58;
	opacity: 0.98;
}

.nmp-page-hero--coverage .nmp-page-hero__lead strong {
	font-weight: 900;
}

.nmp-page-hero--coverage .nmp-page-hero__stats {
	padding-top: 1.45rem;
	gap: 0.85rem;
}

.nmp-page-hero--coverage .nmp-glass-stat {
	min-height: 93px;
	justify-content: center;
	padding: 1rem 1.35rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
}

.nmp-page-hero--coverage .nmp-glass-stat strong {
	font-size: 2.1rem;
	line-height: 1;
}

.nmp-page-hero--coverage .nmp-glass-stat span {
	margin-top: 0.28rem;
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	color: #b8c1d1;
	opacity: 1;
}

.nmp-coverage-tabs-section {
	padding-top: 1rem;
	padding-bottom: 2.9rem;
}

.nmp-coverage-tabs-section .nmp-region-tabs {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.62rem;
	margin-bottom: 1.35rem;
	padding: 0.72rem;
	border-bottom: 1px solid #edf0f5;
	border: 1px solid #edf0f5;
	border-radius: 14px;
	background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.nmp-region-accent--blue {
	--nmp-region-accent: #2f80ff;
	--nmp-region-accent-text: #2563eb;
	--nmp-region-accent-soft: #eff6ff;
	--nmp-region-accent-chip: #dbeafe;
}

.nmp-region-accent--green {
	--nmp-region-accent: #00c853;
	--nmp-region-accent-text: #008f3a;
	--nmp-region-accent-soft: #f0fdf4;
	--nmp-region-accent-chip: #dcfce7;
}

.nmp-region-accent--amber {
	--nmp-region-accent: #ffb300;
	--nmp-region-accent-text: #c45a00;
	--nmp-region-accent-soft: #fffbeb;
	--nmp-region-accent-chip: #fef3c7;
}

.nmp-region-accent--red {
	--nmp-region-accent: #ff2d2d;
	--nmp-region-accent-text: #d60000;
	--nmp-region-accent-soft: #fff1f2;
	--nmp-region-accent-chip: #ffe4e6;
}

.nmp-region-accent--orange {
	--nmp-region-accent: #ff6b00;
	--nmp-region-accent-text: #d94f00;
	--nmp-region-accent-soft: #fff7ed;
	--nmp-region-accent-chip: #ffedd5;
}

.nmp-region-accent--purple {
	--nmp-region-accent: #a855f7;
	--nmp-region-accent-text: #8a00ff;
	--nmp-region-accent-soft: #faf5ff;
	--nmp-region-accent-chip: #f3e8ff;
}

.nmp-region-accent--teal {
	--nmp-region-accent: #14b8a6;
	--nmp-region-accent-text: #0f766e;
	--nmp-region-accent-soft: #f0fdfa;
	--nmp-region-accent-chip: #ccfbf1;
}

.nmp-coverage-disclaimer {
	max-width: 920px;
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid #fde68a;
	border-radius: 10px;
	background: #fffbeb;
	color: #92400e;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.45;
}

.nmp-coverage-tabs-section .nmp-region-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.46rem;
	width: 100%;
	min-height: 38px;
	padding: 0 0.72rem;
	border-radius: 999px;
	border: 1px solid #e3e8f0;
	background: #fff;
	color: #42516b;
	font-size: 0.78rem;
	font-weight: 800;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nmp-coverage-tabs-section .nmp-region-tab:hover,
.nmp-coverage-tabs-section .nmp-region-tab:focus-visible {
	border-color: color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 40%, #fff);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
	outline: none;
}

.nmp-coverage-tabs-section .nmp-region-tab span {
	color: var(--nmp-region-accent-text, #2563eb);
}

.nmp-coverage-tabs-section .nmp-region-tab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	width: 22px;
	height: 22px;
	border: 1px solid color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 18%, #fff);
	border-radius: 999px;
	background: #fff;
	font-size: 0.88rem;
	line-height: 1;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.nmp-coverage-tabs-section .nmp-region-tab__icon img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.nmp-coverage-tabs-section .nmp-region-tab small {
	min-width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.32rem;
	border-radius: 999px;
	background: #f1f5f9;
	color: #7b8799;
	font-size: 0.62rem;
	font-weight: 900;
}

.nmp-coverage-tabs-section .nmp-region-tab.is-active {
	border-color: var(--nmp-region-accent, #2f80ff);
	background: var(--nmp-region-accent-soft, #eff6ff);
	color: var(--nmp-region-accent-text, #2563eb);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 18%, transparent);
}

.nmp-coverage-tabs-section .nmp-region-tab.is-active small {
	background: var(--nmp-region-accent-chip, #dbeafe);
	color: var(--nmp-region-accent-text, #2563eb);
}

.nmp-coverage-tabs-section .nmp-coverage-panel {
	grid-template-columns: minmax(0, 1fr) 452px;
	gap: 2rem;
	min-height: 628px;
	padding: 2rem 1.95rem;
	border: 2px solid color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 42%, #fff);
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.nmp-coverage-tabs-section .nmp-coverage-panel__head {
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

.nmp-coverage-tabs-section .nmp-coverage-panel__title {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 1.74rem;
	letter-spacing: 0;
}

.nmp-coverage-tabs-section .nmp-coverage-panel__title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	font-weight: 600;
	font-size: 1.42rem;
	line-height: 1;
}

.nmp-coverage-tabs-section .nmp-coverage-panel__title-icon img {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}

.nmp-coverage-tabs-section .nmp-chip {
	border-color: color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 35%, #fff);
	background: var(--nmp-region-accent-soft, #eff6ff);
	color: var(--nmp-region-accent-text, #2563eb);
	font-size: 0.72rem;
	font-weight: 900;
}

.nmp-coverage-panel__intro {
	max-width: 790px;
	margin: 0 0 1.85rem;
	color: #53627a;
	font-size: 1.02rem;
	line-height: 1.65;
}

.nmp-coverage-panel__subhead {
	margin: 0 0 0.85rem;
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #0f172a;
}

.nmp-coverage-tabs-section .nmp-release-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem 1rem;
	margin-top: 0;
}

.nmp-coverage-tabs-section .nmp-release-card {
	min-height: 136px;
	padding: 1rem 1.1rem;
	border-color: #e5e9f0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.025);
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.nmp-coverage-tabs-section .nmp-release-card:hover,
.nmp-coverage-tabs-section .nmp-release-card:focus-visible {
	border-color: color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 48%, #fff);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
	outline: none;
}

.nmp-coverage-tabs-section .nmp-release-card.is-active {
	border-color: var(--nmp-region-accent, #2f80ff);
	background: linear-gradient(180deg, #fff 0%, var(--nmp-region-accent-soft, #eff6ff) 100%);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.nmp-coverage-tabs-section .nmp-release-card::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 1rem;
	width: 12px;
	height: 12px;
	border: 2px solid #22c55e;
	border-radius: 50%;
}

.nmp-coverage-tabs-section .nmp-release-card--needs-check::after {
	border-color: #f59e0b;
}

.nmp-coverage-tabs-section .nmp-release-card.is-active::after {
	background: var(--nmp-region-accent, #2f80ff);
	border-color: var(--nmp-region-accent, #2f80ff);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 16%, transparent);
}

.nmp-release-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.7rem;
	padding-right: 1.35rem;
}

.nmp-coverage-tabs-section .nmp-release-card__badge {
	margin-bottom: 0.62rem;
	border: 1px solid color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 35%, #fff);
	border-radius: 4px;
	background: var(--nmp-region-accent-soft, #eff6ff);
	color: var(--nmp-region-accent-text, #2563eb);
	font-size: 0.66rem;
	font-weight: 900;
}

.nmp-release-card__warning {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 0 0.45rem;
	border: 1px solid #fde68a;
	border-radius: 999px;
	background: #fffbeb;
	color: #b45309;
	font-size: 0.58rem;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.nmp-coverage-tabs-section .nmp-release-card__title {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.86rem;
	font-weight: 900;
}

.nmp-release-card__coverage-type {
	margin: -0.18rem 0 0.5rem;
	color: #475569;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.4;
}

.nmp-coverage-tabs-section .nmp-release-card__meta {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0.18rem 0 0;
	font-size: 0.69rem;
	color: #64748b;
}

.nmp-coverage-tabs-section .nmp-release-card__meta span {
	width: 11px;
	height: 11px;
	border: 1.5px solid currentColor;
	border-radius: 2px;
	opacity: 0.65;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 900;
	line-height: 1;
}

.nmp-coverage-tabs-section .nmp-release-card__meta span:not(:empty) {
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
}

.nmp-release-card__select {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.78rem;
	border-top: 1px solid #eef2f7;
	padding-top: 0.68rem;
	color: var(--nmp-region-accent-text, #2563eb);
	font-size: 0.74rem;
	font-weight: 900;
}

.nmp-release-card__select::after {
	content: "+";
	font-size: 0.9rem;
	line-height: 1;
}

.nmp-release-card.is-active .nmp-release-card__select::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
}

.nmp-coverage-tabs-section .nmp-coverage-panel__countries {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	max-height: none;
	padding: 1.35rem 1.55rem;
	border-radius: 10px;
	background: #f8fafc;
	color: #475569;
	font-size: 0.88rem;
	line-height: 1.52;
	overflow: visible;
}

.nmp-coverage-detail__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.55rem;
}

.nmp-coverage-detail__kicker {
	color: var(--nmp-region-accent-text, #2563eb);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.nmp-coverage-detail__warning {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0 0.5rem;
	border: 1px solid #fde68a;
	border-radius: 999px;
	background: #fffbeb;
	color: #b45309;
	font-size: 0.58rem;
	font-weight: 900;
	text-transform: uppercase;
	white-space: nowrap;
}

.nmp-coverage-tabs-section .nmp-coverage-panel__countries-title {
	margin-bottom: 0.9rem;
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f172a;
}

.nmp-coverage-detail__meta {
	margin: -0.45rem 0 0.85rem;
	color: #64748b;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.45;
}

.nmp-coverage-detail__body {
	max-height: none;
	margin: 0;
	overflow: visible;
	padding-right: 0.35rem;
	color: #334155;
	line-height: 1.62;
}

.nmp-coverage-detail__body.is-chip-list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 0.45rem;
	padding-right: 0;
	line-height: 1;
}

.nmp-coverage-detail__chip {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0.28rem 0.52rem;
	border: 1px solid color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 16%, #e5e9f0);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: #334155;
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.15;
}

.nmp-coverage-detail__notes {
	margin: 1rem 0 0;
	padding: 0.8rem 0.9rem;
	border: 1px solid #e5e9f0;
	border-radius: 8px;
	background: #fff;
	color: #475569;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.5;
}

.nmp-coverage-detail__helper {
	margin-top: auto;
	padding-top: 1rem;
	color: #64748b;
	font-size: 0.76rem;
	line-height: 1.45;
}

.nmp-coverage-detail__helper strong {
	display: block;
	margin-bottom: 0.22rem;
	color: #0f172a;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.nmp-coverage-detail__helper span {
	display: block;
	padding: 0.75rem 0.85rem;
	border: 1px solid color-mix(in srgb, var(--nmp-region-accent, #2f80ff) 18%, #e5e9f0);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
}

.nmp-map-work-section {
	background: #f8fafc;
	padding: 3.4rem 0 3.2rem;
}

.nmp-map-work-section .nmp-info-trio {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.nmp-map-work-section .nmp-section-title {
	max-width: 920px;
	margin: 0 auto 1.15rem;
	text-align: center;
	font-size: 2rem;
	line-height: 1.2;
}

.nmp-map-work-section .nmp-section-lead {
	max-width: 900px;
	margin: 0 auto 1rem;
	text-align: center;
	color: #475569;
	font-size: 0.96rem;
	line-height: 1.7;
}

.nmp-map-work-section .nmp-info-trio__grid {
	max-width: 1080px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 2.2rem auto 0;
}

.nmp-map-work-section .nmp-info-card {
	min-height: 156px;
	padding: 1.35rem 1.45rem;
	border-color: #e5e7eb;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.nmp-map-work-section .nmp-info-card:hover {
	border-color: rgba(214, 0, 0, 0.22);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.085);
	transform: translateY(-2px);
}

.nmp-map-work-section .nmp-info-card h3 {
	margin-top: 0;
	font-size: 0.98rem;
	line-height: 1.3;
}

.nmp-map-work-section .nmp-info-card p {
	font-size: 0.9rem;
	line-height: 1.55;
}

.nmp-info-card__icon {
	display: block;
	margin-bottom: 1rem;
	color: var(--nmp-color-primary);
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
	position: relative;
}

.nmp-info-card__icon--refresh::after {
	content: "";
	position: absolute;
	right: -3px;
	top: 2px;
	width: 6px;
	height: 6px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.nmp-info-card__icon--clock::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 3px;
	width: 2px;
	height: 7px;
	background: currentColor;
}

.nmp-info-card__icon--clock::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	width: 6px;
	height: 2px;
	background: currentColor;
}

.nmp-info-card__icon--part {
	border-radius: 4px;
}

.nmp-info-card__icon--part::before,
.nmp-info-card__icon--part::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.nmp-info-card__icon--part::before {
	left: 3px;
	right: 3px;
	top: 7px;
	height: 2px;
}

.nmp-info-card__icon--part::after {
	top: 3px;
	bottom: 3px;
	left: 7px;
	width: 2px;
}

.nmp-map-work-section .nmp-info-card h3 {
	font-size: 0.86rem;
	font-weight: 900;
}

.nmp-map-work-section .nmp-info-card p {
	margin: 0;
	color: #64748b;
	font-size: 0.82rem;
	line-height: 1.48;
}

.nmp-cta-band--inset {
	width: min(var(--nmp-container), calc(100% - 2rem));
	margin: 3.55rem auto 3.55rem;
}

.nmp-cta-band--inset .nmp-container {
	width: 100%;
	padding: 0;
}

.nmp-cta-band__inner {
	position: relative;
	overflow: hidden;
	min-height: 252px;
	border-radius: 10px;
	background: var(--nmp-color-primary);
	padding: 2.9rem 2rem;
}

.nmp-cta-band__pin {
	position: relative;
	z-index: 1;
	width: 31px;
	height: 31px;
	border: 4px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.nmp-cta-band__pin::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}

.nmp-cta-band__title,
.nmp-cta-band__inner p,
.nmp-cta-band__inner .nmp-btn {
	position: relative;
	z-index: 1;
}

.nmp-cta-band__title {
	font-size: 2rem;
}

.nmp-cta-band__inner p {
	max-width: 510px;
	margin: -0.25rem auto 0.55rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
}

.nmp-cta-band__inner .nmp-btn {
	min-width: 180px;
	min-height: 44px;
	border-radius: 8px;
	font-weight: 900;
}

@media (max-width: 1023px) {
	.nmp-page-hero--coverage .nmp-page-hero__inner,
	.nmp-coverage-tabs-section .nmp-coverage-panel {
		grid-template-columns: 1fr;
	}

	.nmp-coverage-tabs-section .nmp-coverage-panel__countries {
		min-height: 0;
	}

	.nmp-map-work-section .nmp-info-trio__grid,
	.nmp-coverage-tabs-section .nmp-release-grid {
		grid-template-columns: 1fr;
	}
}

.nmp-page-hero--compat {
	background: linear-gradient(180deg, var(--nmp-color-surface-red-tint) 0%, #fff 100%);
	padding: 2rem 0 1rem;
}

.nmp-page-hero__compat {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.nmp-page-hero__compat {
		grid-template-columns: 1fr 320px;
		align-items: start;
	}
}

.nmp-page-hero__stat-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.nmp-stat-card {
	background: #fff;
	border: 1px solid var(--nmp-color-border);
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
	box-shadow: var(--nmp-shadow-sm);
}

.nmp-stat-card strong {
	display: block;
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--nmp-color-primary);
}

.nmp-stat-card span {
	font-size: 0.75rem;
	color: var(--nmp-color-muted);
}

.nmp-finder {
	border: 1px solid var(--nmp-color-border);
	border-radius: 10px;
	background: #fff;
	padding: 1.5rem;
	box-shadow: 0 14px 44px rgba(16, 24, 40, 0.08);
}

.nmp-finder__search {
	margin-bottom: 1rem;
}

.nmp-finder__input {
	width: 100%;
	height: 44px;
	border: 1px solid var(--nmp-color-border-input);
	border-radius: 10px;
	padding: 0 1rem 0 2.5rem;
	font-size: 0.9375rem;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23667085'%3E%3Cpath d='M11 10h-.6l-.2-.2a4 4 0 10-.7.7l.2.2V11l3 3 1-1-3-3zm-3 0a3 3 0 110-6 3 3 0 010 6z'/%3E%3C/svg%3E") no-repeat 0.75rem center;
}

.nmp-finder__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #edf0f5;
}

.nmp-filter-pill {
	border: 1px solid #e3e8f0;
	background: #fff;
	border-radius: var(--nmp-radius-pill);
	min-height: 32px;
	padding: 0 0.95rem;
	font-size: 0.82rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.nmp-filter-pill.is-active {
	background: var(--nmp-color-primary);
	border-color: var(--nmp-color-primary);
	color: #fff;
	box-shadow: none;
}

.nmp-finder__split {
	display: grid;
	gap: 1rem;
}

@media (min-width: 900px) {
	.nmp-finder__split {
		grid-template-columns: 360px 1fr;
		align-items: start;
	}
}

.nmp-finder__list-wrap {
	max-height: 420px;
	overflow: auto;
	border: 1px solid var(--nmp-color-border);
	border-radius: 10px;
}

.nmp-finder__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nmp-finder__list > li {
	margin: 0;
	padding: 0;
}

.nmp-finder__list .nmp-finder__item {
	width: 100%;
}

.nmp-finder__item {
	width: 100%;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 64px;
	padding: 0.5rem 1rem;
	border: none;
	border-bottom: 1px solid var(--nmp-color-border);
	background: #fff;
	cursor: pointer;
	font: inherit;
	transition: background-color var(--nmp-transition), transform var(--nmp-transition);
}

.nmp-finder__item:hover {
	background: rgba(214, 0, 0, 0.03);
}

.nmp-finder__item:last-child {
	border-bottom: none;
}

.nmp-finder__item.is-active {
	border-left: 3px solid var(--nmp-color-primary);
	background: rgba(214, 0, 0, 0.06);
}

.nmp-finder__badge {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #f1f5f9;
	border: 1px solid #e5e7eb;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	color: #667085;
	font-weight: 900;
	font-size: 0.95rem;
}

.nmp-finder__mb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 20px;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.nmp-finder__chev {
	margin-left: auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid #cbd5e1;
	border-bottom: 2px solid #cbd5e1;
	transform: rotate(-45deg);
	opacity: 0.75;
}

.nmp-finder__item.is-active .nmp-finder__chev {
	border-color: var(--nmp-color-primary);
	opacity: 1;
}

.nmp-finder__item-copy {
	display: block;
	min-width: 0;
}

.nmp-finder__item-brand {
	display: block;
	font-size: 0.6875rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #98a2b3;
	margin: 0 0 0.15rem;
}

.nmp-finder__item-title {
	font-weight: 900;
	font-size: 0.95rem;
	margin: 0;
}

.nmp-finder__item-sub {
	margin: 0;
	font-size: 0.8rem;
	color: var(--nmp-color-muted);
}

.nmp-finder__detail {
	border: 1px solid var(--nmp-color-border);
	border-radius: 10px;
	padding: 1.25rem;
	min-height: 280px;
}

.nmp-finder-detail__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.nmp-finder-detail__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 900;
}

.nmp-finder-detail__visual {
	background: linear-gradient(135deg, #ffe4e6 0%, #fff 100%);
	border-radius: 10px;
	min-height: 220px;
	margin-bottom: 1.15rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
}

.nmp-finder-visual__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem 0;
}

.nmp-finder-visual__brand {
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.55);
}

.nmp-finder-visual__model {
	font-size: 0.95rem;
	font-weight: 900;
	color: rgba(15, 23, 42, 0.8);
	margin-top: 0.25rem;
}

.nmp-finder-detail__roundel {
	width: 22px;
	height: 22px;
	opacity: 0.75;
	flex: 0 0 auto;
	margin-top: 0.15rem;
}

.nmp-finder-detail__car {
	width: min(640px, 96%);
	height: auto;
	margin: auto;
	display: block;
}

.nmp-finder-detail__car-img {
	max-height: 240px;
	object-fit: contain;
	object-position: center bottom;
}

.nmp-variant-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--nmp-color-border);
	font-size: 0.875rem;
}

.nmp-variant-row__label:empty {
	display: none;
}

.nmp-variant-row__label {
	font-size: 0.75rem;
	font-weight: 800;
	color: #64748b;
}

.nmp-variant-row__years {
	font-size: 0.8125rem;
}

.nmp-variant-row:last-child {
	border-bottom: none;
}

.nmp-ntg-tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 900;
	padding: 0.18rem 0.55rem;
	border-radius: 999px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #2563eb;
	margin-right: 0.35rem;
}

.nmp-finder-detail__footer {
	padding-top: 0.85rem;
}

.nmp-finder-detail__more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.86rem;
	font-weight: 800;
	color: var(--nmp-color-primary);
	text-decoration: none;
}

.nmp-finder-detail__more:hover {
	text-decoration: underline;
}

.nmp-identify-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nmp-identify-card {
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	padding: 1.25rem;
	background: #fff;
}

.nmp-identify-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-weight: 800;
	font-size: 0.875rem;
	border-radius: 8px;
	margin-bottom: 0.75rem;
}

.nmp-identify-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

/* —— Instructions —— */
/* Compatibility pixel pass */
.nmp-page-hero--compat {
	background:
		radial-gradient(circle at 79% 48%, rgba(214, 0, 0, 0.055), transparent 22%),
		linear-gradient(180deg, #fff8f8 0%, #fff 100%);
	padding: 3.1rem 0 3rem;
	border-bottom: 1px solid #f2e8e8;
}

.nmp-page-hero--compat .nmp-page-hero__compat {
	grid-template-columns: minmax(0, 850px) 580px;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.nmp-page-hero--compat .nmp-breadcrumbs {
	margin: 0 0 1.15rem;
	color: #a2adbd;
	font-size: 0.86rem;
}

.nmp-page-hero--compat .nmp-breadcrumbs a {
	color: #a2adbd;
	text-decoration: none;
}

.nmp-page-hero--compat .nmp-pill--soft {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: 23px;
	padding: 0 0.9rem;
	border: 0;
	border-radius: 999px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nmp-page-hero--compat .nmp-pill--soft::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 0.42rem;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px var(--nmp-color-primary);
}

.nmp-page-hero--compat .nmp-page-hero__title {
	max-width: 830px;
	margin: 0.62rem 0 1.05rem;
	font-size: clamp(2.65rem, 3.35vw, 3.18rem);
	line-height: 1.1;
	letter-spacing: 0;
	font-weight: 800;
}

.nmp-page-hero--compat .nmp-text-accent {
	color: var(--nmp-color-primary);
}

.nmp-page-hero--compat .nmp-page-hero__lead {
	max-width: 690px;
	color: #475569;
	font-size: 1.02rem;
	line-height: 1.56;
	opacity: 1;
}

.nmp-page-hero--compat .nmp-page-hero__lead strong {
	color: #0f172a;
	font-weight: 900;
}

.nmp-page-hero--compat .nmp-page-hero__stat-cards {
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.nmp-page-hero--compat .nmp-stat-card {
	min-height: 108px;
	padding: 1.25rem 0.9rem;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 7px 18px rgba(15, 23, 42, 0.055);
	transition: transform var(--nmp-transition), box-shadow var(--nmp-transition), border-color var(--nmp-transition);
}

.nmp-page-hero--compat .nmp-stat-card:hover {
	transform: translateY(-3px);
	border-color: rgba(214, 0, 0, 0.18);
	box-shadow: 0 12px 26px rgba(214, 0, 0, 0.11);
}

.nmp-page-hero--compat .nmp-stat-card::before {
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	margin: 0 auto 0.72rem;
	color: var(--nmp-color-primary);
	border: 2px solid currentColor;
	border-radius: 4px;
}

.nmp-page-hero--compat .nmp-stat-card--models::before {
	width: 20px;
	height: 12px;
	margin-top: 4px;
	border-radius: 8px 8px 3px 3px;
}

.nmp-page-hero--compat .nmp-stat-card--systems::before {
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px #fff;
}

.nmp-page-hero--compat .nmp-stat-card strong {
	color: #0f172a;
	font-size: 1.48rem;
	line-height: 1;
}

.nmp-page-hero--compat .nmp-stat-card span {
	margin-top: 0.35rem;
	color: #64748b;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nmp-compat-finder-section {
	padding-top: 3.95rem;
	padding-bottom: 3.75rem;
}

.nmp-compat-finder-section .nmp-finder {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.nmp-finder__toolbar {
	display: grid;
	grid-template-columns: minmax(280px, 596px) 1fr;
	gap: 0.75rem;
	align-items: center;
	padding: 0 0 0.9rem;
	border-bottom: 1px solid #eef2f7;
}

.nmp-compat-finder-section .nmp-finder__search,
.nmp-compat-finder-section .nmp-finder__filters {
	margin: 0;
}

.nmp-compat-finder-section .nmp-finder__input {
	height: 38px;
	border-color: #d7dee8;
	border-radius: 6px;
	font-size: 0.78rem;
	color: #475569;
	background-position: 0.75rem center;
	transition: border-color var(--nmp-transition), box-shadow var(--nmp-transition);
}

.nmp-compat-finder-section .nmp-finder__input:focus {
	outline: none;
	border-color: #93c5fd;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.nmp-compat-finder-section .nmp-finder__filters {
	gap: 0.42rem;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.nmp-compat-finder-section .nmp-filter-pill {
	min-height: 30px;
	padding: 0 0.78rem;
	border-color: #dce3ed;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-size: 0.7rem;
	font-weight: 900;
	white-space: nowrap;
	transition: background var(--nmp-transition), color var(--nmp-transition), border-color var(--nmp-transition), transform var(--nmp-transition);
}

.nmp-compat-finder-section .nmp-filter-pill:hover {
	border-color: rgba(214, 0, 0, 0.26);
	color: var(--nmp-color-primary);
	transform: translateY(-1px);
}

.nmp-compat-finder-section .nmp-filter-pill.is-active {
	background: var(--nmp-color-primary);
	border-color: var(--nmp-color-primary);
	color: #fff;
}

@media (min-width: 900px) {
	.nmp-compat-finder-section .nmp-finder__split {
		grid-template-columns: 496px 1fr;
		gap: 0;
	}
}

.nmp-compat-finder-section .nmp-finder__list-wrap {
	max-height: 456px;
	border: 0;
	border-radius: 0;
	border-right: 1px solid #e5e7eb;
	overflow-y: auto;
}

.nmp-compat-finder-section .nmp-finder__list-wrap::-webkit-scrollbar {
	width: 8px;
}

.nmp-compat-finder-section .nmp-finder__list-wrap::-webkit-scrollbar-thumb {
	background: #a3a3a3;
	border-radius: 999px;
}

.nmp-compat-finder-section .nmp-finder__item {
	min-height: 58px;
	padding: 0.55rem 1rem;
	border-bottom: 1px solid #eef2f7;
	border-left: 0;
	background: #fff;
	transition: background var(--nmp-transition), transform var(--nmp-transition), box-shadow var(--nmp-transition);
}

.nmp-compat-finder-section .nmp-finder__item:hover {
	background: #fafcff;
	transform: translateX(2px);
}

.nmp-compat-finder-section .nmp-finder__item.is-active {
	background: #fff1f1;
	border-left: 3px solid var(--nmp-color-primary);
}

.nmp-compat-finder-section .nmp-finder__badge {
	width: 48px;
	height: 32px;
	border-radius: 9px;
	background: #d1fae5;
}

.nmp-compat-finder-section .nmp-finder__mb {
	min-width: 37px;
	height: 23px;
	border: 0;
	background: transparent;
	color: #16a34a;
	font-size: 0.5rem;
	line-height: 1;
	letter-spacing: 0.08em;
}

.nmp-compat-finder-section .nmp-finder__item:nth-child(3n) .nmp-finder__badge {
	background: #dff2ff;
}

.nmp-compat-finder-section .nmp-finder__item:nth-child(4n) .nmp-finder__badge {
	background: #fde68a;
}

.nmp-compat-finder-section .nmp-finder__item:nth-child(5n) .nmp-finder__badge {
	background: #f3e8ff;
}

.nmp-compat-finder-section .nmp-finder__item:nth-child(6n) .nmp-finder__badge {
	background: #111827;
}

.nmp-compat-finder-section .nmp-finder__item:nth-child(6n) .nmp-finder__mb {
	color: #dbeafe;
}

.nmp-compat-finder-section .nmp-finder__item-brand {
	display: none;
}

.nmp-compat-finder-section .nmp-finder__item-title {
	font-size: 0.86rem;
	font-weight: 900;
}

.nmp-compat-finder-section .nmp-finder__item-sub {
	font-size: 0.7rem;
	color: #64748b;
}

.nmp-compat-finder-section .nmp-finder__chev {
	width: 7px;
	height: 7px;
	border-color: #cbd5e1;
}

.nmp-compat-finder-section .nmp-finder__detail {
	min-height: 456px;
	padding: 1.75rem 1.45rem 1.3rem 2rem;
	border: 0;
	border-radius: 0;
}

.nmp-compat-finder-section .nmp-finder-detail__head {
	align-items: center;
	margin-bottom: 1.15rem;
}

.nmp-compat-finder-section .nmp-finder-detail__title {
	font-size: 1.42rem;
	line-height: 1.1;
}

.nmp-compat-finder-section .nmp-finder-detail__head .nmp-text-muted {
	margin: 0.45rem 0 0;
	font-size: 0.82rem;
	color: #64748b;
}

.nmp-compat-finder-section .nmp-finder-detail__head .nmp-btn {
	min-height: 34px;
	padding: 0 1rem;
	border-radius: 7px;
	font-size: 0.72rem;
	font-weight: 900;
}

.nmp-compat-finder-section .nmp-finder-detail__head .nmp-btn::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-left: 0.55rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.nmp-compat-finder-section .nmp-finder-detail__visual {
	min-height: 282px;
	margin-bottom: 1rem;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffe5e7 0%, #ffcbd0 100%);
}

.nmp-compat-finder-section .nmp-finder-visual__head {
	padding: 1rem 1rem 0;
}

.nmp-compat-finder-section .nmp-finder-visual__brand {
	color: #6b7280;
	font-size: 0.58rem;
}

.nmp-compat-finder-section .nmp-finder-visual__model {
	color: #111827;
	font-size: 0.92rem;
}

.nmp-compat-finder-section .nmp-finder-detail__roundel {
	width: 22px;
	height: 22px;
}

.nmp-compat-finder-section .nmp-finder-detail__car {
	width: min(610px, 86%);
	margin-top: 2.65rem;
}

.nmp-compat-finder-section .nmp-finder-detail__car-img {
	height: 260px;
	max-height: 260px;
	object-fit: contain;
	object-position: center bottom;
}

.nmp-compat-finder-section .nmp-variant-table {
	display: grid;
	gap: 0.65rem;
}

.nmp-compat-finder-section .nmp-variant-row {
	display: grid;
	grid-template-columns: minmax(150px, 0.32fr) 1fr;
	align-items: center;
	min-height: 60px;
	padding: 0.78rem 1rem;
	border: 1px solid #edf1f6;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nmp-compat-finder-section .nmp-variant-row:hover {
	border-color: #e2e8f0;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
}

.nmp-compat-finder-section .nmp-variant-row__left strong {
	display: inline-block;
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.15;
	color: #06122a;
}

.nmp-compat-finder-section .nmp-variant-row__label,
.nmp-compat-finder-section .nmp-variant-row__years {
	font-size: 0.75rem;
	line-height: 1.25;
	color: #64748b;
}

.nmp-compat-finder-section .nmp-variant-row__label {
	margin-left: 0.16rem;
	font-weight: 800;
}

.nmp-compat-finder-section .nmp-ntg-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	width: fit-content;
	min-height: 24px;
	padding: 0.22rem 0.55rem;
	border-radius: 6px;
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
	font-size: 0.68rem;
	line-height: 1;
	letter-spacing: 0;
	vertical-align: middle;
}

.nmp-compat-finder-section .nmp-variant-row > div:last-child {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	justify-self: start;
}

.nmp-compat-finder-section .nmp-ntg-tag__icon {
	width: 0.74rem;
	height: 0.74rem;
	flex: 0 0 auto;
	stroke-width: 2.4;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-4-5,
.nmp-compat-finder-section .nmp-ntg-tag--ntg-4-7 {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #334155;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-5s1,
.nmp-compat-finder-section .nmp-ntg-tag--ntg-5-1 {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-5s2,
.nmp-compat-finder-section .nmp-ntg-tag--ntg-5-2 {
	background: #ecfeff;
	border-color: #a5f3fc;
	color: #0891b2;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-5-5 {
	background: #faf5ff;
	border-color: #e9d5ff;
	color: #9333ea;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-6,
.nmp-compat-finder-section .nmp-ntg-tag--ntg-6-mbux {
	background: #fff1f2;
	border-color: #fecdd3;
	color: #dc2626;
}

.nmp-compat-finder-section .nmp-ntg-tag--ntg-7,
.nmp-compat-finder-section .nmp-ntg-tag--ntg-7-mbux {
	background: #fff7ed;
	border-color: #fed7aa;
	color: #ea580c;
}

.nmp-compat-finder-section .nmp-compat-matrix {
	display: grid;
	gap: 0.62rem;
}

.nmp-compat-finder-section .nmp-compat-matrix__head,
.nmp-compat-finder-section .nmp-compat-matrix__row {
	display: grid;
	grid-template-columns: minmax(150px, 0.28fr) minmax(130px, 0.24fr) 1fr;
	align-items: center;
	gap: 0.85rem;
}

.nmp-compat-finder-section .nmp-compat-matrix__head {
	padding: 0 1rem 0.25rem;
	color: #94a3b8;
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.nmp-compat-finder-section .nmp-compat-matrix__row {
	min-height: 74px;
	padding: 0.82rem 1rem;
	border: 1px solid #edf1f6;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nmp-compat-finder-section .nmp-compat-matrix__row:hover {
	border-color: #e2e8f0;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.065);
	transform: translateY(-1px);
}

.nmp-compat-finder-section .nmp-compat-matrix__chassis strong {
	display: block;
	color: #06122a;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1.2;
}

.nmp-compat-finder-section .nmp-compat-matrix__body {
	color: #64748b;
	font-size: 0.77rem;
	font-weight: 750;
	line-height: 1.3;
}

.nmp-compat-finder-section .nmp-compat-matrix__ranges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.nmp-compat-finder-section .nmp-compat-range {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 28px;
	padding: 0.28rem 0.56rem;
	border: 1px solid #bfdbfe;
	border-radius: 7px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 0.7rem;
	font-weight: 850;
	line-height: 1;
}

.nmp-compat-finder-section .nmp-compat-range strong,
.nmp-compat-finder-section .nmp-compat-range em {
	display: inline-flex;
	align-items: center;
	gap: 0.24rem;
	font-style: normal;
}

.nmp-compat-finder-section .nmp-compat-range em {
	color: #0f172a;
	font-weight: 800;
}

.nmp-compat-finder-section .nmp-compat-range .nmp-ntg-tag__icon {
	width: 0.72rem;
	height: 0.72rem;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-4-5-4-7 {
	background: #f3f4f6;
	border-color: #d1d5db;
	color: #334155;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-5s1 {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-5s2 {
	background: #ecfeff;
	border-color: #a5f3fc;
	color: #0891b2;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-5-5 {
	background: #faf5ff;
	border-color: #e9d5ff;
	color: #9333ea;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-6-mbux {
	background: #fff1f2;
	border-color: #fecdd3;
	color: #dc2626;
}

.nmp-compat-finder-section .nmp-compat-range--ntg-7-mbux {
	background: #fff7ed;
	border-color: #fed7aa;
	color: #ea580c;
}

.nmp-compat-finder-section .nmp-compat-range--empty {
	background: #f8fafc;
	border-color: #e2e8f0;
	color: #64748b;
}

.nmp-compat-finder-section .nmp-finder-detail__footer {
	display: none;
}

.nmp-compat-identify-section {
	background: #f8fafc;
	padding: 3.45rem 0 3.4rem;
}

.nmp-compat-identify-section .nmp-page-section {
	padding-top: 0;
	padding-bottom: 0;
}

.nmp-compat-identify-section .nmp-section-title {
	max-width: 780px;
	margin: 0 0 1.35rem;
	text-align: left;
	font-size: 2rem;
	line-height: 1.2;
}

.nmp-compat-identify-section .nmp-identify-grid {
	max-width: 910px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.nmp-compat-identify-section .nmp-identify-card {
	position: relative;
	min-height: 132px;
	padding: 1.25rem 1.25rem 1.15rem 4.3rem;
	border-color: #e5e7eb;
	border-radius: 9px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.025);
	transition: transform var(--nmp-transition), box-shadow var(--nmp-transition), border-color var(--nmp-transition);
}

.nmp-compat-identify-section .nmp-identify-card:hover {
	transform: translateY(-3px);
	border-color: rgba(214, 0, 0, 0.16);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.nmp-compat-identify-section .nmp-identify-card__num {
	position: absolute;
	left: 1.25rem;
	top: 1.25rem;
	width: 35px;
	height: 35px;
	border-radius: 7px;
	font-size: 0.82rem;
}

.nmp-compat-identify-section .nmp-identify-card h3 {
	font-size: 0.98rem;
	font-weight: 900;
}

.nmp-compat-identify-section .nmp-identify-card p {
	margin: 0;
	color: #64748b;
	font-size: 0.86rem;
	line-height: 1.52;
}

.nmp-compat-cta.nmp-cta-band--inset {
	margin-top: 3.6rem;
	margin-bottom: 3.6rem;
}

.nmp-compat-cta .nmp-cta-band__inner {
	min-height: 242px;
	border-radius: 10px;
	padding: 3.05rem 2rem;
}

.nmp-compat-cta .nmp-cta-band__title {
	font-size: 2rem;
}

.nmp-compat-cta .nmp-cta-band__actions {
	position: relative;
	z-index: 1;
	margin-top: 0.2rem;
}

.nmp-compat-cta .nmp-btn {
	min-width: 174px;
	min-height: 43px;
	border-radius: 8px;
	font-weight: 900;
}

@media (max-width: 1023px) {
	.nmp-page-hero--compat .nmp-page-hero__compat,
	.nmp-finder__toolbar {
		grid-template-columns: 1fr;
	}

	.nmp-compat-finder-section .nmp-finder__filters {
		flex-wrap: wrap;
	}

	.nmp-compat-identify-section .nmp-identify-grid {
		grid-template-columns: 1fr;
	}
}

.nmp-instructions-hero {
	text-align: center;
	padding-top: 3rem;
}

.nmp-instructions-hero__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	margin: 0.5rem 0;
}

.nmp-instructions-hero__sub {
	max-width: 36rem;
	margin: 0 auto;
}

.nmp-warning-card {
	max-width: 760px;
	margin: 0 auto;
	background: var(--nmp-color-error-tint);
	border: 1px solid rgba(214, 0, 0, 0.15);
	border-left: 4px solid var(--nmp-color-primary);
	border-radius: var(--nmp-radius-md);
	padding: 1.5rem 1.75rem;
}

.nmp-warning-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 800;
}

.nmp-warning-card__list {
	margin: 0;
	padding-left: 1.25rem;
	color: var(--nmp-color-text);
	line-height: 1.6;
}

.nmp-sys-id__grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 1rem;
}

@media (min-width: 768px) {
	.nmp-sys-id__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.nmp-inst-tabs {
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-lg);
	background: #fff;
	overflow: hidden;
}

.nmp-inst-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-bottom: 1px solid var(--nmp-color-border);
	background: var(--nmp-color-surface);
}

.nmp-inst-tab {
	flex: 1 1 auto;
	min-width: 120px;
	border: none;
	background: transparent;
	padding: 0.85rem 1rem;
	font-weight: 600;
	font-size: 0.8125rem;
	cursor: pointer;
	color: var(--nmp-color-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}

.nmp-inst-tab.is-active {
	background: #fff;
	color: var(--nmp-color-primary);
	border-bottom-color: var(--nmp-color-primary);
}

.nmp-inst-panel {
	padding: 2rem 1.5rem;
}

.nmp-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	border-left: 2px solid var(--nmp-color-border);
	margin-left: 0.75rem;
}

.nmp-timeline__item {
	position: relative;
	padding: 0 0 1.75rem 1.75rem;
}

.nmp-timeline__dot {
	position: absolute;
	left: -0.6rem;
	top: 0.2rem;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--nmp-color-primary);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--nmp-color-border);
}

.nmp-timeline__step {
	margin: 0 0 0.35rem;
	font-size: 0.9375rem;
}

.nmp-support-card {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	background: var(--nmp-color-surface);
	border-radius: var(--nmp-radius-lg);
	padding: 2rem;
	border: 1px solid var(--nmp-color-border);
}

.nmp-btn--whatsapp {
	background: var(--nmp-color-success);
	color: #fff;
}

.nmp-btn--whatsapp:hover {
	filter: brightness(1.05);
	color: #fff;
}

/* —— FAQ —— */
/* Instructions pixel pass */
.nmp-instructions-hero {
	text-align: center;
	padding-top: 5.25rem;
	padding-bottom: 1.5rem;
}

.nmp-instructions-hero .nmp-breadcrumbs {
	display: none;
}

.nmp-instructions-hero__title {
	margin: 0 0 0.85rem;
	color: #0f172a;
	font-size: clamp(2.4rem, 3.35vw, 3.3rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.nmp-instructions-hero__sub {
	max-width: 650px;
	margin: 0 auto;
	color: #6b7280;
	font-size: 1.17rem;
	line-height: 1.5;
}

.nmp-instructions-warning-section {
	padding-top: 1.85rem;
	padding-bottom: 2.1rem;
}

.nmp-warning-card {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
	padding: 1.55rem 1.7rem;
	border: 1px solid #fecaca;
	border-radius: 9px;
	background: #fee8e8;
	color: #6b7280;
}

.nmp-warning-card__icon {
	position: relative;
	width: 20px;
	height: 20px;
	margin-top: 0.25rem;
}

.nmp-warning-card__icon::before {
	content: "";
	position: absolute;
	inset: 2px 0 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 18px solid #ef4444;
}

.nmp-warning-card__icon::after {
	content: "!";
	position: absolute;
	left: 7px;
	top: 7px;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.nmp-warning-card__title {
	margin: 0 0 0.55rem;
	color: #ef4444;
	font-size: 1rem;
	font-weight: 900;
}

.nmp-warning-card__list {
	margin: 0;
	padding-left: 1.05rem;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.55;
}

.nmp-system-id-section {
	padding-top: 0.9rem;
	padding-bottom: 2.9rem;
}

.nmp-sys-id {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.035);
}

.nmp-sys-id .nmp-section-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.65rem;
	margin: 0 0 1.25rem;
	text-align: left;
	font-size: 1.7rem;
	line-height: 1.2;
}

.nmp-sys-id__info {
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid var(--nmp-color-primary);
	border-radius: 50%;
}

.nmp-sys-id__info::after {
	content: "i";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: var(--nmp-color-primary);
	font-size: 12px;
	font-weight: 900;
}

.nmp-sys-id__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 0;
}

.nmp-sys-id__grid h3 {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 900;
}

.nmp-sys-id__grid p {
	margin: 0;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.5;
}

.nmp-instructions-tabs-section {
	max-width: 900px;
	padding-top: 0;
	padding-bottom: 4.5rem;
}

.nmp-instructions-tabs-section .nmp-inst-tabs {
	border: 1px solid #dfe4ea;
	border-radius: 9px;
	background: #fff;
	overflow: hidden;
}

.nmp-instructions-tabs-section .nmp-inst-tabs__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-bottom: 0;
	background: #fff;
}

.nmp-instructions-tabs-section .nmp-inst-tab {
	min-height: 58px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #6b7280;
	font-size: 1rem;
	font-weight: 800;
	border-bottom: 0;
	transition: background var(--nmp-transition), color var(--nmp-transition), transform var(--nmp-transition);
}

.nmp-instructions-tabs-section .nmp-inst-tab:hover {
	background: #fff5f5;
	color: var(--nmp-color-primary);
}

.nmp-instructions-tabs-section .nmp-inst-tab.is-active {
	background: var(--nmp-color-primary);
	color: #fff;
	border-bottom-color: transparent;
}

.nmp-instructions-tabs-section .nmp-inst-panel {
	padding: 2.3rem 0 0;
}

.nmp-instructions-tabs-section .nmp-timeline {
	position: relative;
	max-width: 850px;
	margin: 0 auto;
	padding: 0 0 0 5.6rem;
	border-left: 0;
	list-style: none;
}

.nmp-instructions-tabs-section .nmp-timeline::before {
	content: "";
	position: absolute;
	left: 1.75rem;
	top: 1.6rem;
	bottom: 1.7rem;
	width: 1px;
	background: #d1d5db;
}

.nmp-instructions-tabs-section .nmp-timeline__item {
	position: relative;
	min-height: 118px;
	padding: 0 0 2.45rem;
}

.nmp-instructions-tabs-section .nmp-timeline__dot {
	position: absolute;
	left: -5.08rem;
	top: -0.15rem;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 7px 18px rgba(15, 23, 42, 0.24);
	z-index: 1;
	transition: transform var(--nmp-transition), box-shadow var(--nmp-transition);
}

.nmp-instructions-tabs-section .nmp-timeline__dot:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.nmp-instructions-tabs-section .nmp-timeline__dot svg {
	width: 22px;
	height: 22px;
	display: block;
	fill: none;
	stroke: #111827;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nmp-instructions-tabs-section .nmp-timeline__dot--1 svg {
	width: 21px;
	height: 21px;
}

.nmp-instructions-tabs-section .nmp-timeline__dot--2 svg {
	width: 20px;
	height: 20px;
}

.nmp-instructions-tabs-section .nmp-timeline__dot--3 svg {
	width: 23px;
	height: 23px;
}

.nmp-instructions-tabs-section .nmp-timeline__dot--4 svg {
	width: 21px;
	height: 21px;
}

.nmp-instructions-tabs-section .nmp-timeline__step {
	margin: 0 0 0.45rem;
	color: #111827;
	font-size: 1.25rem;
	font-weight: 900;
}

.nmp-instructions-tabs-section .nmp-timeline__step span {
	color: var(--nmp-color-primary);
}

.nmp-instructions-tabs-section .nmp-timeline__content p:not(.nmp-timeline__step) {
	max-width: 765px;
	margin: 0;
	color: #6b7280;
	font-size: 0.92rem;
	line-height: 1.48;
}

.nmp-instructions-support-section {
	padding-top: 0;
	padding-bottom: 5.4rem;
}

.nmp-support-card {
	max-width: 900px;
	min-height: 162px;
	margin: 0 auto;
	padding: 2.25rem 2rem;
	border: 0;
	border-radius: 10px;
	background: #fafafa;
	text-align: center;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.025);
}

.nmp-support-card h2 {
	margin: 0 0 1.25rem;
	color: #111827;
	font-size: 1.65rem;
	font-weight: 900;
}

.nmp-support-card p {
	margin: 0 0 1.75rem;
	color: #6b7280;
	font-size: 1rem;
}

.nmp-btn--whatsapp {
	min-width: 220px;
	min-height: 42px;
	border: 1px solid var(--nmp-color-primary);
	border-radius: 5px;
	background: #22c55e;
	color: #fff;
	font-weight: 900;
	transition: transform var(--nmp-transition), filter var(--nmp-transition), box-shadow var(--nmp-transition);
}

.nmp-btn--whatsapp span {
	width: 14px;
	height: 14px;
	margin-right: 0.55rem;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.nmp-btn--whatsapp:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow: 0 10px 22px rgba(34, 197, 94, 0.22);
	color: #fff;
}

@media (max-width: 767px) {
	.nmp-sys-id__grid,
	.nmp-instructions-tabs-section .nmp-inst-tabs__list {
		grid-template-columns: 1fr;
	}

	.nmp-instructions-tabs-section .nmp-timeline {
		padding-left: 4.7rem;
	}
}

.nmp-faq-page__title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 800;
	margin: 0.5rem 0;
}

.nmp-faq-page__sub {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto 2rem;
}

.nmp-faq-group-title {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 2rem 0 0.75rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--nmp-color-border);
}

.nmp-faq-item {
	border-bottom: 1px solid var(--nmp-color-border);
}

.nmp-faq-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
	background: none;
	border: none;
	padding: 0.85rem 0;
	font: inherit;
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
}

.nmp-faq-item__trigger:focus-visible {
	outline: 2px solid var(--nmp-color-primary);
	outline-offset: 2px;
}

.nmp-faq-item__icon {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--nmp-color-muted);
}

.nmp-faq-item__panel {
	padding: 0 0 1rem;
	color: var(--nmp-color-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.nmp-faq-item__panel p {
	margin: 0;
}

.nmp-faq-support-cta {
	text-align: center;
	background: var(--nmp-color-surface);
	border-radius: var(--nmp-radius-lg);
	padding: 2rem;
	border: 1px solid var(--nmp-color-border);
	max-width: 560px;
	margin: 0 auto;
}

.nmp-faq-support-cta__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1rem;
}

/* —— Contact —— */
.nmp-contact-page__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	margin: 0.5rem 0 1rem;
}

.nmp-contact-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin: 2rem 0;
}

.nmp-contact-card {
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-md);
	padding: 1.25rem;
	background: #fff;
}

.nmp-contact-card h2 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 800;
}

.nmp-contact-form-wrap {
	max-width: 560px;
	margin: 2rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid var(--nmp-color-border);
}

.nmp-field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.nmp-input {
	width: 100%;
	border: 1px solid var(--nmp-color-border-input);
	border-radius: var(--nmp-radius-sm);
	padding: 0.65rem 0.85rem;
	font: inherit;
	font-size: 0.9375rem;
}

.nmp-notice {
	padding: 0.75rem 1rem;
	border-radius: var(--nmp-radius-sm);
	margin-bottom: 1rem;
}

.nmp-notice--success {
	background: #ecfdf3;
	border: 1px solid #16a34a;
	color: #14532d;
}

.nmp-notice--error {
	background: #fef2f2;
	border: 1px solid #dc2626;
	color: #7f1d1d;
}

/* Contact pixel pass */
.nmp-page--contact {
	background: #fff;
}

.nmp-contact-hero {
	padding: 7.25rem 0 2.85rem;
	text-align: center;
	background: #fff;
}

.nmp-contact-hero__title {
	margin: 0;
	color: #020817;
	font-size: clamp(2.5rem, 4.1vw, 3.5rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: 0;
}

.nmp-contact-hero__copy {
	max-width: 640px;
	margin: 1.05rem auto 0;
	color: #4b5563;
	font-size: 1.125rem;
	line-height: 1.55;
}

.nmp-contact-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 3.05rem;
}

.nmp-contact-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 2.45rem;
	padding: 0.45rem 1.05rem;
	border: 1px solid #d9dde4;
	border-radius: 999px;
	background: #fff;
	color: #5f6877;
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nmp-contact-chip:hover,
.nmp-contact-chip:focus-visible {
	color: #d90000;
	border-color: rgba(217, 0, 0, 0.35);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

body.page-template-template-contact .nmp-header__nav-list a[href*="/contact/"] {
	color: var(--nmp-color-primary);
	background: #fff1f1;
	border-radius: 7px;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.nmp-contact-chip__icon,
.nmp-contact-info-card__icon,
.nmp-contact-map-card__pin {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.nmp-contact-chip__icon {
	width: 1rem;
	height: 1rem;
	color: currentColor;
}

.nmp-contact-chip__icon::before,
.nmp-contact-chip__icon::after,
.nmp-contact-info-card__icon::before,
.nmp-contact-info-card__icon::after,
.nmp-contact-map-card__pin::before,
.nmp-contact-map-card__pin::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.nmp-contact-chip__icon--phone::before,
.nmp-contact-info-card__icon--phone::before {
	width: 0.8em;
	height: 0.8em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	border-radius: 0 0 0.36em 0;
	transform: rotate(18deg);
}

.nmp-contact-chip__icon--phone::after,
.nmp-contact-info-card__icon--phone::after {
	width: 0.34em;
	height: 0.18em;
	border-radius: 999px;
	background: currentColor;
	transform: translate(-0.3em, -0.35em) rotate(18deg);
	box-shadow: 0.58em 0.72em 0 currentColor;
}

.nmp-contact-chip__icon--email::before,
.nmp-contact-info-card__icon--email::before {
	width: 0.95em;
	height: 0.68em;
	border: 1.8px solid currentColor;
	border-radius: 0.12em;
}

.nmp-contact-chip__icon--email::after,
.nmp-contact-info-card__icon--email::after {
	width: 0.62em;
	height: 0.62em;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(-45deg) translateY(-0.08em);
}

.nmp-contact-chip__icon--whatsapp::before,
.nmp-contact-info-card__icon--whatsapp::before {
	width: 0.95em;
	height: 0.95em;
	border: 1.9px solid currentColor;
	border-radius: 50%;
}

.nmp-contact-chip__icon--whatsapp::after,
.nmp-contact-info-card__icon--whatsapp::after {
	left: 0.1em;
	bottom: 0.02em;
	width: 0.28em;
	height: 0.28em;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(-16deg);
}

.nmp-contact-page {
	max-width: 1148px;
	padding-top: 1.7rem;
	padding-bottom: 6.35rem;
}

.nmp-contact-page .nmp-notice {
	max-width: 760px;
	margin: 0 auto 1.25rem;
}

.nmp-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 352px;
	gap: 3.1rem;
	align-items: start;
	justify-content: center;
}

.nmp-contact-form-card {
	min-height: 862px;
	padding: 2.15rem 2rem;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.035);
}

.nmp-contact-form-card h2 {
	margin: 0 0 1.75rem;
	color: #020817;
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.2;
}

.nmp-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.45rem 1.55rem;
}

.nmp-contact-form .nmp-field {
	margin: 0;
}

.nmp-contact-form__website {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.nmp-contact-form .nmp-field--message {
	margin-top: 1.9rem;
}

.nmp-contact-form .nmp-field label {
	margin-bottom: 0.55rem;
	color: #020817;
	font-size: 0.92rem;
	font-weight: 700;
}

.nmp-contact-form .nmp-input {
	min-height: 2.75rem;
	border: 1px solid #d1d5db;
	border-radius: 0.45rem;
	background: #fff;
	color: #111827;
	font-size: 0.95rem;
	line-height: 1.4;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.nmp-contact-form .nmp-input:focus {
	border-color: #d90000;
	box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.12);
	outline: none;
}

.nmp-contact-form select.nmp-input {
	padding-right: 2.2rem;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
	background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.nmp-contact-form textarea.nmp-input {
	min-height: 150px;
	resize: vertical;
}

.nmp-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 2.85rem;
	margin-top: 1.45rem;
	border: 0;
	border-radius: 0.45rem;
	background: #d90000;
	color: #fff;
	font: inherit;
	font-size: 0.94rem;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(217, 0, 0, 0.18);
	cursor: pointer;
	transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nmp-contact-submit:hover,
.nmp-contact-submit:focus-visible {
	background: #b90000;
	box-shadow: 0 14px 30px rgba(217, 0, 0, 0.24);
	transform: translateY(-1px);
	outline: none;
}

.nmp-contact-sidebar {
	display: grid;
	gap: 1rem;
}

.nmp-contact-info-card,
.nmp-contact-map-card {
	border: 1px solid #d9dde4;
	border-radius: 0.8rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nmp-contact-info-card:hover,
.nmp-contact-map-card:hover {
	border-color: rgba(217, 0, 0, 0.22);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.nmp-contact-info-card {
	display: grid;
	grid-template-columns: 2.65rem minmax(0, 1fr);
	gap: 1rem;
	min-height: 6.35rem;
	padding: 1.25rem;
}

.nmp-contact-info-card__icon {
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 50%;
	background: #fee2e2;
	color: #d90000;
	font-size: 1rem;
}

.nmp-contact-info-card__icon--whatsapp {
	background: #d1fae5;
	color: #16a34a;
}

.nmp-contact-info-card__icon--hours,
.nmp-contact-info-card__icon--shield {
	background: #f3f4f6;
	color: #6b7280;
}

.nmp-contact-info-card__icon--hours::before {
	width: 1em;
	height: 1em;
	border: 1.9px solid currentColor;
	border-radius: 50%;
}

.nmp-contact-info-card__icon--hours::after {
	width: 0.42em;
	height: 0.42em;
	border-left: 1.9px solid currentColor;
	border-bottom: 1.9px solid currentColor;
	transform: translate(0.08em, -0.12em);
}

.nmp-contact-info-card__icon--shield::before {
	width: 0.9em;
	height: 1em;
	border: 1.9px solid currentColor;
	border-radius: 0.4em 0.4em 0.55em 0.55em;
	clip-path: polygon(50% 0, 100% 18%, 88% 76%, 50% 100%, 12% 76%, 0 18%);
}

.nmp-contact-info-card h2,
.nmp-contact-map-card h2 {
	margin: 0 0 0.25rem;
	color: #020817;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.nmp-contact-info-card a {
	color: #d90000;
	font-weight: 800;
	text-decoration: none;
}

.nmp-contact-info-card__link {
	display: inline-flex;
	margin-top: 0.35rem;
	color: #16a34a !important;
	font-size: 0.86rem;
}

.nmp-contact-info-card p {
	margin: 0.15rem 0 0;
	color: #4b5563;
	font-size: 0.9rem;
	line-height: 1.35;
}

.nmp-contact-map-card {
	overflow: hidden;
}

.nmp-contact-map-card h2 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.25rem 0.9rem;
	border-bottom: 1px solid #f0cfcf;
}

.nmp-contact-map-card__pin {
	width: 1rem;
	height: 1rem;
	color: #d90000;
}

.nmp-contact-map-card__pin::before,
.nmp-contact-map__marker::before {
	width: 0.92em;
	height: 0.92em;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.nmp-contact-map-card__pin::after,
.nmp-contact-map__marker::after {
	width: 0.28em;
	height: 0.28em;
	border-radius: 50%;
	background: currentColor;
}

.nmp-contact-map {
	display: flex;
	min-height: 12.25rem;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.35rem;
	text-align: center;
	background-color: #fff8f8;
	background-image: linear-gradient(rgba(217, 0, 0, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(217, 0, 0, 0.14) 1px, transparent 1px);
	background-size: 52px 28px;
	color: #d90000;
}

.nmp-contact-map__marker {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.05rem;
	height: 2.05rem;
	margin-bottom: 0.65rem;
	color: #d90000;
	font-size: 1.75rem;
}

.nmp-contact-map p {
	margin: 0;
	color: #6b7280;
	font-size: 0.92rem;
	line-height: 1.3;
}

.nmp-contact-map strong {
	color: #d90000;
	font-weight: 700;
}

.nmp-contact-map a {
	margin-top: 0.65rem;
	color: #d90000;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 1024px) {
	.nmp-contact-layout {
		grid-template-columns: 1fr;
	}

	.nmp-contact-form-card {
		min-height: auto;
	}
}

@media (max-width: 700px) {
	.nmp-contact-hero {
		padding: 4.25rem 0 2rem;
	}

	.nmp-contact-form-card {
		padding: 1.35rem;
	}

	.nmp-contact-form__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 559px) {
	.nmp-page,
	.nmp-page-hero,
	.nmp-page-section,
	.nmp-contact-hero {
		overflow: hidden;
	}

	.nmp-page-hero__inner,
	.nmp-page-hero__compat,
	.nmp-page-hero__compat-copy,
	.nmp-page-hero__stats,
	.nmp-page-hero__stat-cards,
	.nmp-finder,
	.nmp-contact-layout,
	.nmp-contact-form-card,
	.nmp-contact-sidebar,
	.nmp-warning-card,
	.nmp-sys-id,
	.nmp-faq-page,
	.nmp-faq-support-cta {
		min-width: 0;
	}

	.nmp-page-hero__title,
	.nmp-page-hero--coverage .nmp-page-hero__title,
	.nmp-page-hero--compat .nmp-page-hero__title,
	.nmp-instructions-hero__title,
	.nmp-contact-hero__title,
	.nmp-faq-page__title {
		max-width: 100%;
		font-size: clamp(2rem, 10vw, 2.6rem);
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.nmp-page-hero--coverage .nmp-page-hero__title {
		font-size: clamp(1.45rem, 7vw, 1.72rem);
		line-height: 1.05;
	}

	.nmp-page-hero--coverage .nmp-page-hero__inner > div:first-child,
	.nmp-page-hero--coverage .nmp-page-hero__lead,
	.nmp-coverage-disclaimer {
		width: min(100%, calc(100vw - 2rem));
		max-width: calc(100vw - 2rem);
		white-space: normal !important;
		word-break: break-word;
	}

	.nmp-page-hero__lead,
	.nmp-page-hero--coverage .nmp-page-hero__lead,
	.nmp-page-hero--compat .nmp-page-hero__lead,
	.nmp-instructions-hero__sub,
	.nmp-contact-hero__copy,
	.nmp-faq-page__sub {
		max-width: 100%;
		font-size: 1rem;
		overflow-wrap: anywhere;
	}

	.nmp-page-hero--compat .nmp-page-hero__stat-cards {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nmp-region-tabs,
	.nmp-finder__filters,
	.nmp-inst-tabs__list,
	.nmp-contact-chips,
	.nmp-faq-support-cta__btns,
	.nmp-cta-band__actions {
		max-width: 100%;
		overflow-x: auto;
	}

	.nmp-warning-card {
		padding: 1.25rem;
	}

	.nmp-contact-chips {
		justify-content: flex-start;
		padding-bottom: 0.25rem;
	}

	.nmp-contact-chip {
		flex: 0 0 auto;
		max-width: calc(100vw - 2rem);
	}

	.nmp-input,
	.nmp-contact-form input,
	.nmp-contact-form select,
	.nmp-contact-form textarea {
		max-width: 100%;
	}
}
