/* Homepage hero */
.home-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(232, 242, 255, 0.76) 100%),
		linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
	border-bottom: 1px solid rgba(10, 38, 78, 0.06);
}

.home-hero__container {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--spacing-lg);
	align-items: center;
	min-height: 300px;
	padding-top: 2rem;
	padding-bottom: 1.6rem;
}

.home-hero__content {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.home-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(10, 73, 215, 0.08);
	color: #0a49d7;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.home-hero__badge::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #0a49d7;
	box-shadow: 0 0 0 5px rgba(10, 73, 215, 0.08);
}

.home-hero__heading {
	max-width: 660px;
	margin: 0 0 0.75rem;
	color: #061a46;
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.home-hero__description {
	max-width: 720px;
	margin: 0;
	color: #405779;
	font-size: 1rem;
	line-height: 1.75;
}

.home-hero__media {
	position: relative;
	z-index: 1;
	min-height: 220px;
	isolation: isolate;
}

.home-hero__media::before {
	content: "";
	position: absolute;
	inset: 2% -8% 0 4%;
	z-index: -1;
	background:
		radial-gradient(circle at 70% 30%, rgba(10, 73, 215, 0.2), transparent 30%),
		linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.32));
	filter: blur(1px);
}

.home-hero__media picture {
	display: block;
	height: 100%;
}

.home-hero__image {
	display: block;
	width: min(100%, 660px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
	filter: drop-shadow(0 22px 36px rgba(10, 38, 78, 0.14));
}

.home-hero__route-card,
.home-hero__trust-bar,
.home-hero__cta-group,
.home-hero__evidence {
	display: none;
}

@media (min-width: 768px) {
	.home-hero__container {
		grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
		min-height: 330px;
		padding-top: 2.2rem;
		padding-bottom: 1.8rem;
	}

	.home-hero__heading {
		font-size: 2.85rem;
	}

	.home-hero__description {
		font-size: 1.06rem;
	}

	.home-hero__media {
		min-height: 260px;
	}

	.home-hero__image {
		width: min(100%, 690px);
		max-width: none;
	}
}

@media (min-width: 1180px) {
	.home-hero__container {
		grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
		min-height: 350px;
		padding-top: 2.4rem;
		padding-bottom: 2rem;
	}

	.home-hero__heading {
		font-size: 3.35rem;
	}

	.home-hero__description {
		font-size: 1.12rem;
	}
}

@media (max-width: 767px) {
	.home-hero__container {
		padding-top: 1.5rem;
		padding-bottom: 1.25rem;
	}

	.home-hero__media {
		min-height: 0;
	}
}
