:root {
	--nr-navy: #0b1b3a;
	--nr-navy-2: #14325f;
	--nr-ink: #0d1b34;
	--nr-muted: #667085;
	--nr-line: #e3e9f2;
	--nr-soft: #f7f8fb;
	--nr-white: #ffffff;
	--nr-gold: #c9a85d;
	--nr-gold-2: #ead8ad;
	--nr-green: #2f8f73;
	--nr-shadow: 0 18px 48px rgba(11, 27, 58, .10);
	--nr-shadow-strong: 0 34px 90px rgba(11, 27, 58, .18);
	--nr-radius: 8px;
	--nr-radius-lg: 22px;
	--nr-header-height: 82px;
	--nr-desktop-content-width: 86%;
	--nr-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--nr-white);
	color: var(--nr-ink);
	font-family: var(--nr-font);
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
	text-rendering: optimizeLegibility;
}

body.has-mobile-contact-bar {
	padding-bottom: 76px;
}

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

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

a:hover {
	color: var(--nr-navy-2);
}

a,
button,
input,
textarea {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(201, 168, 93, .65);
	outline-offset: 3px;
}

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

.container {
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 24px;
	width: 100%;
}

.container.narrow {
	max-width: 880px;
}

@media (min-width: 1025px) {
	.page-shell > .container {
		margin-left: auto;
		margin-right: auto;
		max-width: none;
		width: var(--nr-desktop-content-width);
	}
}

@media (max-width: 1024px) {
	.page-shell > .container,
	.page-shell > .container.narrow {
		max-width: 100%;
		width: 100%;
	}
}

.section {
	padding: 108px 0;
}

.section-light {
	background:
		radial-gradient(circle at 82% 18%, rgba(201, 168, 93, .18), transparent 26%),
		linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.skip-link {
	background: var(--nr-navy);
	border-radius: 0 0 8px 8px;
	color: #fff;
	left: 20px;
	padding: 10px 14px;
	position: fixed;
	top: 0;
	transform: translateY(-120%);
	transition: transform .2s ease;
	z-index: 1000;
}

.skip-link:focus {
	transform: translateY(0);
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 850;
	gap: 10px;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
	background: var(--nr-navy);
	box-shadow: 0 16px 34px rgba(11, 27, 58, .20);
	color: #fff;
}

.button-primary:hover {
	background: var(--nr-navy-2);
	color: #fff;
}

.button-secondary {
	background: rgba(255, 255, 255, .78);
	border-color: rgba(11, 27, 58, .14);
	color: var(--nr-navy);
}

.button-secondary:hover {
	background: #fff;
	border-color: rgba(201, 168, 93, .7);
	box-shadow: var(--nr-shadow);
}

.button-light {
	background: #fff;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
	color: var(--nr-navy);
}

.button-outline-light {
	border-color: rgba(255, 255, 255, .42);
	color: #fff;
}

.button-outline-light:hover {
	background: rgba(255, 255, 255, .10);
	color: #fff;
}

.text-link {
	color: var(--nr-navy);
	display: inline-flex;
	font-weight: 850;
	margin-top: 14px;
	position: relative;
}

.text-link::after {
	background: var(--nr-gold);
	bottom: -5px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transition: width .2s ease;
	width: 36%;
}

.text-link:hover::after {
	width: 100%;
}

.eyebrow {
	color: var(--nr-gold);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .12em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.site-header {
	background: rgba(255, 255, 255, .82);
	border-bottom: 1px solid rgba(227, 233, 242, .76);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	transition: box-shadow .2s ease, border-color .2s ease, backdrop-filter .2s ease, background .2s ease;
	z-index: 100;
}

@supports (backdrop-filter: blur(16px)) {
	.site-header {
		backdrop-filter: blur(16px);
	}
}

body:not(.has-sticky-header) .site-header {
	position: relative;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 14px 40px rgba(11, 27, 58, .10);
}

.header-inner {
	align-items: center;
	display: grid;
	gap: 22px;
	grid-template-columns: auto 1fr auto;
	min-height: var(--nr-header-height);
}

.site-logo {
	align-items: center;
	color: var(--nr-navy);
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 950;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-logo span::before {
	background: linear-gradient(135deg, var(--nr-gold), #f2d99c);
	border-radius: 999px;
	box-shadow: 0 0 0 6px rgba(201, 168, 93, .16);
	content: "";
	display: inline-block;
	height: 12px;
	margin-right: 10px;
	width: 12px;
}

.site-logo img {
	max-height: 54px;
	width: auto;
}

.site-navigation {
	justify-self: center;
}

.primary-menu {
	align-items: center;
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	color: #2b3850;
	font-size: .95rem;
	font-weight: 760;
}

.primary-menu a:hover {
	color: var(--nr-navy);
}

.header-cta {
	white-space: nowrap;
}

.menu-toggle,
.mobile-quick-actions {
	display: none;
}

.nr-hero-premium {
	align-items: center;
	background: #f7f8fb;
	display: flex;
	isolation: isolate;
	min-height: clamp(760px, 86vh, 920px);
	overflow: hidden;
	padding: calc(var(--nr-header-height) + 42px) 0 78px;
	position: relative;
	width: 100%;
}

.nr-hero-premium__bg,
.nr-hero-premium__bg img {
	height: 100%;
	width: 100%;
}

.nr-hero-premium__bg {
	inset: 0;
	position: absolute;
	z-index: -4;
}

.nr-hero-premium__bg img {
	object-fit: cover;
	object-position: center center;
}

.nr-hero-premium__overlay,
.nr-hero-premium__tint {
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.nr-hero-premium__overlay {
	background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .94) 28%, rgba(255, 255, 255, .78) 49%, rgba(255, 255, 255, .32) 68%, rgba(255, 255, 255, .10) 100%);
	z-index: -3;
}

.nr-hero-premium__tint {
	background:
		radial-gradient(circle at 80% 20%, rgba(201, 168, 93, .24), transparent 32%),
		linear-gradient(90deg, rgba(255, 255, 255, .14), rgba(11, 27, 58, .12));
	z-index: -2;
}

.nr-hero-premium__inner {
	align-items: center;
	display: flex;
	min-height: inherit;
	position: relative;
}

.nr-hero-premium__content {
	max-width: 620px;
	padding: 36px 0;
	width: min(620px, 100%);
}

.nr-hero-premium__label {
	color: var(--nr-gold);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .14em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.nr-hero-premium__title {
	color: #0b1b3a;
	font-size: clamp(42px, 5.2vw, 76px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.02;
	margin: 0;
	max-width: 620px;
}

.nr-hero-premium__lead {
	color: #41506a;
	font-size: clamp(17px, 1.35vw, 21px);
	line-height: 1.65;
	margin: 26px 0 0;
	max-width: 600px;
}

.nr-hero-premium__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.nr-hero-premium__actions .button {
	min-height: 58px;
	padding: 17px 26px;
}

.nr-hero-premium__actions .button-secondary {
	background: rgba(255, 255, 255, .82);
	border-color: rgba(11, 27, 58, .16);
}

@supports (backdrop-filter: blur(14px)) {
	.nr-hero-premium__actions .button-secondary,
	.nr-hero-premium__metric,
	.nr-hero-premium__chart {
		backdrop-filter: blur(14px);
	}
}

.nr-hero-premium__trust {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.nr-hero-premium__trust li {
	align-items: center;
	color: #263650;
	display: inline-flex;
	font-size: .95rem;
	font-weight: 820;
	gap: 8px;
	line-height: 1.3;
}

.nr-hero-premium__trust span {
	align-items: center;
	background: rgba(201, 168, 93, .14);
	border: 1px solid rgba(201, 168, 93, .26);
	border-radius: 999px;
	color: var(--nr-gold);
	display: inline-flex;
	flex: 0 0 24px;
	font-size: .82rem;
	font-weight: 950;
	height: 24px;
	justify-content: center;
}

.nr-hero-premium__floating {
	bottom: 72px;
	height: 270px;
	pointer-events: none;
	position: absolute;
	right: 24px;
	width: min(390px, 34vw);
}

.nr-hero-premium__metric,
.nr-hero-premium__chart {
	background: rgba(255, 255, 255, .66);
	border: 1px solid rgba(255, 255, 255, .55);
	box-shadow: 0 24px 70px rgba(11, 27, 58, .18);
	position: absolute;
}

.nr-hero-premium__metric {
	border-radius: 8px;
	padding: 20px 22px;
	right: 4px;
	top: 0;
	width: 210px;
}

.nr-hero-premium__metric span,
.nr-hero-premium__chart-top span {
	color: #526176;
	display: block;
	font-size: .76rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.nr-hero-premium__metric strong {
	color: #0b1b3a;
	display: block;
	font-size: 2.45rem;
	letter-spacing: -.04em;
	line-height: 1;
	margin-top: 8px;
}

.nr-hero-premium__chart {
	border-radius: 8px;
	bottom: 0;
	padding: 18px;
	right: 96px;
	width: 250px;
}

.nr-hero-premium__chart-top {
	align-items: start;
	display: flex;
	justify-content: space-between;
}

.nr-hero-premium__chart-top strong {
	color: #0b1b3a;
	font-size: 1.35rem;
	letter-spacing: -.03em;
	line-height: 1;
}

.nr-hero-premium__bars {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(5, 1fr);
	height: 104px;
	margin-top: 18px;
}

.nr-hero-premium__bars i {
	background: linear-gradient(180deg, #d9bd78, #0b1b3a);
	border-radius: 999px 999px 4px 4px;
	display: block;
	min-height: 28px;
}

.nr-hero-premium__bar--1 {
	height: 38%;
}

.nr-hero-premium__bar--2 {
	height: 54%;
}

.nr-hero-premium__bar--3 {
	height: 48%;
}

.nr-hero-premium__bar--4 {
	height: 72%;
}

.nr-hero-premium__bar--5 {
	height: 86%;
}

.client-paths-section {
	background: #fff;
	margin-top: 0;
	padding: 84px 0 82px;
	position: relative;
	z-index: 3;
}

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

.client-path-card {
	border-radius: 26px;
	box-shadow: var(--nr-shadow);
	min-height: 330px;
	overflow: hidden;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease;
}

.client-path-card:hover {
	box-shadow: var(--nr-shadow-strong);
	transform: translateY(-6px);
}

.client-path-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.client-path-card::after {
	background: linear-gradient(180deg, rgba(11, 27, 58, .10), rgba(11, 27, 58, .86));
	content: "";
	inset: 0;
	position: absolute;
}

.client-path-card__content {
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 28px;
	position: absolute;
	right: 0;
	z-index: 1;
}

.client-path-card__content span {
	align-items: center;
	background: rgba(201, 168, 93, .92);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 950;
	height: 42px;
	justify-content: center;
	margin-bottom: 18px;
	width: 42px;
}

.client-path-card h2 {
	font-size: 1.52rem;
	line-height: 1.15;
	margin: 0;
}

.client-path-card p {
	color: rgba(255, 255, 255, .82);
	font-size: .98rem;
	margin: 12px 0 0;
}

.client-path-card a {
	color: #f4d995;
	display: inline-flex;
	font-weight: 900;
	margin-top: 18px;
}

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

.section-heading-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-heading h2,
.problem-copy h2,
.reach-section h2,
.contact-section h2,
.audit-section h2,
.archive-header h1,
.entry-header h1,
.not-found-card h1 {
	color: var(--nr-navy);
	font-size: clamp(36px, 4vw, 64px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
}

.section-heading p,
.problem-copy p,
.reach-section p,
.contact-section p,
.archive-description,
.content-article,
.not-found-card p {
	color: #556276;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
	margin: 18px 0 0;
}

.problems-section {
	background:
		linear-gradient(180deg, #fff 0%, var(--nr-soft) 100%);
	padding-top: 96px;
}

.problems-layout {
	align-items: center;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, .84fr) minmax(460px, 1fr);
}

.problem-copy .button {
	margin-top: 30px;
}

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

.problem-card,
.client-card,
.blog-card,
.blog-magazine-card,
.contact-card,
.not-found-card {
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(227, 233, 242, .92);
	border-radius: var(--nr-radius-lg);
	box-shadow: var(--nr-shadow);
}

.problem-card {
	padding: 26px;
	position: relative;
}

.problem-card::before {
	background: linear-gradient(90deg, var(--nr-gold), transparent);
	border-radius: 999px;
	content: "";
	height: 3px;
	left: 26px;
	position: absolute;
	right: 42%;
	top: 0;
}

.problem-card__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
}

.problem-card span,
.client-card span {
	align-items: center;
	background: linear-gradient(135deg, var(--nr-gold), #ead8ad);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 950;
	height: 48px;
	justify-content: center;
	min-width: 48px;
	padding: 0 12px;
}

.problem-card i {
	background:
		linear-gradient(90deg, rgba(11, 27, 58, .14), rgba(11, 27, 58, .03)),
		linear-gradient(rgba(11, 27, 58, .08) 1px, transparent 1px);
	background-size: 100% 100%, 14px 14px;
	border-radius: 12px;
	display: block;
	height: 44px;
	width: 76px;
}

.problem-card h3,
.client-card h3,
.blog-card h3,
.blog-magazine-card h3 {
	color: var(--nr-navy);
	font-size: 1.2rem;
	line-height: 1.25;
	margin: 0;
}

.problem-card p {
	color: #5b687b;
	font-size: .98rem;
	margin: 10px 0 0;
}

.nr-services-premium {
	background:
		linear-gradient(rgba(11, 27, 58, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 27, 58, .035) 1px, transparent 1px),
		radial-gradient(circle at 82% 16%, rgba(201, 168, 93, .18), transparent 30%),
		radial-gradient(circle at 12% 82%, rgba(20, 50, 95, .10), transparent 34%),
		linear-gradient(180deg, #f6f8fc 0%, #fff 100%);
	background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%, 100% 100%;
	overflow: hidden;
	padding: 112px 0 116px;
	position: relative;
}

.nr-services-premium__head {
	margin-bottom: 50px;
	max-width: 760px;
}

.nr-services-premium__eyebrow {
	color: var(--nr-gold);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .14em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.nr-services-premium__title {
	color: var(--nr-navy);
	font-size: clamp(36px, 4vw, 64px);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
}

.nr-services-premium__lead {
	color: #526078;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.65;
	margin: 18px 0 0;
	max-width: 740px;
}

.nr-services-premium__showcase {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(360px, .9fr) minmax(560px, 1.25fr);
	margin-top: 8px;
}

.nr-services-premium__strategy,
.nr-services-premium__card {
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(227, 233, 242, .94);
	border-radius: 8px;
	box-shadow: var(--nr-shadow);
	position: relative;
}

.nr-services-premium__strategy {
	overflow: hidden;
	padding: 34px;
}

.nr-services-premium__strategy::before,
.nr-services-premium__card::before {
	background: linear-gradient(90deg, var(--nr-gold), rgba(201, 168, 93, 0));
	content: "";
	height: 3px;
	left: 24px;
	position: absolute;
	right: 42%;
	top: 0;
}

.nr-services-premium__strategy-kicker {
	color: rgba(201, 168, 93, .52);
	font-size: .86rem;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.nr-services-premium__strategy h3 {
	color: #10213d;
	font-size: clamp(25px, 2.1vw, 34px);
	letter-spacing: -.02em;
	line-height: 1.08;
	margin: 16px 0 0;
}

.nr-services-premium__strategy p {
	color: #526078;
	font-size: 1.02rem;
	line-height: 1.7;
	margin: 20px 0 0;
}

.nr-services-premium__strategy ul {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.nr-services-premium__strategy li {
	align-items: center;
	color: #10213d;
	display: flex;
	font-weight: 850;
	gap: 10px;
}

.nr-services-premium__strategy li::before {
	background: rgba(201, 168, 93, .16);
	border: 1px solid rgba(201, 168, 93, .28);
	border-radius: 999px;
	color: var(--nr-gold);
	content: "✓";
	display: inline-flex;
	flex: 0 0 24px;
	font-size: .82rem;
	font-weight: 950;
	height: 24px;
	justify-content: center;
	line-height: 22px;
}

.nr-services-premium__dashboard {
	align-items: center;
	display: flex;
	justify-content: center;
	min-width: 0;
	position: relative;
}

.nr-services-premium__dashboard::before {
	background: radial-gradient(circle, rgba(201, 168, 93, .24), transparent 66%);
	content: "";
	height: 520px;
	position: absolute;
	right: -96px;
	top: -104px;
	width: 560px;
}

.nr-services-premium__dashboard img {
	filter: drop-shadow(0 34px 54px rgba(11, 27, 58, .18));
	position: relative;
	width: min(100%, 620px);
	z-index: 1;
}

.nr-services-premium__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 36px;
}

.nr-services-premium__card {
	display: flex;
	flex-direction: column;
	min-height: 222px;
	padding: 24px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.nr-services-premium__card:hover {
	border-color: rgba(201, 168, 93, .54);
	box-shadow: var(--nr-shadow-strong);
	transform: translateY(-4px);
}

.nr-services-premium__card-top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.nr-services-premium__mark {
	align-items: center;
	background: #f7f9fc;
	border: 1px solid rgba(11, 27, 58, .08);
	border-radius: 999px;
	color: #0b1b3a;
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	min-height: 32px;
	padding: 0 12px;
}

.nr-services-premium__number {
	color: rgba(201, 168, 93, .70);
	font-size: .82rem;
	font-weight: 950;
	letter-spacing: .08em;
}

.nr-services-premium__card h3 {
	color: #10213d;
	font-size: 1.12rem;
	line-height: 1.24;
	margin: 0;
}

.nr-services-premium__card p {
	color: #526078;
	font-size: .95rem;
	line-height: 1.6;
	margin: 10px 0 0;
}

.nr-services-premium__card .text-link {
	margin-top: auto;
	padding-top: 16px;
}

.reach-map img,
.audit-visual img {
	border-radius: 28px;
	box-shadow: var(--nr-shadow-strong);
	position: relative;
	width: 100%;
	z-index: 1;
}

.clients-section {
	background:
		linear-gradient(rgba(11, 27, 58, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 27, 58, .035) 1px, transparent 1px),
		#fff;
	background-size: 36px 36px;
}

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

.client-card {
	min-height: 168px;
	padding: 24px;
	transition: transform .2s ease, box-shadow .2s ease;
}

.client-card:hover {
	box-shadow: var(--nr-shadow-strong);
	transform: translateY(-3px);
}

.client-card span {
	box-shadow: 0 12px 26px rgba(201, 168, 93, .24);
	margin-bottom: 20px;
}

.client-card h3 {
	font-size: 1rem;
}

.reach-section {
	background: linear-gradient(180deg, #fff, var(--nr-soft));
	overflow: hidden;
}

.reach-grid,
.contact-grid,
.audit-grid {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
}

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

.check-list li {
	align-items: center;
	display: flex;
	font-weight: 820;
	gap: 12px;
}

.check-list li::before {
	background: var(--nr-gold);
	border-radius: 999px;
	box-shadow: 0 0 0 6px rgba(201, 168, 93, .16);
	content: "";
	flex: 0 0 9px;
	height: 9px;
	width: 9px;
}

.reach-mini-cards {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 30px;
}

.reach-mini-cards span {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(11, 27, 58, .06);
	color: var(--nr-navy);
	font-size: .92rem;
	font-weight: 850;
	padding: 14px;
	text-align: center;
}

.audit-section {
	background:
		radial-gradient(circle at 82% 12%, rgba(201, 168, 93, .22), transparent 30%),
		linear-gradient(145deg, #06142e 0%, #0b1b3a 54%, #14325f 100%);
	overflow: hidden;
	padding: 118px 0;
	position: relative;
}

.audit-section::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	position: absolute;
}

.audit-grid {
	position: relative;
	z-index: 1;
}

.audit-copy h2,
.audit-copy p {
	color: #fff;
}

.audit-copy .eyebrow {
	color: #f3d68e;
}

.audit-cards {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 32px;
}

.audit-cards span {
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	color: #dce7f7;
	font-weight: 820;
	padding: 14px 16px;
}

.audit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.audit-visual {
	position: relative;
}

.audit-visual::before {
	background: linear-gradient(135deg, rgba(201, 168, 93, .32), transparent);
	border-radius: 30px;
	content: "";
	inset: -18px 28px 28px -18px;
	position: absolute;
}

.blog-section {
	background: #fff;
}

.blog-magazine-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: 1.18fr .82fr;
}

.blog-magazine-card {
	display: grid;
	grid-template-columns: 180px 1fr;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.blog-magazine-card:hover {
	box-shadow: var(--nr-shadow-strong);
	transform: translateY(-4px);
}

.blog-magazine-card-featured {
	grid-row: span 3;
	grid-template-columns: 1fr;
}

.blog-magazine-card__image {
	background: var(--nr-soft);
	display: block;
	min-height: 190px;
	overflow: hidden;
}

.blog-magazine-card-featured .blog-magazine-card__image {
	min-height: 420px;
}

.blog-magazine-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
	width: 100%;
}

.blog-magazine-card:hover .blog-magazine-card__image img {
	transform: scale(1.04);
}

.blog-magazine-card__body {
	align-content: center;
	display: grid;
	padding: 24px;
}

.blog-magazine-card__body span,
.blog-card__meta,
.entry-meta {
	color: var(--nr-gold);
	font-size: .8rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.blog-magazine-card__body time {
	color: #7a879a;
	font-size: .88rem;
	margin-top: 4px;
}

.blog-magazine-card h3 {
	font-size: clamp(1.05rem, 1.5vw, 1.45rem);
	margin: 12px 0 0;
}

.blog-magazine-card-featured h3 {
	font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.contact-section {
	background:
		radial-gradient(circle at 16% 18%, rgba(201, 168, 93, .16), transparent 28%),
		linear-gradient(180deg, var(--nr-soft), #fff);
}

.contact-grid {
	align-items: start;
	grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
}

.contact-visual {
	border-radius: 26px;
	box-shadow: var(--nr-shadow);
	margin-top: 30px;
	overflow: hidden;
}

.contact-visual img {
	aspect-ratio: 1.55 / 1;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.contact-links {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 22px;
}

.contact-links a {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(11, 27, 58, .06);
	color: var(--nr-navy);
	display: grid;
	font-size: .92rem;
	font-weight: 850;
	gap: 4px;
	min-height: 86px;
	padding: 16px;
}

.contact-links span {
	color: var(--nr-gold);
	font-size: .74rem;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-card {
	background: rgba(255, 255, 255, .94);
	padding: 34px;
}

.contact-cta-card {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	padding: clamp(32px, 4vw, 58px);
}

.contact-cta-card h3 {
	font-size: clamp(1.65rem, 3vw, 2.65rem);
	line-height: 1.08;
	margin: 10px 0 16px;
}

.contact-cta-card > p:not(.eyebrow) {
	max-width: 580px;
}

.contact-cta-actions {
	display: grid;
	gap: 16px;
	margin-top: 30px;
}

.contact-cta-button {
	align-items: center;
	border: 1px solid var(--nr-line);
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	min-height: 92px;
	padding: 20px 22px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-cta-button:hover {
	box-shadow: 0 18px 38px rgba(11, 27, 58, .14);
	transform: translateY(-3px);
}

.contact-cta-button span,
.contact-cta-button strong {
	display: block;
}

.contact-cta-button span {
	font-size: 1.02rem;
	font-weight: 950;
}

.contact-cta-button strong {
	font-size: .9rem;
	font-weight: 800;
	opacity: .82;
	text-align: right;
}

.contact-cta-button-primary {
	background: var(--nr-navy);
	border-color: var(--nr-navy);
	color: #fff;
}

.contact-cta-button-whatsapp {
	background: #effbf4;
	border-color: #bfe8cf;
	color: #126b39;
}

.contact-cta-button-email {
	background: #fffaf0;
	border-color: #ead8ad;
	color: var(--nr-navy);
}

.nr-contact-fallback-form,
.nr-cf7-form,
.wpcf7 form {
	display: grid;
	gap: 18px;
}

.nr-contact-fallback-form label,
.nr-cf7-form label,
.wpcf7 form label {
	color: var(--nr-navy);
	display: grid;
	font-weight: 850;
	gap: 8px;
}

.nr-contact-fallback-form input,
.nr-contact-fallback-form textarea,
.nr-cf7-form input[type="text"],
.nr-cf7-form input[type="email"],
.nr-cf7-form input[type="tel"],
.nr-cf7-form input[type="url"],
.nr-cf7-form textarea,
.nr-cf7-form select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select,
.search-form input[type="search"] {
	background: #f8fafc;
	border: 1px solid #dce4ef;
	border-radius: 14px;
	color: var(--nr-ink);
	min-height: 56px;
	padding: 14px 16px;
	transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
	width: 100%;
}

.nr-contact-fallback-form input:focus,
.nr-contact-fallback-form textarea:focus,
.nr-cf7-form input:focus,
.nr-cf7-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	background: #fff;
	border-color: rgba(201, 168, 93, .75);
	box-shadow: 0 0 0 4px rgba(201, 168, 93, .12);
}

.nr-contact-fallback-form textarea,
.nr-cf7-form textarea,
.wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

.nr-cf7-form input[type="checkbox"],
.wpcf7 input[type="checkbox"] {
	accent-color: var(--nr-navy);
	margin-right: 8px;
}

.nr-cf7-form input[type="submit"],
.wpcf7 input[type="submit"],
.search-form input[type="submit"] {
	background: var(--nr-navy);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	min-height: 54px;
	padding: 14px 26px;
}

.wpcf7-not-valid-tip {
	color: #b42318;
	font-size: .9rem;
	font-weight: 760;
	margin-top: 6px;
}

.wpcf7 form .wpcf7-response-output {
	border-radius: 14px;
	margin: 8px 0 0;
	padding: 12px 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf3;
	border-color: #74c69d;
	color: #05603a;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	background: #fff6ed;
	border-color: #f79009;
	color: #9c2a10;
}

.site-footer {
	background: #06142e;
	color: #dce6f5;
	padding: 68px 0 0;
}

.footer-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: 1.4fr repeat(3, 1fr);
}

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

.site-footer strong {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 14px;
}

.site-footer h2 {
	font-size: 1rem;
	margin: 0 0 14px;
}

.site-footer p {
	color: #b7c4d8;
	margin: 0;
}

.site-footer ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer a {
	color: #dce6f5;
}

.site-footer a:hover {
	color: #f1d9a7;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	margin-top: 46px;
	padding-bottom: 24px;
	padding-top: 22px;
}

.footer-bottom p {
	font-size: .92rem;
}

.mobile-contact-bar {
	align-items: center;
	background: rgba(255, 255, 255, .96);
	border-top: 1px solid var(--nr-line);
	bottom: 0;
	box-shadow: 0 -12px 32px rgba(11, 27, 58, .10);
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(3, 1fr);
	left: 0;
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	position: fixed;
	right: 0;
	z-index: 110;
}

.mobile-contact-bar a {
	align-items: center;
	border-radius: 12px;
	color: var(--nr-navy);
	display: flex;
	flex-direction: column;
	font-size: .78rem;
	font-weight: 850;
	gap: 3px;
	justify-content: center;
	min-height: 58px;
}

.mobile-contact-bar span {
	align-items: center;
	background: #f4ead7;
	border-radius: 999px;
	display: inline-flex;
	font-size: .82rem;
	font-weight: 950;
	height: 27px;
	justify-content: center;
	width: 27px;
}

.page-shell {
	background: linear-gradient(180deg, #fff, var(--nr-soft));
	min-height: 64vh;
	padding-top: 58px;
}

.breadcrumbs {
	align-items: center;
	color: #6b7890;
	display: flex;
	flex-wrap: wrap;
	font-size: .92rem;
	gap: 8px;
	margin-bottom: 24px;
}

.breadcrumbs a {
	color: var(--nr-navy);
	font-weight: 820;
}

.archive-header {
	margin-bottom: 34px;
}

.content-article {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 22px;
	box-shadow: var(--nr-shadow);
	padding: clamp(24px, 5vw, 54px);
}

.entry-header {
	margin-bottom: 28px;
}

.entry-featured {
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--nr-navy);
	font-weight: 820;
	text-decoration: underline;
	text-decoration-color: var(--nr-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--nr-navy);
	line-height: 1.2;
}

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

.entry-footer {
	border-top: 1px solid var(--nr-line);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
	padding-top: 20px;
}

.entry-footer a,
.page-numbers {
	background: var(--nr-soft);
	border: 1px solid var(--nr-line);
	border-radius: 999px;
	color: var(--nr-navy);
	display: inline-flex;
	font-weight: 820;
	padding: 8px 12px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 34px;
}

.page-numbers.current {
	background: var(--nr-navy);
	color: #fff;
}

.search-form {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	max-width: 620px;
}

.not-found-card {
	padding: clamp(28px, 6vw, 58px);
	text-align: center;
}

.not-found-card .button {
	margin-top: 20px;
}

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

.blog-card {
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
	box-shadow: var(--nr-shadow-strong);
	transform: translateY(-4px);
}

.blog-card__image {
	aspect-ratio: 1.48 / 1;
	background: var(--nr-soft);
	display: block;
	overflow: hidden;
}

.blog-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
	width: 100%;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.04);
}

.blog-card__body {
	padding: 22px;
}

.blog-card h3 {
	font-size: 1.08rem;
	min-height: 2.6em;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (min-width: 783px) {
	.mobile-contact-bar {
		display: none;
	}

	body.has-mobile-contact-bar {
		padding-bottom: 0;
	}
}

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

	.menu-toggle {
		align-items: center;
		background: #fff;
		border: 1px solid var(--nr-line);
		border-radius: 999px;
		display: inline-flex;
		flex-direction: column;
		gap: 5px;
		height: 46px;
		justify-content: center;
		width: 46px;
	}

	.menu-toggle span {
		background: var(--nr-navy);
		border-radius: 999px;
		height: 2px;
		transition: transform .2s ease, opacity .2s ease;
		width: 19px;
	}

	body.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	body.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-navigation {
		background: #fff;
		border: 1px solid var(--nr-line);
		border-radius: 22px;
		box-shadow: var(--nr-shadow);
		display: none;
		left: 20px;
		padding: 22px;
		position: absolute;
		right: 20px;
		top: calc(100% + 8px);
	}

	body.menu-open .site-navigation {
		display: block;
	}

	.primary-menu {
		align-items: stretch;
		display: grid;
		gap: 6px;
	}

	.primary-menu a {
		border-radius: 12px;
		display: block;
		font-size: 1.12rem;
		padding: 12px 10px;
	}

	.primary-menu a:hover {
		background: var(--nr-soft);
	}

	.mobile-quick-actions {
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(3, 1fr);
		margin-top: 16px;
	}

	.mobile-quick-actions a {
		background: var(--nr-navy);
		border-radius: 999px;
		color: #fff;
		font-weight: 900;
		min-height: 46px;
		padding: 10px;
		text-align: center;
	}

	.header-cta {
		display: none;
	}

	.problems-layout,
	.reach-grid,
	.contact-grid,
	.audit-grid {
		grid-template-columns: 1fr;
	}

	.nr-services-premium__showcase {
		gap: 30px;
		grid-template-columns: 1fr;
	}

	.nr-services-premium__dashboard {
		order: 1;
	}

	.nr-services-premium__dashboard img {
		width: min(100%, 760px);
	}

	.nr-services-premium__strategy {
		order: 2;
	}

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

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

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

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

	.blog-magazine-card-featured {
		grid-row: auto;
	}

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

@media (min-width: 900px) and (max-width: 1199px) {
	.nr-hero-premium {
		min-height: clamp(740px, 84vh, 880px);
		padding-top: calc(var(--nr-header-height) + 34px);
	}

	.nr-hero-premium__overlay {
		background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .94) 34%, rgba(255, 255, 255, .82) 58%, rgba(255, 255, 255, .38) 78%, rgba(255, 255, 255, .16) 100%);
	}

	.nr-hero-premium__content {
		max-width: 590px;
	}

	.nr-hero-premium__title {
		font-size: clamp(42px, 6.2vw, 64px);
	}

	.nr-hero-premium__floating {
		bottom: 58px;
		opacity: .9;
		right: 16px;
		width: 320px;
	}

	.nr-hero-premium__metric {
		width: 190px;
	}

	.nr-hero-premium__chart {
		right: 72px;
		width: 220px;
	}
}

@media (min-width: 768px) and (max-width: 899px) {
	.nr-hero-premium {
		min-height: 740px;
		padding: calc(var(--nr-header-height) + 36px) 0 68px;
	}

	.nr-hero-premium__overlay {
		background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 42%, rgba(255, 255, 255, .84) 70%, rgba(255, 255, 255, .48) 100%);
	}

	.nr-hero-premium__content {
		max-width: 610px;
	}

	.nr-hero-premium__title {
		font-size: clamp(42px, 8vw, 58px);
	}

	.nr-hero-premium__floating {
		display: none;
	}
}

@media (max-width: 782px) {
	:root {
		--nr-header-height: 72px;
	}

	body {
		font-size: 16px;
	}

	.container {
		padding: 0 18px;
	}

	.section {
		padding: 72px 0;
	}

	.nr-services-premium {
		padding: 72px 0 78px;
	}

	.nr-services-premium__head {
		margin-bottom: 30px;
	}

	.nr-hero-premium {
		align-items: flex-start;
		min-height: 720px;
		padding: 96px 0 54px;
	}

	.section-heading h2,
	.nr-services-premium__title,
	.problem-copy h2,
	.reach-section h2,
	.contact-section h2,
	.audit-section h2,
	.archive-header h1,
	.entry-header h1,
	.not-found-card h1 {
		font-size: clamp(36px, 12vw, 54px);
	}

	.nr-hero-premium__bg img {
		object-position: center top;
	}

	.nr-hero-premium__overlay {
		background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .95) 43%, rgba(255, 255, 255, .76) 72%, rgba(255, 255, 255, .34) 100%);
	}

	.nr-hero-premium__tint {
		background:
			radial-gradient(circle at 78% 82%, rgba(201, 168, 93, .18), transparent 38%),
			linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(11, 27, 58, .08));
	}

	.nr-hero-premium__inner {
		align-items: flex-start;
		min-height: auto;
		padding-left: 20px;
		padding-right: 20px;
	}

	.nr-hero-premium__content {
		max-width: 100%;
		padding: 0;
		width: 100%;
	}

	.nr-hero-premium__label {
		font-size: .72rem;
		line-height: 1.35;
		margin-bottom: 14px;
	}

	.nr-hero-premium__title {
		font-size: clamp(38px, 11vw, 52px);
		letter-spacing: -.04em;
		line-height: 1.02;
		max-width: 100%;
	}

	.nr-hero-premium__lead {
		color: #41506a;
		font-size: 1rem;
		line-height: 1.6;
		margin-top: 22px;
		max-width: 100%;
	}

	.section-heading p,
	.problem-copy p,
	.reach-section p,
	.contact-section p {
		font-size: 1rem;
	}

	.nr-services-premium__lead {
		font-size: 1rem;
		line-height: 1.6;
	}

	.nr-services-premium__title {
		font-size: clamp(32px, 8.8vw, 42px);
		overflow-wrap: anywhere;
	}

	.nr-services-premium__showcase {
		gap: 20px;
		min-width: 0;
	}

	.nr-services-premium__dashboard {
		justify-content: flex-start;
		overflow: hidden;
		width: 100%;
	}

	.nr-services-premium__dashboard img {
		margin: 0;
		max-height: 330px;
		max-width: 100%;
		object-fit: contain;
		width: min(100%, 360px);
	}

	.nr-services-premium__dashboard::before {
		height: 360px;
		right: -120px;
		top: -70px;
		width: 360px;
	}

	.nr-services-premium__strategy,
	.nr-services-premium__card {
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		padding: 22px;
	}

	.nr-services-premium__strategy h3 {
		font-size: clamp(24px, 8vw, 34px);
	}

	.nr-services-premium__strategy p,
	.nr-services-premium__card p {
		font-size: .96rem;
		overflow-wrap: anywhere;
	}

	.nr-hero-premium__actions,
	.audit-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.nr-hero-premium__actions {
		gap: 12px;
		margin-top: 28px;
		max-width: 380px;
	}

	.button {
		min-height: 54px;
		width: 100%;
	}

	.client-paths-grid,
	.problem-grid,
	.nr-services-premium__grid,
	.clients-grid,
	.reach-mini-cards,
	.audit-cards,
	.contact-links,
	.blog-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.nr-hero-premium__trust {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-top: 24px;
	}

	.nr-hero-premium__trust li {
		font-size: .94rem;
	}

	.nr-hero-premium__floating {
		display: none;
	}

	.client-paths-section {
		margin-top: 0;
		padding: 42px 0 64px;
	}

	.blog-magazine-card,
	.blog-magazine-card-featured {
		grid-template-columns: 1fr;
	}

	.blog-magazine-card__image,
	.blog-magazine-card-featured .blog-magazine-card__image {
		min-height: 240px;
	}

	.contact-card {
		padding: 22px;
	}

	.contact-cta-card {
		min-height: auto;
	}

	.contact-cta-button {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
		min-height: 86px;
	}

	.contact-cta-button strong {
		text-align: left;
	}

	.search-form {
		display: grid;
	}

	.site-logo {
		font-size: .98rem;
		max-width: calc(100vw - 92px);
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

@media (max-width: 520px) {
	.mobile-quick-actions {
		grid-template-columns: 1fr;
	}

	.nr-hero-premium__actions {
		max-width: none;
	}

	.nr-hero-premium__trust span {
		flex-basis: 22px;
		height: 22px;
	}

	.nr-services-premium {
		padding-left: 0;
		padding-right: 0;
	}

	.nr-services-premium__card {
		min-height: 0;
	}

	.problem-card,
	.client-card {
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

.seo-page {
	background: #fff;
	color: var(--nr-text);
	overflow: hidden;
}

.seo-hero {
	background:
		linear-gradient(135deg, rgba(11, 27, 58, .96), rgba(20, 50, 95, .92)),
		#0b1b3a;
	color: #fff;
	padding: calc(var(--nr-header-height) + 72px) 0 88px;
	position: relative;
}

.geo-page .seo-hero {
	background:
		linear-gradient(135deg, rgba(9, 24, 54, .97), rgba(21, 71, 99, .92)),
		#091836;
}

.google-ads-page .seo-hero {
	background:
		linear-gradient(135deg, rgba(10, 27, 58, .97), rgba(33, 58, 111, .92)),
		#0a1b3a;
}

.facebook-ads-page .seo-hero {
	background:
		linear-gradient(135deg, rgba(28, 24, 64, .97), rgba(73, 45, 105, .92)),
		#1c1840;
}

.seo-hero__grid {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.seo-hero__copy h1 {
	color: #fff;
	font-size: 3.65rem;
	line-height: .98;
	margin: 0 0 24px;
	max-width: 860px;
}

.seo-eyebrow {
	color: var(--nr-gold);
	font-size: .78rem;
	font-weight: 950;
	letter-spacing: .12em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.seo-hero__subtitle {
	color: rgba(255, 255, 255, .92);
	font-size: 1.34rem;
	font-weight: 760;
	line-height: 1.45;
	margin: 0 0 18px;
	max-width: 760px;
}

.seo-hero__text {
	color: rgba(255, 255, 255, .78);
	font-size: 1.05rem;
	line-height: 1.8;
	margin: 0;
	max-width: 720px;
}

.seo-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.seo-hero .button-secondary,
.seo-final-cta .button-secondary {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .28);
	color: #fff;
}

.seo-hero .button-secondary:hover,
.seo-final-cta .button-secondary:hover {
	background: rgba(255, 255, 255, .2);
	color: #fff;
}

.seo-hero__stats {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 34px;
	max-width: 760px;
}

.seo-hero__stats div {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 8px;
	padding: 18px;
}

.seo-hero__stats strong,
.seo-hero__stats span {
	display: block;
}

.seo-hero__stats strong {
	color: #fff;
	font-size: 1.35rem;
	line-height: 1.2;
	margin-bottom: 6px;
}

.seo-hero__stats span {
	color: rgba(255, 255, 255, .72);
	font-size: .92rem;
	line-height: 1.45;
}

.seo-hero__media {
	border-radius: 8px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, .32);
	margin: 0;
	min-height: 520px;
	overflow: hidden;
	position: relative;
}

.seo-hero__media img,
.seo-feature__media img,
.seo-market-card figure img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.seo-hero__media span {
	border: 1px solid rgba(255, 255, 255, .26);
	inset: 18px;
	position: absolute;
}

.seo-section {
	padding: 96px 0;
}

.seo-section--light,
.seo-section--cream {
	background: #f6f8fb;
}

.seo-section--navy {
	background: var(--nr-navy);
	color: #fff;
}

.seo-section__intro {
	max-width: 760px;
}

.seo-section__intro--center {
	margin: 0 auto 42px;
	text-align: center;
}

.seo-section__intro h2,
.seo-feature__copy h2,
.seo-market-card h2,
.seo-final-cta h2 {
	color: var(--nr-navy);
	font-size: 2.55rem;
	line-height: 1.08;
	margin: 0 0 18px;
}

.seo-section--navy .seo-section__intro h2,
.seo-section--navy .seo-section__intro p,
.seo-final-cta h2,
.seo-final-cta p {
	color: #fff;
}

.seo-section__intro p,
.seo-feature__copy p,
.seo-market-card p,
.seo-final-cta p {
	color: #5d687a;
	font-size: 1.03rem;
	line-height: 1.78;
	margin: 0;
}

.seo-section--navy .seo-section__intro p {
	color: rgba(255, 255, 255, .76);
}

.seo-split {
	align-items: start;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
}

.seo-split--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
}

.seo-card-grid {
	display: grid;
	gap: 18px;
}

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

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

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

.seo-card {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(11, 27, 58, .07);
	padding: 26px;
}

.seo-card--quiet {
	box-shadow: none;
}

.seo-card--dark {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .14);
	box-shadow: none;
}

.seo-card h3,
.seo-timeline h3,
.seo-process h3 {
	color: var(--nr-navy);
	font-size: 1.08rem;
	line-height: 1.28;
	margin: 0 0 10px;
}

.seo-card--dark h3 {
	color: #fff;
}

.seo-card p,
.seo-timeline p,
.seo-process p {
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}

.seo-card--dark p {
	color: rgba(255, 255, 255, .72);
}

.seo-feature {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
}

.seo-feature__media {
	aspect-ratio: 1.08 / .82;
	border-radius: 8px;
	box-shadow: var(--nr-shadow);
	margin: 0;
	overflow: hidden;
}

.seo-feature__copy {
	max-width: 720px;
}

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

.seo-check-list li {
	align-items: start;
	color: #344054;
	display: grid;
	gap: 12px;
	grid-template-columns: 22px minmax(0, 1fr);
	line-height: 1.65;
}

.seo-check-list li::before {
	background: var(--nr-gold);
	border-radius: 50%;
	content: "";
	height: 9px;
	margin-top: 9px;
	width: 9px;
}

.seo-market-grid {
	display: grid;
	gap: 22px;
}

.seo-market-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(11, 27, 58, .06);
	display: grid;
	gap: 32px;
	grid-template-columns: 330px minmax(0, 1fr);
	overflow: hidden;
	padding: 18px 32px 18px 18px;
}

.seo-market-card figure {
	aspect-ratio: 672 / 726;
	border-radius: 8px;
	margin: 0;
	overflow: hidden;
}

.seo-market-card figure img {
	object-position: center;
}

.seo-market-card .seo-check-list {
	margin-top: 18px;
}

.seo-market-card__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.seo-market-card__ctas .button {
	flex: 0 1 auto;
	font-size: .94rem;
	min-height: 46px;
	min-width: 0;
	padding: 12px 18px;
	text-align: center;
}

.google-ads-section-ctas .button {
	min-height: 46px;
	padding: 12px 18px;
}

.facebook-ads-section-ctas .button {
	min-height: 46px;
	padding: 12px 18px;
}

.seo-strategy-media {
	aspect-ratio: 1.08 / 1;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(11, 27, 58, .08);
	margin: 30px 0 0;
	overflow: hidden;
}

.seo-strategy-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.seo-timeline {
	display: grid;
	gap: 16px;
}

.seo-timeline article {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(11, 27, 58, .06);
	padding: 24px;
	position: relative;
}

.seo-timeline article::before {
	background: var(--nr-gold);
	content: "";
	height: calc(100% - 32px);
	left: 0;
	position: absolute;
	top: 16px;
	width: 4px;
}

.seo-process {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 36px;
}

.seo-process article {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(11, 27, 58, .06);
	padding: 26px;
}

.seo-process span {
	color: var(--nr-gold);
	display: block;
	font-size: .9rem;
	font-weight: 950;
	margin-bottom: 16px;
}

.seo-final-cta {
	background: var(--nr-navy);
	color: #fff;
	padding: 82px 0;
}

.seo-final-cta__inner {
	align-items: center;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.seo-final-cta p {
	color: rgba(255, 255, 255, .76);
	max-width: 780px;
}

.seo-final-cta__actions {
	justify-content: flex-end;
	margin-top: 0;
}

.seo-contact-grid {
	align-items: start;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
}

.seo-contact-cards {
	display: grid;
	gap: 14px;
}

.seo-contact-cards a {
	background: #fff;
	border: 1px solid var(--nr-line);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(11, 27, 58, .07);
	display: grid;
	gap: 8px;
	padding: 24px;
}

.seo-contact-cards span {
	color: var(--nr-gold);
	font-size: .8rem;
	font-weight: 950;
	text-transform: uppercase;
}

.seo-contact-cards strong {
	color: var(--nr-navy);
	font-size: 1.24rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.seo-landing-page .footer-grid,
.geo-landing-page .footer-grid,
.google-ads-landing-page .footer-grid,
.facebook-ads-landing-page .footer-grid {
	grid-template-columns: 1.4fr 1fr 1fr;
}

@media (max-width: 1180px) {
	.seo-hero__grid,
	.seo-feature,
	.seo-split,
	.seo-split--reverse,
	.seo-final-cta__inner,
	.seo-contact-grid {
		grid-template-columns: 1fr;
	}

	.seo-hero__media {
		min-height: 420px;
	}

	.seo-card-grid--four,
	.seo-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.seo-final-cta__actions {
		justify-content: flex-start;
	}

	.seo-landing-page .footer-grid,
	.geo-landing-page .footer-grid,
	.google-ads-landing-page .footer-grid,
	.facebook-ads-landing-page .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.seo-hero {
		padding: calc(var(--nr-header-height) + 42px) 0 62px;
	}

	.seo-hero__copy h1 {
		font-size: 2.58rem;
		line-height: 1.05;
	}

	.seo-hero__subtitle {
		font-size: 1.12rem;
	}

	.seo-hero__stats,
	.seo-card-grid--two,
	.seo-card-grid--three,
	.seo-card-grid--four,
	.seo-process,
	.seo-market-card {
		grid-template-columns: 1fr;
	}

	.seo-market-card {
		padding: 18px;
	}

	.seo-market-card__ctas .button {
		flex: 1 1 150px;
	}

	.seo-section {
		padding: 68px 0;
	}

	.seo-section__intro h2,
	.seo-feature__copy h2,
	.seo-market-card h2,
	.seo-final-cta h2 {
		font-size: 2rem;
	}

	.seo-cta-row .button {
		width: 100%;
	}

	.seo-hero__media {
		min-height: 320px;
	}

	.seo-landing-page .footer-grid,
	.geo-landing-page .footer-grid,
	.google-ads-landing-page .footer-grid,
	.facebook-ads-landing-page .footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.seo-hero__copy h1 {
		font-size: 2.18rem;
	}

	.seo-card,
	.seo-process article,
	.seo-timeline article,
	.seo-contact-cards a {
		padding: 22px;
	}

	.seo-hero__stats div {
		padding: 16px;
	}

	.seo-market-card__ctas .button {
		flex-basis: 100%;
		width: 100%;
	}
}

@media (max-width: 782px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.page-shell {
		padding-top: 34px;
	}

	.page-shell > .container,
	.page-shell > .container.narrow,
	.single-article,
	.entry-header,
	.entry-content {
		min-width: 0;
		max-width: 100%;
	}

	.single-article.content-article {
		border-radius: 18px;
		padding: 20px 16px 26px;
	}

	.single-article .entry-header {
		margin-bottom: 22px;
	}

	.single-article .entry-header h1 {
		font-size: clamp(28px, 8.2vw, 38px);
		line-height: 1.08;
		letter-spacing: -.025em;
		overflow-wrap: anywhere;
		word-break: normal;
		hyphens: auto;
	}

	.single-article .entry-content,
	.single-article .entry-content p,
	.single-article .entry-content li,
	.single-article .entry-content a,
	.single-article .entry-content h2,
	.single-article .entry-content h3,
	.single-article .entry-content h4 {
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.single-article .entry-content h2 {
		font-size: clamp(24px, 7vw, 32px);
	}

	.single-article .entry-content h3 {
		font-size: clamp(21px, 6vw, 27px);
	}

	.single-article .entry-content h4 {
		font-size: clamp(18px, 5.2vw, 23px);
	}

	.single-article .entry-content img,
	.single-article .entry-content video,
	.single-article .entry-content iframe,
	.single-article .entry-content figure,
	.single-article .entry-content .wp-block-image,
	.single-article .entry-content .wp-block-embed {
		height: auto;
		max-width: 100%;
	}

	.single-article .entry-content table,
	.single-article .entry-content .wp-block-table table {
		border-collapse: collapse;
		font-size: 13px;
		line-height: 1.4;
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
		table-layout: fixed;
		width: 100% !important;
	}

	.single-article .entry-content .wp-block-table {
		max-width: 100%;
		overflow: visible;
		width: 100%;
	}

	.single-article .entry-content table th,
	.single-article .entry-content table td {
		height: auto !important;
		min-width: 0 !important;
		padding: 9px 6px;
		vertical-align: top;
		white-space: normal !important;
		width: auto !important;
		word-break: break-word;
		overflow-wrap: anywhere;
	}

	.single-article .entry-content pre,
	.single-article .entry-content code {
		max-width: 100%;
		white-space: pre-wrap;
		word-break: break-word;
	}
}
