/* ===========================
   Частые вопросы (аккордеон)
   =========================== */
.faq {
	background: var(--color-bg);
}

.faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.faq__list {
	min-width: 0;
}

/* CTA-карточка справа */
.faq__cta {
	position: sticky;
	top: 24px;
	background: linear-gradient(135deg, #1B2A20 0%, #0F1814 100%);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	color: var(--color-white);
}
.faq__cta-eyebrow {
	display: block;
	color: var(--color-accent);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.faq__cta-title {
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-white);
	margin-bottom: 12px;
}
.faq__cta-text {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(250, 247, 240, 0.85);
	margin-bottom: 24px;
}
.faq__cta-btn {
	width: 100%;
	margin-bottom: 12px;
}
.faq__cta-link {
	display: inline-block;
	margin-top: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--color-white);
}
.faq__cta-link:hover {
	color: var(--color-accent);
}

.faq__item {
	border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child {
	border-top: 1px solid var(--color-border);
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 22px 4px;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	color: var(--color-text);
	cursor: pointer;
}
.faq__q:hover {
	color: var(--color-accent);
}

.faq__icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--color-accent);
	transition: transform var(--transition);
}
.faq__item.is-open .faq__icon {
	transform: rotate(180deg);
}

.faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.32s ease;
}
.faq__a-inner {
	padding: 0 4px 24px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-text-muted);
}
.faq__a-inner p {
	margin-bottom: 12px;
}
.faq__a-inner p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.faq__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.faq__cta {
		position: static;
	}
}

@media (max-width: 768px) {
	.faq__q {
		font-size: 16px;
		padding: 18px 2px;
	}
}
