: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-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;
}

.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;
}

.hero {
	min-height: clamp(760px, 82vh, 860px);
	overflow: hidden;
	padding: 86px 0 72px;
	position: relative;
}

.hero::before {
	background-image:
		linear-gradient(rgba(11, 27, 58, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 27, 58, .05) 1px, transparent 1px);
	background-size: 46px 46px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
	position: absolute;
}

.hero-orbit {
	background: radial-gradient(circle, rgba(201, 168, 93, .22), transparent 64%);
	border-radius: 999px;
	height: 560px;
	position: absolute;
	right: -170px;
	top: 74px;
	width: 560px;
}

.hero-grid {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 52fr) minmax(380px, 48fr);
	position: relative;
	z-index: 1;
}

.hero-copy {
	max-width: 640px;
}

.hero h1 {
	color: var(--nr-navy);
	font-size: clamp(48px, 6vw, 86px);
	letter-spacing: 0;
	line-height: .98;
	margin: 0;
}

.hero-description {
	color: #48566f;
	font-size: clamp(17px, 1.55vw, 20px);
	line-height: 1.65;
	margin: 26px 0 0;
	max-width: 620px;
}

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

.hero-trust {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 34px;
}

.hero-trust span {
	align-items: center;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(227, 233, 242, .9);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(11, 27, 58, .06);
	color: var(--nr-navy);
	display: flex;
	font-size: .92rem;
	font-weight: 820;
	gap: 10px;
	min-height: 70px;
	padding: 14px;
}

.hero-trust i {
	align-items: center;
	background: var(--nr-gold);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	flex: 0 0 30px;
	font-size: .78rem;
	font-style: normal;
	font-weight: 950;
	height: 30px;
	justify-content: center;
}

.hero-composition {
	min-height: 650px;
	position: relative;
}

.hero-data-grid {
	background:
		radial-gradient(circle at 50% 45%, rgba(201, 168, 93, .20), transparent 38%),
		linear-gradient(rgba(11, 27, 58, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 27, 58, .08) 1px, transparent 1px);
	background-size: 100% 100%, 32px 32px, 32px 32px;
	border-radius: 44px;
	filter: blur(.1px);
	inset: 42px 8px 20px 34px;
	position: absolute;
}

.hero-image-mask {
	aspect-ratio: .86 / 1;
	border: 12px solid rgba(255, 255, 255, .82);
	border-radius: 42px;
	box-shadow: var(--nr-shadow-strong);
	overflow: hidden;
	position: absolute;
	right: 46px;
	top: 14px;
	width: min(430px, 78%);
}

.hero-image-mask::after {
	background: linear-gradient(180deg, transparent 48%, rgba(11, 27, 58, .30));
	content: "";
	inset: 0;
	position: absolute;
}

.hero-image-mask img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hero-card {
	position: absolute;
	z-index: 2;
}

.hero-card img,
.hero-card-chart {
	filter: drop-shadow(0 24px 34px rgba(11, 27, 58, .18));
}

.hero-card-campaign {
	bottom: 64px;
	left: 0;
	width: 255px;
}

.hero-card-campaign > div {
	left: 34px;
	position: absolute;
	top: 74px;
}

.hero-card-campaign span,
.hero-card-ai span {
	color: #68758d;
	display: block;
	font-size: .78rem;
	font-weight: 850;
}

.hero-card-campaign strong {
	color: var(--nr-navy);
	display: block;
	font-size: 2.15rem;
	line-height: 1;
}

.hero-card-ai {
	right: 0;
	top: 118px;
	width: 250px;
}

.hero-card-ai > div {
	bottom: 28px;
	left: 34px;
	position: absolute;
}

.hero-card-ai span,
.hero-card-ai strong {
	color: #fff;
}

.hero-card-ai strong {
	display: block;
	font-size: .95rem;
	margin-top: 3px;
}

.hero-card-chart {
	bottom: 18px;
	position: absolute;
	right: 20px;
	width: 215px;
	z-index: 3;
}

.client-paths-section {
	background: #fff;
	margin-top: -54px;
	padding-bottom: 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,
.service-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,
.service-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,
.service-card__icon {
	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,
.service-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,
.service-card p {
	color: #5b687b;
	font-size: .98rem;
	margin: 10px 0 0;
}

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

.services-heading {
	max-width: 880px;
}

.services-layout {
	align-items: center;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
}

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

.service-card {
	min-height: 238px;
	padding: 28px;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.service-card-featured {
	background:
		linear-gradient(145deg, rgba(11, 27, 58, .96), rgba(20, 50, 95, .96)),
		#0b1b3a;
	grid-row: span 2;
	min-height: 494px;
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured .text-link {
	color: #fff;
}

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

.service-card__icon {
	margin-bottom: 24px;
}

.services-dashboard {
	position: relative;
}

.services-dashboard::before {
	background: radial-gradient(circle, rgba(201, 168, 93, .20), transparent 62%);
	content: "";
	height: 520px;
	position: absolute;
	right: -120px;
	top: -120px;
	width: 520px;
}

.services-dashboard img,
.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;
}

.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;
	}

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

	.hero {
		min-height: auto;
	}

	.hero-copy {
		max-width: 760px;
	}

	.hero-composition {
		min-height: 650px;
		max-width: 720px;
	}

	.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 (max-width: 782px) {
	:root {
		--nr-header-height: 72px;
	}

	body {
		font-size: 16px;
	}

	.container {
		padding: 0 18px;
	}

	.section {
		padding: 72px 0;
	}

	.hero {
		padding: 54px 0 66px;
	}

	.hero h1,
	.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 {
		font-size: clamp(36px, 12vw, 54px);
	}

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

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

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

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

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

	.hero-composition {
		min-height: 560px;
	}

	.hero-image-mask {
		right: 0;
		top: 18px;
		width: 82%;
	}

	.hero-card-campaign {
		bottom: 58px;
		width: 220px;
	}

	.hero-card-campaign > div {
		left: 29px;
		top: 64px;
	}

	.hero-card-campaign strong {
		font-size: 1.8rem;
	}

	.hero-card-ai {
		right: -4px;
		top: 118px;
		width: 210px;
	}

	.hero-card-chart {
		bottom: 20px;
		right: 8px;
		width: 178px;
	}

	.service-card-featured {
		grid-row: auto;
		min-height: 280px;
	}

	.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;
	}

	.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;
	}

	.hero-composition {
		min-height: 500px;
	}

	.hero-image-mask {
		border-width: 8px;
		border-radius: 30px;
		width: 88%;
	}

	.hero-card-campaign {
		width: 196px;
	}

	.hero-card-campaign > div {
		top: 56px;
	}

	.hero-card-ai {
		top: 98px;
		width: 188px;
	}

	.hero-card-ai > div {
		bottom: 22px;
		left: 28px;
	}

	.hero-card-chart {
		width: 150px;
	}

	.problem-card,
	.service-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;
	}
}
