/* ============================================================
   LM CTA Section — Motion & Atmosphere Layer
   ============================================================ */

.lm-cta-wrapper {
	background-color: #0d0d0d;
	padding: 120px 40px;
	position: relative;
	overflow: hidden;
	font-family: 'DM Sans', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Pulsing BG Glow */
.lm-cta-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
	filter: blur(60px);
}

.lm-cta-pattern {
	position: absolute;
	inset: 0;
	color: rgba(108, 99, 255, 0.05);
	z-index: 2;
}

.lm-cta-inner {
	max-width: 900px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	background: rgba(255, 255, 255, 0.01);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 80px 60px;
	border-radius: 48px;
	backdrop-filter: blur(20px);
	transition: all 0.5s var(--lm-ease-out);
}
.lm-cta-inner:hover {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(255, 255, 255, 0.1);
	transform: perspective(1000px) rotateX(2deg);
}

.lm-cta-label {
	display: inline-block;
	color: #00d4aa;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 24px;
	text-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.lm-cta-heading {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 24px;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.lm-cta-desc {
	font-size: 19px;
	color: #9ca3af;
	line-height: 1.6;
	max-width: 640px;
	margin: 0 auto 48px;
}

.lm-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.lm-cta-btn {
	padding: 18px 36px;
	border-radius: 100px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.4s var(--lm-ease-spring);
	position: relative;
}

.lm-cta-btn--primary {
	background: #6c63ff;
	color: #ffffff;
	box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}
.lm-cta-btn--primary:hover {
	background: #5b52e0;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(108, 99, 255, 0.5);
}

.lm-cta-btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.lm-cta-btn--secondary:hover {
	background-color: rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
	.lm-cta-wrapper { padding: 80px 24px; }
	.lm-cta-btn { width: 100%; max-width: 320px; justify-content: center; }
}
