.footer {
	background: #665E8D;
}

.footer-gradient {
	height: 3px;
	background: var(--gradient);
}

.footer-content {
	padding: 40px 40px 20px;
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 24px;
}

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

.footer-brand .logo {
	height: 40px;
	width: 40px;
	border-radius: 8px;
}

.footer-brand span {
	color: #fff;
	font-weight: 600;
	font-size: 0.95rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	transition: var(--transition);
}

.footer-links a:hover {
	color: #fff;
}

.footer-social {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 0.85rem;
	transition: var(--transition);
}

.footer-social a svg {
	width: 16px;
	height: 16px;
	fill: white;
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 40px;
	text-align: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

/* Fix footer logo (replaces inline style="height: 40px; width: auto; border-radius: 8px") */
.footer-brand .logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}