/* UA FAQ + knowledge promo */

.ua-faq-wrap { --f-navy:#16294a; --f-blue:#2e75b6; --f-mid:#2a4a82; --f-wash:#f2f5fb; --f-steel:#c5cee0; --f-ease:cubic-bezier(0.22,0.61,0.36,1); }

.ua-faq-search { margin-bottom: 18px; }

.ua-faq-search input {
	width: 100%;
	padding: 13px 16px;
	font-size: 1rem;
	color: var(--f-navy);
	border: 1px solid var(--f-steel);
	border-radius: 8px;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237a8699' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") no-repeat 16px center;
	padding-left: 46px;
	transition: border-color 0.18s var(--f-ease), box-shadow 0.18s var(--f-ease);
}

.ua-faq-search input:focus {
	outline: none;
	border-color: var(--f-blue);
	box-shadow: 0 0 0 3px rgba(46,117,182,0.16);
}

.ua-faq-list { display: flex; flex-direction: column; gap: 10px; }

.ua-faq-item {
	border: 1px solid var(--f-steel);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.24s var(--f-ease), box-shadow 0.24s var(--f-ease);
}

.ua-faq-item.ua-open {
	border-color: var(--f-blue);
	box-shadow: 0 6px 20px rgba(22,41,74,0.09);
}

.ua-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 17px 20px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--f-navy);
	transition: background 0.2s var(--f-ease);
}

.ua-faq-q:hover { background: var(--f-wash); }

.ua-faq-icon {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

.ua-faq-icon::before, .ua-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--f-blue);
	border-radius: 2px;
	transition: transform 0.3s var(--f-ease), opacity 0.3s var(--f-ease);
}

.ua-faq-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.ua-faq-icon::after  { top: 2px; left: 9px; width: 2px; height: 16px; }

.ua-open .ua-faq-icon::after { transform: rotate(90deg); opacity: 0; }
.ua-open .ua-faq-icon::before { transform: rotate(180deg); }

.ua-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--f-ease);
}

.ua-faq-a-inner {
	padding: 0 20px 20px;
	color: #4a5673;
	font-size: 0.97rem;
	line-height: 1.65;
}

.ua-faq-nomatch {
	margin-top: 16px;
	padding: 16px;
	text-align: center;
	color: #7a8699;
	font-style: italic;
}

.ua-faq-cta {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid rgba(197,206,224,0.7);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.ua-faq-cta span { color: var(--f-mid); font-weight: 500; }

/* highlight matched text */
.ua-faq-hl { background: rgba(46,117,182,0.18); border-radius: 3px; padding: 0 2px; }

/* ---------- knowledge promo ---------- */

.ua-kpromo {
	background: linear-gradient(125deg, #16294a 0%, #2a4a82 55%, #2e75b6 100%);
	border: 0;
	color: #fff;
	overflow: hidden;
	position: relative;
}

.ua-kpromo::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
	pointer-events: none;
}

.ua-kpromo-inner {
	display: flex;
	gap: 22px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ua-kpromo-icon { font-size: 3rem; line-height: 1; flex: 0 0 auto; }

.ua-kpromo-tag {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #bcd3ef;
	margin-bottom: 8px;
}

.ua-kpromo-title {
	margin: 0 0 10px !important;
	color: #fff !important;
	font-size: 1.4rem !important;
	line-height: 1.25 !important;
}

.ua-kpromo-title::after { display: none !important; }

.ua-kpromo-text { margin: 0 0 18px; color: #dfeaf7; font-size: 1rem; line-height: 1.6; }

.ua-kpromo .ua-btn-primary { background: #fff; color: #16294a; }
.ua-kpromo .ua-btn-primary:hover { background: #eaf1fb; color: #16294a; }

@media (max-width: 640px) {
	.ua-kpromo-inner { flex-direction: column; text-align: center; }
	.ua-faq-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	.ua-faq-a, .ua-faq-icon::before, .ua-faq-icon::after, .ua-faq-item { transition: none !important; }
}
