.two-column-split-sticky-section {
	padding: clamp(56px, 7vw, 88px) clamp(24px, 5vw, 72px) clamp(72px, 9vw, 112px) var(--site-gutter, 24px);
	background:
		linear-gradient(180deg, rgba(32, 64, 109, 0.03) 0%, rgba(32, 64, 109, 0) 100%),
		#ffffff;
}

.two-column-split-sticky-section__layout {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(20px, 3vw, 32px);
	row-gap: 32px;
	align-items: start;
}

.two-column-split-sticky-section__intro {
	grid-column: 1;
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.two-column-split-sticky-section__panels {
	grid-column: 2 / span 2;
}

.two-column-split-sticky-section__eyebrow {
	margin: 0;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ff0000;
}

.two-column-split-sticky-section__heading {
	margin: 0;
	max-width: 16.1ch;
	font-family: "Charis SIL", serif;
	font-size: clamp(2.1rem, 4.25vw, 2.9rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: #20406d;
}

.two-column-split-sticky-section__intro-copy,
.two-column-split-sticky-section__intro-copy p {
	margin: 0;
}

.two-column-split-sticky-section__intro-copy {
	max-width: 46ch;
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.62;
	color: #42576e;
}

.two-column-split-sticky-section__intro-copy p + p {
	margin-top: 1em;
}

.two-column-split-sticky-section__panels {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.two-column-split-sticky-section__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px 28px 30px;
	border: 1px solid rgba(32, 64, 109, 0.1);
	background: linear-gradient(180deg, rgba(32, 64, 109, 0.02) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.two-column-split-sticky-section__panel:not(.two-column-split-sticky-section__panel--dropdown) {
	gap: 18px;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel {
	border-color: rgba(255, 255, 255, 0.14);
	background: #20406d;
}

.two-column-split-sticky-section__panel--dropdown {
	padding: 0;
	overflow: hidden;
}

.two-column-split-sticky-section__panel-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px 28px 30px;
	cursor: pointer;
	list-style: none;
}

.two-column-split-sticky-section__panel-summary::-webkit-details-marker {
	display: none;
}

.two-column-split-sticky-section__panel-summary-main {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.two-column-split-sticky-section__panel-summary-main .two-column-split-sticky-section__panel-title {
	margin: 0;
}

.two-column-split-sticky-section__panel-summary-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.two-column-split-sticky-section__panel-summary-toggle img {
	display: block;
	width: 14px;
	height: 14px;
	transform: rotate(45deg);
	transition: transform 0.28s ease, filter 0.28s ease;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-summary-toggle img {
	filter: brightness(0) invert(1);
}

.two-column-split-sticky-section__panel--dropdown[open] .two-column-split-sticky-section__panel-summary-toggle img {
	transform: rotate(135deg);
}

.two-column-split-sticky-section__panel-body {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 0 28px 30px;
	overflow: hidden;
	will-change: height;
}

.two-column-split-sticky-section__panel:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 42px;
	width: 18px;
	height: 18px;
	border-top: 1px solid rgba(32, 64, 109, 0.22);
	border-right: 1px solid rgba(32, 64, 109, 0.22);
	transform: rotate(135deg);
	background: #ffffff;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel:not(:last-child)::after {
	border-top-color: rgba(255, 255, 255, 0.22);
	border-right-color: rgba(255, 255, 255, 0.22);
	background: #20406d;
}

.two-column-split-sticky-section__panel-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 0, 0, 0.26);
	border-radius: 999px;
	color: #ff0000;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-number {
	border-color: rgba(255, 255, 255, 0.24);
	color: #ffffff;
}

.two-column-split-sticky-section__panel-title {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: clamp(1.3rem, 1.7vw, 1.58rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #20406d;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-title,
.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-item-text {
	color: #ffffff;
}

.two-column-split-sticky-section__panel-copy,
.two-column-split-sticky-section__panel-copy p {
	margin: 0;
}

.two-column-split-sticky-section__panel-copy {
	font-family: "Manrope", sans-serif;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.56;
	color: #42576e;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-copy {
	color: rgba(255, 255, 255, 0.82);
}

.two-column-split-sticky-section__panel-copy p + p {
	margin-top: 1em;
}

.two-column-split-sticky-section__panel-items {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.two-column-split-sticky-section__panel-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.two-column-split-sticky-section__panel-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.two-column-split-sticky-section__panel-item-icon img {
	display: block;
	width: auto;
	max-width: 120px;
	max-height: 40px;
	object-fit: contain;
}

.two-column-split-sticky-section__panel-item-text {
	font-family: "Manrope", sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
	color: #20406d;
}

.two-column-split-sticky-section--panel-columns-two .two-column-split-sticky-section__panel-items {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 18px;
	row-gap: 12px;
}

.two-column-split-sticky-section__panel-grouped-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.two-column-split-sticky-section__panel-grouped-icon img {
	display: block;
	width: auto;
	max-width: 120px;
	max-height: 40px;
	object-fit: contain;
}

.two-column-split-sticky-section__panel-ctas {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.two-column-split-sticky-section__panel-cta,
.two-column-split-sticky-section__panel-cta:hover,
.two-column-split-sticky-section__panel-cta:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #ff0000;
	text-decoration: none;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.two-column-split-sticky-section__panel-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.two-column-split-sticky-section__panel-cta-icon img {
	display: block;
	width: 14px;
	height: 14px;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-cta,
.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-cta:hover,
.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-cta:focus {
	color: #ffffff;
}

.two-column-split-sticky-section--panel-dark .two-column-split-sticky-section__panel-cta-icon img {
	filter: brightness(0) invert(1);
}

.two-column-split-sticky-section__cta-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.two-column-split-sticky-section__technology {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	width: 100%;
	max-width: 520px;
}

.two-column-split-sticky-section__technology-copy,
.two-column-split-sticky-section__technology-copy p {
	margin: 0;
}

.two-column-split-sticky-section__technology-copy {
	font-family: "Manrope", sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.42;
	color: #20406d;
}

.two-column-split-sticky-section__technology-copy p + p {
	margin-top: 1em;
}

.two-column-split-sticky-section__technology-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px;
}

.two-column-split-sticky-section__technology-logo {
	display: block;
	height: auto;
	max-width: 100%;
}

.two-column-split-sticky-section__technology-logo--quickquote {
	width: min(189px, 100%);
}

.two-column-split-sticky-section__technology-logo--eagleview {
	width: min(141px, 100%);
}

.two-column-split-sticky-section__cta,
.two-column-split-sticky-section__cta:hover,
.two-column-split-sticky-section__cta:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border: 1px solid #ff0000;
	background: #ff0000;
	color: #ffffff;
	text-decoration: none;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.two-column-split-sticky-section__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.two-column-split-sticky-section__cta-icon img {
	display: block;
	width: 14px;
	height: 14px;
	filter: brightness(0) invert(1);
}

.two-column-split-sticky-section__phone {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #42576e;
}

.two-column-split-sticky-section__phone-link,
.two-column-split-sticky-section__phone-link:hover,
.two-column-split-sticky-section__phone-link:focus {
	color: #20406d;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.two-column-split-sticky-section__layout {
		grid-template-columns: 1fr;
	}

	.two-column-split-sticky-section__intro {
		grid-column: auto;
		position: static;
	}

	.two-column-split-sticky-section__panels {
		grid-column: auto;
	}
}

@media (max-width: 900px) {

	.two-column-split-sticky-section__panel-items,
	.two-column-split-sticky-section--panel-columns-two .two-column-split-sticky-section__panel-items {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (min-width: 901px) and (max-width: 1024px) {
	.two-column-split-sticky-section__panel-items,
	.two-column-split-sticky-section--panel-columns-one .two-column-split-sticky-section__panel-items,
	.two-column-split-sticky-section--panel-columns-two .two-column-split-sticky-section__panel-items {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 18px;
		row-gap: 12px;
	}
}
