:root {
	--paper: #fafaf7;
	--paper-2: #f3f2ec;
	--ink: #0f0f10;
	--ink-2: #1f1f22;
	--muted: #6b6b70;
	--muted-2: #9a9a9f;
	--hairline: #e5e3dc;
	--accent: #376c4d;
	--accent-ink: #fafaf7;
	--accent-2: #2c5a3e;
	--tint-lime: #d4e6dc;
	--tint-sky: #dcebff;
	--tint-peach: #ffe4d6;
	--tint-lilac: #eadcff;
	--tint-mint: #d6f5e6;
	--tint-cream: #fff4d6;
	--font-sans: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-serif: Georgia, "Times New Roman", serif;
	--font-mono: "Helvetica Neue", Helvetica, Arial, ui-monospace, SFMono-Regular, monospace;
	--container: 1240px;
	--gutter: clamp(20px, 4vw, 48px);
	--r-card: 22px;
	--r-xl: 28px;
	--r-2xl: 36px;
	--shadow-1: 0 1px 2px rgba(15, 15, 16, 0.04), 0 1px 1px rgba(15, 15, 16, 0.03);
	--shadow-2: 0 6px 18px -6px rgba(15, 15, 16, 0.10), 0 2px 4px rgba(15, 15, 16, 0.04);
	--shadow-3: 0 20px 40px -20px rgba(15, 15, 16, 0.18), 0 6px 12px -6px rgba(15, 15, 16, 0.06);
	--shadow-accent: 0 16px 40px -12px rgba(55, 108, 77, 0.45);
	--glass-bg: rgba(255, 255, 255, 0.55);
	--glass-border: rgba(255, 255, 255, 0.7);
	--glass-blur: saturate(160%) blur(18px);
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.home.elementor-page .nh-site-header,
.home.elementor-page .nh-site-footer {
	display: none;
}

body {
	background: var(--paper);
	color: var(--ink);
}

.elementor-widget[class*="elementor-widget-nhe_"],
.elementor-widget[class*="elementor-widget-nhe_"] > .elementor-widget-container {
	width: 100%;
}

.nh-container {
	max-width: var(--container);
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.nh-section {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-sans);
	padding: clamp(72px, 10vw, 128px) 0;
}

.nh-section--tight {
	padding: clamp(64px, 8vw, 104px) 0;
}

.nh-eyebrow,
.nh-mono-small {
	color: var(--muted);
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nh-mono-small {
	font-size: 11px;
	letter-spacing: 0.08em;
}

.nh-section-head {
	max-width: 780px;
	margin-bottom: 56px;
}

.nh-section-title {
	font-size: clamp(2rem, 3.8vw, 3.65rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 16px 0 20px;
	text-wrap: balance;
}

.nh-section-title em,
.nh-pain__title em,
.nh-contact h2 em,
.nh-about__copy h2 em {
	color: var(--accent);
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
}

.nh-section-lede {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
	max-width: 720px;
}

.nh-fade {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.nh-fade.is-in,
.elementor-editor-active .nh-fade {
	opacity: 1;
	transform: none;
}

.nh-btn {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	gap: 10px;
	padding: 14px 22px;
	text-decoration: none;
	transition: transform 160ms var(--ease-out), background 200ms, box-shadow 200ms, border-color 200ms;
	white-space: nowrap;
}

.nh-btn--sm {
	font-size: 14px;
	padding: 10px 16px;
}

.nh-btn--lg {
	font-size: 16px;
	padding: 18px 28px;
}

.nh-btn--primary {
	background: var(--accent);
	box-shadow: var(--shadow-accent);
	color: var(--accent-ink);
}

.nh-btn--primary:hover {
	background: var(--accent-2);
	transform: translateY(-1px);
}

.nh-btn--ghost {
	background: transparent;
	border-color: var(--hairline);
	color: var(--ink);
}

.nh-btn--ghost:hover {
	background: #fff;
	border-color: var(--ink);
}

.nh-btn__arrow {
	display: inline-block;
	transition: transform 200ms var(--ease-out);
}

.nh-btn:hover .nh-btn__arrow {
	transform: translateX(3px);
}

.nh-nav-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: -64px;
	padding-inline: var(--gutter);
	pointer-events: none;
	position: sticky;
	top: 16px;
	z-index: 50;
}

.nh-nav {
	align-items: center;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: 999px;
	box-shadow: var(--shadow-2);
	display: flex;
	gap: 20px;
	max-width: 1080px;
	padding: 8px 12px 8px 22px;
	pointer-events: auto;
	width: 100%;
}

.nh-nav__brand {
	align-items: center;
	color: var(--ink);
	display: inline-flex;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0;
	min-width: 158px;
	text-decoration: none;
}

.nh-nav__logo {
	display: block;
	height: 32px;
	max-width: 210px;
	object-fit: contain;
	object-position: left center;
	width: 210px;
}

.nh-nav__dot {
	background: var(--accent);
	border-radius: 50%;
	display: inline-block;
	height: 7px;
	margin-left: 3px;
	width: 7px;
}

.nh-nav__links {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0 auto;
	padding: 0;
}

.nh-nav__links a {
	color: var(--muted);
	font-size: 14px;
	font-weight: 500;
	padding: 8px 0;
	text-decoration: none;
	white-space: nowrap;
}

.nh-nav__links a:hover {
	color: var(--ink);
}

.nh-nav__right {
	display: flex;
}

.nh-nav__burger {
	background: transparent;
	border: 0;
	color: var(--ink);
	cursor: pointer;
	display: none;
	font-size: 22px;
	line-height: 1;
}

.nh-mesh {
	background:
		radial-gradient(60% 60% at 12% 10%, var(--tint-lime) 0%, transparent 60%),
		radial-gradient(50% 50% at 88% 18%, var(--tint-sky) 0%, transparent 60%),
		radial-gradient(60% 70% at 70% 95%, var(--tint-peach) 0%, transparent 60%),
		radial-gradient(40% 60% at 20% 90%, var(--tint-lilac) 0%, transparent 60%),
		var(--paper);
}

.nh-hero {
	overflow: hidden;
	padding: 132px 0 88px;
}

.nh-hero__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	max-width: 980px;
	text-align: center;
}

.nh-hero__status {
	align-items: center;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 500;
	gap: 10px;
	margin-bottom: 32px;
	padding: 8px 16px;
	white-space: nowrap;
}

.nh-dot-live {
	background: #1fa06a;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(31, 160, 106, 0.18);
	height: 8px;
	width: 8px;
}

.nh-hero__headline {
	color: var(--ink);
	font-size: clamp(2.75rem, 6.4vw, 6rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 28px;
	text-wrap: balance;
}

.nh-accent-underline {
	background-image: linear-gradient(transparent 72%, rgba(55, 108, 77, 0.92) 72%);
	color: var(--ink);
	padding: 0 6px;
}

.nh-hero__sub {
	color: var(--ink-2);
	font-size: clamp(1.1rem, 1.4vw, 1.35rem);
	line-height: 1.55;
	margin: 0 0 40px;
	max-width: 640px;
}

.nh-hero__ctas,
.nh-contact__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-bottom: 34px;
}

.nh-hero__proof {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 18px;
	justify-content: center;
	margin-bottom: 24px;
}

.nh-hero__avatars {
	display: inline-flex;
}

.nh-hero__avatars span {
	background: var(--tint-lime);
	border: 2px solid var(--paper);
	border-radius: 50%;
	height: 32px;
	margin-left: -8px;
	width: 32px;
}

.nh-hero__avatars span:nth-child(2) { background: var(--tint-peach); }
.nh-hero__avatars span:nth-child(3) { background: var(--tint-sky); }
.nh-hero__avatars span:nth-child(4) { background: var(--tint-lilac); }
.nh-hero__avatars span:nth-child(5) { background: var(--tint-mint); }
.nh-hero__avatars span:first-child { margin-left: 0; }

.nh-stars {
	color: var(--accent);
	letter-spacing: 1px;
}

.nh-hero__metrics {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: var(--glass-blur);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	box-shadow: var(--shadow-1);
	display: inline-grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(120px, 1fr));
	margin-top: 4px;
	overflow: hidden;
}

.nh-hero__metrics > div {
	background: rgba(255, 255, 255, 0.42);
	padding: 13px 20px 12px;
	text-align: left;
}

.nh-hero__metrics b {
	color: var(--ink);
	display: block;
	font-size: 18px;
	line-height: 1;
}

.nh-hero__metrics span {
	color: var(--muted);
	display: block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	margin-top: 5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.nh-hero__showcase {
	align-items: end;
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr 1.3fr 1fr;
	margin-top: 58px;
	perspective: 1400px;
}

.nh-hero__frame {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	overflow: hidden;
}

.nh-hero__frame--side {
	opacity: 0.85;
	transform: rotateY(8deg) translateY(20px);
}

.nh-hero__frame--side.right {
	transform: rotateY(-8deg) translateY(20px);
}

.nh-hero__frame--main {
	transform: translateY(-30px);
}

.nh-browser-bar {
	align-items: center;
	background: var(--paper-2);
	border-bottom: 1px solid var(--hairline);
	display: flex;
	gap: 6px;
	padding: 10px 14px;
}

.nh-browser-bar i {
	background: var(--hairline);
	border-radius: 50%;
	display: inline-block;
	height: 9px;
	width: 9px;
}

.nh-browser-bar i:nth-child(1) { background: #ff5f57; }
.nh-browser-bar i:nth-child(2) { background: #febc2e; }
.nh-browser-bar i:nth-child(3) { background: #28c840; }

.nh-browser-bar span {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	margin-left: 14px;
}

.nh-mock {
	min-height: 220px;
	padding: 28px;
}

.nh-mock__hero {
	background:
		radial-gradient(60% 60% at 20% 30%, var(--tint-lime), transparent),
		linear-gradient(135deg, var(--tint-sky), var(--tint-peach));
	border-radius: 14px;
	height: 110px;
	margin-bottom: 14px;
}

.nh-mock__chip {
	background: var(--tint-lime);
	border-radius: 999px;
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	text-transform: uppercase;
}

.nh-mock h4 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0;
	margin: 12px 0 8px;
}

.nh-mock--main h4 {
	font-size: 28px;
}

.nh-mock h4 em {
	font-family: var(--font-serif);
	font-style: italic;
}

.nh-mock p {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 14px;
}

.nh-mock__btn {
	background: var(--ink);
	border-radius: 999px;
	color: var(--paper);
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	padding: 8px 14px;
}

.nh-mock__bars {
	display: grid;
	gap: 7px;
	margin-top: 18px;
}

.nh-mock__bars i {
	background: var(--paper-2);
	border-radius: 999px;
	height: 9px;
}

.nh-logos {
	background: var(--paper);
	border-bottom: 1px solid var(--hairline);
	border-top: 1px solid var(--hairline);
	padding: 32px 0;
}

.nh-logos__kicker {
	display: block;
	margin-bottom: 22px;
	text-align: center;
}

.nh-logos__viewport {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.nh-logos__viewport::before,
.nh-logos__viewport::after {
	content: "";
	height: 100%;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: min(12vw, 140px);
	z-index: 2;
}

.nh-logos__viewport::before {
	background: linear-gradient(90deg, var(--paper), transparent);
	left: 0;
}

.nh-logos__viewport::after {
	background: linear-gradient(270deg, var(--paper), transparent);
	right: 0;
}

.nh-logos__track,
.nh-logos__group {
	align-items: center;
	display: flex;
	gap: 12px;
	width: max-content;
}

.nh-logos__track {
	animation: nh-logo-marquee 28s linear infinite;
}

.nh-logos__item {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	box-shadow: var(--shadow-1);
	color: var(--muted);
	font-weight: 600;
	padding: 10px 18px;
	white-space: nowrap;
}

@keyframes nh-logo-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nh-logos__track {
		animation: none;
	}
}

.nh-pain {
	background:
		radial-gradient(55% 45% at 84% 20%, rgba(55, 108, 77, 0.35), transparent 65%),
		var(--ink);
	color: var(--paper);
	padding: clamp(88px, 12vw, 150px) 0;
}

.nh-pain .nh-eyebrow {
	color: var(--accent);
}

.nh-pain__title {
	font-size: clamp(2.25rem, 5vw, 4.25rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	margin: 18px 0 28px;
	max-width: 880px;
	text-wrap: balance;
}

.nh-pain__lede {
	color: #b8b8be;
	font-size: 19px;
	line-height: 1.55;
	margin: 0 0 64px;
	max-width: 720px;
}

.nh-pain__grid {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--r-2xl);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
}

.nh-pain__cell {
	background: rgba(15, 15, 16, 0.82);
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	padding: 36px 32px;
	position: relative;
}

.nh-pain__cell::after {
	background: var(--accent);
	border-radius: 999px;
	bottom: 28px;
	content: "";
	height: 6px;
	left: 32px;
	opacity: 0.65;
	position: absolute;
	width: 34px;
}

.nh-pain__cell .nh-mono-small {
	color: #79797f;
}

.nh-pain__cell h3 {
	color: var(--paper);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
}

.nh-pain__cell p {
	color: #9a9a9f;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.nh-services__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.nh-svc {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
		var(--paper);
	border: 1px solid var(--hairline);
	border-radius: var(--r-xl);
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	overflow: hidden;
	padding: 30px;
	position: relative;
	transition: transform 280ms var(--ease-out), box-shadow 280ms;
}

.nh-svc::before {
	background: linear-gradient(90deg, var(--accent), transparent);
	content: "";
	height: 3px;
	left: 0;
	opacity: 0.85;
	position: absolute;
	right: 0;
	top: 0;
}

.nh-svc:hover {
	box-shadow: var(--shadow-2);
	transform: translateY(-3px);
}

.nh-svc__tile {
	align-items: center;
	border-radius: 16px;
	display: grid;
	font-weight: 700;
	height: 56px;
	justify-content: center;
	width: 56px;
}

.nh-tile--lime { background: var(--tint-lime); }
.nh-tile--sky { background: var(--tint-sky); }
.nh-tile--peach { background: var(--tint-peach); }
.nh-tile--lilac { background: var(--tint-lilac); }
.nh-tile--mint { background: var(--tint-mint); }
.nh-tile--cream { background: var(--tint-cream); }

.nh-svc h3 {
	font-size: 20px;
	margin: 4px 0 0;
}

.nh-svc p {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

.nh-svc ul,
.nh-step ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.nh-svc li {
	align-items: flex-start;
	color: var(--ink-2);
	display: flex;
	font-size: 14px;
	gap: 10px;
}

.nh-check {
	color: var(--accent);
}

.nh-process {
	background: var(--paper-2);
}

.nh-process__steps {
	border-top: 1px solid var(--hairline);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
}

.nh-process__steps::before {
	background: var(--accent);
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1100ms var(--ease-out);
	width: 100%;
	z-index: 1;
}

.nh-process__steps.is-drawn::before {
	transform: scaleX(1);
}

.nh-step {
	border-right: 1px solid var(--hairline);
	padding: 36px 28px 36px 0;
}

.nh-step:last-child {
	border-right: 0;
}

.nh-step__head {
	align-items: baseline;
	display: flex;
	gap: 14px;
	margin-bottom: 36px;
}

.nh-step__num,
.nh-step__dur,
.nh-step li {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nh-step__dur {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: 999px;
	padding: 4px 10px;
}

.nh-step h3 {
	font-size: 22px;
	margin: 0 0 12px;
}

.nh-step p {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.55;
	margin: 0 0 16px;
}

.nh-step li::before {
	color: var(--ink);
	content: "→ ";
}

.nh-cases__head {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	margin-bottom: 56px;
}

.nh-cases__head .nh-section-head {
	margin-bottom: 0;
}

.nh-cases__grid,
.nh-testimonials__grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nh-slider-dots {
	display: none;
}

.nh-case-link {
	color: inherit;
	text-decoration: none;
}

.nh-case {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--r-2xl);
	box-shadow: var(--shadow-1);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform 280ms var(--ease-out);
}

.nh-case:hover {
	box-shadow: var(--shadow-3);
	transform: translateY(-4px);
}

.nh-case__media {
	aspect-ratio: 16 / 10.5;
	border: 0;
	border-bottom: 1px solid var(--hairline);
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}

.nh-cases__grid > .nh-case-link:nth-child(1),
.nh-cases__grid > .nh-case-link:nth-child(2) {
	grid-column: span 1;
}

.nh-case__media--lime { background: var(--tint-lime); }
.nh-case__media--sky { background: var(--tint-sky); }
.nh-case__media--peach { background: var(--tint-peach); }
.nh-case__media--lilac { background: var(--tint-lilac); }

.nh-case__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 420ms var(--ease-out);
	width: 100%;
}

.nh-case:hover .nh-case__media img {
	transform: scale(1.025);
}

.nh-case__placeholder,
.nh-about__placeholder {
	align-items: center;
	background:
		radial-gradient(55% 55% at 18% 20%, rgba(255, 255, 255, 0.7), transparent 60%),
		linear-gradient(135deg, rgba(55, 108, 77, 0.16), rgba(255, 255, 255, 0.36));
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.nh-about__placeholder {
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.nh-about__placeholder-icon {
	border: 1px solid rgba(55, 108, 77, 0.24);
	border-radius: 50%;
	height: 86px;
	position: relative;
	width: 132px;
}

.nh-about__placeholder-icon::before,
.nh-about__placeholder-icon::after {
	background: rgba(55, 108, 77, 0.16);
	border: 1px solid rgba(55, 108, 77, 0.22);
	border-radius: 50%;
	content: "";
	height: 58px;
	position: absolute;
	top: 13px;
	width: 58px;
}

.nh-about__placeholder-icon::before {
	left: 18px;
}

.nh-about__placeholder-icon::after {
	right: 18px;
}

.nh-about__placeholder b {
	font-size: 20px;
}

.nh-about__placeholder small {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nh-case__placeholder span {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.86);
	border-radius: 999px;
	box-shadow: var(--shadow-1);
	color: var(--ink);
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	max-width: calc(100% - 36px);
	overflow: hidden;
	padding: 10px 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nh-case__overlay {
	background: #fff;
	border-radius: 999px;
	bottom: 16px;
	box-shadow: var(--shadow-2);
	font-size: 13px;
	font-weight: 600;
	opacity: 0;
	padding: 10px 16px;
	position: absolute;
	right: 16px;
	transform: translateY(8px) scale(0.95);
	transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.nh-case:hover .nh-case__overlay {
	opacity: 1;
	transform: none;
}

.nh-case__meta {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 0;
}

.nh-case__meta h3 {
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1.05;
	margin: 0 0 4px;
}

.nh-case__meta p {
	color: var(--muted);
	font-size: 14px;
	margin: 0;
}

.nh-case__visit {
	align-items: center;
	background: var(--paper-2);
	border: 1px solid var(--hairline);
	border-radius: 50%;
	color: var(--accent);
	display: inline-flex;
	flex: 0 0 34px;
	font-size: 15px;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.nh-case__url {
	border-top: 1px solid var(--hairline);
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	margin-top: auto;
	overflow: hidden;
	padding: 16px 0 0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nh-case__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.nh-case__tag {
	align-self: flex-start;
	background: var(--paper-2);
	border: 1px solid var(--hairline);
	border-radius: 999px;
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 18px;
	padding: 7px 11px;
	text-transform: uppercase;
}

.nh-case__kpis {
	border-top: 1px solid var(--hairline);
	display: flex;
	gap: 18px;
	margin-top: 14px;
	padding-top: 14px;
}

.nh-case__kpi b {
	display: block;
	font-size: 18px;
}

.nh-case__kpi span {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nh-compare {
	background: var(--paper-2);
}

.nh-compare__table {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-1);
	overflow: hidden;
}

.nh-compare__row {
	border-top: 1px solid var(--hairline);
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
}

.nh-compare__row:first-child {
	border-top: 0;
}

.nh-compare__row > div {
	align-items: center;
	display: flex;
	font-size: 15px;
	gap: 12px;
	padding: 22px 28px;
}

.nh-compare__row > div:not(:first-child) {
	border-left: 1px solid var(--hairline);
}

.nh-compare__head {
	background: var(--paper-2);
}

.nh-compare__head > div {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nh-compare__head > div:nth-child(3) {
	background: var(--ink);
	color: var(--accent);
}

.nh-compare__row .us {
	background: linear-gradient(180deg, transparent, rgba(55, 108, 77, 0.06));
	font-weight: 600;
	position: relative;
}

.nh-compare__row .us::before {
	background: var(--accent);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 2px;
}

.nh-tcard {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82)),
		var(--paper);
	border: 1px solid var(--hairline);
	border-radius: var(--r-xl);
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 100%;
	padding: 36px;
	transition: box-shadow 280ms;
}

.nh-tcard:hover {
	box-shadow: var(--shadow-2);
}

.nh-tcard--feature {
	background:
		radial-gradient(60% 90% at 90% 0%, rgba(55, 108, 77, 0.42), transparent 55%),
		var(--ink);
	border-color: var(--ink);
	color: var(--paper);
	grid-column: 1 / -1;
	padding: 48px;
}

.nh-tcard__stars {
	color: var(--accent);
	letter-spacing: 2px;
}

.nh-tcard__quote-mark {
	color: var(--accent);
	display: block;
	font-family: var(--font-serif);
	font-size: 4em;
	line-height: 0.2;
	margin-bottom: -12px;
}

.nh-tcard blockquote {
	color: var(--ink);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

.nh-tcard--feature blockquote {
	color: var(--paper);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	line-height: 1.25;
}

.nh-tcard__author {
	align-items: center;
	border-top: 1px solid var(--hairline);
	display: flex;
	gap: 14px;
	margin-top: auto;
	padding-top: 18px;
}

.nh-tcard--feature .nh-tcard__author {
	border-top-color: #26262a;
}

.nh-tcard__avatar {
	align-items: center;
	background: var(--paper-2);
	border-radius: 50%;
	display: grid;
	font-weight: 700;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.nh-tcard--feature .nh-tcard__avatar {
	background: #26262a;
	color: var(--paper);
}

.nh-tcard__author span {
	color: var(--muted);
	display: block;
	font-size: 13px;
}

.nh-about__grid,
.nh-contact__grid,
.nh-faq__grid {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: 1fr 1.2fr;
}

.nh-about__media {
	position: relative;
}

.nh-about__halo {
	background: radial-gradient(circle, var(--accent), transparent 70%);
	border-radius: 50%;
	filter: blur(30px);
	height: 320px;
	opacity: 0.28;
	position: absolute;
	right: -10%;
	top: -20%;
	width: 320px;
	z-index: 0;
}

.nh-about__portrait {
	aspect-ratio: 4 / 5;
	background:
		radial-gradient(70% 60% at 70% 18%, rgba(55, 108, 77, 0.26), transparent 58%),
		var(--paper-2);
	border: 1px solid var(--hairline);
	border-radius: var(--r-2xl);
	box-shadow: var(--shadow-3);
	max-width: 460px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.nh-about__portrait img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.nh-about__card {
	background: #fff;
	border: 1px solid var(--hairline);
	border-radius: 16px;
	bottom: 24px;
	box-shadow: var(--shadow-2);
	font-size: 13px;
	font-weight: 600;
	left: -16px;
	padding: 14px 18px;
	position: absolute;
	z-index: 2;
}

.nh-about__copy h2 {
	font-size: clamp(2rem, 3.6vw, 3rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 14px 0 24px;
}

.nh-about__copy p {
	color: var(--ink-2);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 18px;
}

.nh-about__sig {
	font-family: var(--font-serif);
	font-size: 24px;
	font-style: italic;
}

.nh-about__stats {
	border-top: 1px solid var(--hairline);
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 32px;
	padding-top: 24px;
}

.nh-about__stats b {
	display: block;
	font-size: 26px;
}

.nh-about__stats span {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nh-faq__grid {
	align-items: start;
	grid-template-columns: 1fr 1.6fr;
}

.nh-faq__list {
	border-top: 1px solid var(--hairline);
}

.nh-faq__row {
	border-bottom: 1px solid var(--hairline);
}

.nh-faq__q {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	cursor: pointer;
	display: flex;
	font-size: 17px;
	font-weight: 600;
	gap: 20px;
	justify-content: space-between;
	padding: 24px 4px;
	text-align: left;
	width: 100%;
}

.nh-faq__icon {
	align-items: center;
	border: 1px solid var(--hairline);
	border-radius: 50%;
	display: grid;
	height: 32px;
	justify-content: center;
	transition: background 200ms, color 200ms, border-color 200ms;
	width: 32px;
}

.nh-faq__row.is-open .nh-faq__icon {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--paper);
}

.nh-faq__a {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.65;
	max-height: 0;
	overflow: hidden;
	padding: 0 4px;
	transition: max-height 360ms var(--ease-out), padding 360ms var(--ease-out);
}

.nh-faq__row.is-open .nh-faq__a {
	max-height: 320px;
	padding: 0 4px 24px;
}

.nh-contact {
	background: var(--paper);
	padding: clamp(72px, 10vw, 128px) 0;
}

.nh-contact__inner {
	background: var(--ink);
	border-radius: var(--r-xl);
	color: var(--paper);
	overflow: hidden;
	padding: clamp(48px, 7vw, 96px);
	position: relative;
}

.nh-contact__inner::before {
	background: radial-gradient(circle, rgba(55, 108, 77, 0.55), transparent 70%);
	border-radius: 50%;
	content: "";
	filter: blur(60px);
	height: 600px;
	position: absolute;
	right: -20%;
	top: -50%;
	width: 600px;
}

.nh-contact__inner > * {
	position: relative;
	z-index: 1;
}

.nh-contact .nh-eyebrow {
	color: var(--accent);
}

.nh-contact h2 {
	color: var(--paper);
	font-size: clamp(2rem, 4.5vw, 3.75rem);
	font-weight: 500;
	line-height: 1;
	margin: 16px 0 22px;
}

.nh-contact__lede {
	color: #b8b8be;
	font-size: 18px;
	line-height: 1.55;
	margin: 0 0 36px;
	max-width: 460px;
}

.nh-contact__ctas {
	justify-content: flex-start;
	margin-bottom: 30px;
	margin-top: 36px;
}

.nh-contact__ctas .nh-btn--ghost {
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--paper);
}

.nh-contact__channels {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nh-contact__channel {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	color: var(--paper);
	display: flex;
	gap: 16px;
	padding: 18px 22px;
	text-decoration: none;
	transition: background 200ms, border-color 200ms, transform 200ms;
}

.nh-contact__channel:hover {
	background: rgba(55, 108, 77, 0.18);
	border-color: rgba(55, 108, 77, 0.45);
	transform: translateX(4px);
}

.nh-contact__channel-icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	color: var(--accent);
	display: grid;
	flex: 0 0 48px;
	height: 48px;
	justify-content: center;
	position: relative;
	width: 48px;
}

.nh-contact__channel-icon::before,
.nh-whatsapp-bubble span::before {
	background: currentColor;
	content: "";
	display: block;
	height: 22px;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 22px;
}

.nh-contact__channel--phone .nh-contact__channel-icon::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.nh-contact__channel--email .nh-contact__channel-icon::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.nh-contact__channel--whatsapp .nh-contact__channel-icon,
.nh-whatsapp-bubble {
	color: #25d366;
}

.nh-contact__channel--whatsapp .nh-contact__channel-icon::before,
.nh-whatsapp-bubble span::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M16.04 3C8.86 3 3.03 8.82 3.03 15.99c0 2.29.6 4.54 1.75 6.52L3 29l6.67-1.75a12.96 12.96 0 0 0 6.36 1.62h.01c7.17 0 12.99-5.82 13-12.99C29.04 8.82 23.21 3 16.04 3Zm0 23.69h-.01c-1.9 0-3.76-.51-5.39-1.47l-.39-.23-3.95 1.04 1.06-3.85-.25-.4a10.76 10.76 0 0 1-1.65-5.79c0-5.89 4.8-10.68 10.7-10.68 2.85 0 5.53 1.11 7.55 3.13a10.59 10.59 0 0 1 3.13 7.55c-.01 5.9-4.8 10.7-10.8 10.7Zm5.86-8.01c-.32-.16-1.9-.94-2.2-1.05-.29-.11-.51-.16-.72.16-.21.32-.82 1.05-1 1.26-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.9-1.78-2.22-.19-.32-.02-.49.14-.65.14-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.73-.98-2.37-.26-.62-.52-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.1-1.12 2.68 0 1.58 1.15 3.11 1.31 3.32.16.21 2.27 3.46 5.49 4.85.77.33 1.37.53 1.84.68.77.24 1.47.21 2.03.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E");
}

.nh-contact__channel b {
	display: block;
	margin-bottom: 2px;
}

.nh-contact__channel span span,
.nh-contact__channel div span {
	color: #9a9a9f;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.04em;
}

.nh-contact__channel-arrow {
	margin-left: auto;
}

.nh-whatsapp-bubble {
	align-items: center;
	background: var(--paper);
	border: 1px solid rgba(37, 211, 102, 0.35);
	border-radius: 50%;
	bottom: 28px;
	box-shadow: var(--shadow-3);
	display: flex;
	height: 56px;
	justify-content: center;
	left: 28px;
	position: fixed;
	text-decoration: none;
	transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
	width: 56px;
	z-index: 45;
}

.nh-whatsapp-bubble:hover {
	box-shadow: 0 20px 44px -18px rgba(37, 211, 102, 0.6), var(--shadow-2);
	transform: translateY(-2px);
}

.nh-whatsapp-bubble span::before {
	height: 30px;
	width: 30px;
}

.nh-contact__form-card {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.45);
	color: var(--ink);
	padding: clamp(24px, 4vw, 38px);
}

.nh-contact__form-head {
	margin-bottom: 24px;
}

.nh-contact__form-head .nh-mono-small {
	color: var(--accent);
}

.nh-contact__form-head h3 {
	color: var(--ink);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	font-weight: 600;
	line-height: 1.08;
	margin: 10px 0 10px;
}

.nh-contact__form-head p {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.55;
	margin: 0;
}

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

.nh-cf7-grid > p {
	display: contents;
}

.nh-cf7-grid br {
	display: none;
}

.nh-cf7-grid label {
	color: var(--ink);
	display: flex;
	flex-direction: column;
	font-size: 13px;
	font-weight: 650;
	gap: 8px;
	line-height: 1.2;
}

.nh-cf7-full {
	grid-column: 1 / -1;
}

.nh-cf7-optional {
	color: var(--muted-2);
	font-weight: 500;
}

.nh-cf7-wrap .wpcf7-form-control-wrap {
	display: block;
}

.nh-cf7-wrap input[type="text"],
.nh-cf7-wrap input[type="tel"],
.nh-cf7-wrap input[type="email"],
.nh-cf7-wrap input[type="url"],
.nh-cf7-wrap select,
.nh-cf7-wrap textarea {
	appearance: none;
	background: var(--paper);
	border: 1px solid var(--hairline);
	border-radius: 14px;
	color: var(--ink);
	font: inherit;
	font-weight: 500;
	min-height: 50px;
	outline: 0;
	padding: 13px 14px;
	transition: border-color 180ms, box-shadow 180ms, background 180ms;
	width: 100%;
}

.nh-cf7-wrap textarea {
	min-height: 132px;
	resize: vertical;
}

.nh-cf7-wrap input:focus,
.nh-cf7-wrap select:focus,
.nh-cf7-wrap textarea:focus {
	background: #fff;
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(55, 108, 77, 0.12);
}

.nh-cf7-wrap .wpcf7-list-item {
	margin: 0 16px 8px 0;
}

.nh-cf7-wrap .wpcf7-list-item label {
	align-items: center;
	display: inline-flex;
	flex-direction: row;
	font-size: 13px;
	font-weight: 500;
	gap: 8px;
}

.nh-cf7-wrap input[type="checkbox"] {
	accent-color: var(--accent);
	height: 16px;
	width: 16px;
}

.nh-cf7-wrap input[type="submit"] {
	background: var(--accent);
	border: 0;
	border-radius: 999px;
	box-shadow: var(--shadow-accent);
	color: var(--accent-ink);
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	min-height: 54px;
	padding: 16px 24px;
	transition: background 200ms, transform 160ms var(--ease-out);
	width: 100%;
}

.nh-cf7-wrap input[type="submit"]:hover {
	background: var(--accent-2);
	transform: translateY(-1px);
}

.nh-cf7-wrap .wpcf7-not-valid-tip {
	color: #b42318;
	font-size: 12px;
	font-weight: 500;
	margin-top: 6px;
}

.nh-cf7-wrap .wpcf7-response-output {
	border: 1px solid var(--hairline);
	border-radius: 14px;
	color: var(--ink);
	font-size: 13px;
	margin: 18px 0 0;
	padding: 12px 14px;
}

.nh-contact__missing {
	background: var(--paper-2);
	border: 1px dashed var(--hairline);
	border-radius: 14px;
	color: var(--muted);
	font-size: 14px;
	padding: 18px;
}

.nh-footer {
	background: var(--paper);
	border-top: 1px solid var(--hairline);
	font-family: var(--font-sans);
	padding: 64px 0 32px;
}

.nh-footer__top {
	display: grid;
	gap: 40px;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	margin-bottom: 56px;
}

.nh-footer__brand {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 14px;
}

.nh-footer__tag {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
	max-width: 280px;
}

.nh-footer .nh-mono-small {
	display: block;
	margin-bottom: 6px;
}

.nh-footer__col h4 {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.nh-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nh-footer__col a {
	color: var(--ink);
	font-size: 14.5px;
	text-decoration: none;
}

.nh-footer__bottom {
	align-items: center;
	border-top: 1px solid var(--hairline);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	padding-top: 28px;
}

.nh-footer__legal {
	display: flex;
	gap: 20px;
}

.nh-footer__legal a {
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nh-back-top {
	background: var(--ink);
	border: 0;
	border-radius: 50%;
	bottom: 28px;
	box-shadow: var(--shadow-3);
	color: var(--paper);
	cursor: pointer;
	font-size: 20px;
	height: 48px;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 28px;
	transform: translateY(10px);
	transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
	width: 48px;
	z-index: 40;
}

.nh-back-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

@media (max-width: 900px) {
	.nh-nav-wrap {
		padding-inline: 16px;
		top: 10px;
	}

	.nh-nav {
		border-radius: 28px;
		flex-wrap: wrap;
		gap: 10px;
		padding: 10px 12px;
	}

	.nh-nav__brand {
		min-width: auto;
	}

	.nh-nav__logo {
		height: 28px;
		max-width: 180px;
		width: 180px;
	}

	.nh-nav__links {
		display: none;
		flex-basis: 100%;
		gap: 4px;
		order: 4;
		padding: 8px 4px 4px;
	}

	.nh-nav.is-open .nh-nav__links {
		display: flex;
		flex-direction: column;
	}

	.nh-nav__links a {
		border-radius: 12px;
		display: block;
		padding: 10px 12px;
	}

	.nh-nav__links a:hover {
		background: rgba(55, 108, 77, 0.08);
	}

	.nh-nav__right {
		margin-left: auto;
	}

	.nh-nav__burger {
		display: inline-flex;
		margin-left: auto;
	}

	.nh-hero__showcase {
		display: none;
	}

	.nh-services__grid,
	.nh-process__steps,
	.nh-about__grid,
	.nh-contact__grid,
	.nh-faq__grid,
	.nh-footer__top {
		grid-template-columns: 1fr;
	}

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

	.nh-hero__frame--main {
		transform: none;
	}

	.nh-step {
		border-bottom: 1px solid var(--hairline);
		border-right: 0;
		padding-right: 0;
	}

	.nh-cases__grid,
	.nh-testimonials__grid {
		display: flex;
		gap: 18px;
		margin-inline: calc(var(--gutter) * -1);
		overflow-x: auto;
		padding: 0 var(--gutter) 8px;
		scroll-padding-left: var(--gutter);
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.nh-cases__grid::-webkit-scrollbar,
	.nh-testimonials__grid::-webkit-scrollbar {
		display: none;
	}

	.nh-cases__grid > *,
	.nh-testimonials__grid > * {
		flex: 0 0 min(82vw, 420px);
		scroll-snap-align: start;
	}

	.nh-slider-dots {
		align-items: center;
		display: flex;
		gap: 8px;
		justify-content: center;
		margin-top: 20px;
	}

	.nh-slider-dot {
		background: var(--hairline);
		border: 0;
		border-radius: 999px;
		cursor: pointer;
		height: 8px;
		padding: 0;
		transition: background 180ms, width 180ms;
		width: 8px;
	}

	.nh-slider-dot.is-active {
		background: var(--accent);
		width: 24px;
	}

	.nh-compare__row {
		grid-template-columns: 1fr;
	}

	.nh-compare__row > div:not(:first-child) {
		border-left: 0;
		border-top: 1px solid var(--hairline);
	}
}

@media (max-width: 560px) {
	.nh-container {
		padding-inline: 18px;
	}

	.nh-nav__right {
		display: none;
	}

	.nh-nav__burger {
		align-items: center;
		height: 40px;
		justify-content: center;
		width: 40px;
	}

	.nh-nav__logo {
		height: 25px;
		max-width: min(178px, 58vw);
		width: min(178px, 58vw);
	}

	.nh-pain__grid,
	.nh-services__grid {
		grid-template-columns: 1fr;
	}

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

	.nh-pain__cell {
		padding: 22px 16px;
	}

	.nh-pain__cell h3 {
		font-size: 16px;
	}

	.nh-pain__cell p {
		font-size: 13px;
	}

	.nh-hero__headline {
		font-size: 3rem;
	}

	.nh-hero__ctas,
	.nh-contact__ctas {
		align-items: stretch;
		flex-direction: column;
	}

	.nh-btn {
		justify-content: center;
		width: 100%;
	}

	.nh-contact {
		padding: 56px 0;
	}

	.nh-contact__inner {
		border-radius: 22px;
		padding: 28px 18px;
	}

	.nh-contact h2 {
		font-size: 2.15rem;
	}

	.nh-contact__channel {
		padding: 14px;
	}

	.nh-contact__channel-icon {
		height: 42px;
		flex-basis: 42px;
		width: 42px;
	}

	.nh-whatsapp-bubble {
		bottom: 18px;
		height: 50px;
		left: 18px;
		width: 50px;
	}

	.nh-whatsapp-bubble span::before {
		height: 27px;
		width: 27px;
	}

	.nh-cf7-grid {
		grid-template-columns: 1fr;
	}

	.nh-about__stats {
		grid-template-columns: 1fr;
	}
}
