/* ── FAQ section ── */
.block-faq {
	position: relative;
	z-index: 1;
	background: transparent;
	isolation: isolate;
	padding: calc(var(--verti-padding-big) * 1.8) 0;
}

.block-faq__inner {
	padding-left: var(--calc-padding);
	padding-right: var(--calc-padding);
}

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

.block-faq__kicker {
	color: var(--color);
	font-size: var(--font-size-h5);
	font-weight: 600;
	margin-bottom: 8px;
}

.block-faq__heading {
	margin: 0;
	color: #fff;
	font-size: var(--font-size-h2);
	font-weight: 400;
	line-height: 1.25;
}

.block-faq__heading-line {
	width: 100%;
	max-width: 100%;
	height: 1px;
	margin: 20px auto;
	background: #fff;
}

.block-faq__desc {
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--font-size-normal);
	line-height: 1.7;
	max-width: 600px;
}

/* ── Buttons ── */
.block-faq__buttons {
	margin-top: 16px;
	justify-content: center;
}

.block-faq__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 100px;
	text-decoration: none;
	font-size: var(--font-size-normal);
	font-weight: 400;
}

.block-faq__btn--secondary {
	border: 2px solid #ffffff33;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 4px 4px 12.9px 0 rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

/* ── List ── */
.block-faq__list {
	display: flex;
	flex-direction: column;
}

/* ── Item ── */
.block-faq__item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.block-faq__item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Question button ── */
.block-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 24px 0;
	margin: 0;
	border: none;
	background: none;
	color: #fff;
	font-family: inherit;
	font-size: var(--font-size-h5);
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease;
}

.block-faq__question:hover {
	color: var(--color);
}

/* ── +/× icon ── */
.block-faq__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: rgba(255, 255, 255, 0.6);
	transition: transform 0.3s ease, color 0.2s ease;
}

.block-faq__icon-v {
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

.block-faq__item--open .block-faq__icon {
	color: var(--color);
}

.block-faq__item--open .block-faq__icon-v {
	opacity: 0;
	transform: rotate(90deg);
}

/* ── Answer ── */
.block-faq__answer {
	overflow: hidden;
	transition: height 0.35s ease;
}

.block-faq__answer[hidden] {
	display: block !important;
	height: 0;
	visibility: hidden;
}

.block-faq__answer-inner {
	padding: 0 0 24px;
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--font-size-normal);
	line-height: 1.7;
}

.block-faq__answer-inner p {
	margin: 0 0 10px;
}

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

/* ── Responsive ── */
@media (max-width: 767px) {
	.block-faq__header {
		margin-bottom: 32px;
	}

	.block-faq__question {
		padding: 20px 0;
		font-size: var(--font-size-h6);
	}

	.block-faq__answer-inner {
		padding: 0 0 20px;
	}
}
