.utfo-footer {
	background: transparent;
	padding: 0;
	color: #e8eef7;
}

.utfo-shell {
	width: min(1600px, calc(100vw - 32px));
	max-width: none;
	margin: 0 auto;
	padding: 0;
	border-radius: 34px 34px 0 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 18%, rgba(16, 66, 133, 0.45) 0, rgba(16, 66, 133, 0.12) 22%, rgba(7, 22, 42, 0) 44%),
		linear-gradient(135deg, #07162a 0%, #0a2447 54%, #091a31 100%);
	box-shadow: 0 -18px 60px rgba(7, 22, 42, 0.18);
}

.utfo-top {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding: 34px clamp(20px, 2vw, 32px) 28px;
}

.utfo-brand-panel,
.utfo-col {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 24px;
}

.utfo-eyebrow {
	display: inline-block;
	font-size: 12px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #d8af45;
	margin-bottom: 14px;
}

.utfo-brand {
	font-size: clamp(1.9rem, 2.3vw, 2.6rem);
	font-weight: 800;
	line-height: 1.05;
	color: #ffffff;
	margin-bottom: 12px;
}

.utfo-copy,
.utfo-contact-lines p,
.utfo-disclaimer,
.utfo-copyright,
.utfo-links a,
.utfo-utility-links a,
.utfo-pill {
	font-size: 0.98rem;
	line-height: 1.72;
}

.utfo-copy {
	margin: 0 0 14px;
	color: rgba(233, 238, 247, 0.92);
}

.utfo-copy-soft {
	color: rgba(233, 238, 247, 0.74);
}

.utfo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0 18px;
}

.utfo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 18px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: all 0.2s ease;
}

.utfo-btn:hover {
	transform: translateY(-1px);
}

.utfo-btn-gold {
	background: #d7ac41;
	color: #061426 !important;
	box-shadow: 0 14px 28px rgba(215, 172, 65, 0.18);
}

.utfo-btn-outline {
	background: transparent;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.utfo-contact-lines {
	padding-top: 14px;
	margin-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.utfo-contact-lines p {
	margin: 0 0 10px;
	color: rgba(233, 238, 247, 0.88);
}

.utfo-contact-lines p:last-child {
	margin-bottom: 0;
}

.utfo-contact-lines strong {
	color: #ffffff;
}

.utfo-contact-lines a,
.utfo-links a,
.utfo-utility-links a,
.utfo-pill {
	color: rgba(233, 238, 247, 0.9);
	text-decoration: none;
}

.utfo-contact-lines a:hover,
.utfo-links a:hover,
.utfo-utility-links a:hover,
.utfo-pill:hover {
	color: #ffffff;
}

.utfo-col h3 {
	margin: 0 0 14px;
	font-size: 1.16rem;
	line-height: 1.25;
	font-weight: 800;
	color: #ffffff;
}

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

.utfo-links li {
	margin: 0 0 11px;
}

.utfo-links li:last-child {
	margin-bottom: 0;
}

.utfo-links a {
	display: inline-block;
	padding: 2px 0;
}

.utfo-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
	gap: 24px;
	align-items: start;
	padding: 22px clamp(20px, 2vw, 32px) 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(2, 9, 18, 0.14);
}

.utfo-bottom-title {
	margin: 0 0 14px;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #ffffff;
}

.utfo-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.utfo-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	line-height: 1.2;
}

.utfo-bottom-right {
	text-align: right;
}

.utfo-disclaimer {
	margin: 0 0 14px;
	color: rgba(233, 238, 247, 0.78);
}

.utfo-utility-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: flex-end;
	margin-bottom: 12px;
}

.utfo-copyright {
	color: rgba(233, 238, 247, 0.66);
}

@media (max-width: 1200px) {
	.utfo-top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.utfo-brand-panel {
		grid-column: 1 / -1;
	}

	.utfo-bottom {
		grid-template-columns: 1fr;
	}

	.utfo-bottom-right {
		text-align: left;
	}

	.utfo-utility-links {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.utfo-shell {
		width: min(100vw - 12px, 100%);
		border-radius: 24px 24px 0 0;
	}

	.utfo-top,
	.utfo-bottom {
		padding-left: 16px;
		padding-right: 16px;
	}

	.utfo-top {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 22px;
	}

	.utfo-brand-panel,
	.utfo-col {
		padding: 20px;
		border-radius: 20px;
	}

	.utfo-actions {
		flex-direction: column;
	}

	.utfo-btn {
		width: 100%;
	}

	.utfo-pill-row {
		gap: 8px;
	}

	.utfo-pill {
		width: 100%;
		justify-content: flex-start;
	}
}
