.cta-band {
	padding: 100px 24px;
	background:
		linear-gradient(
			135deg,
			var(--color-primary) 0%,
			var(--color-primary-light) 100%
		);
	color: white;
}

.cta-band-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 64px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.cta-band h2 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: white;
}

.cta-band .button {
	height: 58px;
	padding: 0 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: white;
	color: var(--color-primary);
	font-size: 0.95rem;
	font-weight: 700;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	white-space: nowrap;
}

.cta-band .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
	.cta-band {
		padding: 80px 20px;
	}

	.cta-band-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 32px;
		gap: 28px;
	}

	.cta-band .button {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.cta-band-inner {
		padding: 32px 24px;
		border-radius: 24px;
	}

	.cta-band h2 {
		font-size: 2rem;
	}
}