/* /assets/css/faq.css */

.faq-section {
	padding: 56px 0 64px;
	background: var(--bg);
}

.faq-list {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition:
		border-color 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}

.faq-item.open {
	border-color: var(--brand-100);
	box-shadow: var(--shadow-md);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 18px 20px;
	text-align: left;
	font-family: inherit;
	font-size: 0.96rem;
	font-weight: 600;
	color: var(--ink);
}

.faq-icon {
	width: 19px;
	height: 19px;
	flex-shrink: 0;
	color: var(--brand-light);
	transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s var(--ease);
}

.faq-answer p {
	padding: 0 20px 20px;
	color: var(--ink-soft);
	font-size: 0.92rem;
	line-height: 1.75;
}

.faq-answer p a {
	color: var(--brand-light);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--brand-100);
	text-underline-offset: 2px;
}

.faq-footer-note {
	text-align: center;
	margin-top: 36px;
}

.faq-footer-note p {
	color: var(--ink-faint);
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.faq-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--brand);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 10px 4px;
	border-bottom: 2px solid var(--brand-100);
	transition:
		border-color 0.2s ease,
		gap 0.2s ease;
}

.faq-contact-link svg {
	width: 17px;
	height: 17px;
	transition: transform 0.25s var(--ease);
}

.faq-contact-link:hover {
	border-color: var(--brand-light);
}
.faq-contact-link:hover svg {
	transform: translateX(3px);
}
