:root {
	--color-navy: #191e28;
	--color-deep-navy: #101620;
	--color-red: #d8201d;
	--color-white: #f8f9fb;
	--color-muted: #b8c0cc;
	--color-line: rgba(248, 249, 251, 0.13);
	--color-ink: #151922;
	--color-soft: #eef1f5;
	--shadow-red: 0 22px 60px rgba(216, 32, 29, 0.26);
	--shadow-dark: 0 28px 80px rgba(4, 8, 14, 0.32);
	--font-headline: "Industry Inc", "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
	--font-body: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1180px;
	--container-wide: 1320px;
	--radius-sm: 8px;
	--radius-md: 8px;
	--header-height: 76px;
}

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

html {
	scroll-behavior: smooth;
	background: var(--color-deep-navy);
}

body.transformohu-shpi-page {
	margin: 0;
	color: var(--color-white);
	background: var(--color-deep-navy);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.transformohu-shpi-page.admin-bar .site-header {
	top: 46px;
}

img,
video {
	display: block;
	max-width: 100%;
}

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

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

:where(a, button, summary):focus-visible {
	outline: 3px solid var(--color-white);
	outline-offset: 4px;
	box-shadow: 0 0 0 7px rgba(216, 32, 29, 0.42);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	color: var(--color-deep-navy);
	background: var(--color-white);
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(248, 249, 251, 0.08);
	background: rgba(16, 22, 32, 0.88);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	width: min(100% - 32px, var(--container-wide));
	min-height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-weight: 900;
	text-transform: uppercase;
}

.brand__symbol {
	width: 36px;
	height: 36px;
	object-fit: contain;
	flex: 0 0 auto;
}

.brand__logo {
	width: 168px;
	height: auto;
	object-fit: contain;
}

.brand__symbol-fallback {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	color: var(--color-white);
	background: var(--color-red);
	font-family: var(--font-headline);
	font-size: 22px;
	line-height: 1;
}

.brand__wordmark {
	font-family: var(--font-headline);
	font-size: 1.28rem;
	line-height: 1;
	letter-spacing: 0;
}

.site-nav {
	display: none;
	align-items: center;
	gap: 24px;
	color: rgba(248, 249, 251, 0.74);
	font-size: 0.9rem;
	font-weight: 700;
}

.site-nav a {
	transition: color 160ms ease;
}

.site-nav a:hover {
	color: var(--color-white);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(248, 249, 251, 0.22);
	border-radius: var(--radius-sm);
	color: var(--color-white);
	font-size: 0.86rem;
	font-weight: 900;
	text-transform: uppercase;
	background: rgba(248, 249, 251, 0.07);
}

.hero {
	position: relative;
	overflow: clip;
	background:
		linear-gradient(150deg, rgba(216, 32, 29, 0.22) 0%, rgba(216, 32, 29, 0) 34%),
		radial-gradient(circle at 78% 25%, rgba(216, 32, 29, 0.24), transparent 34%),
		linear-gradient(180deg, var(--color-navy) 0%, var(--color-deep-navy) 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(248, 249, 251, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(248, 249, 251, 0.045) 1px, transparent 1px);
	background-size: 46px 46px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 78%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 32px, var(--container-wide));
	min-height: calc(100svh - var(--header-height));
	margin: 0 auto;
	padding: 34px 0 58px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	align-items: center;
}

.hero__copy {
	max-width: 670px;
}

.eyebrow {
	margin: 0 0 14px;
	color: rgba(248, 249, 251, 0.78);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow--red {
	color: var(--color-red);
}

.hero__title,
.section h2,
.guarantee h2,
.final-cta h2 {
	margin: 0;
	font-family: var(--font-headline);
	font-weight: 900;
	letter-spacing: 0;
}

.section h2,
.guarantee h2,
.final-cta h2 {
	text-transform: uppercase;
}

.hero__title {
	max-width: 12ch;
	color: var(--color-white);
	font-size: 3.18rem;
	line-height: 0.93;
	text-transform: none;
}

.hero__lead {
	max-width: 650px;
	margin: 22px 0 0;
	color: rgba(248, 249, 251, 0.84);
	font-size: 1rem;
	line-height: 1.72;
}

.hero__actions,
.final-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 28px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--primary {
	color: var(--color-white);
	background: var(--color-red);
	box-shadow: 0 14px 32px rgba(216, 32, 29, 0.26);
}

.button--primary:hover {
	background: #f02a26;
}

.button--secondary {
	border-color: rgba(248, 249, 251, 0.26);
	color: var(--color-white);
	background: rgba(248, 249, 251, 0.08);
}

.button--secondary:hover {
	border-color: rgba(248, 249, 251, 0.46);
	background: rgba(248, 249, 251, 0.13);
}

.button--ghost {
	border-color: rgba(25, 30, 40, 0.16);
	color: var(--color-ink);
	background: rgba(25, 30, 40, 0.04);
}

.button--ghost:hover {
	border-color: rgba(216, 32, 29, 0.4);
	color: var(--color-red);
}

.hero__chips {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--color-white);
	font-size: 0.82rem;
	font-weight: 900;
}

.hero__chips li {
	padding: 8px 11px;
	border: 1px solid rgba(248, 249, 251, 0.15);
	border-radius: 999px;
	background: rgba(248, 249, 251, 0.07);
}

.hero-media {
	width: 100%;
}

.hero-media__frame {
	position: relative;
	overflow: hidden;
	min-height: 390px;
	border: 1px solid rgba(248, 249, 251, 0.16);
	border-radius: var(--radius-md);
	background:
		linear-gradient(160deg, rgba(248, 249, 251, 0.08), rgba(248, 249, 251, 0.02)),
		linear-gradient(135deg, rgba(216, 32, 29, 0.4), rgba(16, 22, 32, 0.2) 42%, rgba(16, 22, 32, 0.95)),
		var(--color-navy);
	box-shadow: var(--shadow-dark);
	isolation: isolate;
}

.hero-media__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(16, 22, 32, 0.05) 0%, rgba(16, 22, 32, 0.18) 52%, rgba(16, 22, 32, 0.72) 100%);
	pointer-events: none;
}

.hero-media__video,
.hero-media__poster,
.hero-media__poster--static {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-media__fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background:
		linear-gradient(transparent 0 47%, rgba(248, 249, 251, 0.09) 48% 52%, transparent 53%),
		linear-gradient(90deg, transparent 0 47%, rgba(248, 249, 251, 0.09) 48% 52%, transparent 53%),
		radial-gradient(circle at 50% 42%, rgba(216, 32, 29, 0.38), transparent 31%);
	background-size: 100% 100%, 100% 100%, 100% 100%;
}

.hero-media__fallback-mark {
	display: inline-grid;
	place-items: center;
	width: 118px;
	height: 118px;
	border: 2px solid rgba(248, 249, 251, 0.62);
	border-radius: 50%;
	color: var(--color-white);
	background: rgba(216, 32, 29, 0.92);
	font-family: var(--font-headline);
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
}

.hero-media__frame.has-video-error .hero-media__video {
	display: none;
}

.hero-media__overlay {
	position: absolute;
	inset: auto 14px 14px 14px;
	z-index: 3;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.hero-media__overlay li {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	border: 1px solid rgba(248, 249, 251, 0.18);
	border-radius: var(--radius-sm);
	color: var(--color-white);
	background: rgba(16, 22, 32, 0.68);
	backdrop-filter: blur(14px);
	font-size: 0.78rem;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
}

.hero-media__overlay li:first-child {
	grid-column: 1 / -1;
	background: rgba(216, 32, 29, 0.86);
}

.metrics {
	position: relative;
	z-index: 2;
	background: var(--color-red);
}

.metrics__inner {
	width: min(100% - 32px, var(--container-wide));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: rgba(248, 249, 251, 0.16);
}

.metrics__inner div {
	min-height: 110px;
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--color-red);
}

.metrics strong {
	display: block;
	font-family: var(--font-headline);
	font-size: 2.1rem;
	line-height: 0.95;
	letter-spacing: 0;
}

.metrics span {
	display: block;
	max-width: 15ch;
	margin-top: 6px;
	color: rgba(248, 249, 251, 0.82);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.35;
}

.section {
	padding: 76px 0;
}

.section--light {
	color: var(--color-ink);
	background: var(--color-white);
}

.section--dark {
	color: var(--color-white);
	background:
		linear-gradient(180deg, var(--color-deep-navy), var(--color-navy));
}

.section--pricing {
	color: var(--color-ink);
	background: #f0f2f6;
}

.section__inner,
.guarantee__inner,
.final-cta__inner,
.site-footer__inner {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.section__inner--narrow {
	max-width: 850px;
}

.section__intro {
	max-width: 720px;
	margin-bottom: 34px;
}

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

.section h2,
.guarantee h2,
.final-cta h2 {
	font-size: 2.55rem;
	line-height: 0.98;
}

.section__intro p:not(.eyebrow),
.guarantee p,
.final-cta p {
	margin: 16px 0 0;
	color: rgba(21, 25, 34, 0.72);
	font-size: 1rem;
	line-height: 1.7;
}

.section--dark .section__intro p:not(.eyebrow),
.final-cta p,
.guarantee p {
	color: rgba(248, 249, 251, 0.76);
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.feature-card {
	padding: 24px;
	border: 1px solid rgba(25, 30, 40, 0.12);
	border-radius: var(--radius-md);
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(16, 22, 32, 0.06);
}

.feature-card__number {
	display: inline-flex;
	margin-bottom: 20px;
	color: var(--color-red);
	font-family: var(--font-headline);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1;
}

.feature-card h3,
.steps h3,
.plan-card h3 {
	margin: 0;
	font-family: var(--font-headline);
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.feature-card p,
.steps p {
	margin: 12px 0 0;
	color: rgba(21, 25, 34, 0.72);
}

.section--dark .steps p {
	color: rgba(248, 249, 251, 0.7);
}

.section__inner--split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
}

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	counter-reset: step;
}

.steps li {
	padding: 24px;
	border: 1px solid rgba(248, 249, 251, 0.12);
	border-radius: var(--radius-md);
	background: rgba(248, 249, 251, 0.055);
}

.steps span {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--color-red);
	font-family: var(--font-headline);
	font-size: 1.2rem;
	font-weight: 900;
}

.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: stretch;
}

.pricing-grid__other-title {
	order: 3;
	margin: 12px 0 0;
	color: rgba(21, 25, 34, 0.58);
	font-size: 0.8rem;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid rgba(25, 30, 40, 0.12);
	border-radius: var(--radius-md);
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(16, 22, 32, 0.08);
}

.plan-card--1 {
	order: 4;
}

.plan-card--3 {
	order: 1;
}

.plan-card--6 {
	order: 2;
}

.plan-card--12 {
	order: 5;
}

.plan-card--featured {
	border-color: rgba(216, 32, 29, 0.46);
	background:
		linear-gradient(180deg, rgba(216, 32, 29, 0.08), transparent 36%),
		#ffffff;
	box-shadow: var(--shadow-red);
}

.plan-card--quiet {
	padding: 20px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: none;
}

.plan-card__badge {
	align-self: flex-start;
	margin: 0 0 18px;
	padding: 7px 9px;
	border-radius: 999px;
	color: var(--color-white);
	background: var(--color-red);
	font-size: 0.7rem;
	font-weight: 950;
	line-height: 1;
}

.plan-card__price {
	margin: 18px 0 0;
	color: var(--color-ink);
	font-family: var(--font-headline);
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 0.88;
	letter-spacing: 0;
}

.plan-card__per {
	margin: 8px 0 0;
	color: var(--color-red);
	font-size: 0.95rem;
	font-weight: 950;
}

.plan-card ul {
	list-style: none;
	margin: 22px 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
	color: rgba(21, 25, 34, 0.72);
	font-size: 0.95rem;
}

.plan-card li {
	position: relative;
	padding-left: 22px;
}

.plan-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.68em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-red);
}

.plan-card .button {
	margin-top: auto;
	width: 100%;
}

.guarantee {
	padding: 72px 0;
	color: var(--color-white);
	background:
		linear-gradient(120deg, rgba(216, 32, 29, 0.88), rgba(216, 32, 29, 0.58)),
		var(--color-red);
}

.guarantee__inner {
	display: grid;
	gap: 18px;
}

.guarantee .button {
	justify-self: start;
	margin-top: 8px;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-list details {
	border: 1px solid rgba(25, 30, 40, 0.12);
	border-radius: var(--radius-md);
	background: #ffffff;
}

.faq-list summary {
	cursor: pointer;
	position: relative;
	padding: 18px 48px 18px 18px;
	font-weight: 950;
	line-height: 1.3;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: var(--color-white);
	background: var(--color-red);
	font-weight: 900;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: "-";
}

.faq-list p {
	margin: 0;
	padding: 0 18px 18px;
	color: rgba(21, 25, 34, 0.72);
}

.final-cta {
	overflow: hidden;
	padding: 86px 0;
	color: var(--color-white);
	background:
		linear-gradient(140deg, rgba(16, 22, 32, 0.24), rgba(16, 22, 32, 0.88)),
		radial-gradient(circle at 76% 20%, rgba(216, 32, 29, 0.42), transparent 28%),
		var(--color-navy);
}

.final-cta__inner {
	max-width: 820px;
	text-align: center;
}

.final-cta__actions {
	align-items: stretch;
}

.site-footer {
	padding: 28px 0 96px;
	color: rgba(248, 249, 251, 0.66);
	background: #080d14;
}

.site-footer__inner {
	display: grid;
	gap: 12px;
}

.site-footer p {
	margin: 0;
}

.site-footer a:not(.brand) {
	color: var(--color-white);
	font-weight: 900;
}

.brand--footer .brand__symbol,
.brand--footer .brand__symbol-fallback {
	width: 30px;
	height: 30px;
}

.mobile-sticky-cta {
	position: fixed;
	right: 12px;
	bottom: 12px;
	left: 12px;
	z-index: 70;
	transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta[hidden] {
	display: block;
	opacity: 0;
	pointer-events: none;
	transform: translateY(110%);
}

.mobile-sticky-cta .button {
	width: 100%;
	justify-content: space-between;
	min-height: 58px;
	padding-inline: 18px;
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.mobile-sticky-cta strong {
	font-family: var(--font-headline);
	font-size: 1.7rem;
	line-height: 1;
}

@media (min-width: 520px) {
	.hero__title {
		font-size: 4.25rem;
	}

	.hero__actions,
	.final-cta__actions {
		flex-direction: row;
		align-items: center;
	}

	.hero__actions .button,
	.final-cta__actions .button {
		width: auto;
	}

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

@media (min-width: 700px) {
	.metrics__inner {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.site-footer {
		padding-bottom: 32px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr auto auto;
		align-items: center;
	}
}

@media (min-width: 782px) {
	body.transformohu-shpi-page.admin-bar .site-header {
		top: 32px;
	}
}

@media (min-width: 900px) {
	.site-nav {
		display: flex;
	}

	.header-cta {
		min-height: 46px;
		padding-inline: 20px;
	}

	.hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
		gap: 48px;
		padding: 64px 0;
	}

	.hero__title {
		font-size: 6rem;
	}

	.hero__lead {
		font-size: 1.08rem;
	}

	.hero-media__frame {
		min-height: 540px;
	}

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

	.hero-media__overlay li:first-child {
		grid-column: span 2;
	}

	.section {
		padding: 104px 0;
	}

	.section h2,
	.guarantee h2,
	.final-cta h2 {
		font-size: 4.1rem;
	}

	.section__inner--split {
		grid-template-columns: 0.82fr 1fr;
		gap: 70px;
		align-items: start;
	}

	.section__intro--sticky {
		position: sticky;
		top: calc(var(--header-height) + 36px);
	}

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

	.pricing-grid__other-title {
		display: none;
	}

	.plan-card--1 {
		order: 1;
	}

	.plan-card--3 {
		order: 2;
		transform: translateY(-12px);
	}

	.plan-card--6 {
		order: 3;
		transform: translateY(-12px);
	}

	.plan-card--12 {
		order: 4;
	}

	.plan-card--featured {
		padding: 30px;
	}

	.plan-card--quiet {
		margin-top: 18px;
	}

	.guarantee {
		padding: 92px 0;
	}

	.guarantee__inner {
		grid-template-columns: 0.72fr 1fr auto;
		align-items: center;
		gap: 28px;
	}

	.guarantee p {
		margin-top: 0;
	}

	.guarantee .button {
		margin-top: 0;
	}

	.final-cta {
		padding: 112px 0;
	}

	.final-cta__actions {
		justify-content: center;
	}

	.mobile-sticky-cta {
		display: none;
	}
}

@media (min-width: 1180px) {
	.hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.85fr);
	}

	.hero__title {
		font-size: 7.35rem;
	}

	.hero-media__frame {
		min-height: 600px;
	}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.button:hover {
		transform: none;
	}
}
