/* =========================================================================
   Utility Helps LLC — main stylesheet
   Faithful conversion of the original React/Tailwind dark theme to plain CSS.
   ========================================================================= */

:root {
	--uh-bg: #07090f;
	--uh-fg: #d8e4f0;
	--uh-card: #0d1120;
	--uh-secondary: #111827;
	--uh-muted: #6b82a0;
	--uh-quote: #a8bcce;
	--uh-cyan: #00c8f0;
	--uh-border: rgba(0, 200, 240, 0.1);

	--uh-font-display: "Rajdhani", sans-serif;
	--uh-font-body: "DM Sans", sans-serif;
	--uh-font-mono: "DM Mono", monospace;

	--uh-maxw: 80rem; /* 1280px */
	--uh-gutter: 1.5rem;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--uh-bg);
	color: var(--uh-fg);
	font-family: var(--uh-font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

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

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

.uh-icon { display: inline-block; vertical-align: middle; }

.uh-container {
	max-width: var(--uh-maxw);
	margin: 0 auto;
	padding-left: var(--uh-gutter);
	padding-right: var(--uh-gutter);
	width: 100%;
}

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

/* ---------- Shared bits ---------- */
.uh-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.uh-eyebrow__line {
	height: 1px;
	width: 2rem;
	background: var(--uh-cyan);
	flex-shrink: 0;
}
.uh-eyebrow__text {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	text-transform: uppercase;
}

.uh-h2 {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 2.25rem;
	margin: 0;
}
@media (min-width: 1024px) {
	.uh-h2 { font-size: 3rem; }
}

/* ---------- Buttons ---------- */
.uh-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--uh-font-display);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	cursor: pointer;
	border: none;
}
.uh-btn--primary {
	background: var(--uh-cyan);
	color: #07090f;
	padding: 0.875rem 1.75rem;
}
.uh-btn--primary:hover { opacity: 0.9; }
.uh-btn--outline {
	border: 1px solid rgba(0, 200, 240, 0.3);
	color: var(--uh-fg);
	padding: 0.875rem 1.75rem;
	background: transparent;
}
.uh-btn--outline:hover { border-color: var(--uh-cyan); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.uh-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: rgba(7, 9, 15, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 200, 240, 0.12);
}
.uh-nav__inner {
	max-width: var(--uh-maxw);
	margin: 0 auto;
	padding: 0 var(--uh-gutter);
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.uh-logo { display: flex; align-items: center; gap: 0.5rem; }
.uh-logo__mark {
	width: 1.75rem;
	height: 1.75rem;
	background: var(--uh-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #07090f;
}
.uh-logo__text {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.04em;
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
}
@media (max-width: 640px) {
	.uh-logo__text { display: none; }
}

.uh-nav__links { display: none; align-items: center; gap: 2rem; }
.uh-nav__link {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	letter-spacing: 0.03em;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}
.uh-nav__link:hover { color: var(--uh-fg); }

.uh-nav__right { display: none; align-items: center; gap: 1rem; }
.uh-nav__phone {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: opacity 0.2s ease;
}
.uh-nav__phone:hover { opacity: 0.8; }
.uh-nav__cta {
	background: var(--uh-cyan);
	color: #07090f;
	font-family: var(--uh-font-display);
	letter-spacing: 0.08em;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}
.uh-nav__cta:hover { opacity: 0.9; }

.uh-nav__toggle {
	display: inline-flex;
	background: none;
	border: none;
	color: var(--uh-muted);
	cursor: pointer;
	transition: color 0.2s ease;
}
.uh-nav__toggle:hover { color: var(--uh-fg); }

@media (min-width: 768px) {
	.uh-nav__links, .uh-nav__right { display: flex; }
	.uh-nav__toggle { display: none; }
}

.uh-nav__mobile {
	display: none;
	flex-direction: column;
	gap: 1rem;
	background: var(--uh-card);
	padding: 1rem var(--uh-gutter);
	border-top: 1px solid rgba(0, 200, 240, 0.1);
}
.uh-nav__mobile.is-open { display: flex; }
.uh-nav__mobile a { font-family: var(--uh-font-body); color: var(--uh-muted); font-size: 0.875rem; }
.uh-nav__mobile a.uh-nav__phone { color: var(--uh-cyan); font-family: var(--uh-font-mono); }
.uh-nav__mobile .uh-nav__cta { text-align: center; }
@media (min-width: 768px) {
	.uh-nav__mobile { display: none !important; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.uh-hero {
	position: relative;
	min-height: 100vh;
	padding-top: 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 200, 240, 0.08) 0%, transparent 70%);
}
.uh-hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 200, 240, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 200, 240, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
}
.uh-hero__inner {
	position: relative;
	z-index: 10;
	max-width: var(--uh-maxw);
	margin: 0 auto;
	padding: 6rem var(--uh-gutter);
	width: 100%;
}
.uh-hero__content { max-width: 56rem; }

.uh-hero__headline {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.05;
	letter-spacing: -0.01em;
	font-weight: 700;
	font-size: 3rem;
	margin: 0 0 1.5rem;
}
.uh-hero__headline .hl { color: var(--uh-cyan); }
@media (min-width: 640px) { .uh-hero__headline { font-size: 3.75rem; } }
@media (min-width: 1024px) { .uh-hero__headline { font-size: 4.5rem; } }

.uh-hero__subtext {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	max-width: 620px;
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0 0 2.5rem;
}
.uh-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 4rem;
}

.uh-hero__stats {
	border-top: 1px solid rgba(0, 200, 240, 0.1);
	padding-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
@media (min-width: 640px) {
	.uh-hero__stats { grid-template-columns: repeat(4, 1fr); }
}
.uh-stat__value {
	font-family: var(--uh-font-display);
	color: var(--uh-cyan);
	line-height: 1;
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}
.uh-stat__label {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.06em;
	font-size: 0.75rem;
	text-transform: uppercase;
}

/* =========================================================================
   Generic section paddings
   ========================================================================= */
.uh-section { padding: 6rem 0; }
.uh-section--sm { padding: 5rem 0; }
.uh-section--bg { background: var(--uh-secondary); }
.uh-section--border-t { border-top: 1px solid var(--uh-border); }
.uh-section--border-y {
	border-top: 1px solid var(--uh-border);
	border-bottom: 1px solid var(--uh-border);
}

/* =========================================================================
   TRUST PILLARS
   ========================================================================= */
.uh-pillars__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 768px) {
	.uh-pillars__grid { grid-template-columns: repeat(3, 1fr); }
}
.uh-pillar {
	background: var(--uh-secondary);
	padding: 2.5rem;
	transition: background 0.3s ease;
}
.uh-pillar:hover { background: var(--uh-card); }
.uh-pillar__icon {
	color: var(--uh-cyan);
	margin-bottom: 1.25rem;
	display: inline-block;
	transition: transform 0.3s ease;
}
.uh-pillar:hover .uh-pillar__icon { transform: scale(1.1); }
.uh-pillar__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.03em;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
}
.uh-pillar__desc {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.uh-services__head {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.uh-services__head { flex-direction: row; align-items: flex-end; }
}
.uh-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.uh-tag {
	border: 1px solid rgba(0, 200, 240, 0.2);
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.06em;
	font-size: 0.75rem;
	text-transform: uppercase;
	padding: 0.375rem 0.75rem;
}

.uh-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 640px) { .uh-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .uh-services__grid { grid-template-columns: repeat(3, 1fr); } }

.uh-service {
	background: var(--uh-card);
	padding: 2rem;
	border: 1px solid rgba(0, 200, 240, 0.08);
	transition: border-color 0.3s ease;
}
.uh-service:hover { border-color: rgba(0, 200, 240, 0.3); }
.uh-service__icon {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(0, 200, 240, 0.08);
	color: var(--uh-cyan);
	border: 1px solid rgba(0, 200, 240, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background 0.3s ease;
}
.uh-service:hover .uh-service__icon { background: rgba(0, 200, 240, 0.15); }
.uh-service__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.03em;
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
}
.uh-service__desc {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

.uh-service-cta {
	background: rgba(0, 200, 240, 0.06);
	border: 1px solid rgba(0, 200, 240, 0.15);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.5rem;
}
.uh-service-cta__eyebrow {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin: 0 0 1rem;
}
.uh-service-cta__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.15;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}
.uh-service-cta .uh-btn { align-self: flex-start; padding: 0.75rem 1.25rem; }

/* =========================================================================
   PROCESS
   ========================================================================= */
.uh-process__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 640px) { .uh-process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .uh-process__grid { grid-template-columns: repeat(4, 1fr); } }

.uh-step { position: relative; }
.uh-step__connector {
	display: none;
	position: absolute;
	top: 1.25rem;
	left: 100%;
	width: 100%;
	height: 1px;
	z-index: 0;
	background: linear-gradient(90deg, rgba(0, 200, 240, 0.3), transparent);
}
@media (min-width: 1024px) {
	.uh-step:not(:last-child) .uh-step__connector { display: block; }
}
.uh-step__inner { position: relative; z-index: 10; }
.uh-step__num {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	line-height: 1;
	opacity: 0.25;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.uh-step__rule {
	width: 2rem;
	height: 1px;
	background: var(--uh-cyan);
	margin-bottom: 1.25rem;
}
.uh-step__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.05em;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
}
.uh-step__desc {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.uh-industries__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 768px) { .uh-industries__grid { grid-template-columns: repeat(2, 1fr); } }
.uh-industry {
	background: var(--uh-card);
	padding: 2.5rem;
	display: flex;
	gap: 1.5rem;
	border: 1px solid rgba(0, 200, 240, 0.08);
	transition: border-color 0.3s ease;
}
.uh-industry:hover { border-color: rgba(0, 200, 240, 0.25); }
.uh-industry__icon {
	color: var(--uh-cyan);
	flex-shrink: 0;
	margin-top: 0.25rem;
	transition: transform 0.3s ease;
}
.uh-industry:hover .uh-industry__icon { transform: scale(1.1); }
.uh-industry__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.04em;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
}
.uh-industry__desc {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.uh-tst__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 768px) { .uh-tst__grid { grid-template-columns: repeat(3, 1fr); } }
.uh-tst {
	background: var(--uh-card);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(0, 200, 240, 0.08);
	transition: border-color 0.3s ease;
}
.uh-tst:hover { border-color: rgba(0, 200, 240, 0.2); }
.uh-tst__mark {
	color: var(--uh-cyan);
	font-family: var(--uh-font-display);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0.3;
	margin-bottom: 1rem;
}
.uh-tst__quote {
	font-family: var(--uh-font-body);
	color: var(--uh-quote);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0 0 2rem;
}
.uh-tst__foot { border-top: 1px solid rgba(0, 200, 240, 0.1); padding-top: 1.25rem; }
.uh-tst__name {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.04em;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
}
.uh-tst__role {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.06em;
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.uh-faq__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}
@media (min-width: 1024px) {
	.uh-faq__grid { grid-template-columns: repeat(3, 1fr); }
	.uh-faq__list { grid-column: span 2; }
}
.uh-faq__intro-h2 {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.1;
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
}
.uh-faq__intro {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}
.uh-faq__intro a { color: var(--uh-cyan); transition: opacity 0.2s ease; }
.uh-faq__intro a:hover { opacity: 0.8; }

.uh-faq__item { border-bottom: 1px solid rgba(0, 200, 240, 0.1); padding: 1.25rem 0; }
.uh-faq__q {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.uh-faq__q-text {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.02em;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	transition: color 0.2s ease;
}
.uh-faq__q:hover .uh-faq__q-text { color: var(--uh-cyan); }
.uh-faq__chevron { color: var(--uh-cyan); flex-shrink: 0; margin-top: 2px; display: inline-flex; }
.uh-faq__chevron .icon-up { display: none; }
.uh-faq__item.is-open .uh-faq__chevron .icon-up { display: inline-flex; }
.uh-faq__item.is-open .uh-faq__chevron .icon-down { display: none; }

.uh-faq__a {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 1rem 0 0;
	display: none;
}
.uh-faq__item.is-open .uh-faq__a { display: block; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.uh-cta {
	border-top: 1px solid rgba(0, 200, 240, 0.15);
	background:
		var(--uh-secondary)
		radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0, 200, 240, 0.06) 0%, transparent 70%);
	padding: 6rem 0;
	text-align: center;
}
.uh-cta__icon {
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1.5rem;
	background: rgba(0, 200, 240, 0.1);
	border: 1px solid rgba(0, 200, 240, 0.2);
	color: var(--uh-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
}
.uh-cta__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.1;
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
@media (min-width: 1024px) { .uh-cta__title { font-size: 3rem; } }
.uh-cta__subtext {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	max-width: 500px;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 auto 2.5rem;
}
.uh-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.uh-cta__buttons .uh-btn { padding: 1rem 2rem; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.uh-footer {
	background: var(--uh-bg);
	border-top: 1px solid rgba(0, 200, 240, 0.1);
	padding: 2.5rem 0;
}
.uh-footer__inner {
	max-width: var(--uh-maxw);
	margin: 0 auto;
	padding: 0 var(--uh-gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
@media (min-width: 640px) { .uh-footer__inner { flex-direction: row; } }
.uh-footer__brand { display: flex; align-items: center; gap: 0.5rem; }
.uh-footer__mark {
	width: 1.25rem;
	height: 1.25rem;
	background: var(--uh-cyan);
	color: #07090f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.uh-footer__copy {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.06em;
	font-size: 0.75rem;
	text-transform: uppercase;
}
.uh-footer__links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.uh-footer__link {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.04em;
	font-size: 0.75rem;
	transition: color 0.2s ease;
}
.uh-footer__link:hover { color: var(--uh-cyan); }

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

/* =========================================================================
   INNER PAGES (Services / Contact / Legal)
   ========================================================================= */

/* Clear the fixed nav on inner pages */
.uh-page { padding-top: 4rem; }

/* ---- Shared page hero ---- */
.uh-page-hero {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
	background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 200, 240, 0.07) 0%, transparent 70%);
}
.uh-page-hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 200, 240, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 200, 240, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
}
.uh-page-hero__inner { position: relative; z-index: 10; }
.uh-page-hero__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.05;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 3rem;
	margin: 0 0 1.5rem;
}
@media (min-width: 640px) { .uh-page-hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .uh-page-hero__title { font-size: 4.5rem; } }
.uh-page-hero__subtext {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	max-width: 580px;
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0;
}

/* =========================================================================
   SERVICES PAGE
   ========================================================================= */
.uh-svc-blocks-section {
	border-top: 1px solid var(--uh-border);
	padding: 2rem 0;
}
.uh-svc-block {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding: 4rem 0;
	align-items: start;
	border-bottom: 1px solid var(--uh-border);
}
@media (min-width: 1024px) {
	.uh-svc-block { grid-template-columns: 1fr 1fr; gap: 3rem; }
	/* Alternate the media/aside order on every second block. */
	.uh-svc-block:nth-child(even) .uh-svc-block__media { order: 2; }
	.uh-svc-block:nth-child(even) .uh-svc-block__aside { order: 1; }
}
.uh-svc-block__icon {
	width: 3.5rem;
	height: 3.5rem;
	background: rgba(0, 200, 240, 0.08);
	color: var(--uh-cyan);
	border: 1px solid rgba(0, 200, 240, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}
.uh-svc-block__label {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.uh-svc-block__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.875rem;
	margin: 0 0 1.25rem;
}
@media (min-width: 1024px) { .uh-svc-block__title { font-size: 2.25rem; } }
.uh-svc-block__desc {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}
.uh-svc-features {
	background: rgba(0, 200, 240, 0.04);
	border: 1px solid rgba(0, 200, 240, 0.12);
	padding: 2rem;
}
/* Features now sit under the description in the content column */
.uh-svc-block__media .uh-svc-features { margin-top: 2rem; }
/* Blocks without an image span the full width */
@media (min-width: 1024px) {
	.uh-svc-block--noimg { grid-template-columns: 1fr; }
}
.uh-svc-features__label {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin: 0 0 1.5rem;
}
.uh-svc-features__list { list-style: none; margin: 0; padding: 0; }
.uh-svc-features__list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
.uh-svc-features__list li:last-child { margin-bottom: 0; }
.uh-svc-features__check { color: var(--uh-cyan); flex-shrink: 0; margin-top: 2px; display: inline-flex; }
.uh-svc-features__text {
	font-family: var(--uh-font-body);
	color: var(--uh-quote);
	font-size: 0.875rem;
	line-height: 1.6;
}

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.uh-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: start;
}
@media (min-width: 1024px) { .uh-contact__grid { grid-template-columns: 1fr 1fr; } }
.uh-contact__col { display: flex; flex-direction: column; gap: 2rem; }

.uh-contact__phone-card {
	background: var(--uh-card);
	border: 1px solid rgba(0, 200, 240, 0.12);
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	transition: border-color 0.3s ease;
}
.uh-contact__phone-card:hover { border-color: rgba(0, 200, 240, 0.3); }
.uh-contact__phone-icon {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	background: rgba(0, 200, 240, 0.08);
	border: 1px solid rgba(0, 200, 240, 0.15);
	color: var(--uh-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
}
.uh-contact__phone-label {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
}
.uh-contact__phone-number {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.03em;
	font-size: 1.875rem;
	font-weight: 700;
	transition: color 0.2s ease;
	display: inline-block;
}
.uh-contact__phone-number:hover { color: var(--uh-cyan); }
.uh-contact__phone-sub {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	margin: 0.5rem 0 0;
}

.uh-contact__info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 640px) { .uh-contact__info { grid-template-columns: 1fr 1fr; } }
.uh-contact__info-card {
	background: var(--uh-card);
	padding: 1.5rem;
	border: 1px solid rgba(0, 200, 240, 0.08);
	transition: border-color 0.3s ease;
}
.uh-contact__info-card:hover { border-color: rgba(0, 200, 240, 0.2); }
.uh-contact__info-label {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
}
.uh-contact__info-value {
	font-family: var(--uh-font-display);
	color: var(--uh-cyan);
	line-height: 1.1;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
}
.uh-contact__info-sub {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.75rem;
	margin: 0;
}

.uh-contact__panel {
	background: rgba(0, 200, 240, 0.05);
	border: 1px solid rgba(0, 200, 240, 0.15);
	padding: 2.5rem;
}
.uh-contact__panel-icon {
	width: 3.5rem;
	height: 3.5rem;
	background: rgba(0, 200, 240, 0.1);
	border: 1px solid rgba(0, 200, 240, 0.2);
	color: var(--uh-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.uh-contact__panel-title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	line-height: 1.1;
	font-size: 1.875rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 1rem;
}
.uh-contact__panel-text {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0 0 2rem;
}
.uh-contact__panel-btn { justify-content: center; }

.uh-contact__partners-label {
	font-family: var(--uh-font-mono);
	color: var(--uh-muted);
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.uh-contact__partners-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--uh-border);
}
.uh-contact__partner {
	background: var(--uh-card);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 200, 240, 0.08);
	transition: border-color 0.3s ease;
}
.uh-contact__partner:hover { border-color: rgba(0, 200, 240, 0.2); }
.uh-contact__partner span {
	font-family: var(--uh-font-display);
	color: #3a4f68;
	letter-spacing: 0.12em;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* =========================================================================
   LEGAL PAGES
   ========================================================================= */
.uh-legal__updated {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.06em;
	font-size: 0.8125rem;
	text-transform: uppercase;
	margin: 0 0 1.25rem;
}
.uh-legal { max-width: 760px; }
.uh-legal__section { margin-bottom: 3rem; }
.uh-legal__section:last-child { margin-bottom: 0; }
.uh-legal__heading {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	letter-spacing: 0.02em;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 1rem;
}
.uh-legal__body,
.uh-legal__body p,
.uh-legal__body li {
	font-family: var(--uh-font-body);
	color: var(--uh-quote);
	font-size: 0.9375rem;
	line-height: 1.8;
}
.uh-legal__body p { margin: 0 0 1.25rem; }
.uh-legal__body a { color: var(--uh-cyan); }
.uh-legal__body a:hover { opacity: 0.8; }
.uh-legal__body ul,
.uh-legal__body ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.uh-legal__body li { margin-bottom: 0.5rem; }
.uh-legal__body h2,
.uh-legal__body h3,
.uh-legal__body h4 {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 2rem 0 1rem;
}
.uh-legal__body strong { color: var(--uh-fg); }

/* =========================================================================
   OPTIONAL SECTION IMAGES (backgrounds, hero side image, feature rows)
   ========================================================================= */

/* ---- Background image layers (used by hero, CTA, page hero) ---- */
.uh-bgimg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}
.uh-bgimg__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}
/* Keep grid texture + content above the image/overlay */
.uh-hero__grid,
.uh-page-hero__grid { z-index: 2; }

/* CTA needs a stacking context when a background image is present */
.uh-cta { position: relative; overflow: hidden; }
.uh-cta .uh-container { position: relative; z-index: 2; }

/* ---- Hero split layout (when a side image is set) ---- */
.uh-hero__media img {
	width: 100%;
	height: auto;
	border: 1px solid var(--uh-border);
}
.uh-hero__media { margin-top: 2.5rem; }
@media (min-width: 1024px) {
	.uh-hero--split .uh-hero__inner {
		display: grid;
		grid-template-columns: 1.15fr 0.85fr;
		gap: 3.5rem;
		align-items: center;
	}
	.uh-hero--split .uh-hero__content { max-width: none; }
	.uh-hero__media { margin-top: 0; }
}

/* ---- Image + Text Rows ---- */
.uh-feature-rows { padding: 1rem 0; }
.uh-feature-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	padding: 4rem 0;
	border-bottom: 1px solid var(--uh-border);
}
.uh-feature-row:last-child { border-bottom: 0; }
@media (min-width: 1024px) {
	.uh-feature-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
	.uh-feature-row--right .uh-feature-row__media { order: 2; }
	.uh-feature-row--right .uh-feature-row__text { order: 1; }
	.uh-feature-row--left .uh-feature-row__media { order: 1; }
	.uh-feature-row--left .uh-feature-row__text { order: 2; }
}
.uh-feature-row__media img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid var(--uh-border);
}
.uh-feature-row__title {
	font-family: var(--uh-font-display);
	color: var(--uh-fg);
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.02em;
	font-size: 1.875rem;
	font-weight: 700;
	margin: 0 0 1rem;
}
@media (min-width: 1024px) { .uh-feature-row__title { font-size: 2.25rem; } }
.uh-feature-row__body {
	font-family: var(--uh-font-body);
	color: var(--uh-muted);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

/* ---- Optional uploaded logos (header / footer) ---- */
.uh-logo__img {
	height: 34px;
	width: auto;
	max-width: 220px;
	display: block;
	object-fit: contain;
}
.uh-footer__logo-img {
	height: 26px;
	width: auto;
	max-width: 180px;
	display: block;
	object-fit: contain;
}

/* =========================================================================
   SECTION IMAGES v2 (pillars / process / industries / service blocks / contact)
   ========================================================================= */

/* Generic background wrapper (Process, and any full-bleed image section) */
.uh-has-bg { position: relative; overflow: hidden; }
.uh-has-bg > .uh-container { position: relative; z-index: 2; }

/* ---- Trust Pillars: image + pillars split ---- */
.uh-pillars--split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--uh-border);
}
@media (min-width: 1024px) { .uh-pillars--split { grid-template-columns: 1fr 1fr; } }
.uh-pillars__imgwrap {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	background: var(--uh-card);
}
.uh-pillars__imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uh-pillars__badge {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	background: rgba(0, 200, 240, 0.15);
	border: 1px solid rgba(0, 200, 240, 0.3);
	padding: 0.5rem 1rem;
	backdrop-filter: blur(8px);
}
.uh-pillars__badge span {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	text-transform: uppercase;
}
.uh-pillars__stack { display: flex; flex-direction: column; background: var(--uh-secondary); }
.uh-pillars__stack .uh-pillar + .uh-pillar { border-top: 1px solid rgba(0, 200, 240, 0.08); }

/* ---- Industries: industries + image split ---- */
.uh-industries--split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) {
	.uh-industries--split { grid-template-columns: 1fr 1fr; }
	.uh-industries--split .uh-industries__grid { grid-template-columns: 1fr; }
}
.uh-industries__imgwrap {
	position: relative;
	min-height: 320px;
	overflow: hidden;
	background: var(--uh-card);
	border: 1px solid rgba(0, 200, 240, 0.08);
}
.uh-industries__imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uh-industries__badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	background: rgba(0, 200, 240, 0.12);
	border: 1px solid rgba(0, 200, 240, 0.25);
	padding: 0.75rem 1rem;
	backdrop-filter: blur(8px);
}
.uh-industries__badge span {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
}

/* ---- Service block image ---- */
.uh-svc-block__imgwrap {
	position: relative;
	overflow: hidden;
	background: var(--uh-card);
	border: 1px solid rgba(0, 200, 240, 0.12);
	margin-bottom: 0;
}
.uh-svc-block__imgwrap img { width: 100%; height: auto; display: block; }
.uh-svc-block__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(0, 200, 240, 0.15);
	border: 1px solid rgba(0, 200, 240, 0.3);
	padding: 0.375rem 0.75rem;
	backdrop-filter: blur(8px);
}
.uh-svc-block__badge span {
	font-family: var(--uh-font-mono);
	color: var(--uh-cyan);
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	text-transform: uppercase;
}

/* ---- Contact support image ---- */
.uh-contact__support-img {
	overflow: hidden;
	background: var(--uh-card);
	border: 1px solid rgba(0, 200, 240, 0.12);
}
.uh-contact__support-img img { width: 100%; height: auto; display: block; }
