/* ============================================================
   FCW — CTA Banner  |  fcw-cta
   ============================================================ */

.fcw-cta {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	padding: 96px 0;
	background-size: cover;
	background-position: center;
	font-family: 'Inter', sans-serif;
}

/* ── Overlay ── */
.fcw-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(26, 35, 50, 0.95), rgba(134, 39, 128, 0.9));
	pointer-events: none;
}

/* ── Inner ── */
.fcw-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

/* ── Heading ── */
.fcw-cta__heading {
	font-size: clamp(1.875rem, 4.5vw, 3rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px;
	line-height: 1.2;
}

/* ── Subheading ── */
.fcw-cta__sub {
	font-size: 1.0625rem;
	color: #e5e7eb;
	margin: 0 0 36px;
	line-height: 1.7;
}

/* ── Button ── */
.fcw-cta__btn {
	display: inline-block;
	background-color: #93C241;
	color: #ffffff;
	padding: 16px 44px;
	border-radius: 50px;
	font-size: 1.0625rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}

.fcw-cta__btn:hover {
	background-color: #7aaa2e;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(147, 194, 65, 0.4);
	color: #ffffff;
	text-decoration: none;
}

/* ── Note ── */
.fcw-cta__note {
	font-size: 0.8125rem;
	color: #d1d5db;
	margin: 16px 0 0;
}
