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

.section-faq {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(64px, 6vw, 86px) 20px clamp(62px, 5.6vw, 78px);
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 38%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #edf7fd 100%);
	color: #151b2a;
	font-family: inherit;
	content-visibility: auto;
	contain-intrinsic-size: 760px;
}

.section-faq::before,
.section-faq::after {
	content: none;
}

.section-faq__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1160px);
	margin: 0 auto;
}

.section-faq__header {
	margin: 0 auto 28px;
	text-align: center;
}

.section-faq__eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 0 14px;
	color: rgba(11, 150, 198, 0.82);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.section-faq__eyebrow::before,
.section-faq__eyebrow::after {
	content: "";
	display: block;
	width: 2px;
	height: 16px;
	border-radius: 999px;
	background: rgba(11, 150, 198, 0.70);
}

.section-faq__title {
	margin: 0;
	color: #071f63;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 4.5vw, 58px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.045em;
}

.section-faq__lead {
	max-width: 780px;
	margin: 13px auto 0;
	color: rgba(7, 31, 99, 0.48);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.52;
}

.section-faq__list {
	display: grid;
	gap: 12px;
	margin: 0;
}

.section-faq__item {
	position: relative;
	margin: 0;
	border: 1px solid rgba(7, 31, 99, 0.055);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow:
		0 10px 26px rgba(7, 31, 99, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.82) inset;
	overflow: hidden;
	transition:
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		background 0.22s ease,
		transform 0.22s ease;
}

.section-faq__item:hover,
.section-faq__item[open] {
	border-color: rgba(11, 150, 198, 0.18);
	background: #ffffff;
	box-shadow:
		0 14px 34px rgba(7, 31, 99, 0.10),
		0 0 0 1px rgba(255, 255, 255, 0.90) inset;
}

.section-faq__question {
	position: relative;
	min-height: 68px;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 26px;
	align-items: center;
	gap: 24px;
	cursor: pointer;
	list-style: none;
	outline: none;
}

.section-faq__question::-webkit-details-marker {
	display: none;
}

.section-faq__question:focus-visible {
	box-shadow: 0 0 0 3px rgba(11, 150, 198, 0.18) inset;
}

.section-faq__plus {
	position: relative;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(232, 247, 253, 0.95);
	box-shadow: 0 8px 18px rgba(7, 31, 99, 0.055);
}

.section-faq__plus::before,
.section-faq__plus::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 2px;
	border-radius: 999px;
	background: #0b96c6;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.section-faq__plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.section-faq__item[open] .section-faq__plus::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.section-faq__question-text {
	min-width: 0;
	color: #071f63;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.015em;
}

.section-faq__chevron {
	position: relative;
	justify-self: end;
	width: 18px;
	height: 18px;
	opacity: 0.74;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

.section-faq__chevron::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 48%;
	width: 10px;
	height: 10px;
	border-right: 2px solid rgba(7, 31, 99, 0.58);
	border-bottom: 2px solid rgba(7, 31, 99, 0.58);
	transform: translate(-50%, -65%) rotate(45deg);
}

.section-faq__item[open] .section-faq__chevron {
	transform: rotate(180deg);
	opacity: 1;
}

.section-faq__answer {
	padding: 0 32px 28px 94px;
}

.section-faq__answer-content {
	max-width: 920px;
	padding-top: 2px;
	color: rgba(21, 27, 42, 0.80);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.62;
	text-align: left;
}

.section-faq__answer-content p {
	margin: 0;
	text-align: left;
}

.section-faq__answer-content p + p {
	margin-top: 10px;
}

.section-faq__answer-content a,
.section-faq__answer-content a:visited,
.section-faq__answer-content a:hover,
.section-faq__answer-content a:focus {
	color: inherit;
	font-weight: inherit;
	text-decoration: none;
	box-shadow: none;
}

.section-faq__answer-content p:last-child:has(> a:only-child) {
	text-align: right;
}

.section-faq__answer-content p:last-child:has(> a:only-child) a {
	display: inline-block;
	color: rgba(7, 31, 99, 0.52);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.02em;
}

.section-faq__cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.section-faq__cta {
	display: inline-grid;
	grid-template-columns: 26px auto auto 32px;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	min-width: min(454px, 100%);
	padding: 0 16px;
	border: 1px solid rgba(11, 150, 198, 0.22);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow:
		0 10px 24px rgba(7, 31, 99, 0.055),
		0 0 0 1px rgba(255, 255, 255, 0.84) inset;
	color: #071f63;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease,
		background 0.2s ease;
}

.section-faq__cta:hover,
.section-faq__cta:focus-visible {
	color: #071f63;
	background: #ffffff;
	border-color: rgba(11, 150, 198, 0.36);
	box-shadow: 0 14px 30px rgba(7, 31, 99, 0.08);
	transform: translateY(-2px);
	text-decoration: none;
}

.section-faq__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #0b96c6;
}

.section-faq__cta-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.section-faq__cta-label {
	color: rgba(7, 31, 99, 0.78);
}

.section-faq__cta-text {
	color: rgba(11, 150, 198, 0.76);
	font-size: 14px;
	font-weight: 700;
}

.section-faq__cta-arrow {
	position: relative;
	justify-self: end;
	width: 25px;
	height: 14px;
}

.section-faq__cta-arrow::before,
.section-faq__cta-arrow::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	background: #0b96c6;
}

.section-faq__cta-arrow::before {
	width: 25px;
	height: 1.5px;
	transform: translateY(-50%);
}

.section-faq__cta-arrow::after {
	width: 8px;
	height: 8px;
	border-top: 1.5px solid #0b96c6;
	border-right: 1.5px solid #0b96c6;
	background: transparent;
	transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
	.section-faq {
		padding: 52px 14px 56px;
		contain-intrinsic-size: 980px;
	}

	.section-faq__header {
		margin-bottom: 24px;
	}

	.section-faq__eyebrow {
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.section-faq__title {
		font-size: 34px;
		line-height: 1.08;
	}

	.section-faq__lead {
		font-size: 15px;
		line-height: 1.48;
	}

	.section-faq__question {
		min-height: 64px;
		grid-template-columns: 32px minmax(0, 1fr) 20px;
		gap: 15px;
		padding: 0 18px;
	}

	.section-faq__plus {
		width: 28px;
		height: 28px;
	}

	.section-faq__question-text {
		font-size: 17px;
		line-height: 1.28;
	}

	.section-faq__answer {
		padding: 0 18px 24px 65px;
	}

	.section-faq__answer-content {
		font-size: 15.5px;
		line-height: 1.62;
	}

	.section-faq__cta {
		grid-template-columns: 26px minmax(0, 1fr) 28px;
		gap: 8px;
		min-width: 0;
		width: 100%;
		min-height: 50px;
		padding: 0 14px;
	}

	.section-faq__cta-label {
		display: none;
	}
}

@media (max-width: 480px) {
	.section-faq__title {
		font-size: 30px;
	}

	.section-faq__lead {
		font-size: 14.5px;
	}

	.section-faq__question {
		min-height: 60px;
		gap: 12px;
	}

	.section-faq__question-text {
		font-size: 16px;
	}

	.section-faq__answer {
		padding-left: 62px;
	}

	.section-faq__cta-text {
		font-size: 13.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-faq__item,
	.section-faq__plus::before,
	.section-faq__plus::after,
	.section-faq__chevron,
	.section-faq__cta {
		transition: none;
	}
}
