/* CTA Section Styles */
.sol-cta {
	background: #3918a7;
	border-radius: 32px;
	box-shadow: 0 0 40px 0 #2d186a44;
	margin: 64px auto;
	max-width: 1100px;
	padding: 56px 32px 64px;
	position: relative;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.cta-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	position: relative;
}

.cta-btn {
	font-weight: 600;
	font-size: 1.15rem;
	border-radius: 32px;
	padding: 18px 36px;
	text-decoration: none;
	box-shadow: 0 2px 12px 0 #0001;
	transition: all 0.3s ease;
}

.cta-btn-outline {
	color: #fff;
	border: 1px solid #fff;
	background: transparent;
}

.cta-btn-outline:hover {
	box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta-btn-gradient {
	background: linear-gradient(90deg, #7b5cff 0%, #ff4fcf 100%);
	color: #fff;
}

.cta-btn-gradient:hover {
	box-shadow: 0 4px 20px rgba(123, 92, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
	.cta-title {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 16px;
	}

	.cta-btn {
		width: 100%;
		max-width: 280px;
	}
}
