:root {
	--ct-navy: #092d54;
	--ct-navy-2: #0b3f72;
	--ct-blue: #255e92;
	--ct-orange: #ef6f1a;
	--ct-orange-dark: #d95e10;
	--ct-ink: #15283c;
	--ct-muted: #5f6e7d;
	--ct-line: #dce4ea;
	--ct-soft: #f6f8fa;
	--ct-soft-blue: #edf5fa;
	--ct-white: #fff;
	--ct-shadow: 0 16px 36px rgba(9, 45, 84, 0.09);
	--ct-max: 1380px;
	--ct-header-height: 94px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--ct-header-height) + 20px);
}

[id] {
	scroll-margin-top: calc(var(--ct-header-height) + 20px);
}

body {
	margin: 0;
	color: var(--ct-ink);
	background: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	overflow-x: hidden;
}

body.admin-bar .site-header {
	top: 32px;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--ct-navy);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	max-width: 720px;
	font-size: clamp(2.5rem, 5vw, 3.7rem);
}

h2 {
	font-size: clamp(2rem, 3.4vw, 2.45rem);
}

h3 {
	font-size: 1.08rem;
}

p {
	margin: 0;
}

.ct-container {
	width: min(calc(100% - 72px), var(--ct-max));
	margin-inline: auto;
}

.section {
	padding: 76px 0;
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: #fff;
	background: var(--ct-navy);
	border-radius: 4px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--ct-header-height);
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid #e6edf2;
	backdrop-filter: blur(10px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 100%;
}

.brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	background: transparent;
}

.brand img {
	width: 245px;
	height: 64px;
	object-fit: contain;
	object-position: left center;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2vw, 34px);
	color: #173b5d;
	font-size: 0.9rem;
	font-weight: 800;
}

.primary-nav a {
	position: relative;
	white-space: nowrap;
}

.primary-nav a:not(.nav-cta)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 0;
	height: 3px;
	border-radius: 10px;
	background: var(--ct-orange);
	transition: width 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	width: 100%;
}

.nav-cta,
.button {
	border-radius: 6px;
}

.nav-cta {
	margin-left: 2px;
	padding: 11px 18px;
	color: #fff;
	background: var(--ct-orange);
	box-shadow: 0 9px 22px rgba(245, 112, 24, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
	background: var(--ct-orange-dark);
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 1px solid #cbdbe7;
	border-radius: 6px;
	color: var(--ct-navy);
	background: #fff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines {
	position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle-lines::before {
	top: -7px;
}

.nav-toggle-lines::after {
	top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
	transform: translateY(-7px) rotate(-45deg);
}

.button {
	min-height: 49px;
	padding: 0 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 2px solid transparent;
	font-weight: 850;
	text-align: center;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	color: #fff;
	background: var(--ct-orange);
	box-shadow: 0 10px 24px rgba(245, 112, 24, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--ct-orange-dark);
}

.button-outline {
	color: var(--ct-navy);
	background: rgba(255, 255, 255, 0.9);
	border-color: #6d8da9;
}

.button-outline:hover,
.button-outline:focus-visible {
	color: var(--ct-navy);
	background: rgba(255, 255, 255, 0.9);
	border-color: #6d8da9;
}

:focus-visible {
	outline: 3px solid rgba(239, 111, 26, 0.38);
	outline-offset: 3px;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 49% 51%;
	min-height: 452px;
	background: linear-gradient(90deg, #f4fbff 0%, #eaf6ff 49%, #fff 49%);
	overflow: hidden;
}

.hero-copy-wrap {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
}

.hero-copy {
	width: min(670px, calc(100% - 70px));
	margin-left: auto;
	padding: 38px 54px 38px 0;
}

.hero-copy p {
	max-width: 560px;
	margin-top: 20px;
	color: #455668;
	font-size: 1.02rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.trust-line {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 19px;
	margin-top: 17px;
	color: #536373;
	font-size: 0.83rem;
	font-weight: 760;
}

.trust-line > span {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	white-space: nowrap;
}

.trust-line > span:not(:last-child)::after {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ct-orange);
}

.hero-mobile-text {
	display: none;
}

.hero-image {
	position: relative;
	z-index: 1;
	min-height: 452px;
	overflow: hidden;
	background: #dceaf3;
}

.hero-image::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 2;
	width: 118px;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(234, 246, 255, 1) 0%, rgba(234, 246, 255, 0.78) 28%, rgba(234, 246, 255, 0.34) 62%, rgba(234, 246, 255, 0) 100%);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 54% 50%;
}

.benefits {
	position: relative;
	z-index: 4;
	margin-top: -1px;
	padding: 78px 0 54px;
	background: linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
	border-bottom: 1px solid #e1edf5;
}

.benefits-title {
	max-width: 980px;
	margin-bottom: 46px;
}

.benefits-title h2 {
	font-size: clamp(2.1rem, 3.57vw, 2.57rem);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.benefit-card {
	min-height: 220px;
	padding: 28px 24px 26px;
	border: 1px solid #dbe8f2;
	border-radius: 16px;
	background: var(--ct-white);
	box-shadow: 0 12px 28px rgba(6, 55, 109, 0.08);
	text-align: center;
}

.benefit-icon {
	display: grid;
	width: 56px;
	height: 56px;
	place-items: center;
	margin: 10px auto 20px;
	border-radius: 16px;
	color: #0b6fbe;
	background: #eaf6ff;
}

.benefit-icon svg,
.step-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.benefit-icon svg {
	width: 31px;
	height: 31px;
}

.step-icon svg {
	width: 44px;
	height: 44px;
}

.benefit-card h3 {
	font-size: 1.08rem;
	line-height: 1.12;
}

.benefit-card p {
	margin-top: 14px;
	color: var(--ct-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}

.process {
	background: #fff;
}

.section-title {
	max-width: 980px;
	margin: 0 auto 72px;
	text-align: center;
}

.section-title p {
	margin-top: 14px;
	color: var(--ct-muted);
	font-size: 1.06rem;
}

.process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 72px;
	max-width: 1120px;
	margin: 0 auto;
}

.process-grid::before {
	content: "";
	position: absolute;
	top: 48px;
	left: 17%;
	right: 17%;
	height: 2px;
	background: #c5d8e6;
}

.process-step {
	position: relative;
	z-index: 1;
	text-align: center;
}

.step-icon {
	width: 96px;
	height: 96px;
	display: grid;
	place-items: center;
	margin: 0 auto 22px;
	color: var(--ct-navy);
	background: #fff;
	border: 2px solid #d5e7f3;
	border-radius: 50%;
	box-shadow: 0 11px 24px rgba(6, 55, 109, 0.09);
}

.step-icon .accent {
	stroke: var(--ct-orange);
}

.step-number {
	position: absolute;
	z-index: 2;
	top: -5px;
	left: calc(50% - 58px);
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	background: var(--ct-blue);
	border: 4px solid #fff;
	border-radius: 50%;
}

.process-step h3 {
	font-size: 1.32rem;
}

.process-step p {
	max-width: 295px;
	margin: 10px auto 0;
	color: var(--ct-muted);
	font-size: 0.95rem;
}

.process-cta {
	margin-top: 38px;
	text-align: center;
}

.results {
	padding: 34px 0;
	background: #eef6fc;
	border-bottom: 1px solid var(--ct-line);
}

.results-card {
	display: grid;
	grid-template-columns: 0.61fr 1.39fr;
	align-items: center;
	gap: 44px;
	padding: 52px 48px;
	background: #fff;
	border: 1px solid #d8e6f0;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(9, 45, 84, 0.05);
}

.results-copy p {
	max-width: 520px;
	margin-top: 23px;
	color: #5c7286;
	font-size: 1.06rem;
}

.results-copy h2 {
	font-size: clamp(2.3rem, 3.91vw, 2.82rem);
}

.results-visual {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.results-image {
	position: relative;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: #e7ecf0;
	border: 4px solid #fff;
	border-radius: 8px;
	box-shadow: 0 15px 34px rgba(9, 45, 84, 0.14);
}

.results-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.results-image figcaption {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 7px 13px;
	color: #fff;
	background: rgba(9, 45, 84, 0.92);
	border-radius: 4px;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.results-image-after figcaption {
	background: var(--ct-orange);
}

.result-stat-card {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	margin-top: 24px;
	padding: 16px 17px;
	color: #fff;
	background: var(--ct-navy);
	border: 1px solid #164b7a;
	border-left: 4px solid var(--ct-orange);
	border-radius: 8px;
	box-shadow: 0 14px 30px rgba(9, 45, 84, 0.14);
}

.result-stat-figure {
	display: grid;
	min-width: 0;
	place-items: center;
}

.result-stat-card .result-stat-value {
	margin: 0;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 0.9;
	text-align: center;
}

.result-stat-copy h3 {
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.2;
}

.result-stat-copy > p {
	margin-top: 6px;
	color: #d7e5f0;
	font-size: 0.78rem;
	line-height: 1.4;
}

.result-stat-copy .result-stat-disclaimer {
	margin-top: 5px;
	color: #afc3d3;
	font-size: 0.75rem;
	line-height: 1.45;
}

.care-plan {
	position: relative;
	color: #fff;
	background: #062e55;
	border-top: 4px solid var(--ct-orange);
	border-bottom: 1px solid #174b78;
}

.care-plan-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(54px, 5vw, 76px);
	align-items: center;
}

.care-plan-eyebrow {
	color: #ff9a55;
	font-size: 0.78rem;
	font-weight: 880;
	text-transform: uppercase;
}

.care-plan h2,
.care-plan-intro h3 {
	color: #fff;
}

.care-plan h2 {
	max-width: 610px;
	margin-top: 11px;
	font-size: clamp(2.15rem, 3.8vw, 2.8rem);
}

.care-plan-copy {
	max-width: 630px;
	margin-top: 21px;
	color: #d7e5f0;
	font-size: 1.03rem;
	line-height: 1.72;
}

.care-plan-cta {
	max-width: 630px;
	margin-top: 29px;
	padding-left: 20px;
	border-left: 3px solid var(--ct-orange);
}

.care-plan-cta h3 {
	font-size: 1.17rem;
}

.care-plan-cta p {
	margin-top: 9px;
	color: #c6d9e8;
	font-size: 0.94rem;
	line-height: 1.62;
}

.care-plan-cta .button {
	margin-top: 20px;
}

.care-plan-cta .button-primary {
	background: #c94f00;
	box-shadow: 0 10px 24px rgba(201, 79, 0, 0.28);
}

.care-plan-cta .button-primary:hover,
.care-plan-cta .button-primary:focus-visible {
	background: #a94000;
}

.care-plan-benefits {
	padding: 31px 32px 27px;
	color: var(--ct-ink);
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 8px;
	box-shadow: 0 22px 48px rgba(0, 15, 31, 0.24);
}

.care-plan-benefits-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 21px;
}

.care-plan-benefits-header p {
	color: #b84600;
	font-size: 0.76rem;
	font-weight: 850;
	text-transform: uppercase;
}

.care-plan-benefits-header h3 {
	margin-top: 6px;
	font-size: 1.4rem;
}

.care-plan-icon {
	flex: 0 0 auto;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	color: var(--ct-navy);
	background: #fff3eb;
	border-radius: 50%;
}

.care-plan-icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.care-plan-icon .accent {
	stroke: var(--ct-orange);
}

.care-plan-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #dce6ed;
}

.care-plan-list li {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 11px;
	align-items: start;
	padding: 18px 15px 18px 0;
	color: #294965;
	font-size: 0.94rem;
	font-weight: 740;
	line-height: 1.45;
	border-bottom: 1px solid #dce6ed;
}

.care-plan-list li:nth-child(even) {
	padding-right: 0;
	padding-left: 19px;
	border-left: 1px solid #dce6ed;
}

.care-plan-check {
	position: relative;
	display: block;
	width: 21px;
	height: 21px;
	margin-top: 1px;
	background: #fff0e5;
	border: 1px solid #f4bb93;
	border-radius: 50%;
}

.care-plan-check::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 6px;
	width: 7px;
	height: 4px;
	border-bottom: 2px solid var(--ct-orange-dark);
	border-left: 2px solid var(--ct-orange-dark);
	transform: rotate(-45deg);
}

.care-plan-note {
	margin-top: 19px;
	color: var(--ct-muted);
	font-size: 0.82rem;
	line-height: 1.55;
}

.about {
	padding: 74px 0;
	background: #fff;
	border-bottom: 1px solid var(--ct-line);
}

.about-layout {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 44px;
	align-items: center;
}

.about-photo {
	min-height: 470px;
	overflow: hidden;
	background: #e9eef2;
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(9, 45, 84, 0.12);
}

.about-photo img {
	width: 100%;
	height: 100%;
	min-height: 470px;
	object-fit: cover;
	object-position: center 48%;
}

.about-copy {
	position: relative;
	height: fit-content;
	align-self: center;
	padding: 34px 34px 32px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.96));
	border: 1px solid #dceaf4;
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(6, 55, 109, 0.08);
}

.about-copy::after {
	content: "CT";
	position: absolute;
	right: -8px;
	bottom: -39px;
	color: rgba(10, 101, 184, 0.055);
	font-size: 9rem;
	font-weight: 950;
	line-height: 1;
	pointer-events: none;
}

.about-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--ct-orange);
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.about-kicker::before {
	content: "";
	width: 30px;
	height: 3px;
	border-radius: 999px;
	background: var(--ct-orange);
}

.about-copy p {
	position: relative;
	z-index: 1;
	margin-top: 17px;
	color: var(--ct-muted);
}

.about-mobile-text {
	display: none;
}

.about-highlight {
	position: relative;
	z-index: 1;
	margin-top: 25px;
	padding: 19px 20px 19px 54px;
	color: #fff;
	font-weight: 800;
	background: #07386f;
	border-radius: 8px;
	box-shadow: 0 12px 25px rgba(7, 56, 111, 0.17);
}

.about-highlight::before {
	content: "\201C";
	position: absolute;
	top: 5px;
	left: 18px;
	color: var(--ct-orange);
	font-family: Georgia, serif;
	font-size: 3rem;
	line-height: 1;
}

.about-credential {
	position: relative;
	z-index: 1;
	margin-top: 18px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #dceaf4;
	border-radius: 8px;
}

.about-credential h3 {
	font-size: 1rem;
}

.about-credential p {
	margin-top: 8px;
	font-size: 0.95rem;
}

.areas {
	background: #f7fafc;
	border-bottom: 1px solid var(--ct-line);
}

.areas-inner {
	max-width: 1180px;
}

.areas-heading {
	max-width: 850px;
	margin-inline: auto;
	text-align: center;
}

.areas-eyebrow {
	color: #b84600;
	font-size: 0.77rem;
	font-weight: 860;
	text-transform: uppercase;
}

.areas-heading h2 {
	margin-top: 10px;
}

.areas-heading > p:last-child {
	max-width: 770px;
	margin-top: 18px;
	margin-inline: auto;
	color: var(--ct-muted);
	font-size: 1.03rem;
	line-height: 1.68;
}

.location-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 38px 0 0;
	padding: 0;
	list-style: none;
}

.location-card {
	display: grid;
	min-width: 0;
	min-height: 80px;
	place-items: center;
	padding: 18px 14px;
	color: var(--ct-navy);
	font-size: 1rem;
	font-weight: 820;
	line-height: 1.3;
	text-align: center;
	background: #fff;
	border: 1px solid #d6e2eb;
	border-radius: 10px;
	box-shadow: 0 7px 20px rgba(9, 45, 84, 0.045);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.location-card:hover {
	border-color: #abc1d2;
	box-shadow: inset 0 3px 0 var(--ct-orange), 0 10px 24px rgba(9, 45, 84, 0.08);
	transform: translateY(-2px);
}

.secondary-areas {
	max-width: 1040px;
	margin: 28px auto 0;
	text-align: center;
}

.secondary-areas-label {
	color: var(--ct-navy);
	font-size: 0.88rem;
	font-weight: 790;
}

.secondary-location-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px 10px;
	margin: 10px 0 0;
	padding: 0;
	color: var(--ct-muted);
	font-size: 0.88rem;
	line-height: 1.6;
	list-style: none;
}

.secondary-location-list li {
	display: inline-flex;
	align-items: center;
}

.secondary-location-list li:not(:last-child)::after {
	content: "\00b7";
	margin-left: 10px;
	color: #9cadbb;
	font-weight: 800;
}

.areas-message {
	margin-top: 24px;
	text-align: center;
}

.areas-message p:first-child {
	color: var(--ct-navy);
	font-weight: 790;
}

.faq {
	background: #f6f9fb;
	border-bottom: 1px solid var(--ct-line);
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
	gap: clamp(60px, 5.2vw, 78px);
	align-items: start;
}

.faq-intro {
	position: sticky;
	top: calc(var(--ct-header-height) + 36px);
}

.faq-eyebrow {
	color: var(--ct-orange);
	font-size: 0.76rem;
	font-weight: 820;
	letter-spacing: 0;
	text-transform: uppercase;
}

.faq-intro h2 {
	max-width: 470px;
	margin-top: 10px;
	font-size: clamp(2.1rem, 3.4vw, 2.65rem);
}

.faq-intro-copy {
	max-width: 470px;
	margin-top: 18px;
	color: var(--ct-muted);
	font-size: 1.02rem;
	line-height: 1.7;
}

.faq-stack {
	display: grid;
	gap: 13px;
}

.faq-item {
	overflow: hidden;
	background: #fff;
	border: 1px solid #d5e0e8;
	border-radius: 15px;
	transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item.is-open {
	border-color: #c9d9e4;
	box-shadow: inset 4px 0 0 var(--ct-orange), 0 12px 28px rgba(7, 45, 77, 0.09);
}

.faq-question {
	width: 100%;
	min-height: 66px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	color: var(--ct-navy);
	text-align: left;
	font-weight: 780;
	line-height: 1.35;
	background: #fff;
	border: 0;
	cursor: pointer;
}

.faq-question:focus-visible {
	outline: 3px solid rgba(226, 112, 32, 0.48);
	outline-offset: -4px;
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.24s ease;
}

.faq-answer-inner {
	min-height: 0;
	overflow: hidden;
}

.faq-answer p {
	padding: 18px 24px 22px;
	color: var(--ct-muted);
	font-size: 0.95rem;
	line-height: 1.68;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-plus {
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: #778d9e;
}

.faq-plus::before,
.faq-plus::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 1px;
	width: 16px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 0.2s ease;
}

.faq-plus::after {
	transform: rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
	transform: rotate(0deg);
}

.faq-item.is-open .faq-plus {
	color: var(--ct-orange);
}

.contact {
	color: #fff;
	background: #062e55;
}

.contact-header {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.contact-header h2,
.contact-trust h3 {
	color: #fff;
}

.contact-header p {
	margin-top: 15px;
	color: #d2e1ec;
	font-size: 1.02rem;
	line-height: 1.68;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.54fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	max-width: 1100px;
	margin: 38px auto 0;
}

.contact-trust {
	padding: 25px 24px;
	background: rgba(255, 255, 255, 0.065);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
}

.contact-trust h3 {
	font-size: 1.2rem;
}

.contact-trust-list {
	display: grid;
	gap: 12px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.contact-trust-list li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: #e7f0f7;
	font-size: 0.92rem;
	font-weight: 680;
	line-height: 1.45;
}

.contact-check {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	background: rgba(239, 111, 26, 0.15);
	border: 1px solid rgba(255, 154, 85, 0.72);
	border-radius: 50%;
}

.contact-check::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 5px;
	width: 6px;
	height: 3px;
	border-bottom: 2px solid #ff9a55;
	border-left: 2px solid #ff9a55;
	transform: rotate(-45deg);
}

.contact-prefer {
	display: grid;
	gap: 9px;
	margin-top: 22px;
	padding-top: 19px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-prefer > p {
	margin-bottom: 2px;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 820;
}

.contact-prefer a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	color: #e7f0f7;
	font-size: 0.91rem;
	font-weight: 730;
	overflow-wrap: anywhere;
}

.contact-prefer a:hover,
.contact-prefer a:focus-visible {
	color: #fff;
}

.contact-prefer svg {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.quote-form-wrap {
	width: 100%;
	padding: 24px 26px 22px;
	color: var(--ct-ink);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(0, 15, 31, 0.2);
}

.form-enquiry-context {
	display: grid;
	gap: 3px;
	margin-bottom: 14px;
	padding: 12px 14px;
	color: #294965;
	background: #fff4ec;
	border: 1px solid #f0c7a9;
	border-left: 4px solid var(--ct-orange);
	border-radius: 7px;
	font-size: 0.84rem;
	line-height: 1.45;
}

.form-enquiry-context[hidden] {
	display: none;
}

.form-enquiry-context strong {
	color: var(--ct-navy);
}

.form-enquiry-context span {
	color: var(--ct-muted);
}

.ct-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	gap: 9px 12px;
	margin-top: 0;
}

.wpcf7-form {
	margin-top: 0;
}

.wpcf7-form p {
	margin: 0;
}

.ct-field,
.wpcf7-form label {
	display: grid;
	gap: 6px;
	color: #294965;
	font-size: 0.8rem;
	font-weight: 800;
}

.ct-field-full,
.wpcf7-form p:nth-of-type(n+4),
.wpcf7-response-output {
	grid-column: 1 / -1;
}

.wpcf7-form-control-wrap,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
	width: 100%;
}

.ct-field input,
.ct-field textarea,
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]),
.wpcf7-form textarea {
	width: 100%;
	color: var(--ct-ink);
	background: #fbfdff;
	border: 1px solid #cbdbe7;
	border-radius: 7px;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ct-field input,
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]) {
	height: 41px;
	padding: 0 12px;
}

.ct-field textarea,
.wpcf7-form textarea {
	height: 92px;
	min-height: 92px;
	padding: 10px 12px;
	resize: vertical;
}

.ct-field input:focus,
.ct-field textarea:focus,
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):focus,
.wpcf7-form textarea:focus {
	background: #fff;
	border-color: var(--ct-blue);
	box-shadow: 0 0 0 3px rgba(37, 94, 146, 0.1);
}

.ct-consent,
.wpcf7-acceptance {
	color: #536373;
	font-size: 0.9rem;
	font-weight: 650;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	line-height: 1.45;
}

.wpcf7-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ct-orange);
}

.ct-submit,
.wpcf7-submit {
	width: 100%;
	min-height: 48px;
	padding: 0 22px;
	color: #fff;
	font-weight: 850;
	background: #c94f00;
	border: 0;
	border-radius: 7px;
	box-shadow: 0 10px 22px rgba(201, 79, 0, 0.23);
	cursor: pointer;
}

.ct-submit:hover,
.ct-submit:focus-visible,
.wpcf7-submit:hover,
.wpcf7-submit:focus-visible {
	background: #a94000;
}

.ct-submit:disabled,
.wpcf7-submit:disabled {
	color: #fff;
	background: #c94f00;
	box-shadow: none;
	cursor: not-allowed;
	opacity: 1 !important;
}

.form-supporting-note {
	margin-top: 11px;
	color: #667786;
	font-size: 0.8rem;
	line-height: 1.5;
	text-align: center;
}

.wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #9f261d;
	font-size: 0.82rem;
	font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 12px 14px;
	color: #294965;
	font-size: 0.9rem;
	border: 1px solid #cbdbe7;
	border-radius: 7px;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #123f2f;
	background: #edf8f2;
	border-color: #9fd3b4;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	color: #7d271f;
	background: #fff3ef;
	border-color: #f2b49c;
}

.closing-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)), url("../images/cta-clean-solar-panels-optimized.webp") center / cover no-repeat;
	border-bottom: 1px solid var(--ct-line);
}

.closing-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 210px;
	padding-block: 46px;
}

.closing-copy p {
	margin-top: 9px;
	color: var(--ct-muted);
	font-size: 1.06rem;
	font-weight: 730;
}

.closing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	justify-content: flex-end;
}

.closing-actions .button {
	width: 208px;
	min-width: 208px;
}

.site-footer {
	padding: 42px 0 27px;
	color: #bdd3e7;
	background: #032444;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.footer-brand img {
	width: 235px;
	height: auto;
	background: transparent;
	filter: none;
	opacity: 1;
}

.footer-brand-column p {
	max-width: 510px;
	margin-top: 15px;
	color: #bdd3e7;
	font-size: 0.96rem;
	line-height: 1.65;
}

.footer-heading {
	margin: 0 0 13px;
	color: #fff;
	font-size: 1rem;
	line-height: 1.35;
}

.footer-column {
	display: grid;
	justify-items: start;
	gap: 0;
}

.footer-column a {
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	color: #bdd3e7;
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-column a:focus-visible {
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 27px;
	padding-top: 20px;
	color: #abc0d2;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.81rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-credit {
	color: #abc0d2;
	text-align: right;
}

@media (max-width: 1180px) {
	.ct-container {
		width: min(calc(100% - 48px), var(--ct-max));
	}

	.primary-nav {
		gap: 16px;
		font-size: 0.84rem;
	}

	.brand img {
		width: 215px;
	}

	.hero-copy {
		width: min(630px, calc(100% - 48px));
		padding-right: 38px;
	}

	.contact-layout {
		gap: 44px;
	}

	.results-card {
		grid-template-columns: 0.72fr 1.28fr;
		gap: 42px;
	}
}

@media (max-width: 980px) {
	:root {
		--ct-header-height: 82px;
	}

	body.admin-bar .site-header {
		top: 32px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 24px;
		left: 24px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px;
		background: #fff;
		border: 1px solid #dce4ea;
		border-radius: 8px;
		box-shadow: var(--ct-shadow);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		min-height: 44px;
		display: flex;
		align-items: center;
		padding: 0 12px;
		border-radius: 6px;
	}

	.primary-nav a:hover,
	.primary-nav a:focus-visible {
		background: #edf5fa;
	}

	.primary-nav a:not(.nav-cta)::after {
		display: none;
	}

	.nav-cta {
		justify-content: center;
		margin: 8px 0 0;
	}

	.hero {
		grid-template-columns: 1fr;
		background: #eaf6ff;
	}

	.hero-copy {
		width: min(calc(100% - 48px), 760px);
		margin: 0 auto;
		padding: 62px 0 44px;
	}

	.hero-image {
		min-height: 360px;
	}

	.hero-image::before {
		display: none;
	}

	.benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 38px;
		max-width: 620px;
	}

	.process-grid::before {
		top: 28px;
		bottom: 28px;
		left: 48px;
		right: auto;
		width: 2px;
		height: auto;
	}

	.process-step {
		min-height: 96px;
		padding-left: 128px;
		text-align: left;
	}

	.step-icon {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
	}

	.step-number {
		top: -5px;
		left: 72px;
	}

	.process-step p {
		margin-left: 0;
		margin-right: 0;
	}

	.results-card,
	.care-plan-layout,
	.about-layout {
		grid-template-columns: 1fr;
	}

	.care-plan-layout {
		max-width: 780px;
		gap: 42px;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 42px;
		max-width: 760px;
	}

	.faq-intro {
		position: static;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		max-width: 720px;
		gap: 28px;
	}

	.contact-trust,
	.quote-form-wrap {
		width: 100%;
	}

	.location-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.75fr) minmax(0, 0.9fr);
		gap: 28px;
	}

	.footer-brand img {
		width: 210px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 700px) {
	.ct-container {
		width: min(calc(100% - 48px), var(--ct-max));
	}

	.section {
		padding: 58px 0;
	}

	.brand img {
		width: 185px;
		height: 54px;
	}

	.ct-field input,
	.wpcf7-form input:not([type="submit"]):not([type="checkbox"]) {
		height: 44px;
	}

	.hero-copy {
		width: min(calc(100% - 48px), 760px);
		padding: 48px 0 36px;
	}

	.hero-image {
		min-height: 300px;
	}

	.hero-actions,
	.closing-actions {
		width: 100%;
	}

	.button {
		width: 100%;
		min-width: 0;
	}

	.closing-actions .button {
		width: 100%;
		min-width: 0;
	}

	.trust-line > span {
		white-space: normal;
	}

	.trust-line > span::after {
		display: none;
	}

	.benefit-grid,
	.ct-form-grid {
		grid-template-columns: 1fr;
	}

	.location-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 30px;
	}

	.location-card {
		min-height: 58px;
		padding: 10px;
		font-size: 0.94rem;
	}

	.faq-layout {
		gap: 34px;
	}

	.faq-question {
		min-height: 60px;
		padding: 18px;
	}

	.faq-answer p {
		padding: 16px 18px 18px;
	}

	.benefits {
		padding: 60px 0 44px;
	}

	.benefits-title {
		margin-bottom: 34px;
	}

	.benefit-card {
		min-height: 0;
	}

	.results-card {
		padding: 28px 20px;
	}

	.quote-form-wrap {
		padding: 22px 18px 20px;
	}

	.contact-trust {
		padding: 22px 20px;
	}

	.care-plan-benefits {
		padding: 25px 20px 22px;
	}

	.care-plan-list {
		grid-template-columns: 1fr;
	}

	.care-plan-list li,
	.care-plan-list li:nth-child(even) {
		padding: 15px 0;
		border-left: 0;
	}

	.results-visual {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.result-stat-card {
		grid-template-columns: 106px minmax(0, 1fr);
		gap: 13px;
		padding: 15px;
	}

	.result-stat-card .result-stat-value {
		font-size: 3rem;
	}

	.about-copy {
		padding: 28px 22px;
	}

	.about-photo,
	.about-photo img {
		min-height: 330px;
	}

	.process-step {
		padding-left: 112px;
	}

	.step-icon {
		width: 84px;
		height: 84px;
	}

	.step-number {
		left: 62px;
	}

	.process-grid::before {
		left: 42px;
	}

	.closing-inner {
		display: grid;
		min-height: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-brand img {
		width: min(225px, 72vw);
	}

	.footer-brand-column p {
		max-width: 520px;
	}

	.footer-column a {
		min-height: 44px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 7px;
	}

	.footer-credit {
		text-align: left;
	}
}

@media (max-width: 620px) {
	:root {
		--ct-header-height: 82px;
	}

	.brand img {
		width: 170px;
		height: 48px;
	}

	.hero {
		display: block;
		min-height: max(650px, calc(100svh - var(--ct-header-height)));
		background: var(--ct-navy);
		isolation: isolate;
	}

	.hero::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		height: 82px;
		pointer-events: none;
		background: linear-gradient(180deg, rgba(238, 248, 255, 0) 0%, rgba(238, 248, 255, 0.22) 45%, #eef8ff 100%);
	}

	.hero-copy-wrap {
		position: relative;
		z-index: 3;
		min-height: max(650px, calc(100svh - var(--ct-header-height)));
		align-items: flex-start;
	}

	.hero-copy {
		width: min(calc(100% - 48px), 500px);
		margin: 0 auto;
		padding: 46px 0 70px;
		color: #fff;
	}

	.hero-copy h1 {
		max-width: 100%;
		color: #fff;
		font-size: clamp(2.3rem, 10.8vw, 2.65rem);
		line-height: 1.04;
	}

	.hero-title-main,
	.hero-title-location {
		display: block;
	}

	.hero-title-location {
		margin-top: 10px;
		color: #e7f3fb;
		font-size: 0.74em;
		line-height: 1.12;
	}

	.hero-desktop-text {
		display: none;
	}

	.hero-mobile-text {
		display: inline;
	}

	.hero-copy p {
		max-width: 460px;
		margin-top: 19px;
		color: #e1edf5;
		font-size: 0.97rem;
		line-height: 1.52;
	}

	.hero-actions {
		display: grid;
		gap: 8px;
		margin-top: 22px;
	}

	.hero-actions .button-primary {
		width: 100%;
		min-height: 54px;
		color: #fff;
		background: var(--ct-orange);
		box-shadow: 0 12px 26px rgba(0, 0, 0, 0.23);
	}

	.hero-actions .button-primary:hover,
	.hero-actions .button-primary:focus-visible {
		color: #fff;
		background: var(--ct-orange-dark);
	}

	.hero-actions .button-outline {
		width: auto;
		min-height: 44px;
		justify-self: start;
		padding: 0 2px;
		color: #fff;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.hero-actions .button-outline:hover,
	.hero-actions .button-outline:focus-visible {
		color: #fff;
		background: transparent;
	}

	.trust-line {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 14px;
		margin-top: 17px;
		color: #e0edf6;
		font-size: 0.75rem;
		font-weight: 760;
		line-height: 1.35;
	}

	.trust-line > span {
		position: relative;
		display: block;
		min-width: 0;
		padding-left: 21px;
		white-space: normal;
	}

	.trust-line > span:last-child {
		grid-column: 1 / -1;
	}

	.trust-line > span::before {
		content: "";
		position: absolute;
		top: 1px;
		left: 0;
		width: 15px;
		height: 15px;
		border: 1px solid rgba(255, 255, 255, 0.72);
		border-radius: 50%;
		background: rgba(239, 111, 26, 0.88);
	}

	.trust-line > span::after,
	.trust-line > span:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 4px;
		left: 5px;
		display: block;
		width: 4px;
		height: 7px;
		border: solid #fff;
		border-width: 0 1.5px 1.5px 0;
		border-radius: 0;
		background: transparent;
		transform: rotate(45deg);
	}

	.hero-image {
		position: absolute;
		inset: 0;
		z-index: 1;
		min-height: 0;
		background: var(--ct-navy);
	}

	.hero-image::before {
		display: block;
		inset: 0;
		width: auto;
		background:
			linear-gradient(180deg, rgba(5, 38, 71, 0.85) 0%, rgba(5, 38, 71, 0.73) 47%, rgba(5, 38, 71, 0.38) 74%, rgba(5, 38, 71, 0.15) 100%),
			linear-gradient(90deg, rgba(5, 38, 71, 0.33) 0%, rgba(5, 38, 71, 0.03) 76%, rgba(5, 38, 71, 0) 100%);
	}

	.hero-image img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 72% 50%;
	}

	.about {
		padding: 44px 0 52px;
		background: #f4f9fc;
		overflow: hidden;
	}

	.about .about-layout {
		display: block;
		width: 100%;
		max-width: none;
		margin: 0;
	}

	.about-photo {
		position: relative;
		height: 310px;
		min-height: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.about-photo::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		height: 92px;
		pointer-events: none;
		background: linear-gradient(180deg, rgba(244, 249, 252, 0) 0%, rgba(244, 249, 252, 0.22) 42%, rgba(244, 249, 252, 0.82) 100%);
	}

	.about-photo img {
		height: 310px;
		min-height: 0;
		object-position: center 46%;
	}

	.about-copy {
		z-index: 2;
		width: calc(100% - 48px);
		margin: -155px auto 0;
		padding: 27px 22px 23px;
		overflow: visible;
		background: rgba(255, 255, 255, 0.98);
		border-color: #d6e6f1;
		border-radius: 20px;
		box-shadow: 0 18px 38px rgba(6, 55, 109, 0.13);
	}

	.about-copy::after {
		display: none;
	}

	.about-desktop-text {
		display: none;
	}

	.about-mobile-text {
		display: block;
	}

	.about-kicker {
		gap: 8px;
		margin-bottom: 11px;
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.about-kicker::before {
		width: 21px;
		height: 2px;
	}

	.about-copy h2 {
		font-size: clamp(2.25rem, 10vw, 2.55rem);
		line-height: 1.06;
	}

	.about-copy > p {
		margin-top: 14px;
		font-size: 0.93rem;
		line-height: 1.52;
	}

	.about-highlight,
	.about-credential {
		display: grid;
		grid-template-columns: 22px minmax(0, 1fr);
		column-gap: 11px;
		align-items: start;
		padding: 16px;
		color: var(--ct-navy);
		background: #edf6fb;
		border: 1px solid #d7e7f1;
		border-radius: 14px;
		box-shadow: none;
	}

	.about-highlight {
		margin-top: 19px;
	}

	.about-credential {
		margin-top: 12px;
	}

	.about-highlight::before,
	.about-credential::before {
		content: "\2713";
		position: static;
		display: grid;
		grid-row: 1 / 3;
		width: 20px;
		height: 20px;
		place-items: center;
		margin-top: 1px;
		color: #fff;
		font-family: inherit;
		font-size: 0.72rem;
		font-weight: 900;
		line-height: 1;
		background: var(--ct-orange);
		border-radius: 50%;
	}

	.about-highlight .about-mobile-text,
	.about-credential h3,
	.about-credential p {
		grid-column: 2;
	}

	.about-highlight strong,
	.about-credential h3 {
		display: block;
		color: var(--ct-navy);
		font-size: 0.94rem;
		font-weight: 850;
		line-height: 1.3;
	}

	.about-highlight .about-mobile-text > span,
	.about-credential p {
		display: block;
		margin-top: 4px;
		color: var(--ct-muted);
		font-size: 0.84rem;
		font-weight: 600;
		line-height: 1.42;
	}
}

@media (max-width: 430px) {
	h1 {
		font-size: 2.16rem;
	}

	h2 {
		font-size: 1.78rem;
	}

	.results-copy h2 {
		font-size: 2.05rem;
	}

	.benefits-title h2 {
		font-size: 1.87rem;
	}

	.primary-nav {
		right: 24px;
		left: 24px;
	}

	.process-step {
		padding-left: 0;
		padding-top: 108px;
		text-align: center;
	}

	.process-grid::before {
		display: none;
	}

	.step-icon {
		left: calc(50% - 42px);
	}

	.step-number {
		left: calc(50% + 20px);
	}

	.process-step p {
		margin-inline: auto;
	}
}

@media (max-width: 340px) {
	.location-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
