/* Get Started — pixel values from Figma (px → rem, base 16px) */

.get-started {
	background: #f5f5f5;
	padding-top:    var( --gst-pt, 3rem );
	padding-bottom: var( --gst-pb, 3rem );
	margin-top:     var( --gst-mt, 0rem );
	margin-bottom:  var( --gst-mb, 0rem );
}

.get-started__inner {
	max-width: 90rem;
	margin: 0 auto;
	padding: 0 5rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 3rem;
}

/* ── Heading area ── */
.get-started__heading-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem; /* 12px — site-standard eyebrow->heading gap */
	text-align: center;
}

.get-started__eyebrow {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 1rem;         /* 16px */
	font-weight: 500;
	letter-spacing: 0.25em; /* 4px */
	text-transform: uppercase;
	color: rgba(0, 13, 38, 0.7);
	margin: 0;
	line-height: 1.35;
}

.get-started__heading {
	font-family: 'Quincy', Georgia, serif;
	font-size: 3.5rem;         /* 64px */
	font-weight: 400;
	line-height: 4.025rem;
	color: #000d26;
	margin: 0;
}

.get-started__body {
	font-family: 'Source Sans 3', system-ui, sans-serif;
	font-size: 1.125rem;     /* 18px */
	font-weight: 400;
	line-height: 1.55;
	color: #000d26;
	margin: 0;
	max-width: 46rem;
}

/* ── Steps grid — 4 equal columns ── */
.get-started__steps {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	justify-content: center;
}

.get-started__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.25rem;
	text-align: center;
}

/* ── Separator dot between steps, vertically centered on the icon row ── */
.get-started__dot {
	align-self: flex-start;
	flex-shrink: 0;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #0b5cff;
	opacity: 0.35;
	margin-top: 2.36875rem; /* centers the dot on the 5.4375rem icon: (5.4375 - 0.7) / 2 */
}

/* ── Step icon: 87px circle, never stretches ── */
.get-started__step-icon {
	width: 5.4375rem;   /* 87px */
	height: 5.4375rem;
	flex-shrink: 0;
}

.get-started__step-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* ── Step title ── */
.get-started__step-title {
	font-family: 'Quincy', Georgia, serif;
	font-size: 1.5rem;       /* 24px */
	font-weight: 400;
	line-height: 1.25;
	color: #000d26;
	margin: 0;
}

/* ── CTA ── */
.get-started__cta-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

/* ── Responsive ── */

@media (max-width: 1200px) {
	.get-started__inner {
		padding: 0 3rem;
	}
	.get-started__heading {
		font-size: 3.5rem; line-height: 4.025rem;
	}
}

/* Tablet: 2 × 2 grid */
@media (max-width: 900px) {
	.get-started__inner {
		padding: 0 2rem;
		gap: 2rem;
	}
	.get-started__heading {
		font-size: 3rem; line-height: 3.45rem;
	}
	.get-started__steps {
		flex-wrap: wrap;
		gap: 2.5rem 3rem;
		justify-content: center;
	}
	.get-started__step {
		flex: 0 0 calc(50% - 1.5rem);
		max-width: calc(50% - 1.5rem);
	}
	.get-started__dot {
		display: none; /* single-row-only decoration; layout wraps to a 2×2 grid here */
	}
}

/* Large mobile */
@media (max-width: 640px) {
	.get-started {
		padding-top:    var( --gst-pt-m, var( --gst-pt, 3rem ) );
		padding-bottom: var( --gst-pb-m, var( --gst-pb, 3rem ) );
		margin-top:     var( --gst-mt-m, var( --gst-mt, 0rem ) );
		margin-bottom:  var( --gst-mb-m, var( --gst-mb, 0rem ) );
	}
	.get-started__inner {
		padding: 0 1.25rem;
		gap: 1.5rem;
	}
	.get-started__heading {
		font-size: 2.5rem; line-height: 2.875rem;
	}
	.get-started__eyebrow {
		font-size: 0.8125rem;
		letter-spacing: 0.2em;
	}
	.get-started__body {
		font-size: 1rem;
	}
	.get-started__steps {
		gap: 2rem 1.25rem;
	}
	.get-started__step {
		flex: 0 0 calc(50% - 0.625rem);
		max-width: calc(50% - 0.625rem);
		gap: 1.25rem;
	}
	.get-started__step-icon {
		width: 4.25rem;   /* 68px */
		height: 4.25rem;
	}
	.get-started__step-title {
		font-size: 1.125rem;
	}
}

/* Small mobile: single column */
@media (max-width: 360px) {
	.get-started__inner {
		padding: 0 1rem;
	}
	.get-started__heading {
		font-size: 2rem; line-height: 2.3rem;
	}
	.get-started__steps {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}
	.get-started__dot {
		display: block; /* stacked single column: show between each step, centered horizontally */
		align-self: center;
		margin-top: 0;
	}
	.get-started__step {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
}
