.ro-faq__hero {
	padding: 72px 0 58px;
	border-bottom: 1px solid var(--ro-line);
	background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 62%, #edf2ff 100%);
}

.ro-faq__hero h1 {
	max-width: 820px;
	margin: 0 0 18px;
	font-size: clamp(42px, 5.4vw, 70px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.02;
}

.ro-faq__lede {
	max-width: 620px;
	margin: 0;
	color: var(--ro-muted);
	font-size: 18px;
	line-height: 1.6;
}

.ro-faq__content {
	padding: 72px 0 88px;
}

.ro-faq__layout {
	display: grid;
	grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
	align-items: start;
	gap: clamp(52px, 9vw, 128px);
}

.ro-faq__intro {
	position: sticky;
	top: 28px;
}

.ro-faq__intro h2 {
	margin: 0 0 16px;
	font-size: clamp(30px, 3.6vw, 42px);
}

.ro-faq__intro > p:last-child {
	max-width: 330px;
	margin: 0;
	color: var(--ro-muted);
	font-size: 15px;
	line-height: 1.65;
}

.ro-faq__items {
	border-bottom: 1px solid var(--ro-line);
}

.ro-faq__item {
	border-top: 1px solid var(--ro-line);
}

.ro-faq__item summary {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) 24px;
	align-items: center;
	gap: 16px;
	min-height: 82px;
	padding: 20px 4px;
	cursor: pointer;
	list-style: none;
}

.ro-faq__item summary::-webkit-details-marker {
	display: none;
}

.ro-faq__item summary:focus-visible {
	border-radius: 3px;
	outline: 2px solid var(--ro-accent);
	outline-offset: 4px;
}

.ro-faq__number {
	color: var(--ro-accent);
	font-family: var(--ro-font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.25;
}

.ro-faq__question {
	color: var(--ro-ink);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.35;
}

.ro-faq__icon {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	border: 1px solid #d7dfeb;
	border-radius: 50%;
	background: #fff;
	transition: border-color 150ms ease, background-color 150ms ease;
}

.ro-faq__icon::before,
.ro-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 1px;
	background: currentColor;
	content: '';
	transform: translate(-50%, -50%);
	transition: transform 150ms ease;
}

.ro-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ro-faq__item[open] .ro-faq__icon,
.ro-faq__item summary:hover .ro-faq__icon {
	border-color: var(--ro-accent);
	background: var(--ro-accent);
	color: #fff;
}

.ro-faq__item[open] .ro-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.ro-faq__answer {
	max-width: 680px;
	padding: 0 44px 26px 52px;
}

.ro-faq__answer p {
	margin: 0;
	color: #465364;
	font-size: 15px;
	line-height: 1.7;
}

.ro-faq__answer p + p {
	margin-top: 12px;
}

.ro-faq__answer a,
.ro-faq__support-links a {
	color: var(--ro-accent);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ro-faq__answer a:focus-visible,
.ro-faq__support-links a:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--ro-accent);
	outline-offset: 3px;
}

.ro-faq__support {
	padding: 48px 0;
	background: var(--ro-surface);
}

.ro-faq__support-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.ro-faq__support h2 {
	margin: 0;
	font-size: clamp(26px, 3.2vw, 36px);
}

.ro-faq__support-links {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 8px;
}

.ro-faq__support-links a {
	font-size: 15px;
}

@media (max-width: 800px) {
	.ro-faq__hero {
		padding: 58px 0 46px;
	}

	.ro-faq__content {
		padding: 56px 0 72px;
	}

	.ro-faq__layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.ro-faq__intro {
		position: static;
	}

	.ro-faq__intro > p:last-child {
		max-width: 560px;
	}
}

@media (max-width: 560px) {
	.ro-faq__hero {
		padding: 48px 0 40px;
	}

	.ro-faq__hero h1 {
		font-size: 39px;
	}

	.ro-faq__lede {
		font-size: 16px;
	}

	.ro-faq__content {
		padding: 44px 0 56px;
	}

	.ro-faq__item summary {
		grid-template-columns: 26px minmax(0, 1fr) 22px;
		gap: 11px;
		min-height: 74px;
		padding: 17px 2px;
	}

	.ro-faq__question {
		font-size: 16px;
	}

	.ro-faq__icon {
		width: 22px;
		height: 22px;
	}

	.ro-faq__answer {
		padding: 0 2px 22px 39px;
	}

	.ro-faq__support-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.ro-faq__support-links {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ro-faq__icon,
	.ro-faq__icon::after {
		transition: none;
	}
}
