/* ═══════════════════════════════════════
   MARKET FEATURES + EXTRA SECTIONS
   ═══════════════════════════════════════ */
.dmf-section {
	background: #0a0a0a;
	padding: 0 0 64px;
	margin: 0 -15px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.dmf-container {
	max-width: none;
	padding: 0 16px;
}

.dmf-title {
	font-weight: 700;
	font-size: 28px;
	color: #eaecf0;
	text-align: left;
	margin: 0 0 12px;
	letter-spacing: -0.3px;
}

.dmf-subtitle {
	font-size: 15px;
	color: #94a3b8;
	text-align: left;
	margin: 0 0 40px;
	max-width: 620px;
	line-height: 1.6;
}

.dmf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.dmf-card {
	background: rgba(124, 171, 5, 0.03);
	border: 1px solid rgba(124, 171, 5, 0.12);
	border-radius: 14px;
	padding: 28px 24px;
	transition: all 0.2s ease;
}

.dmf-card:hover {
	background: rgba(124, 171, 5, 0.06);
	border-color: rgba(124, 171, 5, 0.3);
}

.dmf-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(124, 171, 5, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #7CAB05;
	font-size: 16px;
}

.dmf-card h4 {
	font-weight: 600;
	font-size: 16px;
	color: #eaecf0;
	margin: 0 0 8px;
}

.dmf-card p {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.6;
	margin: 0;
}

/* ── Stats Counter ── */
.dm-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 72px;
}

.dm-stat {
	background: rgba(124, 171, 5, 0.03);
	border: 1px solid rgba(124, 171, 5, 0.12);
	border-radius: 14px;
	padding: 28px 24px;
	text-align: center;
}

.dm-stat-num {
	font-weight: 800;
	font-size: 36px;
	color: #7CAB05;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -1px;
}

.dm-stat-label {
	font-size: 13px;
	color: #94a3b8;
	font-weight: 500;
}

/* ── How It Works (Steps) ── */
.dm-steps {
	margin-top: 72px;
}

.dm-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
	position: relative;
}

.dm-step {
	position: relative;
	text-align: left;
}

.dm-step-num {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(124, 171, 5, 0.1);
	border: 1px solid rgba(124, 171, 5, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	color: #7CAB05;
	margin-bottom: 16px;
}

.dm-step h4 {
	font-weight: 600;
	font-size: 16px;
	color: #eaecf0;
	margin: 0 0 8px;
}

.dm-step p {
	font-size: 13px;
	color: #94a3b8;
	line-height: 1.6;
	margin: 0;
}

/* ── FAQ ── */
.dm-faq {
	margin-top: 72px;
}

.dm-faq-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dm-faq-item {
	background: rgba(124, 171, 5, 0.03);
	border: 1px solid rgba(124, 171, 5, 0.12);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.dm-faq-item:hover {
	border-color: rgba(124, 171, 5, 0.3);
}

.dm-faq-q {
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

.dm-faq-q span {
	font-weight: 600;
	font-size: 15px;
	color: #eaecf0;
}

.dm-faq-q i {
	color: #4b5563;
	font-size: 14px;
	transition: transform 0.25s ease, color 0.2s ease;
}

.dm-faq-item.active .dm-faq-q i {
	transform: rotate(180deg);
	color: #7CAB05;
}

.dm-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.dm-faq-a-inner {
	padding: 0 24px 20px;
	font-size: 14px;
	color: #94a3b8;
	line-height: 1.7;
}

.dm-faq-item.active .dm-faq-a {
	max-height: 300px;
}

/* ── CTA Banner ── */
.dm-cta {
	margin-top: 72px;
	background: rgba(124, 171, 5, 0.05);
	border: 1px solid rgba(124, 171, 5, 0.15);
	border-radius: 16px;
	padding: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.dm-cta-text h3 {
	font-weight: 700;
	font-size: 24px;
	color: #eaecf0;
	margin: 0 0 10px;
	letter-spacing: -0.3px;
}

.dm-cta-text p {
	font-size: 15px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.6;
	max-width: 520px;
}

.dm-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 12px;
	background: #7CAB05;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.dm-cta-btn:hover {
	background: #6a9204;
	box-shadow: 0 0 30px rgba(124, 171, 5, 0.2);
	color: #fff;
	text-decoration: none;
}

/* ── Light Mode ── */
body:not(.darkmode) .dmf-section {
	background: #f8f9fa;
}

body:not(.darkmode) .dmf-title {
	color: #1a1a2e;
}

body:not(.darkmode) .dmf-subtitle {
	color: #4a5568;
}

body:not(.darkmode) .dmf-card,
body:not(.darkmode) .dm-stat,
body:not(.darkmode) .dm-faq-item {
	background: #ffffff;
	border-color: rgba(124, 171, 5, 0.2);
}

body:not(.darkmode) .dmf-card:hover,
body:not(.darkmode) .dm-faq-item:hover {
	background: #f0f2f5;
	border-color: rgba(124, 171, 5, 0.4);
}

body:not(.darkmode) .dmf-card h4,
body:not(.darkmode) .dm-step h4 {
	color: #1a1a2e;
}

body:not(.darkmode) .dmf-card p,
body:not(.darkmode) .dm-step p,
body:not(.darkmode) .dm-stat-label,
body:not(.darkmode) .dm-faq-a-inner {
	color: #4a5568;
}

body:not(.darkmode) .dm-stat-num {
	color: #6a9204;
}

body:not(.darkmode) .dm-step-num {
	background: rgba(124, 171, 5, 0.08);
	color: #6a9204;
}

body:not(.darkmode) .dm-faq-q span {
	color: #1a1a2e;
}

body:not(.darkmode) .dm-cta {
	background: rgba(124, 171, 5, 0.06);
	border-color: rgba(124, 171, 5, 0.2);
}

body:not(.darkmode) .dm-cta-text h3 {
	color: #1a1a2e;
}

body:not(.darkmode) .dm-cta-text p {
	color: #4a5568;
}

body:not(.darkmode) .dm-cta-btn {
	background: #7CAB05;
	color: #fff;
}

body:not(.darkmode) .dmf-card-icon {
	background: rgba(124, 171, 5, 0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.dmf-grid { grid-template-columns: 1fr; gap: 12px; }
	.dmf-section { padding: 0 0 48px; margin: 0 -15px; }
	.dm-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.dm-steps-grid { grid-template-columns: 1fr; gap: 20px; }
	.dm-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
	.dm-cta-text p { max-width: 100%; }
}

@media (min-width: 901px) and (max-width: 1100px) {
	.dmf-grid { grid-template-columns: repeat(2, 1fr); }
	.dm-stats { grid-template-columns: repeat(2, 1fr); }
	.dm-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
