.market-research-page {
	font-family: inherit;
	max-width: var(--container-max);
	margin: 0 auto;
	color: var(--text);
}

.market-hero {
	background: linear-gradient(
		135deg,
		var(--primary-dark) 0%,
		var(--primary) 100%
	);
	border-radius: var(--radius);
	padding: 5rem 4rem;
	margin-bottom: 4rem;
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.market-hero::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	transform: translate(30%, -30%);
}

.market-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	padding: 0.625rem 1.5rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-hero h2 {
	font-size: 3.5rem;
	font-weight: 800;
	margin: 0 0 2.5rem 0;
	letter-spacing: -0.02em;
	line-height: 1.1;
	font-family: "Poppins", sans-serif;
}

.market-stats {
	margin-bottom: 3rem;
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: inline-grid;
	grid-template-columns: auto auto;
	gap: 3rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.stat-label {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 700;
}

.stat-value {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.2;
}

.market-summary-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	max-width: 80ch;
}

.market-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}

.market-card {
	background: var(--bg-white);
	padding: 3rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.market-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.market-card-header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.market-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.trends .market-icon {
	background: var(--bg);
	color: var(--primary);
	border: 1px solid var(--border-light);
}
.opportunities .market-icon {
	background: #f0fdf4;
	color: #16a34a;
}
.threats .market-icon {
	background: #fff1f2;
	color: #e11d48;
}

.market-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	color: var(--primary-dark);
}

.market-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.market-list li {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
	padding-left: 1.75rem;
	position: relative;
}

.market-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 8px;
	height: 8px;
	border-radius: 2px;
}

.trends .market-list li::before {
	background: var(--primary);
}
.opportunities .market-list li::before {
	background: #22c55e;
}
.threats .market-list li::before {
	background: #ef4444;
}

@media (max-width: 768px) {
	.market-hero {
		padding: 3rem 2rem;
	}
	.market-hero h2 {
		font-size: 2.5rem;
	}
	.market-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		width: 100%;
	}
	.stat-value {
		font-size: 2rem;
	}
}
