/* ============================================================
   LM FAQ Section — Styles
   ============================================================ */

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

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

/* Decorative Background Character */
.lm-faq-bg-char {
	position: absolute;
	right: -50px;
	bottom: -100px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 500px;
	font-weight: 700;
	color: rgba(108,99,255,0.03);
	line-height: 1;
	pointer-events: none;
	z-index: 1;
}

.lm-faq-header {
	max-width: 800px;
	margin: 0 auto 64px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.lm-faq-label {
	display: inline-block;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6c63ff;
	margin-bottom: 16px;
}
.lm-faq-heading {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.02em;
}

/* Grid */
.lm-faq-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 20px;
	position: relative;
	z-index: 10;
}
.lm-faq-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

/* FAQ Item */
.lm-faq-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lm-faq-item:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.15);
}

.lm-faq-item--open {
	background: rgba(255, 255, 255, 0.05);
	border-color: #6c63ff;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lm-faq-trigger {
	width: 100%;
	padding: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	gap: 24px;
}

.lm-faq-question-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.lm-faq-question {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
}

.lm-faq-badge {
	padding: 4px 12px;
	background: rgba(108, 99, 255, 0.15);
	color: #a89dff;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.3s var(--lm-ease-spring);
}
.lm-faq-item:hover .lm-faq-badge {
	transform: scale(1.1);
	background: #6c63ff;
	color: #ffffff;
}

.lm-faq-chevron {
	color: #6c63ff;
	font-size: 14px;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lm-faq-item--open .lm-faq-chevron {
	transform: rotate(180deg) scale(1.2);
}

.lm-faq-content {
	overflow: hidden;
	transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lm-faq-answer {
	padding: 0 32px 32px;
	font-size: 16px;
	color: #9ca3af;
	line-height: 1.7;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
	.lm-faq-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.lm-faq-wrapper { padding: 80px 20px; }
	.lm-faq-trigger { padding: 24px; }
	.lm-faq-answer { padding: 0 24px 24px; }
	.lm-faq-question { font-size: 17px; }
}
