.footer {
	background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
	color: var(--white);
	padding: 0 0 2rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.5) 50%, transparent 100%);
}

.footer-wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	overflow: hidden;
	line-height: 0;
	transform: translateY(-99%);
}

.footer-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 120px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 4rem;
	padding: 5rem 0 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1;
}

.footer-brand-section {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo {
	font-family: var(--font-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.02em;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-logo img {
	height: 60px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 10px rgba(139, 92, 246, 0.3));
}

.footer-tagline {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	font-size: 0.9375rem;
	max-width: 320px;
}

.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 0.5rem;
}

.social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border-color: rgba(139, 92, 246, 0.5);
	color: var(--white);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.footer-links-section h4,
.footer-contact-section h4 {
	font-family: var(--font-serif);
	font-size: 1.125rem;
	color: var(--white);
	margin-bottom: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.footer-links-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.footer-links-section ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
	padding-left: 1.25rem;
}

.footer-links-section ul li a::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #8b5cf6;
	opacity: 0;
	transform: translateX(-5px);
	transition: all 0.3s ease;
}

.footer-links-section ul li a:hover {
	color: var(--white);
	padding-left: 1.5rem;
}

.footer-links-section ul li a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-contact-list li {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer-contact-list li svg {
	flex-shrink: 0;
	margin-top: 0.2rem;
	color: #8b5cf6;
}

.footer-contact-list li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
	color: var(--white);
}

.footer-bottom {
	padding-top: 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	margin: 0;
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--white);
}

.footer-legal .separator {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.75rem;
}

.footer-badges {
	display: flex;
	gap: 1.5rem;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 1.25rem;
	background: rgba(139, 92, 246, 0.08);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8125rem;
	font-weight: 600;
}

.trust-badge svg {
	color: #8b5cf6;
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
	
	.footer-brand-section {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding: 4rem 0 2.5rem;
	}
	
	.footer-brand-section {
		text-align: center;
		align-items: center;
	}
	
	.social-link {
		width: 40px;
		height: 40px;
	}
	
	.social-link svg {
		width: 16px;
		height: 16px;
	}
	
	.footer-contact-list li {
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
	}
	
	.footer-contact-list li svg {
		margin-top: 0;
	}
}

@media (max-width: 640px) {
	.footer-links-section h4,
	.footer-contact-section h4 {
		font-size: 0.9375rem;
	}
	
	.footer-links-section ul li a,
	.footer-contact-list li {
		font-size: 0.8125rem;
	}
	
	.footer-contact-list li svg {
		width: 16px;
		height: 16px;
	}
	
	.trust-badge {
		font-size: 0.6875rem;
		padding: 0.4rem 0.875rem;
	}
	
	.trust-badge svg {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 2rem 0 1rem;
	}
	
	.footer-main {
		padding: 3rem 0 2rem;
	}
	
	.footer-logo img {
		height: 45px;
	}
	
	.footer-tagline {
		font-size: 0.875rem;
	}
}

@media (max-width: 360px) {
	.footer-logo {
		font-size: 1.5rem;
	}
	
	.footer-logo img {
		height: 40px;
	}
}
