/*
 * FAQ page — closing CTA card.
 *
 * Visually identical to the Article CTA: same outer card with the corner
 * glow and the home-offer-spot decoration, same dark/light button pair.
 * Only the heading and body copy differ. Spacing per spec: 120px gap from
 * the last accordion item to this block.
 */

.faq-cta {
	margin-top: 120px;
	margin-bottom: 80px;
}

.faq-cta__inner {
	position: relative;
	width: min(1344px, 100%);
	margin: 0 auto;
	padding: 40px 48px;
	border-radius: 24px;
	border: 1px solid rgba(100, 100, 102, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 102% 28%, rgba(115, 172, 203, 0.24) 0%, rgba(115, 172, 203, 0.1) 24%, rgba(115, 172, 203, 0.035) 40%, rgba(115, 172, 203, 0) 58%),
		linear-gradient(180deg, rgba(20, 28, 43, 0.2) 0%, rgba(6, 10, 18, 0.14) 100%);
}

/* Bottom-left soft cyan glow. */
.faq-cta__inner::before {
	content: "";
	position: absolute;
	left: -116px;
	bottom: -126px;
	width: 286px;
	height: 286px;
	z-index: 0;
	border-radius: 50%;
	background: radial-gradient(
		circle at 62% 38%,
		rgba(115, 172, 203, 0.36) 0%,
		rgba(115, 172, 203, 0.14) 30%,
		rgba(115, 172, 203, 0.05) 50%,
		transparent 68%
	);
	filter: blur(18px);
	opacity: 0.58;
	pointer-events: none;
}

/* Top-right decorative spot (same asset as the Article CTA / Home offer). */
.faq-cta__inner::after {
	content: "";
	position: absolute;
	top: -34px;
	right: -14px;
	width: 318px;
	height: 262px;
	z-index: 0;
	pointer-events: none;
	background: url("../../../image/home-offer-spot.png");
	background-repeat: no-repeat;
	background-size: 210% 210%;
	background-position: 90% 20%;
	mask-image: radial-gradient(ellipse 84% 80% at 86% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0) 88%);
	-webkit-mask-image: radial-gradient(ellipse 84% 80% at 86% 26%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0) 88%);
	opacity: 0.32;
}

.faq-cta__copy {
	width: 888px;
	max-width: 100%;
	margin: 0 auto;
}

.faq-cta__title,
.faq-cta__text,
.faq-cta__actions {
	position: relative;
	z-index: 1;
}

.faq-cta__title {
	margin: 0;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.12;
}

.faq-cta__text {
	margin: 12px 0 0;
	max-width: 100%;
	background-image: linear-gradient(90deg, #e6e7eb 0%, #bdd3fa 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	font-size: 16px;
	line-height: 1.3;
}

.faq-cta__actions {
	margin-top: 40px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 47px;
}

.faq-cta__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 420.5px;
	height: 60px;
	padding: 0 16px 0 14px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
}

button.faq-cta__button {
	font: inherit;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.faq-cta__button--dark {
	color: #e6e7eb;
	border: 1px solid #bdd3fa;
	background: rgba(3, 7, 12, 0.86);
}

.faq-cta__button--light {
	color: #0c111b;
	border: 1px solid #a6b9dc;
	background: #a6b9dc;
}

.faq-cta__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 29.5px;
	height: 29.5px;
	border-radius: 3px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 29.5px 29.5px;
}

.faq-cta__button--dark .faq-cta__button-icon {
	background-image: url("../../../image/btn-arrow-light.png");
}

.faq-cta__button--light .faq-cta__button-icon {
	background-image: url("../../../image/btn-arrow-dark.png");
}

@media (max-width: 1024px) {
	.faq-cta__inner {
		padding: 32px 22px;
	}

	.faq-cta__actions {
		gap: 16px;
	}

	.faq-cta__copy {
		width: min(888px, 100%);
	}

	.faq-cta__button {
		width: min(420.5px, 100%);
	}
}

@media (max-width: 768px) {
	.faq-cta {
		margin-top: 80px;
		margin-bottom: 56px;
	}

	.faq-cta__inner {
		padding: 24px 16px 28px;
	}

	.faq-cta__title {
		font-size: 26px;
	}

	.faq-cta__text {
		font-size: 15px;
	}

	.faq-cta__actions {
		flex-direction: column;
		gap: 12px;
	}

	.faq-cta__button {
		width: 100%;
	}
}
