/* Homepage master flow — ZenHeal brand tokens + section styles */
.home-master-flow,
.new-banner-section,
.home-guidance,
.zh-trust-section,
.zh-hospitals-section,
.zh-hospital-reco,
.zh-hospital-guidance,
.zh-financial-support,
#patientbenefit,
.zh-cancer-types,
.consult-onco-sec,
.zh-care-services,
.home-treatment-cost,
.HomeCaseStudiesSection,
.zh-why-zenheal,
.zh-support-beyond,
.buy-supplements-sec,
.download-app-sec,
.zh-final-cta {
	--zh-teal: #046461;
	--zh-teal-dark: #035451;
	--zh-orange: #E76943;
	--zh-mint: #e8f3f2;
	--zh-mint-pale: #f7faf9;
	--zh-border: #e0eceb;
	--zh-text: #333;
	--zh-muted: #666;
	--zh-radius: 16px;
	--zh-shadow: 0 8px 28px rgba(4, 100, 97, 0.08);
}

/* Shared section rhythm */
.zh-section {
	padding: 48px 0;
	background: #fff;
}
.zh-section--mint {
	background: var(--zh-mint-pale);
}
.zh-section__title {
	font-family: Poppins, sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--zh-teal);
	text-align: center;
	margin: 0 0 10px;
}
.zh-section__sub {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--zh-muted);
	text-align: center;
	max-width: 640px;
	margin: 0 auto 28px;
}
.zh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 15px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	padding: 12px 22px;
	transition: background .2s, color .2s, box-shadow .2s;
}
.zh-btn--primary {
	background: var(--zh-teal);
	color: #fff;
}
.zh-btn--primary:hover {
	background: var(--zh-teal-dark);
	color: #fff;
	text-decoration: none;
}
.zh-btn--accent {
	background: var(--zh-orange);
	color: #fff;
}
.zh-btn--accent:hover {
	background: #d45a36;
	color: #fff;
	text-decoration: none;
}
.zh-btn--ghost {
	background: transparent;
	color: var(--zh-teal);
	border: 1px solid var(--zh-border);
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
}
.zh-btn--ghost:hover {
	border-color: var(--zh-teal);
	color: var(--zh-teal);
	text-decoration: none;
}
.zh-btn--link {
	background: none;
	border: none;
	color: var(--zh-teal);
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.zh-btn--link:hover {
	color: var(--zh-orange);
	text-decoration: none;
}

/* ===== Hero overlay ===== */
.hero-hospital-img-wrap {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
}
.hero-hospital-overlay {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--zh-border);
	border-radius: 12px;
	padding: 14px 16px;
	box-shadow: var(--zh-shadow);
	text-align: left;
}
.hero-hospital-overlay__name {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--zh-teal);
	margin: 0 0 2px;
}
.hero-hospital-overlay__loc {
	font-size: 13px;
	color: var(--zh-muted);
	margin: 0 0 8px;
}
.hero-hospital-overlay__caps {
	font-size: 12px;
	color: #444;
	margin: 0 0 4px;
	font-weight: 500;
}
.hero-hospital-overlay__services {
	font-size: 12px;
	color: var(--zh-muted);
	margin: 0 0 10px;
}
.hero-hospital-overlay__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-orange);
	text-decoration: none;
}
.hero-hospital-overlay__link:hover {
	text-decoration: underline;
	color: var(--zh-orange);
}
.new-banner-section .section-micro-cta--hero-primary {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	max-width: 380px;
	margin-top: 20px;
	padding: 0;
	gap: 10px;
	border-radius: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}
.new-banner-section .section-micro-cta-prompt {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.45;
	color: #5a6765;
}
.new-banner-section .section-micro-cta-prompt strong {
	display: inline;
	color: #1a2b2a;
	font-size: inherit;
	font-weight: 600;
	line-height: inherit;
	margin-bottom: 0;
	letter-spacing: 0;
}
.new-banner-section .section-micro-cta--hero-primary .section-micro-cta-actions {
	width: auto;
}
.new-banner-section .section-micro-cta--hero-primary .section-micro-cta-btn {
	width: auto;
	min-height: 42px;
	justify-content: center;
	padding: 10px 18px !important;
	font-size: 14px !important;
	border-radius: 999px !important;
	box-shadow: 0 4px 12px rgba(4, 100, 97, 0.16) !important;
}
@media (max-width: 767px) {
	.hero-hospital-overlay {
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 10px 12px;
	}
	.hero-hospital-overlay__name { font-size: 13px; }
	.zh-section__title { font-size: 24px; }
	.zh-section { padding: 36px 0; }
}

/* ===== Trust / impact ===== */
.zh-trust-section {
	position: relative;
	overflow: hidden;
	background: #f5f8fb;
	padding: 56px 0;
}
.zh-trust-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 42% 36% at 8% 12%, rgba(180, 220, 235, 0.55) 0%, transparent 70%),
		radial-gradient(ellipse 38% 34% at 94% 8%, rgba(190, 225, 220, 0.45) 0%, transparent 70%),
		radial-gradient(ellipse 30% 28% at 88% 88%, rgba(200, 215, 235, 0.35) 0%, transparent 70%);
}
.zh-trust-section__inner {
	position: relative;
	z-index: 1;
}
.zh-trust-eyebrow {
	display: inline-block;
	margin: 0 auto 14px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e8f1f8;
	color: #3a5a78;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	width: fit-content;
	max-width: 100%;
}
.zh-trust-section__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zh-trust-title {
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 10px;
}
.zh-trust-title span {
	color: var(--zh-teal);
}
.zh-trust-sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #6b7c8f;
	text-align: center;
	margin: 0 0 14px;
	max-width: 520px;
}
.zh-trust-divider {
	display: block;
	width: 48px;
	height: 4px;
	border-radius: 999px;
	background: var(--zh-teal);
	margin: 0 auto 28px;
}
.zh-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.zh-trust-card {
	background: #fff;
	border: 1px solid rgba(4, 100, 97, 0.06);
	border-radius: 18px;
	padding: 20px 16px 20px 18px;
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
	min-height: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	text-align: left;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.zh-trust-card:hover {
	box-shadow: 0 12px 28px rgba(30, 58, 95, 0.1);
	transform: translateY(-2px);
}
.zh-trust-card__icon {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.zh-trust-card__content {
	flex: 1;
	min-width: 0;
}
.zh-trust-card__title {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1e3a5f;
	line-height: 1.3;
	margin: 0 0 4px;
}
.zh-trust-card__text {
	font-size: 13px;
	line-height: 1.45;
	color: #6b7c8f;
	margin: 0;
}
.zh-trust-card__arrow {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.zh-trust-card--teal .zh-trust-card__icon { background: #e4f4f1; color: #046461; }
.zh-trust-card--teal .zh-trust-card__arrow { background: #e4f4f1; color: #046461; }
.zh-trust-card--blue .zh-trust-card__icon { background: #e5f0fb; color: #2f80ed; }
.zh-trust-card--blue .zh-trust-card__arrow { background: #e5f0fb; color: #2f80ed; }
.zh-trust-card--purple .zh-trust-card__icon { background: #f0eaf8; color: #7b6fb0; }
.zh-trust-card--purple .zh-trust-card__arrow { background: #f0eaf8; color: #7b6fb0; }
.zh-trust-card--orange .zh-trust-card__icon { background: #fceee6; color: #c56a3a; }
.zh-trust-card--orange .zh-trust-card__arrow { background: #fceee6; color: #c56a3a; }
.zh-trust-card--rose .zh-trust-card__icon { background: #fdebec; color: #d4545c; }
.zh-trust-card--rose .zh-trust-card__arrow { background: #fdebec; color: #d4545c; }
.zh-trust-card--green .zh-trust-card__icon { background: #e6f5ef; color: #1f8a5b; }
.zh-trust-card--green .zh-trust-card__arrow { background: #e6f5ef; color: #1f8a5b; }

/* legacy selectors no longer used as value/label */
.zh-trust-card__value,
.zh-trust-card__label { display: none; }

@media (max-width: 991px) {
	.zh-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.zh-trust-title { font-size: 28px; }
}
@media (max-width: 767px) {
	.zh-trust-section { padding: 40px 0; }
	.zh-trust-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.zh-trust-card { padding: 16px 14px; gap: 12px; }
	.zh-trust-card__icon { flex-basis: 44px; width: 44px; height: 44px; }
	.zh-trust-card__title { font-size: 14px; }
	.zh-trust-card__text { font-size: 12.5px; }
	.zh-trust-title { font-size: 24px; }
	.zh-trust-sub { font-size: 14px; }
}

/* ===== Hospitals ===== */
.zh-hospitals-section {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	padding: 56px 0;
}
.zh-hospitals-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: none;
}
.zh-hospitals-section__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zh-hospitals-eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e4f3f1;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.zh-hospitals-title {
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 10px;
	max-width: 720px;
}
.zh-hospitals-title span { color: var(--zh-teal); }
.zh-hospitals-sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #6b7c8f;
	text-align: center;
	margin: 0 0 28px;
	max-width: 560px;
}
.zh-hospitals-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}
.zh-hospital-card {
	background: #fff;
	border: 1px solid rgba(4, 100, 97, 0.08);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(30, 58, 95, 0.08);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.zh-hospital-card__media {
	position: relative;
	display: block;
	height: 280px;
	overflow: hidden;
	background: var(--zh-mint);
	text-decoration: none;
}
.zh-hospital-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
}
.zh-hospital-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.zh-hospital-card__name {
	margin: 0 0 4px;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #1e3a5f;
}
.zh-hospital-card__name a {
	color: inherit;
	text-decoration: none;
}
.zh-hospital-card__name a:hover {
	color: var(--zh-teal);
	text-decoration: none;
}
.zh-hospital-card__tagline {
	margin: 0 0 12px;
	font-family: Poppins, sans-serif;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.4;
	color: #046461;
}
.zh-hospital-services {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 16px;
}
.zh-hospital-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-align: center;
}
.zh-hospital-service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #e4f3f1;
	color: #046461;
	box-shadow: inset 0 0 0 1px rgba(4, 100, 97, 0.08);
}
.zh-hospital-service__icon svg {
	display: block;
}
.zh-hospital-service__label {
	font-size: 12px;
	font-weight: 600;
	color: #3d4f5c;
	line-height: 1.2;
}
.zh-hospital-card__desc {
	margin: 0 0 12px;
	font-size: 13.5px;
	line-height: 1.5;
	color: #5f6f6e;
}
.zh-hospital-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #444;
	margin: 0 0 12px;
}
.zh-hospital-card__rating svg { flex-shrink: 0; }
.zh-hospital-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	min-height: 0;
	align-content: flex-start;
}
.zh-hospital-chip {
	font-size: 12px;
	font-weight: 500;
	color: var(--zh-teal);
	background: var(--zh-mint);
	border-radius: 999px;
	padding: 5px 10px;
	white-space: nowrap;
}
.zh-hospital-card__actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.zh-hospital-card__primary {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.zh-hospital-card__secondary {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}
.zh-hospital-sec-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-teal);
	text-decoration: none;
	white-space: nowrap;
}
.zh-hospital-sec-link:hover { color: var(--zh-orange); text-decoration: none; }
.zh-hospital-sec-sep {
	width: 1px;
	height: 14px;
	background: #d5e3e1;
	flex-shrink: 0;
}
.zh-hospital-sec-link--call { margin-left: 0; }
@media (max-width: 991px) {
	.zh-hospitals-title { font-size: 28px; }
	.zh-hospital-card__media { height: 240px; }
}
@media (max-width: 767px) {
	.zh-hospitals-section { padding: 40px 0; }
	.zh-hospitals-grid { grid-template-columns: 1fr; gap: 18px; }
	.zh-hospital-card__media { height: 220px; }
	.zh-hospital-services { gap: 8px; }
	.zh-hospital-service__icon { width: 40px; height: 40px; }
	.zh-hospital-service__label { font-size: 11px; }
	.zh-hospital-card__secondary {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 10px 12px;
	}
	.zh-hospital-sec-sep { display: none; }
	.zh-hospitals-title { font-size: 24px; }
	.zh-hospitals-sub { font-size: 14px; }
}

/* ===== Hospital guidance CTA ===== */
.zh-hospital-reco {
	display: none;
}
.zh-hospital-guidance {
	--zh-teal: #046461;
	--zh-teal-dark: #035451;
	--zh-mint: #e8f3f2;
	padding: 56px 0;
	background: #ffffff;
}
.zh-hospital-guidance__card {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.78fr);
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid rgba(4, 100, 97, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(30, 58, 95, 0.08);
}
.zh-hospital-guidance__content {
	position: relative;
	z-index: 2;
	padding: 44px 24px 44px 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}
.zh-hospital-guidance__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 16px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #e6f4f2;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.zh-hospital-guidance__title {
	margin: 0 0 14px;
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0b1b39;
	max-width: 620px;
}
.zh-hospital-guidance__title span {
	color: #046461;
}
.zh-hospital-guidance__sub {
	margin: 0 0 24px;
	max-width: 560px;
	font-family: Poppins, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: #5f6f6e;
}
.zh-hospital-guidance__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	width: 100%;
	max-width: 640px;
	margin: 0 0 28px;
	gap: 0;
}
.zh-hospital-guidance__feature {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 4px 12px;
}
.zh-hospital-guidance__feature:first-child {
	padding-left: 0;
}
.zh-hospital-guidance__feature:last-child {
	padding-right: 0;
}
.zh-hospital-guidance__feature + .zh-hospital-guidance__feature {
	border-left: 1px solid #d8e4e2;
}
.zh-hospital-guidance__feature-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: visible;
	background: #e6f4f2;
	color: #046461;
}
.zh-hospital-guidance__feature-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}
.zh-hospital-guidance__feature-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}
.zh-hospital-guidance__feature-label {
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #2d4a47;
}
.zh-hospital-guidance__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.zh-hospital-guidance__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 52px;
	padding: 14px 28px;
	border: none;
	border-radius: 14px;
	background: #046461;
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(4, 100, 97, 0.22);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.zh-hospital-guidance__btn:hover,
.zh-hospital-guidance__btn:focus {
	background: #035451;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(4, 100, 97, 0.28);
	transform: translateY(-1px);
}
.zh-hospital-guidance__trust {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin: 0;
	color: #8a9896;
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 500;
}
.zh-hospital-guidance__trust img,
.zh-hospital-guidance__trust svg {
	width: 14px;
	height: 14px;
	object-fit: contain;
	flex-shrink: 0;
	color: #046461;
}
.zh-hospital-guidance__trust-sep {
	color: #c2d0ce;
	margin: 0 2px;
}
.zh-hospital-guidance__media {
	position: relative;
	align-self: stretch;
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	background:
		radial-gradient(circle at 55% 45%, rgba(196, 228, 222, 0.9) 0%, rgba(196, 228, 222, 0.4) 38%, transparent 62%),
		linear-gradient(160deg, #f4faf9 0%, #e8f4f1 100%);
}
.zh-hospital-guidance__orb {
	position: absolute;
	width: 78%;
	aspect-ratio: 1;
	max-width: 320px;
	border-radius: 50%;
	background: rgba(180, 220, 210, 0.5);
	left: -12%;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}
.zh-hospital-guidance__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% 20%;
	display: block;
	z-index: 1;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}
@media (max-width: 991px) {
	.zh-hospital-guidance__card {
		grid-template-columns: 1fr;
	}
	.zh-hospital-guidance__content {
		padding: 28px 22px 28px;
		align-items: center;
		text-align: center;
	}
	.zh-hospital-guidance__title {
		font-size: 28px;
		max-width: 560px;
	}
	.zh-hospital-guidance__sub {
		max-width: 560px;
		font-size: 15px;
	}
	.zh-hospital-guidance__features {
		grid-template-columns: 1fr;
		gap: 12px;
		justify-items: stretch;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}
	.zh-hospital-guidance__feature {
		padding: 10px 12px;
		background: #f7faf9;
		border-radius: 12px;
		text-align: left;
	}
	.zh-hospital-guidance__feature + .zh-hospital-guidance__feature {
		border-left: none;
	}
	.zh-hospital-guidance__feature:first-child,
	.zh-hospital-guidance__feature:last-child {
		padding-left: 12px;
		padding-right: 12px;
	}
	.zh-hospital-guidance__actions { align-items: center; }
	.zh-hospital-guidance__media {
		min-height: 220px;
		max-width: none;
		width: 100%;
		justify-self: stretch;
		order: -1;
	}
	.zh-hospital-guidance__orb {
		left: auto;
		right: -40px;
		width: 200px;
		top: 55%;
	}
	.zh-hospital-guidance__img {
		-webkit-mask-image: none;
		mask-image: none;
		object-position: center 18%;
	}
}
@media (max-width: 575px) {
	.zh-hospital-guidance { padding: 40px 0; }
	.zh-hospital-guidance__title { font-size: 24px; }
	.zh-hospital-guidance__sub { font-size: 14px; }
	.zh-hospital-guidance__btn {
		width: 100%;
		max-width: 360px;
	}
	.zh-hospital-guidance__media { min-height: 200px; }
}

/* ===== Financial support CTA ===== */
.zh-financial-support {
	--zh-teal: #046461;
	--zh-teal-dark: #035451;
	--zh-mint: #e8f3f2;
	padding: 56px 0;
	background: #ffffff;
}
.zh-financial-support__card {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid rgba(4, 100, 97, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(30, 58, 95, 0.08);
}
.zh-financial-support__content {
	position: relative;
	z-index: 2;
	padding: 44px 28px 44px 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}
.zh-financial-support__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 16px;
	padding: 8px 16px;
	border-radius: 10px;
	background: #e6f4f2;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.zh-financial-support__title {
	margin: 0 0 14px;
	font-family: Poppins, sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: #046461;
	max-width: 560px;
}
.zh-financial-support__sub {
	margin: 0 0 24px;
	max-width: 540px;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: #5f6f6e;
}
.zh-financial-support__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	width: 100%;
	max-width: 640px;
	margin: 0 0 28px;
	gap: 0;
}
.zh-financial-support__feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	padding: 4px 14px;
}
.zh-financial-support__feature:first-child {
	padding-left: 0;
}
.zh-financial-support__feature:last-child {
	padding-right: 0;
}
.zh-financial-support__feature + .zh-financial-support__feature {
	border-left: 1px solid #d8e4e2;
}
.zh-financial-support__feature-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	color: #046461;
}
.zh-financial-support__feature-icon img {
	width: 52px;
	height: 52px;
	object-fit: contain;
	display: block;
}
.zh-financial-support__feature-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.zh-financial-support__feature-label {
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: #046461;
}
.zh-financial-support__feature-desc {
	font-family: Poppins, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #7a8a88;
}
.zh-financial-support__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.zh-financial-support__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 14px 28px;
	border: none;
	border-radius: 14px;
	background: #046461;
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(4, 100, 97, 0.22);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.zh-financial-support__btn:hover,
.zh-financial-support__btn:focus {
	background: #035451;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(4, 100, 97, 0.28);
	transform: translateY(-1px);
}
.zh-financial-support__btn-arrow {
	width: 16px;
	height: 16px;
	display: block;
	flex-shrink: 0;
}
.zh-financial-support__trust {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin: 0;
	color: #8a9896;
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 500;
}
.zh-financial-support__trust img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	flex-shrink: 0;
}
.zh-financial-support__trust-sep {
	color: #c2d0ce;
	margin: 0 2px;
}
.zh-financial-support__media {
	position: relative;
	align-self: stretch;
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	background:
		radial-gradient(circle at 62% 42%, rgba(196, 228, 222, 0.95) 0%, rgba(196, 228, 222, 0.45) 40%, transparent 68%),
		linear-gradient(160deg, #f4faf9 0%, #e8f4f1 100%);
}
.zh-financial-support__orb {
	position: absolute;
	width: 82%;
	aspect-ratio: 1;
	max-width: 360px;
	border-radius: 50%;
	background: rgba(180, 220, 210, 0.55);
	left: 8%;
	top: 42%;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 0;
}
.zh-financial-support__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% 25%;
	display: block;
	z-index: 1;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}
@media (max-width: 991px) {
	.zh-financial-support__card {
		grid-template-columns: 1fr;
	}
	.zh-financial-support__content {
		padding: 28px 22px 28px;
		align-items: center;
		text-align: center;
	}
	.zh-financial-support__title {
		font-size: 26px;
		max-width: 560px;
	}
	.zh-financial-support__sub {
		max-width: 560px;
		font-size: 15px;
	}
	.zh-financial-support__features {
		grid-template-columns: 1fr;
		gap: 12px;
		justify-items: stretch;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}
	.zh-financial-support__feature {
		padding: 12px 14px;
		background: #f7faf9;
		border-radius: 12px;
		text-align: left;
	}
	.zh-financial-support__feature + .zh-financial-support__feature {
		border-left: none;
	}
	.zh-financial-support__feature:first-child,
	.zh-financial-support__feature:last-child {
		padding-left: 14px;
		padding-right: 14px;
	}
	.zh-financial-support__actions { align-items: center; }
	.zh-financial-support__media {
		min-height: 280px;
		max-width: none;
		width: 100%;
		justify-self: stretch;
		order: -1;
	}
	.zh-financial-support__orb {
		left: auto;
		right: -30px;
		width: 220px;
		top: 50%;
	}
	.zh-financial-support__img {
		-webkit-mask-image: none;
		mask-image: none;
		object-position: center 18%;
	}
}
@media (max-width: 575px) {
	.zh-financial-support { padding: 40px 0; }
	.zh-financial-support__title { font-size: 22px; }
	.zh-financial-support__sub { font-size: 14px; }
	.zh-financial-support__btn {
		width: 100%;
		max-width: 360px;
	}
	.zh-financial-support__media { min-height: 240px; }
}

/* ===== Cancer types ===== */
.zh-cancer-types {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	padding: 56px 0;
}
.zh-cancer-types__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 40% 34% at 6% 10%, rgba(180, 220, 210, 0.45) 0%, transparent 70%),
		radial-gradient(ellipse 36% 30% at 96% 8%, rgba(200, 225, 235, 0.35) 0%, transparent 70%);
}
.zh-cancer-types__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zh-cancer-types__eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e4f3f1;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}
.zh-cancer-types__title {
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 10px;
}
.zh-cancer-types__title span {
	color: var(--zh-teal);
}
.zh-cancer-types__sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #6b7c8f;
	text-align: center;
	margin: 0 0 14px;
	max-width: 560px;
}
.zh-cancer-types__divider {
	display: block;
	width: 48px;
	height: 4px;
	border-radius: 999px;
	background: var(--zh-teal);
	margin: 0 auto 28px;
}
.zh-cancer-types-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}
.zh-cancer-type-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	min-height: 0;
	padding: 18px 16px;
	text-align: left;
	background: #fff;
	border: 1.5px solid rgba(4, 100, 97, 0.08);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
	color: #1e3a5f;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
button.zh-cancer-type-card {
	width: 100%;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}
.zh-cancer-type-card__icon {
	flex: 0 0 68px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	min-width: 68px;
	min-height: 68px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin: 0;
	padding: 0;
	background: transparent !important;
	box-shadow: none;
	overflow: hidden;
	line-height: 0;
}
.zh-cancer-type-card__icon img {
	display: block;
	width: 68px;
	height: 68px;
	max-width: 68px;
	max-height: 68px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center center;
	flex-shrink: 0;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}
.zh-cancer-type-card__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.zh-cancer-type-card__label {
	line-height: 1.3;
	font-size: 14px;
	font-weight: 700;
	color: #1e3a5f;
}
.zh-cancer-type-card__desc {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #6b7c8f;
}
.zh-cancer-type-card__arrow {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.zh-cancer-type-card:hover {
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(30, 58, 95, 0.1);
	transform: translateY(-2px);
	color: #1e3a5f;
}
.zh-cancer-type-card--teal .zh-cancer-type-card__icon { background: transparent; color: #046461; }
.zh-cancer-type-card--teal .zh-cancer-type-card__arrow { background: #e4f4f1; color: #046461; }
.zh-cancer-type-card--teal:hover { border-color: #046461; }
.zh-cancer-type-card--pink .zh-cancer-type-card__icon { background: transparent; color: #d45a8a; }
.zh-cancer-type-card--pink .zh-cancer-type-card__arrow { background: #fde8ef; color: #d45a8a; }
.zh-cancer-type-card--pink:hover { border-color: #d45a8a; }
.zh-cancer-type-card--rose .zh-cancer-type-card__icon { background: transparent; color: #d4545c; }
.zh-cancer-type-card--rose .zh-cancer-type-card__arrow { background: #fdebec; color: #d4545c; }
.zh-cancer-type-card--rose:hover { border-color: #d4545c; }
.zh-cancer-type-card--purple .zh-cancer-type-card__icon { background: transparent; color: #7b6fb0; }
.zh-cancer-type-card--purple .zh-cancer-type-card__arrow { background: #f0eaf8; color: #7b6fb0; }
.zh-cancer-type-card--purple:hover { border-color: #7b6fb0; }
.zh-cancer-type-card--blue .zh-cancer-type-card__icon { background: transparent; color: #2f80ed; }
.zh-cancer-type-card--blue .zh-cancer-type-card__arrow { background: #e5f0fb; color: #2f80ed; }
.zh-cancer-type-card--blue:hover { border-color: #2f80ed; }
.zh-cancer-type-card--violet .zh-cancer-type-card__icon { background: transparent; color: #6b5bb8; }
.zh-cancer-type-card--violet .zh-cancer-type-card__arrow { background: #ece8f8; color: #6b5bb8; }
.zh-cancer-type-card--violet:hover { border-color: #6b5bb8; }
.zh-cancer-type-card--orange .zh-cancer-type-card__icon { background: transparent; color: #c56a3a; }
.zh-cancer-type-card--orange .zh-cancer-type-card__arrow { background: #fceee6; color: #c56a3a; }
.zh-cancer-type-card--orange:hover { border-color: #c56a3a; }
.zh-cancer-type-card--slate .zh-cancer-type-card__icon { background: transparent; color: #5a6b7d; }
.zh-cancer-type-card--slate .zh-cancer-type-card__arrow { background: #eef2f5; color: #5a6b7d; }
.zh-cancer-type-card--slate:hover { border-color: #5a6b7d; }
.zh-cancer-types-grid--extra {
	margin-top: 16px;
	animation: zhCancerTypesReveal 0.35s ease;
}
.zh-cancer-types-grid--extra[hidden] {
	display: none !important;
}
@keyframes zhCancerTypesReveal {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.zh-cancer-types__cta {
	margin-top: 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.zh-cancer-types__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border: none;
	border-radius: 12px;
	background: #046461;
	color: #fff !important;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none !important;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(4, 100, 97, 0.28);
	transition: background .2s, transform .15s, box-shadow .2s;
}
.zh-cancer-types__cta-btn:hover {
	background: #035552;
	color: #fff !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(4, 100, 97, 0.34);
}
.zh-cancer-types__cta-btn[hidden],
.zh-cancer-types__trust[hidden],
.zh-cancer-types__show-less[hidden] {
	display: none !important;
}
.zh-cancer-types__trust {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	color: #046461;
}
.zh-cancer-types__trust svg {
	flex: 0 0 14px;
}
.zh-cancer-types__show-less {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: transparent;
	padding: 4px 8px;
	margin: 0;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #046461;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.zh-cancer-types__show-less:hover {
	color: #035552;
}
@media (max-width: 1100px) {
	.zh-cancer-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
	.zh-cancer-types__title { font-size: 28px; }
}
@media (max-width: 575px) {
	.zh-cancer-types { padding: 40px 0 36px; }
	.zh-cancer-types-grid { grid-template-columns: 1fr; gap: 12px; }
	.zh-cancer-type-card { padding: 16px 14px; gap: 12px; }
	.zh-cancer-type-card__icon { flex-basis: 60px; width: 60px; height: 60px; min-width: 60px; min-height: 60px; }
	.zh-cancer-type-card__icon img { width: 60px; height: 60px; max-width: 60px; max-height: 60px; }
	.zh-cancer-type-card__label { font-size: 13px; }
	.zh-cancer-type-card__desc { font-size: 11.5px; }
	.zh-cancer-types__title { font-size: 24px; }
	.zh-cancer-types__sub { font-size: 14px; }
	.zh-cancer-types__cta-btn { width: 100%; }
	#zhCancerTypesPrimary .zh-cancer-type-card:nth-child(n+6) {
		display: none;
	}
	.zh-cancer-types.is-expanded #zhCancerTypesPrimary .zh-cancer-type-card:nth-child(n+6) {
		display: flex;
	}
}

/* ===== Care services ===== */
.zh-care-services {
	position: relative;
	overflow: hidden;
	padding: 56px 0 52px;
	background: #ffffff;
}
.zh-care-services__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: none;
}
.zh-care-services__inner {
	position: relative;
	z-index: 1;
	max-width: 1100px;
}
.zh-care-services__eyebrow {
	display: inline-block;
	margin: 0 auto 14px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e8f3f2;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	width: fit-content;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.zh-care-services__title {
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 10px;
}
.zh-care-services__title span { color: #046461; }
.zh-care-services__sub {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #6b7c8f;
	text-align: center;
	margin: 0 auto 14px;
	max-width: 560px;
}
.zh-care-services__divider {
	display: block;
	width: 48px;
	height: 3px;
	margin: 0 auto 28px;
	border-radius: 999px;
	background: #046461;
}
.zh-care-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 1080px;
	margin: 0 auto;
}
.zh-care-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 118px;
	padding: 18px 16px 18px 14px;
	background: #fff;
	border: 1.5px solid rgba(4, 100, 97, 0.08);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
	color: #1e3a5f;
	font-family: Poppins, sans-serif;
	cursor: default;
}
.zh-care-card__icon {
	flex: 0 0 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin: 0;
	border-radius: 50%;
	background: transparent;
	overflow: visible;
}
.zh-care-card__icon img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
}
.zh-care-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.zh-care-card__title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #1e3a5f;
	margin: 0;
}
.zh-care-card__desc {
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.45;
	color: #6b7c8f;
}
@media (max-width: 991px) {
	.zh-care-services__title { font-size: 28px; }
	.zh-care-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.zh-care-card__icon,
	.zh-care-card__icon img { width: 64px; height: 64px; }
	.zh-care-card__icon { flex-basis: 64px; }
}
@media (max-width: 575px) {
	.zh-care-services { padding: 40px 0 36px; }
	.zh-care-services__title { font-size: 24px; }
	.zh-care-services__sub { font-size: 14px; }
	.zh-care-grid { grid-template-columns: 1fr; gap: 12px; }
	.zh-care-card { padding: 14px 12px; gap: 12px; min-height: 0; }
	.zh-care-card__icon,
	.zh-care-card__icon img { width: 56px; height: 56px; }
	.zh-care-card__icon { flex-basis: 56px; }
	.zh-care-card__title { font-size: 14px; }
	.zh-care-card__desc { font-size: 12px; }
}

/* ===== Why ZenHeal (commitment) ===== */
.zh-why-zenheal {
	position: relative;
	overflow: hidden;
	background: #fff;
}
.zh-why-zenheal__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 42% 36% at 4% 8%, rgba(180, 220, 210, 0.35) 0%, transparent 70%),
		radial-gradient(ellipse 38% 32% at 98% 12%, rgba(200, 225, 235, 0.28) 0%, transparent 70%);
}
.zh-why-zenheal__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zh-why-zenheal__eyebrow {
	display: inline-block;
	margin: 0 0 10px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #e4f3f1;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.zh-why-zenheal__title {
	font-family: Poppins, sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 12px;
	max-width: 820px;
}
.zh-why-zenheal__title span {
	color: var(--zh-teal);
}
.zh-why-zenheal__sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.45;
	color: #5a6b7d;
	text-align: center;
	margin: 0 0 12px;
	max-width: 560px;
}
.zh-why-zenheal__intro {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	color: #5a6b7d;
	text-align: center;
	margin: 0 auto 28px;
	max-width: 720px;
}
.zh-why-stats-wrap--hero {
	margin-top: 28px;
	padding: 8px 0 4px;
}
.zh-why-stats-wrap--hero .zh-why-stats {
	margin-bottom: 16px;
}
.zh-why-stats-wrap__tagline {
	margin: 0 auto 10px !important;
}
.zh-why-stats {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 28px;
}
.zh-why-stat {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	color: #046461;
	border: 1px solid #d7e8e5;
	border-radius: 14px;
	padding: 14px 14px;
	min-height: 84px;
	box-shadow: 0 6px 18px rgba(4, 100, 97, 0.06);
}
.zh-why-stat--compact {
	min-height: 76px;
	padding: 12px 14px;
	gap: 10px;
}
.zh-why-stat__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border-radius: 0;
	padding: 0;
}
.zh-why-stat__icon img {
	width: 44px;
	height: 44px;
	display: block;
	object-fit: contain;
}
.zh-why-stat__icon svg {
	width: 44px;
	height: 44px;
	display: block;
}
.zh-why-stat__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.zh-why-stat__value {
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #046461;
}
.zh-why-stat--compact .zh-why-stat__label {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #046461;
}
.zh-why-stat__label {
	font-family: Poppins, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
	color: #5a6b7d;
}
.zh-why-zenheal__divider {
	display: block;
	width: 56px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #046461 0%, #7bbf6a 100%);
	margin: 0 auto 20px;
}
.zh-why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
}
.zh-why-grid--extra {
	margin-top: 14px;
	animation: zhWhyReveal 0.35s ease;
}
.zh-why-grid--extra[hidden] {
	display: none !important;
}
@keyframes zhWhyReveal {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.zh-why-zenheal__cta {
	margin-top: 22px;
	width: 100%;
	max-width: 1040px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.zh-why-zenheal__view-all {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 0;
	border-radius: 999px;
	background: #046461;
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(4, 100, 97, 0.28);
	transition: background .2s, transform .15s, box-shadow .2s;
}
.zh-why-zenheal__view-all:hover,
.zh-why-zenheal__view-all:focus {
	background: #035552;
	color: #fff;
	outline: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(4, 100, 97, 0.34);
}
.zh-why-zenheal__view-all[hidden],
.zh-why-zenheal__show-less[hidden] {
	display: none !important;
}
.zh-why-zenheal__show-less {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: transparent;
	padding: 4px 8px;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.zh-why-zenheal__show-less:hover,
.zh-why-zenheal__show-less:focus {
	color: #035552;
	outline: none;
}
@media (min-width: 901px) {
	/* Desktop: show all commitment cards; View All is mobile/tablet only */
	.zh-why-grid--extra[hidden] {
		display: grid !important;
		margin-top: 14px;
	}
	.zh-why-zenheal__cta {
		display: none !important;
	}
}
.zh-why-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(4, 100, 97, 0.1);
	border-radius: 16px;
	padding: 18px 16px 18px 18px;
	box-shadow: 0 6px 18px rgba(30, 58, 95, 0.05);
	min-height: 0;
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	align-items: center;
	column-gap: 16px;
	row-gap: 0;
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
.zh-why-card:hover {
	box-shadow: 0 10px 24px rgba(4, 100, 97, 0.1);
	transform: translateY(-2px);
}
.zh-why-card__wash {
	position: absolute;
	right: -20px;
	bottom: -30px;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: rgba(4, 100, 97, 0.06);
	pointer-events: none;
	z-index: 0;
}
.zh-why-card--blue .zh-why-card__wash { background: rgba(47, 128, 237, 0.07); }
.zh-why-card--green .zh-why-card__wash { background: rgba(31, 138, 91, 0.07); }
.zh-why-card--purple .zh-why-card__wash { background: rgba(123, 111, 176, 0.08); }
.zh-why-card--mint .zh-why-card__wash { background: rgba(42, 155, 122, 0.07); }
.zh-why-card--orange .zh-why-card__wash { background: rgba(197, 106, 58, 0.08); }
.zh-why-card__body {
	position: relative;
	z-index: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 0;
	justify-content: center;
}
.zh-why-card__icon {
	position: relative;
	z-index: 1;
	grid-column: 1;
	justify-self: center;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	min-width: 72px;
	min-height: 72px;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent !important;
	box-shadow: none;
	overflow: hidden;
	line-height: 0;
}
.zh-why-card__icon img,
.zh-why-card__icon svg {
	display: block;
	width: 72px;
	height: 72px;
	max-width: 72px !important;
	max-height: 72px !important;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	padding: 0;
	border: 0;
	object-fit: contain;
	object-position: center center;
}
.zh-why-card__title {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1e3a5f;
	margin: 0 0 6px;
	line-height: 1.3;
	min-height: 1.3em;
}
.zh-why-card__text {
	font-family: Poppins, sans-serif;
	font-size: 13px;
	color: #5a6b7d;
	margin: 0 0 10px;
	line-height: 1.45;
	min-height: 2.9em;
}
.zh-why-card__accent {
	display: block;
	width: 32px;
	height: 3px;
	margin-top: auto;
	border-radius: 999px;
	background: var(--zh-teal);
}
.zh-why-card--teal:hover { border-color: #046461; }
.zh-why-card--teal .zh-why-card__accent { background: linear-gradient(90deg, #046461, #3a9a8f); }
.zh-why-card--blue:hover { border-color: #2f80ed; }
.zh-why-card--blue .zh-why-card__accent { background: linear-gradient(90deg, #2f80ed, #6aa8f5); }
.zh-why-card--green:hover { border-color: #1f8a5b; }
.zh-why-card--green .zh-why-card__accent { background: linear-gradient(90deg, #1f8a5b, #5bb88a); }
.zh-why-card--purple:hover { border-color: #7b6fb0; }
.zh-why-card--purple .zh-why-card__accent { background: linear-gradient(90deg, #7b6fb0, #a99ad4); }
.zh-why-card--mint:hover { border-color: #2a9b7a; }
.zh-why-card--mint .zh-why-card__accent { background: linear-gradient(90deg, #2a9b7a, #6bc4a8); }
.zh-why-card--orange:hover { border-color: #c56a3a; }
.zh-why-card--orange .zh-why-card__accent { background: linear-gradient(90deg, #c56a3a, #e76943); }
@media (max-width: 1100px) {
	.zh-why-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.zh-why-stats .zh-why-stat:nth-child(4),
	.zh-why-stats .zh-why-stat:nth-child(5) {
		grid-column: span 1;
	}
}
@media (max-width: 900px) {
	.zh-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.zh-why-zenheal__title { font-size: 26px; }
	.zh-why-zenheal__intro { font-size: 14px; margin-bottom: 22px; }
	.zh-why-zenheal__view-all { width: min(100%, 320px); }
	.zh-why-stats {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 10px;
		padding-bottom: 6px;
		margin-bottom: 22px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}
	.zh-why-stat {
		flex: 0 0 min(78%, 280px);
		min-height: 78px;
	}
	.zh-why-stat__value { font-size: 17px; }
}
@media (max-width: 560px) {
	.zh-why-grid { grid-template-columns: 1fr; gap: 10px; }
	.zh-why-grid--extra { margin-top: 10px; }
	.zh-why-zenheal__cta { margin-top: 18px; }
	.zh-why-zenheal__view-all { width: 100%; }
	.zh-why-card {
		padding: 16px 14px 16px 16px;
		grid-template-columns: 52px minmax(0, 1fr);
		column-gap: 14px;
	}
	.zh-why-card__icon {
		width: 64px;
		height: 64px;
		min-width: 64px;
		min-height: 64px;
	}
	.zh-why-card__icon img,
	.zh-why-card__icon svg {
		width: 64px;
		height: 64px;
		max-width: 64px !important;
		max-height: 64px !important;
	}
	.zh-why-zenheal__title { font-size: 22px; }
	.zh-why-stat {
		flex: 0 0 min(86%, 260px);
		padding: 12px;
	}
	.zh-why-stat__icon {
		width: 48px;
		height: 48px;
	}
	.zh-why-stat__icon img,
	.zh-why-stat__icon svg {
		width: 48px;
		height: 48px;
	}
	.zh-why-stat__value { font-size: 16px; }
	.zh-why-stat__label { font-size: 11px; }
}

/* ===== Support beyond ===== */
.zh-support-beyond {
	position: relative;
	overflow: hidden;
	background: #fff;
}
.zh-support-beyond__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 40% 34% at 4% 10%, rgba(180, 220, 210, 0.38) 0%, transparent 70%),
		radial-gradient(ellipse 36% 30% at 96% 8%, rgba(200, 225, 235, 0.3) 0%, transparent 70%);
}
.zh-support-beyond__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zh-support-beyond__eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #e4f3f1;
	color: #046461;
	font-family: Poppins, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.zh-support-beyond__title {
	font-family: Poppins, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	color: #1e3a5f;
	text-align: center;
	margin: 0 0 10px;
}
.zh-support-beyond__title span {
	color: var(--zh-teal);
}
.zh-support-beyond__sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #5a6b7d;
	text-align: center;
	margin: 0 0 14px;
	max-width: 560px;
}
.zh-support-beyond__divider {
	display: block;
	width: 64px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #046461 0%, #7bbf6a 100%);
	margin: 0 auto 28px;
}
.zh-support-scroll {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: rgba(4, 100, 97, 0.35) transparent;
	padding: 4px 4px 14px;
	outline: none;
}
.zh-support-scroll::-webkit-scrollbar {
	height: 6px;
}
.zh-support-scroll::-webkit-scrollbar-track {
	background: transparent;
}
.zh-support-scroll::-webkit-scrollbar-thumb {
	background: rgba(4, 100, 97, 0.28);
	border-radius: 999px;
}
.zh-support-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 18px;
	width: max-content;
	min-width: 100%;
	margin: 0;
	padding: 2px 2px 4px;
	box-sizing: border-box;
}
.zh-support-card {
	position: relative;
	overflow: hidden;
	flex: 0 0 min(300px, 78vw);
	width: min(300px, 78vw);
	max-width: 300px;
	background: #fff;
	border: 1.5px solid rgba(4, 100, 97, 0.08);
	border-radius: 18px;
	padding: 22px 20px 20px;
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.06);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	min-height: 260px;
	scroll-snap-align: start;
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
.zh-support-card:hover {
	box-shadow: 0 12px 28px rgba(4, 100, 97, 0.12);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}
.zh-support-card__wash {
	position: absolute;
	right: -24px;
	bottom: -36px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(4, 100, 97, 0.06);
	pointer-events: none;
}
.zh-support-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin-bottom: 14px;
}
.zh-support-card__icon {
	flex: 0 0 72px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: transparent;
	overflow: visible;
}
.zh-support-card__icon img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: contain;
}
.zh-support-card__arrow {
	flex: 0 0 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #eef5f4;
	color: #046461;
}
.zh-support-card__title {
	position: relative;
	z-index: 1;
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1e3a5f;
	margin: 0 0 8px;
	line-height: 1.3;
}
.zh-support-card__text {
	position: relative;
	z-index: 1;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	color: #5a6b7d;
	margin: 0 0 16px;
	line-height: 1.5;
	flex: 1;
}
.zh-support-card__link {
	position: relative;
	z-index: 1;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--zh-teal);
}
.zh-support-card--teal:hover { border-color: #046461; }
.zh-support-card--teal .zh-support-card__arrow { background: #e4f4f1; color: #046461; }
.zh-support-card--teal .zh-support-card__link { color: #046461; }
.zh-support-card--teal .zh-support-card__wash { background: rgba(4, 100, 97, 0.07); }
.zh-support-card--peach:hover { border-color: #e08a5a; }
.zh-support-card--peach .zh-support-card__arrow { background: #fceee6; color: #c56a3a; }
.zh-support-card--peach .zh-support-card__link { color: #c56a3a; }
.zh-support-card--peach .zh-support-card__wash { background: rgba(197, 106, 58, 0.08); }
.zh-support-card--blue:hover { border-color: #4a90c8; }
.zh-support-card--blue .zh-support-card__arrow { background: #e8f2fa; color: #3a7eb0; }
.zh-support-card--blue .zh-support-card__link { color: #3a7eb0; }
.zh-support-card--blue .zh-support-card__wash { background: rgba(74, 144, 200, 0.1); }
.zh-support-card--green:hover { border-color: #3d9b63; }
.zh-support-card--green .zh-support-card__arrow { background: #e8f5ec; color: #2e7d4f; }
.zh-support-card--green .zh-support-card__link { color: #2e7d4f; }
.zh-support-card--green .zh-support-card__wash { background: rgba(46, 125, 79, 0.08); }
.zh-support-card--lavender:hover { border-color: #9b4f8a; }
.zh-support-card--lavender .zh-support-card__arrow { background: #f6eaf4; color: #9b4f8a; }
.zh-support-card--lavender .zh-support-card__link { color: #9b4f8a; }
.zh-support-card--lavender .zh-support-card__wash { background: rgba(155, 79, 138, 0.1); }
@media (max-width: 900px) {
	.zh-support-beyond__title { font-size: 28px; }
	.zh-support-card {
		flex-basis: min(280px, 82vw);
		width: min(280px, 82vw);
		max-width: 280px;
	}
}
@media (max-width: 560px) {
	.zh-support-beyond__title { font-size: 24px; }
	.zh-support-card { padding: 18px 16px; min-height: 240px; }
	.zh-support-card__icon,
	.zh-support-card__icon img { width: 64px; height: 64px; flex-basis: 64px; }
}

/* ===== Case studies featured (Our Services-style cards, horizontal scroll) ===== */
.HomeCaseStudiesSection .zh-cases-carousel {
	position: relative;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0;
}
.zh-cases-scroll {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 6px 4px 12px;
	scrollbar-width: none;
	height: auto;
}
.zh-cases-scroll::-webkit-scrollbar {
	display: none;
}
.zh-case-card {
	/* ~1.5 cards visible on desktop, like services card width */
	flex: 0 0 min(320px, 78%);
	width: min(320px, 78%);
	max-width: 340px;
	align-self: stretch;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	background: #fff;
	border: 1px solid #dde5e4;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(4, 100, 97, 0.07);
	display: flex;
	flex-direction: column;
	height: auto;
	min-height: 0;
	box-sizing: border-box;
	cursor: pointer;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.zh-case-card:hover,
.zh-case-card:focus {
	box-shadow: 0 10px 28px rgba(4, 100, 97, 0.12);
	outline: none;
}
.zh-case-card:focus-visible {
	outline: 2px solid #046461;
	outline-offset: 2px;
}
.zh-case-card__media {
	/* Match Our Services .hx-treatment-media */
	height: 170px;
	flex-shrink: 0;
	overflow: hidden;
	background: #e8f0ef;
	width: 100%;
	line-height: 0;
}
.zh-case-card__img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.zh-case-card__body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-width: 0;
	margin-top: 0;
}
.zh-case-card__type {
	font-size: 11px;
	font-weight: 600;
	color: var(--zh-orange);
	text-transform: uppercase;
	letter-spacing: .03em;
	margin: 0 0 4px;
}
.zh-case-card__approach {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #046461;
	margin: 0 0 8px;
	line-height: 1.35;
}
.zh-case-card__journey {
	font-size: 12px;
	color: #5c6b67;
	margin: 0 0 10px;
	line-height: 1.45;
	flex: 0 0 auto;
}
.zh-case-card__highlights {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #555;
	font-family: Poppins, sans-serif;
	font-size: 12px;
	line-height: 1.45;
}
.zh-case-card__highlights li {
	position: relative;
	padding-left: 20px;
	word-break: normal;
	overflow-wrap: anywhere;
}
.zh-case-card__highlights li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.3em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #dff0ea url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M12.4 0C12 0.01 11.62 0.18 11.34 0.47C8.92 2.93 7.06 4.99 4.84 7.28L2.59 5.36C2.43 5.21 2.25 5.11 2.06 5.04C1.86 4.97 1.65 4.94 1.45 4.96C1.24 4.97 1.04 5.03 0.85 5.12C0.67 5.22 0.5 5.35 0.37 5.51C0.23 5.67 0.13 5.85 0.07 6.06C0.01 6.26 -0.01 6.47 0.01 6.68C0.03 6.89 0.09 7.09 0.19 7.27C0.29 7.46 0.42 7.62 0.58 7.75L3.94 10.63C4.24 10.88 4.62 11.02 5.01 11C5.4 10.98 5.77 10.82 6.04 10.54C8.83 7.71 10.81 5.45 13.54 2.69C13.76 2.47 13.91 2.19 13.97 1.88C14.03 1.57 14 1.25 13.88 0.96C13.75 0.66 13.55 0.42 13.29 0.25C13.02 0.08 12.72 -0.01 12.4 0Z' fill='%23046461'/%3E%3C/svg%3E") center / 8px 7px no-repeat;
}
.zh-case-card__cta {
	align-self: flex-start;
	margin-top: auto;
	font-size: 13px;
	font-weight: 600;
}
/* Match homepage doctor carousel nav style */
.zh-cases-nav-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 14px auto 0;
	flex-wrap: wrap;
}
.zh-cases-nav {
	position: static;
	width: 36px;
	height: 36px;
	min-width: 36px;
	margin: 0;
	padding: 0;
	border: 1.5px solid #c5d4d1;
	border-radius: 50%;
	background: #fff;
	color: #046461;
	font-size: 0;
	line-height: 1;
	box-shadow: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .15s, border-color .15s, transform .15s;
}
.zh-cases-nav__icon {
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid #046461;
	border-bottom: 2px solid #046461;
	box-sizing: border-box;
}
.zh-cases-nav--prev .zh-cases-nav__icon {
	transform: rotate(135deg);
	margin-left: 3px;
}
.zh-cases-nav--next .zh-cases-nav__icon {
	transform: rotate(-45deg);
	margin-right: 3px;
}
.zh-cases-nav:hover,
.zh-cases-nav:focus {
	background: #e8f3f2;
	border-color: #046461;
	outline: none;
	transform: none;
}
.zh-cases-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	max-width: min(520px, 70vw);
}
.zh-cases-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #c5d4d1;
	cursor: pointer;
	transition: background .15s, transform .15s;
}
.zh-cases-dot.is-active {
	background: #046461;
	transform: scale(1.25);
}
.zh-cases-dot:focus {
	outline: 2px solid #046461;
	outline-offset: 2px;
}

/* Case study image lightbox */
.zh-case-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	box-sizing: border-box;
}
.zh-case-lightbox[hidden] {
	display: none !important;
}
.zh-case-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 28, 28, 0.78);
	cursor: pointer;
}
.zh-case-lightbox__dialog {
	position: relative;
	z-index: 1;
	max-width: min(1100px, 94vw);
	max-height: 90vh;
	margin: 0 auto;
	background: #0b1f1e;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	overflow: auto;
}
.zh-case-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}
.zh-case-lightbox__close {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #046461;
	font-size: 28px;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	transition: background 0.15s ease, transform 0.15s ease;
}
.zh-case-lightbox__close:hover,
.zh-case-lightbox__close:focus {
	background: #fff;
	transform: scale(1.05);
	outline: none;
}
.zh-case-lightbox__close:focus-visible {
	outline: 2px solid #e76943;
	outline-offset: 2px;
}
.zh-case-lightbox__close span {
	display: block;
	margin-top: -2px;
}

@media (max-width: 767px) {
	.HomeCaseStudiesSection .zh-cases-carousel {
		padding: 0;
		max-width: 100%;
	}
	.zh-cases-scroll {
		gap: 12px;
		padding: 4px 0 10px;
	}
	.zh-cases-nav { width: 34px; height: 34px; min-width: 34px; }
	.zh-case-card {
		flex: 0 0 min(280px, 85%);
		width: min(280px, 85%);
		max-width: 300px;
	}
	.zh-case-card__media { height: 150px; }
	.zh-case-card__body { padding: 14px 14px 16px; }
	.zh-case-card__approach { font-size: 15px; }
	.zh-cases-dots { max-width: 55vw; gap: 5px; }
	.zh-cases-dot { width: 7px; height: 7px; }
	.zh-case-lightbox {
		padding: 12px 10px;
	}
	.zh-case-lightbox__close {
		top: 8px;
		right: 8px;
		width: 36px;
		height: 36px;
		font-size: 24px;
	}
}

/* ===== Final CTA / Next Step ===== */
.zh-final-cta {
	position: relative;
	overflow: hidden;
	padding: 56px 24px;
	background: #ffffff;
}
.zh-final-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 40% 55% at 0% 50%, rgba(180, 220, 210, 0.5) 0%, transparent 70%),
		radial-gradient(ellipse 40% 55% at 100% 50%, rgba(180, 220, 210, 0.45) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 50% 0%, rgba(200, 230, 225, 0.35) 0%, transparent 70%);
}
.zh-final-cta__shell {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 520px);
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 1040px;
	margin: 0 auto;
}
.zh-final-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 520px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0 4px;
}
.zh-final-cta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 2px 10px rgba(4, 100, 97, 0.08);
	position: relative;
	overflow: hidden;
}
.zh-final-cta__icon img,
.zh-final-cta__icon svg {
	display: block;
	width: 36px;
	height: 36px;
	object-fit: contain;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}
.zh-final-cta__title {
	font-family: Poppins, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.35;
	color: #035451;
	text-align: center;
	margin: 0 0 14px;
}
.zh-final-cta__title span {
	color: #046461;
}
.zh-final-cta__sub {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	color: #5f7370;
	text-align: center;
	margin: 0 auto 20px;
	max-width: 460px;
}
.zh-final-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.zh-final-cta__btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 20px;
	border: none;
	border-radius: 999px;
	background: #046461;
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(4, 100, 97, 0.16);
	transition: background .18s ease, box-shadow .18s ease, transform .15s ease;
}
.zh-final-cta__btn:hover,
.zh-final-cta__btn:focus {
	background: #035451;
	color: #fff;
	outline: none;
	box-shadow: 0 5px 14px rgba(4, 100, 97, 0.22);
	transform: translateY(-1px);
}
.zh-final-cta__trust {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-family: Poppins, sans-serif;
	font-size: 12.5px;
	font-weight: 500;
	color: #6b807c;
	line-height: 1.3;
}
.zh-final-cta__trust img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}
.zh-final-cta__bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	background: #046461;
	z-index: 2;
}
@media (max-width: 991px) {
	.zh-final-cta__title { font-size: 24px; }
}
@media (max-width: 767px) {
	.zh-final-cta {
		padding: 40px 16px;
	}
	.zh-final-cta__icon {
		width: 56px;
		height: 56px;
		margin-bottom: 14px;
	}
	.zh-final-cta__icon img,
	.zh-final-cta__icon svg {
		width: 32px;
		height: 32px;
	}
	.zh-final-cta__title { font-size: 22px; margin-bottom: 12px; }
	.zh-final-cta__sub { font-size: 14px; margin-bottom: 16px; }
	.zh-final-cta__btn {
		width: 100%;
		max-width: 300px;
	}
}

/* ===== Doctors section — vertical portrait cards ===== */
.consult-onco-sec .section-header { color: var(--zh-teal); }
.consult-onco-sec #oncoSlider .item-inner,
.expert-section #expertSlider .item-inner {
	min-height: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
	padding: 12px 14px 16px !important;
	gap: 10px !important;
	border-radius: 16px !important;
	border: 1px solid #e8eeee !important;
	background: #fff !important;
	box-shadow: 0 10px 28px rgba(16, 40, 60, 0.08) !important;
}
.consult-onco-sec #oncoSlider .icon.sky {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	height: 240px !important;
	flex: 0 0 auto !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	background: #f3f6f8 !important;
	align-self: stretch !important;
}
/* Expert portraits are mostly 1:1 / low-res — square well + size cap avoids stretch & soft upscales */
.expert-section #expertSlider .icon.sky {
	position: relative !important;
	width: min(100%, 240px) !important;
	min-width: 0 !important;
	max-width: 240px !important;
	height: auto !important;
	aspect-ratio: 1 / 1 !important;
	flex: 0 0 auto !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	background: #eef4f3 !important;
	align-self: center !important;
	margin: 0 auto 2px !important;
	display: block !important;
}
.consult-onco-sec #oncoSlider .icon.sky img,
.consult-onco-sec #oncoSlider .careteam-img {
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: top center !important;
	border-radius: 12px !important;
	display: block !important;
}
.expert-section #expertSlider .icon.sky img,
.expert-section #expertSlider .careteam-img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center 18% !important;
	border-radius: 14px !important;
	display: block !important;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.consult-onco-sec #oncoSlider .dr-detail,
.expert-section #expertSlider .dr-detail {
	width: 100% !important;
	align-items: center !important;
	text-align: center !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
}
.consult-onco-sec #oncoSlider .dr-name,
.expert-section #expertSlider .dr-name {
	color: #132b52 !important;
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: unset !important;
	line-height: 1.3 !important;
	min-height: 0 !important;
	font-weight: 700 !important;
	font-size: 17px !important;
	-webkit-line-clamp: 2 !important;
	line-clamp: 2 !important;
}
.consult-onco-sec #oncoSlider .dr-desg,
.expert-section #expertSlider .dr-desg {
	color: #667787 !important;
	font-size: 13px !important;
	text-align: center !important;
}
.consult-onco-sec #oncoSlider .dr-edu,
.expert-section #expertSlider .dr-edu {
	display: none !important;
}
.consult-onco-sec #oncoSlider .dr-exp,
.expert-section #expertSlider .dr-exp {
	justify-content: center !important;
	color: #667787 !important;
	font-size: 13px !important;
	line-height: 1.35 !important;
	margin: 2px 0 0 !important;
	min-height: 18px !important;
}
.consult-onco-sec #oncoSlider .dr-exp span,
.expert-section #expertSlider .dr-exp span {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	white-space: normal !important;
}
.consult-onco-sec #oncoSlider .dr-exp img,
.expert-section #expertSlider .dr-exp img {
	display: none !important;
}
.consult-onco-sec .consult-btn,
.consult-onco-sec #oncoSlider .consult-btn,
.expert-section #expertSlider .consult-btn,
.consult-onco-sec a.CustomDrName .consult-btn {
	background: linear-gradient(180deg, #f5a623 0%, #e8912e 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	width: calc(100% - 8px) !important;
	max-width: 100% !important;
	height: 44px !important;
	min-height: 44px !important;
	line-height: 44px !important;
	padding: 0 14px !important;
	margin: 10px 0 0 !important;
	align-self: center !important;
	box-shadow: 0 6px 14px rgba(232, 145, 46, 0.28) !important;
}
.consult-onco-sec #oncoSlider .consult-btn { margin-top: 10px !important; }

@media (max-width: 767px) {
	.consult-onco-sec #oncoSlider .icon.sky {
		height: 220px !important;
	}
	.expert-section #expertSlider .icon.sky {
		width: min(100%, 220px) !important;
		max-width: 220px !important;
		height: auto !important;
		aspect-ratio: 1 / 1 !important;
	}
}

/* ===== Medicines / app ===== */
.buy-supplements-sec .section-header,
.download-app-sec .section-header { color: var(--zh-teal); }

/* ===== Hero proof points (stacked title + desc beside icon) ===== */
.new-banner-section .hero-proof-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 18px 0 0;
	padding: 0;
	max-width: 420px;
}
.new-banner-section .hero-proof-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.new-banner-section .hero-proof-item__icon {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
}
.new-banner-section .hero-proof-item__icon svg {
	width: 24px;
	height: auto;
	display: block;
}
.new-banner-section .hero-proof-item__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}
.new-banner-section .hero-proof-item__title {
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	color: #2c2c2c;
	white-space: normal;
}
.new-banner-section .hero-proof-item__title strong {
	font-weight: 700;
	color: var(--zh-teal, #0d5c63);
}
.new-banner-section .hero-proof-item__desc {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: #666;
	white-space: normal;
}
.new-banner-section .section-micro-cta--hero-primary {
	margin-top: 20px;
}
.hero-hospital-img-wrap {
	border-radius: 16px;
	overflow: hidden;
}

/* ===== Stories / micro CTA spacing ===== */
#patientbenefit .section-micro-cta {
	margin-top: 24px;
}
#patientbenefit .zh-btn--link {
	display: inline-flex;
	margin-top: 8px;
}

/* Show 5-tab sticky footer on mobile; hide legacy WhatsApp/Call strip */
@media (max-width: 767px) {
	body.has-hospital-sticky .hospital-sticky-stack {
		display: block !important;
		visibility: visible !important;
		pointer-events: none !important;
	}
	body.has-hospital-sticky .hospital-sticky-cta--tabs,
	.hospital-sticky-cta.hospital-sticky-cta--tabs {
		display: grid !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	.sticky-counsellor-chip {
		display: none !important;
	}
	body.has-hospital-sticky .floating_button_container,
	body.has-hospital-sticky .floating_button_container.mobile-view,
	.floating_button_container.mobile-view {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
		opacity: 0 !important;
	}
	body.has-hospital-sticky {
		padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important;
	}
	.zh-section__title { font-size: 22px !important; }
	.zh-section__sub { font-size: 14px; margin-bottom: 20px; }
	.new-banner-section .sec-title { font-size: 26px !important; line-height: 1.25 !important; }
	.new-banner-section .sec-sub-title { font-size: 14px !important; }
	.new-banner-section .section-micro-cta--hero-primary {
		flex-direction: column;
		align-items: stretch;
		margin: 20px 0 0;
		gap: 14px;
		max-width: none;
	}
	.new-banner-section .section-micro-cta--hero-primary .section-micro-cta-prompt {
		text-align: center;
		margin: 0;
		line-height: 1.5;
	}
	.new-banner-section .section-micro-cta--hero-primary .section-micro-cta-actions {
		margin: 0;
	}
	.new-banner-section .hero-proof-list {
		max-width: none;
		margin-top: 16px;
		margin-bottom: 0;
		gap: 16px;
	}
	.new-banner-section .hero-proof-item__title {
		font-size: 14px;
	}
	.new-banner-section .section-micro-cta--hero-primary .section-micro-cta-btn {
		width: 100%;
		justify-content: center;
		margin: 0;
		min-height: 48px;
		padding: 14px 22px !important;
	}
	.hero-hospital-overlay {
		left: 8px;
		right: 8px;
		bottom: 8px;
		padding: 10px 12px;
	}
	.home-guidance-tile__hint {
		display: none;
	}
	.home-treatment-cost__container {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 360px) {
	.sticky-counsellor-chip {
		display: none !important;
	}
	.hospital-sticky-cta--tabs .sticky-tab {
		font-size: 9px;
		padding: 6px 1px 8px;
	}
	.hospital-sticky-cta--tabs .sticky-tab__fab {
		width: 50px;
		height: 50px;
	}
}

/* Book icon mint chip only — not a full-cell pill */
.hospital-sticky-cta--tabs .sticky-book,
.hospital-sticky-cta--tabs .sticky-tab--accent {
	flex: none;
	width: 100%;
	font-size: 10px;
	box-shadow: none !important;
	background: transparent !important;
	color: #046461;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 1px 2px !important;
	min-height: 0 !important;
}

/* Desktop right rail (Book + Call Us) — NH-style */
.zh-desk-rail { display: none; }
@media (min-width: 992px) {
	.zh-desk-rail {
		display: grid;
		grid-template-rows: 1fr 1fr;
		grid-template-columns: 1fr;
		position: fixed;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 998;
		width: 88px;
		height: 236px;
		background: var(--zh-teal, #046461);
		border-radius: 14px 0 0 14px;
		box-shadow: -4px 8px 24px rgba(4, 100, 97, 0.28);
		overflow: hidden;
		padding: 0;
	}
	.zh-desk-rail__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: 100%;
		height: 100%;
		min-height: 0;
		padding: 12px 8px;
		margin: 0;
		border: 0;
		background: transparent;
		color: #fff;
		text-decoration: none;
		text-align: center;
		font-family: Poppins, sans-serif;
		font-size: 11px;
		font-weight: 600;
		line-height: 1.25;
		letter-spacing: 0.01em;
		cursor: pointer;
		-webkit-appearance: none;
		appearance: none;
		box-sizing: border-box;
		transition: background 0.15s ease;
	}
	.zh-desk-rail__item + .zh-desk-rail__item {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	.zh-desk-rail__item:hover,
	.zh-desk-rail__item:focus {
		background: rgba(255, 255, 255, 0.12);
		color: #fff;
		text-decoration: none;
		outline: none;
	}
	.zh-desk-rail__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		color: #fff;
		flex-shrink: 0;
	}
	.zh-desk-rail__icon svg {
		width: 24px;
		height: 24px;
		display: block;
	}
	.zh-desk-rail__label {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 2.6em;
		min-height: 2.6em;
		padding: 0 2px;
		box-sizing: border-box;
		line-height: 1.3;
		word-break: normal;
		overflow-wrap: normal;
		hyphens: none;
	}
	body.has-desk-rail.modal-open .zh-desk-rail,
	body.has-desk-rail.home-guidance-modal-open .zh-desk-rail {
		display: none !important;
	}
}

/* ===== Homepage section rhythm (uniform vertical margins) =====
   Order: guidance → why → services → support beyond → hospitals → quote →
   cancer types → ziopar → doctors → experts → financial → survivors →
   case studies → treatment benefits → supplements → nursing → app → final CTA
*/
.home-guidance,
.home-reports-upload,
.zh-why-zenheal,
.zh-hospitals-section,
.zh-hospital-guidance,
.zh-financial-support,
.zh-quote-vision,
.ZioparSection_home,
.OurCancerCareProgram.OurServices,
.zh-cancer-types,
.zh-support-beyond,
.hx-expert-doctors,
.consult-onco-sec,
.expert-section,
#patientbenefit,
.HomeCaseStudiesSection,
.OurTreatmentBenefits,
.buy-supplements-sec,
.nursing-care-sec,
.download-app-sec,
.zh-final-cta {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 56px !important;
	padding-bottom: 56px !important;
	border-top: 1px solid rgba(4, 100, 97, 0.08);
	box-sizing: border-box;
}

/* Soft white band */
.home-guidance,
.zh-why-zenheal,
.zh-financial-support,
.zh-cancer-types,
.HomeCaseStudiesSection,
.OurTreatmentBenefits,
.buy-supplements-sec,
.nursing-care-sec,
.download-app-sec,
.expert-section,
.hx-expert-doctors,
.consult-onco-sec {
	background: #ffffff !important;
}

/* Soft white band — keep section surfaces neutral */
.home-reports-upload,
.zh-hospitals-section,
.zh-hospital-guidance,
.ZioparSection_home,
.OurCancerCareProgram.OurServices,
.zh-support-beyond,
#patientbenefit.bg-gray:not(.survivors-speak),
.zh-final-cta {
	background: #ffffff !important;
}

/* First flow section: no top rule after hero */
.home-guidance {
	border-top: 0;
	padding-top: 40px !important;
}

/* Stats sit under hero CTAs — keep a clear gap, no section border */
.zh-why-stats-wrap--hero {
	margin-top: 28px !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 8px !important;
	border-top: 0 !important;
}

/* Nested panels keep their own surfaces; outer band stays distinct */
.home-reports-upload__panel {
	background: #ffffff;
	border: 1px solid #e4ecea;
	box-shadow: 0 8px 28px rgba(4, 100, 97, 0.06);
}

.OurCancerCareProgram.OurServices {
	padding-left: 0;
	padding-right: 0;
}

.OurServices .hx-treatment {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	background: transparent !important;
}

.ZioparSection_home {
	padding-left: 0;
	padding-right: 0;
}

/* Restore ZIOPAR card: single doctor on left, mint panel — do not use background shorthand */
.ZioparSection_home .freeDownloadReportHome {
	background-color: #e9f8f7 !important;
	background-image: url('../images/ziopar/ziopar_doctor_clear.png') !important;
	background-repeat: no-repeat !important;
	background-position: left -1% bottom !important;
	background-size: auto 100% !important;
	border: 1px solid #d7ebe8;
	border-radius: 28px;
	box-shadow: 0 8px 28px rgba(4, 100, 97, 0.06);
	width: 100%;
	max-width: 1100px;
	height: auto;
	min-height: 335px;
	margin: 0 auto;
	padding: 28px 24px 32px;
	overflow: hidden;
	box-sizing: border-box;
}

.ZioparSection_home .freeDownloadReportHome .title-con {
	margin-top: 0 !important;
	text-align: center;
}

.ZioparSection_home .DownloadCancerReport {
	text-align: center !important;
	margin: 0 0 8px !important;
}

.ZioparSection_home .FreeReportDesc {
	text-align: center;
	margin: 0 auto 16px;
	max-width: 520px;
	padding: 0 8px;
	line-height: 1.4;
}

.ZioparSection_home form#ZioparHomeForm {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 16px;
	row-gap: 14px;
	margin-left: 22% !important;
	margin-right: 4% !important;
	width: auto !important;
	max-width: 560px;
	align-items: stretch;
	justify-items: stretch;
}

/* Flatten field rows so all 6 selects share one 2×3 grid */
.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-primary,
.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-extra {
	display: contents !important;
}

.ZioparSection_home form#ZioparHomeForm > .row {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.ZioparSection_home form#ZioparHomeForm > .row > .SelectZiopar,
.ZioparSection_home form#ZioparHomeForm > .row > [class*="col-"] {
	float: none !important;
	flex: none;
	max-width: none;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
	min-width: 0;
}

.ZioparSection_home form#ZioparHomeForm .SelectZiopar .zioparInput,
.ZioparSection_home form#ZioparHomeForm .SelectZiopar select,
.ZioparSection_home form#ZioparHomeForm .SelectZiopar .multi-select-button,
.ZioparSection_home form#ZioparHomeForm .SelectZiopar .multi-select-container {
	width: 100% !important;
	max-width: 100% !important;
	min-height: 46px;
	height: 46px !important;
	box-sizing: border-box;
}

.ZioparSection_home .zh-ziopar-extra[hidden] {
	display: none !important;
}

.ZioparSection_home .zh-ziopar-cta-row {
	display: none;
	grid-column: 1 / -1;
	width: 100%;
	text-align: center;
	margin: 4px 0 8px;
}

.ZioparSection_home .zh-ziopar-view-all,
.ZioparSection_home .zh-ziopar-show-less {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: transparent;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #046461;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
	padding: 6px 8px;
}

.ZioparSection_home .zh-ziopar-view-all[hidden],
.ZioparSection_home .zh-ziopar-show-less[hidden] {
	display: none !important;
}

.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-submit {
	display: flex !important;
	grid-column: 1 / -1;
	justify-content: center !important;
	width: 100%;
	margin: 8px 0 0 !important;
}

.ZioparSection_home #AfterLoginPopupFreeGuidance,
.ZioparSection_home #ShoLoginPopupFreeGuidance,
.ZioparSection_home .SearchFreeReportBtn,
.ZioparSection_home button.btn.Connect_with_Expert {
	display: block !important;
	float: none !important;
	width: 240px !important;
	max-width: 100% !important;
	margin: 12px auto 0 !important;
	left: auto !important;
	right: auto !important;
}

@media (min-width: 768px) {
	/* Desktop: all 6 fields visible in one 2×3 grid via display:contents */
	.ZioparSection_home .zh-ziopar-extra[hidden] {
		display: contents !important;
	}
	.ZioparSection_home .zh-ziopar-cta-row {
		display: none !important;
	}
}

.zh-why-zenheal__inner,
.zh-support-beyond__inner {
	padding-top: 0;
}

@media (max-width: 767px) {
	.home-guidance,
	.home-reports-upload,
	.zh-why-zenheal,
	.zh-hospitals-section,
	.zh-hospital-guidance,
	.zh-financial-support,
	.zh-quote-vision,
	.ZioparSection_home,
	.OurCancerCareProgram.OurServices,
	.zh-cancer-types,
	.zh-support-beyond,
	.hx-expert-doctors,
	.consult-onco-sec,
	.expert-section,
	#patientbenefit,
	.HomeCaseStudiesSection,
	.OurTreatmentBenefits,
	.buy-supplements-sec,
	.nursing-care-sec,
	.download-app-sec,
	.zh-final-cta {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.home-guidance {
		padding-top: 28px !important;
	}

	.zh-why-stats-wrap--hero {
		margin-top: 20px !important;
		padding-bottom: 4px !important;
	}

	.ZioparSection_home .freeDownloadReportHome {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0;
		margin: 0 auto;
		padding: 22px 16px 26px;
		border-radius: 20px;
		background-image: none !important;
		background-color: #e9f8f7 !important;
		overflow: visible;
	}

	.ZioparSection_home .freeDownloadReportHome .title-con {
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100%;
	}

	.ZioparSection_home .DownloadCancerReport {
		font-size: 22px !important;
		line-height: 1.25 !important;
		padding-top: 0 !important;
	}

	.ZioparSection_home .FreeReportDesc {
		font-size: 13px;
		line-height: 1.35;
		white-space: normal;
		padding: 0;
		max-width: 100%;
	}

	.ZioparSection_home form#ZioparHomeForm {
		display: block;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100% !important;
		max-width: 100%;
	}

	.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-primary,
	.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-extra {
		display: flex !important;
	}

	.ZioparSection_home form#ZioparHomeForm > .row {
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100%;
	}

	.ZioparSection_home form#ZioparHomeForm > .row > .SelectZiopar,
	.ZioparSection_home form#ZioparHomeForm > .row > [class*="col-"] {
		flex: 1 1 auto !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 10px !important;
		float: none !important;
	}

	.ZioparSection_home .zh-ziopar-cta-row,
	.ZioparSection_home form#ZioparHomeForm > .row.zh-ziopar-submit {
		grid-column: auto;
	}

	.ZioparSection_home .zioparInput,
	.ZioparSection_home form#ZioparHomeForm .zioparInput,
	.ZioparSection_home select#Performance_score,
	.ZioparSection_home select#repo_cancer_stage,
	.ZioparSection_home select#repo_cancer_type,
	.ZioparSection_home #ZioparHomeForm .multi-select-button {
		width: 100% !important;
		max-width: 100% !important;
		height: 46px !important;
		box-sizing: border-box;
	}

	.ZioparSection_home .zh-ziopar-extra[hidden] {
		display: none !important;
	}

	.ZioparSection_home .zh-ziopar-cta-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		margin: 2px 0 10px;
	}

	.ZioparSection_home .zh-ziopar-view-all {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		width: 100%;
		padding: 10px 16px;
		border-radius: 999px;
		border: 1.5px solid #046461;
		background: #fff;
		color: #046461;
		text-decoration: none;
		box-shadow: none;
	}

	.ZioparSection_home #AfterLoginPopupFreeGuidance,
	.ZioparSection_home #ShoLoginPopupFreeGuidance,
	.ZioparSection_home .SearchFreeReportBtn,
	.ZioparSection_home button.btn.Connect_with_Expert {
		width: 100% !important;
		max-width: 100% !important;
		margin: 8px 0 0 !important;
	}
}

/* ===== Survivors / Patients Speak marquee (#patientbenefit) ===== */
#patientbenefit.survivors-speak {
	--survivors-gap: 20px;
	--survivors-pair-gap: 28px;
	--survivors-radius: 18px;
	--survivors-row-h: 240px;
	background: #ffffff !important;
	overflow: hidden;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

#patientbenefit.survivors-speak .survivors-speak__head {
	text-align: left;
	margin-bottom: 32px;
}

#patientbenefit.survivors-speak .survivors-speak__title.section-header {
	text-align: left !important;
	color: var(--zh-teal, #046461) !important;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.25;
	margin: 0 0 8px;
}

#patientbenefit.survivors-speak .survivors-speak__sub {
	margin: 0;
	color: #5c6b67;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.45;
	max-width: 42rem;
}

#patientbenefit.survivors-speak .survivors-speak__foot {
	margin-top: 32px;
}

.survivors-marquee {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

.survivors-marquee.is-dragging {
	cursor: grabbing;
}

.survivors-marquee.is-dragging .survivors-card--video {
	cursor: grabbing;
}

.survivors-marquee__viewport {
	width: 100%;
	overflow: hidden;
}

.survivors-marquee__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	width: max-content;
	gap: 0;
	will-change: transform;
	backface-visibility: hidden;
	transition: none;
}

.survivors-marquee__set {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	gap: var(--survivors-gap);
	padding-right: var(--survivors-pair-gap);
	box-sizing: border-box;
	width: max-content;
}

.survivors-marquee__row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--survivors-pair-gap);
	width: max-content;
}

/* Same person: video left, text right — tight within pair, spacious between pairs */
.survivors-pair {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--survivors-gap);
	flex: 0 0 auto;
	margin: 0;
}

.survivors-card {
	border-radius: var(--survivors-radius);
	overflow: hidden;
	height: var(--survivors-row-h);
	max-height: var(--survivors-row-h);
	box-sizing: border-box;
	flex: 0 0 auto;
	margin: 0 !important;
}

.survivors-card--video {
	width: 340px;
	min-width: 340px;
	position: relative;
	background: #e8f3f2;
	cursor: pointer;
}

.survivors-card__media {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: var(--survivors-radius);
}

.survivors-card__thumb {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
	border-radius: var(--survivors-radius);
	pointer-events: none;
}

.survivors-card__play {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	cursor: pointer;
}

.survivors-card__play-tri {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 15px;
	border-color: transparent transparent transparent var(--zh-orange, #E76943);
	margin-left: 3px;
}

.survivors-card__iframe {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	border-radius: var(--survivors-radius);
	z-index: 3;
	background: #111;
}

.survivors-card--quote {
	display: flex;
	flex-direction: column;
	padding: 24px 24px 20px;
	font-family: Poppins, sans-serif;
}

.survivors-card--quote-wide {
	width: 420px;
	min-width: 420px;
}

.survivors-card--quote-sm {
	width: 320px;
	min-width: 320px;
}

.survivors-card--quote-light {
	background: #d4e8ec;
	color: #0d4a4f;
}

.survivors-card--quote-dark {
	background: var(--zh-teal, #046461);
	color: #fff;
}

.survivors-card__name {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
}

.survivors-card__body {
	margin: 0;
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: inherit;
	opacity: 0.92;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
}

.survivors-card__sign {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: inherit;
}

/* Kill legacy Owl chrome inside survivors section */
#patientbenefit.survivors-speak .owl-nav,
#patientbenefit.survivors-speak .owl-dots,
#patientbenefit.survivors-speak .pb-item,
#patientbenefit.survivors-speak .content {
	display: none !important;
}

@media (max-width: 991px) {
	#patientbenefit.survivors-speak {
		--survivors-row-h: 210px;
		--survivors-gap: 16px;
		--survivors-pair-gap: 22px;
		--survivors-radius: 16px;
	}
	#patientbenefit.survivors-speak .survivors-speak__title.section-header {
		font-size: 26px !important;
	}
	.survivors-card--video {
		width: 290px;
		min-width: 290px;
	}
	.survivors-card--quote-wide {
		width: 360px;
		min-width: 360px;
	}
	.survivors-card--quote-sm {
		width: 280px;
		min-width: 280px;
	}
	.survivors-card--quote {
		padding: 18px 18px 16px;
	}
	.survivors-card__name {
		font-size: 16px;
	}
	.survivors-card__body {
		font-size: 13px;
		-webkit-line-clamp: 6;
	}
	.survivors-card__play {
		width: 48px;
		height: 48px;
	}
}

@media (max-width: 767px) {
	#patientbenefit.survivors-speak {
		--survivors-row-h: 180px;
		--survivors-gap: 12px;
		--survivors-pair-gap: 16px;
	}
	#patientbenefit.survivors-speak .survivors-speak__head {
		margin-bottom: 20px;
		padding-left: 12px;
		padding-right: 12px;
	}
	#patientbenefit.survivors-speak .survivors-speak__title.section-header {
		font-size: 22px !important;
	}
	.survivors-card--video {
		width: 240px;
		min-width: 240px;
	}
	.survivors-card--quote-wide {
		width: 300px;
		min-width: 300px;
	}
	.survivors-card--quote-sm {
		width: 240px;
		min-width: 240px;
	}
	.survivors-card__body {
		-webkit-line-clamp: 5;
	}
}

@media (prefers-reduced-motion: reduce) {
	.survivors-marquee {
		cursor: grab;
	}
	.survivors-marquee__viewport {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}
