.mkb-home-cta__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--mkb-space-12);
	padding: clamp(2rem, 6vw, 4.5rem);
	border-radius: 40px;
	background: #111111;
	color: #ffffff;
	overflow: hidden;
}

.mkb-home-cta__card::after {
	position: absolute;
	top: -250px;
	right: -180px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(79, 124, 103, 0.48);
	filter: blur(110px);
	content: "";
}

.mkb-home-cta__card > * {
	position: relative;
	z-index: 1;
}

.mkb-home-cta h2 {
	margin: var(--mkb-space-6) 0 var(--mkb-space-4);
	color: #ffffff;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
}

.mkb-home-cta__card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--mkb-text-lg);
}

.mkb-home-cta__card .mkb-ds-actions {
	margin-top: var(--mkb-space-8);
}

.mkb-home-cta__card .mkb-ds-button--secondary {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.mkb-home-cta__stats {
	display: flex;
	gap: var(--mkb-space-3);
}

.mkb-home-cta__stats div {
	min-width: 112px;
	padding: var(--mkb-space-6) var(--mkb-space-4);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--mkb-radius-lg);
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
}

.mkb-home-cta__stats strong,
.mkb-home-cta__stats span {
	display: block;
}

.mkb-home-cta__stats strong {
	font-family: var(--mkb-font-data);
	font-size: 1.8rem;
}

.mkb-home-cta__stats span {
	margin-top: var(--mkb-space-2);
	color: rgba(255, 255, 255, 0.64);
	font-size: var(--mkb-text-xs);
}

@media (max-width: 900px) {
	.mkb-home-cta__card {
		align-items: flex-start;
		flex-direction: column;
	}

	.mkb-home-cta__stats {
		width: 100%;
	}

	.mkb-home-cta__stats div {
		flex: 1;
	}
}

@media (max-width: 560px) {
	.mkb-home-cta__card {
		border-radius: var(--mkb-radius-xl);
	}

	.mkb-home-cta__stats {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.mkb-home-cta__stats div {
		min-width: 0;
		padding-inline: var(--mkb-space-2);
	}

	.mkb-home-cta__stats strong {
		font-size: 1.25rem;
	}
}
