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

.lm-feat-wrapper {
	background-color: #0d0d0d;
	padding: 100px 40px;
	position: relative;
	overflow: hidden;
	font-family: 'DM Sans', sans-serif;
}

/* Drifting Orbs */
.lm-feat-bg-orbs {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.lm-feat-orb {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
}
.lm-feat-orb--1 {
	top: -5%;
	left: -5%;
	background: radial-gradient(circle, #6c63ff 0%, transparent 70%);
}
.lm-feat-orb--2 {
	bottom: -5%;
	right: -5%;
	background: radial-gradient(circle, #00d4aa 0%, transparent 70%);
}
.lm-drifting {
	animation: lm-drift 20s linear infinite;
}

.lm-feat-header {
	max-width: 1200px;
	margin: 0 auto 56px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 10;
}
.lm-feat-heading {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.02em;
}

/* Nav Arrows */
.lm-feat-nav {
	display: flex;
	gap: 12px;
}
.lm-feat-arrow {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s var(--lm-ease-out);
}
.lm-feat-arrow:hover {
	background: #6c63ff;
	border-color: #6c63ff;
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(108,99,255,0.4);
}

/* Slider & Cards */
.lm-feat-slider {
	display: flex;
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 30px;
	scrollbar-width: none;
	position: relative;
	z-index: 10;
}
.lm-feat-slider::-webkit-scrollbar { display: none; }

.lm-feat-card {
	flex: 0 0 calc(33.333% - 16px);
	scroll-snap-align: start;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 32px;
	padding: 40px;
	backdrop-filter: blur(16px);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	overflow: hidden;
}
.lm-feat-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: var(--lm-feat-accent, #6c63ff);
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.lm-feat-card-icon-wrap {
	justify-content: center;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lm-feat-card:hover .lm-feat-card-icon-wrap {
	transform: rotate(360deg) scale(1.1);
}
.lm-feat-card-icon-wrap i {
	font-size: 26px;
	color: var(--lm-feat-accent, #6c63ff);
}

.lm-feat-card-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}
.lm-feat-card-desc {
	font-size: 15px;
	color: #9ca3af;
	line-height: 1.7;
	margin: 0;
	flex: 1;
}

/* Image area */
.lm-feat-card-img-wrap {
	margin-top: 14px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	height: 200px;
}
.lm-feat-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.lm-feat-card:hover .lm-feat-card-img-wrap img {
	transform: scale(1.15);
}
.lm-feat-card-img-placeholder {
	height: 100%;
	background: linear-gradient(135deg, rgba(108,99,255,0.1), transparent);
	border-radius: 20px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
	.lm-feat-wrapper { padding: 60px 20px; }
	.lm-feat-card    { flex: 0 0 300px; }
}
