:root {
	--npb-blue: #001c77;
	--npb-blue-dark: #071034;
	--npb-yellow: #fcc40b;
	--npb-white: #f7f8fb;
	--npb-dark: #1f2937;
	--npb-ink: #0b1220;
	--npb-muted: #647083;
	--npb-line: rgba(15, 23, 42, 0.12);
	--npb-radius: 8px;
	--npb-shadow: 0 22px 70px rgba(0, 28, 119, 0.17);
	--npb-soft-shadow: 0 14px 42px rgba(15, 23, 42, 0.09);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--npb-white);
	color: var(--npb-dark);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--npb-ink);
	line-height: 1.06;
}

h1 {
	margin-bottom: 1.25rem;
	font-size: clamp(2.8rem, 6vw, 5.95rem);
	max-width: 980px;
}

h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
	margin-bottom: 0.7rem;
	font-size: 1.15rem;
}

p {
	margin-bottom: 0;
}

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

.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 999;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--npb-yellow);
	color: var(--npb-ink);
}

.npb-container {
	width: min(1200px, calc(100% - 40px));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 248, 251, 0.94);
	border-bottom: 1px solid rgba(31, 41, 55, 0.1);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 2rem;
}

.site-branding {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 112px;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: 120px;
	max-width: 30vw;
	line-height: 0;
}

.custom-logo {
	width: 100%;
	height: auto;
	max-height: 56px;
	display: block;
	max-width: 100%;
	object-fit: contain;
}

.npb-header-logo {
	width: 120px;
	max-width: 100%;
	height: auto;
	aspect-ratio: 984.48 / 458.65;
}

.site-brand-text {
	display: inline-flex;
	align-items: center;
	color: var(--npb-ink);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0;
}

.site-brand-text:hover {
	color: var(--npb-blue);
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 1.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	font-weight: 800;
}

.main-navigation a {
	position: relative;
	color: var(--npb-dark);
}

.main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 3px;
	background: var(--npb-yellow);
	transition: width 180ms ease;
}

.main-navigation a:hover {
	color: var(--npb-blue);
}

.main-navigation a:hover::after {
	width: 100%;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--npb-blue);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current-menu-ancestor > a::after {
	width: 100%;
}

.main-navigation .nav-quote > a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.7rem 1rem;
	background: var(--npb-blue);
	color: #fff;
	border-radius: var(--npb-radius);
	box-shadow: 0 12px 28px rgba(0, 28, 119, 0.18);
}

.main-navigation .nav-quote > a::after {
	display: none;
}

.main-navigation .nav-quote.current-menu-item > a,
.main-navigation .nav-quote.current_page_item > a,
.main-navigation .nav-quote > a:hover {
	background: var(--npb-yellow);
	color: var(--npb-ink);
}

.site-search-toggle {
	display: inline-grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.14);
	border-radius: var(--npb-radius);
	color: var(--npb-blue);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	cursor: pointer;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-search-toggle svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible {
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-blue-dark);
	outline: 0;
	transform: translateY(-1px);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--npb-line);
	background: #fff;
	border-radius: var(--npb-radius);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--npb-blue);
}

body.search-overlay-open {
	overflow: hidden;
}

.npb-site-search[hidden] {
	display: none;
}

.npb-site-search {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: grid;
	padding: clamp(1rem, 3vw, 2rem);
	place-items: start center;
	overflow-y: auto;
}

.npb-site-search-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(7, 16, 52, 0.72);
	backdrop-filter: blur(12px);
}

.npb-site-search-panel {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin-top: clamp(0.4rem, 2.5vw, 1.6rem);
	padding: clamp(1.2rem, 3vw, 2rem);
	background:
		linear-gradient(180deg, #fff, #f8fafc),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.035) 0 1px, transparent 1px 84px);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 10px;
	box-shadow: 0 36px 110px rgba(0, 0, 0, 0.34);
	animation: npb-search-panel-in 180ms ease both;
}

.npb-site-search-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1rem;
}

.npb-site-search-head h2 {
	max-width: 760px;
	font-size: clamp(1.55rem, 2.35vw, 2.45rem);
}

.npb-site-search-close {
	display: inline-grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	background: var(--npb-blue);
	border: 1px solid rgba(0, 28, 119, 0.2);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.npb-site-search-close span {
	margin-top: -0.08em;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
}

.npb-site-search-close:hover,
.npb-site-search-close:focus-visible {
	background: var(--npb-yellow);
	color: var(--npb-blue-dark);
	outline: 0;
	transform: translateY(-1px);
}

.npb-site-search-field {
	display: flex;
	align-items: center;
	min-height: 76px;
	margin-bottom: clamp(0.8rem, 1.8vw, 1.1rem);
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.13);
	border-radius: 10px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.npb-site-search-field > span {
	display: inline-grid;
	width: 72px;
	height: 74px;
	flex: 0 0 72px;
	place-items: center;
	color: var(--npb-blue);
}

.npb-site-search-field svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.npb-site-search-field input {
	width: 100%;
	min-width: 0;
	height: 74px;
	padding: 0 1.2rem 0 0;
	background: transparent;
	border: 0;
	color: var(--npb-ink);
	font: inherit;
	font-size: clamp(1.25rem, 2vw, 1.8rem);
	font-weight: 800;
	outline: 0;
}

.npb-site-search-field input::placeholder {
	color: rgba(100, 112, 131, 0.78);
}

.npb-site-search-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
	gap: clamp(1rem, 2vw, 1.4rem);
}

.npb-site-search-results,
.npb-site-search-aside {
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.055);
}

.npb-site-search-results {
	min-height: 0;
	padding: clamp(1rem, 2vw, 1.25rem);
}

.npb-site-search-empty {
	display: grid;
	min-height: 0;
	align-content: center;
	padding: clamp(1rem, 2vw, 1.35rem);
	background: rgba(255, 255, 255, 0.72);
	border: 1px dashed rgba(0, 28, 119, 0.16);
	border-radius: var(--npb-radius);
}

.npb-site-search-empty[hidden] {
	display: none;
}

.npb-site-search-empty h3 {
	margin-bottom: 0.7rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.npb-site-search-empty p {
	max-width: 560px;
	color: var(--npb-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.npb-site-search-empty .npb-button {
	width: fit-content;
	margin-top: 1.2rem;
}

.npb-site-search-help {
	margin-top: 0.85rem;
	background: #fff;
	border-style: solid;
}

.npb-site-search-list {
	display: grid;
	gap: 0.7rem;
}

.npb-site-search-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.75rem;
	padding: 0.75rem 0.85rem;
	background: rgba(0, 28, 119, 0.055);
	border: 1px solid rgba(0, 28, 119, 0.1);
	border-radius: var(--npb-radius);
}

.npb-site-search-summary[hidden] {
	display: none;
}

.npb-site-search-summary strong {
	color: var(--npb-blue-dark);
	font-size: 0.95rem;
	line-height: 1.3;
}

.npb-site-search-summary span {
	flex: 0 0 auto;
	color: var(--npb-blue);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.25;
}

.npb-site-search-result {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 0.9rem;
	align-items: center;
	padding: 0.68rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--npb-radius);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-site-search-result[hidden] {
	display: none;
}

.npb-site-search-result:hover,
.npb-site-search-result:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(252, 196, 11, 0.68);
	box-shadow: 0 18px 42px rgba(0, 28, 119, 0.1);
	outline: 0;
}

.npb-site-search-result img,
.npb-site-search-result-mark {
	width: 68px;
	height: 68px;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.1);
	border-radius: 7px;
	object-fit: contain;
}

.npb-site-search-result-mark {
	display: block;
	background:
		linear-gradient(135deg, rgba(0, 28, 119, 0.94), rgba(7, 16, 52, 0.94)),
		linear-gradient(90deg, var(--npb-yellow), var(--npb-yellow));
	background-size: auto, 36px 3px;
	background-position: center, center;
	background-repeat: no-repeat;
}

.npb-site-search-result em {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--npb-blue);
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.npb-site-search-result strong {
	display: block;
	color: var(--npb-ink);
	font-size: 1rem;
	line-height: 1.25;
}

.npb-site-search-result small {
	display: block;
	margin-top: 0.3rem;
	color: var(--npb-muted);
	font-size: 0.86rem;
	line-height: 1.35;
}

.npb-site-search-aside {
	display: grid;
	gap: 0;
	align-content: start;
	padding: clamp(1rem, 2vw, 1.25rem);
}

.npb-site-search-aside section {
	margin-bottom: 1.35rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid rgba(0, 28, 119, 0.08);
}

.npb-site-search-aside section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.npb-site-search-aside h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.7rem;
	color: var(--npb-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.npb-site-search-aside section + section h3 {
	margin-top: 0.3rem;
}

.npb-site-search-aside h3::before {
	content: "";
	width: 4px;
	height: 18px;
	flex: 0 0 4px;
	background: var(--npb-yellow);
	border-radius: 999px;
}

.npb-site-search-links,
.npb-site-search-tags,
.npb-site-search-featured {
	display: grid;
	gap: 0.55rem;
}

.npb-site-search-links a,
.npb-site-search-tags a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1rem;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.1);
	border-radius: var(--npb-radius);
	color: var(--npb-ink);
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.25;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.035);
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.npb-site-search-links a:hover,
.npb-site-search-tags a:hover,
.npb-site-search-links a:focus-visible,
.npb-site-search-tags a:focus-visible {
	transform: translateY(-1px);
	background: rgba(252, 196, 11, 0.08);
	border-color: rgba(252, 196, 11, 0.62);
	color: var(--npb-blue);
	outline: 0;
}

.npb-site-search-featured a {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 0.7rem;
	align-items: center;
	padding: 0.62rem 0.7rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(0, 28, 119, 0.08);
	border-radius: var(--npb-radius);
	color: var(--npb-ink);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.3;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.npb-site-search-featured a:hover,
.npb-site-search-featured a:focus-visible {
	transform: translateY(-1px);
	background: #fff;
	border-color: rgba(252, 196, 11, 0.62);
	color: var(--npb-blue);
	outline: 0;
}

.npb-site-search-featured img {
	width: 48px;
	height: 48px;
	padding: 0.2rem;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.1);
	border-radius: 6px;
	object-fit: contain;
}

@keyframes npb-search-panel-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.hero-section {
	position: relative;
	overflow: hidden;
	min-height: 820px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(105deg, rgba(0, 28, 119, 0.96) 0%, rgba(0, 28, 119, 0.84) 36%, rgba(7, 16, 52, 0.54) 64%, rgba(7, 16, 52, 0.22) 100%),
		url("../img/npb-hero-industrie-burkina.jpg") center right / cover no-repeat;
	color: #fff;
	isolation: isolate;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(7, 16, 52, 0.08), rgba(7, 16, 52, 0.62)),
		radial-gradient(circle at 82% 34%, rgba(252, 196, 11, 0.16), transparent 28%);
}

.hero-overlay::after {
	content: "";
	position: absolute;
	right: -18vw;
	bottom: -24vw;
	width: 64vw;
	height: 64vw;
	background:
		linear-gradient(45deg, rgba(252, 196, 11, 0.11), rgba(255, 255, 255, 0.03));
	clip-path: polygon(18% 0, 100% 22%, 82% 100%, 0 76%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
	align-items: center;
	gap: 4rem;
	padding-block: 7rem;
}

.hero-copy {
	max-width: 860px;
	animation: npb-rise 650ms ease both;
	text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3 {
	color: #fff;
}

.hero-copy h1 {
	max-width: 900px;
	margin-bottom: 1.4rem;
}

.eyebrow {
	margin-bottom: 1rem;
	color: var(--npb-yellow);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.hero-lead {
	max-width: 680px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	font-weight: 500;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.npb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0.95rem 1.4rem;
	border-radius: var(--npb-radius);
	font-weight: 900;
	line-height: 1;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.npb-button-primary {
	background: var(--npb-yellow);
	color: var(--npb-ink);
	box-shadow: 0 18px 38px rgba(252, 196, 11, 0.3);
}

.npb-button-primary:hover {
	background: #ffd238;
}

.npb-button-secondary {
	background: rgba(255, 255, 255, 0.11);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.32);
}

.npb-button-secondary:hover {
	background: rgba(255, 255, 255, 0.18);
}

.hero-panel {
	display: grid;
	gap: 1rem;
	animation: npb-rise 850ms ease 120ms both;
}

.metric-card {
	padding: 1.25rem;
	background: rgba(11, 18, 32, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
	backdrop-filter: blur(14px);
}

.metric-card span {
	display: block;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
}

.metric-card strong {
	display: block;
	margin-top: 0.35rem;
	color: #fff;
	font-size: clamp(1.45rem, 3vw, 2.35rem);
	line-height: 1.05;
}

.metric-card.wide {
	border-left: 4px solid var(--npb-yellow);
}

.metric-card.wide strong {
	font-size: 1.35rem;
}

.npb-section {
	padding-block: clamp(4.75rem, 8vw, 7.5rem);
}

.section-heading {
	max-width: 830px;
	margin-bottom: 2.4rem;
}

.section-heading > p:not(.eyebrow) {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.75);
}

.section-heading.align-left {
	margin: 0;
}

.featured-filters-section {
	background: #fff;
}

.business-feature {
	display: grid;
	grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
	gap: 1.4rem;
	align-items: stretch;
}

.business-media {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	border-radius: var(--npb-radius);
	background: var(--npb-blue-dark);
	box-shadow: var(--npb-shadow);
}

.business-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 16, 52, 0), rgba(7, 16, 52, 0.28));
	pointer-events: none;
}

.business-media img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	transition: transform 420ms ease;
}

.business-media:hover img {
	transform: scale(1.035);
}

.business-media.elevated {
	min-height: 460px;
}

.business-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.business-card,
.mini-product-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.business-card {
	padding: 1.35rem;
}

.business-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--npb-yellow);
}

.business-card:hover,
.mini-product-card:hover {
	transform: translateY(-5px);
	border-color: rgba(252, 196, 11, 0.7);
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
}

.business-card-kicker {
	display: inline-flex;
	margin-bottom: 0.85rem;
	color: var(--npb-blue);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.business-card p {
	margin-bottom: 1rem;
	color: var(--npb-muted);
}

.npb-home-product-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.npb-home-product-card::before {
	display: none;
}

.npb-home-product-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--npb-blue-dark);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
}

.npb-home-product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.npb-home-product-card h3 a:hover {
	color: var(--npb-blue);
}

.npb-home .npb-section {
	padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.npb-home-hero {
	min-height: min(780px, calc(100vh - 82px));
	background:
		linear-gradient(103deg, rgba(0, 28, 119, 0.97) 0%, rgba(0, 28, 119, 0.84) 42%, rgba(7, 16, 52, 0.42) 72%, rgba(7, 16, 52, 0.16) 100%),
		url("../img/npb-hero-industrie-burkina.jpg") center right / cover no-repeat;
}

.npb-home-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
	align-items: end;
	gap: clamp(2rem, 5vw, 5rem);
	padding-block: clamp(6.5rem, 10vw, 9rem) clamp(4rem, 7vw, 5.5rem);
}

.npb-home-hero .hero-copy {
	max-width: 880px;
}

.npb-home-hero h1 {
	max-width: 820px;
	font-size: clamp(3rem, 5.6vw, 5.45rem);
}

.npb-hero-signal {
	position: relative;
	display: grid;
	gap: 0.7rem;
	padding: 1.25rem;
	background: rgba(7, 16, 52, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-bottom: 4px solid var(--npb-yellow);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
	backdrop-filter: blur(16px);
}

.npb-hero-signal span {
	display: inline-flex;
	width: fit-content;
	min-height: 30px;
	align-items: center;
	padding: 0.35rem 0.7rem;
	background: rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.npb-hero-signal strong {
	display: block;
	max-width: 320px;
	margin-top: 0.55rem;
	color: #fff;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	line-height: 1.18;
}

.npb-section-top {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
}

.npb-section-top > div {
	max-width: 760px;
}

.npb-section-top p:not(.eyebrow) {
	max-width: 660px;
	margin-top: 0.9rem;
	color: var(--npb-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.npb-section-top .text-link {
	color: var(--npb-blue);
	font-weight: 900;
	white-space: nowrap;
}

.npb-home-categories {
	background:
		linear-gradient(180deg, #fff, var(--npb-white)),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.05) 0 1px, transparent 1px 86px);
}

.npb-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.npb-category-card {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	padding: clamp(1.25rem, 2vw, 1.6rem);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-category-card::after {
	content: "";
	position: absolute;
	inset: auto -18% -28% auto;
	width: 180px;
	height: 180px;
	background: rgba(252, 196, 11, 0.14);
	clip-path: polygon(18% 0, 100% 24%, 78% 100%, 0 72%);
}

.npb-category-card:hover {
	transform: translateY(-5px);
	border-color: rgba(252, 196, 11, 0.72);
	box-shadow: 0 28px 70px rgba(0, 28, 119, 0.12);
}

.npb-category-card span {
	display: inline-flex;
	margin-bottom: 1.6rem;
	color: var(--npb-blue);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.npb-category-card h3 {
	max-width: 260px;
	color: var(--npb-blue-dark);
	font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

.npb-category-card p {
	position: relative;
	z-index: 1;
	max-width: 330px;
	margin-top: 0.9rem;
	color: var(--npb-muted);
	font-size: 0.96rem;
}

.npb-category-card a {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-top: 1.35rem;
	color: var(--npb-blue);
	font-weight: 900;
}

.npb-home-featured {
	background: #fff;
}

.npb-home-product-grid {
	align-items: stretch;
}

.npb-home-brands {
	background:
		linear-gradient(125deg, rgba(7, 16, 52, 0.98), rgba(0, 28, 119, 0.92)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.08) 0 1px, transparent 1px 96px);
	color: rgba(255, 255, 255, 0.76);
}

.npb-brand-showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.npb-brand-copy h2 {
	color: #fff;
}

.npb-brand-copy p:not(.eyebrow) {
	max-width: 620px;
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.05rem;
}

.npb-brand-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.npb-brand-card-grid span {
	display: grid;
	min-height: 106px;
	place-items: center;
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--npb-radius);
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.04em;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.npb-brand-card-grid span::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 0.8rem;
	background: var(--npb-yellow);
}

.npb-home-why {
	background: var(--npb-white);
}

.npb-home-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.npb-why-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(1.2rem, 2vw, 1.5rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-why-panel::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 1rem;
	background: var(--npb-yellow);
}

.npb-why-panel h3 {
	color: var(--npb-blue-dark);
}

.npb-why-panel p {
	color: var(--npb-muted);
	font-size: 0.95rem;
}

.npb-home-quote {
	padding-block: clamp(4rem, 7vw, 5.5rem);
	background:
		linear-gradient(120deg, rgba(0, 28, 119, 0.96), rgba(7, 16, 52, 0.94)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 118px);
	color: #fff;
}

.npb-home-quote-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.npb-home-quote h2 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.npb-home-portal .npb-section {
	padding-block: clamp(3.8rem, 6vw, 5.4rem);
}

.npb-portal-hero {
	position: relative;
	overflow: hidden;
	min-height: min(860px, calc(100vh - 130px));
	padding-block: clamp(5.5rem, 9vw, 8.2rem);
	background:
		linear-gradient(112deg, rgba(0, 28, 119, 0.96), rgba(7, 16, 52, 0.86)),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		url("../img/npb-hero-industrie-burkina.jpg") center right / cover no-repeat;
	background-size: auto, 54px 54px, 54px 54px, cover;
	color: #fff;
}

.npb-portal-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 28, 119, 0.2), transparent 58%),
		radial-gradient(circle at 72% 28%, rgba(252, 196, 11, 0.12), transparent 25%);
	pointer-events: none;
}

.npb-portal-hero::after {
	content: "";
	position: absolute;
	right: -8vw;
	bottom: -16vw;
	width: 44vw;
	height: 44vw;
	min-width: 360px;
	min-height: 360px;
	background: rgba(252, 196, 11, 0.12);
	clip-path: polygon(12% 0, 100% 18%, 78% 100%, 0 74%);
	pointer-events: none;
}

.npb-portal-hero-grid {
	position: relative;
	z-index: 1;
	display: block;
}

.npb-portal-hero-copy {
	max-width: 940px;
}

.npb-portal-hero-copy h1 {
	max-width: 800px;
	margin-bottom: 1.2rem;
	color: #fff;
	font-size: clamp(2.85rem, 5.1vw, 5.1rem);
	line-height: 1.02;
}

.npb-portal-hero-copy p:not(.eyebrow) {
	max-width: 660px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.83);
	font-size: clamp(1.04rem, 1.8vw, 1.24rem);
	font-weight: 550;
}

.npb-trust-wall {
	padding-block: clamp(2.8rem, 5vw, 4.2rem);
	background: #fff;
	border-bottom: 1px solid var(--npb-line);
}

.npb-compact-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.4rem;
}

.npb-compact-heading > p {
	max-width: 520px;
	color: var(--npb-muted);
	font-size: 0.98rem;
	line-height: 1.65;
}

.npb-compact-heading h2 {
	font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.npb-client-logo-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.55rem;
}

.npb-client-logo-grid span {
	display: grid;
	min-height: 78px;
	place-items: center;
	padding: 0.8rem 1rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.075);
	border-radius: 6px;
	color: rgba(31, 41, 55, 0.68);
	filter: grayscale(0.1) saturate(0.95);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.npb-client-logo-grid span:hover {
	transform: translateY(-2px);
	background: #fff;
	border-color: rgba(0, 28, 119, 0.18);
	color: var(--npb-blue);
	filter: none;
}

.npb-logo-wordmark svg {
	display: block;
	width: 100%;
	height: 42px;
}

.npb-client-logo-grid img {
	display: block;
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.npb-logo-wordmark text,
.npb-brand-wordmark text {
	fill: currentColor;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.npb-portal-heading {
	max-width: 840px;
	margin-bottom: clamp(1.6rem, 3vw, 2.3rem);
}

.npb-portal-categories .npb-portal-heading {
	max-width: 1200px;
	text-align: left;
}

.npb-portal-categories .npb-portal-heading h2 {
	max-width: 840px;
}

.npb-portal-heading h2,
.npb-section-top h2 {
	font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.npb-portal-categories .npb-portal-heading p:not(.eyebrow) {
	max-width: 670px;
	margin-top: 1rem;
	color: var(--npb-muted);
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	line-height: 1.72;
}

.npb-portal-categories {
	background:
		linear-gradient(180deg, var(--npb-white), #fff),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.04) 0 1px, transparent 1px 90px);
}

.npb-portal-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.npb-portal-category-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	align-content: start;
	min-height: 282px;
	padding: clamp(1.35rem, 2.2vw, 1.8rem);
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.npb-portal-category-card::after {
	content: "";
	position: absolute;
	inset: auto -70px -86px auto;
	width: 180px;
	height: 180px;
	background: rgba(252, 196, 11, 0.13);
	clip-path: polygon(16% 0, 100% 24%, 80% 100%, 0 74%);
}

.npb-portal-category-card:hover {
	transform: translateY(-6px);
	border-color: rgba(252, 196, 11, 0.72);
	box-shadow: 0 30px 78px rgba(0, 28, 119, 0.14);
}

.npb-portal-category-card:focus-visible {
	outline: 3px solid rgba(252, 196, 11, 0.72);
	outline-offset: 4px;
}

.npb-category-card-icon,
.npb-portal-why-card > span {
	display: inline-grid;
	width: 52px;
	height: 52px;
	margin-bottom: 1.35rem;
	place-items: center;
	background: var(--npb-blue);
	color: var(--npb-yellow);
	border: 1px solid rgba(252, 196, 11, 0.2);
	border-radius: 7px;
	box-shadow: 0 14px 30px rgba(0, 28, 119, 0.18);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.npb-portal-category-card:hover .npb-category-card-icon,
.npb-portal-why-card:hover > span {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(0, 28, 119, 0.24);
}

.npb-category-icon {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.npb-portal-category-card h3 {
	margin-bottom: 0.8rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.16rem, 1.5vw, 1.32rem);
	letter-spacing: 0;
	line-height: 1.16;
}

.npb-portal-why-card h3 {
	margin-bottom: 0.75rem;
	color: var(--npb-blue-dark);
	font-size: 1.2rem;
	line-height: 1.18;
}

.npb-portal-category-card p {
	position: relative;
	z-index: 1;
	color: var(--npb-muted);
	font-size: 0.95rem;
	line-height: 1.66;
}

.npb-portal-why-card p {
	position: relative;
	z-index: 1;
	color: var(--npb-muted);
	font-size: 0.95rem;
	line-height: 1.58;
}

.npb-category-card-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 40px;
	margin-top: 1.45rem;
	padding: 0.68rem 0.95rem;
	background: rgba(0, 28, 119, 0.06);
	border: 1px solid rgba(0, 28, 119, 0.12);
	border-radius: 7px;
	color: var(--npb-blue);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	white-space: nowrap;
	box-shadow: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.npb-portal-category-card:hover .npb-category-card-link {
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-blue-dark);
	transform: translateX(3px);
}

.npb-portal-products {
	background: #fff;
}

.npb-portal-product-card .npb-product-card-actions {
	justify-content: flex-start;
}

.npb-portal-product-card {
	box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.npb-portal-product-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 34px 82px rgba(0, 28, 119, 0.15);
}

.npb-portal-product-card .npb-product-card-body {
	gap: 1rem;
	padding: clamp(1.35rem, 2vw, 1.7rem);
}

.npb-portal-product-card p {
	line-height: 1.55;
}

.npb-brand-slider-section {
	overflow: hidden;
	padding-block: clamp(3.8rem, 6vw, 5.5rem);
	background:
		linear-gradient(125deg, rgba(7, 16, 52, 0.98), rgba(0, 28, 119, 0.94)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.08) 0 1px, transparent 1px 96px);
	color: rgba(255, 255, 255, 0.76);
}

.npb-brand-slider-head {
	margin-bottom: 1.8rem;
}

.npb-brand-slider-head h2 {
	max-width: 820px;
	color: #fff;
	font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.npb-brand-slider-head p:not(.eyebrow) {
	max-width: 640px;
	margin-top: 0.9rem;
	color: rgba(255, 255, 255, 0.74);
}

.npb-brand-disclaimer {
	margin-top: 1.4rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	line-height: 1.55;
}

.npb-brand-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.npb-brand-slider::before,
.npb-brand-slider::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 12vw;
	pointer-events: none;
}

.npb-brand-slider::before {
	left: 0;
	background: linear-gradient(90deg, var(--npb-blue-dark), transparent);
}

.npb-brand-slider::after {
	right: 0;
	background: linear-gradient(270deg, var(--npb-blue), transparent);
}

.npb-brand-track {
	display: flex;
	gap: 0.8rem;
	width: max-content;
	animation: npb-brand-scroll 32s linear infinite;
}

.npb-brand-track span {
	display: grid;
	min-width: 190px;
	min-height: 76px;
	place-items: center;
	padding: 0.85rem 1.25rem;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--npb-radius);
	color: var(--npb-blue-dark);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-brand-track img {
	display: block;
	width: auto;
	max-width: 150px;
	height: auto;
	max-height: 46px;
	object-fit: contain;
}

.npb-brand-track span:hover {
	transform: translateY(-2px);
	background: #fff;
	border-color: rgba(252, 196, 11, 0.38);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
}

.npb-portal-why {
	background: var(--npb-white);
}

.npb-portal-why .npb-portal-heading {
	max-width: 1200px;
	text-align: left;
}

.npb-portal-why .npb-portal-heading h2 {
	max-width: 900px;
}

.npb-portal-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.npb-portal-why-card {
	padding: clamp(1.15rem, 2vw, 1.45rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.npb-portal-why-card:hover {
	transform: translateY(-6px);
	border-color: rgba(252, 196, 11, 0.72);
	box-shadow: 0 30px 78px rgba(0, 28, 119, 0.14);
}

.npb-portal-final-cta {
	padding-block: clamp(3.8rem, 6vw, 5.4rem);
	background:
		linear-gradient(120deg, rgba(0, 28, 119, 0.97), rgba(7, 16, 52, 0.96)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 118px);
	color: #fff;
}

.npb-portal-final-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.npb-portal-final-cta h2 {
	max-width: 760px;
	color: #fff;
	font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.npb-portal-final-cta p:not(.eyebrow) {
	max-width: 640px;
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1rem;
	line-height: 1.65;
}

@keyframes npb-brand-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: 3rem;
	align-items: center;
}

.split-section.reverse {
	grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.split-copy {
	max-width: 620px;
}

.split-copy p:not(.eyebrow) {
	margin-block: 1.25rem 1.8rem;
	color: var(--npb-muted);
	font-size: 1.05rem;
}

.safety-section {
	background:
		linear-gradient(180deg, var(--npb-white), #fff);
}

.compact-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
}

.mini-product-card {
	padding: 1.2rem;
}

.mini-product-card span {
	display: block;
	width: 38px;
	height: 4px;
	margin-bottom: 1rem;
	background: var(--npb-yellow);
}

.mini-product-card h3 {
	margin-bottom: 0;
}

.solutions-section {
	background: #fff;
}

.solution-list {
	display: grid;
	gap: 0.65rem;
	margin-bottom: 1.6rem;
}

.solution-list span {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--npb-ink);
	font-weight: 900;
}

.solution-list span::before {
	content: "";
	width: 10px;
	height: 10px;
	background: var(--npb-yellow);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(252, 196, 11, 0.16);
}

.npb-button-secondary.dark {
	background: var(--npb-blue);
	color: #fff;
	border-color: var(--npb-blue);
}

.npb-button-secondary.dark:hover {
	background: #001457;
}

.product-grid,
.service-grid,
.why-grid {
	display: grid;
	gap: 1.2rem;
}

.product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.service-card,
.entry-card,
.why-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.service-card:hover,
.why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
	border-color: rgba(252, 196, 11, 0.65);
}

.product-media {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #d8dee8, #f7f8fb);
}

.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-placeholder {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(140deg, rgba(0, 28, 119, 0.84), rgba(31, 41, 55, 0.76)),
		repeating-linear-gradient(45deg, rgba(252, 196, 11, 0.34) 0 2px, transparent 2px 18px);
}

.product-card:nth-child(2) .product-placeholder {
	background:
		linear-gradient(140deg, rgba(31, 41, 55, 0.86), rgba(0, 28, 119, 0.72)),
		radial-gradient(circle at 72% 36%, rgba(252, 196, 11, 0.72), transparent 22%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.product-card:nth-child(3) .product-placeholder {
	background:
		linear-gradient(140deg, rgba(0, 28, 119, 0.78), rgba(11, 18, 32, 0.82)),
		linear-gradient(45deg, transparent 0 44%, rgba(252, 196, 11, 0.58) 44% 52%, transparent 52%);
}

.product-card:nth-child(4) .product-placeholder {
	background:
		linear-gradient(140deg, rgba(31, 41, 55, 0.84), rgba(0, 28, 119, 0.74)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.38) 0 8px, transparent 8px 18px);
}

.product-card-content,
.entry-content {
	padding: 1.25rem;
}

.product-card p {
	margin-bottom: 1rem;
	color: var(--npb-muted);
	font-size: 0.94rem;
}

.product-price {
	color: var(--npb-blue);
	font-weight: 900;
}

.services-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(125deg, rgba(7, 16, 52, 0.98), rgba(31, 41, 55, 0.96)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.08) 0 1px, transparent 1px 86px);
	color: rgba(255, 255, 255, 0.78);
}

.services-section::after {
	content: "";
	position: absolute;
	inset: auto -12% -45% auto;
	width: 46vw;
	height: 46vw;
	background: rgba(252, 196, 11, 0.12);
	clip-path: polygon(0 0, 100% 24%, 76% 100%, 12% 78%);
}

.services-section h2,
.services-section h3 {
	color: #fff;
}

.services-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
	gap: 3rem;
	align-items: start;
}

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

.service-card {
	padding: 1.45rem;
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.13);
	box-shadow: none;
}

.service-card p {
	color: rgba(255, 255, 255, 0.72);
}

.service-line {
	display: block;
	width: 44px;
	height: 4px;
	margin-bottom: 1.1rem;
	background: var(--npb-yellow);
}

.why-section {
	background:
		linear-gradient(180deg, #fff, var(--npb-white));
}

.why-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.why-card {
	padding: 1.3rem;
}

.why-card::before {
	content: "";
	display: block;
	width: 36px;
	height: 4px;
	margin-bottom: 1rem;
	background: var(--npb-yellow);
}

.why-card p {
	color: var(--npb-muted);
	font-size: 0.94rem;
}

.brand-strip {
	padding-block: 3.25rem;
	background: #fff;
	border-block: 1px solid var(--npb-line);
}

.brand-inner {
	display: grid;
	gap: 1.2rem;
}

.brand-inner .eyebrow {
	margin-bottom: 0;
	color: var(--npb-blue);
}

.brand-list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.8rem;
}

.brand-list span {
	display: grid;
	place-items: center;
	min-height: 74px;
	padding: 1rem;
	background: var(--npb-white);
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	color: var(--npb-ink);
	font-weight: 900;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(6rem, 10vw, 9rem);
	background:
		linear-gradient(120deg, rgba(0, 28, 119, 0.88), rgba(7, 16, 52, 0.82)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 124px);
	color: #fff;
}

.contact-cta::before {
	content: "";
	position: absolute;
	inset: 1.4rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--npb-radius);
	pointer-events: none;
}

.contact-cta::after {
	content: "";
	position: absolute;
	right: -10vw;
	bottom: -18vw;
	width: 42vw;
	height: 42vw;
	min-width: 340px;
	min-height: 340px;
	background: rgba(252, 196, 11, 0.1);
	clip-path: polygon(18% 0, 100% 24%, 78% 100%, 0 72%);
	pointer-events: none;
}

.contact-cta h2 {
	max-width: 820px;
	margin-inline: auto;
	margin-bottom: 1.35rem;
	color: #fff;
	font-size: clamp(2.2rem, 4.4vw, 4.25rem);
	text-wrap: balance;
}

.contact-cta p {
	max-width: 620px;
	margin-inline: auto;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1.03rem, 1.6vw, 1.18rem);
	font-weight: 500;
}

.contact-cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	align-items: center;
	gap: 2.4rem;
	text-align: center;
}

.contact-cta-inner .npb-button {
	min-width: 220px;
	box-shadow: 0 20px 46px rgba(252, 196, 11, 0.24);
}

.npb-page {
	background: var(--npb-white);
}

.npb-page-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5.5rem, 10vw, 8rem);
	background:
		linear-gradient(112deg, rgba(0, 28, 119, 0.96), rgba(7, 16, 52, 0.86)),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		var(--npb-page-hero-image, repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.12) 0 1px, transparent 1px 110px));
	background-color: var(--npb-blue-dark);
	background-position: center, center, center, var(--npb-page-hero-position, center);
	background-repeat: no-repeat;
	background-size: auto, 54px 54px, 54px 54px, cover;
	color: #fff;
}

.npb-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 28, 119, 0.2), transparent 58%),
		radial-gradient(circle at 72% 28%, rgba(252, 196, 11, 0.12), transparent 25%);
	pointer-events: none;
}

.npb-page-hero::after {
	content: "";
	position: absolute;
	right: -8vw;
	bottom: -16vw;
	width: 44vw;
	height: 44vw;
	min-width: 360px;
	min-height: 360px;
	background: rgba(252, 196, 11, 0.12);
	clip-path: polygon(12% 0, 100% 18%, 78% 100%, 0 74%);
	pointer-events: none;
}

.npb-page-hero .npb-container {
	position: relative;
	z-index: 1;
}

.npb-page-hero h1 {
	max-width: 940px;
	color: #fff;
	font-size: clamp(2.45rem, 6vw, 5rem);
}

.npb-page-hero p:not(.eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: 500;
}

.npb-page-section {
	padding-block: clamp(4rem, 8vw, 6.75rem);
	background: #fff;
}

.npb-page-section.alt {
	background: linear-gradient(180deg, var(--npb-white), #fff);
}

.npb-page-section.dark {
	background:
		linear-gradient(125deg, rgba(7, 16, 52, 0.98), rgba(31, 41, 55, 0.96)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.08) 0 1px, transparent 1px 86px);
	color: rgba(255, 255, 255, 0.76);
}

.npb-page-section.dark h2,
.npb-page-section.dark h3 {
	color: #fff;
}

.npb-page-section.dark .npb-card {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.npb-page-section.dark .npb-card p,
.npb-page-section.dark .npb-card li {
	color: rgba(255, 255, 255, 0.74);
}

.npb-section-intro {
	max-width: 820px;
	margin-bottom: 2rem;
}

.npb-section-intro p:not(.eyebrow) {
	margin-top: 1rem;
	color: var(--npb-muted);
	font-size: 1.05rem;
}

.npb-page-section.dark .npb-section-intro p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.75);
}

.npb-legal-summary {
	padding-block: clamp(1.4rem, 3vw, 2rem);
	background: #fff;
	border-bottom: 1px solid var(--npb-line);
}

.npb-legal-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.npb-legal-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.72rem 1rem;
	background: var(--npb-white);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	color: var(--npb-blue);
	font-size: 0.86rem;
	font-weight: 900;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.npb-legal-nav a:hover {
	transform: translateY(-2px);
	background: #fff;
	border-color: rgba(252, 196, 11, 0.72);
	color: var(--npb-blue-dark);
	box-shadow: 0 18px 42px rgba(0, 28, 119, 0.09);
}

.npb-legal-section {
	scroll-margin-top: 110px;
}

.npb-legal-content {
	max-width: 900px;
	color: var(--npb-muted);
	font-size: 1.02rem;
	line-height: 1.78;
}

.npb-legal-content p + p,
.npb-legal-content ul + p,
.npb-legal-content p + ul {
	margin-top: 1rem;
}

.npb-legal-content h3 {
	margin-top: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 0.75rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.18rem, 1.8vw, 1.45rem);
	line-height: 1.22;
}

.npb-legal-content ul {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 0;
	padding-left: 1.15rem;
}

.npb-legal-content a {
	color: var(--npb-blue);
	font-weight: 900;
	overflow-wrap: anywhere;
}

.npb-legal-contact {
	margin-block: 1.4rem;
	padding: clamp(1.15rem, 2vw, 1.5rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-grid {
	display: grid;
	gap: 1rem;
}

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

.npb-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npb-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.npb-card,
.npb-feature-card,
.npb-contact-card {
	position: relative;
	overflow: hidden;
	padding: 1.35rem;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-card::before,
.npb-feature-card::before {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-bottom: 1rem;
	background: var(--npb-yellow);
}

.npb-card p,
.npb-card li,
.npb-feature-card p,
.npb-contact-card p {
	color: var(--npb-muted);
}

.npb-card ul {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding-left: 1.1rem;
}

.npb-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	gap: 2.2rem;
	align-items: center;
}

.npb-split.reverse {
	grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.npb-industrial-panel {
	min-height: 420px;
	padding: 1.5rem;
	background:
		linear-gradient(145deg, rgba(0, 28, 119, 0.9), rgba(7, 16, 52, 0.78)),
		repeating-linear-gradient(135deg, rgba(252, 196, 11, 0.34) 0 2px, transparent 2px 22px);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
	color: #fff;
}

.npb-industrial-panel h3 {
	max-width: 460px;
	color: #fff;
	font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.npb-industrial-panel p {
	max-width: 520px;
	color: rgba(255, 255, 255, 0.78);
}

.npb-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.2rem;
}

.npb-stat {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--npb-radius);
}

.npb-stat strong {
	display: block;
	color: var(--npb-yellow);
	font-size: 1.7rem;
	line-height: 1;
}

.npb-stat span {
	display: block;
	margin-top: 0.45rem;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 800;
}

.npb-contact-list {
	display: grid;
	gap: 0.55rem;
}

.npb-contact-list a {
	color: var(--npb-blue);
	font-weight: 900;
	overflow-wrap: anywhere;
}

.npb-location-section {
	background: var(--npb-white);
}

.npb-location-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
	gap: clamp(1.4rem, 4vw, 2.6rem);
	align-items: center;
}

.npb-location-grid .npb-section-intro {
	margin-bottom: 0;
}

.npb-location-grid .npb-button {
	margin-top: 1.2rem;
}

.npb-map-card {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
}

.npb-map-card iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 380px;
	border: 0;
}

.npb-map-open-link {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: 0.75rem 1rem;
	background: var(--npb-blue);
	border-radius: 6px;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(0, 28, 119, 0.24);
}

.npb-map-open-link:hover {
	background: var(--npb-blue-dark);
	color: #fff;
}

.npb-appointment-section {
	background:
		radial-gradient(circle at 18% 18%, rgba(252, 196, 11, 0.1), transparent 22rem),
		linear-gradient(180deg, var(--npb-white), #fff);
}

.npb-appointment-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
	gap: clamp(1.4rem, 4vw, 2.8rem);
	align-items: center;
}

.npb-appointment-hours {
	display: grid;
	gap: 0.35rem;
	max-width: 420px;
	margin-top: 1.3rem;
	padding: 1rem 1.1rem;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-left: 4px solid var(--npb-yellow);
	border-radius: 6px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.npb-appointment-hours strong {
	color: var(--npb-ink);
	font-size: 0.92rem;
	text-transform: uppercase;
}

.npb-appointment-hours span {
	color: var(--npb-muted);
	font-weight: 800;
}

.npb-appointment-card {
	padding: clamp(1.25rem, 3vw, 1.8rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
}

.npb-appointment-form {
	display: grid;
	gap: 1rem;
}

.npb-appointment-form label {
	display: grid;
	gap: 0.35rem;
	color: var(--npb-ink);
	font-weight: 800;
}

.npb-appointment-form label span {
	font-size: 0.86rem;
	text-transform: uppercase;
}

.npb-appointment-form input,
.npb-appointment-form textarea,
.npb-appointment-form select {
	width: 100%;
	min-height: 48px;
	padding: 0.85rem 0.9rem;
	border: 1px solid var(--npb-line);
	border-radius: 6px;
	background: var(--npb-white);
	color: var(--npb-ink);
	font: inherit;
}

.npb-appointment-form textarea {
	min-height: 118px;
	resize: vertical;
}

.npb-appointment-form input:focus,
.npb-appointment-form textarea:focus,
.npb-appointment-form select:focus {
	border-color: rgba(0, 28, 119, 0.4);
	outline: 3px solid rgba(0, 28, 119, 0.1);
}

.npb-request-panel {
	padding: clamp(1.4rem, 4vw, 2.2rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
}

.npb-request-panel label {
	display: grid;
	gap: 0.35rem;
	color: var(--npb-ink);
	font-weight: 800;
}

.npb-request-panel input,
.npb-request-panel textarea,
.npb-request-panel select {
	width: 100%;
	min-height: 48px;
	padding: 0.85rem 0.9rem;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	background: var(--npb-white);
	color: var(--npb-ink);
	font: inherit;
}

.npb-request-panel textarea {
	min-height: 138px;
	resize: vertical;
}

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

.npb-form-grid .full {
	grid-column: 1 / -1;
}

.npb-note {
	margin-top: 1rem;
	color: var(--npb-muted);
	font-size: 0.92rem;
}

.npb-quote-page {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 8vw, 7.8rem);
	background:
		radial-gradient(circle at 78% 12%, rgba(252, 196, 11, 0.14), transparent 24rem),
		radial-gradient(circle at 10% 22%, rgba(0, 28, 119, 0.08), transparent 28rem),
		linear-gradient(180deg, #fff, var(--npb-white)),
		linear-gradient(rgba(0, 28, 119, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 28, 119, 0.035) 1px, transparent 1px);
	background-size: auto, auto, auto, 42px 42px, 42px 42px;
}

.page-slug-demande-de-devis .npb-quote-page {
	background:
		linear-gradient(112deg, rgba(0, 28, 119, 0.96), rgba(7, 16, 52, 0.86)),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		var(--npb-quote-hero-image, repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.12) 0 1px, transparent 1px 110px));
	background-color: var(--npb-blue-dark);
	background-position: center, center, center, center;
	background-repeat: no-repeat;
	background-size: auto, 54px 54px, 54px 54px, cover;
	color: #fff;
}

.page-slug-demande-de-devis .npb-quote-bg {
	display: none;
}

.page-slug-demande-de-devis .npb-quote-page::before {
	content: "";
	position: absolute;
	inset: auto -8vw -16vw auto;
	width: 44vw;
	height: 44vw;
	min-width: 360px;
	min-height: 360px;
	background: rgba(252, 196, 11, 0.12);
	clip-path: polygon(12% 0, 100% 18%, 78% 100%, 0 74%);
	pointer-events: none;
}

.page-slug-demande-de-devis .npb-quote-page::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 28, 119, 0.2), transparent 58%),
		radial-gradient(circle at 72% 28%, rgba(252, 196, 11, 0.12), transparent 25%);
	pointer-events: none;
}

.page-slug-demande-de-devis .npb-quote-copy h1 {
	color: #fff;
	text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.page-slug-demande-de-devis .npb-quote-lead,
.page-slug-demande-de-devis .npb-quote-process p {
	color: rgba(255, 255, 255, 0.78);
}

.page-slug-demande-de-devis .npb-quote-process::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(252, 196, 11, 0.72), rgba(255, 255, 255, 0.14));
}

.page-slug-demande-de-devis .npb-quote-process div {
	border-top-color: rgba(255, 255, 255, 0.16);
}

.page-slug-demande-de-devis .npb-quote-process strong {
	color: #fff;
}

.page-slug-demande-de-devis .npb-quote-process span {
	border-color: rgba(255, 255, 255, 0.72);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.page-slug-demande-de-devis .npb-quote-features article {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.npb-quote-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.npb-quote-bg::before,
.npb-quote-bg::after {
	content: "";
	position: absolute;
	background: rgba(0, 28, 119, 0.055);
	clip-path: polygon(12% 0, 100% 18%, 82% 100%, 0 72%);
}

.npb-quote-bg::before {
	top: 5rem;
	right: -10rem;
	width: 34rem;
	height: 34rem;
}

.npb-quote-bg::after {
	left: -12rem;
	bottom: -16rem;
	width: 42rem;
	height: 42rem;
	background: rgba(252, 196, 11, 0.1);
}

.npb-quote-page::before {
	content: "";
	position: absolute;
	inset: 3rem 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 28, 119, 0.18), rgba(252, 196, 11, 0.38), transparent);
	pointer-events: none;
}

.npb-quote-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.86fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: start;
}

.npb-quote-copy {
	padding-top: clamp(0.5rem, 2vw, 1.5rem);
	animation: npb-rise 650ms ease both;
}

.npb-quote-copy h1 {
	max-width: 820px;
	margin-bottom: 1.55rem;
	font-size: clamp(2.45rem, 5vw, 5rem);
	text-wrap: balance;
}

.npb-quote-lead {
	max-width: 720px;
	color: var(--npb-muted);
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	font-weight: 500;
	line-height: 1.75;
}

.npb-quote-process {
	position: relative;
	display: grid;
	gap: 0;
	max-width: 760px;
	margin-top: clamp(2.25rem, 4vw, 3.35rem);
	padding-left: 0.15rem;
}

.npb-quote-process::before {
	content: "";
	position: absolute;
	top: 2rem;
	bottom: 2rem;
	left: 21px;
	width: 1px;
	background: linear-gradient(180deg, rgba(0, 28, 119, 0.24), rgba(252, 196, 11, 0.64), rgba(0, 28, 119, 0.12));
}

.npb-quote-process div {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	column-gap: 1.05rem;
	padding: 1.05rem 0 1.05rem;
	border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.npb-quote-process span {
	position: relative;
	z-index: 1;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	background: var(--npb-blue);
	color: #fff;
	border: 3px solid #fff;
	border-radius: var(--npb-radius);
	box-shadow: 0 12px 28px rgba(0, 28, 119, 0.22);
	font-size: 0.78rem;
	font-weight: 900;
}

.npb-quote-process strong {
	color: var(--npb-ink);
	font-size: 1.08rem;
	font-weight: 900;
}

.npb-quote-process p {
	grid-column: 2;
	margin-top: 0.22rem;
	color: var(--npb-muted);
}

.npb-quote-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: clamp(2.25rem, 4vw, 3.35rem);
}

.npb-quote-features article {
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-quote-features article:hover {
	transform: translateY(-4px);
	border-color: rgba(252, 196, 11, 0.74);
	box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

.npb-quote-features span {
	display: block;
	width: 38px;
	height: 4px;
	margin-bottom: 0.9rem;
	background: var(--npb-yellow);
}

.npb-quote-features h3 {
	font-size: 1rem;
}

.npb-quote-features p {
	color: var(--npb-muted);
	font-size: 0.92rem;
}

.npb-quote-form-card {
	position: sticky;
	top: 110px;
	padding: clamp(1.65rem, 3vw, 2.35rem);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: var(--npb-radius);
	box-shadow: 0 34px 90px rgba(0, 28, 119, 0.18);
	backdrop-filter: blur(16px);
	animation: npb-rise 760ms ease 90ms both;
}

.npb-quote-form-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--npb-blue), var(--npb-yellow));
	border-radius: var(--npb-radius) var(--npb-radius) 0 0;
}

.npb-quote-form-head {
	margin-bottom: 1.65rem;
	padding-bottom: 1.35rem;
	border-bottom: 1px solid var(--npb-line);
}

.npb-quote-form-head h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.npb-quote-form-head p {
	color: var(--npb-muted);
}

.npb-quote-form .npb-form-grid,
.npb-quote-form .ff-el-group,
.fluentform .ff-el-group {
	gap: 1.05rem;
}

.npb-quote-form label span {
	color: var(--npb-ink);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.npb-quote-form input,
.npb-quote-form textarea,
.npb-quote-form select,
.npb-phone-field,
.fluentform input,
.fluentform textarea,
.fluentform select {
	width: 100%;
	min-height: 56px;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(15, 23, 42, 0.13);
	background: #f9fafc;
	border-radius: var(--npb-radius);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.npb-phone-field {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
	padding: 0;
}

.npb-phone-trigger {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 54px;
	padding: 0 0.85rem;
	border: 0;
	border-right: 1px solid rgba(15, 23, 42, 0.12);
	background: #fff;
	color: var(--npb-ink);
	border-radius: var(--npb-radius) 0 0 var(--npb-radius);
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.npb-phone-trigger::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.55;
}

.npb-phone-flag {
	font-size: 1.1rem;
	line-height: 1;
}

.npb-phone-code {
	font-size: 0.88rem;
}

.npb-quote-form .npb-phone-input,
.npb-appointment-form .npb-phone-input {
	min-height: 54px;
	padding-left: 0.9rem;
	border: 0;
	background: transparent;
	border-radius: 0 var(--npb-radius) var(--npb-radius) 0;
	box-shadow: none;
}

.npb-phone-field:focus-within {
	background: #fff;
	border-color: var(--npb-blue);
	box-shadow: 0 0 0 4px rgba(0, 28, 119, 0.08), 0 12px 28px rgba(0, 28, 119, 0.08);
}

.npb-phone-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	width: min(360px, 100%);
	padding: 0.55rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: var(--npb-radius);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.npb-phone-search {
	margin-bottom: 0.5rem;
}

.npb-phone-options {
	display: grid;
	gap: 0.2rem;
	max-height: 260px;
	overflow-y: auto;
}

.npb-phone-option {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.55rem;
	width: 100%;
	padding: 0.65rem 0.7rem;
	border: 0;
	background: transparent;
	border-radius: 6px;
	color: var(--npb-ink);
	text-align: left;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease;
}

.npb-phone-option:hover {
	background: rgba(0, 28, 119, 0.07);
	color: var(--npb-blue);
}

.npb-phone-option strong {
	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.npb-phone-option em {
	color: var(--npb-muted);
	font-style: normal;
	font-weight: 800;
}

.npb-quote-form textarea,
.fluentform textarea {
	min-height: 160px;
}

.npb-quote-form input:focus,
.npb-quote-form textarea:focus,
.npb-quote-form select:focus,
.npb-quote-form .npb-phone-input:focus,
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
	outline: none;
	background: #fff;
	border-color: var(--npb-blue);
	box-shadow: 0 0 0 4px rgba(0, 28, 119, 0.08), 0 12px 28px rgba(0, 28, 119, 0.08);
}

.npb-quote-form input[type="file"] {
	min-height: 64px;
	padding: 1rem;
	background: #fff;
	border-style: dashed;
	border-color: rgba(0, 28, 119, 0.26);
	cursor: pointer;
}

.npb-quote-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.25rem;
}

.npb-quote-actions .npb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 58px;
	padding-inline: 1.15rem;
	text-align: center;
	box-shadow: 0 18px 40px rgba(0, 28, 119, 0.14);
}

.npb-quote-actions .npb-whatsapp-submit::before {
	content: "";
	width: 18px;
	height: 18px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.2 18.8 6.4 15A7.6 7.6 0 1 1 9 17.6Z'/%3E%3Cpath d='M9.4 8.4c.2-.4.4-.5.7-.5h.5c.2 0 .4.1.5.4l.6 1.5c.1.3 0 .5-.2.7l-.4.5c.5 1 1.3 1.8 2.4 2.4l.5-.4c.2-.2.5-.3.8-.2l1.4.6c.3.1.4.3.4.6v.5c0 .4-.2.6-.5.8-.5.3-1.2.4-1.9.2-2.7-.7-4.8-2.8-5.5-5.5-.2-.6-.1-1.3.2-1.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.npb-quote-actions .npb-button:hover {
	box-shadow: 0 24px 54px rgba(0, 28, 119, 0.18);
}

.npb-form-alert {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: var(--npb-radius);
	font-weight: 800;
}

.npb-form-alert.success {
	background: rgba(37, 211, 102, 0.12);
	color: #0f6d33;
}

.npb-form-alert.error {
	background: rgba(185, 28, 28, 0.1);
	color: #991b1b;
}

.npb-products-hero {
	background:
		linear-gradient(112deg, rgba(0, 28, 119, 0.96), rgba(7, 16, 52, 0.86)),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		url("../img/npb-filtres-cat-afrique.jpg") center right / cover no-repeat;
	background-size: auto, 54px 54px, 54px 54px, cover;
}

.npb-products-catalog {
	padding-block: clamp(4.5rem, 8vw, 7rem);
	background: linear-gradient(180deg, #fff, var(--npb-white));
}

.npb-products-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.npb-products-toolbar h2 {
	max-width: 780px;
	font-size: clamp(1.9rem, 3.5vw, 3.25rem);
}

.npb-product-search {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 60px;
	margin-bottom: 1rem;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.12);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.npb-product-search:focus-within {
	border-color: rgba(252, 196, 11, 0.82);
	box-shadow: 0 22px 58px rgba(0, 28, 119, 0.11);
}

.npb-product-search-icon {
	display: inline-grid;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	place-items: center;
	color: var(--npb-blue);
}

.npb-product-search-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.npb-product-search input {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 3.4rem 0 0;
	background: transparent;
	border: 0;
	color: var(--npb-ink);
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
	outline: 0;
}

.npb-product-search input::placeholder {
	color: rgba(100, 112, 131, 0.82);
	font-weight: 600;
}

.npb-product-search-clear {
	position: absolute;
	top: 50%;
	right: 0.75rem;
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	background: rgba(0, 28, 119, 0.06);
	border: 1px solid rgba(0, 28, 119, 0.1);
	border-radius: 999px;
	color: var(--npb-blue);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.npb-product-search-clear:hover,
.npb-product-search-clear:focus-visible {
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-blue-dark);
	outline: 0;
}

.npb-product-search-clear span {
	display: block;
	margin-top: -0.08em;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1;
}

.npb-product-filter-shell {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	gap: 0.65rem;
	margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.npb-product-filter-shell.has-overflow {
	grid-template-columns: auto minmax(0, 1fr) auto;
}

.npb-product-filter-shell::before,
.npb-product-filter-shell::after {
	content: "";
	position: absolute;
	top: 1px;
	bottom: 1px;
	z-index: 2;
	width: clamp(1.8rem, 5vw, 4rem);
	pointer-events: none;
	opacity: 0;
	transition: opacity 180ms ease;
}

.npb-product-filter-shell::before {
	left: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0));
}

.npb-product-filter-shell::after {
	right: 0;
	background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0));
}

.npb-product-filter-shell.has-overflow::before {
	left: 52px;
}

.npb-product-filter-shell.has-overflow::after {
	right: 52px;
}

.npb-product-filter-shell.has-overflow.can-scroll-left::before,
.npb-product-filter-shell.has-overflow.can-scroll-right::after {
	opacity: 1;
}

.npb-product-filters {
	position: relative;
	display: flex;
	gap: 0.65rem;
	padding: 0.45rem;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.npb-product-filters::-webkit-scrollbar {
	display: none;
}

.npb-product-filters a {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.78rem 1.12rem;
	border: 1px solid transparent;
	border-radius: 7px;
	color: var(--npb-ink);
	font-size: 0.85rem;
	font-weight: 900;
	line-height: 1;
	scroll-snap-align: start;
	white-space: nowrap;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.npb-product-filters a:hover {
	transform: translateY(-1px);
	background: var(--npb-white);
	color: var(--npb-blue);
	border-color: rgba(0, 28, 119, 0.14);
}

.npb-product-filters a.is-active {
	background: var(--npb-yellow);
	color: var(--npb-blue);
	border-color: rgba(0, 28, 119, 0.16);
	box-shadow: inset 0 -3px 0 rgba(0, 28, 119, 0.22);
}

.npb-product-filter-arrow {
	position: relative;
	z-index: 3;
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.14);
	border-radius: 999px;
	color: var(--npb-blue);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(0);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.npb-product-filter-arrow span {
	display: block;
	margin-top: -0.08em;
	font-size: 1.7rem;
	font-weight: 900;
	line-height: 1;
}

.npb-product-filter-shell.has-overflow .npb-product-filter-arrow {
	opacity: 1;
	pointer-events: auto;
}

.npb-product-filter-shell:not(.has-overflow) .npb-product-filter-arrow {
	display: none;
}

.npb-product-filter-shell:not(.can-scroll-left) .npb-product-filter-arrow.is-prev,
.npb-product-filter-shell:not(.can-scroll-right) .npb-product-filter-arrow.is-next {
	opacity: 0.34;
	pointer-events: none;
}

.npb-product-filter-arrow:hover {
	transform: translateY(-1px);
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-blue-dark);
}

.npb-product-filter-arrow:focus-visible {
	outline: 3px solid rgba(252, 196, 11, 0.62);
	outline-offset: 3px;
}

.npb-dynamic-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.npb-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-product-card:hover {
	transform: translateY(-5px);
	border-color: rgba(252, 196, 11, 0.7);
	box-shadow: 0 28px 68px rgba(0, 28, 119, 0.13);
}

.npb-product-card-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1.18;
	background:
		linear-gradient(135deg, rgba(0, 28, 119, 0.92), rgba(7, 16, 52, 0.96)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 42px);
}

.npb-product-card-media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 4px;
	background: linear-gradient(90deg, var(--npb-yellow), rgba(252, 196, 11, 0));
}

.npb-product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: clamp(1rem, 2.5vw, 1.6rem);
	transition: transform 240ms ease;
}

.npb-product-card-media.is-flyer {
	background: #fff;
}

.npb-product-card-media.is-flyer img {
	padding: 0.5rem;
	object-fit: contain;
}

.npb-product-card-placeholder {
	position: absolute;
	inset: 1rem;
	display: grid;
	place-items: center;
	border: 1px dashed rgba(255, 255, 255, 0.32);
	border-radius: var(--npb-radius);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.npb-product-card:hover .npb-product-card-media img {
	transform: scale(1.035);
}

.npb-product-card-body {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	align-content: start;
	gap: 0.9rem;
	padding: clamp(1.15rem, 2vw, 1.45rem);
}

.npb-product-card-category {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	min-height: 26px;
	padding: 0.32rem 0.55rem;
	background: rgba(0, 28, 119, 0.06);
	border: 1px solid rgba(0, 28, 119, 0.08);
	border-radius: 999px;
	color: var(--npb-blue);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.npb-product-card h3 {
	margin-bottom: 0;
	color: var(--npb-blue-dark);
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.22;
}

.npb-product-card h3 a:hover {
	color: var(--npb-blue);
}

.npb-product-card p {
	color: var(--npb-muted);
	font-size: 0.95rem;
	line-height: 1.62;
}

.npb-product-card-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.35rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.npb-product-card-actions .npb-button {
	min-height: 44px;
	padding: 0.75rem 1.05rem;
	font-size: 0.88rem;
	white-space: nowrap;
}

.npb-product-card-actions .npb-button-quote {
	background: #fff;
	color: var(--npb-blue);
	border: 1px solid rgba(0, 28, 119, 0.18);
	font-size: 0.88rem;
	font-weight: 900;
	box-shadow: none;
}

.npb-product-card-actions .npb-button-quote:hover {
	background: var(--npb-yellow);
	color: var(--npb-blue);
	border-color: var(--npb-yellow);
	transform: translateY(-1px);
}

.npb-empty-catalog {
	max-width: 720px;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-product-search-empty {
	max-width: 760px;
	padding: clamp(1.4rem, 3vw, 2rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-product-search-empty h3 {
	margin-bottom: 0.65rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.npb-product-search-empty p {
	max-width: 620px;
	margin-bottom: 1.15rem;
	color: var(--npb-muted);
	line-height: 1.65;
}

.npb-products-quote-cta {
	padding-block: clamp(4rem, 7vw, 5.8rem);
	background:
		linear-gradient(120deg, rgba(0, 28, 119, 0.95), rgba(7, 16, 52, 0.9)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.1) 0 1px, transparent 1px 92px);
	color: #fff;
}

.npb-products-quote-cta .npb-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.npb-products-quote-cta h2 {
	max-width: 720px;
	margin-bottom: 0.8rem;
	color: #fff;
}

.npb-products-quote-cta p {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.78);
}

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

.npb-single-post-main {
	overflow: hidden;
	background:
		linear-gradient(180deg, #fff 0, var(--npb-white) 42%, #fff 100%),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.035) 0 1px, transparent 1px 104px);
}

.npb-single-post-header {
	position: relative;
	padding-block: clamp(3.4rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
	background:
		linear-gradient(135deg, rgba(7, 16, 52, 0.98), rgba(0, 28, 119, 0.94)),
		repeating-linear-gradient(90deg, rgba(252, 196, 11, 0.12) 0 1px, transparent 1px 96px);
	color: #fff;
}

.npb-single-post-header::after {
	content: "";
	position: absolute;
	right: max(2rem, 8vw);
	bottom: -44px;
	width: 190px;
	height: 190px;
	background: rgba(252, 196, 11, 0.14);
	clip-path: polygon(18% 0, 100% 24%, 82% 100%, 0 74%);
	pointer-events: none;
}

.npb-single-post-head-inner {
	position: relative;
	z-index: 1;
	max-width: 980px;
}

.npb-single-post-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: clamp(1.3rem, 2.8vw, 2rem);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
	font-weight: 900;
}

.npb-single-post-back::before {
	content: "";
	width: 8px;
	height: 8px;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
}

.npb-single-post-back:hover {
	color: var(--npb-yellow);
}

.npb-single-post-header .eyebrow {
	color: var(--npb-yellow);
	text-shadow: none;
}

.npb-single-post-header h1 {
	max-width: 920px;
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(2.25rem, 5.4vw, 4.4rem);
	letter-spacing: 0;
}

.npb-single-post-intro {
	max-width: 820px;
	margin-top: 1.35rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 1.7vw, 1.22rem);
	line-height: 1.75;
}

.npb-single-post-intro p {
	margin: 0;
}

.npb-single-post-media-wrap {
	max-width: 860px;
	margin-top: clamp(-1.4rem, -2vw, -0.8rem);
}

.npb-single-post-media {
	position: relative;
	z-index: 2;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1 / 1;
	padding: clamp(0.7rem, 2vw, 1.25rem);
	background:
		linear-gradient(180deg, #fff, #f8fafc),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.035) 0 1px, transparent 1px 84px);
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--npb-radius);
	box-shadow: 0 24px 70px rgba(7, 16, 52, 0.18);
}

.npb-single-post-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: calc(var(--npb-radius) - 4px);
}

.npb-single-post-shell {
	max-width: 960px;
	padding-block: clamp(2.4rem, 5vw, 4.5rem) clamp(4rem, 7vw, 6rem);
}

.npb-single-post-content {
	color: #243044;
	font-size: clamp(1.03rem, 1.18vw, 1.13rem);
	line-height: 1.82;
}

.npb-single-post-content > * {
	margin-top: 0;
	margin-bottom: 1.35rem;
}

.npb-single-post-content > *:last-child {
	margin-bottom: 0;
}

.npb-single-post-content h2 {
	position: relative;
	margin-top: clamp(2.3rem, 4vw, 3.1rem);
	margin-bottom: 1rem;
	padding-left: 1rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.55rem, 2.6vw, 2.35rem);
	line-height: 1.18;
}

.npb-single-post-content h2::before {
	content: "";
	position: absolute;
	top: 0.18em;
	bottom: 0.12em;
	left: 0;
	width: 4px;
	background: var(--npb-yellow);
	border-radius: 999px;
}

.npb-single-post-content h3 {
	margin-top: 2rem;
	margin-bottom: 0.8rem;
	color: var(--npb-blue-dark);
	font-size: clamp(1.2rem, 1.9vw, 1.55rem);
	line-height: 1.25;
}

.npb-single-post-content p {
	margin-bottom: 1.25rem;
}

.npb-single-post-content a {
	color: var(--npb-blue);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(252, 196, 11, 0.7);
	text-underline-offset: 0.18em;
}

.npb-single-post-content ul,
.npb-single-post-content ol {
	display: grid;
	gap: 0.65rem;
	margin: 0 0 1.45rem;
	padding-left: 1.25rem;
}

.npb-single-post-content li::marker {
	color: var(--npb-blue);
	font-weight: 900;
}

.npb-single-post-content blockquote {
	margin: 2rem 0;
	padding: 1.35rem 1.5rem;
	background: #fff;
	border-left: 5px solid var(--npb-yellow);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
	color: var(--npb-blue-dark);
	font-size: 1.08rem;
	font-weight: 700;
}

.npb-single-post-content img {
	margin-block: 1.8rem;
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-single-post-content .wp-caption {
	max-width: 100%;
	margin-block: 1.8rem;
}

.npb-single-post-content .wp-caption img {
	margin-block: 0;
}

.npb-single-post-content .wp-caption-text {
	margin-top: 0.65rem;
	color: var(--npb-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.npb-single-post-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: clamp(1.6rem, 3vw, 2.3rem);
	padding: clamp(1rem, 2vw, 1.25rem);
	background:
		linear-gradient(180deg, #fff, #f8fafc),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.035) 0 1px, transparent 1px 84px);
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-single-post-share-bottom {
	margin-top: clamp(2.2rem, 4vw, 3rem);
	margin-bottom: 0;
}

.npb-single-post-share p {
	margin: 0;
	color: var(--npb-blue-dark);
	font-size: 0.96rem;
	font-weight: 900;
}

.npb-share-status {
	display: block;
	min-height: 1.35em;
	margin-top: 0.25rem;
	color: var(--npb-blue);
	font-size: 0.84rem;
	font-weight: 900;
}

.npb-share-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.55rem;
}

.npb-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.72rem 0.95rem;
	background: #fff;
	border: 1px solid rgba(0, 28, 119, 0.14);
	border-radius: var(--npb-radius);
	color: var(--npb-blue);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.npb-share-button span {
	display: inline-grid;
	width: 24px;
	height: 24px;
	place-items: center;
	background: rgba(0, 28, 119, 0.08);
	border-radius: 999px;
	color: var(--npb-blue);
}

.npb-share-button svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.npb-share-button:hover,
.npb-share-button:focus-visible,
.npb-share-button.is-copied {
	transform: translateY(-2px);
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-ink);
	box-shadow: 0 16px 34px rgba(252, 196, 11, 0.22);
	outline: 0;
}

.npb-share-button:hover span,
.npb-share-button:focus-visible span,
.npb-share-button.is-copied span {
	background: rgba(255, 255, 255, 0.52);
	color: var(--npb-ink);
}

.npb-single-post-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.4rem, 4vw, 2.4rem);
	margin-top: clamp(3rem, 6vw, 4.5rem);
	padding: clamp(1.45rem, 3vw, 2.1rem);
	background:
		linear-gradient(120deg, rgba(0, 28, 119, 0.97), rgba(7, 16, 52, 0.96)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 86px);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
	color: #fff;
}

.npb-single-post-cta h2 {
	max-width: 620px;
	margin-bottom: 0.75rem;
	color: #fff;
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.npb-single-post-cta p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.76);
}

.npb-single-post-cta .eyebrow {
	color: var(--npb-yellow);
}

.npb-single-post-cta .npb-button {
	flex: 0 0 auto;
	white-space: nowrap;
}

.entry-card + .entry-card {
	margin-top: 1.5rem;
}

.entry-title a:hover,
.text-link:hover {
	color: var(--npb-blue);
}

.text-link {
	color: var(--npb-blue);
	font-weight: 900;
}

.npb-blog-page {
	overflow: hidden;
	background: #fff;
}

.npb-blog-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
	align-items: stretch;
}

.npb-blog-card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
	color: var(--npb-ink);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.npb-blog-card:hover,
.npb-blog-card:focus-visible {
	transform: translateY(-5px);
	border-color: rgba(252, 196, 11, 0.72);
	box-shadow: 0 28px 70px rgba(0, 28, 119, 0.12);
	outline: 0;
}

.npb-blog-card-media {
	display: grid;
	aspect-ratio: 1 / 1;
	place-items: center;
	padding: clamp(0.65rem, 1.4vw, 1rem);
	background:
		linear-gradient(180deg, #fff, #f8fafc),
		repeating-linear-gradient(90deg, rgba(0, 28, 119, 0.035) 0 1px, transparent 1px 72px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.npb-blog-card-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: calc(var(--npb-radius) - 4px);
}

.npb-blog-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, rgba(0, 28, 119, 0.94), rgba(7, 16, 52, 0.94)),
		linear-gradient(90deg, var(--npb-yellow), var(--npb-yellow));
	background-size: auto, 74px 5px;
	background-position: center, center;
	background-repeat: no-repeat;
	border-radius: calc(var(--npb-radius) - 4px);
}

.npb-blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.1rem, 2vw, 1.35rem);
}

.npb-blog-card-category {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 0.75rem;
	color: var(--npb-blue);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.npb-blog-card-title {
	display: block;
	color: var(--npb-blue-dark);
	font-size: clamp(1.15rem, 1.6vw, 1.35rem);
	font-weight: 900;
	line-height: 1.18;
}

.npb-blog-card-excerpt {
	display: block;
	margin-top: 0.85rem;
	color: var(--npb-muted);
	font-size: 0.96rem;
	line-height: 1.62;
}

.npb-blog-card-link {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	margin-top: auto;
	padding-top: 1.1rem;
	color: var(--npb-blue);
	font-weight: 900;
}

.npb-blog-card-link::after {
	content: "";
	width: 8px;
	height: 8px;
	margin-left: 0.55rem;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 180ms ease;
}

.npb-blog-card:hover .npb-blog-card-link::after,
.npb-blog-card:focus-visible .npb-blog-card-link::after {
	transform: translateX(3px) rotate(45deg);
}

.npb-blog-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: clamp(1.7rem, 3vw, 2.4rem);
}

.npb-blog-pagination .page-numbers {
	display: inline-grid;
	min-width: 42px;
	min-height: 42px;
	place-items: center;
	padding: 0.65rem 0.9rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	color: var(--npb-blue);
	font-weight: 900;
}

.npb-blog-pagination .current,
.npb-blog-pagination a:hover {
	background: var(--npb-yellow);
	border-color: var(--npb-yellow);
	color: var(--npb-ink);
}

.npb-blog-empty {
	padding: clamp(1.5rem, 3vw, 2rem);
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-soft-shadow);
}

.npb-blog-empty h3 {
	margin-bottom: 0.65rem;
	color: var(--npb-blue-dark);
}

.npb-blog-empty p {
	max-width: 640px;
	color: var(--npb-muted);
}

.npb-upcoming-card h3 {
	font-size: clamp(1.08rem, 1.45vw, 1.28rem);
	line-height: 1.25;
}

.site-footer {
	padding-top: clamp(3rem, 5vw, 4rem);
	background: #0b1220;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(190px, 0.62fr) minmax(260px, 0.9fr);
	gap: clamp(1.7rem, 4vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer strong {
	color: #fff;
}

.footer-logo {
	display: inline-flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0.85rem;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.08;
}

.footer-logo-mark {
	display: block;
	width: 120px;
	max-width: 100%;
	height: auto;
}

.footer-grid p {
	margin-top: 1.1rem;
	max-width: 380px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.96rem;
	line-height: 1.72;
}

.footer-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-navigation li + li {
	margin-top: 0.65rem;
}

.footer-navigation a:hover,
.footer-contact a:hover {
	color: var(--npb-yellow);
}

.footer-contact {
	display: grid;
	gap: 0.42rem;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
	line-height: 1.55;
}

.footer-navigation strong,
.footer-contact strong {
	display: block;
	margin-bottom: 0.85rem;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.25rem;
}

.footer-socials a {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--npb-radius);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-socials svg {
	width: 17px;
	height: 17px;
	display: block;
	fill: currentColor;
}

.footer-socials .icon-outline,
.whatsapp-float .icon-outline {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.footer-socials a:hover {
	transform: translateY(-2px);
	background: rgba(252, 196, 11, 0.1);
	border-color: var(--npb-yellow);
	color: var(--npb-yellow);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.86rem;
}

.footer-legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.75rem clamp(1rem, 2.5vw, 2.2rem);
	padding-block: 1.2rem 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.82rem;
	font-weight: 800;
}

.footer-legal-links a:hover {
	color: var(--npb-yellow);
}

.footer-statement {
	max-width: none;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(0.78rem, 1vw, 0.9rem);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0.02em;
	text-align: right;
	white-space: nowrap;
}

.footer-statement::before {
	content: "";
	display: inline-block;
	width: 42px;
	height: 2px;
	margin-right: 0.85rem;
	vertical-align: middle;
	background: var(--npb-yellow);
}

.npb-shop {
	padding-block: clamp(4.5rem, 7vw, 7rem);
}

.single-product .npb-shop {
	padding-block: clamp(3.6rem, 5vw, 5.2rem) clamp(5.25rem, 8vw, 7.4rem);
}

.single-product .woocommerce {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.single-product .woocommerce div.product {
	display: flow-root;
	padding-bottom: clamp(3rem, 5vw, 4.8rem);
}

.woocommerce div.product div.images {
	width: 52%;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.woocommerce div.product div.images .npb-single-product-flyer {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: 0 24px 68px rgba(15, 23, 42, 0.1);
}

.woocommerce div.product div.images .npb-single-product-flyer img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 720px;
	padding: clamp(0.75rem, 1.8vw, 1.25rem);
	background: #fff;
	object-fit: contain;
}

.woocommerce div.product div.summary {
	width: 42%;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
	padding-top: clamp(0.4rem, 1.4vw, 1.2rem);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	padding: 0 0 1.2rem;
	box-shadow: var(--npb-soft-shadow);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-5px);
	border-color: rgba(252, 196, 11, 0.68);
	box-shadow: 0 26px 64px rgba(15, 23, 42, 0.14);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0 0 1.1rem;
	background: #fff;
	object-fit: contain;
}

.woocommerce ul.products li.product a img.npb-product-flyer-image,
.woocommerce-page ul.products li.product a img.npb-product-flyer-image {
	padding: 0.5rem;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	padding: 0 1.15rem;
	color: var(--npb-ink);
	font-size: 1.02rem;
	font-weight: 900;
	line-height: 1.25;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	display: block;
	padding: 0 1.15rem;
	color: var(--npb-blue);
	font-weight: 900;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
	margin: 0.8rem 1.15rem 0;
}

.woocommerce div.product .product_title {
	max-width: 680px;
	margin-bottom: 1rem;
	color: var(--npb-ink);
	font-size: clamp(2.05rem, 3vw, 3rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.woocommerce div.product div.images img {
	overflow: hidden;
	background: var(--npb-blue-dark);
	border-radius: var(--npb-radius);
	box-shadow: var(--npb-shadow);
}

.woocommerce div.product .summary {
	color: var(--npb-muted);
	font-size: 1rem;
	line-height: 1.68;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	max-width: 640px;
	margin-block: 1.05rem 1.5rem;
	color: var(--npb-muted);
	font-size: 1.03rem;
	line-height: 1.72;
}

.woocommerce div.product .summary .price {
	margin-bottom: 1rem;
	color: var(--npb-blue);
	font-size: 1.1rem;
	font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs {
	clear: both;
	max-width: 100%;
	margin-top: 0;
	margin-inline: auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #fff;
	border-color: var(--npb-line);
	border-radius: var(--npb-radius) var(--npb-radius) 0 0;
	font-size: 0.9rem;
	font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--npb-blue);
	border-color: var(--npb-blue);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--npb-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.npb-product-nav {
	position: sticky;
	top: 82px;
	z-index: 35;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: 100%;
	max-width: 100%;
	margin: clamp(1.35rem, 3vw, 2.1rem) 0 clamp(1.7rem, 3.6vw, 2.5rem);
	padding: 0.48rem;
	overflow-x: auto;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: var(--npb-radius);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
	backdrop-filter: blur(16px);
	scrollbar-width: none;
	transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.npb-product-nav-sentinel {
	display: block;
	clear: both;
	width: 100%;
	height: 1px;
}

.npb-product-nav.is-sticky {
	border-color: rgba(0, 28, 119, 0.16);
	box-shadow: 0 22px 54px rgba(0, 28, 119, 0.16);
}

.npb-product-nav::-webkit-scrollbar {
	display: none;
}

.npb-product-nav a {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.74rem 1.14rem;
	color: var(--npb-ink);
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.npb-product-nav a:hover {
	transform: translateY(-1px);
	color: var(--npb-blue);
	border-color: rgba(0, 28, 119, 0.14);
	background: var(--npb-white);
}

.npb-product-nav a.is-active {
	background: var(--npb-yellow);
	color: var(--npb-blue);
	border-color: rgba(0, 28, 119, 0.16);
	box-shadow: inset 0 -3px 0 rgba(0, 28, 119, 0.24), 0 12px 28px rgba(252, 196, 11, 0.26);
}

.npb-product-section,
.npb-related-products {
	scroll-margin-top: 150px;
}

.npb-product-section {
	padding: clamp(1.7rem, 3vw, 2.6rem) 0;
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(15, 23, 42, 0.11);
	border-radius: 0;
	box-shadow: none;
}

.npb-product-section + .npb-product-section {
	margin-top: 0;
}

.npb-product-section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-bottom: 1.1rem;
	color: var(--npb-blue);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.npb-product-section-label::before {
	content: "";
	width: 34px;
	height: 3px;
	background: var(--npb-yellow);
}

.npb-product-section-body {
	color: var(--npb-muted);
	font-size: 1.02rem;
	line-height: 1.78;
}

.npb-product-section-body p,
.npb-product-section-body ul {
	max-width: 860px;
}

.npb-product-section-body p {
	margin-bottom: 1rem;
}

.npb-product-section-body ul {
	display: grid;
	gap: 0.45rem;
	margin-block: 0.55rem 0;
	padding-left: 1.1rem;
}

.woocommerce div.product .related {
	clear: both;
	margin-top: clamp(3rem, 5.6vw, 4.6rem);
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
	border-top: 1px solid rgba(15, 23, 42, 0.11);
}

.woocommerce div.product .related > h2,
.npb-related-products > h2 {
	margin-bottom: 1.4rem;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.18;
}

.woocommerce div.product .product_meta {
	max-width: 640px;
	padding-top: 1.15rem;
	border-top: 1px solid var(--npb-line);
	color: var(--npb-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.npb-product-specs {
	width: 100%;
	max-width: 920px;
	margin-top: 1.15rem;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 1px solid var(--npb-line);
	border-radius: var(--npb-radius);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.npb-product-specs th,
.npb-product-specs td {
	padding: 0.86rem 1rem;
	border-bottom: 1px solid var(--npb-line);
	text-align: left;
	vertical-align: top;
	font-size: 0.95rem;
	line-height: 1.55;
}

.npb-product-specs tr:nth-child(even) td {
	background: rgba(247, 248, 251, 0.56);
}

.npb-product-specs tr:last-child th,
.npb-product-specs tr:last-child td {
	border-bottom: 0;
}

.npb-product-specs th {
	width: 28%;
	background: #fff;
	color: var(--npb-ink);
	font-weight: 900;
	border-right: 1px solid var(--npb-line);
}

.npb-product-specs th::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 2px;
	margin-right: 0.55rem;
	vertical-align: middle;
	background: var(--npb-yellow);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--npb-blue);
	color: #fff;
	border-radius: var(--npb-radius);
	font-weight: 900;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: #001457;
	color: #fff;
}

.whatsapp-float {
	position: fixed;
	right: 1.35rem;
	bottom: 1.35rem;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-height: 54px;
	padding: 0.65rem 1.05rem 0.65rem 0.7rem;
	background: rgba(7, 16, 52, 0.94);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	box-shadow: 0 20px 48px rgba(7, 16, 52, 0.34);
	font-weight: 900;
	letter-spacing: 0;
	backdrop-filter: blur(14px);
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.whatsapp-float span {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
	color: #fff;
}

.whatsapp-float svg {
	width: 20px;
	height: 20px;
}

.whatsapp-float:hover {
	transform: translateY(-2px);
	background: rgba(11, 18, 32, 0.98);
	border-color: var(--npb-yellow);
	color: var(--npb-yellow);
}

.whatsapp-float:hover span {
	border-color: rgba(252, 196, 11, 0.42);
	color: var(--npb-yellow);
}

@keyframes npb-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}

@media (max-width: 1100px) {
	.product-grid,
	.why-grid,
	.compact-product-grid,
	.npb-grid.four,
	.npb-portal-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.npb-client-logo-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.npb-portal-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.menu-toggle {
		display: block;
	}

	.site-search-toggle {
		order: 3;
	}

	.main-navigation {
		position: absolute;
		top: 82px;
		left: 0;
		right: 0;
		display: none;
		background: #fff;
		border-bottom: 1px solid var(--npb-line);
	}

	.npb-site-search {
		padding: 0.75rem;
	}

	.npb-site-search-panel {
		margin-top: 0.5rem;
		padding: 1rem;
	}

	.npb-site-search-head {
		align-items: flex-start;
	}

	.npb-site-search-grid {
		grid-template-columns: 1fr;
	}

	.npb-site-search-results {
		min-height: 0;
	}

	.npb-site-search-field {
		min-height: 62px;
	}

	.npb-site-search-field > span {
		width: 54px;
		height: 60px;
		flex-basis: 54px;
	}

	.npb-site-search-field input {
		height: 60px;
		font-size: 1.15rem;
	}

	.npb-site-search-aside {
		order: 2;
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		display: grid;
		gap: 0;
		width: min(1200px, calc(100% - 40px));
		margin-inline: auto;
		padding-block: 1rem;
	}

	.main-navigation a {
		display: block;
		padding: 0.8rem 0;
	}

	.main-navigation .nav-quote > a {
		display: flex;
		justify-content: center;
		margin-top: 0.5rem;
	}

	.main-navigation a::after {
		bottom: 0;
	}

	.hero-section {
		min-height: auto;
		background-position: 68% center;
	}

	.hero-grid,
	.npb-home-hero-grid,
	.npb-portal-hero-grid,
	.services-layout,
	.business-feature,
	.npb-brand-showcase,
	.split-section,
	.split-section.reverse,
	.footer-grid,
	.npb-split,
	.npb-split.reverse {
		grid-template-columns: 1fr;
	}

	.hero-panel {
		max-width: 520px;
	}

	.npb-hero-signal {
		max-width: 520px;
	}

	.business-media img,
	.business-media.elevated {
		min-height: 360px;
	}

	.contact-cta-inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-statement {
		max-width: 720px;
		text-align: left;
		white-space: normal;
	}

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

	.npb-location-grid {
		grid-template-columns: 1fr;
	}

	.npb-appointment-grid {
		grid-template-columns: 1fr;
	}

	.npb-quote-layout {
		grid-template-columns: 1fr;
	}

	.npb-quote-form-card {
		position: relative;
		top: auto;
	}

	.npb-dynamic-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.npb-product-filter-shell {
		gap: 0.45rem;
	}

	.npb-product-search {
		min-height: 56px;
	}

	.npb-product-search-icon {
		width: 50px;
		height: 56px;
		flex-basis: 50px;
	}

	.npb-product-search input {
		height: 56px;
		font-size: 0.95rem;
	}

	.npb-product-filter-shell.has-overflow {
		grid-template-columns: 38px minmax(0, 1fr) 38px;
	}

	.npb-product-filter-shell.has-overflow::before {
		left: 44px;
	}

	.npb-product-filter-shell.has-overflow::after {
		right: 44px;
	}

	.npb-product-filter-arrow {
		width: 38px;
		height: 38px;
	}

	.npb-product-filters a {
		min-height: 44px;
		padding-inline: 0.95rem;
	}

	.npb-category-grid,
	.npb-home-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.npb-products-toolbar,
	.npb-products-quote-cta .npb-container,
	.npb-section-top,
	.npb-home-quote-inner,
	.npb-compact-heading,
	.npb-portal-final-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-product .woocommerce {
		max-width: 100%;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		width: 100%;
		float: none;
	}

	.woocommerce div.product div.images {
		margin-bottom: 1.75rem;
	}

	.woocommerce div.product .woocommerce-tabs {
		max-width: 100%;
	}

	.npb-product-nav {
		top: 72px;
		max-width: 100%;
		justify-content: flex-start;
	}

	.npb-single-post-header::after {
		right: 1.5rem;
		width: 140px;
		height: 140px;
	}

	.npb-single-post-media {
		aspect-ratio: 1 / 1;
	}

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

	.npb-single-post-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.npb-single-post-share {
		align-items: flex-start;
		flex-direction: column;
	}

	.npb-share-actions {
		width: 100%;
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.npb-container {
		width: min(100% - 28px, 1200px);
	}

	h1 {
		font-size: clamp(2.35rem, 13vw, 3.4rem);
	}

	.header-inner {
		min-height: 72px;
	}

	.custom-logo-link {
		width: 104px;
		max-width: 34vw;
	}

	.custom-logo {
		max-height: 49px;
	}

	.site-branding {
		min-width: 104px;
	}

	.footer-logo-mark {
		width: 104px;
	}

	.site-brand-text {
		max-width: 210px;
		font-size: 0.92rem;
	}

	.site-search-toggle,
	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.npb-site-search-head h2 {
		font-size: 1.45rem;
	}

	.npb-site-search-close {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.npb-site-search-result {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 0.75rem;
		padding: 0.65rem;
	}

	.npb-site-search-summary {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}

	.npb-site-search-result img,
	.npb-site-search-result-mark {
		width: 58px;
		height: 58px;
	}

	.main-navigation {
		top: 72px;
	}

	.hero-grid {
		padding-block: 5.5rem;
	}

	.npb-home-hero-grid {
		padding-block: 5.25rem 3.5rem;
	}

	.npb-home-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.7rem);
	}

	.npb-portal-categories .npb-portal-heading {
		margin-bottom: 1.45rem;
	}

	.npb-portal-categories .npb-portal-heading h2 {
		font-size: clamp(2rem, 11vw, 2.85rem);
	}

	.npb-portal-categories .npb-portal-heading p:not(.eyebrow) {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.npb-portal-category-card {
		min-height: auto;
		padding: 1.35rem;
	}

	.npb-category-card-icon,
	.npb-portal-why-card > span {
		width: 48px;
		height: 48px;
		margin-bottom: 1.1rem;
	}

	.npb-category-icon {
		width: 23px;
		height: 23px;
	}

	.product-grid,
	.service-grid,
	.why-grid,
	.business-card-grid,
	.compact-product-grid,
	.brand-list,
	.npb-category-grid,
	.npb-brand-card-grid,
	.npb-home-why-grid,
	.npb-client-logo-grid,
	.npb-portal-category-grid,
	.npb-portal-why-grid,
	.npb-grid.two,
	.npb-grid.three,
	.npb-grid.four,
	.npb-stat-row,
	.npb-form-grid {
		grid-template-columns: 1fr;
	}

	.npb-form-grid .full {
		grid-column: auto;
	}

	.npb-quote-page {
		padding-block: 3.5rem 4.5rem;
	}

	.npb-quote-copy h1 {
		font-size: clamp(2.1rem, 11vw, 3.2rem);
	}

	.npb-quote-process div {
		grid-template-columns: 44px minmax(0, 1fr);
	}

	.npb-quote-process::before {
		left: 18px;
	}

	.npb-quote-process span {
		width: 36px;
		height: 36px;
		border-width: 2px;
	}

	.npb-quote-features,
	.npb-quote-actions,
	.npb-dynamic-product-grid {
		grid-template-columns: 1fr;
	}

	.npb-product-card-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.npb-product-card-actions .npb-button {
		white-space: normal;
	}

	.npb-legal-nav {
		display: grid;
		grid-template-columns: 1fr;
	}

	.npb-legal-nav a {
		width: 100%;
	}

	.npb-legal-section {
		scroll-margin-top: 92px;
	}

	.npb-category-card {
		min-height: 230px;
	}

	.npb-portal-hero {
		min-height: auto;
		padding-block: 3.4rem;
		background-position: 58% center;
	}

	.npb-portal-hero-copy h1 {
		font-size: clamp(2.25rem, 11vw, 3.55rem);
	}

	.npb-client-logo-grid span,
	.npb-brand-track span {
		min-height: 64px;
	}

	.npb-quote-form-card {
		padding: 1.25rem;
	}

	.npb-quote-form input,
	.npb-quote-form textarea,
	.npb-quote-form select {
		min-height: 52px;
	}

	.npb-single-post-header {
		padding-block: 2.8rem 2rem;
	}

	.npb-single-post-header h1 {
		font-size: clamp(2rem, 10vw, 2.85rem);
		line-height: 1.08;
	}

	.npb-single-post-intro {
		font-size: 1rem;
		line-height: 1.68;
	}

	.npb-single-post-media-wrap {
		margin-top: 1rem;
	}

	.npb-single-post-media {
		aspect-ratio: 1 / 1;
	}

	.npb-single-post-shell {
		padding-block: 2.2rem 4rem;
	}

	.npb-single-post-content {
		font-size: 1rem;
		line-height: 1.75;
	}

	.npb-single-post-content h2 {
		padding-left: 0.8rem;
		font-size: clamp(1.4rem, 8vw, 1.9rem);
	}

	.npb-single-post-cta {
		padding: 1.25rem;
	}

	.npb-share-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.npb-share-button {
		width: 100%;
		justify-content: flex-start;
	}

	.npb-button {
		width: 100%;
	}

	.npb-blog-card-grid {
		grid-template-columns: 1fr;
	}

	.whatsapp-float {
		right: 0.9rem;
		bottom: 0.9rem;
		padding-right: 0.65rem;
		font-size: 0;
	}

	.whatsapp-float span {
		font-size: 0.75rem;
	}

	.npb-home-product-card {
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.single-product .npb-shop {
		padding-block: 2.8rem 5rem;
	}

	.woocommerce div.product .product_title {
		font-size: clamp(1.65rem, 9vw, 2.2rem);
	}

	.woocommerce div.product .woocommerce-product-details__short-description {
		font-size: 0.98rem;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		display: block;
		margin: 0 0 0.35rem;
		border-radius: var(--npb-radius);
	}

	.woocommerce div.product .woocommerce-tabs .panel {
		border-top: 1px solid var(--npb-line);
		border-radius: var(--npb-radius);
	}

	.npb-product-nav {
		margin-block: 1.2rem 1rem;
		padding: 0.35rem;
	}

	.npb-product-nav a {
		min-height: 40px;
		padding: 0.65rem 0.82rem;
		font-size: 0.78rem;
	}

	.npb-product-section,
	.npb-related-products {
		scroll-margin-top: 140px;
	}

	.npb-product-section {
		padding-block: 1.45rem;
	}

	.npb-product-section-label {
		margin-bottom: 0.75rem;
		font-size: 0.7rem;
	}

	.npb-product-specs th,
	.npb-product-specs td {
		display: block;
		width: 100%;
		font-size: 0.9rem;
	}

	.npb-product-specs th {
		border-bottom: 0;
		border-right: 0;
		padding: 0.68rem 0.85rem 0.18rem;
	}

	.npb-product-specs td {
		padding: 0.18rem 0.85rem 0.72rem;
	}
}
