:root {
	--hhg-ink: #083344;
	--hhg-ink-2: #0f4c5c;
	--hhg-petrol: #0f766e;
	--hhg-blue: #0e7490;
	--hhg-aqua: #14b8a6;
	--hhg-mint: #ccfbf1;
	--hhg-sky: #ecfeff;
	--hhg-bg: #f7fafb;
	--hhg-line: #cbd5e1;
	--hhg-text: #1f2937;
	--hhg-muted: #52616b;
	--hhg-white: #fff;
	--hhg-error: #9f1239;
	--hhg-success: #166534;
	--hhg-radius: 1.25rem;
	--hhg-shadow: 0 18px 50px rgba(8, 51, 68, .12);
	--hhg-wrap: min(1180px, calc(100% - 2rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--hhg-white);
	color: var(--hhg-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--hhg-blue); text-underline-offset: .18em; text-decoration-thickness: .08em; }
a:hover { color: var(--hhg-petrol); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f59e0b; outline-offset: 3px; }
h1, h2, h3 { color: var(--hhg-ink); line-height: 1.15; letter-spacing: -.025em; text-wrap: balance; }
h1 { margin: 0 0 1.25rem; font-size: clamp(2.3rem, 6vw, 4.65rem); }
h2 { margin: 0 0 1rem; font-size: clamp(1.75rem, 3.4vw, 2.75rem); }
h3 { margin: 0 0 .65rem; font-size: 1.25rem; }
p { margin: 0 0 1.15rem; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.hhg-wrap { width: var(--hhg-wrap); margin-inline: auto; }
.hhg-narrow { max-width: 820px; }
.hhg-skip-link {
	position: fixed;
	top: .75rem;
	left: .75rem;
	z-index: 10000;
	padding: .8rem 1rem;
	border-radius: .5rem;
	background: var(--hhg-white);
	color: var(--hhg-ink);
	transform: translateY(-160%);
}
.hhg-skip-link:focus { transform: none; }

.hhg-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(203, 213, 225, .75);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(12px);
}
.hhg-header__inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
}
.hhg-brand { display: inline-flex; flex: 0 1 320px; align-items: center; }
.hhg-brand img { width: min(100%, 320px); max-height: 68px; object-fit: contain; object-position: left center; }
.hhg-brand__custom { width: auto !important; }
.hhg-nav { display: flex; align-items: center; gap: 1.25rem; }
.hhg-nav__list { display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.hhg-nav__list a {
	display: flex;
	min-height: 44px;
	align-items: center;
	padding: .55rem .7rem;
	border-radius: .55rem;
	color: var(--hhg-ink);
	font-size: .94rem;
	font-weight: 700;
	text-decoration: none;
}
.hhg-nav__list a:hover, .hhg-nav__list .current-menu-item > a { background: var(--hhg-sky); color: var(--hhg-petrol); }
.hhg-menu-toggle {
	display: none;
	min-width: 52px;
	min-height: 48px;
	align-items: center;
	gap: .55rem;
	justify-content: center;
	border: 1px solid var(--hhg-line);
	border-radius: .75rem;
	background: var(--hhg-white);
	color: var(--hhg-ink);
	font-weight: 750;
}
.hhg-menu-toggle__icon { display: grid; width: 20px; gap: 4px; }
.hhg-menu-toggle__icon span { height: 2px; border-radius: 2px; background: currentColor; }

.hhg-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	padding: .78rem 1.15rem;
	border: 2px solid var(--hhg-petrol);
	border-radius: .75rem;
	background: var(--hhg-petrol);
	color: var(--hhg-white);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hhg-button:hover { background: var(--hhg-ink); border-color: var(--hhg-ink); color: var(--hhg-white); transform: translateY(-1px); box-shadow: 0 9px 20px rgba(8,51,68,.18); }
.hhg-button--small { min-height: 44px; padding: .6rem .85rem; font-size: .9rem; }
.hhg-button--outline { background: transparent; color: var(--hhg-ink); border-color: var(--hhg-ink); }
.hhg-button--outline:hover { background: var(--hhg-ink); }
.hhg-button--light { background: var(--hhg-white); border-color: var(--hhg-white); color: var(--hhg-ink); }
.hhg-button--light:hover { background: var(--hhg-mint); border-color: var(--hhg-mint); color: var(--hhg-ink); }
.hhg-button--whatsapp { background: #166534; border-color: #166534; }
.hhg-button--wide { width: 100%; min-height: 58px; font-size: 1.05rem; }
.hhg-text-link { display: inline-flex; align-items: center; min-height: 44px; font-weight: 800; }
.hhg-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.65rem; }
.hhg-eyebrow {
	margin-bottom: .8rem;
	color: var(--hhg-petrol);
	font-size: .79rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hhg-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(3.25rem, 8vw, 6.75rem) 0;
	background:
		radial-gradient(circle at 90% 10%, rgba(20,184,166,.18), transparent 34rem),
		linear-gradient(135deg, #f0fdfa 0%, #fff 52%, #ecfeff 100%);
}
.hhg-hero::after {
	position: absolute;
	right: -4rem;
	bottom: -7rem;
	width: 22rem;
	height: 22rem;
	border: 3rem solid rgba(14,116,144,.07);
	border-radius: 50%;
	content: "";
}
.hhg-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.hhg-hero__content { position: relative; z-index: 1; }
.hhg-hero__lead { max-width: 720px; color: #334155; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hhg-check-list { display: grid; gap: .65rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.hhg-check-list li { position: relative; padding-left: 1.85rem; font-weight: 720; }
.hhg-check-list li::before {
	position: absolute;
	left: 0;
	top: .15rem;
	width: 1.28rem;
	height: 1.28rem;
	border-radius: 50%;
	background: var(--hhg-petrol);
	color: white;
	content: "✓";
	font-size: .78rem;
	line-height: 1.28rem;
	text-align: center;
}
.hhg-hero__note { margin-top: 1rem; color: var(--hhg-muted); font-size: .94rem; }
.hhg-hero__visual { position: relative; z-index: 1; max-width: 570px; margin-inline: auto; }
.hhg-hero__visual svg { filter: drop-shadow(0 24px 34px rgba(8,51,68,.13)); }
.hhg-hero__badge {
	position: absolute;
	right: 0;
	bottom: 1.5rem;
	display: grid;
	width: 135px;
	height: 135px;
	place-content: center;
	padding: 1rem;
	border: 7px solid var(--hhg-white);
	border-radius: 50%;
	background: var(--hhg-ink);
	color: var(--hhg-white);
	box-shadow: var(--hhg-shadow);
	text-align: center;
}
.hhg-hero__badge strong { font-size: 1.25rem; line-height: 1; }
.hhg-hero__badge span { margin-top: .35rem; font-size: .72rem; line-height: 1.2; }

.hhg-trust-strip { border-block: 1px solid var(--hhg-line); background: var(--hhg-white); }
.hhg-trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hhg-trust-strip__grid > div { display: grid; gap: .2rem; padding: 1.3rem; border-right: 1px solid var(--hhg-line); }
.hhg-trust-strip__grid > div:last-child { border-right: 0; }
.hhg-trust-strip strong { color: var(--hhg-ink); }
.hhg-trust-strip span { color: var(--hhg-muted); font-size: .86rem; }

.hhg-section { padding: clamp(3.75rem, 8vw, 7rem) 0; }
.hhg-section--soft { background: var(--hhg-bg); }
.hhg-section--ink { background: var(--hhg-ink); color: #d9edf1; }
.hhg-section--ink h2, .hhg-section--ink h3 { color: var(--hhg-white); }
.hhg-section--ink .hhg-eyebrow { color: #5eead4; }
.hhg-section--form { background: linear-gradient(180deg, var(--hhg-sky), var(--hhg-bg)); }
.hhg-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.hhg-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hhg-card {
	position: relative;
	padding: 1.55rem;
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
	box-shadow: 0 5px 20px rgba(8,51,68,.05);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hhg-card:hover { transform: translateY(-3px); border-color: #7dd3fc; box-shadow: var(--hhg-shadow); }
.hhg-card__icon {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	margin-bottom: 1.1rem;
	border-radius: 1rem 1rem 1rem .25rem;
	background: var(--hhg-mint);
	color: var(--hhg-petrol);
	font-size: 1.2rem;
	font-weight: 900;
}
.hhg-card h2, .hhg-card h3 { font-size: 1.25rem; }
.hhg-card h2 a, .hhg-card h3 a { color: var(--hhg-ink); text-decoration: none; }
.hhg-card h2 a::after, .hhg-card h3 a::after { position: absolute; inset: 0; content: ""; }
.hhg-card p { color: var(--hhg-muted); font-size: .95rem; }
.hhg-tag { display: inline-flex; padding: .28rem .65rem; border-radius: 999px; background: #fef3c7; color: #78350f; font-size: .75rem; font-weight: 850; }
.hhg-card-grid--all { grid-template-columns: repeat(4, 1fr); }

.hhg-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.hhg-split--top { align-items: start; }
.hhg-audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.hhg-audience-list li { padding: 1rem; border: 1px solid rgba(255,255,255,.18); border-radius: .8rem; background: rgba(255,255,255,.06); color: white; font-weight: 700; }
.hhg-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.2rem 0 0; padding: 0; list-style: none; counter-reset: none; }
.hhg-process li { padding: 1.4rem; border-top: 4px solid var(--hhg-aqua); background: var(--hhg-bg); }
.hhg-process span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 1rem; border-radius: 50%; background: var(--hhg-ink); color: white; font-weight: 900; }
.hhg-process h3 { font-size: 1.12rem; }
.hhg-process p { margin: 0; color: var(--hhg-muted); font-size: .92rem; }
.hhg-area-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; }
.hhg-radius {
	display: grid;
	width: 230px;
	height: 230px;
	place-content: center;
	border: 2px solid var(--hhg-aqua);
	border-radius: 50%;
	background: radial-gradient(circle, white 0 44%, var(--hhg-mint) 45% 58%, transparent 59%);
	color: var(--hhg-ink);
	text-align: center;
}
.hhg-radius span, .hhg-radius small { font-weight: 750; }
.hhg-radius strong { font-size: 2rem; line-height: 1.1; }

.hhg-faq { display: grid; gap: .75rem; margin-top: 1.7rem; }
.hhg-faq details { border: 1px solid var(--hhg-line); border-radius: .8rem; background: var(--hhg-white); }
.hhg-faq summary { min-height: 54px; padding: 1rem 3rem 1rem 1.1rem; color: var(--hhg-ink); font-weight: 800; cursor: pointer; }
.hhg-faq details p { padding: 0 1.1rem 1.1rem; margin: 0; color: var(--hhg-muted); }
.hhg-faq details[hidden] { display: none; }
.hhg-faq-search {
	display: grid;
	gap: .45rem;
	margin-top: 1.5rem;
	padding: 1rem;
	border: 1px solid var(--hhg-line);
	border-radius: .9rem;
	background: var(--hhg-white);
}
.hhg-faq-search label { color: var(--hhg-ink); font-weight: 800; }
.hhg-faq-search input {
	width: 100%;
	min-height: 52px;
	padding: .75rem .9rem;
	border: 2px solid #94a3b8;
	border-radius: .65rem;
	background: var(--hhg-white);
	color: var(--hhg-text);
}
.hhg-faq-search input:focus { border-color: var(--hhg-petrol); outline: 3px solid rgba(20,184,166,.28); outline-offset: 1px; }
.hhg-faq-search__status { margin: 0; color: var(--hhg-muted); font-size: .86rem; }
.hhg-faq-empty { margin: 1rem 0 0; padding: 1rem; border-left: 4px solid var(--hhg-aqua); background: var(--hhg-white); color: var(--hhg-ink); }

.hhg-section-nav {
	position: sticky;
	top: 82px;
	z-index: 800;
	border-block: 1px solid var(--hhg-line);
	background: rgba(255,255,255,.97);
	box-shadow: 0 8px 22px rgba(8,51,68,.06);
	backdrop-filter: blur(10px);
}
.hhg-section-nav__inner { display: flex; min-height: 54px; align-items: center; gap: 1.2rem; }
.hhg-section-nav__inner > strong { flex: 0 0 auto; color: var(--hhg-ink); font-size: .82rem; }
.hhg-section-nav ul {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: .25rem;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	list-style: none;
	scrollbar-width: thin;
}
.hhg-section-nav a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: .45rem .7rem;
	border-bottom: 3px solid transparent;
	color: var(--hhg-muted);
	font-size: .84rem;
	font-weight: 750;
	white-space: nowrap;
	text-decoration: none;
}
.hhg-section-nav a:hover,
.hhg-section-nav a[aria-current="location"] { border-bottom-color: var(--hhg-aqua); color: var(--hhg-petrol); }

.hhg-section--customer-path { background: linear-gradient(180deg, var(--hhg-white), var(--hhg-sky)); }
.hhg-path-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-bottom: 1.25rem;
}
.hhg-path-tab {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	padding: .65rem .9rem;
	border: 2px solid var(--hhg-line);
	border-radius: 999px;
	background: var(--hhg-white);
	color: var(--hhg-ink);
	font-weight: 800;
	text-decoration: none;
}
.hhg-path-tab:hover,
.hhg-path-tab.is-active,
.hhg-path-tab[aria-selected="true"] { border-color: var(--hhg-petrol); background: var(--hhg-petrol); color: var(--hhg-white); }
.hhg-path-panel {
	display: grid;
	grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
	gap: clamp(1.25rem, 4vw, 2.5rem);
	padding: clamp(1.35rem, 4vw, 2.25rem);
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
	box-shadow: 0 12px 34px rgba(8,51,68,.08);
}
.hhg-path-panel[hidden] { display: none; }
.hhg-path-panel__intro p { margin: 0; color: var(--hhg-muted); }
.hhg-path-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.hhg-path-service {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid var(--hhg-line);
	border-radius: .85rem;
	background: var(--hhg-bg);
	color: var(--hhg-text);
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.hhg-path-service:hover { border-color: var(--hhg-aqua); color: var(--hhg-text); transform: translateY(-2px); box-shadow: 0 9px 22px rgba(8,51,68,.1); }
.hhg-path-service strong { color: var(--hhg-ink); }
.hhg-path-service span { margin-top: .4rem; color: var(--hhg-muted); font-size: .86rem; }
.hhg-path-service small {
	align-self: flex-start;
	margin-top: auto;
	padding: .2rem .5rem;
	border-radius: 999px;
	background: #fef3c7;
	color: #78350f;
	font-weight: 850;
}
.hhg-tool-note { margin: .85rem 0 0; color: var(--hhg-muted); font-size: .84rem; }

.hhg-area-check {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
	align-items: start;
	gap: clamp(1.5rem, 5vw, 4rem);
}
.hhg-area-checker {
	display: grid;
	gap: 1rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
	box-shadow: var(--hhg-shadow);
}
.hhg-area-result {
	display: grid;
	gap: .55rem;
	padding: 1rem;
	border: 2px solid var(--hhg-blue);
	border-radius: .85rem;
	background: var(--hhg-sky);
}
.hhg-area-result[hidden] { display: none; }
.hhg-area-result strong { color: var(--hhg-ink); font-size: 1.1rem; }
.hhg-area-result p { margin: 0; color: #334155; }
.hhg-area-result.is-positive { border-color: #22c55e; background: #f0fdf4; }
.hhg-area-result.is-warning { border-color: #f59e0b; background: #fffbeb; }
.hhg-area-result .hhg-button { margin-top: .35rem; }

.hhg-page-hero { padding: clamp(3.2rem, 7vw, 6rem) 0; background: linear-gradient(135deg, var(--hhg-sky), var(--hhg-white)); }
.hhg-page-hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
.hhg-page-hero p { color: #334155; font-size: 1.15rem; }
.hhg-page-hero__grid { display: grid; grid-template-columns: 1fr 250px; align-items: center; gap: 3rem; }
.hhg-service-mark {
	display: grid;
	width: 220px;
	height: 220px;
	place-content: center;
	border: 18px solid var(--hhg-mint);
	border-radius: 50%;
	background: var(--hhg-ink);
	color: white;
	text-align: center;
}
.hhg-service-mark span { font-size: 4.5rem; font-weight: 900; line-height: .9; }
.hhg-service-mark small { margin-top: .5rem; color: #99f6e4; font-weight: 800; }
.hhg-breadcrumbs { padding: 1rem 0; font-size: .86rem; }
.hhg-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.hhg-breadcrumbs li:not(:last-child)::after { margin-left: .5rem; color: #94a3b8; content: "/"; }
.hhg-breadcrumbs a { color: var(--hhg-muted); }
.hhg-info-box { padding: 1.6rem; border-left: 5px solid var(--hhg-aqua); border-radius: 0 var(--hhg-radius) var(--hhg-radius) 0; background: var(--hhg-bg); }
.hhg-info-box h2 { font-size: 1.45rem; }
.hhg-feature-list { display: grid; gap: .75rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.hhg-feature-list li { position: relative; padding: 1rem 1rem 1rem 3.2rem; border: 1px solid var(--hhg-line); border-radius: .75rem; font-weight: 700; }
.hhg-feature-list li::before { position: absolute; left: 1rem; top: .92rem; color: var(--hhg-petrol); content: "✓"; font-size: 1.2rem; font-weight: 900; }
.hhg-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hhg-three > div { padding: 1.5rem; border-radius: var(--hhg-radius); background: white; }
.hhg-three strong { color: var(--hhg-aqua); font-size: 1.75rem; }
.hhg-three h2 { margin-top: .8rem; font-size: 1.25rem; }
.hhg-three p { margin-bottom: 0; color: var(--hhg-muted); }
.hhg-content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.hhg-content-grid article { padding: 1.6rem; border: 1px solid var(--hhg-line); border-radius: var(--hhg-radius); }
.hhg-content-grid h2 { font-size: 1.35rem; }
.hhg-content-grid p { margin: 0; color: var(--hhg-muted); }
.hhg-districts { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.hhg-districts li { padding: .45rem .72rem; border: 1px solid #99f6e4; border-radius: 999px; background: white; color: var(--hhg-ink); font-size: .88rem; }
.hhg-prose h2 { margin-top: 2rem; font-size: 1.55rem; }
.hhg-prose h2:first-child { margin-top: 0; }
.hhg-prose p, .hhg-prose li { color: #334155; }
.hhg-legal-warning { padding: 1.1rem; border: 2px solid #f59e0b; border-radius: .7rem; background: #fffbeb; color: #713f12; }
.hhg-sitemap { columns: 2; gap: 2rem; padding-left: 1.25rem; }
.hhg-sitemap li { margin-bottom: .5rem; break-inside: avoid; }
.hhg-success-panel { padding: 2rem; border: 2px solid #86efac; border-radius: var(--hhg-radius); background: #f0fdf4; }
.hhg-cta { padding: 2.5rem 0; background: var(--hhg-petrol); color: white; }
.hhg-cta h2 { margin: 0; color: white; }
.hhg-cta .hhg-eyebrow { color: #ccfbf1; }
.hhg-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }


.hhg-section--quick { padding-bottom: 0; background: var(--hhg-white); }
.hhg-quick-shell {
	display: grid;
	grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
	overflow: hidden;
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
	box-shadow: 0 10px 32px rgba(8,51,68,.08);
}
.hhg-quick-heading { padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--hhg-mist); }
.hhg-quick-heading h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.hhg-quick-config {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	padding: clamp(1.35rem, 4vw, 2.5rem);
}
.hhg-quick-config .hhg-button,
.hhg-quick-config .hhg-quick-note,
.hhg-quick-result { grid-column: 1 / -1; }
.hhg-quick-result {
	display: grid;
	gap: .2rem;
	padding: 1rem 1.1rem;
	border: 2px solid #5eead4;
	border-radius: .8rem;
	background: #f0fdfa;
}
.hhg-quick-result[hidden] { display: none; }
.hhg-quick-result strong { color: var(--hhg-petrol); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.hhg-quick-result span { color: var(--hhg-ink); font-size: 1.25rem; font-weight: 850; }
.hhg-quick-result small { color: var(--hhg-muted); }
.hhg-quick-note,
.hhg-noscript-note { margin: 0; color: var(--hhg-muted); font-size: .86rem; }
.hhg-noscript-note { padding: .85rem; border-left: 4px solid var(--hhg-aqua); background: var(--hhg-bg); }

.hhg-real-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
.hhg-real-gallery figure {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
	box-shadow: 0 8px 26px rgba(8,51,68,.08);
}
.hhg-real-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.hhg-real-gallery figcaption { padding: .85rem 1rem; color: var(--hhg-muted); font-size: .9rem; }

.hhg-local-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.25rem 0 2rem;
}
.hhg-local-card {
	position: relative;
	padding: 1.35rem;
	border: 1px solid var(--hhg-line);
	border-radius: var(--hhg-radius);
	background: var(--hhg-white);
}
.hhg-local-card h3 { margin-bottom: .55rem; font-size: 1.2rem; }
.hhg-local-card h3 a { color: var(--hhg-ink); text-decoration: none; }
.hhg-local-card h3 a::after { position: absolute; inset: 0; content: ""; }
.hhg-local-card p { margin: 0; color: var(--hhg-muted); }


.hhg-form-shell {
	display: grid;
	grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
	overflow: hidden;
	border: 1px solid var(--hhg-line);
	border-radius: 1.5rem;
	background: var(--hhg-white);
	box-shadow: var(--hhg-shadow);
}
.hhg-form-heading { padding: clamp(1.7rem, 4vw, 3rem); background: var(--hhg-ink); color: #d9edf1; }
.hhg-form-heading h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.hhg-form-heading .hhg-eyebrow { color: #5eead4; }
.hhg-form-column { min-width: 0; }
.hhg-form { display: grid; gap: 1.15rem; padding: clamp(1.35rem, 4vw, 3rem); }
.hhg-form-progress {
	display: grid;
	gap: .8rem;
	padding: 1rem;
	border: 1px solid var(--hhg-line);
	border-radius: 1rem;
	background: var(--hhg-bg);
}
.hhg-form-progress[hidden] { display: none; }
.hhg-form-progress__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--hhg-ink); }
.hhg-form-progress__meta > span { color: var(--hhg-muted); font-size: .88rem; font-weight: 750; }
.hhg-form-progress__bar {
	overflow: hidden;
	height: 8px;
	border-radius: 999px;
	background: #dbe5e9;
}
.hhg-form-progress__bar > span {
	display: block;
	width: 25%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--hhg-petrol), var(--hhg-aqua));
	transition: width .28s ease;
}
.hhg-form-progress__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hhg-form-progress__steps li {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: .42rem;
	color: var(--hhg-muted);
	font-size: .74rem;
	font-weight: 750;
	line-height: 1.25;
}
.hhg-form-progress__steps li > span {
	display: grid;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid #94a3b8;
	border-radius: 50%;
	background: white;
	color: var(--hhg-ink);
	font-size: .75rem;
}
.hhg-form-progress__steps li[aria-current="step"] { color: var(--hhg-ink); }
.hhg-form-progress__steps li[aria-current="step"] > span {
	border-color: var(--hhg-petrol);
	background: var(--hhg-petrol);
	color: white;
}
.hhg-form-progress__steps li.is-complete > span {
	border-color: var(--hhg-aqua);
	background: var(--hhg-mint);
	color: var(--hhg-petrol);
}
.hhg-form-step {
	display: grid;
	min-width: 0;
	gap: 1.15rem;
	padding: 0;
	margin: 0;
	border: 0;
}
.hhg-form-step + .hhg-form-step {
	padding-top: 1.6rem;
	border-top: 1px solid var(--hhg-line);
}
.hhg-form-step[hidden] { display: none; }
.hhg-form-step legend {
	width: 100%;
	padding: 0;
	color: var(--hhg-ink);
	font-size: clamp(1.28rem, 2.5vw, 1.65rem);
	font-weight: 850;
	line-height: 1.2;
}
.hhg-form-step legend > span {
	display: block;
	margin-bottom: .3rem;
	color: var(--hhg-petrol);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.hhg-form-step__intro { margin: -.45rem 0 .2rem; color: var(--hhg-muted); font-size: .92rem; }
.hhg-form-step__actions { display: none; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .25rem; }
.hhg-form.is-multistep .hhg-form-step__actions { display: flex; }
.hhg-form.is-multistep .hhg-form-step + .hhg-form-step { padding-top: 0; border-top: 0; }
.hhg-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hhg-field { display: grid; gap: .38rem; }
.hhg-field label, .hhg-check label { color: #1f2937; font-size: 1rem; font-weight: 750; }
.hhg-field label span, .hhg-check label span { color: var(--hhg-error); }
.hhg-field label small { color: var(--hhg-muted); font-weight: 600; }
.hhg-field input, .hhg-field select, .hhg-field textarea {
	width: 100%;
	min-height: 50px;
	padding: .78rem .88rem;
	border: 2px solid #94a3b8;
	border-radius: .65rem;
	background: white;
	color: #111827;
}
.hhg-field textarea { min-height: 145px; resize: vertical; }
.hhg-field input:hover, .hhg-field select:hover, .hhg-field textarea:hover { border-color: var(--hhg-blue); }
.hhg-field input:focus, .hhg-field select:focus, .hhg-field textarea:focus { border-color: var(--hhg-petrol); outline: 3px solid rgba(20,184,166,.28); outline-offset: 1px; }
.hhg-field input[aria-invalid="true"], .hhg-field select[aria-invalid="true"], .hhg-field textarea[aria-invalid="true"] { border-color: var(--hhg-error); background: #fff1f2; }
.hhg-field > small { color: var(--hhg-muted); font-size: .8rem; }
.hhg-check { display: grid; grid-template-columns: 24px 1fr; align-items: start; gap: .7rem; }
.hhg-check input { width: 22px; height: 22px; margin: .15rem 0 0; accent-color: var(--hhg-petrol); }
.hhg-check label { font-size: .91rem; font-weight: 600; }
.hhg-form-privacy { margin: 0; color: var(--hhg-muted); font-size: .82rem; text-align: center; }
.hhg-form-error { padding: .8rem; margin: 0; border-left: 4px solid var(--hhg-error); background: #fff1f2; color: var(--hhg-error); font-weight: 700; }
.hhg-inquiry-summary {
	overflow: hidden;
	border: 1px solid var(--hhg-line);
	border-radius: 1rem;
	background: var(--hhg-bg);
}
.hhg-inquiry-summary[hidden] { display: none; }
.hhg-inquiry-summary__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	background: var(--hhg-ink);
}
.hhg-inquiry-summary__heading h3 { margin: 0; color: white; font-size: 1.1rem; }
.hhg-inquiry-summary__heading span { padding: .2rem .55rem; border-radius: 999px; background: var(--hhg-mint); color: var(--hhg-petrol); font-size: .72rem; font-weight: 850; }
.hhg-inquiry-summary dl { display: grid; margin: 0; }
.hhg-inquiry-summary dl > div {
	display: grid;
	grid-template-columns: minmax(145px, .55fr) minmax(0, 1.45fr) auto;
	align-items: start;
	gap: .8rem;
	padding: 1rem 1.15rem;
	border-bottom: 1px solid var(--hhg-line);
}
.hhg-inquiry-summary dl > div:last-child { border-bottom: 0; }
.hhg-inquiry-summary dt { color: var(--hhg-ink); font-weight: 800; }
.hhg-inquiry-summary dd { margin: 0; color: #334155; white-space: pre-line; overflow-wrap: anywhere; }
.hhg-inquiry-summary button {
	min-width: 74px;
	min-height: 44px;
	padding: .4rem .6rem;
	border: 1px solid var(--hhg-petrol);
	border-radius: .5rem;
	background: white;
	color: var(--hhg-petrol);
	font-size: .82rem;
	font-weight: 800;
	cursor: pointer;
}
.hhg-inquiry-summary button:hover { background: var(--hhg-mint); }
.hhg-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.hhg-notice { margin: 1rem 1rem 0; padding: 1rem; border-radius: .65rem; font-weight: 750; }
.hhg-notice--success { border: 2px solid #22c55e; background: #f0fdf4; color: var(--hhg-success); }
.hhg-notice--error { border: 2px solid #fb7185; background: #fff1f2; color: var(--hhg-error); }

.hhg-footer { background: #052b38; color: #c9dde2; }
.hhg-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr; gap: 3rem; padding-block: 4rem; }
.hhg-footer h2 { color: white; font-size: 1.08rem; }
.hhg-footer__logo { width: min(100%, 310px); margin-bottom: 1rem; }
.hhg-footer__links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.hhg-footer a { color: #ccfbf1; }
.hhg-footer__privacy-button { min-height: 44px; margin-top: 1rem; padding: .5rem .7rem; border: 1px solid #99f6e4; border-radius: .45rem; background: transparent; color: #ccfbf1; cursor: pointer; }
.hhg-footer__bottom { padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.hhg-footer__bottom p { margin: 0; font-size: .78rem; }

.hhg-consent {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: end center;
	padding: 1rem;
	background: rgba(3, 24, 32, .58);
}
.hhg-consent[hidden] { display: none; }
.hhg-consent__panel { width: min(720px, 100%); padding: 1.5rem; border-radius: 1rem; background: white; box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.hhg-consent__panel h2 { font-size: 1.45rem; }
.hhg-consent__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }

/*
 * Progressive scroll reveal.
 * Content is visible by default and is hidden only after JavaScript confirms
 * IntersectionObserver and the user's motion preference.
 */
.hhg-reveal-ready .hhg-reveal {
	--hhg-reveal-x: 0;
	--hhg-reveal-y: 22px;
	opacity: 0;
	transform: translate3d(var(--hhg-reveal-x), var(--hhg-reveal-y), 0);
	transition:
		opacity .52s cubic-bezier(.22, 1, .36, 1) var(--hhg-reveal-delay, 0ms),
		transform .68s cubic-bezier(.22, 1, .36, 1) var(--hhg-reveal-delay, 0ms);
	will-change: opacity, transform;
}
.hhg-reveal-ready .hhg-reveal[data-hhg-reveal="left"] {
	--hhg-reveal-x: -24px;
	--hhg-reveal-y: 0;
}
.hhg-reveal-ready .hhg-reveal[data-hhg-reveal="right"] {
	--hhg-reveal-x: 24px;
	--hhg-reveal-y: 0;
}
.hhg-reveal-ready .hhg-reveal.is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: auto;
}

@media (max-width: 1040px) {
	.hhg-menu-toggle { display: inline-flex; }
	.hhg-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		align-items: stretch;
		padding: 1rem;
		border-bottom: 1px solid var(--hhg-line);
		background: white;
		box-shadow: var(--hhg-shadow);
	}
	.hhg-nav.is-open { display: grid; }
	.hhg-nav__list { display: grid; gap: .25rem; }
	.hhg-nav__list a { padding-inline: 1rem; }
	.hhg-nav .hhg-button { width: 100%; }
	.hhg-card-grid--all { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
	:root { --hhg-wrap: min(100% - 1.25rem, 720px); }
	.hhg-header__inner { min-height: 72px; }
	.hhg-brand { flex-basis: 250px; }
	.hhg-hero__grid, .hhg-split, .hhg-page-hero__grid, .hhg-form-shell, .hhg-quick-shell { grid-template-columns: 1fr; }
	.hhg-hero__visual { width: min(100%, 470px); }
	.hhg-trust-strip__grid { grid-template-columns: 1fr 1fr; }
	.hhg-trust-strip__grid > div:nth-child(2) { border-right: 0; }
	.hhg-trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--hhg-line); }
	.hhg-card-grid, .hhg-card-grid--all { grid-template-columns: repeat(2, 1fr); }
	.hhg-process { grid-template-columns: 1fr 1fr; }
	.hhg-area-panel { grid-template-columns: 1fr; }
	.hhg-radius { margin-inline: auto; }
	.hhg-service-mark { width: 170px; height: 170px; margin-inline: auto; }
	.hhg-content-grid, .hhg-three { grid-template-columns: 1fr; }
	.hhg-path-panel, .hhg-area-check { grid-template-columns: 1fr; }
	.hhg-path-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hhg-real-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hhg-form-heading { padding-bottom: 1.5rem; }
	.hhg-footer__grid { grid-template-columns: 1fr 1fr; }
	.hhg-footer__grid > div:first-child { grid-column: 1 / -1; }
	.hhg-form-progress__steps li { display: grid; justify-items: center; text-align: center; }
	.hhg-inquiry-summary dl > div { grid-template-columns: 1fr auto; }
	.hhg-inquiry-summary dd { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 560px) {
	h1 { font-size: clamp(2.1rem, 12vw, 3.25rem); }
	.hhg-brand { flex-basis: 215px; }
	.hhg-menu-toggle > span:last-child { display: none; }
	.hhg-card-grid, .hhg-card-grid--all, .hhg-process, .hhg-audience-list, .hhg-form-grid, .hhg-footer__grid, .hhg-quick-config, .hhg-real-gallery, .hhg-local-grid { grid-template-columns: 1fr; }
	.hhg-trust-strip__grid { grid-template-columns: 1fr; }
	.hhg-trust-strip__grid > div { border-right: 0; border-bottom: 1px solid var(--hhg-line); }
	.hhg-trust-strip__grid > div:last-child { border-bottom: 0; }
	.hhg-section-heading, .hhg-cta__inner { align-items: start; flex-direction: column; }
	.hhg-actions > .hhg-button { width: 100%; }
	.hhg-hero__badge { width: 110px; height: 110px; right: .25rem; bottom: .25rem; }
	.hhg-hero__badge strong { font-size: 1.05rem; }
	.hhg-sitemap { columns: 1; }
	.hhg-consent__actions .hhg-button { width: 100%; }
	.hhg-form-progress__steps li { font-size: .65rem; }
	.hhg-form-progress__steps li > span { width: 26px; height: 26px; flex-basis: 26px; }
	.hhg-form-step__actions { align-items: stretch; flex-direction: column-reverse; }
	.hhg-form-step__actions .hhg-button { width: 100%; }
	.hhg-inquiry-summary__heading { align-items: flex-start; flex-direction: column; }
	.hhg-section-nav { top: 72px; }
	.hhg-section-nav__inner { align-items: stretch; flex-direction: column; gap: 0; padding-top: .35rem; }
	.hhg-section-nav__inner > strong { padding-inline: .25rem; }
	.hhg-section-nav a { min-height: 40px; }
	.hhg-path-tabs { flex-wrap: nowrap; padding-bottom: .25rem; overflow-x: auto; }
	.hhg-path-tab { flex: 0 0 auto; }
	.hhg-path-services { grid-template-columns: 1fr; }
	.hhg-path-service { min-height: 0; }
	.hhg-reveal-ready .hhg-reveal[data-hhg-reveal] {
		--hhg-reveal-x: 0;
		--hhg-reveal-y: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
	.hhg-reveal-ready .hhg-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

@media print {
	.hhg-header, .hhg-footer, .hhg-actions, .hhg-consent, .hhg-form-shell { display: none !important; }
	.hhg-reveal { opacity: 1 !important; transform: none !important; }
	body { color: black; }
	a { color: black; text-decoration: underline; }
}
