/* ============================================================
   FCW — FAQ Accordion  |  fcw-faq
   ============================================================ */

.fcw-faq {
	background: linear-gradient(to bottom, #f9fafb, #ffffff);
	padding: 80px 0;
	font-family: 'Inter', sans-serif;
}

.fcw-faq__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ── Header ── */
.fcw-faq__header {
	text-align: center;
	margin-bottom: 56px;
}

.fcw-faq__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background-color: rgba(134, 39, 128, 0.08);
	border: 1px solid rgba(134, 39, 128, 0.2);
	border-radius: 50px;
	margin-bottom: 24px;
}

.fcw-faq__badge i {
	font-size: 1rem;
	color: #862780;
}

.fcw-faq__badge span {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #862780;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.fcw-faq__heading {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 16px;
	line-height: 1.2;
}

.fcw-faq__subheading {
	font-size: 1.0625rem;
	color: #6b7280;
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ── Accordion List ── */
.fcw-faq__list {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid #f3f4f6;
	overflow: hidden;
	padding: 0 24px;
}

@media (min-width: 640px) {
	.fcw-faq__list {
		padding: 0 32px;
	}
}

/* ── Item ── */
.fcw-faq__item {
	border-bottom: 1px solid #f3f4f6;
	border-left: none !important;
	border-right: none !important;
	border-top: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.fcw-faq__item:last-child {
	border-bottom: none;
}

/* ── Trigger row (plain div — avoids Elementor button resets) ── */
.fcw-faq__trigger {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.fcw-faq__trigger:hover .fcw-faq__q {
	color: #862780;
}

/* ── Left side: num badge + question ── */
.fcw-faq__trigger-left {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 12px;
	flex: 1 1 0%;
	min-width: 0;
}

/* ── Number Badge ── */
.fcw-faq__num-box {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(134, 39, 128, 0.08);
	border-radius: 8px;
	margin-top: 2px;
	transition: background-color 0.2s;
}

.fcw-faq__num {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #862780;
	line-height: 1;
}

/* ── Question Text ── */
.fcw-faq__q {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.45;
	transition: color 0.2s;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* ── Toggle Arrow ── */
.fcw-faq__toggle {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f3f4f6;
	border-radius: 50%;
	transition: background-color 0.25s, transform 0.25s;
	margin-top: 2px;
}

.fcw-faq__toggle i {
	font-size: 1.125rem;
	color: #6b7280;
	transition: color 0.25s;
}

.fcw-faq__toggle.is-open {
	background-color: #862780;
	transform: rotate(180deg);
}

.fcw-faq__toggle.is-open i {
	color: #ffffff;
}

/* ── Answer ── */
.fcw-faq__answer {
	overflow: hidden;
}

.fcw-faq__answer-text {
	padding: 0 0 24px 44px;
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.75;
	margin: 0;
}
