.hero {
	background-color: #05324E;
	padding-top: 100px;
	padding-bottom: 40px;
}

.hero__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero__content {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	padding-right: 88px;
}

.hero__stat {
	display: block;
	font-size: 104px;
	font-weight: 700;
	line-height: 1;
	color: #FFD367;
}

.hero__headline {
	font-size: 48px;
	font-weight: 700;
	line-height: 52px;
	color: #FFFFFF;
	margin-bottom: 30px;
}

.hero__feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero__feature-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.hero__feature-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.hero__feature-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #FFFFFF;
}

.hero__images {
	width: 50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-shrink: 0;
	gap: 20px;
}

.hero__image-main {
	width: 47.321%;
	flex-shrink: 0;
}

.hero__image-main .hero__img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	display: block;
}

.hero__images-stack {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero__images-stack .hero__img {
	width: 100%;
	height: auto;
	border-radius: 24px;
	display: block;
}

@media (prefers-reduced-motion: no-preference) {
	.hero__img {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.6s ease, transform 0.6s ease;
	}

	.hero__img.is-visible {
		opacity: 1;
		transform: translateY(0);
	}

	.hero__img--main {
		transition-delay: 0.1s;
	}

	.hero__images-stack .hero__img:first-child {
		transition-delay: 0.2s;
	}

	.hero__images-stack .hero__img:last-child {
		transition-delay: 0.3s;
	}
}

@media (max-width: 1024px) {
	.hero {
		padding-top: 80px;
	}

	.hero__inner {
		flex-direction: column;
		gap: 40px;
	}

	.hero__content {
		width: 100%;
		padding-right: 0;
	}

	.hero__headline {
		font-size: 42px;
		line-height: 48px;
	}

	.hero__images {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.hero {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.hero__inner {
		gap: 20px;
	}

	.hero__stat {
		font-size: 96px;
	}

	.hero__headline {
		font-size: 36px;
		line-height: 42px;
	}

	.hero__feature {
		order: -1;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		margin-bottom: 24px;
	}

	.hero__feature-text {
		text-align: center;
	}

	.hero__feature-icon-img {
		width: 48px;
		height: 48px;
	}

	.hero__images {
		flex-wrap: wrap;
	}

	.hero__image-main {
		width: 100%;
	}
}
