.native-footer {
	position: relative;
	z-index: 5;
	clear: both;
	margin: 0;
	padding: clamp(48px, 6vw, 72px) 16px 24px;
	background: #24123f;
	color: #d9d4e2;
	font-size: 14px;
	line-height: 1.65;
}

.nf-container {
	display: grid;
	width: min(100%, 1200px);
	grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
	justify-content: space-between;
	gap: clamp(28px, 4vw, 48px);
	margin: 0 auto;
}

.nf-col {
	min-width: 0;
}

.nf-col h3 {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 850;
	letter-spacing: 0.055em;
	line-height: 1.35;
	text-transform: uppercase;
}

.nf-logo-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	border-radius: 8px;
}

.nf-logo-link img {
	display: block;
	width: auto;
	height: 48px;
	margin: 0 0 16px;
	object-fit: contain;
}

.nf-brand p {
	max-width: 33ch;
	margin: 0;
	color: #c6bfce;
}

.nf-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.nf-socials a {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 18px;
	text-decoration: none;
	transition: background-color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nf-socials a:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: #0b63ce;
	transform: translateY(-1px);
}

.nf-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nf-links li {
	margin: 0;
}

.nf-links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: #d0cad8;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.nf-links a:hover {
	color: #ffffff;
	text-decoration-color: #ffffff;
	text-underline-offset: 4px;
}

.nf-col address {
	margin: 0;
	font-style: normal;
}

.nf-contact-item {
	display: grid;
	min-width: 0;
	grid-template-columns: 20px minmax(0, 1fr);
	align-items: baseline;
	gap: 10px;
	margin: 0 0 12px;
}

.nf-contact-item i {
	display: inline-flex;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	color: #a3c9f9;
	font-size: 14px;
	transform: translateY(2px);
}

.nf-contact-item a,
.nf-contact-item span {
	min-width: 0;
	color: #c6bfce;
	overflow-wrap: anywhere;
}

.nf-contact-item a {
	text-decoration: none;
}

.nf-contact-item a:hover {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nf-regret {
	display: grid;
	width: min(100%, 1200px);
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	margin: 42px auto 0;
	padding: clamp(20px, 3vw, 28px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: transparent;
}

.nf-regret h3 {
	margin: 0 0 6px;
	color: #ffffff;
	font-size: clamp(16px, 2vw, 19px);
	font-weight: 850;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.nf-regret p {
	max-width: 70ch;
	margin: 0;
	color: #9288a3;
	font-size: 13px;
}

.nf-regret-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	background: transparent;
	color: #ffffff;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.nf-regret-button:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	transform: translateY(-1px);
}

.nf-regret-button:focus-visible {
	outline: 3px solid #9bc5ff;
	outline-offset: 4px;
}

.nf-copyright {
	width: min(100%, 1200px);
	margin: 44px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: #aaa1b5;
	font-size: 12px;
	text-align: center;
}

.nf-copyright p {
	margin: 0;
}

@media (max-width: 960px) {
	.nf-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.native-footer {
		padding-right: 20px;
		padding-left: 20px;
	}

	.nf-container {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.nf-brand p {
		max-width: none;
	}

	.nf-regret {
		grid-template-columns: minmax(0, 1fr);
		margin-top: 36px;
	}

	.nf-regret-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nf-socials a,
	.nf-regret-button {
		transition: none;
	}
}
