:root {
	--hsse-navy: #0b2e59;
	--hsse-blue: #1760a5;
	--hsse-sky: #08a1df;
	--hsse-red: #ed1c2b;
	--hsse-ink: #132033;
	--hsse-muted: #617086;
	--hsse-line: #dfe7ef;
	--hsse-soft: #f3f8fc;
	--hsse-white: #fff;
	--hsse-green: #13a768;
	--hsse-radius: 24px;
	--hsse-shadow: 0 24px 70px rgba(13, 49, 86, .13);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--hsse-ink);
	background: var(--hsse-white);
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
	margin: 0 0 20px;
	color: var(--hsse-navy);
	font-family: "Plus Jakarta Sans", sans-serif;
	line-height: 1.12;
	letter-spacing: -.035em;
}
h1 { font-size: clamp(2.65rem, 5.2vw, 5rem); }
h2 { font-size: clamp(2.05rem, 3.8vw, 3.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 20px; }
.screen-reader-text,
.hsse-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.hsse-skip-link:focus {
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
	border-radius: 8px;
}
.hsse-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}
.hsse-container--narrow { width: min(790px, calc(100% - 40px)); }
.hsse-container--media { width: min(1060px, calc(100% - 40px)); }
.hsse-section { padding: 110px 0; }
.hsse-section--soft { background: var(--hsse-soft); }
.hsse-muted { color: var(--hsse-muted); }

.hsse-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: var(--hsse-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}
.hsse-eyebrow > span {
	display: inline-block;
	width: 26px;
	height: 3px;
	background: var(--hsse-red);
	border-radius: 99px;
}
.hsse-eyebrow--light { color: #cbe9ff; }
.hsse-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-height: 56px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 14px;
	background: var(--hsse-blue);
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hsse-button svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}
.hsse-button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(23, 96, 165, .25); }
.hsse-button--primary { background: var(--hsse-red); }
.hsse-button--primary:hover { box-shadow: 0 14px 32px rgba(237, 28, 43, .24); }
.hsse-button--ghost { border-color: #cbd8e5; background: #fff; color: var(--hsse-navy); }
.hsse-button--white { background: #fff; color: var(--hsse-navy); }
.hsse-button--small { min-height: 44px; padding: 10px 18px; border-radius: 11px; font-size: .92rem; }

.hsse-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(218, 228, 238, .8);
	backdrop-filter: blur(16px);
}
.hsse-header__inner {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 76px;
}
.hsse-brand {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-width: 0;
	line-height: 0;
}
.hsse-brand > a { display: inline-flex; align-items: center; line-height: 0; }
.hsse-brand img {
	display: block;
	width: 160px !important;
	max-width: 160px !important;
	height: auto !important;
	max-height: 44px !important;
	margin: 0 !important;
	object-fit: contain;
	object-position: left center;
}
.hsse-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: 160px;
	max-width: 160px;
	line-height: 0;
}
.hsse-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hsse-nav a {
	color: #39485a;
	font-size: .94rem;
	font-weight: 600;
}
.hsse-nav a:hover, .hsse-nav .current-menu-item > a { color: var(--hsse-blue); }
.hsse-menu-toggle { display: none; }

.hsse-hero {
	position: relative;
	overflow: hidden;
	padding: 80px 0 90px;
	background:
		radial-gradient(circle at 10% 20%, rgba(8, 161, 223, .10), transparent 28%),
		linear-gradient(180deg, #f8fcff, #fff);
}
.hsse-hero::after {
	position: absolute;
	right: -160px;
	bottom: -220px;
	width: 500px;
	height: 500px;
	border: 80px solid rgba(23, 96, 165, .04);
	border-radius: 50%;
	content: "";
}
.hsse-hero__grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; }
.hsse-hero h1 { max-width: 740px; }
.hsse-hero h1::after {
	display: inline-block;
	width: .2em;
	height: .2em;
	margin-left: .08em;
	border-radius: 50%;
	background: var(--hsse-red);
	content: "";
}
.hsse-hero__lead { max-width: 660px; color: var(--hsse-muted); font-size: 1.14rem; }
.hsse-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 40px; }
.hsse-hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hsse-hero__proof div { padding-left: 15px; border-left: 2px solid var(--hsse-line); }
.hsse-hero__proof strong, .hsse-hero__proof span { display: block; }
.hsse-hero__proof strong { color: var(--hsse-navy); font-family: "Plus Jakarta Sans"; font-size: 1.05rem; }
.hsse-hero__proof span { color: var(--hsse-muted); font-size: .78rem; line-height: 1.35; }
.hsse-hero__visual { position: relative; min-width: 0; padding: 20px 0 34px 25px; }
.hsse-hero__image {
	overflow: hidden;
	aspect-ratio: .96;
	border-radius: 38px 38px 120px 38px;
	box-shadow: var(--hsse-shadow);
}
.hsse-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hsse-hero__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 17px;
	border: 1px solid rgba(255,255,255,.75);
	border-radius: 16px;
	background: rgba(255,255,255,.95);
	box-shadow: 0 16px 38px rgba(15, 48, 82, .16);
	backdrop-filter: blur(10px);
}
.hsse-hero__badge--top { top: 2px; right: -15px; }
.hsse-hero__badge--bottom { bottom: 8px; left: -15px; }
.hsse-hero__badge strong, .hsse-hero__badge small { display: block; }
.hsse-hero__badge strong { color: var(--hsse-navy); font-size: .86rem; }
.hsse-hero__badge small { color: var(--hsse-muted); font-size: .72rem; }
.hsse-icon-chip {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: #e9f5ff;
	color: var(--hsse-blue);
	font-weight: 800;
}

.hsse-trust { padding: 32px 0 27px; background: var(--hsse-navy); color: #fff; }
.hsse-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hsse-trust__grid div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 4px 26px;
	border-right: 1px solid rgba(255,255,255,.16);
}
.hsse-trust__grid div:first-child { padding-left: 0; }
.hsse-trust__grid div:last-child { border: 0; }
.hsse-trust__grid span { color: #62c8ef; font-size: .8rem; font-weight: 800; }
.hsse-trust__grid strong { font-family: "Plus Jakarta Sans"; font-size: .94rem; }
.hsse-trust__note { margin-top: 18px; margin-bottom: 0; color: #adbed2; font-size: .72rem; text-align: center; }

.hsse-section-heading { max-width: 760px; margin-bottom: 48px; }
.hsse-section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; max-width: none; gap: 70px; }
.hsse-section-heading--split p:last-child { color: var(--hsse-muted); }
.hsse-section-heading--center { margin-inline: auto; text-align: center; }
.hsse-section-heading--center .hsse-eyebrow { justify-content: center; }
.hsse-program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.hsse-program-card {
	position: relative;
	min-height: 300px;
	padding: 36px;
	border: 1px solid var(--hsse-line);
	border-radius: var(--hsse-radius);
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}
.hsse-program-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(18, 54, 91, .1); }
.hsse-program-card > span, .hsse-service-grid article > span { color: var(--hsse-red); font-weight: 800; font-size: .8rem; }
.hsse-program-card h3 { margin-top: 45px; font-size: 1.8rem; }
.hsse-program-card p { max-width: 510px; color: var(--hsse-muted); }
.hsse-program-card > a { display: inline-flex; gap: 10px; color: var(--hsse-blue); font-weight: 700; }
.hsse-program-card--image { min-height: 450px; padding: 0; overflow: hidden; grid-row: span 2; }
.hsse-program-card--image img { width: 100%; height: 100%; object-fit: cover; }
.hsse-program-card__content {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	padding: 25px;
	border-radius: 18px;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(10px);
}
.hsse-program-card__content h3 { margin: 5px 0 10px; }
.hsse-program-card__content p { margin: 0; font-size: .92rem; }
.hsse-program-card--dark { background: var(--hsse-navy); }
.hsse-program-card--dark h3, .hsse-program-card--dark a { color: #fff; }
.hsse-program-card--dark p { color: #b9c9da; }

.hsse-feature { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; }
.hsse-feature--reverse { grid-template-columns: 1fr 1fr; }
.hsse-feature--reverse .hsse-feature__image { order: 2; }
.hsse-feature__image { position: relative; }
.hsse-feature__image > img { width: 100%; aspect-ratio: 4/4.3; object-fit: cover; border-radius: 32px 32px 100px 32px; box-shadow: var(--hsse-shadow); }
.hsse-feature__stat {
	position: absolute;
	right: -20px;
	bottom: 30px;
	width: 165px;
	padding: 22px;
	border-radius: 18px;
	background: var(--hsse-red);
	color: #fff;
	box-shadow: 0 16px 30px rgba(237, 28, 43, .2);
}
.hsse-feature__stat strong, .hsse-feature__stat span { display: block; }
.hsse-feature__stat strong { font-family: "Plus Jakarta Sans"; font-size: 1.9rem; }
.hsse-feature__stat span { font-size: .75rem; line-height: 1.4; }
.hsse-feature__content > p { color: var(--hsse-muted); }
.hsse-check-list { display: grid; gap: 20px; margin: 35px 0 0; padding: 0; list-style: none; }
.hsse-check-list li { display: flex; gap: 16px; }
.hsse-check-list li > span {
	display: grid;
	flex: 0 0 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #e4f7ef;
	color: var(--hsse-green);
	font-weight: 800;
}
.hsse-check-list strong { color: var(--hsse-navy); font-family: "Plus Jakarta Sans"; }
.hsse-check-list p { margin: 3px 0 0; color: var(--hsse-muted); font-size: .9rem; }
.hsse-check-list--compact { grid-template-columns: repeat(2, 1fr); }

.hsse-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.hsse-steps::before { position: absolute; top: 28px; left: 16%; width: 68%; border-top: 1px dashed #b4c7da; content: ""; }
.hsse-steps article { position: relative; text-align: center; }
.hsse-steps article > span {
	display: grid;
	width: 58px;
	height: 58px;
	margin: 0 auto 25px;
	place-items: center;
	border: 7px solid #eaf4fb;
	border-radius: 50%;
	background: var(--hsse-blue);
	color: #fff;
	font-weight: 800;
	box-sizing: content-box;
}
.hsse-steps h3 { margin-bottom: 10px; }
.hsse-steps p { color: var(--hsse-muted); font-size: .92rem; }

.hsse-section--locations { background: #fff; }
.hsse-location-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	padding: 70px;
	border-radius: 34px;
	background:
		radial-gradient(circle at 85% 20%, rgba(8,161,223,.17), transparent 29%),
		var(--hsse-navy);
	color: #c5d3e1;
}
.hsse-location-panel h2 { color: #fff; }
.hsse-location-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hsse-location-tags a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 18px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 12px;
	background: rgba(255,255,255,.06);
	color: #fff;
	font-weight: 600;
}
.hsse-location-tags a:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.11); }
.hsse-location-tags span { color: #63c7ef; }
.hsse-section--cta { padding-top: 70px; }
.hsse-final-cta {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	gap: 80px;
	padding: 65px 70px;
	border: 1px solid #dce8f2;
	border-radius: 32px;
	background: linear-gradient(135deg, #edf8ff, #fff 65%);
}
.hsse-final-cta p { color: var(--hsse-muted); }

.hsse-city-hero { padding: 40px 0 85px; background: linear-gradient(180deg, #f4faff, #fff); }
.hsse-breadcrumb { margin-bottom: 34px; color: var(--hsse-muted); font-size: .78rem; }
.hsse-city-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hsse-city-hero h1 { font-size: clamp(2.6rem, 4.7vw, 4.55rem); }
.hsse-city-hero__image { position: relative; }
.hsse-city-hero__image > img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 63% center; border-radius: 35px 35px 110px 35px; box-shadow: var(--hsse-shadow); }
.hsse-city-hero__image > div {
	position: absolute;
	bottom: -25px;
	left: -25px;
	padding: 18px 22px;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(13,49,86,.16);
}
.hsse-city-hero__image strong, .hsse-city-hero__image span { display: block; }
.hsse-city-hero__image strong { color: var(--hsse-navy); }
.hsse-city-hero__image span { color: var(--hsse-muted); font-size: .78rem; }
.hsse-city-phone { color: var(--hsse-muted); font-size: .84rem; }
.hsse-trust--city .hsse-trust__grid div { justify-content: center; }
.hsse-city-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.hsse-prose { color: var(--hsse-muted); font-size: 1.03rem; }
.hsse-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hsse-service-grid article { padding: 35px; border: 1px solid var(--hsse-line); border-radius: 22px; background: #fff; }
.hsse-service-grid h3 { margin: 50px 0 12px; }
.hsse-service-grid p { color: var(--hsse-muted); font-size: .9rem; }
.hsse-section--areas { padding: 80px 0; background: var(--hsse-navy); color: #fff; }
.hsse-section--areas h2 { color: #fff; }
.hsse-area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.hsse-area-tags span { padding: 9px 16px; border: 1px solid rgba(255,255,255,.17); border-radius: 99px; background: rgba(255,255,255,.07); font-size: .86rem; }
.hsse-section--areas .hsse-muted { color: #aebfd0; font-size: .82rem; }
.hsse-section--faq { background: var(--hsse-soft); }
.hsse-faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.hsse-faq-layout > div:first-child > p:last-child { color: var(--hsse-muted); }
.hsse-accordion details { padding: 22px 0; border-bottom: 1px solid #d6e1eb; }
.hsse-accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--hsse-navy); cursor: pointer; font-family: "Plus Jakarta Sans"; font-weight: 700; list-style: none; }
.hsse-accordion summary::-webkit-details-marker { display: none; }
.hsse-accordion summary span { color: var(--hsse-red); font-size: 1.4rem; }
.hsse-accordion details[open] summary span { transform: rotate(45deg); }
.hsse-accordion details p { margin: 14px 40px 0 0; color: var(--hsse-muted); font-size: .9rem; }

.hsse-page-hero, .hsse-single__header { padding: 90px 0 70px; background: linear-gradient(180deg, #f3f9fd, #fff); }
.hsse-page-hero h1, .hsse-single__header h1 { max-width: 920px; font-size: clamp(2.4rem, 4.5vw, 4.1rem); }
.hsse-page > .hsse-article-content { padding-top: 80px; padding-bottom: 100px; }
.hsse-single__excerpt { color: var(--hsse-muted); font-size: 1.12rem; }
.hsse-single__image { width: 100%; max-height: 590px; margin-top: 40px; object-fit: cover; border-radius: 28px; }
.hsse-article-content { color: #354457; }
.hsse-article-content > * { max-width: 790px; margin-right: auto; margin-left: auto; }
.hsse-article-content > .alignwide { max-width: 1040px; }
.hsse-article-content > .alignfull { max-width: none; }
.hsse-article-content h2 { margin-top: 55px; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.hsse-article-content h3 { margin-top: 38px; }
.hsse-article-content a { color: var(--hsse-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.hsse-article-content img { border-radius: 20px; }
.hsse-inline-cta { margin-top: 65px; margin-bottom: 100px; padding: 35px; border-radius: 22px; background: var(--hsse-soft); }
.hsse-inline-cta h2 { font-size: 1.7rem; }
.hsse-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 80px; padding-bottom: 40px; }
.hsse-post-card { overflow: hidden; border: 1px solid var(--hsse-line); border-radius: 20px; background: #fff; }
.hsse-post-card__image { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--hsse-soft); }
.hsse-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.hsse-post-card:hover .hsse-post-card__image img { transform: scale(1.03); }
.hsse-post-card > div { padding: 25px; }
.hsse-post-card time { color: var(--hsse-muted); font-size: .75rem; }
.hsse-post-card h2 { margin: 10px 0; font-size: 1.2rem; }
.hsse-post-card p { color: var(--hsse-muted); font-size: .85rem; }
.hsse-post-card > div > a { color: var(--hsse-blue); font-size: .86rem; font-weight: 700; }
.hsse-pagination { padding-bottom: 90px; }

.hsse-footer { padding: 75px 0 25px; background: #071e3a; color: #aebed0; }
.hsse-footer__grid { display: grid; grid-template-columns: 1.2fr .65fr .8fr; gap: 80px; }
.hsse-footer__brand img { width: 175px; height: auto; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .92; }
.hsse-footer__brand p { max-width: 430px; }
.hsse-footer h2 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.hsse-footer ul { margin: 0; padding: 0; list-style: none; }
.hsse-footer li { margin: 8px 0; }
.hsse-footer a:hover { color: #fff; }
.hsse-footer__phone { color: #fff; font-family: "Plus Jakarta Sans"; font-size: 1.25rem; font-weight: 700; }
.hsse-footer__bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.hsse-footer__bottom p { margin: 0; }
.hsse-floating-wa {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 50%;
	background: #16b66c;
	box-shadow: 0 14px 32px rgba(11, 92, 53, .28);
}
.hsse-floating-wa svg { width: 31px; fill: #fff; }

@media (max-width: 1080px) {
	.hsse-header__inner { grid-template-columns: 180px minmax(0, 1fr) auto; gap: 15px; }
	.hsse-nav__list { gap: 16px; }
	.hsse-header__cta { display: none; }
	.hsse-hero__grid, .hsse-city-hero__grid { gap: 42px; }
	.hsse-feature { gap: 50px; }
	.hsse-location-panel { gap: 50px; padding: 55px; }
}

@media (max-width: 860px) {
	.hsse-section { padding: 80px 0; }
	.hsse-header__inner { grid-template-columns: minmax(0, 1fr) auto; min-height: 68px; }
	.hsse-brand img { width: 142px !important; max-width: 142px !important; max-height: 39px !important; }
	.hsse-brand .custom-logo-link { width: 142px; max-width: 142px; }
	.hsse-menu-toggle {
		display: grid;
		width: 44px;
		height: 44px;
		padding: 11px;
		border: 0;
		border-radius: 10px;
		background: var(--hsse-soft);
		place-content: center;
		gap: 5px;
	}
	.hsse-menu-toggle > span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; background: var(--hsse-navy); transition: .2s; }
	.hsse-nav {
		position: fixed;
		top: 68px;
		right: 0;
		left: 0;
		display: none;
		height: calc(100vh - 68px);
		padding: 30px 20px;
		background: #fff;
	}
	.hsse-nav.is-open { display: block; }
	.hsse-nav__list { display: grid; justify-content: stretch; gap: 0; }
	.hsse-nav__list li { border-bottom: 1px solid var(--hsse-line); }
	.hsse-nav__list a { display: block; padding: 15px 4px; font-size: 1.05rem; }
	.hsse-hero { padding-top: 55px; }
	.hsse-hero__grid, .hsse-city-hero__grid, .hsse-feature, .hsse-feature--reverse,
	.hsse-city-intro, .hsse-faq-layout, .hsse-final-cta { grid-template-columns: 1fr; }
	.hsse-hero__visual { max-width: 620px; margin-inline: auto; }
	.hsse-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
	.hsse-trust__grid div { padding: 10px 20px; }
	.hsse-trust__grid div:nth-child(2) { border-right: 0; }
	.hsse-trust__grid div:first-child { padding-left: 20px; }
	.hsse-section-heading--split { grid-template-columns: 1fr; gap: 0; }
	.hsse-feature--reverse .hsse-feature__image { order: 0; }
	.hsse-feature__image { max-width: 600px; }
	.hsse-location-panel { grid-template-columns: 1fr; }
	.hsse-city-intro, .hsse-faq-layout, .hsse-final-cta { gap: 35px; }
	.hsse-post-grid { grid-template-columns: repeat(2, 1fr); }
	.hsse-footer__grid { grid-template-columns: 1.2fr .8fr; }
	.hsse-footer__grid > div:last-child { grid-column: span 2; }
}

@media (max-width: 620px) {
	body { font-size: 16px; }
	.hsse-container { width: min(100% - 28px, 1180px); }
	.hsse-section { padding: 65px 0; }
	h1 { font-size: 2.65rem; }
	h2 { font-size: 2rem; }
	.hsse-hero { padding: 42px 0 65px; }
	.hsse-hero__actions { display: grid; }
	.hsse-button { width: 100%; }
	.hsse-hero__proof { grid-template-columns: 1fr; gap: 12px; }
	.hsse-hero__image { aspect-ratio: .88; border-radius: 28px 28px 72px 28px; }
	.hsse-hero__badge--top { right: 0; }
	.hsse-hero__badge--bottom { left: 0; }
	.hsse-trust__grid { grid-template-columns: 1fr; }
	.hsse-trust__grid div, .hsse-trust__grid div:first-child { padding: 10px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
	.hsse-program-grid, .hsse-service-grid, .hsse-check-list--compact { grid-template-columns: 1fr; }
	.hsse-program-card { min-height: auto; padding: 28px; }
	.hsse-program-card h3 { margin-top: 30px; }
	.hsse-program-card--image { min-height: 480px; padding: 0; }
	.hsse-feature__stat { right: -4px; bottom: 18px; }
	.hsse-steps { grid-template-columns: 1fr; gap: 30px; }
	.hsse-steps::before { display: none; }
	.hsse-location-panel { padding: 35px 25px; }
	.hsse-location-tags { grid-template-columns: 1fr; }
	.hsse-final-cta { padding: 38px 25px; }
	.hsse-city-hero { padding-bottom: 65px; }
	.hsse-city-hero__image > div { bottom: -18px; left: 8px; }
	.hsse-post-grid { grid-template-columns: 1fr; }
	.hsse-footer__grid { grid-template-columns: 1fr; gap: 35px; }
	.hsse-footer__grid > div:last-child { grid-column: auto; }
	.hsse-footer__bottom { display: grid; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .01ms !important; }
}
