/* =========================================================
 * Tech Resolve — Quote FAQ
 * Version: 2.1.0
 * Homepage Typography Alignment
 * ======================================================= */
.tr-quote-faq {
	position: relative;
	overflow: hidden;
	padding: clamp(115px,11vw,185px) var(--tr-gutter);
	color: #ffffff;
	background: #06100d;
}
.tr-quote-faq::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .1;
	background-image: linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
	background-size: 72px 72px;
	pointer-events: none;
}
.tr-quote-faq__shell {
	position: relative;
	z-index: 2;
	width: min(100%,var(--tr-container));
	margin: 0 auto;
}
.tr-quote-faq__header {
	margin-bottom: clamp(72px,8vw,105px);
}
.tr-quote-faq__header > span {
	display: block;
	margin-bottom: 18px;
	color: var(--tr-green);
	font-size: var(--tr-text-ui);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
	letter-spacing: .15em;
}
.tr-quote-faq__header > div {
	display: grid;
	grid-template-columns: minmax(0,1.08fr) minmax(320px,.54fr);
	gap: clamp(50px,8vw,120px);
	align-items: end;
}
.tr-quote-faq__header h2 {
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(43px,4.6vw,72px);
	font-weight: 790;
	line-height: 1.01;
	letter-spacing: -.052em;
	text-wrap: balance;
}
.tr-quote-faq__header p {
	margin: 0;
	color: rgba(255,255,255,.64) !important;
	font-size: var(--tr-text-body);
	font-weight: var(--tr-weight-body);
	line-height: var(--tr-line-body);
}
.tr-quote-faq__list {
	border-top: 1px solid rgba(255,255,255,.1);
}
.tr-quote-faq__item {
	border-bottom: 1px solid rgba(255,255,255,.09);
}
.tr-quote-faq__question {
	display: grid;
	grid-template-columns: 78px minmax(0,1fr) 42px;
	gap: 28px;
	align-items: center;
	width: 100%;
	min-height: 112px;
	padding: 26px 0;
	text-align: left;
	color: #ffffff !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
}
.tr-quote-faq__question > span {
	color: var(--tr-green);
	font-size: var(--tr-text-label);
	font-weight: var(--tr-weight-label);
	line-height: var(--tr-line-ui);
}
.tr-quote-faq__question > strong {
	color: #ffffff !important;
	font-size: clamp(20px,1.8vw,26px);
	font-weight: 750;
	line-height: 1.16;
	letter-spacing: -.03em;
}
.tr-quote-faq__question > i {
	position: relative;
	width: 36px;
	height: 36px;
	justify-self: end;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 50%;
}
.tr-quote-faq__question > i::before,
.tr-quote-faq__question > i::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1px;
	background: var(--tr-green);
	transform: translate(-50%,-50%);
	transition: transform .28s var(--tr-ease);
}
.tr-quote-faq__question > i::after {
	transform: translate(-50%,-50%) rotate(90deg);
}
.tr-quote-faq__question[aria-expanded="true"] > i::after {
	transform: translate(-50%,-50%);
}
.tr-quote-faq__question:focus-visible {
	outline: 2px solid var(--tr-green);
	outline-offset: 6px;
}
.tr-quote-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s var(--tr-ease);
}
.tr-quote-faq__panel[aria-hidden="false"] {
	grid-template-rows: 1fr;
}
.tr-quote-faq__panel > div {
	overflow: hidden;
}
.tr-quote-faq__panel p {
	max-width: 860px;
	margin: 0 0 38px 106px;
	color: rgba(255,255,255,.62) !important;
	font-size: var(--tr-text-card);
	font-weight: var(--tr-weight-body);
	line-height: var(--tr-line-card);
}
.tr-quote-faq h1,
.tr-quote-faq h2,
.tr-quote-faq h3,
.tr-quote-faq h4,
.tr-quote-faq h5,
.tr-quote-faq h6,
.tr-quote-faq strong {
	color: #ffffff !important;
}
@media(hover:hover) {
	.tr-quote-faq__question:hover > strong {
		color: var(--tr-green) !important;
	}
}
@media(max-width:720px) {
	.tr-quote-faq {
		padding: 90px var(--tr-gutter);
	}
	.tr-quote-faq__header > div {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.tr-quote-faq__header h2 {
		font-size: clamp(38px,10vw,50px);
	}
	.tr-quote-faq__question {
		grid-template-columns: 42px minmax(0,1fr) 36px;
		gap: 14px;
		min-height: 96px;
		padding: 22px 0;
	}
	.tr-quote-faq__question > strong {
		font-size: clamp(20px,5.8vw,25px);
	}
	.tr-quote-faq__panel p {
		margin: 0 0 32px 56px;
		font-size: var(--tr-text-card);
	}
}
@media(prefers-reduced-motion:reduce) {
	.tr-quote-faq__panel,
	.tr-quote-faq__question > i::before,
	.tr-quote-faq__question > i::after {
		transition: none;
	}
}