:root {
	--faq-bg-1: #ffffff;
	--faq-bg-2: #ffffff;
	--faq-card: #ffffff;
	--faq-card-border: rgba(241, 66, 66, 0.22);
	--faq-text: #1c1c1c;
	--faq-muted: #5b5b5b;
	--faq-accent: #f14242;
}

.faq-2026 {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 3vw, 3rem) 1.25rem clamp(2.5rem, 5vw, 5rem);
	color: var(--faq-text);
	background: linear-gradient(165deg, var(--faq-bg-1) 0%, var(--faq-bg-2) 100%);
	font-family: "Segoe UI", system-ui, sans-serif;
}

.faq-2026::after {
	content: none;
	position: absolute;
	inset: 0;
}

.faq-2026__intro,
.faq-2026__list {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.faq-2026__intro {
	text-align: center;
}

.faq-2026__eyebrow {
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.76rem;
	color: var(--faq-accent);
	font-weight: 700;
}

.faq-2026 h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.1;
}

.faq-2026__lead {
	margin: 0.9rem auto 2rem;
	color: var(--faq-muted);
	max-width: 640px;
}

.faq-2026__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

@media (min-width: 900px) {
	.faq-2026__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

.faq-2026__column {
	display: grid;
	gap: 0.85rem;
	align-content: start;
}

@media (min-width: 900px) {
	.faq-2026__column {
		gap: 1rem;
	}
}

.faq-2026__item {
	background: var(--faq-card);
	border: 1px solid var(--faq-card-border);
	border-radius: 14px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
	transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
	align-self: start;
}

.faq-2026__item:hover {
	border-color: rgba(241, 66, 66, 0.5);
	transform: translateY(-1px);
}

.faq-2026__item.is-open {
	background: #ffffff;
	border-color: rgba(241, 66, 66, 0.55);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.faq-2026__question {
	width: 100%;
	border: 0;
	background: transparent;
	color: var(--faq-text);
	text-align: left;
	padding: 1rem 1.2rem;
	font-size: clamp(1rem, 2vw, 1.14rem);
	font-weight: 650;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
}

.faq-2026__question:focus-visible {
	outline: 2px solid var(--faq-accent);
	outline-offset: -2px;
	border-radius: 12px;
}

.faq-2026__icon {
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--faq-accent);
	border-bottom: 2px solid var(--faq-accent);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
	flex: 0 0 auto;
}

.faq-2026__item.is-open .faq-2026__icon {
	transform: rotate(225deg);
}

.faq-2026__answer {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	padding: 0 1.2rem;
	color: var(--faq-muted);
	transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.32s ease;
}

.faq-2026__item.is-open .faq-2026__answer {
	opacity: 1;
	padding: 0 1.2rem 1.15rem;
}

.faq-2026__answer p {
	margin: 0.55rem 0 0;
	line-height: 1.62;
}

@media (max-width: 720px) {
	.faq-2026 {
		padding-inline: 0.95rem;
	}

	.faq-2026__question {
		padding: 0.95rem 0.95rem;
	}

	.faq-2026__answer {
		padding: 0 0.95rem 1rem;
	}
}
