.site-footer {
	margin-top: 34px;
	padding: 42px 0 22px;
	background: rgba(255, 250, 241, 0.82);
	border-top: 1px solid var(--color-border);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.footer-brand,
.footer-contact,
.footer-powered {
	height: 100%;
	min-height: 150px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(31, 95, 80, 0.12);
	border-radius: 18px;
	box-shadow: 0 12px 28px rgba(31, 95, 80, 0.08);
	backdrop-filter: blur(10px);
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.footer-brand:hover,
.footer-contact:hover,
.footer-powered:hover {
	transform: translateY(-2px);
	border-color: rgba(201, 107, 29, 0.25);
	box-shadow: 0 18px 38px rgba(201, 107, 29, 0.12);
}

.footer-brand {
	display: flex;
	gap: 18px;
	align-items: center;
}

.footer-brand img {
	max-height: 90px;
	object-fit: cover;
	border-radius: 20%;
	flex-shrink: 0;
}

.footer-brand strong {
	display: block;
	color: var(--color-orange);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.footer-brand small {
	display: block;
	margin-top: 5px;
	color: var(--color-green);
	font-weight: 900;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.footer-brand p {
	margin: 14px 0 0;
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.7;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.footer-contact p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 10px 0;
	color: var(--color-muted);
	font-size: 15px;
}

.footer-contact i {
	width: 20px;
	color: var(--color-green);
	font-size: 18px;
}

.footer-powered {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 8px;
}

.softgr-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-decoration: none;
}

.softgr-logo {
	display: block;
	width: 100%;
	max-height: 90px;
	object-fit: contain;
	transition: transform .2s ease;
}

.softgr-logo:hover {
	transform: scale(1.03);
}

.footer-powered .subtitle {
	display: block;
	color: var(--color-green);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-powered .extra {
	display: block;
	max-width: 260px;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.5;
}

.footer-copy {
	margin-top: 28px;
	color: var(--color-muted);
	font-size: 13px;
	text-align: center;
}

@media (max-width: 1000px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.footer-brand,
	.footer-contact,
	.footer-powered {
		height: auto;
		min-height: auto;
	}

	.footer-brand {
		flex-direction: column;
		text-align: center;
	}

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

	.softgr-logo {
		/*max-width: 240px;*/
	}
}