/* ── Download Hero ────────────────────────────────────── */
.DL-Hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 1.5rem 3rem;
	gap: 1.2rem;
}
.DL-Title {
	font-size: clamp(2rem, 6vw, 64px);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
	text-align: center;
}
.Btn-DetectSystem {
	display: inline-block;
	text-decoration: none;
	color: #000;
	background: #f0f1ef;
	border: none;
	border-radius: 999px;
	padding: 0.45rem 1.6rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	cursor: pointer;
	transition: opacity 0.2s;
}
.Btn-DetectSystem:hover { opacity: 0.85; }

/* ── Platform of Choice ───────────────────────────────── */
.DL-Platform {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 2rem 4rem;
}
.DL-Platform-Title {
	font-size: clamp(1.6rem, 4vw, 48px);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.2;
	margin: 0 0 2rem;
}
.DL-Platform-Buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
}
.Btn-Platform {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: #000;
	background: #f0f1ef;
	border: 2px solid #ccc;
	border-radius: 6px;
	padding: 0.45rem 1.4rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	min-width: 160px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.Btn-Platform:hover { opacity: 0.85; }
.Platform-Icon { height: 56px; width: auto; object-fit: contain; }
.Btn-Platform  { width: 280px; justify-content: center; padding: 0.75rem 1.4rem; }

/* Stacked mockup screenshots (right side of platform section) */
.DL-Platform-Right {
	display: flex;
	justify-content: center;
}
.DL-Mockup-Stack {
	position: relative;
	width: 260px;
	height: 340px;
}
.DL-Mockup {
	position: absolute;
	border-radius: 8px;
}
.DL-Mockup-Back {
	width: 220px;
	height: 280px;
	background: linear-gradient(135deg, #6b4fbb 0%, #3a2a88 100%);
	top: 0;
	right: 0;
}
.DL-Mockup-Front {
	width: 200px;
	height: 260px;
	background: linear-gradient(135deg, #245393 0%, #1a3a70 100%);
	bottom: 0;
	left: 0;
	box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── Mobile Support ───────────────────────────────────── */
.DL-Mobile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 2rem 4rem;
}
.DL-Mobile-Title {
	font-size: clamp(1.1rem, 3vw, 29.33px);
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 1.2rem;
	-webkit-text-stroke: 1.89px currentColor;
}
/* Phone outline with mockup screens inside */
.DL-Phone {
	width: 160px;
	height: 270px;
	background: #f0f1ef;
	border-radius: 20px;
	padding: 14px 10px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.DL-Phone-Screen {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.DL-Phone-Mock {
	border-radius: 4px;
	background: #245393;
}
.DL-Phone-Mock-Top { flex: 2; }
.DL-Phone-Mock-Bot { flex: 1; align-self: flex-end; width: 70%; }

.DL-Mobile-Text {
	font-size: clamp(0.9rem, 2vw, 20px);
	line-height: 1.5;
	margin: 0 0 1.5rem;
}
.DL-Store-Buttons {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	align-items: flex-start;
}
.Btn-Store {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #000;
	background: #f0f1ef;
	border: 2px solid #ccc;
	border-radius: 999px;
	padding: 0.45rem 1.4rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	min-width: 160px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.Btn-Store:hover { opacity: 0.85; }
.Store-Icon { font-size: 0.9rem; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 700px) {
	.DL-Platform,
	.DL-Mobile {
		grid-template-columns: 1fr;
	}
	.DL-Platform-Right { justify-content: flex-start; }
}