/**
 * HLM Design System - shared block styles
 * BEM prefix: hlm-
 */

/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

.hlm-theme img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ─── Layout ───────────────────────────────────────────────── */
.hlm-container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 24px;
}

.hlm-container > .hlm-section-header,
.hlm-container > .hlm-services__header {
	padding-inline: 0;
}

.hlm-container-narrow {
	width: 100%;
	max-width: 900px;
	margin-inline: auto;
	padding-inline: var(--hlm-space-md);
}

.hlm-section {
	padding-block: var(--hlm-space-xl);
}

.hlm-section--sm {
	padding-block: var(--hlm-space-lg);
}

.hlm-section--lg {
	padding-block: var(--hlm-space-2xl);
}

.hlm-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--hlm-space-lg);
	align-items: stretch;
}

.hlm-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--hlm-space-lg);
	align-items: stretch;
}

.hlm-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--hlm-space-lg);
	align-items: stretch;
}

@media (max-width: 1024px) {
	.hlm-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.hlm-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hlm-grid-2,
	.hlm-grid-3,
	.hlm-grid-4 {
		grid-template-columns: 1fr;
	}
}

.hlm-flex {
	display: flex;
}

.hlm-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hlm-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hlm-gap-sm { gap: var(--hlm-space-sm); }
.hlm-gap-md { gap: var(--hlm-space-md); }
.hlm-gap-lg { gap: var(--hlm-space-lg); }

/* ─── Typography ───────────────────────────────────────────── */
.hlm-h1 {
	font-family: var(--hlm-font-heading);
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--hlm-navy-900);
	margin: 0 0 var(--hlm-space-md);
}

.hlm-h2 {
	font-family: var(--hlm-font-heading);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--hlm-navy-900);
	margin: 0 0 var(--hlm-space-md);
}

.hlm-h3 {
	font-family: var(--hlm-font-heading);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.3;
	color: var(--hlm-navy-900);
	margin: 0 0 var(--hlm-space-sm);
}

.hlm-h4 {
	font-family: var(--hlm-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hlm-navy-900);
	margin: 0 0 var(--hlm-space-xs);
}

.hlm-body-lg {
	font-family: var(--hlm-font-body);
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--hlm-gray-700);
}

.hlm-body {
	font-family: var(--hlm-font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hlm-gray-700);
}

.hlm-overline {
	font-family: var(--hlm-font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--hlm-gold-400);
	margin: 0 0 var(--hlm-space-sm);
}

.hlm-quote {
	font-family: var(--hlm-font-accent);
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.6;
	color: var(--hlm-navy-800);
}

.hlm-text-center { text-align: center; }
.hlm-text-gold { color: var(--hlm-gold-400); }
.hlm-text-gray { color: var(--hlm-gray-500); }
.hlm-text-white { color: var(--hlm-white); }
.hlm-text-navy { color: var(--hlm-navy-900); }

/* ─── Colors / Backgrounds ─────────────────────────────────── */
.hlm-bg-navy {
	background-color: var(--hlm-navy-900);
	color: var(--hlm-white);
}

.hlm-bg-navy-950 {
	background-color: var(--hlm-navy-950);
	color: var(--hlm-white);
}

.hlm-bg-cream {
	background-color: var(--hlm-cream);
	color: var(--hlm-neutral);
}

.hlm-bg-white {
	background-color: var(--hlm-white);
	color: var(--hlm-neutral);
}

.hlm-bg-gold {
	background-color: var(--hlm-gold-400);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.hlm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 3rem;
	padding: 0.625rem 1.75rem;
	font-family: var(--hlm-font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	text-align: center;
	border: 2px solid transparent;
	border-radius: var(--hlm-radius-sm);
	cursor: pointer;
	box-sizing: border-box;
	vertical-align: middle;
	appearance: none;
	-webkit-appearance: none;
	transition: background var(--hlm-transition), color var(--hlm-transition), border-color var(--hlm-transition), transform var(--hlm-transition);
}

button.hlm-btn,
input[type="submit"].hlm-btn,
input[type="button"].hlm-btn {
	font-family: inherit;
	margin: 0;
}

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

.hlm-btn--primary {
	background-color: var(--hlm-secondary);
	color: var(--hlm-white);
	border-color: var(--hlm-secondary);
}

.hlm-btn--primary:hover {
	background-color: var(--hlm-navy-700);
	border-color: var(--hlm-navy-700);
	color: var(--hlm-white);
}

.hlm-btn--outline {
	background-color: transparent;
	color: var(--hlm-gold-400);
	border-color: var(--hlm-gold-400);
}

.hlm-btn--outline:hover {
	background-color: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
}

.hlm-btn--dark {
	background-color: var(--hlm-navy-900);
	color: var(--hlm-white);
	border-color: var(--hlm-navy-900);
}

.hlm-btn--dark:hover {
	background-color: var(--hlm-navy-800);
	border-color: var(--hlm-navy-800);
}

.hlm-btn--white {
	background-color: var(--hlm-white);
	color: var(--hlm-navy-900);
	border-color: var(--hlm-white);
}

.hlm-btn--white:hover {
	background-color: var(--hlm-cream);
	border-color: var(--hlm-cream);
}

.hlm-btn--full {
	width: 100%;
}

/* Design-ref button aliases */
.hlm-btn-primary,
.hlm-btn--primary {
	background-color: var(--hlm-secondary);
	color: var(--hlm-white);
	border-color: var(--hlm-secondary);
}

.hlm-btn-primary:hover,
.hlm-btn--primary:hover {
	background-color: var(--hlm-navy-700);
	border-color: var(--hlm-navy-700);
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(74, 144, 217, 0.3);
}

.hlm-btn-outline {
	background: transparent;
	color: var(--hlm-primary);
	border: 1.5px solid rgba(0, 51, 102, 0.25);
}

.hlm-btn-outline:hover {
	border-color: var(--hlm-secondary);
	color: var(--hlm-secondary);
	background: transparent;
}

.hlm-btn--compact {
	min-height: 2.5rem;
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	line-height: 1.25;
}

.hlm-btn-arrow::after {
	content: '→';
	font-size: 1.1em;
	transition: transform var(--hlm-transition);
}

.hlm-btn-arrow:hover::after {
	transform: translateX(4px);
}

/* ─── Section header (home) ────────────────────────────────── */
body.hlm-landing-page .hlm-section {
	padding: 100px 0;
	position: relative;
}

.hlm-section-header {
	max-width: 640px;
	margin: 0 auto 64px;
	padding-inline: 24px;
	text-align: center;
}

.hlm-section-header .hlm-overline {
	margin-bottom: 16px;
	justify-content: center;
}

.hlm-section-header .hlm-overline::before {
	display: none;
}

.hlm-h1 {
	font-family: var(--hlm-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.hlm-h1 em {
	font-family: var(--hlm-font-accent);
	font-style: italic;
	font-weight: 500;
	color: var(--hlm-gold-300);
}

.hlm-h2 em {
	font-family: var(--hlm-font-accent);
	font-style: italic;
	font-weight: 500;
	color: var(--hlm-gold-400);
}

.hlm-overline::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--hlm-gold-400);
}

.hlm-overline {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	letter-spacing: 0.2em;
}

/* ─── Cards ────────────────────────────────────────────────── */
.hlm-card {
	background: var(--hlm-white);
	border-radius: var(--hlm-radius-md);
	padding: var(--hlm-space-lg);
	box-shadow: var(--hlm-shadow);
	transition: transform var(--hlm-transition), box-shadow var(--hlm-transition);
}

.hlm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(5, 13, 26, 0.16);
}

.hlm-card--dark {
	background: var(--hlm-navy-800);
	color: var(--hlm-white);
}

.hlm-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hlm-gold-400);
	border-radius: var(--hlm-radius-sm);
	margin-bottom: var(--hlm-space-md);
	font-size: 1.5rem;
}

.hlm-card__tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: rgba(212, 175, 55, 0.12);
	color: var(--hlm-accent);
	border-radius: 999px;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

/* ─── Forms ────────────────────────────────────────────────── */
.hlm-form-group {
	margin-bottom: var(--hlm-space-md);
}

.hlm-form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hlm-navy-900);
	margin-bottom: 0.375rem;
}

.hlm-form-group input,
.hlm-form-group select,
.hlm-form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--hlm-font-body);
	font-size: 1rem;
	color: var(--hlm-navy-900);
	background: var(--hlm-white);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: var(--hlm-radius-sm);
	transition: border-color var(--hlm-transition);
}

.hlm-form-group input:focus,
.hlm-form-group select:focus,
.hlm-form-group textarea:focus {
	outline: none;
	border-color: var(--hlm-gold-400);
}

.hlm-form-card {
	background: var(--hlm-white);
	border-radius: var(--hlm-radius-lg);
	padding: var(--hlm-space-lg);
	box-shadow: var(--hlm-shadow);
}

/* ─── Hero Block ───────────────────────────────────────────── */
.hlm-hero {
	box-sizing: border-box;
	min-height: 100svh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: visible;
	padding: var(--hlm-hero-top) 0 clamp(24px, 4vh, 48px);
	color: var(--hlm-neutral);
}

.hlm-hero--light {
	background: linear-gradient(145deg, var(--hlm-white) 0%, var(--hlm-light) 45%, rgba(74, 144, 217, 0.14) 100%);
	color: var(--hlm-neutral);
}

.hlm-hero--landing {
	background: var(--hlm-navy-950);
	color: var(--hlm-white);
}

.hlm-hero-bg {
	position: absolute;
	inset: 0;
}

.hlm-hero--light .hlm-hero-bg::before,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 60%, rgba(74, 144, 217, 0.14) 0%, transparent 50%);
}

.hlm-hero--landing .hlm-hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0, 58, 82, 0.4) 0%, transparent 50%);
}

.hlm-hero-grid {
	position: absolute;
	inset: 0;
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hlm-hero--light .hlm-hero-grid,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-grid {
	background-image: linear-gradient(rgba(0, 51, 102, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 51, 102, 0.035) 1px, transparent 1px);
}

.hlm-hero--landing .hlm-hero-grid {
	background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

.hlm-hero-inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
	gap: 64px;
	align-items: center;
}

.hlm-hero-content {
	margin: 0;
}

.hlm-hero-content .hlm-overline {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	color: var(--hlm-gold-500);
}

.hlm-hero-content .hlm-overline::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--hlm-gold-400);
	flex-shrink: 0;
}

.hlm-hero--light .hlm-hero-content .hlm-h1,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-content .hlm-h1 {
	margin-top: 0;
	color: var(--hlm-primary);
}

.hlm-hero--light .hlm-hero-content .hlm-h1 em,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-content .hlm-h1 em {
	font-style: italic;
	color: var(--hlm-secondary);
}

.hlm-hero--landing .hlm-hero-content .hlm-h1 {
	margin-top: 0;
	color: var(--hlm-white);
}

.hlm-hero--landing .hlm-hero-content .hlm-h1 em {
	font-style: italic;
	color: var(--hlm-gold-300);
}

.hlm-hero-inner--content-only {
	grid-template-columns: 1fr;
	max-width: 760px;
}

.hlm-hero-inner--form-only {
	grid-template-columns: minmax(320px, 520px);
	justify-content: center;
	max-width: 640px;
}

.hlm-page-hero + .hlm-hero .hlm-hero-bg,
.hlm-page-hero + .hlm-hero .hlm-hero-grid {
	display: none;
}

.hlm-page-hero + .hlm-hero {
	background: var(--hlm-cream-100);
	color: var(--hlm-neutral);
	padding-block: var(--hlm-space-xl);
}

.hlm-page-hero + .hlm-hero .hlm-hero-content .hlm-h1 {
	color: var(--hlm-primary);
}

.hlm-hero--light .hlm-hero-desc,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-desc {
	font-size: 1.125rem;
	color: var(--hlm-gray-700);
	max-width: 520px;
	margin-bottom: 36px;
}

.hlm-hero--landing .hlm-hero-desc {
	font-size: 1.125rem;
	color: var(--hlm-gray-400);
	max-width: 520px;
	margin-bottom: 36px;
}

.hlm-page-hero + .hlm-hero .hlm-hero-desc {
	color: var(--hlm-gray-700);
}

.hlm-hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hlm-hero--landing .hlm-btn-primary {
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
}

.hlm-hero--landing .hlm-btn-primary:hover {
	background: var(--hlm-gold-300);
}

.hlm-hero--landing .hlm-btn-outline {
	background: transparent;
	color: var(--hlm-white);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hlm-hero--landing .hlm-btn-outline:hover {
	border-color: var(--hlm-gold-400);
	color: var(--hlm-gold-400);
}

.hlm-hero-trust {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.hlm-hero-avatars {
	display: flex;
}

.hlm-hero-avatars img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-left: -10px;
	object-fit: cover;
}

.hlm-hero--light .hlm-hero-avatars img,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-avatars img {
	border: 2px solid var(--hlm-white);
	box-shadow: 0 0 0 1px var(--hlm-cream-dark);
}

.hlm-hero--landing .hlm-hero-avatars img {
	border: 2px solid var(--hlm-navy-950);
}

.hlm-hero-avatars img:first-child {
	margin-left: 0;
}

.hlm-hero-trust-text {
	font-size: 0.875rem;
	color: var(--hlm-gray-500);
	margin: 0;
}

.hlm-hero--light .hlm-hero-trust-text strong,
.hlm-hero:not(.hlm-hero--landing) .hlm-hero-trust-text strong {
	color: var(--hlm-primary);
	font-weight: 600;
}

.hlm-hero--landing .hlm-hero-trust-text {
	color: var(--hlm-gray-400);
}

.hlm-hero--landing .hlm-hero-trust-text strong {
	color: var(--hlm-white);
	font-weight: 600;
}

.hlm-form-placeholder {
	color: var(--hlm-gray-400);
	font-size: 0.9375rem;
	text-align: center;
	padding: 2rem 1rem;
}

/* Hero form card - landing (dark glass) */
.hlm-hero--landing .hlm-form-card {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	padding: 36px;
	box-shadow: none;
	width: 100%;
	overflow: visible;
	max-height: none;
	align-self: center;
}

.hlm-hero--landing .hlm-form-group label {
	color: var(--hlm-gray-300);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hlm-hero--landing .hlm-form-group input,
.hlm-hero--landing .hlm-form-group select,
.hlm-hero--landing .hlm-form-group textarea {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--hlm-white);
}

.hlm-hero--landing .hlm-form-group input::placeholder {
	color: var(--hlm-gray-500);
}

.hlm-hero--landing .hlm-form-group input:focus,
.hlm-hero--landing .hlm-form-group select:focus,
.hlm-hero--landing .hlm-form-group textarea:focus {
	border-color: var(--hlm-gold-400);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.hlm-hero--landing .hlm-form-group select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.hlm-hero--landing .hlm-form-group select option {
	background: var(--hlm-navy-800);
	color: var(--hlm-white);
}

.hlm-hero--landing .hlm-form-group--checkbox label {
	color: var(--hlm-gray-400);
}

.hlm-hero--landing .hlm-form-note {
	color: var(--hlm-gray-500);
}

/* Hero form card - light (default) */
.hlm-hero--light .hlm-form-card,
.hlm-hero:not(.hlm-hero--landing) .hlm-form-card,
.hlm-page-hero + .hlm-hero .hlm-form-card {
	background: var(--hlm-white);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 20px;
	padding: 28px 32px 32px;
	box-shadow: 0 12px 48px rgba(0, 51, 102, 0.08);
	width: 100%;
	overflow: visible;
	max-height: none;
	align-self: center;
}

.hlm-hero .hlm-form-group {
	margin-bottom: 16px;
}

.hlm-hero .hlm-lead-capture .hlm-form-tabs {
	margin-bottom: 18px;
}

.hlm-hero .hlm-form-group label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--hlm-primary);
	margin-bottom: 6px;
	text-transform: none;
	letter-spacing: 0.02em;
}

.hlm-hero .hlm-form-group input,
.hlm-hero .hlm-form-group select,
.hlm-hero .hlm-form-group textarea {
	width: 100%;
	padding: 13px 14px;
	background: var(--hlm-light);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 8px;
	color: var(--hlm-neutral);
	font-size: 0.9375rem;
}

.hlm-hero .hlm-form-group input::placeholder {
	color: var(--hlm-gray-500);
}

.hlm-hero .hlm-form-group input:focus,
.hlm-hero .hlm-form-group select:focus,
.hlm-hero .hlm-form-group textarea:focus {
	outline: none;
	border-color: var(--hlm-secondary);
	background: var(--hlm-white);
	box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.hlm-hero .hlm-form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	cursor: pointer;
}

.hlm-hero .hlm-form-group select option {
	background: var(--hlm-white);
	color: var(--hlm-neutral);
}

.hlm-hero .hlm-form-group--checkbox label {
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--hlm-gray-700);
	opacity: 1;
}

.hlm-hero .hlm-form-note {
	color: var(--hlm-gray-500);
}

.hlm-hero .hlm-lead-capture .hlm-form-section:not(.active) {
	display: none;
}

/* ─── Stats Block ──────────────────────────────────────────── */
.hlm-stats {
	background: linear-gradient(180deg, var(--hlm-white) 0%, rgba(74, 144, 217, 0.07) 100%);
	border-top: 1px solid var(--hlm-cream-dark);
	border-bottom: 1px solid var(--hlm-cream-dark);
	padding: 48px 0;
	color: var(--hlm-neutral);
}

.hlm-stats-grid,
.hlm-stats__grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.hlm-stat-item,
.hlm-stats__item {
	text-align: center;
	position: relative;
}

.hlm-stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50px;
	background: var(--hlm-cream-dark);
}

.hlm-stat-number,
.hlm-stats__number {
	font-family: var(--hlm-font-accent);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--hlm-primary);
	line-height: 1;
}

.hlm-stat-label,
.hlm-stats__label {
	font-size: 0.875rem;
	color: var(--hlm-gray-500);
	font-weight: 500;
	margin-top: 8px;
	text-transform: none;
	letter-spacing: normal;
}

/* ─── Universities Block ───────────────────────────────────── */
.hlm-unis {
	background: var(--hlm-section-bg);
	color: var(--hlm-text-muted);
}

.hlm-unis .hlm-section-header .hlm-overline,
.hlm-unis .hlm-section-header .hlm-h2,
.hlm-unis .hlm-h3 {
	color: var(--hlm-text-primary);
}

.hlm-unis .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-unis-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hlm-uni-card {
	background: var(--hlm-light);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s var(--hlm-ease-out-expo);
}

.hlm-uni-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.hlm-uni-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--hlm-ease-out-expo);
}

.hlm-uni-card:hover .hlm-uni-card__media img {
	transform: scale(1.04);
}

.hlm-uni-card .hlm-uni-badge,
.hlm-uni-card h3,
.hlm-uni-card p,
.hlm-uni-card .hlm-uni-meta {
	margin-left: 32px;
	margin-right: 32px;
}

.hlm-uni-card .hlm-uni-badge {
	margin-top: 24px;
}

.hlm-uni-card h3 {
	margin-top: 0;
	padding-top: 4px;
	margin-bottom: 12px;
}

.hlm-uni-card .hlm-uni-meta {
	margin-bottom: 32px;
}

.hlm-uni-card:hover {
	border-color: rgba(74, 144, 217, 0.35);
	background: var(--hlm-white);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 51, 102, 0.08);
}

.hlm-uni-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--hlm-gold-500);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.hlm-uni-badge svg {
	width: 12px;
	height: 12px;
}

.hlm-uni-card p {
	color: var(--hlm-gray-700);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 16px;
}

.hlm-uni-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hlm-uni-meta span {
	font-size: 0.8rem;
	color: var(--hlm-gray-500);
	display: flex;
	align-items: center;
	gap: 4px;
}

.hlm-uni-meta span svg {
	width: 14px;
	height: 14px;
	color: var(--hlm-gold-400);
}

/* ─── Programs Block ───────────────────────────────────────── */
.hlm-programs {
	background: var(--hlm-section-alt-bg);
	color: var(--hlm-text-muted);
}

.hlm-programs .hlm-section-header .hlm-overline,
.hlm-programs .hlm-section-header .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-programs .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-programs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto;
	padding-inline: 24px;
}

.hlm-program-tag {
	background: var(--hlm-white);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 8px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s;
}

.hlm-program-tag:hover {
	border-color: rgba(74, 144, 217, 0.4);
	background: rgba(74, 144, 217, 0.05);
}

.hlm-program-tag svg {
	width: 18px;
	height: 18px;
	color: var(--hlm-gold-400);
	flex-shrink: 0;
}

.hlm-program-tag span {
	font-size: 0.85rem;
	color: var(--hlm-gray-700);
	font-weight: 500;
}

/* ─── Services Block ───────────────────────────────────────── */
.hlm-services__header {
	text-align: center;
	max-width: 700px;
	margin-inline: auto;
	margin-bottom: var(--hlm-space-xl);
}

.hlm-service-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}

.hlm-service-card .hlm-body {
	flex: 1 1 auto;
}

.hlm-service-card__tags {
	margin-top: var(--hlm-space-sm);
}

.hlm-service-card__cta {
	margin-top: auto;
	padding-top: var(--hlm-space-md);
	align-self: flex-start;
	flex-shrink: 0;
}

/* ─── Process Block ────────────────────────────────────────── */
.hlm-process:not(.hlm-process--strip):not(.hlm-process--cream) {
	background: var(--hlm-white);
	color: var(--hlm-neutral);
}

.hlm-process.hlm-process--cream {
	background: var(--hlm-cream);
	color: var(--hlm-neutral);
}

.hlm-process.hlm-process--cream .hlm-process-card {
	background: var(--hlm-white);
	border-color: var(--hlm-card-border);
	box-shadow: 0 4px 24px rgba(0, 51, 102, 0.06);
}

.hlm-process:not(.hlm-process--strip) .hlm-section-header .hlm-overline,
.hlm-process:not(.hlm-process--strip) .hlm-section-header .hlm-h2,
.hlm-process:not(.hlm-process--strip) .hlm-h4 {
	color: var(--hlm-primary);
}

.hlm-process:not(.hlm-process--strip) .hlm-section-header .hlm-body-lg {
	color: var(--hlm-gray-700);
}

.hlm-process--strip {
	background: var(--hlm-navy-900);
	color: var(--hlm-white);
}

.hlm-process--strip .hlm-h2,
.hlm-process--strip .hlm-h4 {
	color: var(--hlm-white);
}

.hlm-process-grid {
	--hlm-process-bridge: clamp(1.5rem, 2.75vw, 2.5rem);
	--hlm-process-bridge-offset: calc(clamp(1.75rem, 3vw, 2.25rem) + 22px);
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	display: grid;
	gap: 0;
	row-gap: clamp(1.5rem, 3vw, 2rem);
	position: relative;
	align-items: stretch;
}

.hlm-process .hlm-container .hlm-process-grid {
	max-width: none;
	padding: 0;
}

.hlm-process-grid__step {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
}

.hlm-process-grid__bridge {
	position: relative;
	align-self: start;
	width: var(--hlm-process-bridge);
	height: 0;
	margin-top: var(--hlm-process-bridge-offset);
	pointer-events: none;
}

.hlm-process-grid__bridge::before {
	content: '';
	position: absolute;
	left: 0.15rem;
	right: 0;
	top: 50%;
	height: 2px;
	transform: translateY(-50%);
	background: linear-gradient(90deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.85) 100%);
	border-radius: 1px;
}

.hlm-process-grid__bridge::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--hlm-gold-400);
	border-right: 2px solid var(--hlm-gold-400);
	transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1024px) and (min-width: 641px) {
	.hlm-process-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.hlm-process-grid--4 .hlm-process-grid__bridge {
		display: none;
	}
}

@media (max-width: 640px) {
	.hlm-process-grid,
	.hlm-process-grid--4 {
		grid-template-columns: 1fr !important;
	}

	.hlm-process-grid__bridge {
		display: none;
	}
}

.hlm-process-inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
}

.hlm-process-inner .wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin: 0;
	padding: 0;
}

@media (max-width: 900px) {
	.hlm-process-inner .wp-block-columns {
		grid-template-columns: 1fr;
	}
}

.hlm-process-inner .wp-block-column {
	display: block;
	min-width: 0;
}

.hlm-process-inner .wp-block-column .hlm-process-card {
	height: 100%;
}

.hlm-process-inner .hlm-process-card a {
	font-weight: 600;
	color: var(--hlm-secondary);
	text-decoration: none;
}

.hlm-process-inner .hlm-process-card a:hover,
.hlm-process-inner .hlm-process-card a:focus-visible {
	text-decoration: underline;
}

.hlm-process-connector {
	display: none;
}

.hlm-process-card {
	background: var(--hlm-light);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 16px;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	position: relative;
	transition: all 0.4s;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}

.hlm-process-card__head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 1.5rem;
}

.hlm-process-card__head .hlm-process-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 0;
	font-family: var(--hlm-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	color: var(--hlm-navy-950);
	background: var(--hlm-gold-400);
	border-radius: 50%;
	flex-shrink: 0;
}

.hlm-process-card__head .hlm-process-icon {
	margin-bottom: 0;
	width: 44px;
	height: 44px;
}

.hlm-process-card:not(:has(.hlm-process-card__head)) .hlm-process-num {
	font-family: var(--hlm-font-accent);
	font-size: 3.5rem;
	font-weight: 700;
	color: rgba(0, 51, 102, 0.08);
	line-height: 1;
	margin-bottom: 16px;
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
}

.hlm-process-card:hover {
	border-color: rgba(74, 144, 217, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 51, 102, 0.08);
}

.hlm-process-num {
	font-family: var(--hlm-font-accent);
	font-size: 3.5rem;
	font-weight: 700;
	color: rgba(0, 51, 102, 0.08);
	line-height: 1;
	margin-bottom: 16px;
}

.hlm-process-icon {
	width: 52px;
	height: 52px;
	background: rgba(74, 144, 217, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.hlm-process-icon svg {
	width: 24px;
	height: 24px;
	color: var(--hlm-secondary);
}

.hlm-process-card h4 {
	font-size: 1.125rem;
	color: var(--hlm-text-primary);
	margin: 0 0 0.875rem;
}

.hlm-process-card p {
	color: var(--hlm-text-muted);
	font-size: 1rem;
	line-height: 1.65;
	flex: 1 1 auto;
	margin: 0;
}

.hlm-process-card__cta {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	color: var(--hlm-secondary);
	transition: color var(--hlm-transition), gap var(--hlm-transition);
}

.hlm-process-card__cta:hover,
.hlm-process-card__cta:focus-visible {
	color: var(--hlm-navy-700);
}

.hlm-process__step .hlm-process-card__cta {
	justify-content: center;
	width: 100%;
}

.hlm-process__footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

.hlm-process__steps {
	display: grid;
	grid-template-columns: repeat(var(--hlm-process-cols, 3), 1fr);
	gap: var(--hlm-space-lg);
	counter-reset: hlm-step;
}

.hlm-process__step {
	position: relative;
	text-align: center;
	padding: var(--hlm-space-lg);
}

.hlm-process__step::before {
	counter-increment: hlm-step;
	content: counter(hlm-step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto var(--hlm-space-md);
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
	font-family: var(--hlm-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 50%;
}

.hlm-process--strip {
	background: var(--hlm-primary);
	color: var(--hlm-white);
}

.hlm-process--strip .hlm-section-header .hlm-overline {
	color: var(--hlm-gold-400);
}

.hlm-process--strip .hlm-section-header .hlm-h2 {
	color: var(--hlm-white);
}

.hlm-process--strip .hlm-section-header .hlm-body-lg {
	color: var(--hlm-on-dark-muted);
}

.hlm-process--strip .hlm-h4,
.hlm-process--strip .hlm-h3 {
	color: var(--hlm-on-dark);
}

.hlm-process--strip .hlm-body {
	color: var(--hlm-on-dark-muted);
}

.hlm-process--strip .hlm-process__steps {
	gap: 32px;
}

.hlm-process--strip .hlm-process__step {
	padding: 0 8px;
}

/* CTA after process strip: brand CTA only */
.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) {
	background: var(--hlm-surface-brand);
	color: var(--hlm-surface-brand-fg-muted);
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft)::before {
	display: none;
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) .hlm-h2 {
	color: var(--hlm-surface-brand-fg);
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) .hlm-overline {
	color: var(--hlm-surface-brand-fg-accent);
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) .hlm-body-lg,
.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) p {
	color: var(--hlm-surface-brand-fg-muted);
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) .hlm-btn-outline {
	color: var(--hlm-surface-brand-fg);
	border-color: rgba(255, 255, 255, 0.28);
}

.hlm-process--strip + .hlm-cta:not(.hlm-cta--soft) .hlm-btn-outline:hover {
	border-color: var(--hlm-gold-300);
	color: var(--hlm-gold-300);
}

/* Light CTA after dark stats band - brand CTA only (soft keeps cream) */
.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) {
	background: var(--hlm-surface-brand);
	color: var(--hlm-surface-brand-fg-muted);
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft)::before {
	display: block;
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-h2,
.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-cta-inner h2 {
	color: var(--hlm-surface-brand-fg);
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-overline {
	color: var(--hlm-surface-brand-fg-accent);
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-body-lg,
.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) p {
	color: var(--hlm-surface-brand-fg-muted);
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-btn-outline {
	color: var(--hlm-surface-brand-fg);
	border-color: rgba(255, 255, 255, 0.28);
}

.hlm-stats--network + .hlm-cta:not(.hlm-cta--soft) .hlm-btn-outline:hover {
	border-color: var(--hlm-gold-300);
	color: var(--hlm-gold-300);
}

/* SEO page tail on landing pages (stats → FAQ → next steps → CTA) */
body.hlm-landing-page .entry-content > .hlm-seo-faq {
	margin: 0;
}

body.hlm-landing-page .entry-content > .hlm-seo-faq.hlm-section,
body.hlm-landing-page .entry-content > .hlm-seo-intro.hlm-section {
	padding-block: var(--hlm-space-xl);
	background: var(--hlm-cream-100);
}

body.hlm-landing-page .entry-content > .hlm-seo-resource-links--footer {
	margin: 0;
	padding-block: var(--hlm-space-xl);
	background: var(--hlm-white);
}

body.hlm-landing-page .hlm-stats--network:has(+ .hlm-seo-faq),
body.hlm-landing-page .hlm-stats--network:has(+ .hlm-seo-resource-links--footer) {
	padding-bottom: var(--hlm-space-xl);
}

body.hlm-landing-page .hlm-stats--network + .hlm-seo-faq,
body.hlm-landing-page .hlm-stats--network + .hlm-seo-resource-links--footer {
	padding-top: var(--hlm-space-xl);
	border-top: 0;
}

body.hlm-landing-page .hlm-stats--network + .hlm-seo-faq {
	border-top: 0;
}

body.hlm-landing-page .hlm-seo-faq + .hlm-seo-resource-links--footer {
	padding-top: var(--hlm-space-xl);
	padding-bottom: var(--hlm-space-xl);
	border-top: 1px solid var(--hlm-cream-dark);
}

body.hlm-landing-page .hlm-seo-faq:has(+ .hlm-seo-resource-links--footer) {
	padding-bottom: var(--hlm-space-xl);
}

body.hlm-landing-page .hlm-seo-resource-links--footer + .hlm-seo-faq {
	padding-top: var(--hlm-space-md);
	border-top: 0;
}

body.hlm-landing-page .hlm-seo-resource-links--footer:has(+ .hlm-seo-faq) {
	padding-bottom: var(--hlm-space-md);
}

body.hlm-landing-page .hlm-seo-resource-links--footer .hlm-seo-resource-links__actions {
	max-width: 520px;
	padding: 1.25rem 1.5rem;
	background: var(--hlm-cream-100);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: var(--hlm-radius-md);
	box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
}

body.hlm-landing-page .hlm-seo-faq:has(+ .hlm-cta),
body.hlm-landing-page .hlm-seo-resource-links--footer:has(+ .hlm-cta) {
	padding-bottom: var(--hlm-space-xl);
}

body.hlm-landing-page .hlm-seo-faq + .hlm-cta.hlm-section,
body.hlm-landing-page .hlm-seo-resource-links--footer + .hlm-cta.hlm-section {
	padding-top: var(--hlm-space-xl);
}

body.hlm-landing-page .hlm-stats--network + .hlm-seo-faq .hlm-seo-faq__header {
	margin-bottom: 1.5rem;
}

/* Any block section handing off to SEO FAQ / next-steps tail */
body.hlm-landing-page .entry-content > .hlm-section:has(+ .hlm-seo-faq):not(.hlm-cta),
body.hlm-landing-page .entry-content > .hlm-section:has(+ .hlm-seo-resource-links--footer):not(.hlm-cta) {
	padding-bottom: var(--hlm-space-lg);
}

body.hlm-landing-page .entry-content > .hlm-section + .hlm-seo-faq,
body.hlm-landing-page .entry-content > .hlm-section + .hlm-seo-resource-links--footer {
	padding-top: var(--hlm-space-lg);
	border-top: 0;
}

.hlm-stats--network + .hlm-seo-faq {
	padding-top: var(--hlm-space-lg);
	border-top: 0;
}

.hlm-stats--network:has(+ .hlm-seo-faq) {
	padding-bottom: var(--hlm-space-lg);
}

.hlm-seo-faq + .hlm-cta:not(.hlm-cta--soft) {
	background: var(--hlm-surface-brand);
	color: var(--hlm-surface-brand-fg-muted);
}

.hlm-seo-faq + .hlm-cta:not(.hlm-cta--soft)::before {
	display: block;
}

/* ─── Team Block ───────────────────────────────────────────── */
.hlm-team {
	background: var(--hlm-cream);
	color: var(--hlm-neutral);
}

.hlm-team--cards {
	background: var(--hlm-cream-100);
}

.hlm-team .hlm-section-header .hlm-h2,
.hlm-team .hlm-h3 {
	color: var(--hlm-primary);
}

.hlm-team .hlm-section-header .hlm-body-lg,
.hlm-team .hlm-body {
	color: var(--hlm-gray-700);
}

.hlm-team__member {
	text-align: center;
}

.hlm-team__photo {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto var(--hlm-space-md);
	border: 4px solid var(--hlm-gold-400);
}

.hlm-team__role {
	font-size: 0.875rem;
	color: var(--hlm-gold-400);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hlm-team__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.hlm-team-card {
	background: var(--hlm-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 21, 32, 0.06);
	transition: all 0.4s;
}

.hlm-team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 21, 32, 0.12);
}

.hlm-team-card__img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.hlm-team-card__img--placeholder {
	font-size: 3rem;
	color: var(--hlm-gold-400);
}

.hlm-team-card__body {
	padding: 28px 24px;
}

.hlm-team-card__body .hlm-h3,
.hlm-team-card__body .hlm-h4 {
	color: var(--hlm-text-primary);
	margin-bottom: 0.35rem;
}

.hlm-team-card__role {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hlm-text-accent);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 0.875rem;
}

.hlm-team-card__body .hlm-body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--hlm-text-muted);
	max-width: 38rem;
}

/* Leadership variant — clean two-up profile cards */
.hlm-team--leadership {
	background: var(--hlm-section-alt-bg);
	color: var(--hlm-text-muted);
}

.hlm-team--leadership .hlm-section-header {
	max-width: 36rem;
	margin-inline: auto;
	text-align: center;
}

.hlm-team--leadership .hlm-section-header .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-team--leadership .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-team-profiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 1.75rem);
	max-width: 920px;
	margin-inline: auto;
}

.hlm-team-profile {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: 18px;
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
	box-shadow: var(--hlm-shadow);
}

.hlm-team-profile__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hlm-team-profile__avatar,
.hlm-team-profile__photo {
	flex-shrink: 0;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 16px;
}

.hlm-team-profile__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--hlm-navy-800) 0%, var(--hlm-navy-950) 100%);
	border: 1px solid rgba(201, 169, 110, 0.22);
}

.hlm-team-profile__avatar span {
	font-family: var(--hlm-font-heading);
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--hlm-gold-300);
}

.hlm-team-profile__photo {
	object-fit: cover;
	object-position: center top;
	border: 1px solid var(--hlm-card-border);
}

.hlm-team-profile__identity {
	min-width: 0;
}

.hlm-team-profile__name {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	line-height: 1.25;
	color: var(--hlm-text-primary);
}

.hlm-team-profile__role {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--hlm-text-accent);
}

.hlm-team-profile__bio {
	margin: 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--hlm-border-subtle);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--hlm-text-muted);
}

@media (max-width: 768px) {
	.hlm-team-profiles {
		grid-template-columns: 1fr;
		max-width: 28rem;
	}
}

@media (max-width: 1024px) {
	.hlm-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hlm-team__grid {
		grid-template-columns: 1fr;
	}
}

/* ─── Testimonials Block ───────────────────────────────────── */
.hlm-testimonials {
	background: var(--hlm-section-bg);
	color: var(--hlm-text-muted);
}

.hlm-testimonials .hlm-section-header .hlm-h2,
.hlm-testimonials .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-testimonials .hlm-section-header .hlm-body-lg,
.hlm-testimonials .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-testimonials-grid,
.hlm-testimonials__grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hlm-testimonial-card {
	background: var(--hlm-white);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 4px 24px rgba(0, 51, 102, 0.06);
	transition: all 0.4s;
	position: relative;
}

.hlm-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(74, 144, 217, 0.25);
	box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
}

.hlm-testimonial-card::before {
	content: '"';
	font-family: var(--hlm-font-accent);
	font-size: 5rem;
	color: var(--hlm-gold-200);
	line-height: 1;
	position: absolute;
	top: 12px;
	right: 24px;
	opacity: 0.4;
}

.hlm-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 20px;
}

.hlm-stars svg {
	width: 18px;
	height: 18px;
	color: var(--hlm-gold-400);
	fill: var(--hlm-gold-400);
}

.hlm-testimonial-quote {
	font-family: var(--hlm-font-accent);
	font-size: 1.1rem;
	font-style: italic;
	line-height: 1.6;
	color: var(--hlm-neutral);
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}

.hlm-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hlm-testimonial-author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.hlm-testimonial-author h5 {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--hlm-primary);
	margin: 0;
}

.hlm-testimonial-author span {
	font-size: 0.8125rem;
	color: var(--hlm-gray-500);
}

.hlm-testimonial {
	position: relative;
	padding-top: var(--hlm-space-lg);
}

.hlm-testimonial__author {
	margin-top: var(--hlm-space-md);
	font-weight: 600;
	color: var(--hlm-navy-900);
}

.hlm-testimonial__meta {
	font-size: 0.875rem;
	color: var(--hlm-gray-500);
}

/* ─── Blog Block (homepage) ────────────────────────────────── */
.hlm-blog {
	background: var(--hlm-section-alt-bg);
	color: var(--hlm-text-muted);
}

.hlm-blog .hlm-section-header .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-blog .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hlm-blog-card {
	background: var(--hlm-white);
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 51, 102, 0.06);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.hlm-blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(74, 144, 217, 0.25);
	box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
}

.hlm-blog-card__media {
	display: block;
	overflow: hidden;
}

.hlm-blog-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.hlm-blog-card:hover .hlm-blog-card__image {
	transform: scale(1.03);
}

.hlm-blog-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hlm-blog-card__date {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hlm-gold-500);
	margin-bottom: 0.75rem;
}

.hlm-blog-card .hlm-h4 {
	margin: 0 0 0.75rem;
}

.hlm-blog-card .hlm-h4 a {
	color: var(--hlm-primary);
	text-decoration: none;
	transition: color var(--hlm-transition);
}

.hlm-blog-card .hlm-h4 a:hover {
	color: var(--hlm-secondary);
}

.hlm-blog-card__excerpt {
	color: var(--hlm-gray-500);
	margin: 0 0 1rem;
	flex: 1;
}

.hlm-blog-card__link {
	color: var(--hlm-secondary);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9375rem;
}

.hlm-blog-card__link:hover {
	color: var(--hlm-navy-700);
}

.hlm-blog__actions {
	margin-top: 2.5rem;
	text-align: center;
}

.hlm-section__actions {
	margin-top: 2.5rem;
	text-align: center;
}

.hlm-blog__empty {
	text-align: center;
	color: var(--hlm-gray-500);
}

/* ─── CTA Block ────────────────────────────────────────────── */
.hlm-cta {
	background: var(--hlm-navy-950);
	position: relative;
	overflow: hidden;
	color: var(--hlm-white);
}

.hlm-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

.hlm-cta-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hlm-cta .hlm-container {
	display: flex;
	justify-content: center;
}

.hlm-cta .hlm-container .hlm-cta-inner {
	padding-inline: 0;
	width: 100%;
}

.hlm-cta .hlm-overline {
	color: var(--hlm-gold-400);
}

.hlm-cta-inner h2 {
	margin-bottom: 20px;
	color: var(--hlm-white);
}

.hlm-cta-inner p {
	font-size: 1.125rem;
	color: var(--hlm-on-dark-muted);
	margin-bottom: 36px;
}

.hlm-cta-btns,
.hlm-cta__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.hlm-cta .hlm-h2 {
	color: var(--hlm-white);
}

.hlm-cta .hlm-body-lg {
	color: var(--hlm-on-dark-muted);
	max-width: 600px;
	margin-inline: auto;
	margin-bottom: var(--hlm-space-lg);
}

.hlm-cta .hlm-btn-outline {
	color: var(--hlm-white);
	border-color: rgba(255, 255, 255, 0.35);
}

.hlm-cta .hlm-btn-outline:hover {
	border-color: var(--hlm-gold-400);
	color: var(--hlm-gold-400);
	background: transparent;
}

/* ─── Page Hero ────────────────────────────────────────────── */
.hlm-page-hero {
	min-height: 50vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--hlm-header-height) + 48px);
	padding-bottom: 80px;
	background: var(--hlm-navy-950);
	color: var(--hlm-white);
}

.hlm-page-hero__bg,
.hlm-page-hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hlm-page-hero__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 60%, rgba(74, 144, 217, 0.12) 0%, transparent 50%);
}

.hlm-page-hero__grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.hlm-page-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hlm-page-hero__breadcrumbs {
	display: flex;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs {
	margin: 0;
	font-family: var(--hlm-font-body);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs__list {
	justify-content: center;
	gap: 0.25rem 0.4rem;
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs__item:not(:last-child)::after {
	margin-left: 0.4rem;
	color: rgba(255, 255, 255, 0.35);
	opacity: 1;
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs a {
	color: var(--hlm-on-dark-muted, rgba(255, 255, 255, 0.72));
	text-decoration: none;
	transition: color var(--hlm-transition);
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs a:hover {
	color: var(--hlm-gold-400);
	text-decoration: none;
}

.hlm-page-hero__breadcrumbs .hlm-seo-breadcrumbs__item:last-child span {
	color: var(--hlm-gold-400);
}

/* Safety net: hide breadcrumbs if they still render above the hero shell */
body.hlm-theme #inner-wrap > .hlm-seo-breadcrumbs {
	display: none;
}

/* Hide legacy flat SEO link dumps when theme handles placement */
body.hlm-theme .entry-content > .hlm-seo-page-links--top,
body.hlm-theme .entry-content > .hlm-seo-page-links--body {
	display: none;
}

.hlm-seo-page-links--hero {
	margin-top: 1.75rem;
}

.hlm-page-hero .hlm-seo-page-links--hero .hlm-btn--outline {
	color: var(--hlm-gold-400);
	border-color: var(--hlm-gold-400);
}

.hlm-page-hero .hlm-seo-page-links--hero .hlm-btn--outline:hover {
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
	border-color: var(--hlm-gold-400);
}

/* SEO resource links - aligned with section headers + outline buttons */
.hlm-seo-resource-links {
	padding: 2.5rem 0;
}

body.hlm-theme.hlm-single-service .hlm-single-service-wrap .hlm-seo-resource-links,
body.hlm-theme.hlm-single-service .hlm-single-service-wrap .hlm-seo-resource-links--footer {
	padding-block: clamp(2rem, 4vw, 2.5rem);
}

.hlm-seo-resource-links .hlm-container {
	max-width: 1280px;
}

.hlm-seo-resource-links__header {
	max-width: 720px;
	margin: 0 auto 1.25rem;
	padding-inline: 24px;
	text-align: center;
}

.hlm-seo-resource-links__header .hlm-overline {
	justify-content: center;
	margin-bottom: 0;
}

.hlm-seo-resource-links__header .hlm-overline::before {
	display: none;
}

.hlm-seo-resource-links__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1rem;
	max-width: 960px;
	margin: 0 auto;
	padding-inline: 24px;
}

/* Tuck under light homepage hero - same surface, no band break */
.hlm-hero--light + .hlm-seo-resource-links,
.hlm-hero:not(.hlm-hero--landing) + .hlm-seo-resource-links {
	padding-top: 0;
	background: transparent;
}

/* Footer next-steps row - before page CTA band */
.hlm-seo-resource-links--footer {
	padding: 2.5rem 0;
	border-top: 1px solid var(--hlm-cream-dark);
}

.hlm-seo-resource-links--footer .hlm-seo-resource-links__list {
	justify-content: center;
}

/* SEO FAQ accordion - design system */
.hlm-seo-faq {
	border-top: 1px solid var(--hlm-cream-dark);
}


.hlm-seo-faq .hlm-container {
	max-width: 960px;
}

.hlm-seo-faq__header {
	margin-bottom: 2rem;
}

.hlm-seo-faq__header .hlm-overline {
	justify-content: center;
}

.hlm-seo-faq__header .hlm-overline::before {
	display: none;
}

.hlm-seo-faq__header .hlm-h2 {
	margin: 0;
	color: var(--hlm-on-light);
}

.hlm-seo-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hlm-seo-faq__item {
	border: 1px solid var(--hlm-cream-dark);
	border-radius: 12px;
	background: var(--hlm-white);
	box-shadow: 0 2px 12px rgba(0, 51, 102, 0.04);
	overflow: hidden;
	transition: border-color var(--hlm-transition), box-shadow var(--hlm-transition);
}

.hlm-seo-faq__item[open] {
	border-color: rgba(201, 169, 110, 0.45);
	box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
}

.hlm-seo-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	font-family: var(--hlm-font-heading);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--hlm-on-light);
	cursor: pointer;
	list-style: none;
}

.hlm-seo-faq__question::-webkit-details-marker {
	display: none;
}

.hlm-seo-faq__question::after {
	content: '+';
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--hlm-cream-100);
	color: var(--hlm-gold-500);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
	transition: background var(--hlm-transition), color var(--hlm-transition), transform var(--hlm-transition);
}

.hlm-seo-faq__item[open] .hlm-seo-faq__question::after {
	content: '−';
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
}

.hlm-seo-faq__question:hover::after {
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
}

.hlm-seo-faq__answer {
	padding: 0 1.25rem 1.125rem;
	border-top: 1px solid var(--hlm-cream-100);
}

.hlm-seo-faq__answer p {
	margin: 0.875rem 0 0;
	font-family: var(--hlm-font-body);
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--hlm-on-light-muted);
}

.hlm-page-hero__inner .hlm-overline {
	justify-content: center;
	color: var(--hlm-gold-400);
	margin-bottom: 24px;
}

.hlm-page-hero__inner .hlm-overline::before {
	display: none;
}

.hlm-page-hero__inner .hlm-h1 {
	max-width: 800px;
	margin: 0 auto 20px;
	color: var(--hlm-white);
}

body.hlm-single-post .hlm-page-hero__inner .hlm-h1,
body.hlm-single-post .hlm-page-hero__inner .hlm-h1--wide,
body.hlm-single-service .hlm-page-hero__inner .hlm-h1,
body.hlm-single-service .hlm-page-hero__inner .hlm-h1--wide {
	max-width: min(1080px, 92vw);
	line-height: 1.15;
}

.hlm-page-hero__inner .hlm-body-lg {
	max-width: 640px;
	margin: 0 auto;
	color: var(--hlm-on-dark-muted);
}

/* ─── Partner Showcase ─────────────────────────────────────── */
.hlm-partner-showcase {
	background: var(--hlm-section-alt-bg);
	color: var(--hlm-text-primary);
}

.hlm-partner-showcase--story {
	background: var(--hlm-section-alt-bg);
}

.hlm-partner-showcase__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hlm-partner-showcase--story .hlm-partner-showcase__grid {
	gap: 80px;
}

.hlm-partner-showcase__content .hlm-overline {
	color: var(--hlm-text-accent);
}

.hlm-partner-showcase__content .hlm-h2 {
	color: var(--hlm-text-primary);
	margin-bottom: 24px;
}

.hlm-partner-showcase__copy {
	color: var(--hlm-text-muted);
}

.hlm-partner-showcase__copy p {
	margin-bottom: 20px;
}

.hlm-partner-showcase__copy p:last-child {
	margin-bottom: 0;
}

.hlm-partner-showcase__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 36px;
}

.hlm-partner-showcase__stats--row {
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hlm-partner-showcase__stats--full {
	margin-top: 48px;
}

.hlm-partner-showcase__stats--row .hlm-partner-showcase__stat-number {
	white-space: nowrap;
}

.hlm-partner-showcase__stat {
	text-align: center;
	padding: 24px 16px;
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
	border-radius: 12px;
}

.hlm-partner-showcase__stat-number {
	font-family: var(--hlm-font-heading);
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--hlm-primary);
	line-height: 1;
}

.hlm-partner-showcase__stat-label {
	font-size: 0.875rem;
	color: var(--hlm-text-muted);
	margin-top: 8px;
}

.hlm-partner-showcase__visual {
	position: relative;
}

.hlm-partner-showcase__image {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.hlm-partner-showcase--story .hlm-partner-showcase__image {
	height: 480px;
}

.hlm-partner-showcase__badge {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.9rem;
	white-space: nowrap;
	box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

/* ─── Partner Cards ────────────────────────────────────────── */
.hlm-partners {
	background: var(--hlm-section-bg);
	color: var(--hlm-text-primary);
}

.hlm-partners .hlm-section-header .hlm-overline {
	color: var(--hlm-text-accent);
}

.hlm-partners .hlm-section-header .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-partners .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-partners-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hlm-partner-card {
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
	border-radius: 16px;
	padding: 36px 32px;
	text-align: center;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hlm-partner-card:hover {
	border-color: var(--hlm-card-hover-border);
	background: var(--hlm-card-hover-bg);
	transform: translateY(-4px);
	box-shadow: var(--hlm-shadow-card-hover);
}

.hlm-partner-card__logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: rgba(74, 144, 217, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--hlm-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hlm-primary);
}

.hlm-partner-card .hlm-h4 {
	color: var(--hlm-text-primary);
	margin-bottom: 10px;
}

.hlm-partner-card .hlm-body {
	color: var(--hlm-text-muted);
	font-size: 0.875rem;
	margin-bottom: 16px;
}

.hlm-partner-card__meta {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: rgba(74, 144, 217, 0.08);
	border: 1px solid rgba(74, 144, 217, 0.15);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--hlm-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ─── Affiliation Block ────────────────────────────────────── */
.hlm-affiliation--benefits {
	background: var(--hlm-section-alt-bg);
	color: var(--hlm-text-muted);
}

.hlm-affiliation--benefits .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-affiliation--benefits .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-affiliation-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.hlm-affiliation-benefit {
	background: var(--hlm-white);
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 4px 24px rgba(0, 51, 102, 0.06);
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: transform 0.3s, box-shadow 0.3s;
}

.hlm-affiliation-benefit:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
}

.hlm-affiliation-benefit__icon {
	width: 52px;
	height: 52px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.25rem;
}

.hlm-affiliation-benefit__content .hlm-h4 {
	color: var(--hlm-primary);
	margin-bottom: 6px;
}

.hlm-affiliation-benefit__content .hlm-body {
	color: var(--hlm-gray-500);
	font-size: 0.875rem;
}

.hlm-stats--network {
	background: var(--hlm-primary);
	color: var(--hlm-white);
	padding-block: var(--hlm-space-xl);
	border: 0;
}

.hlm-stats--network .hlm-section-header .hlm-overline {
	color: var(--hlm-gold-400);
}

.hlm-stats--network .hlm-section-header .hlm-h2 {
	color: var(--hlm-white);
}

.hlm-stats--network .hlm-section-header .hlm-body-lg {
	color: var(--hlm-on-dark-muted);
}

.hlm-stats--network .hlm-stat-number,
.hlm-stats--network .hlm-stats__number {
	color: var(--hlm-on-dark, var(--hlm-white));
}

.hlm-stats--network .hlm-stat-label,
.hlm-stats--network .hlm-stats__label {
	color: var(--hlm-on-dark-muted, rgba(255, 255, 255, 0.82));
}

.hlm-network-visual {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
}

.hlm-network-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
	pointer-events: none;
}

.hlm-stats-grid--network {
	position: relative;
	z-index: 1;
	max-width: none;
	padding: 0;
}

.hlm-stats--network .hlm-stat-item::after {
	display: none;
}

.hlm-affiliation__header {
	text-align: center;
	margin-bottom: var(--hlm-space-xl);
}

.hlm-affiliation__logo {
	max-width: 200px;
	margin: 0 auto var(--hlm-space-md);
}

.hlm-benefit {
	text-align: center;
	padding: var(--hlm-space-lg);
}

.hlm-benefit__icon {
	font-size: 2.5rem;
	margin-bottom: var(--hlm-space-md);
}

/* ─── Policy Block ─────────────────────────────────────────── */
.hlm-policy__section {
	margin-bottom: var(--hlm-space-xl);
}

.hlm-policy__section h3 {
	font-family: var(--hlm-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--hlm-space-sm);
	color: var(--hlm-primary);
}

.hlm-policy__section ul {
	padding-left: 1.5rem;
	margin: var(--hlm-space-sm) 0;
}

.hlm-policy__section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.hlm-policy__updated {
	font-size: 0.875rem;
	color: var(--hlm-gray-500);
	margin-bottom: var(--hlm-space-lg);
}

/* ─── Why Us Block ─────────────────────────────────────────── */
.hlm-pillar {
	text-align: center;
	padding: var(--hlm-space-lg);
}

.hlm-pillar__icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--hlm-space-md);
	background: var(--hlm-navy-900);
	color: var(--hlm-gold-400);
	border-radius: 50%;
	font-size: 1.75rem;
}

.hlm-why-us--values {
	background: var(--hlm-section-bg);
	color: var(--hlm-text-primary);
	border-top: 1px solid var(--hlm-border-subtle);
}

.hlm-why-us--values .hlm-section-header .hlm-overline,
.hlm-why-us--values .hlm-section-header .hlm-h2 {
	color: var(--hlm-text-primary);
}

.hlm-why-us--values .hlm-section-header .hlm-body-lg {
	color: var(--hlm-text-muted);
}

.hlm-why-us__values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.hlm-value-card {
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
	border-radius: 16px;
	padding: 40px 32px;
	text-align: center;
	transition: all 0.4s var(--hlm-ease-out-expo, ease);
}

.hlm-value-card:hover {
	border-color: var(--hlm-card-hover-border);
	background: var(--hlm-card-hover-bg);
	transform: translateY(-4px);
	box-shadow: var(--hlm-shadow-card-hover);
}

.hlm-value-card__icon {
	width: 64px;
	height: 64px;
	background: rgba(74, 144, 217, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	color: var(--hlm-secondary);
}

.hlm-value-card .hlm-h3 {
	color: var(--hlm-text-primary);
	margin-bottom: 10px;
}

.hlm-value-card .hlm-body {
	color: var(--hlm-text-muted);
	font-size: 0.875rem;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.hlm-why-us__values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hlm-why-us__values-grid {
		grid-template-columns: 1fr;
	}
}

/* ─── Timeline Block ───────────────────────────────────────── */
.hlm-timeline {
	background: var(--hlm-navy-900);
	color: var(--hlm-white);
}

.hlm-timeline--light {
	background: var(--hlm-cream);
	color: var(--hlm-navy-950);
}

.hlm-timeline .hlm-section-header .hlm-overline,
.hlm-timeline .hlm-section-header .hlm-h2 {
	color: var(--hlm-white);
}

.hlm-timeline .hlm-section-header .hlm-body-lg {
	color: var(--hlm-on-dark-muted);
}

.hlm-timeline--light .hlm-section-header .hlm-overline,
.hlm-timeline--light .hlm-section-header .hlm-h2 {
	color: var(--hlm-navy-950);
}

.hlm-timeline--light .hlm-section-header .hlm-body-lg {
	color: var(--hlm-gray-500);
}

.hlm-timeline__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

.hlm-timeline__line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.2), transparent);
	transform: translateX(-50%);
}

.hlm-timeline--light .hlm-timeline__line {
	background: linear-gradient(180deg, transparent, rgba(166, 139, 75, 0.35), rgba(166, 139, 75, 0.35), transparent);
}

.hlm-timeline__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 60px;
	position: relative;
}

.hlm-timeline__item:last-child {
	margin-bottom: 0;
}

.hlm-timeline__item:nth-child(even) .hlm-timeline__content {
	grid-column: 2;
}

.hlm-timeline__item:nth-child(even) .hlm-timeline__year {
	grid-column: 1;
	text-align: right;
}

.hlm-timeline__dot {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	background: var(--hlm-gold-400);
	border-radius: 50%;
	border: 3px solid var(--hlm-navy-900);
	box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
	z-index: 1;
}

.hlm-timeline--light .hlm-timeline__dot {
	border-color: var(--hlm-cream);
	box-shadow: 0 0 0 4px rgba(166, 139, 75, 0.2);
}

.hlm-timeline__year {
	font-family: var(--hlm-font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--hlm-gold-400);
	opacity: 0.3;
	line-height: 1;
}

.hlm-timeline--light .hlm-timeline__year {
	color: var(--hlm-gold-500);
	opacity: 0.45;
}

.hlm-timeline__content {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 28px;
}

.hlm-timeline--light .hlm-timeline__content {
	background: var(--hlm-white);
	border: 1px solid rgba(0, 21, 32, 0.08);
	box-shadow: 0 4px 24px rgba(0, 21, 32, 0.06);
}

.hlm-timeline__content .hlm-h4 {
	color: var(--hlm-white);
	margin-bottom: 8px;
}

.hlm-timeline--light .hlm-timeline__content .hlm-h4 {
	color: var(--hlm-navy-950);
}

.hlm-timeline__content .hlm-body {
	font-size: 0.875rem;
	color: var(--hlm-on-dark-muted);
	line-height: 1.6;
}

.hlm-timeline--light .hlm-timeline__content .hlm-body {
	color: var(--hlm-on-light-subtle);
}

@media (max-width: 768px) {
	.hlm-timeline__item,
	.hlm-timeline__item:nth-child(even) {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-left: 48px;
	}

	.hlm-timeline__item:nth-child(even) .hlm-timeline__content,
	.hlm-timeline__item:nth-child(even) .hlm-timeline__year {
		grid-column: 1;
		text-align: left;
	}

	.hlm-timeline__line {
		left: 20px;
		transform: none;
	}

	.hlm-timeline__dot {
		left: 20px;
		transform: translate(-50%, -50%);
	}
}

/* ─── Contact Block ────────────────────────────────────────── */
.hlm-contact__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--hlm-space-lg);
}

.hlm-contact__item {
	text-align: center;
	padding: var(--hlm-space-lg);
}

.hlm-contact__item-icon {
	font-size: 2rem;
	color: var(--hlm-gold-400);
	margin-bottom: var(--hlm-space-sm);
}

@media (max-width: 768px) {
	.hlm-contact__grid {
		grid-template-columns: 1fr;
	}
}

/* Contact inquiry layout (Contact Us page) */
.hlm-contact--inquiry {
	padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.hlm-contact-inquiry {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.hlm-contact-inquiry__aside .hlm-h2 {
	margin-bottom: 1rem;
	text-wrap: balance;
}

.hlm-contact-inquiry__intro {
	margin: 0 0 2rem;
	color: var(--hlm-text-muted);
	max-width: 34rem;
}

.hlm-contact-inquiry__channels {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hlm-contact-inquiry__channel {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 1.125rem;
	border-radius: 14px;
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
}

.hlm-contact-inquiry__channel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 10px;
	background: rgba(74, 144, 217, 0.1);
	color: var(--hlm-secondary);
}

.hlm-contact-inquiry__channel-icon svg {
	width: 1.2rem;
	height: 1.2rem;
}

.hlm-contact-inquiry__channel-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hlm-text-accent);
	margin-bottom: 0.25rem;
}

.hlm-contact-inquiry__channel-value {
	display: block;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--hlm-text-primary);
	text-decoration: none;
}

a.hlm-contact-inquiry__channel-value:hover {
	color: var(--hlm-secondary);
}

.hlm-contact-inquiry__meta {
	padding-top: 1.25rem;
	border-top: 1px solid var(--hlm-border-subtle);
}

.hlm-contact-inquiry__note,
.hlm-contact-inquiry__hours {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--hlm-text-muted);
}

.hlm-contact-inquiry__note {
	font-weight: 600;
	color: var(--hlm-text-primary);
	margin-bottom: 0.35rem;
}

.hlm-contact-inquiry__form {
	position: sticky;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--hlm-header-height) + 24px);
	padding: clamp(1.5rem, 3vw, 2rem);
	border-radius: 20px;
	box-shadow: var(--hlm-shadow-elevated);
	background: var(--hlm-surface-raised);
	border: 1px solid var(--hlm-card-border);
	align-self: start;
}

.hlm-contact-inquiry__form-title {
	margin: 0 0 1.25rem;
	color: var(--hlm-text-primary);
}

@media (max-width: 960px) {
	.hlm-contact-inquiry {
		grid-template-columns: 1fr;
	}

	.hlm-contact-inquiry__form {
		position: static;
	}
}

/* ─── Overview Block ───────────────────────────────────────── */
.hlm-overview {
	background: var(--hlm-white);
	color: var(--hlm-neutral);
}

.hlm-overview .hlm-h2 {
	color: var(--hlm-primary);
}

.hlm-overview .hlm-body-lg {
	color: var(--hlm-gray-700);
	max-width: 800px;
	margin-inline: auto;
}


/* Legacy team section styles (profile variant on light bg) */
.hlm-team:not(.hlm-team--cards) {
	background: var(--hlm-light);
}

/* ─── Header / Footer (template parts) ─────────────────────── */
.hlm-header {
	background: var(--hlm-white);
	padding-block: var(--hlm-space-sm);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--hlm-cream-dark);
}

.hlm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hlm-header__logo {
	font-family: var(--hlm-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hlm-primary);
	text-decoration: none;
}

.hlm-header__logo span {
	color: var(--hlm-gold-400);
}

.hlm-nav {
	display: flex;
	gap: var(--hlm-space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.hlm-nav a {
	color: var(--hlm-neutral);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color var(--hlm-transition);
}

.hlm-nav a:hover,
.hlm-nav a.is-active {
	color: var(--hlm-secondary);
}

.hlm-footer {
	background: #001a33;
	color: rgba(255, 255, 255, 0.75);
	padding-block: 80px 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hlm-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.hlm-footer__brand-name {
	font-family: var(--hlm-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hlm-white);
	margin-bottom: var(--hlm-space-sm);
}

.hlm-footer__brand p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9375rem;
	line-height: 1.7;
	max-width: 320px;
	margin: 0;
}

.hlm-footer__col h4 {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--hlm-white);
	margin: 0 0 20px;
}

.hlm-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hlm-footer__links li {
	margin-bottom: 12px;
	font-size: 0.9375rem;
}

.hlm-footer__links a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color var(--hlm-transition);
}

.hlm-footer__links a:hover {
	color: var(--hlm-gold-400);
}

.hlm-footer__links span {
	color: rgba(255, 255, 255, 0.65);
}

.hlm-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.hlm-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.hlm-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	background: rgba(212, 175, 55, 0.12);
	color: var(--hlm-gold-400);
}

.hlm-footer__contact-icon svg {
	width: 1rem;
	height: 1rem;
}

.hlm-footer__contact-item a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: color var(--hlm-transition);
}

.hlm-footer__contact-item a:hover,
.hlm-footer__contact-item a:focus-visible {
	color: var(--hlm-gold-400);
}

.hlm-footer__contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-height: 2.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(212, 175, 55, 0.45);
	background: rgba(212, 175, 55, 0.08);
	color: var(--hlm-white);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		background var(--hlm-transition),
		border-color var(--hlm-transition),
		color var(--hlm-transition),
		transform var(--hlm-transition);
}

.hlm-footer__contact-btn:hover,
.hlm-footer__contact-btn:focus-visible {
	background: var(--hlm-gold-400);
	border-color: var(--hlm-gold-400);
	color: var(--hlm-navy-950);
	transform: translateY(-1px);
}

.hlm-footer__contact-btn .hlm-footer__contact-icon {
	width: 1.75rem;
	height: 1.75rem;
	background: rgba(255, 255, 255, 0.08);
}

.hlm-footer__contact-btn:hover .hlm-footer__contact-icon,
.hlm-footer__contact-btn:focus-visible .hlm-footer__contact-icon {
	background: rgba(0, 21, 32, 0.12);
	color: var(--hlm-navy-950);
}

.hlm-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: var(--hlm-space-md);
	text-align: center;
	font-size: 0.8125rem;
}

.hlm-footer__bottom p {
	margin: 0;
	color: var(--hlm-on-dark-subtle);
}

/* ─── Surface contrast guardrails ──────────────────────────── */
.hlm-bg-cream,
.hlm-bg-white,
.hlm-policy,
.hlm-contact,
.hlm-services,
.hlm-team,
.hlm-team--cards,
.hlm-unis,
.hlm-programs,
.hlm-testimonials,
.hlm-blog,
.hlm-affiliation--benefits,
.hlm-process:not(.hlm-process--strip),
.hlm-timeline--light,
.hlm-page-hero + .hlm-hero {
	color: var(--hlm-on-light-muted);
}

.hlm-bg-cream .hlm-h1,
.hlm-bg-cream .hlm-h2,
.hlm-bg-cream .hlm-h3,
.hlm-bg-cream .hlm-h4,
.hlm-bg-white .hlm-h1,
.hlm-bg-white .hlm-h2,
.hlm-bg-white .hlm-h3,
.hlm-bg-white .hlm-h4,
.hlm-policy .hlm-h1,
.hlm-policy .hlm-h2,
.hlm-policy .hlm-h3,
.hlm-policy .hlm-h4,
.hlm-contact .hlm-h2,
.hlm-contact .hlm-h3,
.hlm-contact .hlm-h4,
.hlm-services .hlm-h2,
.hlm-services .hlm-h3,
.hlm-services .hlm-h4,
.hlm-team .hlm-h2,
.hlm-team .hlm-h3,
.hlm-affiliation--benefits .hlm-h2,
.hlm-affiliation--benefits .hlm-h4,
.hlm-process:not(.hlm-process--strip) .hlm-h2,
.hlm-process:not(.hlm-process--strip) .hlm-h4,
.hlm-timeline--light .hlm-h2,
.hlm-timeline--light .hlm-h4 {
	color: var(--hlm-on-light);
}

.hlm-bg-cream .hlm-body,
.hlm-bg-cream .hlm-body-lg,
.hlm-bg-white .hlm-body,
.hlm-bg-white .hlm-body-lg,
.hlm-policy .hlm-body,
.hlm-policy .hlm-body-lg,
.hlm-contact .hlm-body,
.hlm-services .hlm-body,
.hlm-services .hlm-body-lg,
.hlm-team .hlm-body,
.hlm-team .hlm-body-lg,
.hlm-affiliation--benefits .hlm-body,
.hlm-affiliation--benefits .hlm-body-lg,
.hlm-process:not(.hlm-process--strip) .hlm-body-lg,
.hlm-timeline--light .hlm-body,
.hlm-timeline--light .hlm-body-lg {
	color: var(--hlm-on-light-muted);
}

.hlm-page-hero,
.hlm-partner-showcase,
.hlm-partners,
.hlm-stats--network,
.hlm-process--strip,
.hlm-why-us--values,
.hlm-timeline:not(.hlm-timeline--light),
.hlm-cta {
	color: var(--hlm-on-dark-muted);
}

.hlm-page-hero .hlm-h1,
.hlm-partner-showcase .hlm-h2,
.hlm-partners .hlm-h2,
.hlm-partners .hlm-h4,
.hlm-stats--network .hlm-h2,
.hlm-process--strip .hlm-h2,
.hlm-process--strip .hlm-h4,
.hlm-why-us--values .hlm-h2,
.hlm-why-us--values .hlm-h3,
.hlm-timeline:not(.hlm-timeline--light) .hlm-h2,
.hlm-timeline:not(.hlm-timeline--light) .hlm-h4,
.hlm-cta .hlm-h2 {
	color: var(--hlm-on-dark);
}

.hlm-card--dark .hlm-h3,
.hlm-card--dark .hlm-h4,
.hlm-card--dark .hlm-body {
	color: var(--hlm-on-dark);
}

.hlm-card--dark .hlm-body {
	color: var(--hlm-on-dark-muted);
}

.hlm-timeline:not(.hlm-timeline--light) .hlm-timeline__content .hlm-body {
	color: var(--hlm-on-dark-muted);
}

.hlm-policy {
	background: var(--hlm-white);
}

.hlm-policy .hlm-body,
.hlm-policy .hlm-policy__section li {
	color: var(--hlm-on-light-muted);
}

.hlm-contact .hlm-card a {
	color: var(--hlm-secondary);
}

.hlm-contact .hlm-card a:hover {
	color: var(--hlm-navy-700);
}

/* Homepage only: light CTA band to match lighter landing theme */
body.home .entry-content > .hlm-cta {
	background: linear-gradient(135deg, rgba(74, 144, 217, 0.12) 0%, var(--hlm-white) 45%, rgba(212, 175, 55, 0.1) 100%);
	border-top: 1px solid var(--hlm-cream-dark);
	color: var(--hlm-on-light);
}

body.home .entry-content > .hlm-cta::before {
	background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74, 144, 217, 0.06) 0%, transparent 60%);
}

body.home .entry-content > .hlm-cta .hlm-overline {
	color: var(--hlm-gold-500);
}

body.home .entry-content > .hlm-cta .hlm-h2,
body.home .entry-content > .hlm-cta-inner h2 {
	color: var(--hlm-on-light);
}

body.home .entry-content > .hlm-cta .hlm-body-lg,
body.home .entry-content > .hlm-cta-inner p {
	color: var(--hlm-on-light-muted);
}

body.home .entry-content > .hlm-cta .hlm-btn-outline {
	color: var(--hlm-on-light);
	border-color: rgba(0, 51, 102, 0.25);
}

body.home .entry-content > .hlm-cta .hlm-btn-outline:hover {
	border-color: var(--hlm-secondary);
	color: var(--hlm-secondary);
}

@media (max-width: 768px) {
	.hlm-header__inner {
		flex-direction: column;
		gap: var(--hlm-space-sm);
	}

	.hlm-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--hlm-space-sm);
	}

	.hlm-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1024px) {
	.hlm-hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
		max-width: min(560px, 100%);
	}

	body.home .hlm-hero-inner,
	body.hlm-landing-page .hlm-hero-inner {
		max-width: min(640px, 100%);
	}

	.hlm-hero .hlm-form-card {
		max-width: none;
		margin-inline: 0;
	}

	.hlm-stats-grid,
	.hlm-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-stat-item:nth-child(2)::after {
		display: none;
	}

	.hlm-unis-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-programs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.hlm-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-partner-showcase__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hlm-partner-showcase__stats--row {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-partner-showcase__image {
		height: 360px;
	}

	.hlm-partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-affiliation-benefits-grid {
		grid-template-columns: 1fr;
	}

	.hlm-stats-grid--network {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-process-grid:not(.hlm-process-grid--4) {
		grid-template-columns: 1fr !important;
	}

	.hlm-process-grid:not(.hlm-process-grid--4) .hlm-process-grid__bridge {
		display: none;
	}

	.hlm-process__steps--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-testimonials-grid,
	.hlm-testimonials__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hlm-section {
		padding: 60px 0;
	}

	.hlm-stats-grid,
	.hlm-stats__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.hlm-stat-item::after {
		display: none !important;
	}

	.hlm-unis-grid,
	.hlm-programs-grid {
		grid-template-columns: 1fr;
	}

	.hlm-hero-btns,
	.hlm-cta-btns,
	.hlm-cta__actions {
		flex-direction: column;
	}

	.hlm-hero-btns .hlm-btn,
	.hlm-cta-btns .hlm-btn {
		width: 100%;
	}

	.hlm-process__steps {
		grid-template-columns: 1fr;
	}

	.hlm-blog-grid {
		grid-template-columns: 1fr;
	}

	.hlm-page-hero {
		min-height: 40vh;
		padding-bottom: 60px;
	}

	.hlm-partner-showcase__stats,
	.hlm-partner-showcase__stats--row {
		grid-template-columns: repeat(2, 1fr);
	}

	.hlm-partners-grid {
		grid-template-columns: 1fr;
	}

	.hlm-stats-grid--network {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}

/* ─── Animation ────────────────────────────────────────────── */
.hlm-animate {
	opacity: 0;
	transform: translate3d(0, var(--hlm-motion-distance, 24px), 0);
	transition:
		opacity var(--hlm-motion-duration, 0.65s) var(--hlm-ease-out-expo),
		transform var(--hlm-motion-duration, 0.65s) var(--hlm-ease-out-expo);
}

.hlm-animate.is-visible,
.hlm-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

.hlm-animate--delay-1,
.hlm-animate-delay-1 { transition-delay: 0.1s; }
.hlm-animate--delay-2,
.hlm-animate-delay-2 { transition-delay: 0.2s; }
.hlm-animate--delay-3,
.hlm-animate-delay-3 { transition-delay: 0.3s; }
.hlm-animate--delay-4,
.hlm-animate-delay-4 { transition-delay: 0.4s; }
.hlm-animate--delay-5 { transition-delay: 0.5s; }
.hlm-animate--delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
	.hlm-animate {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
