/* Shared FAQ accordion — reuse on any page */

.faq-section {
	background: var(--white, #fff);
	padding: 88px 0 100px;
}

.faq-inner {
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.faq-head {
	text-align: center;
	margin-bottom: 48px;
}

.faq-head h2 {
	font-family: var(--font-secondary);
	font-size: 40px;
	font-weight: 700;
	line-height: 120%;
	color: #111;
	margin: 0 0 14px;
}

.faq-head p {
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 160%;
	color: #666;
	margin: 0 auto;
	max-width: 640px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-item {
	border: 0;
}

.faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}

.faq-question {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-weight: 700;
	line-height: 140%;
	color: #111;
}

.faq-icon {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #111;
	transform: translate(-50%, -50%);
}

.faq-icon::before {
	width: 14px;
	height: 2px;
}

.faq-icon::after {
	width: 2px;
	height: 14px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open .faq-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0);
}

.faq-panel {
	display: none;
	padding: 0 36px 20px 0;
}

.faq-item.is-open .faq-panel {
	display: block;
}

.faq-panel p {
	font-family: var(--font-primary);
	font-size: 15px;
	font-weight: 400;
	line-height: 170%;
	color: #666;
	margin: 0;
}

@media (max-width: 700px) {
	.faq-section {
		padding: 56px 0 64px;
	}

	.faq-head {
		margin-bottom: 32px;
	}

	.faq-head h2 {
		font-size: 28px;
	}

	.faq-question {
		font-size: 16px;
	}

	.faq-panel {
		padding-right: 8px;
	}
}
