.performance-matrix-section {
	--pm-orange: #faa71b;
	--pm-orange-hover: #e59615;
	--pm-white: #ffffff;
	--pm-bg-dark: #0f172a;
	--pm-bg-card: #1e293b;
	--pm-text-light: #f1f5f9;
	--pm-text-muted: #94a3b8;

	background-color: var(--pm-bg-dark);
	background-image: radial-gradient(circle at 50% -20%, rgba(250, 167, 27, 0.1) 0%, transparent 80%);
	padding: 100px 20px;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: var(--pm-text-light);
	overflow-x: hidden;
	overflow-y: visible;
}

.performance-matrix-section * {
	box-sizing: border-box;
}

.matrix-wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.matrix-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px auto;
	animation: pmFadeIn 1s ease-out;
}

.matrix-header h2 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -1px;
	color: var(--pm-text-light);
}

.heat-text {
	color: var(--pm-orange);
	position: relative;
	display: inline-block;
}

.heat-text::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--pm-orange);
	border-radius: 2px;
	animation: pmLinePulse 2s infinite;
}

.matrix-header p {
	color: var(--pm-text-muted);
	font-size: 1.2rem;
	line-height: 1.6;
	margin: 0;
}

.matrix-comparison {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
	justify-content: center;
	padding-bottom: 30px;
}

.matrix-card {
	flex: 1 1 400px;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	display: flex;
	flex-direction: column;
}

.card-standard {
	background: rgba(30, 41, 59, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0;
	animation: pmSlideInLeft 0.8s ease-out 0.2s forwards;
}

.card-standard h3 {
	color: var(--pm-text-muted);
	font-weight: 600;
	font-size: 1.2rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-desert {
	background: var(--pm-bg-card);
	border: 2px solid var(--pm-orange);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(250, 167, 27, 0.1);
	transform: scale(1.03);
	opacity: 0;
	animation: pmSlideInRight 0.8s ease-out 0.4s forwards;
	z-index: 2;
}

.card-desert:hover {
	transform: scale(1.05) translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(250, 167, 27, 0.2);
}

.card-desert h3 {
	color: var(--pm-orange);
	font-weight: 800;
	font-size: 1.8rem;
	margin-bottom: 25px;
	letter-spacing: -0.5px;
}

.recommended-badge {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--pm-orange);
	color: #111827;
	font-weight: 800;
	font-size: 0.8rem;
	padding: 6px 18px;
	border-radius: 20px;
	letter-spacing: 1px;
	white-space: nowrap;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(250, 167, 27, 0.3);
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
}

.feature-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.feature-title {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: color 0.3s ease;
}

.card-standard .feature-title::before {
	content: '⚠️';
	opacity: 0.5;
}

.card-standard .feature-title {
	color: #cbd5e1;
}

.card-desert .feature-title::before {
	content: '✓';
	color: var(--pm-orange);
	font-weight: 900;
	font-size: 1.2rem;
}

.card-desert .feature-title {
	color: var(--pm-white);
}

.card-desert:hover .feature-title {
	color: var(--pm-orange);
}

.feature-desc {
	font-size: 0.95rem;
	color: var(--pm-text-muted);
	line-height: 1.5;
	padding-left: 28px;
	margin: 0;
}

.card-desert .feature-desc {
	color: #cbd5e1;
}

.matrix-cta-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	background-color: var(--pm-orange);
	color: #111827 !important;
	padding: 18px 30px;
	border-radius: 8px;
	font-weight: 800;
	font-size: 1.1rem;
	text-decoration: none !important;
	margin-top: 35px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 14px rgba(250, 167, 27, 0.3);
}

.matrix-cta-btn:hover {
	background-color: var(--pm-orange-hover) !important;
	transform: translateY(-2px);
	color: #111827 !important;
}

@keyframes pmFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes pmSlideInLeft {
	from { opacity: 0; transform: translateX(-60px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes pmSlideInRight {
	from { opacity: 0; transform: translateX(60px) scale(1.03); }
	to { opacity: 1; transform: translateX(0) scale(1.03); }
}

@keyframes pmLinePulse {
	0% { opacity: 0.4; width: 30%; left: 35%; }
	50% { opacity: 1; width: 100%; left: 0%; }
	100% { opacity: 0.4; width: 30%; left: 35%; }
}

@media (max-width: 900px) {
	.matrix-card {
		flex: 1 1 100%;
	}

	.card-desert {
		transform: scale(1);
		order: -1;
		margin-bottom: 20px;
	}

	.card-desert:hover {
		transform: scale(1.02) translateY(-5px);
	}

	@keyframes pmSlideInRight {
		from { opacity: 0; transform: translateX(60px) scale(1); }
		to { opacity: 1; transform: translateX(0) scale(1); }
	}
}

@media (prefers-reduced-motion: reduce) {
	.performance-matrix-section *,
	.performance-matrix-section *::before,
	.performance-matrix-section *::after {
		animation: none !important;
		transition: none !important;
	}
}
