.site-footer,
.mobile-cta {
	--ft-ink: #07111f;
	--ft-orange: #f26622;
	--ft-orange-dark: #d94d0b;
	--ft-paper: #ffffff;
	--ft-shell: min(1180px, calc(100% - 40px));
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after,
.mobile-cta,
.mobile-cta *,
.mobile-cta *::before,
.mobile-cta *::after {
	box-sizing: border-box;
}

.site-footer {
	background: #050c15;
	color: #94a2b2;
	padding: 70px 0 26px;
	position: relative;
}

body.foxtele-shared-header-page > .site-footer {
	margin-inline: 0;
	max-width: none;
	width: 100%;
}

.site-footer .site-shell {
	margin-inline: auto;
	width: var(--ft-shell);
}

.site-footer img {
	display: block;
	max-width: 100%;
}

.site-footer a,
.mobile-cta a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.site-footer .brand {
	align-items: center;
	color: var(--ft-paper);
	display: inline-flex;
	font-size: 1.45rem;
	font-weight: 820;
	gap: 10px;
	letter-spacing: -0.05em;
}

.site-footer .brand img {
	height: 40px;
	object-fit: contain;
	width: 40px;
}

.site-footer .brand > span > span {
	color: var(--ft-orange);
}

.site-footer .button,
.mobile-cta .button {
	align-items: center;
	background: var(--ft-orange);
	border: 1px solid var(--ft-orange);
	border-radius: 999px;
	color: var(--ft-paper) !important;
	display: inline-flex;
	font-size: 0.94rem;
	font-weight: 760;
	gap: 9px;
	justify-content: center;
	line-height: 1.1;
	min-height: 52px;
	padding: 16px 24px;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer .button:hover,
.mobile-cta .button:hover {
	background: var(--ft-orange-dark);
	border-color: var(--ft-orange-dark);
	transform: translateY(-2px);
}

.site-footer .button--small {
	min-height: 42px;
	padding: 12px 19px;
}

.mobile-cta .button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
}

.mobile-cta .button--ghost:hover {
	background: var(--ft-paper);
	border-color: var(--ft-paper);
	color: var(--ft-ink) !important;
}

.site-footer__top {
	display: grid;
	gap: clamp(28px, 3vw, 45px);
	grid-template-columns: minmax(240px, 1.65fr) repeat(3, minmax(112px, 0.82fr)) minmax(175px, 1.1fr);
	padding-bottom: 60px;
}

.brand--footer {
	margin-bottom: 20px;
}

.site-footer__brand p {
	font-size: 0.82rem;
	margin: 0;
	max-width: 330px;
}

.site-footer h2 {
	color: var(--ft-paper);
	font-family: inherit;
	font-size: 0.77rem;
	font-weight: 760;
	letter-spacing: 0.08em;
	line-height: 1.08;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.site-footer__top > div:not(.site-footer__brand) > a:not(.button) {
	display: block;
	font-size: 0.79rem;
	font-weight: 400;
	margin-bottom: 10px;
}

.site-footer__top > div:not(.site-footer__brand) > a:not(.button):hover {
	color: var(--ft-paper);
}

.site-footer__support a:not(.button) {
	overflow-wrap: anywhere;
}

.site-footer__support .site-footer__support-cta {
	font-size: 0.74rem;
	margin-top: 10px;
	max-width: 100%;
	min-height: 40px;
	padding: 11px 16px;
	white-space: nowrap;
	width: fit-content;
}

.site-footer__support .site-footer__support-cta:hover {
	transform: translateY(-1px);
}

.site-footer a:focus-visible,
.mobile-cta a:focus-visible {
	outline: 3px solid #ffb188;
	outline-offset: 4px;
}

.site-footer__support a:not(.button):focus-visible {
	color: var(--ft-paper);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.site-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	font-size: 0.67rem;
	gap: 30px;
	justify-content: space-between;
	padding-top: 24px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom p:last-child {
	max-width: 620px;
	text-align: right;
}

.mobile-cta {
	display: none;
}

@media (max-width: 1050px) {
	.site-footer__top {
		gap: 40px 32px;
		grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(150px, 1fr));
	}

	.site-footer__top > div:last-child {
		grid-column: auto;
	}
}

@media (max-width: 680px) {
	.site-footer,
	.mobile-cta {
		--ft-shell: min(100% - 28px, 1180px);
	}

	.site-footer__top {
		gap: 34px;
		grid-template-columns: 1fr;
	}

	.site-footer__brand,
	.site-footer__top > div:last-child {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__bottom p:last-child {
		text-align: left;
	}

	.mobile-cta {
		align-items: center;
		background: rgba(7, 17, 31, 0.97);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		bottom: 0;
		display: grid;
		gap: 8px;
		grid-template-columns: 0.8fr 1.2fr;
		left: 0;
		padding: 9px 12px;
		position: fixed;
		right: 0;
		z-index: 998;
	}

	.mobile-cta .button {
		min-height: 47px;
		padding: 13px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-footer *,
	.site-footer *::before,
	.site-footer *::after,
	.mobile-cta *,
	.mobile-cta *::before,
	.mobile-cta *::after {
		transition-duration: 0.01ms !important;
	}
}
