.zlh-hero,
.zlh-hero *,
.zlh-hero *::before,
.zlh-hero *::after {
	box-sizing: border-box;
}

.zlh-hero {
	--zlh-teal-deep: #0B2E38;
	--zlh-teal: #123F4B;
	--zlh-teal-light: #1C6478;
	--zlh-ink: #071A20;
	--zlh-green: #22C55E;
	--zlh-green-dark: #16A34A;
	--zlh-gold: #F5B924;
	--zlh-white: #FFFFFF;
	--zlh-mist: #C7D7DB;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--zlh-teal-deep) 0%, var(--zlh-ink) 100%);
	padding: 96px 24px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	isolation: isolate;
}

.zlh-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.35;
	z-index: 0;
	pointer-events: none;
}

.zlh-glow--a {
	width: 520px;
	height: 520px;
	background: var(--zlh-teal-light);
	top: -160px;
	right: -120px;
}

.zlh-glow--b {
	width: 420px;
	height: 420px;
	background: var(--zlh-green);
	opacity: 0.12;
	bottom: -180px;
	left: -100px;
}

.zlh-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.zlh-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.zlh-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.35);
	color: #7FE3A6;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
}

.zlh-badge__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--zlh-green);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
	flex-shrink: 0;
}

.zlh-hero__title {
	font-size: clamp(2.1rem, 3.6vw, 3.4rem);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--zlh-white);
	margin: 0 0 22px;
}

.zlh-hero__lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--zlh-mist);
	margin: 0 0 16px;
	max-width: 560px;
}

.zlh-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 18px 0 40px;
}

.zlh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 10px;
	font-size: 15.5px;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	white-space: nowrap;
}

.zlh-btn--primary {
	background: linear-gradient(135deg, var(--zlh-green) 0%, var(--zlh-green-dark) 100%);
	color: var(--zlh-ink) !important;
	box-shadow: 0 10px 24px rgba(34, 197, 94, 0.28);
}

.zlh-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(34, 197, 94, 0.38);
}

.zlh-btn--primary svg {
	transition: transform 0.18s ease;
}

.zlh-btn--primary:hover svg {
	transform: translateX(3px);
}

.zlh-btn--secondary {
	background: transparent;
	color: var(--zlh-white) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.zlh-btn--secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.55);
	transform: translateY(-2px);
}

.zlh-trust {
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 22px;
}

.zlh-trust__label {
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 14px;
	font-weight: 600;
}

.zlh-trust__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 22px 28px;
}

.zlh-trust__list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--zlh-mist);
}

.zlh-ico {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--zlh-gold);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.zlh-ico::before {
	content: "\2713";
	font-size: 11px;
	font-weight: 900;
	color: var(--zlh-ink);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
}

.zlh-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zlh-panel {
	position: relative;
	width: 100%;
	max-width: 520px;
	border-radius: 18px;
	padding: 10px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.zlh-panel__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.zlh-chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(11, 46, 56, 0.9);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zlh-white);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
	animation: zlh-float 4.5s ease-in-out infinite;
}

.zlh-chip--top {
	top: -18px;
	left: -18px;
}

.zlh-chip--bottom {
	right: -18px;
	bottom: -18px;
	animation-delay: 1.4s;
}

@keyframes zlh-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.zlh-coverage {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 72px auto 0;
	padding-top: 56px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}

.zlh-coverage__map {
	display: flex;
	justify-content: center;
}

.zlh-coverage__map img {
	display: block;
	width: 100%;
	max-width: 460px;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.zlh-coverage__label {
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zlh-green);
	font-weight: 700;
	margin: 0 0 10px;
}

.zlh-coverage__title {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	color: var(--zlh-white);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	line-height: 1.2;
}

.zlh-coverage__desc {
	font-size: 16px;
	line-height: 1.65;
	color: var(--zlh-mist);
	margin: 0;
	max-width: 480px;
}

@media (max-width: 1100px) {
	.zlh-hero__inner {
		gap: 40px;
	}
}

@media (max-width: 900px) {
	.zlh-hero {
		padding: 72px 20px;
	}

	.zlh-hero__inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.zlh-hero__visual {
		margin-top: 12px;
		order: 2;
	}

	.zlh-panel {
		max-width: 480px;
		margin: 0 auto;
	}

	.zlh-chip {
		display: none;
	}

	.zlh-coverage {
		grid-template-columns: 1fr;
		text-align: center;
		margin-top: 56px;
		padding-top: 44px;
	}

	.zlh-coverage__desc {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 560px) {
	.zlh-hero {
		padding: 56px 16px;
	}

	.zlh-hero__title {
		font-size: 2rem;
	}

	.zlh-hero__lead {
		font-size: 15.5px;
	}

	.zlh-btn {
		width: 100%;
		justify-content: center;
	}

	.zlh-hero__cta-row {
		flex-direction: column;
	}

	.zlh-trust__list {
		gap: 14px 20px;
	}

	.zlh-trust__list li {
		font-size: 12.5px;
	}

	.zlh-coverage__map img {
		max-width: 320px;
	}
}
