/* Footer 2026 - Optimized Simple Design */
:root {
	--footer-text: #e8ecf4;
	--footer-accent: #4f7cff;
}

.nebula-footer-2026 {
	position: relative;
	width: 100%;
	color: var(--footer-text);
	margin-top: auto;
	overflow: hidden;
	border-top: 1px solid rgba(232, 236, 244, 0.08);
}

.nebula-footer-2026::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
	opacity: 0.3;
}

.nebula-footer-2026__container {
	max-width: 1280px;
	margin-inline: auto;
	padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
	width: 100%;
	box-sizing: border-box;
}

.nebula-footer-2026__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 5vw, 48px);
	margin-bottom: clamp(32px, 5vw, 48px);
}

@media (min-width: 768px) {
	.nebula-footer-2026__top {
		grid-template-columns: 1.2fr 1.8fr;
		align-items: start;
	}
}

.nebula-footer-2026__brand {
	display: grid;
	gap: 18px;
	padding: clamp(16px, 2.5vw, 24px);
	border-left: 2px solid rgba(79, 124, 255, 0.2);
	padding-left: clamp(20px, 3vw, 28px);
}

.nebula-footer-2026__logo-link {
	display: inline-block;
}

.nebula-footer-2026__logo-link:hover {
	opacity: 0.85;
}

.nebula-footer-2026__logo {
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.nebula-footer-2026__logo-text {
	font-size: clamp(1.5rem, 2.6vw, 1.95rem);
	font-weight: 800;
	color: var(--footer-text);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.nebula-footer-2026__logo-text:hover {
	color: var(--footer-accent);
}

.nebula-footer-2026__description {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(232, 236, 244, 0.75);
	max-width: 480px;
}

.nebula-footer-2026__columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: clamp(28px, 4vw, 44px);
}

.nebula-footer-2026__column {
	display: grid;
	gap: 18px;
	padding-top: clamp(12px, 2vw, 20px);
	border-top: 1px solid rgba(232, 236, 244, 0.06);
}

.nebula-footer-2026__column-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--footer-text);
	letter-spacing: -0.01em;
}

.nebula-footer-2026__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.nebula-footer-2026__menu li {
	margin: 0;
}

.nebula-footer-2026__menu a {
	display: inline-block;
	color: rgba(232, 236, 244, 0.8);
	text-decoration: none;
	font-size: 1.05rem;
	line-height: 1.65;
	padding: 5px 0;
	position: relative;
}

.nebula-footer-2026__menu a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--footer-accent);
}

.nebula-footer-2026__menu a:hover {
	color: var(--footer-text);
}

.nebula-footer-2026__menu a:hover::before {
	width: 100%;
}

.nebula-footer-2026__social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	padding: clamp(28px, 4vw, 36px) 0;
	border-top: 1px solid rgba(232, 236, 244, 0.08);
	border-bottom: 1px solid rgba(232, 236, 244, 0.08);
	margin-bottom: clamp(28px, 4vw, 36px);
}

.nebula-footer-2026__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(79, 124, 255, 0.12);
	border: 1px solid rgba(79, 124, 255, 0.25);
	color: var(--footer-text);
	text-decoration: none;
}

.nebula-footer-2026__social-link:hover,
.nebula-footer-2026__social-link:focus {
	background: var(--footer-accent);
	border-color: var(--footer-accent);
	color: #ffffff;
}

.nebula-footer-2026__social-link svg {
	width: 21px;
	height: 21px;
}

.nebula-footer-2026__bottom {
	text-align: center;
	padding-top: clamp(24px, 3vw, 32px);
	border-top: 1px solid rgba(232, 236, 244, 0.08);
}

.nebula-footer-2026__copyright {
	margin: 0;
	font-size: 0.98rem;
	color: rgba(232, 236, 244, 0.65);
	line-height: 1.65;
}

/* Modern Style */
.nebula-footer-2026--modern {
	background: linear-gradient(180deg, #0a0e27 0%, #0f1528 100%);
}

.nebula-footer-2026--modern::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(79, 124, 255, 0.08) 0%, transparent 50%),
	            radial-gradient(circle at 80% 50%, rgba(79, 124, 255, 0.06) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.nebula-footer-2026--modern .nebula-footer-2026__container {
	position: relative;
	z-index: 1;
}

/* Minimal Style */
.nebula-footer-2026--minimal {
	background: #0a0e27;
}

.nebula-footer-2026--minimal .nebula-footer-2026__social-link {
	background: rgba(232, 236, 244, 0.06);
	border-color: rgba(232, 236, 244, 0.12);
}

.nebula-footer-2026--minimal .nebula-footer-2026__social-link:hover {
	background: rgba(79, 124, 255, 0.18);
	border-color: var(--footer-accent);
}

/* Gradient Style */
.nebula-footer-2026--gradient {
	position: relative;
}

.nebula-footer-2026--gradient::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(79, 124, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(79, 124, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

.nebula-footer-2026--gradient .nebula-footer-2026__container {
	position: relative;
	z-index: 1;
}

/* Mobile Styles */
@media (max-width: 767px) {
	.nebula-footer-2026__container {
		padding: 44px 22px;
	}
	
	.nebula-footer-2026__top {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.nebula-footer-2026__columns {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.nebula-footer-2026__social {
		justify-content: flex-start;
		gap: 12px;
	}
	
	.nebula-footer-2026__social-link {
		width: 42px;
		height: 42px;
	}
	
	.nebula-footer-2026__social-link svg {
		width: 19px;
		height: 19px;
	}
}
