/* Variables and Resets */
:root {
	--pfaq-primary: #111D44;
	--pfaq-secondary: #263B75;
	--pfaq-accent: #FF4B25;
	--pfaq-text: #FFFFFF;
	--pfaq-glass-bg: rgba(255,255,255,0.03);
	--pfaq-glass-border: rgba(255,255,255,0.08);
	--pfaq-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pfaq-093c7f6c-wrapper {
	position: relative;
	width: 100%;
	background-color: var(--pfaq-primary);
	color: var(--pfaq-text);
	overflow: hidden;
	z-index: 1;
	border-radius: 24px;
	padding: 60px 40px;
}

.pfaq-093c7f6c-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
}

/* Glows */
.pfaq-093c7f6c-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	z-index: -1;
	opacity: 0.5;
	pointer-events: none;
}
.pfaq-glow-1 {
	top: -10%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: rgba(255, 75, 37, 0.15);
}
.pfaq-glow-2 {
	bottom: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: rgba(38, 59, 117, 0.4);
}

/* Compass Decor */
.pfaq-093c7f6c-compass-decor {
	position: absolute;
	top: 40px;
	right: 40px;
	color: rgba(255,255,255,0.2);
	z-index: -1;
	animation: pfaq-rotate 60s linear infinite;
	pointer-events: none;
}
@keyframes pfaq-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.pfaq-093c7f6c-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

/* Header */
.pfaq-093c7f6c-header {
	margin-bottom: 40px;
}
.pfaq-093c7f6c-eyebrow {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 16px;
}
.pfaq-093c7f6c-heading {
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.1;
	font-weight: 400;
	margin: 0 0 20px;
	letter-spacing: -1px;
}
.pfaq-093c7f6c-subtitle {
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.8;
	margin: 0;
	max-width: 600px;
	margin: 0 auto;
}
.pfaq-093c7f6c-header[style*="text-align: left"] .pfaq-093c7f6c-subtitle {
	margin: 0;
}
.pfaq-093c7f6c-header[style*="text-align: right"] .pfaq-093c7f6c-subtitle {
	margin: 0 0 0 auto;
}

/* Search */
.pfaq-093c7f6c-search-container {
	margin-bottom: 30px;
}
.pfaq-093c7f6c-search-wrapper {
	display: flex;
	align-items: center;
	background: var(--pfaq-glass-bg);
	border: 1px solid var(--pfaq-glass-border);
	border-radius: 12px;
	padding: 4px 20px;
	transition: var(--pfaq-transition);
}
.pfaq-093c7f6c-search-wrapper:focus-within {
	border-color: rgba(255,255,255,0.3);
	background: rgba(255,255,255,0.05);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.pfaq-093c7f6c-search-icon {
	color: rgba(255,255,255,0.5);
	margin-right: 12px;
	font-size: 16px;
	display: flex;
}
.pfaq-093c7f6c-search-input {
	flex: 1;
	background: transparent !important;
	border: none !important;
	color: #fff !important;
	padding: 16px 0 !important;
	font-size: 16px;
	outline: none !important;
	box-shadow: none !important;
}
.pfaq-093c7f6c-search-input::placeholder {
	color: rgba(255,255,255,0.4);
}

/* Categories */
.pfaq-093c7f6c-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
	justify-content: center;
}
.pfaq-093c7f6c-cat-btn {
	background: var(--pfaq-glass-bg);
	border: 1px solid var(--pfaq-glass-border);
	color: rgba(255,255,255,0.7);
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--pfaq-transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.pfaq-093c7f6c-cat-btn:hover {
	background: rgba(255,255,255,0.1);
	color: #fff;
}
.pfaq-093c7f6c-cat-btn.active {
	background: #fff;
	color: var(--pfaq-primary);
	border-color: #fff;
}
.pfaq-093c7f6c-cat-icon {
	display: flex;
	font-size: 14px;
}

/* FAQ List */
.pfaq-093c7f6c-faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 60px;
}
.pfaq-093c7f6c-item {
	background: var(--pfaq-glass-bg);
	border: 1px solid var(--pfaq-glass-border);
	border-radius: 16px;
	overflow: hidden;
	transition: var(--pfaq-transition);
}
.pfaq-093c7f6c-item:hover {
	border-color: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}
.pfaq-093c7f6c-item.active {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.2);
}
.pfaq-093c7f6c-q-wrap {
	display: flex;
	align-items: center;
	padding: 24px;
	cursor: pointer;
	user-select: none;
}
.pfaq-093c7f6c-item-icon {
	margin-right: 16px;
	color: var(--pfaq-accent);
	font-size: 20px;
	display: flex;
	flex-shrink: 0;
}
.pfaq-093c7f6c-q {
	flex: 1;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	color: #fff;
	transition: color 0.3s;
}
.pfaq-093c7f6c-toggle-icon {
	margin-left: 20px;
	color: rgba(255,255,255,0.4);
	display: flex;
	transition: var(--pfaq-transition);
	flex-shrink: 0;
}
.pfaq-093c7f6c-item.active .pfaq-093c7f6c-toggle-icon {
	transform: rotate(180deg);
	color: var(--pfaq-accent);
}
.pfaq-093c7f6c-a-wrap {
	height: 0;
	overflow: hidden;
	transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pfaq-093c7f6c-a {
	padding: 0 24px 24px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	font-size: 16px;
}
.pfaq-093c7f6c-a p:last-child {
	margin-bottom: 0;
}
.pfaq-093c7f6c-no-results {
	text-align: center;
	padding: 40px;
	color: rgba(255,255,255,0.5);
	font-style: italic;
	background: var(--pfaq-glass-bg);
	border-radius: 16px;
	border: 1px dashed var(--pfaq-glass-border);
}

/* Trust Section */
.pfaq-093c7f6c-trust-section {
	margin-bottom: 60px;
	display: grid;
	gap: 20px;
}
.pfaq-093c7f6c-trust-section.layout-grid {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.pfaq-093c7f6c-trust-section.layout-horizontal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pfaq-093c7f6c-trust-card {
	background: var(--pfaq-glass-bg);
	border: 1px solid var(--pfaq-glass-border);
	padding: 24px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: var(--pfaq-transition);
}
.pfaq-093c7f6c-trust-card:hover {
	background: rgba(255,255,255,0.06);
	transform: translateY(-2px);
}
.pfaq-093c7f6c-trust-icon {
	color: var(--pfaq-accent);
	font-size: 28px;
	display: flex;
}
.pfaq-093c7f6c-trust-content {
	display: flex;
	flex-direction: column;
}
.pfaq-093c7f6c-trust-num {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}
.pfaq-093c7f6c-trust-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
	margin-top: 4px;
}

/* CTA Section */
.pfaq-093c7f6c-cta-section {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid var(--pfaq-glass-border);
}
.pfaq-093c7f6c-cta-heading {
	font-size: 28px;
	font-weight: 400;
	margin: 0 0 16px;
}
.pfaq-093c7f6c-cta-desc {
	font-size: 16px;
	color: rgba(255,255,255,0.7);
	margin: 0 0 30px;
}
.pfaq-093c7f6c-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.pfaq-093c7f6c-btn1, .pfaq-093c7f6c-btn2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--pfaq-transition);
}
.pfaq-093c7f6c-btn1 {
	border: none;
}
.pfaq-093c7f6c-btn1:hover {
	transform: translateY(-3px);
}
.pfaq-093c7f6c-btn2 {
	border: 1px solid transparent;
}
.pfaq-093c7f6c-btn2:hover {
	transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
	.pfaq-093c7f6c-wrapper {
		padding: 40px 20px;
	}
	.pfaq-093c7f6c-header {
		text-align: center;
	}
	.pfaq-093c7f6c-cta-buttons {
		flex-direction: column;
	}
	.pfaq-093c7f6c-btn1, .pfaq-093c7f6c-btn2 {
		width: 100%;
	}
	.pfaq-093c7f6c-trust-section.layout-horizontal {
		flex-direction: column;
	}
}
