.eha-hero,
.eha-hero * {
	box-sizing: border-box;
}

.eha-hero {
	--eha-hero-dark: #033f40;
	--eha-hero-teal: #078688;
	--eha-hero-blue: #4e99b3;
	--eha-hero-muted: #687d83;
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 718px;
	overflow: hidden;
	color: var(--eha-hero-dark);
	background-color: #f2f9f9;
	background-image: linear-gradient(rgba(246, 251, 251, 0.96), rgba(239, 248, 248, 0.95)), var(--eha-hero-bg-image, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	font-family: "Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
}

.eha-hero__container {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(430px, 1fr);
	align-items: center;
	gap: 64px;
	width: calc(100% - 40px);
	max-width: 1230px;
	min-height: 718px;
	margin-inline: auto;
	padding-block: 70px;
}

.eha-hero__content {
	min-width: 0;
}

.eha-hero__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 39px;
	padding: 8px 16px;
	border-radius: 999px;
	background: #deeeee;
	color: #00777c;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.eha-hero__subtitle span {
	width: 8px;
	height: 8px;
	flex: 0 0 8px;
	border-radius: 50%;
	background: #07898d;
}

.eha-hero__title {
	max-width: 610px;
	margin: 21px 0 25px;
	color: var(--eha-hero-dark);
	font-family: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;
	font-size: clamp(42px, 3.1vw, 50px);
	font-weight: 600;
	letter-spacing: -1.35px;
	line-height: 1.21;
}

.eha-hero__description {
	max-width: 590px;
	margin: 0;
	color: var(--eha-hero-muted);
	font-family: "Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.78;
}

.eha-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.eha-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 12px 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: "Montserrat", "Segoe UI", Tahoma, Arial, sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.eha-hero__button:hover,
.eha-hero__button:focus-visible {
	transform: translateY(-2px);
}

.eha-hero__button:focus-visible {
	outline: 3px solid rgba(7, 134, 136, 0.3);
	outline-offset: 3px;
}

.eha-hero__button--primary {
	min-width: 230px;
	color: #fff !important;
	background: linear-gradient(100deg, var(--eha-hero-teal), var(--eha-hero-blue));
	box-shadow: 0 14px 26px rgba(7, 134, 136, 0.12);
}

.eha-hero__button--primary:hover,
.eha-hero__button--primary:focus-visible {
	box-shadow: 0 17px 30px rgba(7, 134, 136, 0.2);
}

.eha-hero__button--secondary {
	min-width: 178px;
	border-color: #d4e4e6;
	color: #00767a !important;
	background: #fff;
}

.eha-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.eha-hero__feature {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin: 0;
	padding: 8px 14px;
	border: 1px solid #d2e3e5;
	border-radius: 999px;
	color: var(--eha-hero-dark);
	background: rgba(255, 255, 255, 0.84);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.2;
}

.eha-hero__feature::before {
	margin-inline-end: 4px;
	color: #00686c;
	content: "✓";
	font-weight: 800;
}

.eha-hero__media {
	width: min(100%, 500px);
	height: auto;
	aspect-ratio: 1 / 1;
	justify-self: end;
	overflow: hidden;
	border-radius: 33px;
	box-shadow: 0 25px 55px rgba(15, 76, 78, 0.12);
}

.eha-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
}

.eha-hero--no-image .eha-hero__container {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

@media (max-width: 1100px) and (min-width: 768px) {
	.eha-hero__container {
		grid-template-columns: minmax(0, 1fr) minmax(350px, 0.92fr);
		gap: 36px;
	}

	.eha-hero__title {
		font-size: 40px;
	}

	.eha-hero__description {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.eha-hero {
		min-height: 0;
		background-position: center top;
	}

	.eha-hero__container,
	.eha-hero--no-image .eha-hero__container {
		grid-template-columns: minmax(0, 1fr);
		gap: 41px;
		width: 100%;
		min-height: 0;
		padding: 15px 20px 29px;
	}

	.eha-hero__subtitle {
		padding-inline: 15px;
		font-size: 14px;
	}

	.eha-hero__title {
		max-width: none;
		margin: 20px 0 27px;
		font-size: 34px;
		letter-spacing: -0.8px;
		line-height: 1.18;
	}

	.eha-hero__description {
		max-width: none;
		font-size: 17.5px;
		line-height: 1.75;
	}

	.eha-hero__actions {
		flex-direction: column;
		gap: 14px;
		margin-top: 33px;
	}

	.eha-hero__button {
		width: 100%;
		min-height: 55px;
		font-size: 16px;
	}

	.eha-hero__features {
		gap: 14px;
		margin-top: 25px;
	}

	.eha-hero__feature {
		min-height: 44px;
		padding-inline: 14px;
		font-size: 14.5px;
	}

	.eha-hero__media {
		justify-self: center;
		border-radius: 24px;
	}
}

@media (max-width: 420px) {
	.eha-hero__container,
	.eha-hero--no-image .eha-hero__container {
		padding-inline: 16px;
	}

	.eha-hero__title {
		font-size: 31px;
	}

	.eha-hero__description {
		font-size: 16.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eha-hero__button {
		transition: none;
	}
}
