.faq-section {
	--faq-line: #d9d9d9;
	--faq-text: #000;
	--faq-muted: #969696;
	--faq-card-bg: #fff;
	--faq-card-open-bg: #f5f5f5;
	--faq-card-border: #d9d9d9;
	--faq-card-open-border: #000;
	--faq-gap: 9px;
	--faq-mobile-gap: 6.75px;
	--faq-stats-offset: 0px;

	position: relative;
	width: 100%;
	padding: 134px 16px 0;
	background: #fff;
	color: var(--faq-text);
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
	box-sizing: border-box;
}

.faq-section__inner {
	width: min(100%, 1408px);
	margin: 0 auto;
}

.faq-section__heading {
	display: flex;
	align-items: flex-end;
	padding-bottom: 7px;
	border-bottom: 1px solid var(--faq-line);
}

.faq-section__heading-label {
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -0.05em;
	font-weight: 500;
	color: var(--faq-text);
}

.faq-section__heading-number {
	margin-left: 4px;
	font-size: 10px;
	line-height: 18px;
	font-weight: 400;
	letter-spacing: -0.05em;
	vertical-align: top;
}

.faq-section__title {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-top: 16px;
	margin-bottom: 26px;
	max-width: 716px;
	font-size: 38px;
	line-height: 32px;
	letter-spacing: -0.05em;
	font-weight: 400;
	color: var(--faq-text);
}

.faq-section__title-line {
	display: block;
}

.faq-section__stats-viewport {
	position: relative;
	overflow: hidden;
}

.faq-section__stats-track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: var(--faq-gap);
	align-items: start;
	transform: translate3d(var(--faq-stats-offset), 0, 0);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.faq-section__stats-track.is-dragging {
	transition: none;
}

.faq-section__stat {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 124px;
	overflow: hidden;
	padding: 12px;
	border: 1.33px solid var(--faq-card-border);
	border-radius: 8px;
	background: var(--faq-card-bg);
	transition:
		min-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
		background-color 260ms ease,
		border-color 260ms ease,
		box-shadow 260ms ease;
}

.faq-section__stat.is-open {
	min-height: 300px;
	border-color: var(--faq-card-open-border);
	background: var(--faq-card-open-bg);
}

.faq-section__stat-toggle {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-section__stat-main {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 98px;
}

.faq-section__stat-value {
	font-size: 54px;
	line-height: 1;
	letter-spacing: -0.05em;
	font-weight: 400;
	color: var(--faq-text);
}

.faq-section__stat-label {
	max-width: 196px;
	font-size: 21px;
	line-height: 18px;
	letter-spacing: -0.05em;
	font-weight: 500;
	color: var(--faq-text);
}

.faq-section__stat-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 36px;
	flex: 0 0 18px;
	border: 1.33px solid var(--faq-line);
	border-radius: 9px;
	background: #f5f5f5;
	color: var(--faq-text);
	transition: transform 260ms ease;
}

.faq-section__stat-toggle-icon svg {
	display: block;
	width: 14px;
	height: 14px;
}

.faq-section__stat.is-open .faq-section__stat-toggle-icon {
	transform: rotate(180deg);
}

.faq-section__stat-body {
	margin-top: 20px;
}

.faq-section__stat-body p {
	margin: 0;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: -0.05em;
	font-weight: 400;
	color: var(--faq-text);
}

.faq-section__faq {
	margin-top: 12px;
}

.faq-section__faq-list {
	border-top: 1px solid var(--faq-line);
}

.faq-section__faq-item {
	border-bottom: 1px solid var(--faq-line);
}

.faq-section__faq-item[hidden] {
	display: none;
}

.faq-section__faq-question {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 16px 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-section__faq-question-text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 16px;
	line-height: 13.85px;
	letter-spacing: -0.05em;
	font-weight: 500;
	color: var(--faq-text);
}

.faq-section__faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: #222222;
}

.faq-section__faq-icon svg {
	display: block;
	width: 10px;
	height: 6px;
}

.faq-section__faq-icon--up {
	display: none;
}

.faq-section__faq-item.is-open .faq-section__faq-icon--down {
	display: none;
}

.faq-section__faq-item.is-open .faq-section__faq-icon--up {
	display: inline-flex;
}

.faq-section__faq-answer {
	padding: 0 0 8px;
}

.faq-section__faq-answer,
.faq-section__faq-answer p {
	font-size: 16.159px;
	line-height: 13.85px;
	letter-spacing: -0.05em;
	font-weight: 500;
	color: var(--faq-muted);
}

.faq-section__faq-answer p {
	margin: 0;
}

.faq-section__faq-answer p + p {
	margin-top: 14px;
}

.faq-section__more-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 62px;
	padding: 10px 0 0;
	border-bottom: 1px solid var(--faq-line);
}

.faq-section__more-wrap[hidden] {
	display: none;
}

.faq-section__more {
	appearance: none;
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--faq-text);
	font: inherit;
	font-size: 14px;
	line-height: 18px;
	font-weight: 500;
	letter-spacing: -0.05em;
	text-align: center;
	cursor: pointer;
	transition: transform 180ms ease, opacity 180ms ease;
}

.faq-section__more:hover {
	transform: translateY(-1px);
	opacity: 0.72;
}

@media (min-width: 901px) and (max-width: 1280px) {
	.faq-section__inner {
		width: min(100%, 992px);
	}

	.faq-section__stat.is-open {
		min-height: 220px;
	}
}

@media (max-width: 900px) {
	.faq-section {
		padding: 136px 12px 0;
	}

	.faq-section__inner {
		width: 100%;
	}

	.faq-section__title {
		max-width: 280px;
		margin-top: 10px;
		margin-bottom: 25px;
		font-size: 24px;
		line-height: 24px;
	}

	.faq-section__stats-track {
		display: flex;
		gap: var(--faq-mobile-gap);
		align-items: stretch;
	}

	.faq-section__stat {
		flex: 0 0 calc((100% - var(--faq-mobile-gap)) / 2);
		min-height: 93px;
		padding: 9px;
		border-width: 0.998px;
		border-radius: 6px;
	}

	.faq-section__stat.is-open {
		min-height: 180px;
	}

	.faq-section__stat-main {
		min-height: 73px;
	}

	.faq-section__stat-value {
		font-size: 40.5px;
	}

	.faq-section__stat-label {
		max-width: 147px;
		font-size: 15.75px;
		line-height: 13.5px;
	}

	.faq-section__stat-toggle-icon {
		width: 13.5px;
		height: 27px;
		flex-basis: 13.5px;
		border-width: 0.998px;
		border-radius: 6.75px;
	}

	.faq-section__stat-toggle-icon svg {
		width: 10.5px;
		height: 10.5px;
	}

	.faq-section__stat-body {
		margin-top: 12px;
	}

	.faq-section__stat-body p {
		font-size: 12px;
		line-height: 14px;
	}

	.faq-section__faq {
		margin-top: 10px;
	}
}
