.absolute-footer {
	display: none !important;
}
.lnm-footer-wrap {
	--lnm-bg-1: #061326;
	--lnm-bg-2: #081a33;
	--lnm-card: rgba(12, 24, 48, 0.72);
	--lnm-border: rgba(255, 255, 255, 0.08);
	--lnm-text: #d9e7ff;
	--lnm-muted: #8ea6c9;
	--lnm-title: #ffffff;
	--lnm-accent: #22e56f;
	--lnm-accent-2: #20c9ff;
	--lnm-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
	--lnm-radius: 28px;

	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 18%, rgba(32, 201, 255, 0.10), transparent 24%),
		radial-gradient(circle at 84% 18%, rgba(34, 229, 111, 0.12), transparent 24%),
		linear-gradient(135deg, var(--lnm-bg-1), var(--lnm-bg-2));
	color: var(--lnm-text);
	padding: 72px 26px 28px;
	box-shadow: var(--lnm-shadow);
	border: 1px solid rgba(255,255,255,0.04);
	isolation: isolate;
}

.lnm-footer-bg-blur {
	position: absolute;
	border-radius: 50%;
	filter: blur(55px);
	opacity: 0.55;
	pointer-events: none;
	z-index: 0;
	animation: lnmFloat 7s ease-in-out infinite;
}

.lnm-footer-bg-blur.blur-1 {
	width: 240px;
	height: 240px;
	background: rgba(34, 229, 111, 0.15);
	top: -60px;
	left: -60px;
}

.lnm-footer-bg-blur.blur-2 {
	width: 260px;
	height: 260px;
	background: rgba(32, 201, 255, 0.12);
	right: -90px;
	bottom: -80px;
	animation-delay: 1.5s;
}

@keyframes lnmFloat {
	0%, 100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(0, -12px, 0) scale(1.05);
	}
}

.lnm-footer-grid,
.lnm-footer-bottom {
	position: relative;
	z-index: 2;
}

.lnm-footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1fr;
	gap: 38px;
	align-items: start;
}

.lnm-brand-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.lnm-brand-logo {
	width: 115px;
	height: auto;
	min-width: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	overflow: hidden;
}

.lnm-brand-logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.lnm-brand-name {
	font-size: 28px;
	line-height: 1.1;
	font-weight: 800;
	font-style: italic;
	letter-spacing: -0.02em;
	color: var(--lnm-title);
	text-transform: uppercase;
}

.lnm-brand-desc,
.lnm-subscribe-text,
.lnm-contact-text {
	color: var(--lnm-muted);
	font-size: 17px;
	line-height: 1.8;
}

.lnm-footer-title {
	position: relative;
	font-size: 20px;
	line-height: 1.2;
	color: var(--lnm-title);
	font-weight: 700;
	margin: 0 0 28px;
}

.lnm-footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 38px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--lnm-accent), var(--lnm-accent-2));
	box-shadow:
		0 0 18px rgba(34,229,111,0.35),
		0 0 24px rgba(32,201,255,0.18);
}

.lnm-socials {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.lnm-social-item {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	position: relative;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow:
		0 12px 24px rgba(0,0,0,0.22),
		inset 0 1px 0 rgba(255,255,255,0.05);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	overflow: hidden;
}

.lnm-social-item::before {
	content: "";
	position: absolute;
	inset: -35%;
	background: radial-gradient(circle, rgba(34,229,111,0.28), rgba(32,201,255,0.14), transparent 64%);
	opacity: 0;
	transition: opacity .35s ease, transform .35s ease;
	transform: scale(.75);
}

.lnm-social-item:hover {
	transform: translateY(-6px);
	border-color: rgba(34,229,111,0.25);
	box-shadow:
		0 18px 34px rgba(0,0,0,0.34),
		0 0 24px rgba(34,229,111,0.18);
}

.lnm-social-item:hover::before {
	opacity: 1;
	transform: scale(1);
}

.lnm-social-inner {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lnm-social-inner svg,
.lnm-social-inner img {
	width: 22px;
	height: 22px;
	display: block;
}

.lnm-social-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lnm-accent), var(--lnm-accent-2));
	box-shadow: 0 0 18px rgba(34,229,111,.55);
}

.lnm-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lnm-footer-links li + li {
	margin-top: 14px;
}

.lnm-footer-links a {
	color: var(--lnm-text);
	text-decoration: none;
	font-size: 17px;
	line-height: 1.7;
	position: relative;
	display: inline-flex;
	align-items: center;
	transition: color .3s ease, transform .3s ease;
}

.lnm-footer-links a::before {
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: -3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--lnm-accent), var(--lnm-accent-2));
	transition: width .35s ease;
}

.lnm-footer-links a:hover {
	color: #fff;
	transform: translateX(5px);
}

.lnm-footer-links a:hover::before {
	width: 100%;
}

.lnm-contact-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.lnm-contact-item {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 14px;
	align-items: start;
}

.lnm-contact-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
		linear-gradient(135deg, rgba(34,229,111,.12), rgba(32,201,255,.08));
	border: 1px solid rgba(255,255,255,.08);
	box-shadow:
		0 10px 24px rgba(0,0,0,.22),
		0 0 16px rgba(34,229,111,.08);
	transition: transform .3s ease, box-shadow .3s ease;
	overflow: hidden;
}

.lnm-contact-item:hover .lnm-contact-icon {
	transform: translateY(-3px);
	box-shadow:
		0 14px 30px rgba(0,0,0,.26),
		0 0 24px rgba(34,229,111,.14);
}

.lnm-contact-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.lnm-contact-fallback {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lnm-accent), var(--lnm-accent-2));
}

.lnm-subscribe-form {
	display: flex;
	align-items: center;
	margin-top: 22px;
	border-radius: 18px;
	background: rgba(12, 24, 48, 0.55);
	border: 1px solid rgba(255,255,255,0.08);
	overflow: hidden;
	box-shadow:
		0 16px 30px rgba(0,0,0,0.24),
		inset 0 1px 0 rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
}

.lnm-subscribe-form input {
	flex: 1;
	height: 50px !important;
	background: transparent;
	border: 0;
	outline: none;
	padding: 0 18px;
	color: #fff;
	font-size: 16px;
	margin: 0 !important;
}

.lnm-subscribe-form input::placeholder {
	color: #7f97bb;
}

.lnm-subscribe-form button {
	width: 66px;
	height: 50px;
	min-height: unset;
	border: 0;
	margin: 0 !important;
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	background: linear-gradient(135deg, var(--lnm-accent), #0ccf58);
	box-shadow:
		0 10px 26px rgba(34,229,111,0.28),
		inset 0 1px 0 rgba(255,255,255,0.18);
	transition: transform .3s ease, filter .3s ease;
}

.lnm-subscribe-form button:hover {
	transform: scale(1.04);
	filter: brightness(1.06);
}

.lnm-send-icon {
	display: inline-block;
	transform: rotate(-20deg);
}

.lnm-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	margin-top: 54px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.lnm-footer-copy,
.lnm-footer-policy a {
	color: #7692bc;
	font-size: 15px;
	text-decoration: none;
}

.lnm-footer-policy {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.lnm-footer-policy a:hover {
	color: #dce8ff;
}

.lnm-call-float {
	position: fixed;
	right: 22px;
	bottom: 15%;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	z-index: 99999999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #1fe06a, #12c85a);
	box-shadow:
		0 16px 34px rgba(31, 224, 106, 0.35),
		0 6px 16px rgba(0,0,0,0.25);
	transition: transform .3s ease, box-shadow .3s ease;
}

.lnm-call-float:hover {
	transform: translateY(-4px) scale(1.03);
	box-shadow:
		0 20px 40px rgba(31, 224, 106, 0.4),
		0 10px 22px rgba(0,0,0,0.3);
}

.lnm-call-float-icon {
	position: relative;
	z-index: 2;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	animation: lnmPhoneShake 2.1s ease-in-out infinite;
}

.lnm-call-float-icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.lnm-call-float-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid rgba(31, 224, 106, 0.35);
	animation: lnmPulseRing 2s infinite;
}

@keyframes lnmPulseRing {
	0% {
		transform: scale(.9);
		opacity: .8;
	}
	70% {
		transform: scale(1.35);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@keyframes lnmPhoneShake {
	0%, 100% { transform: rotate(0deg); }
	10% { transform: rotate(-12deg); }
	20% { transform: rotate(10deg); }
	30% { transform: rotate(-8deg); }
	40% { transform: rotate(6deg); }
	50% { transform: rotate(0deg); }
}

.lnm-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s ease, transform .7s ease;
}

.lnm-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1199px) {
	.lnm-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 34px 28px;
	}

	.lnm-brand-name {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.lnm-footer-wrap {
		padding: 42px 18px 22px;
		border-radius: 22px;
	}

	.lnm-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lnm-brand-head {
		margin-bottom: 18px;
	}

	.lnm-brand-name {
		font-size: 22px;
	}

	.lnm-footer-title {
		font-size: 19px;
		margin-bottom: 24px;
	}

	.lnm-brand-desc,
	.lnm-subscribe-text,
	.lnm-contact-text,
	.lnm-footer-links a {
		font-size: 15px;
		line-height: 1.7;
	}

	.lnm-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 34px;
		gap: 14px;
	}

	.lnm-footer-policy {
		gap: 14px;
	}

	.lnm-subscribe-form input {
		font-size: 15px;
		height: 56px;
	}

	.lnm-subscribe-form button {
		width: 58px;
		height: 56px !important;
	}

	.lnm-social-item {
		width: 46px;
		height: 46px;
	}

	.lnm-contact-item {
		grid-template-columns: 40px 1fr;
	}

	.lnm-contact-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.lnm-call-float {
		width: 58px;
		height: 58px;
		right: 16px;
		bottom: 16px;
	}

	.lnm-call-float-icon,
	.lnm-call-float-icon svg {
		width: 24px;
		height: 24px;
	}
}