.error-404-page {
	background: #fff;
	min-height: calc(100vh - 220px);
	display: flex;
	align-items: center;
}

.error-404-page__container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 30px 72px;
}

.error-404-page__content {
	max-width: 640px;
	padding: 36px 0;
}

.error-404-page__eyebrow {
	margin: 0 0 12px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6EC1E4;
}

.error-404-page__title {
	margin: 0 0 18px;
	font-size: clamp(2.3rem, 5vw, 4.2rem);
	line-height: 1.02;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #2B2E31;
	font-family: 'Poppins', sans-serif;
}

.error-404-page__text {
	margin: 0 0 28px;
	max-width: 560px;
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(43, 46, 49, 0.82);
}

.error-404-page__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.error-404-page__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	background: #2B2E31;
	color: #fff;
	text-decoration: none;
	font-size: 0.98rem;
	font-weight: 600;
	transition: transform 0.25s ease, background 0.25s ease;
}

.error-404-page__button:hover {
	background: #6EC1E4;
	transform: translateY(-2px);
}

.error-404-page__link {
	color: #2B2E31;
	text-decoration: none;
	font-size: 0.98rem;
	font-weight: 600;
	border-bottom: 2px solid #6EC1E4;
	padding-bottom: 2px;
	transition: color 0.25s ease;
}

.error-404-page__link:hover {
	color: #6EC1E4;
}

@media (max-width: 767px) {
	.error-404-page {
		min-height: auto;
	}

	.error-404-page__container {
		padding: 36px 20px 48px;
	}

	.error-404-page__content {
		padding: 24px 0;
	}

	.error-404-page__text {
		font-size: 1rem;
		line-height: 1.7;
	}

	.error-404-page__actions {
		flex-direction: column;
		align-items: flex-start;
	}
}