.xt-cta {
	position: relative;
	width: 100%;
	min-height: 480px;
	padding: 80px 40px;
	border-radius: 32px;
	background: #0091FF;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}

/* Concentric Circles Pattern */
.xt-cta__circles {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	opacity: 0.2;
}

.xt-cta__circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #ffffff;
	border-radius: 50%;
}

.xt-cta__circle--1 { width: 400px; height: 400px; }
.xt-cta__circle--2 { width: 600px; height: 600px; }
.xt-cta__circle--3 { width: 800px; height: 800px; }
.xt-cta__circle--4 { width: 1000px; height: 1000px; }

/* Avatars Section */
.xt-cta__avatars {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	padding-left: 12px; /* Offset for first avatar overlap */
}

.xt-cta__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 3px solid #0091FF;
	margin-left: -12px;
	background: #eee;
	object-fit: cover;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.xt-cta__avatar:hover {
	transform: translateY(-5px);
	z-index: 10;
}

/* Typography */
.xt-cta__title {
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.1;
	color: #ffffff;
}

.xt-cta__subtitle {
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 400;
	opacity: 0.9;
	max-width: 600px;
	margin-bottom: 40px;
	color: #ffffff;
}

/* Actions area */
.xt-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.xt-cta__btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #0091FF;
	padding: 18px 40px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.xt-cta__btn-primary:hover {
	background: #f8f8f8;
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.xt-cta__btn-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #ffffff;
	color: #0091FF;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.xt-cta__btn-arrow:hover {
	background: #f8f8f8;
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.xt-cta__btn-arrow svg {
	width: 24px;
	height: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.xt-cta {
		padding: 60px 24px;
		min-height: auto;
	}
	.xt-cta__avatar {
		width: 48px;
		height: 48px;
	}
	.xt-cta__btn-primary {
		padding: 16px 32px;
		font-size: 16px;
	}
	.xt-cta__btn-arrow {
		width: 52px;
		height: 52px;
	}
}
