.metapeps-faq {
	--faq-orange: #FC710C;
	--faq-dark: #071019;
	--faq-muted: #697680;
	--faq-border: rgba(7,16,25,.10);
	--faq-light: #f6f8fa;
	background: #fff;
	color: #17212b;
	overflow: hidden;
}

.faq-container {
	width: min(1180px, calc(100% - 40px));
	margin: auto;
}


/* HERO */

.faq-hero {
	position: relative;
	min-height: 610px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 75% 45%, rgba(252,113,12,.17), transparent 30%),
		linear-gradient(135deg,#071019,#0c1923);
	color: #fff;
	overflow: hidden;
}

.faq-hero__glow {
	position: absolute;
	width: 500px;
	height: 500px;
	right: -150px;
	top: 20px;
	border-radius: 50%;
	background: rgba(252,113,12,.10);
	filter: blur(70px);
}

.faq-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr .8fr;
	align-items: center;
	gap: 70px;
}

.faq-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .2em;
	color: var(--faq-orange);
	margin-bottom: 18px;
}

.faq-eyebrow::before {
	content: "";
	width: 25px;
	height: 2px;
	background: var(--faq-orange);
}

.faq-hero h1 {
	font-size: clamp(45px,6vw,72px);
	line-height: 1;
	letter-spacing: -.045em;
	margin: 0 0 25px;
	color: #fff;
}

.faq-hero h1 span,
.faq-cta h2 span {
	color: var(--faq-orange);
	display: block;
}

.faq-hero__content > p {
	max-width: 650px;
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255,255,255,.65);
	margin-bottom: 30px;
}

.faq-search {
	width: min(620px,100%);
	height: 58px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 0 18px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 8px;
	background: rgba(255,255,255,.07);
	backdrop-filter: blur(12px);
}

.faq-search svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: rgba(255,255,255,.5);
	stroke-width: 1.7;
}

.faq-search input {
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font-size: 14px;
}

.faq-search input::placeholder {
	color: rgba(255,255,255,.4);
}


/* HERO CARD */

.faq-hero__visual {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-orbit {
	position: absolute;
	border: 1px solid rgba(252,113,12,.2);
	border-radius: 50%;
}

.faq-orbit--one {
	width: 390px;
	height: 390px;
}

.faq-orbit--two {
	width: 280px;
	height: 280px;
	border-color: rgba(255,255,255,.08);
}

.faq-hero-card {
	position: relative;
	z-index: 2;
	width: 280px;
	height: 340px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.14);
	background: linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.03));
	backdrop-filter: blur(18px);
	box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.faq-hero-card__top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .18em;
	color: rgba(255,255,255,.5);
}

.faq-status {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--faq-orange);
	box-shadow: 0 0 15px var(--faq-orange);
}

.faq-hero-card__symbol {
	width: 145px;
	height: 145px;
	margin: auto;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(252,113,12,.45);
	background: radial-gradient(circle,rgba(252,113,12,.18),transparent 65%);
}

.faq-hero-card__symbol span {
	font-size: 68px;
	font-weight: 300;
	color: var(--faq-orange);
}

.faq-hero-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.faq-hero-card__bottom strong {
	font-size: 20px;
	letter-spacing: .08em;
}

.faq-hero-card__bottom span {
	font-size: 11px;
	color: rgba(255,255,255,.45);
}


/* MAIN */

.faq-main {
	padding: 110px 0;
	background: #fff;
}

.faq-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 75px;
	align-items: start;
}

.faq-sidebar {
	position: sticky;
	top: 110px;
}

.faq-sidebar__label {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .18em;
	color: #9aa3aa;
	margin-bottom: 20px;
}

.faq-filter {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 15px;
	margin-bottom: 5px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #64717b;
	font-size: 13px;
	text-align: left;
	cursor: pointer;
	transition: .2s ease;
}

.faq-filter strong {
	font-size: 10px;
	color: #a4adb4;
}

.faq-filter:hover {
	background: #f5f7f8;
	color: var(--faq-dark);
}

.faq-filter.is-active {
	background: rgba(252,113,12,.09);
	color: var(--faq-orange);
	font-weight: 800;
}

.faq-filter.is-active strong {
	color: var(--faq-orange);
}


/* QUESTIONS */

.faq-list {
	min-width: 0;
}

.faq-category-heading {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 0 15px;
	padding-top: 5px;
	color: #8a959d;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .18em;
}

.faq-category-heading span {
	color: var(--faq-orange);
}

.faq-item {
	border-top: 1px solid var(--faq-border);
}

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

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 27px 5px;
	border: 0;
	background: transparent;
	color: var(--faq-dark);
	font-size: 17px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.faq-plus {
	position: relative;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border: 1px solid var(--faq-border);
	border-radius: 50%;
	transition: .25s ease;
}

.faq-plus span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 1px;
	background: var(--faq-orange);
	transform: translate(-50%,-50%);
}

.faq-plus span:last-child {
	transform: translate(-50%,-50%) rotate(90deg);
	transition: .25s ease;
}

.faq-item.is-open .faq-plus {
	background: var(--faq-orange);
	border-color: var(--faq-orange);
}

.faq-item.is-open .faq-plus span {
	background: #fff;
}

.faq-item.is-open .faq-plus span:last-child {
	transform: translate(-50%,-50%) rotate(0deg);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .3s ease;
}

.faq-answer > div {
	overflow: hidden;
}

.faq-answer p {
	max-width: 720px;
	margin: 0;
	padding: 0 65px 28px 5px;
	color: var(--faq-muted);
	font-size: 14px;
	line-height: 1.8;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}


/* CTA */

.faq-cta {
	position: relative;
	padding: 90px 0;
	background: #f5f7f8;
	overflow: hidden;
}

.faq-cta__glow {
	position: absolute;
	width: 400px;
	height: 400px;
	right: -150px;
	top: -100px;
	border-radius: 50%;
	background: rgba(252,113,12,.1);
	filter: blur(60px);
}

.faq-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.faq-cta h2 {
	margin: 0 0 18px;
	font-size: clamp(38px,5vw,58px);
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--faq-dark);
}

.faq-cta__inner p {
	max-width: 620px;
	margin: 0;
	color: var(--faq-muted);
	line-height: 1.75;
}

.faq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 25px;
	border-radius: 7px;
	background: var(--faq-orange);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	transition: .25s ease;
}

.faq-btn:hover {
	color: #fff;
	background: #ff8124;
	transform: translateY(-2px);
}


/* DISCLAIMER */

.faq-disclaimer {
	padding: 35px 0;
	background: var(--faq-dark);
	color: #fff;
}

.faq-disclaimer .faq-container {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.faq-disclaimer__icon {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(252,113,12,.5);
	border-radius: 50%;
	color: var(--faq-orange);
	font-weight: 900;
}

.faq-disclaimer strong {
	display: block;
	margin-bottom: 7px;
	font-size: 10px;
	letter-spacing: .15em;
	color: var(--faq-orange);
}

.faq-disclaimer p {
	max-width: 900px;
	margin: 0;
	color: rgba(255,255,255,.5);
	font-size: 12px;
	line-height: 1.7;
}


/* SEARCH */

.faq-item.is-hidden,
.faq-category-heading.is-hidden {
	display: none;
}

.faq-no-results {
	display: none;
	padding: 50px 0;
	text-align: center;
	color: var(--faq-muted);
}

.faq-no-results.is-visible {
	display: block;
}


/* RESPONSIVE */

@media(max-width:900px) {

	.faq-hero {
		padding: 90px 0;
	}

	.faq-hero__inner {
		grid-template-columns: 1fr;
	}

	.faq-hero__visual {
		min-height: 350px;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.faq-sidebar {
		position: static;
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}

	.faq-sidebar__label {
		width: 100%;
	}

	.faq-filter {
		width: auto;
		margin: 0;
	}

	.faq-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

}

@media(max-width:600px) {

	.faq-container {
		width: min(100% - 28px,1180px);
	}

	.faq-hero h1 {
		font-size: 46px;
	}

	.faq-hero__visual {
		min-height: 300px;
	}

	.faq-orbit--one {
		width: 290px;
		height: 290px;
	}

	.faq-orbit--two {
		width: 210px;
		height: 210px;
	}

	.faq-hero-card {
		width: 240px;
		height: 300px;
	}

	.faq-main {
		padding: 75px 0;
	}

	.faq-question {
		font-size: 15px;
		padding: 22px 0;
	}

	.faq-answer p {
		padding-left: 0;
		padding-right: 20px;
	}

	.faq-sidebar {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
	}

	.faq-filter {
		white-space: nowrap;
	}

	.faq-btn {
		width: 100%;
	}

}