.faq-section {
	position: relative;
	margin-bottom: 90px;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background:
		radial-gradient(circle at 85% 12%, rgba(198, 164, 59, 0.14), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
	box-shadow: 0 28px 85px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	overflow: hidden;
}

.faq-section::before {
	content: "؟";
	position: absolute;
	top: -30px;
	left: 42px;
	color: rgba(198, 164, 59, 0.08);
	font-size: 180px;
	font-weight: 900;
	line-height: 1;
}

.faq-head {
	position: relative;
	z-index: 1;
	margin-bottom: 26px;
	text-align: center;
}

.faq-head span {
	display: inline-grid;
	place-items: center;
	margin-bottom: 12px;
	padding: 7px 15px;
	border: 1px solid rgba(198, 164, 59, 0.34);
	border-radius: 999px;
	background: rgba(198, 164, 59, 0.08);
	color: #f6d875;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.8px;
}

.faq-head h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	background: linear-gradient(135deg, #fff, #C6A43B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-head p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
}

.faq-list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(36, 38, 62, 0.88), rgba(24, 25, 45, 0.76));
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open {
	border-color: rgba(198, 164, 59, 0.34);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), 0 0 36px rgba(198, 164, 59, 0.08);
}

.faq-question {
	width: 100%;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: inherit;
	font-size: 17px;
	font-weight: 900;
	text-align: right;
	cursor: pointer;
}

.faq-question i {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 12px;
	background: rgba(198, 164, 59, 0.1);
	color: #f6d875;
	font-style: normal;
	font-size: 24px;
	font-weight: 500;
	transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-question i {
	transform: rotate(45deg);
	background: linear-gradient(145deg, #ffe56b, #C6A43B);
	color: #1d1604;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	margin: 0;
	padding: 0 22px 22px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 2.1;
}

.faq-item.is-open .faq-answer {
	max-height: 180px;
}

@media (max-width: 620px) {
	.faq-section {
		padding: 28px 18px;
		border-radius: 24px;
	}

	.faq-question {
		padding: 18px 16px;
		font-size: 15px;
	}

	.faq-answer p {
		padding: 0 16px 18px;
	}
}
