:root {
	--mdh-green: #076c35;
	--mdh-green-dark: #04592b;
	--mdh-green-deep: #034724;
	--mdh-green-soft: rgba(255, 255, 255, 0.09);
	--mdh-gold: #f3a31a;
	--mdh-gold-soft: #ffd47a;
	--mdh-ink: #133320;
	--mdh-muted: #5d7167;
	--mdh-surface: #f7f3ea;
	--mdh-card: #ffffff;
	--mdh-line: rgba(19, 51, 32, 0.12);
	--mdh-shadow: 0 20px 45px rgba(10, 41, 22, 0.14);
	--mdh-radius-xl: 28px;
	--mdh-radius-lg: 22px;
	--mdh-radius-md: 16px;
}

body.mdh-shell {
	font-family: var(--vr-font-primary, "Open Sans", sans-serif);
	background: #ffffff;
	color: var(--mdh-ink);
}

body.mdh-shell h1,
body.mdh-shell h2,
body.mdh-shell h3,
body.mdh-shell h4,
body.mdh-shell .mdh-nav-link,
body.mdh-shell .mdh-cta-button,
body.mdh-shell .mdh-brandmark__copy strong {
	font-family: var(--vr-font-secondary, "Inter", sans-serif);
}

.mdh-header-shell {
	position: sticky;
	top: 0;
	z-index: 300;
	background: transparent;
	padding: 14px 14px 0;
}

.mdh-header-shell__inner {
	min-height: 70px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 8px 8px 8px 22px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(19, 51, 32, 0.06);
	border-radius: 20px;
	box-shadow: none;
}

.mdh-brandmark,
.mdh-nav-link,
.mdh-nav-group__menu a,
.mdh-mobile-nav a,
.mdh-mobile-group__menu a,
.mdh-header-link,
.mdh-cta-button,
.mdh-ghost-button,
.mdh-footer-linklist a,
.mdh-footer-text-link,
.mdh-footer-shell__cta a {
	text-decoration: none;
}

.mdh-brandmark {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.mdh-brandmark__logo {
	width: auto;
	height: 44px;
	max-width: 168px;
	flex-shrink: 0;
	object-fit: contain;
}

.mdh-brandmark__copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
	color: var(--mdh-ink);
}

.mdh-brandmark__copy strong {
	font-size: 18px;
	line-height: 1.02;
	white-space: nowrap;
}

.mdh-brandmark__copy span {
	font-size: 11px;
	line-height: 1.35;
	color: var(--mdh-muted);
}

.mdh-primary-nav {
	display: none;
	min-width: 0;
}

.mdh-nav-item {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.mdh-nav-link,
.mdh-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	color: var(--mdh-ink);
	font-weight: 600;
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mdh-nav-link {
	font-size: 15px;
	line-height: 1;
	background: transparent;
}

.mdh-nav-link--label {
	cursor: default;
	user-select: none;
}

.mdh-nav-toggle {
	width: 34px;
	min-width: 34px;
	padding: 0;
	margin-left: -6px;
	background: transparent;
	border: 0;
}

.mdh-caret {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transform-origin: center;
	transition: transform 0.18s ease;
}

.mdh-nav-link:hover,
.mdh-nav-link.is-active,
.mdh-nav-item:hover > .mdh-nav-link,
.mdh-nav-item.is-open > .mdh-nav-link {
	background: rgba(7, 108, 53, 0.08);
	color: var(--mdh-green);
}

.mdh-nav-group__menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 250px;
	display: grid;
	gap: 4px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--mdh-line);
	border-radius: var(--mdh-radius-md);
	box-shadow: 0 18px 38px rgba(10, 41, 22, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 50;
}

.mdh-nav-item--has-children::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.mdh-nav-item:hover .mdh-nav-group__menu,
.mdh-nav-item:focus-within .mdh-nav-group__menu,
.mdh-nav-item.is-open .mdh-nav-group__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.mdh-nav-group__menu a,
.mdh-mobile-group__menu a,
.mdh-mobile-nav a {
	display: block;
	padding: 10px 12px;
	color: var(--mdh-ink);
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
}

.mdh-nav-group__menu a:hover,
.mdh-mobile-group__menu a:hover,
.mdh-mobile-nav a:hover {
	background: rgba(7, 108, 53, 0.08);
}

.mdh-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.mdh-cta-button,
.mdh-ghost-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 15px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mdh-cta-button {
	background: linear-gradient(135deg, #f6a51d 0%, #e88d06 100%);
	color: #fff;
	box-shadow: 0 10px 26px rgba(243, 163, 26, 0.3);
}

.mdh-ghost-button {
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	background: transparent;
}

.mdh-cta-button:hover,
.mdh-ghost-button:hover {
	transform: translateY(-1px);
}

.mdh-header-actions .mdh-cta-button,
.mdh-mobile-panel__actions .mdh-cta-button {
	background: #0ba34b;
	box-shadow: none;
	border-radius: 12px;
}

.mdh-header-actions .mdh-cta-button:hover,
.mdh-mobile-panel__actions .mdh-cta-button:hover {
	background: #099143;
	box-shadow: none;
}

.mdh-mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(7, 108, 53, 0.08);
	flex-shrink: 0;
}

.mdh-mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: var(--mdh-green);
}

.mdh-mobile-panel {
	display: none;
	margin-top: 10px;
	background: #fff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 40px rgba(15, 31, 21, 0.12);
	overflow: hidden;
}

.mdh-mobile-panel.is-open {
	display: block;
}

.mdh-mobile-panel__inner {
	padding: 12px 0 20px;
}

.mdh-mobile-nav,
.mdh-mobile-group__menu,
.mdh-mobile-panel__actions {
	display: grid;
	gap: 10px;
}

.mdh-mobile-group {
	padding: 0;
	border-radius: 16px;
	background: rgba(7, 108, 53, 0.03);
	border: 1px solid rgba(7, 108, 53, 0.08);
}

.mdh-mobile-group > summary {
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--mdh-ink);
	font-weight: 600;
	list-style: none;
	cursor: pointer;
}

.mdh-mobile-group > summary::-webkit-details-marker {
	display: none;
}

.mdh-mobile-nav > a {
	padding: 14px 16px;
	background: rgba(7, 108, 53, 0.03);
	border: 1px solid rgba(7, 108, 53, 0.08);
}

.mdh-mobile-group__menu {
	padding: 0 12px 12px;
}

.mdh-mobile-panel__actions {
	margin-top: 14px;
}

.mdh-header-ad {
	margin-bottom: 0;
}

/* Header  dark mode */
body.mdh-shell--dark .mdh-header-shell__inner {
	background: rgba(15, 31, 21, 0.96);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

body.mdh-shell--dark .mdh-nav-link,
body.mdh-shell--dark .mdh-nav-toggle {
	color: #f4f4f4;
}

body.mdh-shell--dark .mdh-nav-link:hover,
body.mdh-shell--dark .mdh-nav-link.is-active,
body.mdh-shell--dark .mdh-nav-item:hover > .mdh-nav-link,
body.mdh-shell--dark .mdh-nav-item.is-open > .mdh-nav-link {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

body.mdh-shell--dark .mdh-nav-group__menu {
	background: #16241c;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

body.mdh-shell--dark .mdh-nav-group__menu a,
body.mdh-shell--dark .mdh-mobile-nav a,
body.mdh-shell--dark .mdh-mobile-group__menu a {
	color: #f4f4f4;
}

body.mdh-shell--dark .mdh-nav-group__menu a:hover,
body.mdh-shell--dark .mdh-mobile-nav a:hover,
body.mdh-shell--dark .mdh-mobile-group__menu a:hover {
	background: rgba(255, 255, 255, 0.08);
}

body.mdh-shell--dark .mdh-mobile-panel {
	background: #16241c;
	border-color: rgba(255, 255, 255, 0.08);
}

body.mdh-shell--dark .mdh-mobile-group,
body.mdh-shell--dark .mdh-mobile-nav > a {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.1);
}

body.mdh-shell--dark .mdh-mobile-group > summary {
	color: #f4f4f4;
}

body.mdh-shell--dark .mdh-mobile-toggle {
	background: rgba(255, 255, 255, 0.12);
}

body.mdh-shell--dark .mdh-mobile-toggle span {
	background: #f4f4f4;
}

/* Header RTL */
body.mdh-shell--rtl .mdh-header-shell__inner {
	padding: 8px 22px 8px 8px;
}

body.mdh-shell--rtl .mdh-nav-toggle {
	margin-left: 0;
	margin-right: -6px;
}

body.mdh-shell--rtl .mdh-nav-group__menu {
	left: auto;
	right: 0;
}

@media (max-width: 767px) {
	body.mdh-shell--rtl .mdh-header-shell__inner {
		padding: 6px 16px 6px 6px;
	}
}

.mdh-hero-placeholder {
	position: relative;
	overflow: hidden;
	padding: 28px 0 24px;
	background:
		radial-gradient(circle at 50% 18%, rgba(43, 164, 90, 0.18) 0%, rgba(43, 164, 90, 0) 30%),
		linear-gradient(135deg, #04592b 0%, #076c35 52%, #0a6f34 100%);
	color: #fff;
}

.mdh-hero-placeholder__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.mdh-hero-placeholder__bg-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	background-size: cover;
	background-position: center;
	filter: saturate(0.95);
}

.mdh-hero-placeholder__bg-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 31, 16, 0.64) 0%, rgba(5, 52, 25, 0.52) 36%, rgba(7, 108, 53, 0.3) 64%, rgba(10, 111, 52, 0.26) 100%),
		radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 26%);
}

.mdh-hero-placeholder__bg-slide:nth-child(3n + 1) {
	background-image:
		radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 28%),
		linear-gradient(135deg, #044523 0%, #076c35 52%, #0b7b3e 100%);
}

.mdh-hero-placeholder__bg-slide:nth-child(3n + 2) {
	background-image:
		radial-gradient(circle at 78% 16%, rgba(243, 163, 26, 0.18) 0%, rgba(243, 163, 26, 0) 24%),
		linear-gradient(135deg, #063d23 0%, #0a6f34 50%, #0c7f3d 100%);
}

.mdh-hero-placeholder__bg-slide:nth-child(3n + 3) {
	background-image:
		radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 22%),
		linear-gradient(135deg, #055129 0%, #076c35 45%, #0a5c30 100%);
}

.mdh-hero-placeholder__bg-slide.is-active {
	opacity: 1;
}

.mdh-hero-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 28%),
		radial-gradient(circle at 82% 14%, rgba(243, 163, 26, 0.09) 0%, rgba(243, 163, 26, 0) 24%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 36%);
	pointer-events: none;
	z-index: 0;
}

.mdh-hero-placeholder::after {
	display: none;
}

.mdh-hero-placeholder__wrap {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 24px;
}

.mdh-hero-placeholder__content {
	max-width: 1160px;
	margin: 0 auto;
	text-align: left;
}

.mdh-hero-placeholder__content--slider {
	max-width: 1160px;
}

.mdh-hero-slider__viewport {
	position: relative;
	min-height: 238px;
}

.cookies-warning {
	left: 16px;
	bottom: 16px;
	width: 310px;
	max-width: calc(100vw - 32px);
	padding: 18px 18px 16px;
	border-radius: 14px;
	box-shadow: 0 18px 34px rgba(10, 21, 15, 0.14);
	z-index: 240;
}

.cookies-warning .text {
	margin-bottom: 12px;
	line-height: 1.55;
	font-size: 15px;
}

.cookies-warning .close {
	top: 8px;
	right: 10px;
}

.mdh-hero-slide {
	display: none;
	width: 100%;
	min-height: inherit;
	animation: mdhHeroSlideFade 0.45s ease;
}

.mdh-hero-slide.is-active {
	display: block;
}

.mdh-hero-slide__frame {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: inherit;
	width: 100%;
	padding: 34px 0 70px;
}

.mdh-hero-slide__frame--static {
	min-height: 360px;
}

.mdh-hero-slide__copy {
	position: relative;
	z-index: 1;
	width: min(100%, 980px);
	max-width: 980px;
	padding: 24px 0 0;
	text-align: left;
}

.mdh-hero-slide__copy::before {
	content: "";
	position: absolute;
	inset: -28px auto auto -64px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(243, 163, 26, 0.18) 0%, rgba(243, 163, 26, 0) 68%);
	pointer-events: none;
}

.mdh-hero-slide__rail {
	display: block;
	width: 104px;
	height: 6px;
	margin-bottom: 26px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f3a31a 0%, #ffe099 100%);
	box-shadow: 0 0 30px rgba(243, 163, 26, 0.28);
}

.mdh-hero-slide__title {
	margin: 0;
	position: relative;
	z-index: 1;
	display: block;
	max-width: none;
	font-size: clamp(56px, 6.9vw, 102px) !important;
	font-weight: 800;
	line-height: 0.9 !important;
	letter-spacing: -0.055em !important;
	color: #ffffff;
	text-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.mdh-hero-slide__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.mdh-hero-slide__actions .mdh-cta-button {
	min-height: 46px;
	padding-left: 24px;
	padding-right: 24px;
	background: var(--mdh-green) !important;
	box-shadow: 0 16px 28px rgba(7, 108, 53, 0.28);
}

.mdh-hero-slide__actions .mdh-cta-button:hover {
	background: var(--mdh-green-dark) !important;
}

.mdh-hero-slider__footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.mdh-hero-slider__footer--center {
	justify-content: center;
	margin: 20px auto 0;
	width: fit-content;
}

.mdh-hero-placeholder--slider .mdh-hero-slider__footer {
	width: fit-content;
	margin-left: 0;
	margin-right: 0;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.13);
	box-shadow: 0 18px 34px rgba(5, 28, 16, 0.18);
	backdrop-filter: blur(12px);
}

.mdh-hero-placeholder--slider .mdh-hero-slider__footer--center {
	margin-left: auto;
	margin-right: auto;
}

.mdh-hero-slider__dots {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mdh-hero-slider__dot {
	width: 12px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.36);
	transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.mdh-hero-slider__dot.is-active {
	width: 34px;
	background: linear-gradient(90deg, #ffffff 0%, #ffe7a9 100%);
	box-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
}

.mdh-hero-slider__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mdh-hero-slider__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mdh-hero-slider__control:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

@keyframes mdhHeroSlideFade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mdh-hero-line {
	display: block;
	text-wrap: balance;
}

.mdh-hero-line--accent {
	color: var(--mdh-gold);
	text-shadow: 0 0 28px rgba(243, 163, 26, 0.18);
}

.mdh-hero-placeholder h1 {
	margin: 0;
	color: #fff;
}

.mdh-hero-placeholder .mdh-hero-line + .mdh-hero-line {
	margin-top: 12px;
}

.mdh-hero-placeholder__stats,
.mdh-hero-placeholder__features,
.mdh-footer-shell__grid {
	display: grid;
	gap: 14px;
}

.mdh-hero-placeholder__stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 960px;
	margin: 0 auto;
}

.mdh-stat-card,
.mdh-feature-card {
	padding: 24px 18px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--mdh-radius-lg);
	text-align: center;
	backdrop-filter: blur(10px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mdh-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin: 0 auto 14px;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(255, 193, 45, 0.22) 0%, rgba(255, 193, 45, 0.1) 100%);
	border: 1px solid rgba(255, 193, 45, 0.28);
	color: #ffc12d;
	font-size: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mdh-card-icon--feature {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
	border-color: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.mdh-stat-card strong,
.mdh-feature-card strong {
	display: block;
	color: #fff;
}

.mdh-stat-card strong {
	font-size: clamp(34px, 3vw, 42px);
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -0.03em;
}

.mdh-stat-card span,
.mdh-feature-card span {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
}

.mdh-hero-placeholder__features {
	grid-template-columns: 1fr;
	max-width: 840px;
	margin: 16px auto 0;
}

.mdh-feature-card {
	background: rgba(255, 255, 255, 0.08);
}

.mdh-feature-card strong {
	margin-bottom: 10px;
	font-size: 16px;
}

/* ─────────────────────────────────────────────────────────
   Hero two-column layout
───────────────────────────────────────────────────────── */
.mdh-hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
	gap: 44px;
	align-items: center;
}

.mdh-hero-layout--full {
	grid-template-columns: minmax(0, 860px);
}

.mdh-hero-left {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 640px;
}

/* Override old full-width copy constraint inside new layout */
.mdh-hero-layout .mdh-hero-slide__copy {
	width: 100%;
	max-width: none;
	padding-top: 0;
}

.mdh-hero-layout .mdh-hero-slide__copy::before {
	display: none;
}

/* Slide badge */
.mdh-hero-slide__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

/* Slide subtitle/description */
.mdh-hero-slide__desc {
	margin: 18px 0 0;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	max-width: 520px;
}

/* Scale-down title for 2-column layout original size was designed for full-width */
.mdh-hero-layout .mdh-hero-slide__title {
	font-size: clamp(34px, 3.1vw, 54px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
}

.mdh-hero-layout .mdh-hero-placeholder .mdh-hero-line + .mdh-hero-line,
.mdh-hero-layout .mdh-hero-line + .mdh-hero-line {
	margin-top: 4px;
}

/* Right-column metric box grid */
.mdh-hero-right {
	position: relative;
}

.mdh-hero-right__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.mdh-hero-box {
	padding: 14px 14px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	min-height: 118px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 4px;
}

.mdh-hero-box__icon {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-bottom: 2px;
	color: #f4b022;
	background: rgba(243, 163, 26, 0.13);
	border: 1px solid rgba(243, 163, 26, 0.28);
}

.mdh-hero-box strong {
	font-size: clamp(24px, 2vw, 30px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.mdh-hero-box__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.25;
}

.mdh-hero-box p {
	margin: 2px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.66);
}

/* ─────────────────────────────────────────────────────────
   Hero  centered, single-column variant
───────────────────────────────────────────────────────── */
.mdh-hero-placeholder--centered .mdh-hero-placeholder__bg-slide {
	background-position: center top;
}

.mdh-hero-placeholder--centered .mdh-hero-placeholder__bg-slide::after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.26) 100%);
}

.mdh-hero-placeholder--centered .mdh-hero-slider__viewport {
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	padding-bottom: 40px;
}

.mdh-hero-placeholder--centered .mdh-hero-slide {
	min-height: 0;
}

.mdh-hero-placeholder--centered .mdh-hero-layout {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
	width: 100%;
}

.mdh-hero-placeholder--centered .mdh-hero-right {
	display: none;
}

.mdh-hero-placeholder--centered .mdh-hero-left {
	align-items: center;
	max-width: 760px;
	margin: 0 auto;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__rail {
	display: none;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__copy {
	text-align: center;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__badge {
	display: block;
	padding: 0;
	margin-bottom: 14px;
	background: none;
	border: 0;
	backdrop-filter: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.82);
}

.mdh-hero-placeholder--centered .mdh-hero-layout .mdh-hero-slide__title {
	font-size: clamp(26px, 3.2vw, 44px) !important;
	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__desc {
	margin: 18px auto 0;
	max-width: 620px;
	text-align: center;
	font-size: clamp(15px, 1.3vw, 17px);
	color: rgba(255, 255, 255, 0.86);
}

.mdh-hero-placeholder--centered .mdh-hero-slide__actions {
	justify-content: center;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__actions .mdh-cta-button {
	background: var(--mdh-green) !important;
	box-shadow: 0 16px 30px rgba(7, 108, 53, 0.34);
}

.mdh-hero-placeholder--centered .mdh-hero-slide__actions .mdh-cta-button:hover {
	background: var(--mdh-green-dark) !important;
}

.mdh-hero-placeholder--centered .mdh-hero-slide__actions .mdh-ghost-button {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(255, 255, 255, 0.94);
	color: var(--mdh-ink);
}

.mdh-hero-placeholder--centered .mdh-hero-slide__actions .mdh-ghost-button:hover {
	background: #ffffff;
}

.mdh-hero-placeholder--centered .mdh-hero-slider__footer {
	position: relative;
	z-index: 2;
}

.mdh-hero-findus {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.mdh-hero-findus__map {
	width: 76px;
	height: 76px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 24px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 24px),
		#7c8d80;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
	color: #e5484d;
	font-size: 20px;
	transition: transform 0.2s ease;
}

.mdh-hero-findus:hover .mdh-hero-findus__map {
	transform: translateY(-2px);
}

.mdh-hero-findus__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

@media (max-width: 767px) {
	.mdh-hero-placeholder--centered .mdh-hero-slider__viewport {
		min-height: 520px;
	}

	.mdh-hero-findus {
		position: static;
		margin: 18px auto 0;
	}

	.mdh-hero-findus__map {
		width: 56px;
		height: 56px;
		font-size: 16px;
	}

	.mdh-hero-findus__label {
		font-size: 10px;
	}
}

.mdh-home-section {
	position: relative;
	padding: 72px 0;
	background: transparent;
}

@keyframes mdhRevealUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mdh-home-section > .container {
	opacity: 0;
	animation: mdhRevealUp 0.62s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.mdh-home-section:nth-of-type(1) > .container { animation-delay: 0.04s; }
.mdh-home-section:nth-of-type(2) > .container { animation-delay: 0.08s; }
.mdh-home-section:nth-of-type(3) > .container { animation-delay: 0.12s; }
.mdh-home-section:nth-of-type(4) > .container { animation-delay: 0.16s; }
.mdh-home-section:nth-of-type(5) > .container { animation-delay: 0.2s; }
.mdh-home-section:nth-of-type(6) > .container { animation-delay: 0.24s; }
.mdh-home-section:nth-of-type(7) > .container { animation-delay: 0.28s; }
.mdh-home-section:nth-of-type(8) > .container { animation-delay: 0.32s; }

.mdh-sector-grid--showcase .mdh-sector-card--showcase,
.mdh-process-grid--showcase .mdh-process-card--showcase,
.mdh-help-faq-list--homepage .mdh-help-faq,
.mdh-proof-grid .mdh-proof-card,
.mdh-ethics-grid .mdh-ethics-card {
	opacity: 0;
	animation: mdhRevealUp 0.5s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.mdh-sector-grid--showcase > *:nth-child(1),
.mdh-process-grid--showcase > *:nth-child(1),
.mdh-help-faq-list--homepage > *:nth-child(1),
.mdh-proof-grid > *:nth-child(1),
.mdh-ethics-grid > *:nth-child(1) { animation-delay: 0.06s; }

.mdh-sector-grid--showcase > *:nth-child(2),
.mdh-process-grid--showcase > *:nth-child(2),
.mdh-help-faq-list--homepage > *:nth-child(2),
.mdh-proof-grid > *:nth-child(2),
.mdh-ethics-grid > *:nth-child(2) { animation-delay: 0.12s; }

.mdh-sector-grid--showcase > *:nth-child(3),
.mdh-process-grid--showcase > *:nth-child(3),
.mdh-help-faq-list--homepage > *:nth-child(3),
.mdh-proof-grid > *:nth-child(3),
.mdh-ethics-grid > *:nth-child(3) { animation-delay: 0.18s; }

.mdh-sector-grid--showcase > *:nth-child(4),
.mdh-process-grid--showcase > *:nth-child(4),
.mdh-help-faq-list--homepage > *:nth-child(4),
.mdh-ethics-grid > *:nth-child(4) { animation-delay: 0.24s; }

.mdh-sector-grid--showcase > *:nth-child(n+5),
.mdh-process-grid--showcase > *:nth-child(n+5),
.mdh-ethics-grid > *:nth-child(n+5) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
	.mdh-home-section > .container,
	.mdh-sector-grid--showcase .mdh-sector-card--showcase,
	.mdh-process-grid--showcase .mdh-process-card--showcase,
	.mdh-help-faq-list--homepage .mdh-help-faq,
	.mdh-proof-grid .mdh-proof-card,
	.mdh-ethics-grid .mdh-ethics-card {
		opacity: 1;
		animation: none;
		transform: none;
	}
}

.mdh-home-section + .mdh-home-section {
	border-top: 1px solid rgba(19, 51, 32, 0.06);
}

.mdh-home-section--trust {
	padding-top: 28px;
	padding-bottom: 28px;
}

.mdh-home-section--intro,
.mdh-home-section--process,
.mdh-home-section--final-cta {
	background: #f8f5ee;
}

.mdh-home-section--about {
	background: #ffffff;
}

.mdh-inner-hero {
	position: relative;
	overflow: hidden;
	padding: 64px 0 42px;
	background:
		radial-gradient(circle at top left, rgba(7, 108, 53, 0.12) 0%, rgba(7, 108, 53, 0) 38%),
		linear-gradient(180deg, #f8f5ee 0%, #fdfbf7 100%);
	border-bottom: 1px solid rgba(19, 51, 32, 0.08);
}

.mdh-inner-hero--with-image {
	padding: 78px 0 56px;
	background: linear-gradient(180deg, #0f2418 0%, #173524 100%);
	border-bottom: 0;
}

.mdh-inner-hero__media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.mdh-inner-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 20, 13, 0.84) 0%, rgba(8, 20, 13, 0.66) 42%, rgba(8, 20, 13, 0.38) 100%),
		radial-gradient(circle at top right, rgba(243, 163, 26, 0.2) 0%, rgba(243, 163, 26, 0) 34%);
}

.mdh-inner-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92);
}

.mdh-inner-hero--branches {
	padding-bottom: 58px;
}

.mdh-breadcrumbs {
	margin-bottom: 20px;
}

.mdh-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mdh-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #668072;
}

.mdh-breadcrumbs li + li::before {
	content: "/";
	color: #95a79d;
	margin-right: 2px;
}

.mdh-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.mdh-inner-hero__layout {
	display: grid;
	gap: 24px;
	align-items: start;
	position: relative;
	z-index: 1;
}

.mdh-inner-hero__layout--with-image {
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
	align-items: end;
}

.mdh-inner-hero__layout--single {
	grid-template-columns: 1fr;
}

.mdh-inner-hero__copy {
	max-width: 760px;
}

.mdh-inner-hero__copy h1 {
	margin: 0;
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #101010;
}

.mdh-inner-hero--with-image .mdh-breadcrumbs li,
.mdh-inner-hero--with-image .mdh-breadcrumbs a,
.mdh-inner-hero--with-image .mdh-section-kicker {
	color: rgba(255, 255, 255, 0.78);
}

.mdh-inner-hero--with-image .mdh-breadcrumbs li + li::before {
	color: rgba(255, 255, 255, 0.48);
}

.mdh-inner-hero--with-image .mdh-inner-hero__copy h1,
.mdh-inner-hero--with-image .mdh-inner-hero__copy p {
	color: #ffffff;
}

.mdh-inner-hero--with-image .mdh-inner-hero__copy p {
	max-width: 60ch;
	color: rgba(255, 255, 255, 0.82);
}

/* Ensure the financing hero secondary CTA stays visible on light inner-hero backgrounds. */
.mdh-inner-hero__copy .mdh-inline-actions .mdh-ghost-button[href="#apply"] {
	border-color: rgba(8, 96, 50, 0.34);
	color: #0f5f32;
	background: rgba(255, 255, 255, 0.9);
}

.mdh-inner-hero__copy .mdh-inline-actions .mdh-ghost-button[href="#apply"]:hover,
.mdh-inner-hero__copy .mdh-inline-actions .mdh-ghost-button[href="#apply"]:focus-visible {
	border-color: rgba(8, 96, 50, 0.48);
	color: #0c4f29;
	background: #ffffff;
}

.mdh-inner-hero--with-image .mdh-inner-hero__copy .mdh-inline-actions .mdh-ghost-button[href="#apply"] {
	border-color: rgba(255, 255, 255, 0.56);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
}

.mdh-inner-hero__copy p {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.8;
	color: #445349;
}

.mdh-inner-hero__aside {
	display: grid;
	gap: 14px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 28px;
	box-shadow: 0 18px 42px rgba(10, 41, 22, 0.08);
	backdrop-filter: blur(10px);
}

.mdh-inner-hero--with-image .mdh-inner-hero__aside {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.mdh-inner-hero--with-image .mdh-inner-hero__aside-label {
	color: var(--mdh-gold-soft);
}

.mdh-inner-hero__aside-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-inner-hero__aside-links,
.mdh-inner-page__rail-links,
.mdh-branch-directory__support-links {
	display: grid;
	gap: 10px;
}

.mdh-inner-hero__aside-links a,
.mdh-inner-page__rail-links a,
.mdh-branch-directory__support-links a {
	color: #1c2b22;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.mdh-inner-hero--with-image .mdh-inner-hero__aside-links a {
	color: #ffffff;
}

.mdh-inner-hero__aside--stats {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.mdh-inner-hero__aside--stats article {
	display: grid;
	gap: 8px;
	padding: 22px 20px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 36px rgba(10, 41, 22, 0.08);
	text-align: center;
}

.mdh-inner-hero--with-image .mdh-inner-hero__aside--stats article {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.mdh-inner-hero__aside--stats strong {
	font-size: 30px;
	line-height: 1;
	color: #101010;
}

.mdh-inner-hero--with-image .mdh-inner-hero__aside--stats strong,
.mdh-inner-hero--with-image .mdh-inner-hero__aside--stats span {
	color: #ffffff;
}

.mdh-inner-hero__aside--stats span {
	font-size: 14px;
	color: #5d6e64;
}

.mdh-inner-page,
.mdh-branch-directory {
	padding: 44px 0 78px;
}

.mdh-inner-page__grid {
	display: grid;
	gap: 28px;
}

.mdh-inner-page__content,
.mdh-inner-page__rail-card,
.mdh-inner-page__cta,
.mdh-branch-directory__sidebar,
.mdh-branch-directory__map-wrap {
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 30px;
	box-shadow: 0 20px 46px rgba(10, 41, 22, 0.07);
}

.mdh-inner-page__content {
	padding: 32px;
	font-size: 16px;
	line-height: 1.9;
	color: #23342b;
}

.mdh-inner-page__content h2,
.mdh-inner-page__content h3,
.mdh-inner-page__content h4 {
	color: #101010;
	letter-spacing: -0.03em;
}

.mdh-inner-page__content h2 {
	margin-top: 0;
	font-size: clamp(24px, 3.2vw, 34px);
	line-height: 1.12;
}

.mdh-inner-page__content h3 {
	margin-top: 30px;
	font-size: clamp(20px, 2.6vw, 26px);
	line-height: 1.2;
}

.mdh-inner-page__content img,
.mdh-inner-page__content iframe,
.mdh-inner-page__content object {
	max-width: 100% !important;
	border-radius: 20px;
}

.mdh-inner-page__rail {
	align-self: start;
}

.mdh-inner-page__rail-card {
	position: sticky;
	top: 108px;
	padding: 24px;
}

.mdh-inner-page__rail-label {
	display: inline-flex;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-inner-page--about {
	background:
		radial-gradient(circle at 12% 0%, rgba(16, 120, 67, 0.08), transparent 34%),
		linear-gradient(180deg, #f8f6ef 0%, #f7f5ef 100%);
}

.mdh-inner-page__content--about {
	padding: 36px;
	border-radius: 26px;
	border: 1px solid rgba(15, 62, 36, 0.12);
	box-shadow: 0 16px 34px rgba(11, 33, 22, 0.08);
}

.mdh-inner-page__content--about h2 {
	margin-top: 4px;
	margin-bottom: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(16, 69, 39, 0.12);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.mdh-inner-page__content--about h3 {
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: clamp(20px, 2.5vw, 26px);
}

.mdh-inner-page__content--about p {
	font-size: 15px;
	line-height: 1.82;
	color: #2a3d33;
	max-width: 72ch;
}

.mdh-inner-page__content--about ul {
	margin: 12px 0 0;
	padding-left: 22px;
	display: grid;
	gap: 8px;
}

.mdh-inner-page__content--about li {
	font-size: 15px;
	line-height: 1.65;
	color: #2f4338;
}

.mdh-inner-page__rail-card--about {
	border-radius: 22px;
	padding: 20px;
	border: 1px solid rgba(16, 64, 37, 0.12);
	box-shadow: 0 12px 28px rgba(11, 33, 23, 0.08);
	background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.mdh-inner-page__rail-card--about .mdh-inner-page__rail-label {
	margin-bottom: 12px;
	font-size: 11px;
	letter-spacing: 0.09em;
}

.mdh-inner-page__rail-link--about {
	display: block;
	padding: 11px 12px;
	border-radius: 12px;
	border: 1px solid rgba(15, 62, 36, 0.1);
	background: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #183026 !important;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mdh-inner-page__rail-link--about + .mdh-inner-page__rail-link--about {
	margin-top: 8px;
}

.mdh-inner-page__rail-link--about:hover,
.mdh-inner-page__rail-link--about:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(15, 116, 62, 0.32);
	box-shadow: 0 10px 20px rgba(9, 39, 23, 0.1);
	text-decoration: none;
}

/* Sectors page: narrow nav rail | scrollable list of sector sections */
html {
	scroll-behavior: smooth;
}

.mdh-inner-page__grid.mdh-inner-page__grid--sectors {
	grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.mdh-inner-page--sectors .mdh-inner-page__content {
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	line-height: 1.6;
	color: #333333;
}

.mdh-sector-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
	gap: 36px;
	align-items: start;
	scroll-margin-top: 120px;
}

.mdh-sector-panel + .mdh-sector-panel {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid rgba(19, 51, 32, 0.1);
}

.mdh-sector-panel h2 {
	margin-top: 0;
	margin-bottom: 18px;
}

.mdh-sector-panel h3 {
	margin-top: 26px;
	margin-bottom: 8px;
	font-size: 19px;
}

.mdh-sector-panel p {
	margin: 0 0 14px;
	max-width: 62ch;
}

.mdh-sector-panel__media {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--mdh-surface);
}

.mdh-sector-panel__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mdh-inner-page__rail--sectors {
	align-self: start;
	position: sticky;
	top: 108px;
}

.mdh-inner-page__rail--sectors .mdh-inner-page__rail-links {
	display: grid;
	gap: 2px;
}

.mdh-inner-page__rail--sectors .mdh-inner-page__rail-links a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #5d6b62;
	transition: background 0.15s ease, color 0.15s ease;
}

.mdh-inner-page__rail--sectors .mdh-inner-page__rail-links a:hover {
	background: #f5f5f5;
	color: #101010;
}

.mdh-inner-page__rail--sectors .mdh-inner-page__rail-links a.is-active {
	background: #f0f0f0;
	color: #101010;
	font-weight: 700;
}

@media (max-width: 991px) {
	.mdh-inner-page__grid.mdh-inner-page__grid--sectors {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.mdh-inner-page__rail--sectors {
		position: static;
	}

	.mdh-inner-page__rail--sectors .mdh-inner-page__rail-links {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.mdh-sector-panel {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mdh-sector-panel__media {
		aspect-ratio: 16 / 9;
		order: -1;
	}
}

/* Sectors page: closing commitment statement + trusted partners */
.mdh-sectors-commitment {
	padding: 96px 0 72px;
	background: #f5f5f5;
	text-align: center;
}

.mdh-sectors-commitment .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
}

.mdh-sectors-commitment__statement {
	max-width: 760px;
	margin: 20px auto 0;
	font-size: clamp(17px, 1.6vw, 22px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.01em;
	color: #1c1c1c;
}

.mdh-sectors-commitment__cta {
	margin: 48px 0 72px;
}

.mdh-sectors-commitment__cta .mdh-cta-button {
	background: var(--mdh-green);
	box-shadow: none;
}

.mdh-sectors-commitment__cta .mdh-cta-button:hover {
	background: var(--mdh-green-dark);
}

.mdh-sectors-commitment__partners .mdh-section-kicker {
	margin-bottom: 40px;
}

@media (max-width: 767px) {
	.mdh-sectors-commitment {
		padding: 64px 0 48px;
	}

	.mdh-sectors-commitment__cta {
		margin: 36px 0 48px;
	}
}

.mdh-about-hero {
	padding: 96px 0 64px;
	background: #ffffff;
}

.mdh-about-hero__heading {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.mdh-section-kicker.mdh-about-hero__kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
	font-weight: 600;
}

.mdh-about-hero__heading h1 {
	margin: 0;
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #101010;
}

.mdh-about-hero__media {
	max-width: none;
	width: 100%;
	height: 610px;
	margin: 88px auto 0;
	border-radius: var(--mdh-radius-xl);
	overflow: hidden;
	box-shadow: var(--mdh-shadow);
}

.mdh-about-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mdh-about-opening {
	padding: 96px 0 64px;
	background: #ffffff;
}

.mdh-about-who {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 90px;
	align-items: start;
}

.mdh-about-who__lead p {
	margin: 0;
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-about-who__body {
	display: grid;
	gap: 18px;
}

.mdh-about-who__body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #596068;
}

.mdh-about-milestones {
	padding: 88px 0;
	background: #f7f7f7;
}

.mdh-about-milestones__heading {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.mdh-about-milestones__heading .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
	font-weight: 600;
}

.mdh-about-milestones__heading h2 {
	margin: 0;
	font-size: clamp(26px, 2.6vw, 34px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #101010;
}

.mdh-about-milestones__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.mdh-about-milestones__item {
	min-width: 0;
}

.mdh-about-milestones__year {
	display: block;
	font-size: clamp(28px, 2.6vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--mdh-green);
}

.mdh-about-milestones__line {
	position: relative;
	display: block;
	height: 2px;
	margin: 18px 0 20px;
	background: var(--mdh-green);
}

.mdh-about-milestones__dot {
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--mdh-green);
	transform: translateY(-50%);
}

.mdh-about-milestones__title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: #101010;
}

.mdh-about-milestones__description {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: #6b7280;
}

.mdh-about-page {
	padding: 44px 0 78px;
	background: #ffffff;
}

.mdh-about-page .container {
	display: grid;
	gap: 34px;
}

.mdh-about-story,
.mdh-about-purpose {
	background: rgba(255, 255, 255, 0.72);
	border: 0;
	border-radius: 30px;
	padding: 32px;
	box-shadow: 0 18px 38px rgba(10, 37, 24, 0.07);
	backdrop-filter: blur(3px);
}

.mdh-about-values {
	background: #ffffff;
	border: 0;
	border-radius: 30px;
	padding: 32px;
}

.mdh-about-story__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
	gap: 28px;
	align-items: start;
}

.mdh-about-story__copy h2 {
	margin: 10px 0 14px;
	font-size: clamp(36px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #0b6a3b;
}

.mdh-about-story__copy p {
	font-size: 18px;
	line-height: 1.75;
	color: #273d32;
	margin: 0;
}

.mdh-about-story__copy p + p {
	margin-top: 12px;
}

.mdh-about-story__quote {
	margin: 16px 0 0;
	padding: 16px 18px;
	border-radius: 16px;
	border-left: 0;
	background: rgba(10, 120, 66, 0.08);
	font-size: 18px;
	line-height: 1.6;
	font-weight: 600;
	color: #0f6a3c;
}

.mdh-about-story__partners {
	font-size: 15px !important;
	line-height: 1.65 !important;
	color: #3b5649 !important;
	margin-top: 14px !important;
}

.mdh-about-story__aside {
	display: grid;
	gap: 14px;
}

.mdh-about-focus-card {
	padding: 26px 24px;
	border-radius: 20px;
	background: linear-gradient(160deg, #069f47 0%, #0a7d40 100%);
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(7, 76, 40, 0.26);
}

.mdh-about-focus-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	font-size: 30px;
	margin-bottom: 14px;
}

.mdh-about-focus-card h3 {
	margin: 0;
	font-size: clamp(30px, 3.4vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.mdh-about-focus-card p {
	margin: 12px 0 0;
	font-size: 22px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.95);
}

.mdh-about-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.mdh-about-metric-card {
	padding: 18px 16px;
	border-radius: 16px;
	background: #0aa447;
	border: 0;
	box-shadow: 0 14px 26px rgba(7, 71, 37, 0.24);
	text-align: center;
	color: #ffffff;
}

.mdh-about-metric-card--wide {
	grid-column: span 2;
	background: #067c3c;
}

.mdh-about-metric-card strong {
	display: block;
	font-size: clamp(34px, 3.2vw, 44px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.mdh-about-metric-card span {
	display: block;
	margin-top: 6px;
	font-size: 16px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}

.mdh-about-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}

.mdh-about-heading h2 {
	margin: 10px 0 10px;
	font-size: clamp(38px, 4.6vw, 64px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #0b7a40;
}

.mdh-about-heading p {
	margin: 0;
	font-size: 20px;
	line-height: 1.55;
	color: #41584d;
}

.mdh-about-purpose__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
	padding: 18px;
	border-radius: 24px;
	border: 0;
	background: #ffffff;
}

.mdh-about-purpose-card {
	padding: 20px;
	border-radius: 16px;
	background: rgba(7, 125, 66, 0.04);
	border: 0;
	text-align: center;
}

.mdh-about-purpose-card__icon {
	width: 74px;
	height: 74px;
	border-radius: 18px;
	margin: 0 auto 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	background: #0b9e4a;
	color: #ffffff;
}

.mdh-about-purpose-card:nth-child(2) .mdh-about-purpose-card__icon {
	background: #f49a00;
}

.mdh-about-purpose-card:nth-child(2) h3 {
	color: #d67d00;
}

.mdh-about-purpose-card h3 {
	margin: 0;
	font-size: clamp(30px, 3.2vw, 40px);
	line-height: 1.12;
	color: #0f7440;
}

.mdh-about-purpose-card p {
	margin: 12px 0 0;
	font-size: 20px;
	line-height: 1.65;
	color: #334a3f;
}

.mdh-about-values .mdh-about-heading {
	text-align: center;
}

.mdh-about-values .mdh-about-heading .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
	font-weight: 600;
}

.mdh-about-values__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.mdh-about-value-card {
	padding: 28px;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(15, 51, 32, 0.1);
	text-align: left;
	box-shadow: none;
}

.mdh-about-value-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	background: rgba(11, 163, 75, 0.12);
	color: #0ba34b;
	margin-bottom: 16px;
}

.mdh-about-value-card h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #101010;
}

.mdh-about-value-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
}

.mdh-about-stats-banner {
	padding: 72px 0;
	background: #161616;
}

.mdh-about-stats-banner__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.mdh-about-stats-banner__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.mdh-about-stats-banner__value {
	font-size: clamp(28px, 2.6vw, 36px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #2ecc55;
}

.mdh-about-stats-banner__label {
	margin-top: 8px;
	font-size: 15px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.68);
}

.mdh-about-team {
	padding: 88px 0;
	background: #ffffff;
}

.mdh-about-team .mdh-about-heading {
	text-align: center;
}

.mdh-about-team .mdh-about-heading .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
	font-weight: 600;
}

.mdh-about-team__grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.mdh-about-team-card {
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(15, 51, 32, 0.1);
	overflow: hidden;
}

.mdh-about-team-card__photo {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #eef1ef;
}

.mdh-about-team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mdh-about-team-card__body {
	padding: 20px;
}

.mdh-about-team-card__name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #101010;
}

.mdh-about-team-card__role {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--mdh-green);
}

.mdh-about-team-card__bio {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
}

.mdh-about-impact {
	padding: 88px 0;
	background: #f7f7f7;
}

.mdh-about-impact .mdh-about-heading {
	text-align: center;
}

.mdh-about-impact .mdh-about-heading .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
	font-weight: 600;
}

.mdh-about-impact .mdh-about-heading h2 {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 600;
	color: #1c1c1c;
}

.mdh-about-impact__layout {
	margin-top: 48px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 64px;
	align-items: center;
}

.mdh-about-impact__media {
	border-radius: var(--mdh-radius-xl);
	overflow: hidden;
	aspect-ratio: 1.45 / 1;
}

.mdh-about-impact__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mdh-about-impact__content h3 {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	line-height: 1.3;
	color: #101010;
}

.mdh-about-impact__content p {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: #596068;
}

.mdh-about-impact__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 28px;
}

.mdh-about-impact__stat {
	display: flex;
	flex-direction: column;
}

.mdh-about-impact__stat strong {
	font-size: clamp(24px, 2vw, 30px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--mdh-green);
}

.mdh-about-impact__stat span {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.4;
	color: #596068;
}

.mdh-about-partners {
	padding: 72px 0;
	background: #ffffff;
	text-align: center;
}

.mdh-about-partners__kicker {
	display: inline-block;
	margin-bottom: 40px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6b7a71;
}

.mdh-about-partners__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px 56px;
}

.mdh-about-partners__logo img {
	display: block;
	height: 30px;
	width: auto;
	max-width: 112px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.65;
}

@media (max-width: 767px) {
	.mdh-about-partners__logos {
		gap: 22px 28px;
	}

	.mdh-about-partners__logo img {
		height: 24px;
		max-width: 110px;
	}
}

.mdh-inner-page__cta {
	display: grid;
	gap: 24px;
	margin-top: 30px;
	padding: 30px 32px;
	align-items: center;
}

.mdh-inner-page__cta h2 {
	margin: 0;
	font-size: clamp(28px, 3.4vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-branch-directory__shell {
	display: grid;
	gap: 20px;
}

.mdh-branch-directory__sidebar {
	display: grid;
	gap: 20px;
	padding: 28px;
	align-self: start;
}

.mdh-branch-directory__sidebar-head h2 {
	margin: 0;
	font-size: clamp(28px, 3.6vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-branch-directory__sidebar-head p {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.8;
	color: #4e6056;
}

.mdh-branch-directory__office-meta {
	margin-top: 12px;
	display: grid;
	gap: 8px;
}

.mdh-branch-directory__office-line {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #315245;
}

.mdh-branch-directory__office-line i {
	color: #0c8a45;
}

.mdh-branch-directory__support {
	padding: 22px;
	background: linear-gradient(180deg, rgba(7, 108, 53, 0.06) 0%, rgba(7, 108, 53, 0.02) 100%);
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 24px;
}

.mdh-branch-directory__support p {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.75;
	color: #4e6056;
}

.mdh-branch-directory__map-wrap {
	padding: 18px;
	min-height: 720px;
	overflow: hidden;
}

.mdh-branch-directory__map {
	width: 100%;
	height: 100%;
	min-height: 680px;
	border-radius: 24px;
	background: #edf3ef;
}

/* ─────────────────────────────────────────────────────────
   Our Office  map + branch directory (page-exclusive)
───────────────────────────────────────────────────────── */
.mdh-office-directory {
	padding: 72px 0;
	background: #ffffff;
	/* style.css sets `section { overflow-x: hidden; }` sitewide, which implicitly
	   promotes overflow-y to `auto` and turns every section into a scroll
	   container silently breaking position:sticky for children (confirmed via
	   live scroll testing, affects even the site's own sticky header). Reset
	   both axes here so the sticky map below actually sticks. This section has
	   no horizontal overflow of its own, so it's safe to lift the clip locally. */
	overflow: visible;
}

.mdh-office-directory__intro {
	max-width: 640px;
	margin: 0 auto 56px;
	text-align: center;
}

.mdh-office-directory__intro-kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.mdh-office-directory__intro-title {
	margin: 0;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-office-directory__intro-text {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: #596068;
}

.mdh-office-directory__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.mdh-office-directory__map {
	position: sticky;
	top: 116px;
	height: clamp(440px, calc(100vh - 260px), 720px);
	border-radius: var(--mdh-radius-xl);
	overflow: hidden;
	box-shadow: var(--mdh-shadow);
	background: #edf3ef;
}

.mdh-office-directory__map-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.mdh-office-directory__branches {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.mdh-office-directory__heading {
	margin: 0 0 20px;
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-office-directory__list {
	display: grid;
	gap: 20px;
	align-content: start;
	max-height: clamp(440px, calc(100vh - 260px), 720px);
	overflow-y: scroll;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.mdh-office-directory__list::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.mdh-office-directory__empty {
	margin: 0;
	font-size: 15px;
	color: #596068;
}

.mdh-office-branch-card {
	padding: 24px;
	border-radius: 16px;
	background: #f5f5f5;
	border: none;
	box-shadow: none;
}

.mdh-office-branch-card__name {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #101010;
}

.mdh-office-branch-card__info {
	display: grid;
	gap: 10px;
}

.mdh-office-branch-card__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #596068;
}

.mdh-office-branch-card__row i {
	width: 16px;
	margin-top: 3px;
	color: #596068;
	flex-shrink: 0;
	text-align: center;
}

.mdh-office-branch-card__actions {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 51, 32, 0.12);
}

.mdh-office-branch-card__direction {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--mdh-green);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease;
}

.mdh-office-branch-card__direction:hover,
.mdh-office-branch-card__direction:focus-visible {
	background: var(--mdh-green-dark);
	color: #ffffff;
}

@media (max-width: 991px) {
	.mdh-office-directory {
		padding: 56px 0;
	}

	.mdh-office-directory__layout {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
		gap: 28px;
	}

	.mdh-office-directory__map,
	.mdh-office-directory__list {
		height: 520px;
		max-height: 520px;
	}

	.mdh-office-branch-card {
		padding: 20px;
	}
}

@media (max-width: 767px) {
	.mdh-office-directory {
		padding: 40px 0;
	}

	.mdh-office-directory__intro {
		margin-bottom: 36px;
	}

	.mdh-office-directory__layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.mdh-office-directory__map {
		position: static;
		top: auto;
		height: 320px;
	}

	.mdh-office-directory__list {
		max-height: none;
		overflow-y: visible;
	}
}

.mdh-contact-hero {
	padding: 96px 0 64px;
	background: #ffffff;
	text-align: center;
}

.mdh-contact-hero__intro {
	max-width: 640px;
	margin: 0 auto;
}

.mdh-contact-hero__kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1c1c1c;
}

.mdh-contact-hero__title {
	margin: 0;
	font-size: clamp(32px, 4.4vw, 52px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-contact-hero__subtitle {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.7;
	color: #596068;
}

.mdh-contact-page {
	padding: 16px 0 72px;
	background: #ffffff;
}

.mdh-contact-map-section {
	padding: 0 0 88px;
	background: #ffffff;
}

.mdh-contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: stretch;
}

.mdh-contact-page__form-card {
	padding: 36px;
	background: #f5f5f5;
	border: none;
	border-radius: 20px;
	box-shadow: none;
}

.mdh-contact-page__card-head h2 {
	margin: 0;
	font-size: clamp(24px, 2.6vw, 30px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #101010;
}

.mdh-contact-page__card-head p {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: #596068;
}

.mdh-contact-form {
	display: grid;
	gap: 18px;
	margin-top: 22px;
}

.mdh-contact-form__field {
	display: grid;
	gap: 8px;
}

.mdh-contact-form__field label {
	font-size: 14px;
	font-weight: 700;
	color: #1c2b22;
}

.mdh-contact-form .form-input {
	height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(15, 51, 32, 0.14);
	border-radius: 12px;
	background: #fbfdfb;
	font-size: 15px;
	color: #1c2b22;
}

.mdh-contact-form textarea.form-input {
	height: auto;
	min-height: 160px;
	padding-top: 14px;
	padding-bottom: 14px;
	resize: vertical;
}

.mdh-contact-form__terms {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.mdh-contact-form__terms .form-check-input {
	margin-top: 0.2rem;
}

.mdh-contact-form__terms .form-check-label {
	font-size: 14px;
	line-height: 1.6;
	color: #43544a;
}

.mdh-contact-form__terms a {
	color: inherit;
	text-decoration: underline;
}

.mdh-contact-form__captcha {
	overflow-x: auto;
}

.mdh-cta-button--submit {
	border: 0;
	cursor: pointer;
	background: var(--mdh-green);
	border-radius: 10px;
	box-shadow: none;
}

.mdh-cta-button--submit:hover {
	background: var(--mdh-green-dark);
}

.mdh-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, auto);
	gap: 20px;
	align-content: start;
}

.mdh-contact-info-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 4px;
	min-height: 190px;
	padding: 22px;
	background: #f5f5f5;
	border: none;
	border-radius: 16px;
	box-shadow: none;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

a.mdh-contact-info-card:hover,
a.mdh-contact-info-card:focus-visible {
	transform: translateY(-2px);
	background-color: #eeeeee;
}

.mdh-contact-info-card__label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a8f8c;
}

.mdh-contact-info-card__value {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #101010;
	overflow-wrap: anywhere;
}

.mdh-contact-info-card__caption {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.55;
	color: #8a8f8c;
}

.mdh-contact-map-shell {
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.mdh-contact-map-frame {
	position: relative;
	height: 500px;
	border-radius: 24px;
	overflow: hidden;
	background: #edf3ef;
}

.mdh-contact-map-container,
.mdh-contact-map-container iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.mdh-contact-map-overlay {
	position: absolute;
	top: 24px;
	right: 24px;
	max-width: 340px;
	padding: 24px 28px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: var(--mdh-shadow);
}

.mdh-contact-map-overlay__label {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a8f8c;
}

.mdh-contact-map-overlay__address {
	display: block;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	color: #101010;
}

.mdh-contact-map-overlay__hours {
	display: block;
	margin-top: 18px;
	font-size: 14px;
	color: #596068;
}

.mdh-help-page {
	padding: 44px 0 78px;
}

.mdh-help-block + .mdh-help-block,
.mdh-help-two-up,
.mdh-help-final {
	margin-top: 30px;
}

.mdh-help-methods,
.mdh-help-support-grid,
.mdh-help-two-up {
	display: grid;
	gap: 20px;
}

.mdh-help-method,
.mdh-help-panel,
.mdh-help-support-card,
.mdh-help-faq {
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 28px;
	box-shadow: 0 18px 42px rgba(10, 41, 22, 0.07);
}

.mdh-help-method,
.mdh-help-panel,
.mdh-help-support-card {
	padding: 28px;
}

.mdh-help-method {
	display: grid;
	gap: 16px;
}

.mdh-help-method__icon,
.mdh-help-support-card__icon,
.mdh-help-checklist__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: #eff7f1;
	color: var(--mdh-green);
	font-size: 18px;
}

.mdh-help-method h3,
.mdh-help-panel h2 {
	margin: 0;
	font-size: clamp(26px, 3.2vw, 36px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-help-method p,
.mdh-help-note {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #52655a;
}

.mdh-help-method ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mdh-help-method li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #304138;
}

.mdh-help-method li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--mdh-green);
}

.mdh-help-checklist,
.mdh-help-documents,
.mdh-help-faq-list {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.mdh-help-checklist__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px 16px;
	background: #f8fbf9;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 18px;
	font-size: 15px;
	line-height: 1.7;
	color: #304138;
}

.mdh-help-checklist__icon {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	font-size: 14px;
}

.mdh-help-document {
	padding: 18px 18px;
	background: #f8fbf9;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 20px;
}

.mdh-help-document strong,
.mdh-help-support-card strong {
	display: block;
	font-size: 16px;
	line-height: 1.35;
	color: #101010;
}

.mdh-help-document span,
.mdh-help-support-card span {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.7;
	color: #54675c;
}

.mdh-help-block--support {
	padding: 34px;
	background: linear-gradient(180deg, rgba(7, 108, 53, 0.05) 0%, rgba(7, 108, 53, 0.015) 100%);
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 32px;
}

.mdh-help-block--support-home {
	max-width: 1120px;
	margin: 0 auto;
}

.mdh-help-support-grid {
	margin-top: 24px;
}

.mdh-help-support-grid--homepage {
	margin-top: 28px;
}

.mdh-help-support-card {
	display: grid;
	gap: 12px;
	text-decoration: none;
}

.mdh-help-support-card--homepage {
	min-height: 100%;
}

.mdh-help-faq {
	overflow: hidden;
}

.mdh-help-faq summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 22px 24px;
	list-style: none;
	cursor: pointer;
}

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

.mdh-help-faq__number {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-help-faq__question {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	color: #101010;
}

.mdh-help-faq__toggle {
	width: 12px;
	height: 12px;
	border-right: 2px solid #1c2b22;
	border-bottom: 2px solid #1c2b22;
	transform: rotate(45deg);
	transition: transform 0.18s ease;
}

.mdh-help-faq[open] .mdh-help-faq__toggle {
	transform: rotate(225deg);
	margin-top: 6px;
}

.mdh-help-faq__answer {
	padding: 0 24px 24px;
	color: #506156;
	font-size: 15px;
	line-height: 1.8;
}

.mdh-help-faq__answer p {
	margin: 0;
}

.mdh-home-section--faq-preview {
	background: #ffffff;
}

.mdh-faq-preview {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	max-width: 760px;
	margin: 0 auto;
}

.mdh-faq-preview__heading {
	text-align: center;
	margin-bottom: 12px;
}

.mdh-faq-preview__heading .mdh-section-kicker {
	color: #6b7a71;
}

.mdh-faq-preview__heading h2 {
	margin: 12px 0 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-faq-preview__support {
	padding: 28px;
	background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 28px;
	box-shadow: 0 16px 34px rgba(14, 22, 18, 0.05);
}

.mdh-faq-preview__support-kicker {
	display: inline-flex;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-faq-preview__support p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #52645a;
}

.mdh-faq-preview__contact-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.mdh-faq-preview__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 18px;
	font-size: 15px;
	font-weight: 700;
	color: #173425;
	text-decoration: none;
}

.mdh-faq-preview__contact-item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: #eff7f1;
	color: var(--mdh-green);
	font-size: 14px;
}

.mdh-help-faq-list--homepage {
	margin-top: 0;
	gap: 16px;
}

.mdh-help-faq-list--homepage .mdh-help-faq {
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.14);
	border-radius: 16px;
	box-shadow: none;
}

.mdh-help-faq-list--homepage .mdh-help-faq summary {
	grid-template-columns: 1fr auto;
	padding: 20px 22px;
}

.mdh-help-faq-list--homepage .mdh-help-faq__number {
	display: none;
}

.mdh-help-faq-list--homepage .mdh-help-faq__question {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.mdh-help-faq-list--homepage .mdh-help-faq__answer {
	padding-bottom: 22px;
}

.mdh-help-faq-list--homepage .mdh-help-faq__toggle {
	position: relative;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	border: 1px solid rgba(16, 24, 18, 0.2);
	border-radius: 50%;
	background: transparent;
	transform: none;
}

.mdh-help-faq-list--homepage .mdh-help-faq__toggle::before,
.mdh-help-faq-list--homepage .mdh-help-faq__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #101010;
	transform: translate(-50%, -50%);
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.mdh-help-faq-list--homepage .mdh-help-faq__toggle::before {
	width: 12px;
	height: 2px;
}

.mdh-help-faq-list--homepage .mdh-help-faq__toggle::after {
	width: 2px;
	height: 12px;
}

.mdh-help-faq-list--homepage .mdh-help-faq[open] .mdh-help-faq__toggle {
	margin-top: 0;
	transform: none;
}

.mdh-help-faq-list--homepage .mdh-help-faq[open] .mdh-help-faq__toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.mdh-home-section--partners {
	padding-top: 56px;
	padding-bottom: 56px;
	background: #ffffff;
}

.mdh-home-section--success-stories {
	padding-top: 22px;
	padding-bottom: 22px;
	background: transparent;
}

.mdh-success-stories {
	display: grid;
	gap: 26px;
}

.mdh-success-stories__intro {
	display: grid;
	gap: 12px;
	justify-items: center;
	text-align: center;
}

.mdh-success-stories__intro h2 {
	margin: 0;
	font-size: clamp(1.55rem, 2.2vw, 2.2rem);
	line-height: 1.15;
	color: #1f2a24;
}

.mdh-success-stories__intro p {
	margin: 0;
	max-width: 72ch;
	color: #53665c;
	font-size: 15px;
	line-height: 1.75;
}

.mdh-success-stories__intro p strong {
	color: #1f2a24;
	font-weight: 900;
}

.mdh-success-stories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.mdh-success-story-card {
	background: #ffffff;
	border: 1px solid #d7dfda;
	border-radius: 18px;
	padding: 14px 14px 16px;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mdh-success-story-card:hover {
	transform: none;
	border-color: #cbd4cf;
	box-shadow: none;
}

.mdh-success-story-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.mdh-success-story-card__quote-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #ecefee;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4e5d55;
	font-size: 18px;
}

.mdh-success-story-card__badge {
	padding: 6px 12px;
	border-radius: 999px;
	background: #e7ece9;
	color: #3f4d45;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.mdh-success-story-card__body {
	display: grid;
	gap: 10px;
}

.mdh-success-story-card__quote {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: #455b52;
}

.mdh-success-story-card__stars {
	margin: 0;
	color: #f2b205;
	font-size: 15px;
	letter-spacing: 2px;
}

.mdh-success-story-card__divider {
	width: 44px;
	height: 2px;
	background: #e4ae1b;
	border-radius: 2px;
}

.mdh-success-story-card h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.1;
	color: #0d8f4a;
}

.mdh-success-story-card__role {
	margin: 0;
	font-size: 14px;
	color: #6c7f76;
}

.mdh-success-stories__stats {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
	gap: 22px;
	max-width: 1000px;
	margin: 8px auto 0;
}

.mdh-success-stat {
	border-radius: 16px;
	padding: 28px 30px;
	border: 1px solid #d7dfda;
	box-shadow: none;
	background: transparent;
	color: #1f2a24;
}

.mdh-success-stat__icon {
	font-size: 34px;
	line-height: 1;
	margin-bottom: 14px;
	display: inline-flex;
	color: #0a7f47;
}

.mdh-success-stat strong {
	display: block;
	margin: 0;
	font-size: clamp(2.2rem, 3.6vw, 3.2rem);
	line-height: 1;
	font-weight: 900;
}

.mdh-success-stat h3,
.mdh-success-stat p {
	margin: 0;
}

.mdh-success-stat--primary {
	background: transparent;
	border-color: #d7dfda;
	color: #1f2a24;
}

.mdh-success-stat--primary h3 {
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
	margin-top: 12px;
}

.mdh-success-stat--primary p {
	font-size: 14px;
	line-height: 1.5;
	opacity: 1;
	margin-top: 8px;
	color: #4f5f57;
}

.mdh-success-stat--secondary {
	background: transparent;
	color: #1f2a24;
	display: grid;
	justify-items: center;
	align-content: center;
	text-align: center;
	gap: 8px;
}

.mdh-success-stat--secondary strong {
	font-size: clamp(3.4rem, 4.8vw, 4.2rem);
}

.mdh-success-stat--secondary p {
	font-size: 15px;
	line-height: 1.35;
	color: #5f7268;
}

/* ─────────────────────────────────────────────────────────
   Homepage Testimonials (CMS-driven from the "Testimonial" page)
   Dedicated classes; the old success-story and success-stat rules
   above are no longer used by the homepage but left in place.
───────────────────────────────────────────────────────── */
.mdh-home-section--testimonials {
	background: #f5f5f5;
}

.mdh-testimonials-heading {
	max-width: 720px;
	margin: 0 auto 44px;
	text-align: center;
}

.mdh-testimonials-heading .mdh-section-kicker {
	color: #6b7a71;
}

.mdh-testimonials-heading h2 {
	margin: 12px 0 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.mdh-testimonial-card {
	background: #ffffff;
	border: 1px solid #e2e5e2;
	border-radius: 16px;
	padding: 24px;
}

.mdh-testimonial-card__quote {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
	color: #333d38;
}

.mdh-testimonial-card__person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mdh-testimonial-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #e9ebe9;
	color: #8a938d;
	font-size: 16px;
	flex-shrink: 0;
}

.mdh-testimonial-card__person-info {
	display: flex;
	flex-direction: column;
}

.mdh-testimonial-card__person-info strong {
	font-size: 15px;
	font-weight: 700;
	color: #101010;
}

.mdh-testimonial-card__person-info span {
	font-size: 13px;
	color: #6b7a71;
}

@media (max-width: 991px) {
	.mdh-testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.mdh-testimonials-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.mdh-partners-strip {
	padding: 20px 0;
	border-radius: 28px;
	background: transparent;
	border: 0;
	box-shadow: none;
	display: grid;
	gap: 26px;
}

.mdh-partners-strip__header {
	display: grid;
	gap: 10px;
}

.mdh-partners-strip__header h2 {
	margin: 0;
	font-size: clamp(1.45rem, 2.3vw, 2rem);
	line-height: 1.2;
	color: #173425;
}

.mdh-partners-strip__header p {
	margin: 0;
	max-width: 68ch;
	font-size: 15px;
	line-height: 1.75;
	color: #52645a;
}

.mdh-partners-strip__types {
	display: grid;
	gap: 30px;
}

.mdh-partners-type {
	padding: 24px;
	border-radius: 22px;
	background: transparent;
	border: 0;
}

.mdh-partners-type__head {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
	justify-items: center;
	text-align: center;
}

.mdh-partners-type__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 6px 12px;
	border-radius: 999px;
	background: #e7ece9;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #3f4d45;
}

.mdh-partners-type__badge i {
	font-size: 12px;
}

.mdh-partners-type__head h3 {
	margin: 0;
	font-size: clamp(1.55rem, 2.2vw, 2.2rem);
	line-height: 1.2;
	color: #1f2a24;
}

.mdh-partners-type__head p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #52645a;
}

.mdh-partnership-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.mdh-partnership-card {
	min-height: 176px;
	padding: 20px 16px;
	border-radius: 14px;
	border: 1px solid #d7dfda;
	background: #ffffff;
	box-shadow: none;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 12px;
	text-align: center;
}

.mdh-partnership-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #0fae4a 0%, #f4a302 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 22px;
	box-shadow: none;
}

.mdh-partnership-card h4 {
	margin: 0;
	font-size: 18px;
	line-height: 1.1;
	color: #233128;
}

.mdh-partnership-card__tag {
	font-size: 11px;
	line-height: 1;
	color: #4f5f57;
	background: #e7ece9;
	padding: 6px 10px;
	border-radius: 999px;
}

.mdh-partnership-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 18px auto 0;
	max-width: 1024px;
	padding: 16px 20px;
	border-radius: 16px;
	background: transparent;
	border: 1px solid #d7dfda;
	box-shadow: none;
}

.mdh-partnership-metric {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 12px;
	position: relative;
}

.mdh-partnership-metric:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 10%;
	width: 1px;
	height: 80%;
	background: rgba(44, 58, 50, 0.18);
}

.mdh-partnership-metric__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, #0fae4a 0%, #f4a302 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #ffffff;
}

.mdh-partnership-metric__copy {
	display: grid;
	line-height: 1.1;
	color: #1f2a24;
}

.mdh-partnership-metric__copy strong {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0.01em;
}

.mdh-partnership-metric__copy span {
	font-size: 14px;
	font-weight: 700;
	opacity: 0.96;
}

.mdh-partners-type--development .mdh-partners-strip__grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.mdh-partners-strip__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
	gap: 14px;
	align-items: stretch;
}

.mdh-partners-strip__item {
	min-height: 84px;
	padding: 14px 16px;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid #d7dfda;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mdh-partners-strip__item:hover {
	transform: none;
	border-color: #cbd4cf;
	box-shadow: none;
}

.mdh-partners-strip__item img {
	max-width: 90%;
	max-height: 94px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.95;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mdh-partners-strip__item:hover img {
	opacity: 1;
	transform: scale(1.03);
}

.mdh-home-section--financing,
.mdh-home-section--support-cta {
	background: #ffffff;
}

.mdh-home-section--financing {
	padding-bottom: 82px;
}

.mdh-quick-check {
	display: grid;
	gap: 16px;
	align-items: center;
	margin: 22px auto 8px;
	padding: 22px 22px;
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
	border: 1px solid rgba(7, 108, 53, 0.12);
	box-shadow: 0 14px 28px rgba(11, 33, 20, 0.06);
}

.mdh-quick-check__copy {
	display: grid;
	gap: 6px;
}

.mdh-quick-check__copy strong {
	font-size: 20px;
	line-height: 1.35;
	color: #0f2118;
}

.mdh-quick-check__list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 700;
	color: #244233;
}

.mdh-quick-check__list li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mdh-quick-check__list i {
	color: var(--mdh-green);
}

.mdh-inline-actions--quick-check {
	margin-top: 0;
	gap: 12px;
}

.mdh-inline-actions--quick-check .mdh-cta-button,
.mdh-inline-actions--quick-check .mdh-ghost-button {
	min-height: 44px;
}

.mdh-inline-actions--faq-support {
	margin-top: 18px;
	gap: 12px;
}

.mdh-inline-actions--faq-support .mdh-cta-button,
.mdh-inline-actions--faq-support .mdh-ghost-button {
	min-height: 44px;
}

.mdh-mobile-sticky-apply {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 260;
	display: none;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: linear-gradient(180deg, rgba(247, 243, 234, 0) 0%, rgba(247, 243, 234, 0.92) 32%, rgba(247, 243, 234, 0.98) 100%);
	border-top: 1px solid rgba(19, 51, 32, 0.1);
}

.mdh-mobile-sticky-apply .mdh-cta-button {
	width: 100%;
	justify-content: center;
	min-height: 48px;
	border-radius: 14px;
	box-shadow: 0 14px 22px rgba(245, 159, 11, 0.28);
}

.mdh-home-section--support-cta {
	background: var(--mdh-surface);
	padding-bottom: 24px;
}

.mdh-page-cta-strip {
	display: grid;
	gap: 22px;
	align-items: center;
	max-width: 1380px;
	margin: 0 auto;
	padding: 34px 34px;
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 32px;
	box-shadow: 0 24px 54px rgba(147, 121, 54, 0.12);
}

.mdh-page-cta-strip__copy {
	max-width: 700px;
}

.mdh-page-cta-strip__kicker {
	display: inline-flex;
	margin-bottom: 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-page-cta-strip h2 {
	margin: 0;
	font-size: clamp(26px, 3.2vw, 40px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #050505;
}

.mdh-page-cta-strip p {
	margin: 12px 0 0;
	max-width: 620px;
	font-size: 15px;
	line-height: 1.7;
	color: #5a6c62;
}

.mdh-inline-actions--page-cta {
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin-top: 0;
}

.mdh-inline-actions--page-cta .mdh-cta-button {
	padding-left: 28px;
	padding-right: 28px;
	box-shadow: 0 16px 26px rgba(245, 159, 11, 0.24);
}

.mdh-inline-actions--page-cta .mdh-ghost-button {
	border-color: rgba(7, 108, 53, 0.18);
	background: #f4faf6;
	color: var(--mdh-green);
}

.mdh-footer-cta {
	padding: 8px 0 40px;
}

.mdh-page-cta-strip--footer {
	position: relative;
	display: block;
	max-width: 1400px;
	padding: 40px 32px 32px;
	background: #2e3033;
	border: none;
	border-radius: 28px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
	overflow: hidden;
	text-align: left;
}

.mdh-page-cta-strip--footer .mdh-page-cta-strip__copy {
	position: relative;
	z-index: 2;
	max-width: 460px;
	padding: 0;
	text-align: left;
}

.mdh-page-cta-strip--footer .mdh-page-cta-strip__kicker {
	display: none;
}

.mdh-page-cta-strip--footer h2 {
	color: #ffffff !important;
}

.mdh-page-cta-strip--footer p {
	color: rgba(255, 255, 255, 0.78);
}

.mdh-page-cta-strip--footer .mdh-inline-actions--page-cta {
	position: relative;
	z-index: 2;
	justify-content: flex-start;
	margin-top: 20px;
	padding: 0;
}

.mdh-page-cta-strip--footer .mdh-inline-actions--page-cta .mdh-ghost-button {
	display: none;
}

.mdh-page-cta-strip--footer .mdh-inline-actions--page-cta .mdh-cta-button {
	background: #eef0ee;
	color: #101010 !important;
	box-shadow: none;
}

.mdh-page-cta-strip--footer .mdh-inline-actions--page-cta .mdh-cta-button:hover {
	background: #dfe2df;
}

.mdh-page-cta-strip--footer .mdh-page-cta-strip__media {
	position: relative;
	z-index: 1;
	margin: 28px -32px -32px;
	height: 200px;
}

.mdh-page-cta-strip--footer .mdh-page-cta-strip__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, #2e3033 0%, rgba(46, 48, 51, 0) 55%);
	pointer-events: none;
}

.mdh-page-cta-strip--footer .mdh-page-cta-strip__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 992px) {
	.mdh-page-cta-strip--footer {
		min-height: 380px;
		padding: 56px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		text-align: left;
	}

	.mdh-page-cta-strip--footer .mdh-page-cta-strip__copy {
		max-width: 420px;
	}

	.mdh-page-cta-strip--footer .mdh-inline-actions--page-cta {
		margin-top: 24px;
	}

	.mdh-page-cta-strip--footer .mdh-page-cta-strip__media {
		position: absolute;
		inset: 0;
		left: 38%;
		margin: 0;
		height: auto;
		z-index: 0;
	}

	.mdh-page-cta-strip--footer .mdh-page-cta-strip__media::before {
		background: linear-gradient(90deg, #2e3033 0%, rgba(46, 48, 51, 0.88) 18%, rgba(46, 48, 51, 0) 55%);
	}
}

.mdh-home-section--branches {
	background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.mdh-home-section--ethics {
	background: #ffffff;
}

.mdh-home-section--sectors {
	background: #101112;
	position: relative;
	overflow: hidden;
	padding-top: 0;
}

.mdh-home-section--sectors::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 0%, rgba(7, 108, 53, 0.22), transparent 38%);
	pointer-events: none;
}

.mdh-home-section--sectors > .container {
	position: relative;
	z-index: 1;
}

.mdh-sectors-banner {
	position: relative;
	width: 100%;
	height: clamp(420px, 52vw, 680px);
	overflow: hidden;
	margin-bottom: 56px;
}

.mdh-sectors-banner__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.mdh-sectors-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0) 55%,
		rgba(0, 0, 0, 0.06) 66%,
		rgba(0, 0, 0, 0.16) 76%,
		rgba(0, 0, 0, 0.34) 85%,
		rgba(0, 0, 0, 0.62) 92%,
		rgba(0, 0, 0, 0.88) 97%,
		#000000 100%
	);
	pointer-events: none;
}

.mdh-sectors-banner__stats-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding-bottom: 40px;
}

.mdh-sectors-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px 56px;
}

.mdh-sectors-stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mdh-sectors-stat strong {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	line-height: 1;
	color: #3ecf4a;
}

.mdh-sectors-stat span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
	.mdh-sectors-banner {
		height: clamp(360px, 90vw, 460px);
		margin-bottom: 40px;
	}

	.mdh-sectors-banner__stats-wrap {
		padding-bottom: 24px;
	}

	.mdh-sectors-stats {
		justify-content: flex-start;
		gap: 20px 28px;
	}

	.mdh-sectors-stat strong {
		font-size: 22px;
	}

	.mdh-sectors-stat span {
		font-size: 12px;
	}
}

@media (max-width: 575px) {
	.mdh-sectors-stats {
		justify-content: flex-start;
		row-gap: 18px;
		column-gap: 24px;
	}

	.mdh-sectors-stat {
		flex: 0 0 calc(50% - 12px);
	}
}

/* ─────────────────────────────────────────────────────────
   Homepage About section (post-hero)
───────────────────────────────────────────────────────── */
.mdh-about-intro {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}

.mdh-about-intro .mdh-section-kicker {
	color: #6b7a71;
}

.mdh-about-intro__heading {
	margin: 14px 0 0;
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-about-intro .mdh-inline-actions {
	margin-top: 28px;
}

.mdh-about-intro .mdh-cta-button {
	background: var(--mdh-green);
	box-shadow: none;
}

.mdh-about-intro .mdh-cta-button:hover {
	background: var(--mdh-green-dark);
}

.mdh-about-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	text-align: center;
}

.mdh-about-feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	margin: 0 auto 16px;
	border-radius: 0;
	background: none;
	border: none;
	color: var(--mdh-green);
	font-size: 30px;
	line-height: 1;
}

.mdh-about-feature__icon svg {
	width: 26px;
	height: 26px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mdh-about-feature h3 {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #101010;
}

.mdh-about-feature p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #5d6b62;
}

.mdh-about-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(19, 51, 32, 0.08);
}

.mdh-about-stat {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.mdh-about-stat strong {
	font-size: 20px;
	font-weight: 800;
	color: var(--mdh-green);
	white-space: nowrap;
}

.mdh-about-stat span {
	font-size: 13px;
	color: #5d6b62;
}

/* ─────────────────────────────────────────────────────────
   Homepage Trusted Partners (simple logo strip)
───────────────────────────────────────────────────────── */
.mdh-partners-simple {
	text-align: center;
}

.mdh-partners-simple__kicker {
	display: block;
	margin-bottom: 40px;
}

.mdh-partners-simple .mdh-section-kicker {
	color: #6b7a71;
}

.mdh-partners-simple__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px 56px;
}

.mdh-partners-simple__logo img {
	display: block;
	height: 30px;
	width: auto;
	max-width: 112px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.65;
}

@media (max-width: 767px) {
	.mdh-partners-simple__logos {
		gap: 22px 28px;
	}

	.mdh-partners-simple__logo img {
		height: 24px;
		max-width: 110px;
	}
}

@media (max-width: 991px) {
	.mdh-about-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}
}

@media (max-width: 767px) {
	.mdh-about-features {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.mdh-about-intro {
		margin-bottom: 40px;
	}

	.mdh-about-stats {
		flex-direction: column;
		gap: 14px;
		margin-top: 36px;
	}
}

.mdh-section-shell,
.mdh-trust-strip,
.mdh-proof-grid,
.mdh-sector-grid,
.mdh-process-grid,
.mdh-support-actions {
	display: grid;
	gap: 18px;
}

.mdh-section-shell--intro,
.mdh-section-shell--split,
.mdh-section-shell--ethics {
	grid-template-columns: 1fr;
	align-items: stretch;
	gap: 28px;
}

.mdh-intro-visual {
	display: grid;
	gap: 18px;
}

.mdh-section-copy {
	max-width: 700px;
}

.mdh-section-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-section-copy h2,
.mdh-section-heading h2,
.mdh-final-cta h2 {
	margin: 0;
	font-size: clamp(24px, 3.6vw, 36px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #101010;
}

.mdh-section-copy p,
.mdh-section-heading p,
.mdh-final-cta p {
	margin: 18px 0 0;
	font-size: 15px;
	line-height: 1.8;
	color: #435148;
}

.mdh-section-heading {
	max-width: 760px;
	margin-bottom: 30px;
}

.mdh-section-heading--centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.mdh-section-heading--sectors-showcase {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-bottom: 42px;
}

.mdh-section-heading--sectors-showcase p {
	margin: 0;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.mdh-section-heading--sectors-showcase p strong {
	color: var(--mdh-green);
}

.mdh-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin-top: 24px;
}

.mdh-inline-actions--centered {
	justify-content: center;
}

.mdh-inline-actions--inverse {
	justify-content: flex-end;
}

.mdh-text-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--mdh-green);
	text-decoration: none;
}

.mdh-text-cta::after {
	content: "\2192";
	font-size: 16px;
}

.mdh-text-cta--muted {
	color: #4c5e54;
}

.mdh-section-kicker--pill {
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, #11a63e 0%, #f0b41e 100%);
	box-shadow: 0 10px 24px rgba(17, 166, 62, 0.18);
	color: #ffffff;
	letter-spacing: 0.04em;
}

.mdh-section-kicker--pill i {
	font-size: 14px;
}

.mdh-trust-strip {
	grid-template-columns: 1fr;
	padding: 18px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 24px;
	box-shadow: 0 18px 42px rgba(16, 24, 18, 0.06);
}

.mdh-trust-item {
	padding: 10px 4px;
}

.mdh-trust-item span {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #658073;
}

.mdh-trust-item strong {
	display: block;
	font-size: 18px;
	line-height: 1.45;
	color: #101010;
}

.mdh-proof-grid,
.mdh-process-grid,
.mdh-support-actions {
	grid-template-columns: 1fr;
}

.mdh-story-panel {
	position: relative;
	min-height: 380px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.mdh-story-panel__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	padding: 0;
	display: block;
}

.mdh-story-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 20, 13, 0.04) 0%, rgba(7, 20, 13, 0.62) 100%);
}

.mdh-story-panel__overlay {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 380px;
	padding: 28px;
	color: #ffffff;
}

.mdh-story-panel__eyebrow {
	display: inline-flex;
	align-self: flex-start;
	padding: 8px 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
}

.mdh-story-panel__overlay strong {
	max-width: 420px;
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.mdh-proof-card,
.mdh-process-card,
.mdh-support-action,
.mdh-sector-card,
.mdh-benefit-card,
.mdh-final-cta {
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 16px 36px rgba(14, 22, 18, 0.06);
}

.mdh-proof-card {
	padding: 24px;
	background: #ffffff;
	text-align: center;
}

.mdh-proof-card strong,
.mdh-process-card strong,
.mdh-sector-card strong,
.mdh-support-action strong,
.mdh-benefit-card strong {
	display: block;
	font-size: 20px;
	line-height: 1.3;
	color: #101010;
}

.mdh-proof-card p,
.mdh-process-card p,
.mdh-support-action span,
.mdh-sector-card span:not(.mdh-sector-card__image),
.mdh-benefit-card p {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.7;
	color: #55675e;
}

.mdh-intro-visual .mdh-proof-card {
	text-align: left;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.mdh-intro-visual .mdh-proof-card strong {
	font-size: clamp(22px, 3vw, 28px);
	word-break: break-word;
}

.mdh-benefit-stack {
	display: grid;
	gap: 14px;
}

.mdh-financing-visuals {
	display: grid;
	gap: 18px;
}

.mdh-financing-showcase {
	display: grid;
	gap: 34px;
}

.mdh-section-heading--financing-showcase {
	max-width: 920px;
	margin-bottom: 0;
}

.mdh-financing-showcase__card {
	position: relative;
	max-width: 760px;
	margin: 0 auto;
	padding: 38px 42px;
	background: #ffffff;
	border: 1px solid rgba(19, 51, 32, 0.08);
	border-radius: 28px;
	box-shadow: 0 16px 36px rgba(14, 22, 18, 0.09);
}

.mdh-financing-showcase__badge {
	position: absolute;
	top: -24px;
	right: -24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: #f6fff8;
	border: 1px solid rgba(7, 108, 53, 0.12);
	box-shadow: 0 12px 24px rgba(10, 41, 22, 0.1);
	color: #17b24b;
	font-size: 22px;
}

.mdh-financing-showcase__copy {
	display: grid;
	gap: 26px;
	text-align: center;
}

.mdh-financing-showcase__copy p {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: #324355;
}

.mdh-financing-showcase__gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: stretch;
}

.mdh-financing-showcase__image-card {
	margin: 0;
	overflow: hidden;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(14, 22, 18, 0.08);
}

.mdh-financing-showcase__image-card img {
	display: block;
	width: 100%;
	height: 248px;
	object-fit: cover;
}

.mdh-financing-photo-stack {
	position: relative;
	min-height: 420px;
	padding: 22px;
	background: linear-gradient(180deg, rgba(7, 108, 53, 0.05) 0%, rgba(7, 108, 53, 0.02) 100%);
	border: 1px solid rgba(7, 108, 53, 0.08);
	border-radius: 32px;
	box-shadow: 0 18px 40px rgba(12, 25, 18, 0.08);
}

.mdh-financing-photo {
	position: absolute;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 44px rgba(13, 26, 18, 0.16);
	border: 6px solid #ffffff;
}

.mdh-financing-photo--large {
	top: 22px;
	left: 22px;
	width: min(68%, 360px);
	height: 340px;
	z-index: 2;
}

.mdh-financing-photo--small {
	right: 24px;
	top: 44px;
	width: min(42%, 220px);
	height: 170px;
	z-index: 3;
}

.mdh-financing-photo--small-alt {
	right: 36px;
	bottom: 24px;
	width: min(48%, 250px);
	height: 190px;
	z-index: 1;
}

.mdh-ethics-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.mdh-ethics-content {
	display: grid;
	gap: 20px;
}

.mdh-section-copy--ethics-right {
	max-width: none;
}

.mdh-ethics-visual {
	position: relative;
	min-height: 420px;
	height: 100%;
	margin: 0;
	padding: 0;
	border-radius: 0;
	overflow: hidden;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.mdh-ethics-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	padding: 0;
}

.mdh-ethics-card {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 16px;
	padding: 20px 22px;
	background: #ffffff;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 24px;
	box-shadow: 0 10px 28px rgba(15, 22, 18, 0.05);
}

.mdh-ethics-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #f4faef;
	border: 1px solid rgba(7, 108, 53, 0.08);
	color: var(--mdh-green);
	font-size: 18px;
}

.mdh-ethics-card__body {
	min-width: 0;
}

.mdh-ethics-card strong {
	display: block;
	font-size: 16px;
	line-height: 1.35;
	color: #101010;
}

.mdh-ethics-card p {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5d6e64;
}

.mdh-branch-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 0;
}

.mdh-section-heading--branches {
	margin-bottom: 26px;
}

.mdh-branches-layout {
	display: grid;
	gap: 20px;
}

.mdh-branch-stat {
	padding: 22px 18px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 22px;
	box-shadow: 0 14px 32px rgba(16, 24, 18, 0.06);
	text-align: center;
}

.mdh-branch-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	border-radius: 14px;
	background: #eff7f1;
	color: var(--mdh-green);
	font-size: 17px;
}

.mdh-branch-stat strong {
	display: block;
	font-size: 28px;
	line-height: 1;
	color: #101010;
}

.mdh-branch-stat span {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: #5b6b62;
}

.mdh-branch-card-grid {
	display: grid;
	gap: 18px;
}

.mdh-branch-info-card {
	padding: 28px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 30px;
	box-shadow: 0 18px 38px rgba(16, 24, 18, 0.07);
}

.mdh-branch-info-card__address {
	margin: 0;
	font-size: 18px;
	line-height: 1.7;
	color: #141414;
}

.mdh-branch-info-card__meta {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

.mdh-branch-info-card__line {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: #39473f;
	font-size: 15px;
	line-height: 1.5;
}

.mdh-branch-info-card__line i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: #f4faef;
	color: var(--mdh-green);
	font-size: 16px;
}

.mdh-branch-panel {
	display: grid;
	align-items: stretch;
}

.mdh-branch-card {
	padding: 32px;
	background: linear-gradient(135deg, #0a5f2f 0%, #0e733c 100%);
	border-radius: 32px;
	box-shadow: 0 24px 48px rgba(11, 40, 23, 0.18);
}

.mdh-branch-card .mdh-section-kicker,
.mdh-branch-card h3 {
	color: #ffffff;
}

.mdh-branch-card h3 {
	margin: 0;
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.mdh-branch-actions {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.mdh-branch-action {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;
	text-decoration: none;
}

.mdh-branch-action i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	font-size: 17px;
}

.mdh-branch-action strong,
.mdh-branch-action span {
	display: block;
	color: #ffffff;
}

.mdh-branch-action span {
	margin-top: 4px;
	font-size: 14px;
	opacity: 0.82;
}

.mdh-benefit-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	padding: 22px 22px;
	background: #ffffff;
}

.mdh-benefit-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: rgba(7, 108, 53, 0.08);
	color: var(--mdh-green);
	font-size: 18px;
}

.mdh-sector-grid {
	grid-template-columns: 1fr;
}

.mdh-sector-grid--showcase {
	position: relative;
	z-index: 1;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
	.mdh-sector-grid.mdh-sector-grid--showcase {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.mdh-sector-card {
	display: block;
	padding: 24px;
	background: #ffffff;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mdh-sector-card--showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 182px;
	padding: 18px 22px 20px;
	border: 1px solid rgba(7, 108, 53, 0.22);
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(10, 30, 18, 0.09);
	text-align: center;
}

.mdh-sector-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, #e4f5ea 0%, #d3eddd 100%);
	color: #0a7a3e;
	font-size: 18px;
}

.mdh-sector-card--showcase strong {
	font-size: 17px;
	line-height: 1.4;
	color: #0f1914;
}

.mdh-sector-card__divider {
	display: block;
	width: 28px;
	height: 3px;
	margin: 10px auto 12px;
	border-radius: 999px;
	background: #f0b41e;
}

.mdh-sector-card--showcase span:last-child {
	font-size: 13px;
	line-height: 1.55;
	color: #3f4e45;
}


.mdh-sector-card--all-sectors {
	background: linear-gradient(140deg, #0a5f2f 0%, #0f7a3f 100%);
	border-color: transparent;
	box-shadow: 0 18px 34px rgba(8, 42, 23, 0.22);
}

.mdh-sector-card--all-sectors .mdh-sector-card__icon {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.mdh-sector-card--all-sectors strong,
.mdh-sector-card--all-sectors span:last-child {
	color: #ffffff;
}


.mdh-sector-card--all-sectors .mdh-sector-card__divider {
	background: #ffd571;
}

.mdh-sector-card--all {
	background: #f7fbf8;
	border-style: dashed;
}

.mdh-support-action:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 44px rgba(12, 30, 19, 0.13);
	border-color: rgba(7, 108, 53, 0.34);
}

.mdh-sector-card:focus-visible {
	outline: 3px solid rgba(240, 180, 30, 0.45);
	outline-offset: 2px;
}

.mdh-sector-card--media {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 380px;
	padding: 0;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.mdh-sector-card__image {
	display: block;
	position: relative;
	width: 100%;
	flex: none;
	padding-top: 100%;
	overflow: hidden;
}

.mdh-sector-card__image img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 65%;
}

.mdh-sector-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 24px 26px;
	text-align: left;
}

.mdh-sector-card--media strong {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: #101010;
}

.mdh-sector-card__content span {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.6;
	color: #5d6b62;
}

.mdh-sector-card__cta {
	align-self: flex-start;
	margin-top: 18px;
	padding: 8px 18px;
	border-radius: 8px;
	background: #eef0ee;
	color: #101010;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease;
}

.mdh-sector-card__cta:hover {
	background: #e2e5e2;
}

/* ─────────────────────────────────────────────────────────
   Homepage "More sectors" pill list (hardcoded, separate section)
───────────────────────────────────────────────────────── */
.mdh-home-section--more-sectors {
	background: #ffffff;
}

.mdh-more-sectors-heading {
	max-width: 620px;
	margin: 0 auto 44px;
	text-align: center;
}

.mdh-more-sectors-heading .mdh-section-kicker {
	color: #6b7a71;
}

.mdh-more-sectors-heading h2 {
	margin: 12px 0 0;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #101010;
}

.mdh-more-sectors-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 18px;
}

@media (min-width: 1100px) {
	.mdh-more-sectors-list {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, auto));
		justify-content: center;
		justify-items: center;
	}
}

.mdh-more-sector-pill {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 8px 24px 8px 8px;
	border: 1px solid rgba(16, 16, 16, 0.1);
	border-radius: 999px;
	background: #ffffff;
	text-decoration: none;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mdh-more-sector-pill:hover {
	border-color: rgba(7, 108, 53, 0.3);
	box-shadow: 0 12px 26px rgba(10, 30, 18, 0.1);
	transform: translateY(-2px);
}

.mdh-more-sector-pill__avatar {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.mdh-more-sector-pill__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mdh-more-sector-pill__label {
	font-size: 15px;
	font-weight: 600;
	color: #101010;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.mdh-more-sectors-list {
		display: flex;
		flex-wrap: wrap;
		gap: 12px 14px;
	}

	.mdh-more-sector-pill {
		padding: 6px 18px 6px 6px;
		gap: 10px;
	}

	.mdh-more-sector-pill__avatar {
		width: 38px;
		height: 38px;
	}

	.mdh-more-sector-pill__label {
		font-size: 13px;
	}
}

.mdh-home-section--process {
	background:
		radial-gradient(circle at 50% 0%, rgba(240, 180, 30, 0.08), transparent 28%),
		linear-gradient(180deg, #f7f3e7 0%, #fbfaf5 100%);
}

.mdh-home-section--calculator {
	background: #ffffff;
}

.mdh-section-heading--calculator-home {
	max-width: 760px;
	margin-bottom: 30px;
}

.mdh-financing-calculator--compact {
	gap: 28px;
	background: #ffffff;
	border: 1px solid rgba(16, 24, 18, 0.08);
	border-radius: 28px;
	box-shadow: 0 24px 50px rgba(11, 28, 18, 0.08);
	padding: 28px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__form {
	padding: 0;
	border: none;
	box-shadow: none;
	background: transparent;
	backdrop-filter: none;
	border-radius: 0;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__summary {
	padding: 24px;
	border-radius: 22px;
	border: none;
	box-shadow: none;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__form {
	gap: 16px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__field {
	gap: 10px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__field-head label {
	font-size: 15px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__field-head input[type="number"] {
	padding: 10px 12px;
	font-size: 16px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__summary > strong {
	font-size: clamp(34px, 5.2vw, 50px);
}

.mdh-inline-actions--calculator-home {
	align-items: center;
	margin-top: 18px;
	gap: 10px;
}

.mdh-inline-actions--calculator-home .mdh-cta-button,
.mdh-inline-actions--calculator-home .mdh-ghost-button {
	min-height: 44px;
}

.mdh-inline-actions--calculator-home .mdh-cta-button {
	background: var(--mdh-green);
	box-shadow: none;
}

.mdh-inline-actions--calculator-home .mdh-cta-button:hover {
	background: var(--mdh-green-dark);
}

.mdh-inline-actions--calculator-home .mdh-ghost-button {
	color: #17231b;
	background: #eef0ee;
	border: 1px solid rgba(16, 24, 18, 0.1);
}

.mdh-inline-actions--calculator-home .mdh-ghost-button:hover {
	background: #e2e5e2;
}

.mdh-section-heading--process-showcase {
	max-width: 760px;
	margin-bottom: 36px;
}

.mdh-process-grid--showcase {
	gap: 18px;
}

.mdh-process-card {
	padding: 28px 24px;
	background: #ffffff;
}

.mdh-process-card--showcase {
	position: relative;
	overflow: hidden;
	padding: 26px 24px 24px;
	border: 1px solid rgba(21, 52, 33, 0.08);
	border-radius: 28px;
	box-shadow: 0 16px 40px rgba(20, 24, 17, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mdh-process-card--showcase::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, rgba(15, 164, 86, 0.95) 0%, rgba(240, 180, 30, 0.9) 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.mdh-process-card--showcase:hover {
	transform: translateY(-3px);
	border-color: rgba(15, 164, 86, 0.16);
	box-shadow: 0 22px 46px rgba(20, 24, 17, 0.09);
}

.mdh-process-card--showcase:hover::before {
	opacity: 1;
}

.mdh-process-card__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.mdh-process-card__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 50px;
	padding: 0 14px;
	font-size: 15px;
	font-weight: 800;
	border-radius: 16px;
	background: #eff7f1;
	color: var(--mdh-green);
}

.mdh-process-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fbf6de 0%, #f4efd2 100%);
	color: #14884b;
	font-size: 18px;
}

.mdh-process-card__meta {
	display: inline-flex;
	align-items: center;
	margin-top: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #f7fbf8;
	border: 1px solid rgba(21, 52, 33, 0.07);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #5f7066;
	text-transform: uppercase;
}

.mdh-process-note {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 14px;
	max-width: 780px;
	margin: 26px auto 0;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(21, 52, 33, 0.08);
	border-radius: 999px;
	box-shadow: 0 16px 32px rgba(20, 24, 17, 0.05);
	backdrop-filter: blur(10px);
	text-align: left;
}

.mdh-process-note__icon,
.mdh-process-note i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: linear-gradient(180deg, #eef8cf 0%, #f7f0cc 100%);
	color: var(--mdh-green);
	font-size: 18px;
}

.mdh-process-note__content {
	display: grid;
	gap: 4px;
}

.mdh-process-note strong {
	font-size: 18px;
	color: #111111;
}

.mdh-process-note span {
	font-size: 15px;
	color: #5a6c62;
}

/* ─────────────────────────────────────────────────────────
   Homepage "How It Works" timeline + phone mockup
   (isolated from the shared .mdh-process-grid--showcase /
   .mdh-process-card--showcase used by the Financing page)
───────────────────────────────────────────────────────── */
.mdh-home-process-section {
	background: #f5f5f5;
}

.mdh-home-process {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.mdh-home-process__heading {
	margin: 0 0 36px;
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: #101010;
}

.mdh-home-process__timeline {
	display: flex;
	flex-direction: column;
}

.mdh-home-process__step {
	display: flex;
	gap: 20px;
}

.mdh-home-process__icon-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.mdh-home-process__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #e9ebe9;
	color: #9aa39d;
	font-size: 18px;
	flex-shrink: 0;
}

.mdh-home-process__step.is-active .mdh-home-process__icon {
	background: var(--mdh-green);
	color: #ffffff;
}

.mdh-home-process__connector {
	width: 2px;
	flex: 1;
	min-height: 28px;
	margin: 4px 0;
	background: #dfe2df;
}

.mdh-home-process__content {
	padding-bottom: 28px;
}

.mdh-home-process__content strong {
	display: block;
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 700;
	color: #101010;
}

.mdh-home-process__step.is-active .mdh-home-process__content strong {
	color: var(--mdh-green);
}

.mdh-home-process__content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #667069;
}

.mdh-home-process__phone-col {
	display: flex;
	justify-content: center;
}

.mdh-home-process__phone {
	position: relative;
	width: 260px;
	aspect-ratio: 9 / 19.5;
	background: #101112;
	border-radius: 46px;
	padding: 14px;
	box-shadow:
		0 40px 70px rgba(0, 0, 0, 0.28),
		0 4px 12px rgba(0, 0, 0, 0.12),
		inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.mdh-home-process__phone-notch {
	position: absolute;
	top: 14px;
	left: 50%;
	z-index: 2;
	width: 84px;
	height: 20px;
	transform: translateX(-50%);
	background: #101112;
	border-radius: 999px;
}

.mdh-home-process__phone-screen {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 34px;
	overflow: hidden;
}

.mdh-home-process__phone-statusbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 22px 2px;
	font-size: 12px;
	font-weight: 700;
	color: #101010;
}

.mdh-home-process__phone-statusicons {
	display: flex;
	gap: 5px;
	font-size: 10px;
}

.mdh-home-process__phone-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--mdh-green);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

.mdh-home-process__phone-back {
	font-size: 13px;
}

.mdh-home-process__phone-body {
	flex: 1;
	padding: 16px 18px;
	overflow: hidden;
}

.mdh-home-process__phone-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
	border-radius: 50%;
	background: var(--mdh-green);
	color: #ffffff;
	font-size: 16px;
}

.mdh-home-process__phone-body h3 {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 800;
	color: #101010;
}

.mdh-home-process__phone-body p {
	margin: 0 0 12px;
	font-size: 10px;
	line-height: 1.4;
	color: #748078;
}

.mdh-home-process__phone-steps {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.mdh-home-process__phone-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #eef0ee;
	color: #9aa39d;
	font-size: 10px;
	font-weight: 700;
}

.mdh-home-process__phone-steps span.is-done,
.mdh-home-process__phone-steps span.is-active {
	background: var(--mdh-green);
	color: #ffffff;
}

.mdh-home-process__phone-step-line {
	flex: 1;
	height: 2px;
	background: #e2e5e2;
}

.mdh-home-process__phone-label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 800;
	color: #101010;
}

.mdh-home-process__phone-field {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 7px 12px;
	margin-bottom: 7px;
	border: 1px solid #e7e9e7;
	border-radius: 12px;
}

.mdh-home-process__phone-field span {
	font-size: 9px;
	color: #9aa39d;
}

.mdh-home-process__phone-field strong {
	font-size: 12px;
	font-weight: 600;
	color: #101010;
}

.mdh-home-process__phone-pagination {
	position: absolute;
	left: 50%;
	bottom: -18px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	transform: translateX(-50%);
	background: #1c1d1e;
	color: #ffffff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.mdh-home-process__phone-nav {
	font-size: 11px;
	opacity: 0.7;
}

@media (min-width: 768px) {
	.mdh-home-process {
		grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
		gap: 40px;
	}
}

@media (min-width: 992px) {
	.mdh-home-process {
		grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
		gap: 64px;
	}

	.mdh-home-process__phone {
		width: 280px;
	}
}

@media (max-width: 767px) {
	.mdh-home-process {
		gap: 40px;
	}

	.mdh-home-process__heading {
		text-align: center;
	}

	.mdh-home-process__phone {
		width: 240px;
	}

	.mdh-home-process__phone-pagination {
		bottom: -16px;
		font-size: 11px;
		padding: 7px 12px;
	}
}

.mdh-support-panel {
	display: grid;
	gap: 28px;
	padding: 34px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	box-shadow: 0 24px 50px rgba(10, 41, 22, 0.08);
}

.mdh-support-panel .mdh-section-kicker,
.mdh-support-panel h2,
.mdh-support-panel p {
	color: #101010;
}

.mdh-support-panel .mdh-section-kicker {
	opacity: 1;
}

.mdh-support-actions {
	grid-template-columns: 1fr;
}

.mdh-support-action {
	display: block;
	padding: 22px;
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.mdh-support-action i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 14px;
	background: #eff7f1;
	color: var(--mdh-green);
	font-size: 17px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mdh-support-action strong,
.mdh-support-action span {
	color: #101010;
}

.mdh-support-action span {
	opacity: 1;
	color: #5a6c62;
}

.mdh-final-cta {
	display: grid;
	gap: 24px;
	padding: 34px;
	background: #ffffff;
}

.mdh-final-cta--support {
	align-items: center;
	border-radius: 32px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 20px 40px rgba(14, 22, 18, 0.07);
}

.mdh-final-cta__copy {
	max-width: 640px;
}

.mdh-final-cta__response {
	display: inline-flex;
	margin-top: 18px;
	font-size: 14px;
	font-weight: 600;
	color: #5a6c62;
}

.mdh-ghost-button--dark {
	border-color: rgba(7, 108, 53, 0.24);
	color: var(--mdh-green);
	background: rgba(7, 108, 53, 0.04);
}

.mdh-footer-shell {
	position: relative;
	background: #f4f4f4;
	margin: 24px 24px 24px;
	padding: 40px 0 30px;
	border-top: none;
	border-radius: 32px;
}

.mdh-footer-shell__grid {
	display: flex;
	flex-wrap: wrap;
	column-gap: 48px;
	row-gap: 28px;
	margin-bottom: 32px;
}

.mdh-footer-shell__grid .mdh-footer-panel--text {
	flex: 1 1 260px;
}

.mdh-footer-shell__grid .mdh-footer-panel:not(.mdh-footer-panel--text) {
	flex: 1 1 140px;
}

.mdh-footer-panel {
	padding: 0 18px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mdh-footer-panel--text {
	max-width: 320px;
}

.mdh-footer-logo {
	display: block;
	height: 44px;
	width: auto;
	margin-bottom: 20px;
	mix-blend-mode: multiply;
}

.mdh-footer-summary {
	margin: 0;
	max-width: 260px;
	font-size: 16px;
	line-height: 1.8;
	color: #222222;
}

.mdh-footer-panel__label {
	display: block;
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a938d;
}

.mdh-footer-contact-address {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.7;
	color: #2c2c2c;
}

.mdh-footer-contact-link {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: #111111;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mdh-footer-contact-link:hover {
	opacity: 0.72;
}

.mdh-footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
}

.mdh-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #2a2f2c;
	color: #ffffff;
	font-size: 13px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.mdh-footer-social__link:hover {
	background: var(--mdh-green);
}

.mdh-footer-linklist {
	display: grid;
	gap: 10px;
}

.mdh-footer-linklist a {
	color: #111111;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.mdh-footer-linklist a:hover,
.mdh-footer-linklist a:focus-visible {
	color: #000000;
	opacity: 0.68;
}

.mdh-footer-linklist a.is-subitem {
	padding-left: 14px;
	color: #2d2d2d;
	font-size: 14px;
	font-weight: 400;
}

.mdh-footer-contact {
	display: grid;
	gap: 16px;
	margin-top: 20px;
	padding-top: 4px;
}

.mdh-footer-contact p {
	display: grid;
	gap: 5px;
	margin: 0;
}

.mdh-footer-contact strong {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.mdh-footer-contact span {
	color: #2c2c2c;
	font-size: 15px;
	line-height: 1.7;
}

.mdh-footer-shell__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mdh-footer-shell__bottom p {
	margin: 0;
	color: #444444;
	font-size: 14px;
	line-height: 1.6;
}

.mdh-footer-shell__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.mdh-footer-shell__legal a {
	font-size: 14px;
	color: #444444;
	text-decoration: none;
}

.mdh-footer-shell__legal a:hover {
	color: #111111;
	text-decoration: underline;
}

.mdh-financing-hero {
	position: relative;
	padding: 44px 0 34px;
	background: linear-gradient(180deg, #f5faf7 0%, #ffffff 100%);
	overflow: hidden;
}

.mdh-financing-hero--with-image {
	background: #0d3d24;
	color: #ffffff;
}

.mdh-financing-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.mdh-financing-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, rgba(6, 43, 23, 0.88) 0%, rgba(10, 65, 35, 0.72) 46%, rgba(12, 69, 37, 0.48) 100%);
}

.mdh-financing-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mdh-financing-hero .container {
	position: relative;
	z-index: 1;
}

.mdh-financing-hero__layout,
.mdh-financing-calculator,
.mdh-financing-calculator__field-head,
.mdh-financing-calculator__metrics,
.mdh-financing-hero__quicklinks,
.mdh-financing-hero__proofs,
.mdh-financing-benefits,
.mdh-sector-grid--financing,
.mdh-help-methods--financing {
	display: grid;
	gap: 18px;
}

.mdh-financing-hero__layout {
	grid-template-columns: 1fr;
	align-items: start;
	gap: 24px;
}

.mdh-financing-hero__copy,
.mdh-financing-hero__aside,
.mdh-financing-calculator__form,
.mdh-financing-calculator__summary {
	padding: 30px;
	border-radius: 32px;
	border: 1px solid rgba(7, 108, 53, 0.12);
	box-shadow: 0 22px 48px rgba(11, 28, 18, 0.08);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
}

.mdh-financing-hero--with-image .mdh-financing-hero__copy,
.mdh-financing-hero--with-image .mdh-financing-hero__aside {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 24px 50px rgba(7, 16, 11, 0.18);
	backdrop-filter: blur(14px);
}

.mdh-financing-hero__copy .mdh-section-kicker,
.mdh-financing-hero--with-image .mdh-breadcrumbs a,
.mdh-financing-hero--with-image .mdh-breadcrumbs li,
.mdh-financing-hero--with-image .mdh-breadcrumbs li::before,
.mdh-financing-hero--with-image .mdh-financing-hero__proof span,
.mdh-financing-hero--with-image .mdh-financing-hero__panel,
.mdh-financing-hero--with-image .mdh-financing-hero__quicklinks a {
	color: rgba(255, 255, 255, 0.82);
}

.mdh-financing-hero__copy h1 {
	margin: 0;
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #101010;
}

.mdh-financing-hero__copy p,
.mdh-financing-hero__panel p {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.8;
	color: #425248;
}

.mdh-financing-hero--with-image .mdh-financing-hero__copy h1,
.mdh-financing-hero--with-image .mdh-financing-hero__copy p,
.mdh-financing-hero--with-image .mdh-financing-hero__panel strong,
.mdh-financing-hero--with-image .mdh-financing-hero__panel p,
.mdh-financing-hero--with-image .mdh-financing-hero__proof strong,
.mdh-financing-hero--with-image .mdh-financing-hero__proof span {
	color: #ffffff;
}

.mdh-financing-hero .mdh-inline-actions .mdh-ghost-button {
	border-color: rgba(7, 108, 53, 0.32);
	color: #0f5a30;
	background: rgba(255, 255, 255, 0.88);
}

.mdh-financing-hero .mdh-inline-actions .mdh-ghost-button:hover,
.mdh-financing-hero .mdh-inline-actions .mdh-ghost-button:focus-visible {
	border-color: rgba(7, 108, 53, 0.44);
	background: #ffffff;
}

.mdh-financing-hero--with-image .mdh-inline-actions .mdh-ghost-button {
	border-color: rgba(255, 255, 255, 0.56);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
}

.mdh-financing-hero__quicklinks {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 26px;
}

.mdh-financing-hero__quicklinks a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(7, 108, 53, 0.08);
	color: #164428;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mdh-financing-hero__quicklinks a:hover,
.mdh-financing-hero__quicklinks a:focus-visible {
	transform: translateY(-1px);
	background: rgba(7, 108, 53, 0.14);
	color: #0c341d;
}

.mdh-financing-hero__panel {
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(7, 108, 53, 0.12);
}

.mdh-financing-hero__label,
.mdh-financing-calculator__summary-kicker {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-financing-hero__panel strong,
.mdh-financing-hero__proof strong {
	display: block;
	font-size: clamp(24px, 3vw, 30px);
	line-height: 1.18;
	color: #101010;
}

.mdh-financing-hero__proofs {
	margin-top: 22px;
	grid-template-columns: 1fr;
}

.mdh-financing-hero__proof {
	padding: 18px 20px;
	border-radius: 24px;
	background: rgba(7, 108, 53, 0.05);
	border: 1px solid rgba(7, 108, 53, 0.08);
}

.mdh-financing-hero__proof span {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.65;
	color: #52645a;
}

.mdh-financing-page {
	padding: 14px 0 78px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.mdh-financing-section + .mdh-financing-section {
	margin-top: 34px;
}

.mdh-financing-section--overview,
.mdh-financing-section--final {
	margin-top: 0;
}

.mdh-financing-benefits {
	grid-template-columns: 1fr;
}

.mdh-sector-grid--financing {
	grid-template-columns: 1fr;
}

.mdh-process-grid--financing {
	grid-template-columns: 1fr;
}

.mdh-financing-section#process .mdh-process-grid--showcase {
	margin-bottom: 26px;
}

.mdh-financing-calculator {
	grid-template-columns: 1fr;
	align-items: start;
	gap: 20px;
}

.mdh-financing-calculator__form,
.mdh-financing-calculator__summary {
	background: #ffffff;
}

.mdh-financing-calculator__form {
	display: grid;
	gap: 22px;
}

.mdh-financing-calculator__field {
	display: grid;
	gap: 14px;
}

.mdh-financing-calculator__field-head {
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 14px;
}

.mdh-financing-calculator__field-head label {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #17231b;
}

.mdh-financing-calculator__field-head input[type="number"] {
	width: 150px;
	padding: 12px 14px;
	border: 1px solid rgba(16, 24, 18, 0.12);
	border-radius: 16px;
	font-size: 17px;
	font-weight: 700;
	text-align: right;
	color: #0f2118;
	background: #f9fbfa;
}

.mdh-financing-calculator input[type="range"] {
	width: 100%;
	accent-color: var(--mdh-green);
}

.mdh-financing-calculator__note {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	padding: 16px 18px;
	border-radius: 20px;
	background: #f7fbf8;
	border: 1px solid rgba(7, 108, 53, 0.08);
	font-size: 14px;
	line-height: 1.7;
	color: #57685f;
}

.mdh-financing-calculator__note i {
	color: var(--mdh-green);
	margin-top: 4px;
}

.mdh-financing-calculator__summary {
	background: var(--mdh-green);
	border-color: transparent;
	box-shadow: 0 26px 54px rgba(8, 44, 24, 0.18);
}

.mdh-financing-calculator__summary-kicker,
.mdh-financing-calculator__summary strong,
.mdh-financing-calculator__summary p,
.mdh-financing-calculator__summary article span,
.mdh-financing-calculator__summary article strong {
	color: #ffffff;
}

.mdh-financing-calculator__summary > strong {
	display: block;
	padding-bottom: 22px;
	margin-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	font-size: clamp(38px, 6vw, 58px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.mdh-financing-calculator__summary > p {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.82);
}

.mdh-financing-calculator__metrics {
	grid-template-columns: 1fr;
	margin-top: 20px;
	gap: 18px;
}

.mdh-financing-calculator__metrics article {
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: none;
}

.mdh-financing-calculator__metrics article span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: rgba(255, 255, 255, 0.75);
}

.mdh-financing-calculator__metrics article strong {
	display: block;
	margin-top: 4px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

/* Homepage-only calculator field layout (scoped to --compact so the
   Financing page's own field-head + range-slider layout is untouched) */
.mdh-financing-calculator--compact .mdh-financing-calculator__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__field label {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #17231b;
}

.mdh-financing-calculator__input-wrap {
	position: relative;
}

.mdh-financing-calculator--compact .mdh-financing-calculator__input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(16, 24, 18, 0.14);
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	color: #0f2118;
	background: #ffffff;
}

.mdh-financing-calculator--compact input.mdh-financing-calculator__input[data-mdh-financing-input="amount"] {
	padding-left: 30px;
}

.mdh-financing-calculator--compact input.mdh-financing-calculator__input[data-mdh-financing-input="rate"] {
	padding-left: 30px;
	padding-right: 30px;
	text-align: center;
}

.mdh-financing-calculator--compact select.mdh-financing-calculator__input {
	appearance: auto;
	cursor: pointer;
	padding-right: 32px;
}

.mdh-financing-calculator__affix {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	font-weight: 600;
	color: #5a6c62;
	pointer-events: none;
}

.mdh-financing-calculator__affix--prefix {
	left: 14px;
}

.mdh-financing-calculator__affix--suffix {
	right: 14px;
}

.mdh-financing-calculator__note--standalone {
	display: block;
	max-width: 780px;
	margin: 24px auto 0;
	padding: 16px 24px;
	border: none;
	border-radius: 16px;
	background: #f5f6f5;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6c62;
}

.mdh-help-method--financing {
	min-height: 280px;
	align-content: start;
}

.mdh-final-cta--financing {
	background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

@media (min-width: 992px) {
	.mdh-header-shell__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 22px;
		min-height: 80px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.mdh-primary-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		flex-wrap: wrap;
	}

	.mdh-nav-link,
	.mdh-nav-toggle {
		min-height: 44px;
	}

	.mdh-nav-link {
		padding-left: 16px;
		padding-right: 16px;
	}

	.mdh-mobile-panel {
		display: none !important;
	}

	.mdh-hero-placeholder {
		margin-top: -94px;
		padding: 138px 0 36px;
	}

	.mdh-hero-placeholder__wrap {
		gap: 20px;
	}

	.mdh-hero-slider__viewport {
		min-height: 266px;
	}

	.mdh-hero-slide__copy {
		padding-top: 0;
	}

	.mdh-hero-layout .mdh-hero-slide__copy {
		max-width: none;
		width: 100%;
		padding-top: 0;
	}

	.mdh-hero-layout {
		gap: 44px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
	}

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

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

	.mdh-hero-placeholder__features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-stat-card,
	.mdh-feature-card {
		padding: 28px 22px;
	}

	.mdh-card-icon {
		width: 38px;
		height: 38px;
		margin-bottom: 16px;
		font-size: 15px;
	}

	.mdh-footer-shell__grid {
		grid-template-columns: 1.1fr 1fr 1fr 1fr 0.95fr;
	}

	.mdh-trust-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 18px 28px;
	}

	.mdh-inner-hero__layout,
	.mdh-inner-page__grid,
	.mdh-inner-page__cta,
	.mdh-branch-directory__shell,
	.mdh-financing-hero__layout,
	.mdh-financing-calculator,
	.mdh-contact-page__grid,
	.mdh-help-two-up {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}

	.mdh-inner-page__grid--single {
		grid-template-columns: 1fr;
	}

	.mdh-inner-hero__layout--single {
		grid-template-columns: 1fr;
	}

	.mdh-inner-hero__layout--branches {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
	}

	.mdh-inner-hero__layout--help {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
	}

	.mdh-section-shell--intro,
	.mdh-section-shell--split,
	.mdh-section-shell--ethics,
	.mdh-support-panel,
	.mdh-final-cta,
	.mdh-page-cta-strip {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}

	.mdh-inline-actions--page-cta {
		justify-content: flex-end;
	}

	.mdh-financing-calculator--compact {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	}

	.mdh-branches-layout {
		gap: 22px;
	}

	.mdh-branch-card-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

	.mdh-proof-grid,
	.mdh-support-actions,
	.mdh-sector-grid,
	.mdh-sector-grid--financing {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-help-methods--financing {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.mdh-help-method--financing {
		min-height: 300px;
	}

	.mdh-quick-check {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 18px;
	}

	.mdh-quick-check__list {
		grid-template-columns: 1fr;
	}

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

	.mdh-financing-showcase__gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.mdh-section-shell--ethics {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
		gap: 40px;
	}

	.mdh-ethics-visual {
		min-height: 100%;
	}

	.mdh-process-note {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}

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

@media (min-width: 1200px) {
	.mdh-brandmark__copy {
		display: flex;
	}

	.mdh-primary-nav {
		gap: 6px;
	}

	.mdh-hero-placeholder h1 {
		font-size: inherit;
	}
}

@media (max-width: 1199px) {
	.mdh-header-shell__inner {
		gap: 14px;
	}

	.mdh-brandmark__copy {
		display: none;
	}

	.mdh-hero-placeholder__stats,
	.mdh-hero-placeholder__features,
	.mdh-footer-shell__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mdh-about-milestones__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 44px;
	}

	.mdh-hero-placeholder {
		margin-top: -84px;
		padding: 122px 0 34px;
	}

	.mdh-hero-slider__viewport {
		min-height: 224px;
	}

	.mdh-hero-slide__copy {
		padding-top: 0;
	}

	.mdh-hero-layout {
		gap: 32px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 430px);
	}

	.mdh-hero-right__grid {
		gap: 10px;
	}

	.mdh-hero-box {
		min-height: 108px;
	}

	.mdh-proof-grid,
	.mdh-process-grid,
	.mdh-support-actions,
	.mdh-sector-grid,
	.mdh-sector-grid--financing,
	.mdh-ethics-grid,
	.mdh-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.mdh-financing-showcase__card {
		max-width: 900px;
	}

	.mdh-inner-hero__aside--stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-help-methods,
	.mdh-help-support-grid,
	.mdh-help-methods--financing {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-help-method--financing {
		min-height: 260px;
	}

	.mdh-branch-card-grid {
		grid-template-columns: 1fr;
	}

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

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

	.mdh-financing-hero__quicklinks {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-financing-benefits,
	.mdh-financing-calculator__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mdh-inline-actions--calculator-home {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mdh-contact-hero {
		padding: 64px 0 48px;
	}

	.mdh-contact-page {
		padding: 8px 0 56px;
	}

	.mdh-contact-map-section {
		padding: 0 0 56px;
	}

	.mdh-section-shell--ethics {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.mdh-ethics-visual {
		min-height: 300px;
	}

	.mdh-financing-photo-stack {
		min-height: 380px;
	}
}

@media (max-width: 991px) {
	.mdh-primary-nav {
		display: none;
	}

	.mdh-mobile-toggle {
		display: inline-flex;
	}

	.mdh-header-shell__inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.mdh-brandmark__copy {
		display: none;
	}

	.mdh-hero-placeholder__stats,
	.mdh-hero-placeholder__features,
	.mdh-footer-shell__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mdh-home-section {
		padding: 56px 0;
	}

	.mdh-section-copy h2,
	.mdh-section-heading h2,
	.mdh-final-cta h2,
	.mdh-page-cta-strip h2 {
		font-size: clamp(28px, 7vw, 40px);
	}

	.mdh-trust-strip,
	.mdh-proof-grid,
	.mdh-process-grid,
	.mdh-support-actions,
	.mdh-sector-grid,
	.mdh-sector-grid--financing,
	.mdh-ethics-grid,
	.mdh-process-grid--financing,
	.mdh-process-grid--showcase,
	.mdh-help-methods--financing,
	.mdh-financing-calculator__metrics {
		grid-template-columns: 1fr;
	}

	.mdh-help-method--financing {
		min-height: auto;
	}

	.mdh-sector-card--showcase {
		min-height: auto;
	}

	.mdh-quick-check {
		padding: 20px 18px;
	}

	.mdh-financing-showcase__gallery {
		grid-template-columns: 1fr;
	}

	.mdh-financing-section#process .mdh-process-grid--showcase {
		margin-bottom: 18px;
	}

	.mdh-support-panel,
	.mdh-final-cta,
	.mdh-page-cta-strip,
	.mdh-section-shell--ethics,
	.mdh-section-shell--intro,
	.mdh-section-shell--split,
	.mdh-faq-preview {
		grid-template-columns: 1fr;
	}

	.mdh-partners-strip {
		padding: 16px 0;
	}

	.mdh-partners-type__head h3 {
		font-size: 22px;
	}

	.mdh-partnership-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-partnership-card h4 {
		font-size: 18px;
	}

	.mdh-partnership-metric__copy strong {
		font-size: 28px;
	}

	.mdh-partnership-metric__copy span {
		font-size: 14px;
	}

	.mdh-partners-type--development .mdh-partners-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.mdh-success-story-card h3 {
		font-size: 22px;
	}

	.mdh-success-stories__stats {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.mdh-success-stat--primary h3 {
		font-size: 24px;
	}

	.mdh-inner-hero__layout,
	.mdh-inner-page__grid,
	.mdh-inner-page__cta,
	.mdh-branch-directory__shell,
	.mdh-financing-hero__layout,
	.mdh-financing-calculator,
	.mdh-inner-hero__layout--branches,
	.mdh-inner-hero__layout--help,
	.mdh-contact-page__grid,
	.mdh-help-two-up {
		grid-template-columns: 1fr;
	}

	.mdh-help-methods,
	.mdh-help-support-grid,
	.mdh-help-methods--financing {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mdh-page-cta-strip {
		padding: 28px 24px;
		gap: 18px;
	}

	.mdh-hero-slider__viewport {
		min-height: 210px;
	}

	.mdh-hero-slider__footer {
		gap: 12px;
		margin-top: 10px;
	}

	.mdh-hero-slide__copy {
		max-width: 100%;
		width: 100%;
		padding: 12px 0 0;
	}

	/* Keep 2-column intent but stack vertically on tablet/mobile widths */
	.mdh-hero-layout {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mdh-hero-right {
		display: block;
	}

	.mdh-hero-right__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.mdh-hero-box {
		min-height: 98px;
	}

	.mdh-hero-box p {
		display: none;
	}

	.mdh-about-story,
	.mdh-about-purpose,
	.mdh-about-values {
		padding: 22px;
		border-radius: 22px;
	}

	.mdh-about-story__layout,
	.mdh-about-purpose__grid,
	.mdh-about-who {
		grid-template-columns: 1fr;
	}

	.mdh-about-who {
		gap: 26px;
	}

	.mdh-about-hero {
		padding: 56px 0 44px;
	}

	.mdh-about-hero__media {
		margin-top: 48px;
	}

	.mdh-about-opening {
		padding: 56px 0 44px;
	}

	.mdh-about-milestones {
		padding: 56px 0;
	}

	.mdh-about-milestones__heading {
		margin-bottom: 40px;
	}

	.mdh-about-focus-card p,
	.mdh-about-purpose-card p {
		font-size: 17px;
	}

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

	.mdh-about-stats-banner__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 36px;
	}

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

	.mdh-about-impact__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.mdh-about-impact__media {
		aspect-ratio: 16 / 9;
	}

	.mdh-inline-actions--page-cta {
		justify-content: flex-start;
	}

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

	.mdh-financing-photo-stack {
		min-height: 360px;
	}

	.mdh-financing-showcase__card {
		padding: 30px 24px;
	}

	.mdh-faq-preview__support {
		padding: 24px;
	}

	.mdh-partners-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-financing-showcase__badge {
		top: -18px;
		right: 18px;
		width: 46px;
		height: 46px;
		font-size: 19px;
	}

	.mdh-financing-showcase__copy p {
		font-size: 16px;
	}

	.mdh-financing-showcase__image-card img {
		height: 220px;
	}

	.mdh-story-panel,
	.mdh-story-panel__overlay {
		min-height: 320px;
	}

	.mdh-branch-stat-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mdh-process-note {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		border-radius: 28px;
	}

	.mdh-process-card__topline {
		margin-bottom: 16px;
	}

}

@media (max-width: 767px) {
	.mdh-header-shell {
		padding: 10px 10px 0;
	}

	.mdh-header-shell__inner {
		min-height: 62px;
		padding: 6px 6px 6px 16px;
	}

	.mdh-inner-hero {
		padding-top: 48px;
	}

	.mdh-brandmark__logo {
		height: 34px;
		max-width: 118px;
	}

	.mdh-header-actions {
		gap: 8px;
	}

	.mdh-header-actions .mdh-cta-button {
		width: auto;
		flex-shrink: 0;
		padding: 0 14px;
		font-size: 12px;
		min-height: 40px;
		white-space: nowrap;
	}

	.mdh-mobile-toggle {
		width: 38px;
		height: 38px;
		flex-shrink: 0;
	}

	.mdh-partners-strip {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.mdh-partners-type {
		padding: 14px;
		border-radius: 18px;
	}

	.mdh-partners-type__head h3 {
		font-size: 20px;
	}

	.mdh-success-stories__grid {
		grid-template-columns: 1fr;
	}

	.mdh-success-story-card {
		padding: 12px 12px 14px;
	}

	.mdh-success-story-card__quote {
		font-size: 16px;
	}

	.mdh-success-story-card h3 {
		font-size: 20px;
	}

	.mdh-success-stories__stats {
		gap: 12px;
	}

	.mdh-success-stat {
		padding: 18px 18px;
	}

	.mdh-success-stat strong {
		font-size: 42px;
	}

	.mdh-success-stat--primary h3 {
		font-size: 22px;
	}

	.mdh-partnership-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.mdh-partnership-card {
		min-height: 148px;
		padding: 14px 10px;
	}

	.mdh-partnership-card h4 {
		font-size: 16px;
	}

	.mdh-partnership-metrics {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px;
	}

	.mdh-partnership-metric {
		justify-content: flex-start;
	}

	.mdh-partnership-metric:not(:last-child)::after {
		display: none;
	}

	.mdh-partnership-metric__copy strong {
		font-size: 24px;
	}

	.mdh-partnership-metric__copy span {
		font-size: 13px;
	}

	.mdh-partners-type--development .mdh-partners-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.mdh-partners-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.mdh-partners-strip__item {
		min-height: 64px;
		padding: 10px 12px;
	}

	.mdh-partners-strip__item img {
		max-width: 88%;
		max-height: 74px;
		width: auto;
		height: auto;
	}

	.mdh-hero-placeholder {
		margin-top: -72px;
		padding: 96px 0 46px;
	}

	.mdh-hero-placeholder__content {
		text-align: center;
	}

	.mdh-hero-placeholder h1 {
		font-size: inherit;
		line-height: inherit;
	}

	.mdh-hero-slider__controls {
		justify-content: center;
	}

	.mdh-hero-slider__footer {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
	}

	.mdh-hero-slide__copy {
		margin: 0 auto;
		padding: 8px 0 22px;
		text-align: center;
	}

	.mdh-hero-slide__actions {
		justify-content: center;
	}

	.mdh-about-page {
		padding-top: 28px;
		padding-bottom: 56px;
	}

	.mdh-about-hero {
		padding: 40px 0 32px;
	}

	.mdh-about-hero__heading h1 {
		font-size: clamp(26px, 8vw, 34px);
	}

	.mdh-about-hero__media {
		margin-top: 24px;
		height: auto;
		aspect-ratio: 4 / 3;
		border-radius: var(--mdh-radius-lg);
	}

	.mdh-about-opening {
		padding: 32px 0 40px;
	}

	.mdh-about-who {
		gap: 20px;
	}

	.mdh-about-who__lead p {
		font-size: 19px;
	}

	.mdh-about-milestones {
		padding: 40px 0;
	}

	.mdh-about-milestones__heading {
		margin-bottom: 32px;
	}

	.mdh-about-milestones__grid {
		grid-template-columns: 1fr;
		row-gap: 36px;
	}

	.mdh-about-story__copy h2,
	.mdh-about-heading h2 {
		font-size: clamp(30px, 9vw, 42px);
	}

	.mdh-about-story__copy p,
	.mdh-about-story__quote,
	.mdh-about-focus-card p,
	.mdh-about-purpose-card p,
	.mdh-about-heading p {
		font-size: 16px;
	}

	.mdh-about-values__grid {
		grid-template-columns: 1fr;
	}

	.mdh-about-stats-banner {
		padding: 48px 0;
	}

	.mdh-about-stats-banner__grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}

	.mdh-about-team {
		padding: 48px 0;
	}

	.mdh-about-team__grid {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.mdh-about-impact {
		padding: 48px 0;
	}

	.mdh-about-partners {
		padding: 48px 0;
	}

	.mdh-about-partners__kicker {
		margin-bottom: 28px;
	}

	.mdh-about-impact__layout {
		margin-top: 28px;
	}

	.mdh-about-impact__media {
		aspect-ratio: 4 / 3;
	}

	.mdh-about-impact__stats {
		gap: 28px;
	}

	.mdh-about-metrics {
		grid-template-columns: 1fr;
	}

	.mdh-about-metric-card--wide {
		grid-column: auto;
	}

	.mdh-hero-slide__copy::before {
		inset: -18px auto auto 50%;
		width: 190px;
		height: 190px;
		transform: translateX(-50%);
	}

	.mdh-hero-slide__rail {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 22px;
	}

	.mdh-hero-slide__title {
		font-size: clamp(36px, 11vw, 48px) !important;
		line-height: 0.94 !important;
	}

	.mdh-hero-right__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.mdh-hero-box {
		min-height: 88px;
		padding: 11px 10px;
	}

	.mdh-hero-box strong {
		font-size: 22px;
	}

	.mdh-hero-box__label {
		font-size: 10px;
	}

	.mdh-hero-placeholder .mdh-hero-line + .mdh-hero-line {
		margin-top: 6px;
	}

	.mdh-mobile-sticky-apply {
		display: block;
	}

	body.mdh-shell {
		padding-bottom: 82px;
	}

	.cookies-warning {
		left: 10px;
		right: 10px;
		bottom: 88px;
		width: auto;
		max-width: none;
		padding: 14px 14px 12px;
	}

	.cookies-warning .text {
		font-size: 14px;
		line-height: 1.5;
	}

	.mdh-hero-placeholder__stats,
	.mdh-footer-shell__grid {
		grid-template-columns: 1fr;
	}

	.mdh-inner-hero__aside--stats {
		grid-template-columns: 1fr;
	}

	.mdh-contact-hero {
		padding: 48px 0 36px;
	}

	.mdh-contact-page {
		padding: 4px 0 40px;
	}

	.mdh-contact-page__form-card {
		padding: 24px;
	}

	.mdh-contact-info-grid {
		grid-template-columns: 1fr;
	}

	.mdh-contact-map-section {
		padding: 0 0 40px;
	}

	.mdh-contact-map-shell {
		padding: 20px;
	}

	.mdh-contact-map-frame {
		height: auto;
		overflow: visible;
		border-radius: 0;
	}

	.mdh-contact-map-container {
		height: 320px;
		border-radius: 18px;
		overflow: hidden;
	}

	.mdh-contact-map-overlay {
		position: static;
		max-width: none;
		margin-top: 16px;
	}

	.mdh-help-methods,
	.mdh-help-support-grid,
	.mdh-help-methods--financing,
	.mdh-financing-hero__quicklinks,
	.mdh-financing-benefits,
	.mdh-financing-calculator__metrics {
		grid-template-columns: 1fr;
	}

	.mdh-hero-placeholder__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		max-width: 100%;
	}

	.mdh-hero-placeholder__features {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mdh-footer-shell {
		margin: 16px 16px 16px;
		padding: 40px 0 24px;
		border-radius: 24px;
	}

	.mdh-home-section {
		padding: 48px 0;
	}

	.mdh-financing-photo-stack {
		min-height: auto;
		padding: 14px;
		display: grid;
		gap: 12px;
	}

	.mdh-financing-photo {
		position: static;
		width: 100%;
		height: 180px;
		border-width: 4px;
	}

	.mdh-branch-stat-row {
		grid-template-columns: 1fr;
	}

	.mdh-branch-info-card,
	.mdh-branch-card {
		padding: 24px;
	}

	.mdh-home-section--support-cta .mdh-section-heading p,
	.mdh-page-cta-strip p {
		font-size: 14px;
	}

	.mdh-page-cta-strip {
		padding: 24px 20px;
		border-radius: 26px;
	}

	.mdh-page-cta-strip__copy {
		max-width: none;
	}

	.mdh-inline-actions--page-cta {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mdh-inline-actions--calculator-home {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mdh-inline-actions--calculator-home .mdh-cta-button,
	.mdh-inline-actions--calculator-home .mdh-ghost-button {
		justify-content: center;
		width: 100%;
	}

	.mdh-inline-actions--page-cta .mdh-cta-button,
	.mdh-inline-actions--page-cta .mdh-ghost-button {
		justify-content: center;
		width: 100%;
	}

	.mdh-section-copy p,
	.mdh-section-heading p,
	.mdh-proof-card p,
	.mdh-process-card p,
	.mdh-support-action span,
	.mdh-sector-card span,
	.mdh-benefit-card p,
	.mdh-financing-hero__copy p,
	.mdh-financing-hero__panel p {
		font-size: 15px;
		line-height: 1.65;
	}

	.mdh-trust-strip,
	.mdh-proof-card,
	.mdh-process-card,
	.mdh-sector-card,
	.mdh-support-action,
	.mdh-branch-info-card,
	.mdh-benefit-card,
	.mdh-ethics-card,
	.mdh-final-cta,
	.mdh-support-panel,
	.mdh-inner-page__content,
	.mdh-inner-page__rail-card,
	.mdh-inner-page__cta,
	.mdh-financing-hero__copy,
	.mdh-financing-hero__aside,
	.mdh-financing-calculator__form,
	.mdh-financing-calculator__summary,
	.mdh-branch-directory__sidebar,
	.mdh-branch-directory__map-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mdh-branch-directory__map-wrap {
		padding: 12px;
		min-height: 420px;
	}

	.mdh-branch-directory__map {
		min-height: 396px;
	}

	.mdh-contact-map-shell,
	.mdh-contact-page__form-card,
	.mdh-contact-info-card,
	.mdh-help-method,
	.mdh-help-panel,
	.mdh-help-support-card,
	.mdh-help-block--support {
		padding-left: 20px;
		padding-right: 20px;
	}

	.mdh-financing-calculator__field-head {
		grid-template-columns: 1fr;
	}

	.mdh-financing-calculator__field-head input[type="number"] {
		width: 100%;
		text-align: left;
	}

	.mdh-ethics-card {
		grid-template-columns: auto 1fr;
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.mdh-footer-panel h3 {
		margin-bottom: 14px;
	}

	.mdh-stat-card,
	.mdh-feature-card,
	.mdh-footer-panel {
		padding: 0;
	}

	.mdh-stat-card,
	.mdh-feature-card {
		padding: 18px 14px;
		min-width: 0;
	}

	.mdh-stat-card strong {
		font-size: clamp(28px, 8vw, 34px);
	}

	.mdh-stat-card span,
	.mdh-feature-card span {
		font-size: 13px;
		line-height: 1.45;
	}

	.mdh-card-icon {
		width: 32px;
		height: 32px;
		margin-bottom: 12px;
	}

	.mdh-footer-shell__bottom,
	.mdh-hero-placeholder__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.mdh-cta-button,
	.mdh-ghost-button {
		width: 100%;
	}
}

@media (max-width: 479px) {
	.mdh-hero-placeholder__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.mdh-stat-card {
		padding: 16px 12px;
		border-radius: 18px;
	}

	.mdh-stat-card strong {
		font-size: clamp(24px, 8.5vw, 30px);
	}

	.mdh-stat-card span {
		font-size: 12px;
	}
}

/* ==========================================================================
   Blog page (Blog category listing) - scoped to .mdh-blog-* only.
   Reuses .mdh-inner-hero / .mdh-section-kicker for the hero shell, but the
   reference hero has a flat, near-white background (no green wash), so that
   part of .mdh-inner-hero is overridden here rather than reused as-is.
   ========================================================================== */

.mdh-sectors-hero {
	padding: 48px 0 0;
	background: #ffffff;
	border-bottom: none;
}

.mdh-sectors-hero .mdh-inner-hero__layout {
	justify-items: center;
	text-align: center;
}

.mdh-sectors-hero .mdh-inner-hero__copy {
	max-width: 900px;
	margin: 0 auto;
}

.mdh-sectors-hero .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
}

.mdh-sectors-hero .mdh-inner-hero__copy h1 {
	font-size: clamp(32px, 5vw, 52px);
}

.mdh-sectors-hero .mdh-inner-hero__copy p {
	max-width: 640px;
	margin: 16px auto 0;
	line-height: 1.5;
}

.mdh-sectors-hero__gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.mdh-sectors-hero__gallery-item {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: 20px;
	overflow: hidden;
	background: var(--mdh-surface);
}

.mdh-sectors-hero__gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {
	.mdh-sectors-hero__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 32px;
	}
}

.mdh-blog-hero {
	padding: 56px 0 36px;
	background: #ffffff;
	border-bottom: none;
}

.mdh-blog-hero .mdh-inner-hero__layout {
	justify-items: center;
	text-align: center;
}

.mdh-blog-hero .mdh-inner-hero__copy {
	max-width: 900px;
	margin: 0 auto;
}

.mdh-blog-hero .mdh-section-kicker {
	justify-content: center;
	width: 100%;
	color: #1c1c1c;
}

.mdh-blog-hero .mdh-inner-hero__copy h1 {
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 700;
	white-space: nowrap;
}

.mdh-blog-hero .mdh-inner-hero__copy p {
	max-width: 560px;
	margin: 16px auto 0;
	color: var(--mdh-muted);
}

.mdh-blog-listing {
	padding: 8px 0 72px;
	background: #ffffff;
}

.mdh-blog-date {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mdh-muted);
}

/* Featured article + recent list */
.mdh-blog-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(240px, 1fr);
	align-items: stretch;
	gap: 24px;
	margin-bottom: 32px;
}

.mdh-blog-feature__main {
	display: block;
	text-decoration: none;
	color: inherit;
}

.mdh-blog-feature__media {
	position: relative;
	height: 100%;
	min-height: 360px;
	border-radius: var(--mdh-radius-lg);
	overflow: hidden;
	background: #f4f4f4;
}

.mdh-blog-feature__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mdh-blog-feature__main:hover .mdh-blog-feature__media img {
	transform: scale(1.04);
}

.mdh-blog-feature__media-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: rgba(19, 51, 32, 0.2);
	background: #f4f4f4;
}

.mdh-blog-feature__panel {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	padding: 22px 24px;
	background: var(--mdh-card);
	border-radius: var(--mdh-radius-md);
	box-shadow: var(--mdh-shadow);
}

.mdh-blog-feature__title {
	margin: 6px 0 0;
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--mdh-ink);
}

.mdh-blog-feature__excerpt {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--mdh-muted);
}

.mdh-blog-recent {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.mdh-blog-recent__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 26px 28px;
	background: #f4f4f4;
	border-radius: var(--mdh-radius-md);
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease;
}

.mdh-blog-recent__item:hover {
	background: #ebebeb;
}

.mdh-blog-recent__item h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--mdh-ink);
}

/* Article grid */
.mdh-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 40px;
	margin-bottom: 40px;
}

.mdh-blog-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.mdh-blog-card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	border-radius: var(--mdh-radius-lg);
	overflow: hidden;
	background: #f4f4f4;
}

.mdh-blog-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mdh-blog-card:hover .mdh-blog-card__media img {
	transform: scale(1.05);
}

.mdh-blog-card__media-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: rgba(19, 51, 32, 0.2);
	background: #f4f4f4;
}

.mdh-blog-card__panel {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	padding: 20px 22px;
	background: var(--mdh-card);
	border-radius: var(--mdh-radius-md);
	box-shadow: var(--mdh-shadow);
}

.mdh-blog-card__title {
	margin: 6px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--mdh-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Empty state */
.mdh-blog-empty {
	text-align: center;
	padding: 80px 20px;
	border: 1px dashed var(--mdh-line);
	border-radius: var(--mdh-radius-xl);
	background: #f4f4f4;
}

.mdh-blog-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--mdh-card);
	color: var(--mdh-green);
	font-size: 22px;
}

.mdh-blog-empty h2 {
	margin: 0 0 8px;
	font-size: 22px;
	color: var(--mdh-ink);
}

.mdh-blog-empty p {
	margin: 0;
	color: var(--mdh-muted);
}

/* Pagination */
.mdh-blog-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	margin-top: 8px;
}

.mdh-blog-pagination__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--mdh-card);
	border: 1px solid var(--mdh-line);
	color: var(--mdh-ink);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mdh-blog-pagination__arrow:hover {
	background: var(--mdh-green);
	border-color: var(--mdh-green);
	color: #fff;
	transform: translateY(-1px);
}

.mdh-blog-pagination__arrow--disabled {
	opacity: 0.35;
	pointer-events: none;
}

.mdh-blog-pagination__count {
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--mdh-ink);
}

@media (max-width: 991px) {
	.mdh-blog-feature {
		grid-template-columns: 1fr;
	}

	.mdh-blog-feature__media {
		min-height: 320px;
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.mdh-blog-recent {
		flex-direction: row;
		height: auto;
	}

	.mdh-blog-recent__item {
		flex: 1;
	}
}

@media (max-width: 767px) {
	.mdh-blog-hero {
		padding: 44px 0 28px;
	}

	.mdh-blog-hero .mdh-inner-hero__copy h1 {
		white-space: normal;
	}

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

	.mdh-blog-recent {
		flex-direction: column;
	}

	.mdh-blog-feature__media {
		min-height: 260px;
	}

	.mdh-blog-feature__panel,
	.mdh-blog-card__panel {
		left: 12px;
		right: 12px;
		bottom: 12px;
		max-width: none;
	}

	.mdh-blog-feature__panel {
		padding: 18px 20px;
	}

	.mdh-blog-card__panel {
		padding: 14px 16px;
	}

	.mdh-blog-pagination {
		justify-content: center;
	}
}

/* ==========================================================================
   Blog post detail
   ========================================================================== */
.mdh-post-hero {
	padding-bottom: 36px;
}

.mdh-post-hero__layout {
	max-width: 760px;
	margin: 24px auto 0;
	text-align: left;
}

.mdh-post-category-pill {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	padding: 6px 16px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--mdh-post-category-color, var(--mdh-green)) 12%, #ffffff);
	color: var(--mdh-post-category-color, var(--mdh-green));
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid color-mix(in srgb, var(--mdh-post-category-color, var(--mdh-green)) 30%, transparent);
}

.mdh-post-hero__layout h1 {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--mdh-ink);
}

.mdh-post-hero__summary {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--mdh-muted);
}

.mdh-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--mdh-line);
}

.mdh-post-meta__author {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mdh-ink);
	font-weight: 700;
	text-decoration: none;
}

.mdh-post-meta__author img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.mdh-post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--mdh-muted);
}

.mdh-post-meta__item i {
	color: var(--mdh-green);
	font-size: 12px;
}

.mdh-post-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.mdh-post-share .btn-share {
	display: flex;
}

.mdh-post-share .btn-share a,
.mdh-post-share .btn-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--mdh-card);
	border: 1px solid var(--mdh-line);
	color: var(--mdh-ink);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mdh-post-share .btn-share a:hover,
.mdh-post-share .btn-share button:hover {
	background: var(--mdh-green);
	border-color: var(--mdh-green);
	color: #fff;
	transform: translateY(-1px);
}

.mdh-post-share .btn-share.ms-auto {
	margin-left: auto;
	display: flex;
	gap: 10px;
}

.mdh-post-share .btn-inner {
	display: flex;
}

/* Layout: content + sidebar */
.mdh-inner-page--post {
	padding-top: 44px;
}

.mdh-inner-page__grid--post {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 48px;
	align-items: start;
}

.mdh-inner-page--post .mdh-inner-page__content {
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	max-width: 760px;
}

.mdh-post-content__owner-actions {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 16px;
}

.mdh-ghost-button--small {
	padding: 8px 16px;
	font-size: 13px;
}

/* Article typography for WYSIWYG post content */
.mdh-post-text {
	margin-top: 28px;
	font-size: 17px;
	line-height: 1.85;
	color: #23342b;
}

.mdh-post-text h2,
.mdh-post-text h3,
.mdh-post-text h4 {
	margin: 36px 0 14px;
	color: var(--mdh-ink);
	letter-spacing: -0.01em;
}

.mdh-post-text h2 {
	font-size: clamp(22px, 2.6vw, 28px);
}

.mdh-post-text h3 {
	font-size: clamp(19px, 2.2vw, 23px);
}

.mdh-post-text p {
	margin: 0 0 20px;
}

.mdh-post-text img,
.mdh-post-text iframe,
.mdh-post-text video {
	max-width: 100% !important;
	height: auto;
	border-radius: var(--mdh-radius-md);
	margin: 8px 0 24px;
}

.mdh-post-text blockquote {
	margin: 28px 0;
	padding: 18px 24px;
	border-left: 4px solid var(--mdh-green);
	background: var(--mdh-surface);
	border-radius: 0 var(--mdh-radius-md) var(--mdh-radius-md) 0;
	font-style: italic;
	color: var(--mdh-ink);
}

.mdh-post-text ul,
.mdh-post-text ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.mdh-post-text li {
	margin-bottom: 8px;
}

.mdh-post-text a {
	color: var(--mdh-green);
	text-decoration-color: rgba(7, 108, 53, 0.35);
}

.mdh-post-image .post-image-inner img {
	width: 100%;
	border-radius: var(--mdh-radius-lg);
}

.mdh-post-content__cta {
	margin-top: 28px;
}

.mdh-post-files {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--mdh-line);
}

.mdh-post-files h2 {
	margin: 0 0 12px;
	font-size: 18px;
	color: var(--mdh-ink);
}

.mdh-post-files__item {
	margin-bottom: 8px;
}

.mdh-post-files__item button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 12px;
	border: 1px solid var(--mdh-line);
	background: var(--mdh-card);
	color: var(--mdh-ink);
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.mdh-post-files__item button:hover {
	border-color: var(--mdh-green);
	background: var(--mdh-surface);
}

.mdh-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--mdh-line);
}

.mdh-post-tags__label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mdh-muted);
}

.mdh-post-tags__pill {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--mdh-surface);
	color: var(--mdh-ink);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.mdh-post-tags__pill:hover {
	background: var(--mdh-green);
	color: #fff;
}

.mdh-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.mdh-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	border-radius: var(--mdh-radius-md);
	border: 1px solid var(--mdh-line);
	background: var(--mdh-card);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.mdh-post-nav__link:hover {
	border-color: var(--mdh-green);
	transform: translateY(-2px);
}

.mdh-post-nav__link--next {
	text-align: right;
	align-items: flex-end;
}

.mdh-post-nav__label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-post-nav__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--mdh-ink);
	line-height: 1.4;
}

.mdh-post-reactions {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--mdh-line);
	text-align: center;
}

.mdh-post-reactions h4 {
	margin: 0 0 14px;
	font-size: 16px;
	color: var(--mdh-ink);
}

.mdh-post-author {
	display: flex;
	gap: 18px;
	margin-top: 32px;
	padding: 24px;
	border-radius: var(--mdh-radius-lg);
	background: var(--mdh-surface);
}

.mdh-post-author__avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.mdh-post-author__body strong {
	font-size: 16px;
	color: var(--mdh-ink);
}

.mdh-post-author__body strong a {
	color: inherit;
	text-decoration: none;
}

.mdh-post-author__body p {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--mdh-muted);
}

.mdh-post-author__social {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.mdh-post-author__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--mdh-card);
	color: var(--mdh-ink);
	transition: background 0.2s ease, color 0.2s ease;
}

.mdh-post-author__social a:hover {
	background: var(--mdh-green);
	color: #fff;
}

.mdh-post-related {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--mdh-line);
}

.mdh-post-related h2 {
	margin: 0 0 24px;
	font-size: 22px;
	color: var(--mdh-ink);
}

.mdh-blog-grid--related {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 0;
}

.mdh-post-comments {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--mdh-line);
}

.mdh-post-comments__tabs {
	border-bottom: 1px solid var(--mdh-line);
	margin-bottom: 24px;
}

.mdh-post-comments__tabs .nav-link {
	border: none;
	color: var(--mdh-muted);
	font-weight: 700;
	padding: 10px 4px;
	margin-right: 24px;
}

.mdh-post-comments__tabs .nav-link.active {
	color: var(--mdh-ink);
	border-bottom: 2px solid var(--mdh-green);
	background: transparent;
}

/* Sidebar */
.mdh-post-sidebar .sidebar-widget {
	margin-bottom: 28px;
	padding: 22px;
	border-radius: var(--mdh-radius-lg);
	background: var(--mdh-card);
	border: 1px solid var(--mdh-line);
}

.mdh-post-sidebar .widget-head .title {
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mdh-green);
}

.mdh-post-sidebar .post-item-small {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--mdh-line);
}

.mdh-post-sidebar .post-item-small:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.mdh-post-sidebar .post-item-small .image {
	border-radius: 12px;
	overflow: hidden;
}

.mdh-post-sidebar .post-item-small .title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--mdh-ink);
}

.mdh-post-sidebar .post-item-small .title a {
	color: inherit;
	text-decoration: none;
}

.mdh-post-sidebar .small-post-meta {
	font-size: 12px;
	color: var(--mdh-muted);
}

.mdh-post-sidebar .tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mdh-post-sidebar .tag-list a {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--mdh-surface);
	color: var(--mdh-ink);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.mdh-post-sidebar .tag-list a:hover {
	background: var(--mdh-green);
	color: #fff;
}

.mdh-post-sidebar .widget-follow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mdh-post-sidebar .widget-follow .item {
	flex: none;
}

.mdh-post-sidebar .widget-follow a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--mdh-surface);
	color: var(--mdh-ink);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 991px) {
	.mdh-inner-page__grid--post {
		grid-template-columns: 1fr;
	}

	.mdh-post-sidebar {
		order: 2;
	}

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

@media (max-width: 575px) {
	.mdh-post-nav {
		grid-template-columns: 1fr;
	}

	.mdh-post-nav__link--next {
		text-align: left;
		align-items: flex-start;
	}

	.mdh-post-author {
		flex-direction: column;
	}

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