/* BudClub FAQ — simple, accessible accordion page. */
.bc-faq {
	background: #080a07;
	color: #f5f4ed;
}

.bc-faq .budclub-wrap {
	width: min(1040px, calc(100% - 40px));
	margin-inline: auto;
}

.bc-faq__hero {
	padding: clamp(68px, 8vw, 108px) 0 clamp(46px, 6vw, 70px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(158, 240, 26, 0.055), transparent 78%);
}

.bc-faq__hero-inner {
	max-width: 760px;
}

.bc-faq__eyebrow,
.bc-faq__support-label {
	margin: 0 0 12px;
	color: #9ef01a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.bc-faq__hero h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(42px, 5.5vw, 70px);
	line-height: 1;
	letter-spacing: -0.035em;
}

.bc-faq__intro {
	max-width: 690px;
	margin-top: 22px;
	color: rgba(245, 244, 237, 0.7);
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.65;
}

.bc-faq__intro > *:first-child {
	margin-top: 0;
}

.bc-faq__intro > *:last-child {
	margin-bottom: 0;
}

.bc-faq__section {
	padding: clamp(54px, 7vw, 88px) 0;
}

.bc-faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(30px, 5vw, 58px);
	align-items: start;
}

.bc-faq__list {
	display: grid;
	gap: 12px;
}

.bc-faq-item {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 14px;
	background: #11140f;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.bc-faq-item:hover,
.bc-faq-item[open] {
	border-color: rgba(158, 240, 26, 0.38);
	background: #131711;
}

.bc-faq-item__question {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px;
	color: #f5f4ed;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.bc-faq-item__question::-webkit-details-marker {
	display: none;
}

.bc-faq-item__question:focus-visible {
	outline: 2px solid #9ef01a;
	outline-offset: -3px;
}

.bc-faq-item__icon {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(158, 240, 26, 0.42);
	border-radius: 50%;
	background: rgba(158, 240, 26, 0.07);
}

.bc-faq-item__icon::before,
.bc-faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	border-radius: 999px;
	background: #9ef01a;
	transform: translate(-50%, -50%);
	transition: transform 180ms ease, opacity 180ms ease;
}

.bc-faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.bc-faq-item[open] .bc-faq-item__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.bc-faq-item__answer {
	padding: 0 22px 22px;
	color: rgba(245, 244, 237, 0.7);
	font-size: 15px;
	line-height: 1.72;
}

.bc-faq-item__answer::before {
	content: "";
	display: block;
	margin-bottom: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.bc-faq-item__answer p {
	margin: 0 0 12px;
}

.bc-faq-item__answer p:last-child {
	margin-bottom: 0;
}

.bc-faq__support {
	position: sticky;
	top: 110px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 16px;
	background: #11140f;
}

.bc-faq__support h2 {
	margin: 0;
	font-size: 27px;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.bc-faq__support > p:not(.bc-faq__support-label) {
	margin: 16px 0 22px;
	color: rgba(245, 244, 237, 0.64);
	font-size: 14px;
	line-height: 1.65;
}

.bc-faq__support .budclub-button {
	justify-content: center;
	width: 100%;
}

.bc-faq__email {
	display: block;
	margin-top: 14px;
	color: rgba(245, 244, 237, 0.62);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.bc-faq__email:hover,
.bc-faq__email:focus-visible {
	color: #9ef01a;
}

@media (max-width: 820px) {
	.bc-faq__layout {
		grid-template-columns: 1fr;
	}

	.bc-faq__support {
		position: static;
	}
}

@media (max-width: 600px) {
	.bc-faq .budclub-wrap {
		width: min(100% - 28px, 1040px);
	}

	.bc-faq__hero {
		padding-top: 56px;
	}

	.bc-faq__hero h1 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.bc-faq__section {
		padding-block: 48px;
	}

	.bc-faq-item__question {
		padding: 18px;
		font-size: 16px;
	}

	.bc-faq-item__answer {
		padding: 0 18px 19px;
	}

	.bc-faq__support {
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bc-faq-item,
	.bc-faq-item__icon::before,
	.bc-faq-item__icon::after {
		transition: none;
	}
}
