/* صفحة الأسئلة الشائعة — الموقع العام */

.mseom-faq {
	padding: 28px 0 48px;
	background:
		radial-gradient(90% 60% at 100% 0%, rgba(163, 230, 53, 0.14), transparent 55%),
		linear-gradient(180deg, #f7faf8 0%, #ffffff 42%);
}

.mseom-faq__inner {
	max-width: 820px;
}

.mseom-faq__hero {
	margin-bottom: 28px;
}

.mseom-faq__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	color: var(--mseom-green-700, #15803d);
	letter-spacing: 0.02em;
}

.mseom-faq__title {
	margin: 0 0 10px;
	font-size: clamp(1.55rem, 3vw, 2rem);
	font-weight: 900;
	color: var(--mseom-green-900, #14532d);
	line-height: 1.25;
}

.mseom-faq__lead {
	margin: 0;
	max-width: 40rem;
	font-size: 15px;
	line-height: 1.7;
	color: #4b5563;
	font-weight: 600;
}

.mseom-faq__empty {
	margin: 0;
	padding: 18px;
	border-radius: var(--mseom-radius-sm, 10px);
	background: #fff;
	border: 1px solid var(--mseom-border, #e5ebe7);
	color: var(--mseom-muted, #6b7280);
}

.mseom-faq__section {
	margin-bottom: 22px;
}

.mseom-faq__section-title {
	margin: 0 0 12px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--mseom-green-900, #14532d);
}

.mseom-faq__list {
	display: grid;
	gap: 10px;
}

.mseom-faq__item {
	border: 1px solid var(--mseom-border, #e5ebe7);
	border-radius: var(--mseom-radius-sm, 10px);
	background: #fff;
	overflow: hidden;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mseom-faq__item[open] {
	border-color: #86efac;
	box-shadow: 0 4px 14px rgba(22, 101, 52, 0.08);
}

.mseom-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;
	color: #374151;
	list-style: none;
}

.mseom-faq__item summary::-webkit-details-marker {
	display: none;
}

.mseom-faq__item summary::after {
	content: "+";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: #ecfdf3;
	color: #166534;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.mseom-faq__item[open] summary::after {
	content: "−";
}

.mseom-faq__answer {
	padding: 0 16px 14px;
	color: var(--mseom-muted, #6b7280);
	font-size: 14px;
	line-height: 1.7;
}

.mseom-faq__answer p {
	margin: 0 0 0.75em;
}

.mseom-faq__answer p:last-child {
	margin-bottom: 0;
}

.mseom-faq__cta {
	margin-top: 28px;
	padding: 18px 20px;
	border-radius: var(--mseom-radius, 14px);
	background: #fff;
	border: 1px solid var(--mseom-border, #e5ebe7);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	box-shadow: var(--mseom-shadow, 0 8px 24px rgba(16, 24, 20, 0.06));
}

.mseom-faq__cta-text {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	flex: 1 1 220px;
}

.mseom-faq__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	background: var(--mseom-green-800, #166534);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.15s ease;
}

.mseom-faq__cta-btn:hover,
.mseom-faq__cta-btn:focus-visible {
	background: var(--mseom-green-900, #14532d);
	color: #fff;
}

@media (max-width: 640px) {
	.mseom-faq {
		padding: 20px 0 36px;
	}

	.mseom-faq__cta {
		padding: 16px;
	}

	.mseom-faq__cta-btn {
		width: 100%;
	}
}
