.sp-faq-root,
.sp-faq-root * {
	box-sizing: border-box;
}

.sp-faq-root {
	position: relative;
	isolation: isolate;
	width: 100%;
	padding: 90px 24px;
	background: #111213;
	color: #fff;
}

.sp-faq-inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.sp-faq-header {
	position: relative;
	max-width: 950px;
	margin: 0 auto 64px;
	text-align: center;
}

.sp-faq-eyebrow {
	margin: 0 0 20px;
	color: #3b82f6;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sp-faq-heading {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.04em;
}

.sp-faq-description {
	max-width: 720px;
	margin-inline: auto;
	color: #9aa4b5;
	font-size: 17px;
	line-height: 1.7;
}

.sp-faq-decorative-dot {
	position: absolute;
	top: 15px;
	right: -130px;
	width: 12px;
	height: 12px;
	border: 1px solid #00c8f8;
	border-radius: 50%;
	background: #00c8f8;
	box-shadow: 0 0 0 7px rgba(0, 200, 248, .08);
}

.sp-faq-accordion-wrap {
	width: 100%;
	max-width: 930px;
	margin-inline: auto;
}

.sp-faq-tools {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}

.sp-faq-search {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid #292c31;
	border-radius: 12px;
	background: #17191c;
}

.sp-faq-search-icon {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #8c96a8;
	font-size: 16px;
	transform: translateY(-50%);
	pointer-events: none;
}

.sp-faq-search-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-faq-search-input {
	display: block;
	width: 100%;
	padding: 15px 78px 15px 48px;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font: inherit;
}

.sp-faq-search-input::placeholder {
	color: #6f7785;
}

.sp-faq-root button {
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	text-transform: none;
}

.sp-faq-search-clear {
	position: absolute;
	top: 50%;
	right: 14px;
	padding: 5px 8px;
	border: 0;
	background: transparent;
	color: #00c8f8;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transform: translateY(-50%);
}

.sp-faq-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.sp-faq-filter {
	padding: 9px 14px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #17191e;
	color: #a4acb9;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.sp-faq-filter:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 200, 248, .4);
}

.sp-faq-filter.is-active {
	background: #00c8f8;
	color: #050505;
}

.sp-faq-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.sp-faq-root.layout-two .sp-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.sp-faq-root.layout-two .sp-faq-accordion-wrap {
	max-width: none;
}

.sp-faq-root.layout-split .sp-faq-inner {
	display: grid;
	grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: clamp(50px, 8vw, 130px);
}

.sp-faq-root.layout-split .sp-faq-header {
	position: sticky;
	top: 110px;
	margin: 0;
	text-align: left;
}

.sp-faq-root.layout-split .sp-faq-header .sp-faq-description {
	margin-inline: 0;
}

.sp-faq-root.layout-split .sp-faq-accordion-wrap {
	max-width: none;
}

.sp-faq-item {
	display: block;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #2a2c30;
	border-radius: 14px;
	background: #171819;
	box-shadow: none;
	transition-property: transform, border-color, box-shadow, background-color;
	transition-duration: .28s;
	transition-timing-function: ease;
}

.sp-faq-item:hover,
.sp-faq-item.is-open {
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 100% 100% !important;
}

.sp-faq-root.hover-lift .sp-faq-item:hover {
	transform: translateY(-3px);
	border-color: rgba(59, 130, 246, .48);
	box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.sp-faq-root.hover-glow .sp-faq-item:hover {
	border-color: #2563eb;
	box-shadow: 0 0 0 1px rgba(37, 99, 235, .15), 0 0 32px rgba(37, 99, 235, .12);
}

.sp-faq-root.hover-slide .sp-faq-item:hover .sp-faq-question-content {
	transform: translateX(5px);
}

.sp-faq-item.is-open {
	border-color: #2a5dcc;
	background: #16191f;
}

.sp-faq-item[hidden] {
	display: none !important;
}

.sp-faq-root .sp-faq-question {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	height: auto;
	margin: 0 !important;
	padding: 28px 30px;
	gap: 18px;
	border: 0;
	border-radius: 0 !important;
	outline: 0;
	-webkit-appearance: none;
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	color: inherit;
	font: inherit;
	line-height: normal;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	transform: none;
	cursor: pointer;
}

.sp-faq-root .sp-faq-question::before,
.sp-faq-root .sp-faq-question::after {
	display: none !important;
	content: none !important;
}

/*
 * Keep the accordion trigger transparent in every interaction state.
 * Many themes and Elementor Global Styles apply a brand/accent background to
 * generic button:hover rules. The FAQ card background is controlled on the
 * parent .sp-faq-item, so the trigger must not cover it with a theme color.
 */
.sp-faq-root .sp-faq-question:hover,
.sp-faq-root .sp-faq-question:focus,
.sp-faq-root .sp-faq-question:active,
.sp-faq-root .sp-faq-item.is-open > .sp-faq-question {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}

.sp-faq-question:focus-visible {
	outline: 2px solid #3b82f6;
	outline-offset: -3px;
}

.sp-faq-question-content {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	gap: 18px;
	transition: transform .25s ease;
}

.sp-faq-number {
	flex: 0 0 auto;
	padding-top: .12em;
	color: #4b5563;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
}

.sp-faq-question-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 9px;
}

.sp-faq-question-title {
	color: #fff;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.35;
	transition: color .2s ease;
}

.sp-faq-question-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.sp-faq-category,
.sp-faq-featured {
	display: inline-flex;
	align-items: center;
	padding: 5px 8px;
	border-radius: 999px;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.sp-faq-category {
	background: #20242c;
	color: #7c8799;
}

.sp-faq-featured {
	background: #00c8f8;
	color: #061018;
}

.sp-faq-icon {
	position: relative;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: transparent;
	color: #3b82f6;
	font-size: 16px;
	line-height: 1;
	transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.sp-faq-icon span {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity .25s ease, transform .25s ease;
}

.sp-faq-icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-faq-icon-close {
	opacity: 0;
	transform: scale(.7);
}

.sp-faq-item.is-open .sp-faq-icon {
	background: #2563eb;
	color: #fff;
}

.sp-faq-item.is-open .sp-faq-icon-open {
	opacity: 0;
	transform: scale(.7);
}

.sp-faq-item.is-open .sp-faq-icon-close {
	opacity: 1;
	transform: scale(1);
}

.sp-faq-root.icon-rotate .sp-faq-item.is-open .sp-faq-icon {
	transform: rotate(180deg);
}

.sp-faq-root.icon-scale .sp-faq-item.is-open .sp-faq-icon {
	transform: scale(1.08);
}

.sp-faq-answer {
	overflow: hidden;
	height: 0;
}

.sp-faq-answer[hidden] {
	display: block;
}

.sp-faq-answer-inner {
	position: relative;
	padding: 0 76px 30px 30px;
	color: #a4adbc;
	font-size: 15px;
	line-height: 1.75;
}

.sp-faq-answer-inner::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-bottom: 22px;
	background: rgba(255, 255, 255, .07);
}

.sp-faq-answer-inner > :first-child {
	margin-top: 0;
}

.sp-faq-answer-inner > :last-child {
	margin-bottom: 0;
}

.sp-faq-answer-inner a {
	color: #3b82f6;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sp-faq-no-results {
	padding: 32px;
	border: 1px dashed #323740;
	border-radius: 14px;
	color: #8f98a8;
	text-align: center;
}

.sp-faq-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 50px;
	padding: 30px 34px;
	border: 1px solid #2b3038;
	border-radius: 18px;
	background: linear-gradient(135deg, #17191f, #111317);
}

.sp-faq-cta-main {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 18px;
}

.sp-faq-cta-icon {
	flex: 0 0 auto;
	display: inline-flex;
	color: #00c8f8;
	font-size: 34px;
}

.sp-faq-cta-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sp-faq-cta-title {
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
}

.sp-faq-cta-description {
	margin-top: 5px;
	color: #9ca5b5;
	font-size: 14px;
	line-height: 1.55;
}

.sp-faq-cta-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 10px;
	background: #2563eb;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sp-faq-cta-button:hover {
	background: #00c8f8;
	color: #061018;
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 200, 248, .2);
}

.sp-faq-cta-button svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

@media (max-width: 1024px) {
	.sp-faq-root {
		padding: 72px 24px;
	}

	.sp-faq-root.layout-split .sp-faq-inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.sp-faq-root.layout-split .sp-faq-header {
		position: static;
		max-width: 800px;
		margin-inline: auto;
		text-align: center;
	}

	.sp-faq-root.layout-split .sp-faq-header .sp-faq-description {
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.sp-faq-root {
		padding: 58px 16px;
	}

	.sp-faq-heading {
		font-size: clamp(32px, 10vw, 44px);
	}

	.sp-faq-description {
		font-size: 15px;
	}

	.sp-faq-decorative-dot {
		display: none;
	}

	.sp-faq-root.layout-two .sp-faq-list {
		grid-template-columns: 1fr;
	}

	.sp-faq-question {
		padding: 22px 20px;
	}

	.sp-faq-question-title {
		font-size: 16px;
	}

	.sp-faq-answer-inner {
		padding: 0 20px 24px;
	}

	.sp-faq-cta {
		align-items: stretch;
		flex-direction: column;
		padding: 25px;
	}

	.sp-faq-cta-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sp-faq-root *,
	.sp-faq-root *::before,
	.sp-faq-root *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
