.site-footer {
	position: relative;
	padding: 26px 20px 28px;
	background:
		linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.035) 18%, rgba(255, 255, 255, 0.08) 100%),
		radial-gradient(circle at 18% 0%, rgba(198, 164, 59, 0.16), transparent 34%);
	overflow: hidden;
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 62%;
	background: #f7f7fb;
	clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
	opacity: 0.96;
}

.footer-shell {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 1160px);
	margin: 0 auto;
	padding: 24px;
	display: grid;
	grid-template-columns: 1.35fr 0.85fr 0.85fr 1.1fr;
	gap: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 32px;
	background:
		radial-gradient(circle at 10% 10%, rgba(198, 164, 59, 0.14), transparent 34%),
		linear-gradient(145deg, rgba(36, 37, 57, 0.94), rgba(25, 27, 48, 0.9));
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
}

.footer-card {
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.035);
}

.footer-logo {
	width: 72px;
	height: 72px;
	margin-bottom: 16px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.footer-logo img {
	max-width: 52px;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.footer-card h3 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
}

.footer-brand p,
.footer-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 2;
}

.footer-card ul {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	list-style: none;
}

.footer-card li a {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	transition: color 0.25s ease, transform 0.25s ease;
}

.footer-card li a:hover {
	color: #f6d875;
	transform: translateX(-4px);
}

.footer-socials {
	margin-top: 20px;
	display: flex;
	gap: 10px;
}

.footer-socials a {
	padding: 10px 14px;
	border: 1px solid rgba(198, 164, 59, 0.3);
	border-radius: 999px;
	background: rgba(198, 164, 59, 0.08);
	color: #f6d875;
	font-size: 13px;
	font-weight: 900;
}

.footer-cta {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(198, 164, 59, 0.08));
}

.footer-cta span {
	display: inline-grid;
	place-items: center;
	margin-bottom: 12px;
	padding: 7px 13px;
	border-radius: 999px;
	background: #fff;
	color: #242539;
	font-size: 12px;
	font-weight: 900;
}

.footer-cta a {
	min-height: 46px;
	margin-top: 18px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: linear-gradient(145deg, #ffe56b, #C6A43B);
	color: #1d1604;
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 12px 30px rgba(198, 164, 59, 0.26);
}

.footer-bottom {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 1160px);
	margin: 16px auto 0;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.footer-bottom small {
	color: #242539;
	font-weight: 800;
}

.footer-bottom div {
	display: flex;
	gap: 8px;
}

.footer-bottom span {
	padding: 7px 11px;
	border-radius: 999px;
	background: #242539;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

@media (max-width: 980px) {
	.footer-shell {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 620px) {
	.footer-shell {
		width: min(100% - 28px, 1160px);
		padding: 14px;
		grid-template-columns: 1fr;
		border-radius: 26px;
	}

	.footer-bottom {
		width: min(100% - 28px, 1160px);
		align-items: flex-start;
		flex-direction: column;
		border-radius: 22px;
	}
}
