/* ============================================================
   FCW — Newsletter Signup  |  fcw-nls
   ============================================================ */

.fcw-nls {
	background: linear-gradient(135deg, #1a2332 0%, #2d4059 50%, #1a2332 100%);
	padding: 80px 0;
	font-family: 'Inter', sans-serif;
}

.fcw-nls__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

/* ── Icon ── */
.fcw-nls__icon-box {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #862780;
	border-radius: 16px;
	margin-bottom: 24px;
}

.fcw-nls__icon-box i {
	font-size: 28px;
	color: #fff;
}

/* ── Heading ── */
.fcw-nls__heading {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px;
	line-height: 1.25;
}

/* ── Subheading ── */
.fcw-nls__subheading {
	font-size: 1.0625rem;
	color: #d1d5db;
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

/* ── Form Wrapper ── */
.fcw-nls__success {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 40px 32px;
	max-width: 480px;
	margin: 0 auto;
}

.fcw-nls__success-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #93C241;
	border-radius: 50%;
	margin: 0 auto 16px;
}

.fcw-nls__success-icon i {
	font-size: 28px;
	color: #fff;
}

.fcw-nls__success-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px;
}

.fcw-nls__success-msg {
	font-size: 0.9375rem;
	color: #d1d5db;
	margin: 0;
}

/* ── Form ── */
.fcw-nls__form {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 32px;
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}

.fcw-nls__fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

@media (max-width: 600px) {
	.fcw-nls__fields-row {
		grid-template-columns: 1fr;
	}
}

.fcw-nls__field-group {
	display: flex;
	flex-direction: column;
}

.fcw-nls__field-group--full {
	margin-bottom: 24px;
}

.fcw-nls__label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #d1d5db;
	margin-bottom: 6px;
}

.fcw-nls__required {
	color: #93C241;
	margin-left: 2px;
}

.fcw-nls__input {
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 0.875rem;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}

.fcw-nls__input::placeholder {
	color: #9ca3af;
}

.fcw-nls__input:focus {
	border-color: #93C241;
	box-shadow: 0 0 0 3px rgba(147, 194, 65, 0.25);
}

/* ── Submit Row ── */
.fcw-nls__submit-row {
	text-align: center;
	margin-bottom: 16px;
}

.fcw-nls__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #93C241;
	color: #ffffff;
	padding: 14px 40px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}

.fcw-nls__btn:hover {
	background-color: #7aaa2e;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(147, 194, 65, 0.35);
}

.fcw-nls__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.fcw-nls__btn-loader i {
	animation: fcw-spin 0.8s linear infinite;
}

@keyframes fcw-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ── Privacy ── */
.fcw-nls__privacy {
	font-size: 0.75rem;
	color: #9ca3af;
	text-align: center;
	margin: 0;
}
