.cta-section {
	padding: 90px 0;
	background: linear-gradient(145deg, #121212, #0b0b0b);
	border-bottom: 1px solid #2a2a2a;
	color: #f5f5f5;
	font-family: 'Inter', sans-serif;
	text-align: center;
}

.cta-section .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.cta-section h2 {
	margin: 0;
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 3rem;
	font-weight: 700;
}

.cta-section .accent-text { color: #a855f7; }

.cta-section p {
	max-width: 600px;
	margin: 1rem auto 2.5rem;
	color: #b0b0b0;
	font-size: 1.2rem;
	line-height: 1.6;
}

.cta-section .btn-primary {
	display: inline-block;
	padding: 1rem 3rem;
	background: #a855f7;
	border: 0;
	border-radius: 6px;
	color: #0b0b0b;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus-visible {
	background: #c084fc;
	box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.cta-section h2 { font-size: 2.2rem; }
	.cta-section p { font-size: 1rem; }
}