.faq-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 32px clamp(20px, 5vw, 80px) 0;
	background: #fff;
}

.faq-header {
	padding: 0;
}

.faq-main {
	flex: 1;
	padding: 120px 0 80px;
}

.faq-section {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.eyebrow {
	font-size: 0.95rem;
	font-weight: 600;
	color: #644aff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 12px;
}

.faq-section h1 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0f172a;
	margin: 0 0 40px;
}

.faq-groups {
	display: grid;
	gap: 28px;
	text-align: left;
}

.faq-group h2 {
	margin: 0 0 16px;
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 700;
	color: #12243b;
}

.faq-group-separator {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(100, 74, 255, 0.28) 20%, rgba(100, 74, 255, 0.42) 50%, rgba(100, 74, 255, 0.28) 80%, transparent 100%);
}

.faq-items {
	display: grid;
	gap: 12px;
	text-align: left;
}

.faq-items details {
	border-radius: 24px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid rgba(7, 21, 38, 0.08);
	box-shadow: 0 20px 45px -35px rgba(7, 11, 52, 0.4);
}

.faq-items summary {
	font-weight: 600;
	font-size: 1.05rem;
	color: #0f172a;
	cursor: pointer;
	list-style: none;
}

.faq-items summary::-webkit-details-marker {
	display: none;
}

.faq-items summary::after {
	content: '+';
	float: right;
	font-weight: 400;
	color: #64748b;
}

.faq-items details[open] summary::after {
	content: '−';
}

.faq-items p {
	margin: 16px 0 0;
	padding-top: 16px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	color: #475467;
	line-height: 1.6;
}
