:root {
	--navy-950: #031d31;
	--navy-900: #062e4e;
	--navy-800: #0a3c63;
	--navy-700: #11547e;
	--blue-500: #58a6c3;
	--blue-300: #9bd0df;
	--blue-100: #e8f3f7;
	--blue-50: #f4f8fa;
	--ink: #102536;
	--muted: #5f7180;
	--line: #dbe4e9;
	--white: #fff;
	--cream: #fcfbf8;
	--success: #1f6f4b;
	--error: #a43b3b;
	--shadow-sm: 0 12px 32px rgba(3, 29, 49, .08);
	--shadow-lg: 0 30px 70px rgba(3, 29, 49, .15);
	--container: 1200px;
	--header-height: 86px;
	--font-display: "Avenir Next", "Segoe UI", Inter, Arial, sans-serif;
	--font-body: "Segoe UI", Inter, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

svg {
	display: block;
}

a {
	color: inherit;
	text-underline-offset: 3px;
}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
}

button,
summary {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--navy-950);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.13;
	letter-spacing: -.035em;
}

h1 {
	font-size: clamp(2.8rem, 6vw, 5.3rem);
}

h2 {
	margin-bottom: 1.25rem;
	font-size: clamp(2.15rem, 4vw, 3.7rem);
}

h3 {
	font-size: 1.35rem;
}

::selection {
	color: var(--white);
	background: var(--navy-700);
}

:focus-visible {
	outline: 3px solid var(--blue-500);
	outline-offset: 4px;
}

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

.section {
	padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.icon {
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.skip-link:focus {
	z-index: 100000;
	top: 1rem;
	left: 1rem;
	width: auto !important;
	height: auto !important;
	padding: .75rem 1rem !important;
	margin: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	color: var(--white);
	background: var(--navy-900);
	white-space: normal !important;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: .7rem;
	margin-bottom: 1.2rem;
	color: var(--navy-700);
	font-size: .78rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.eyebrow > span {
	flex: 0 0 32px;
	height: 2px;
	background: var(--blue-500);
}

.eyebrow--light {
	color: var(--blue-300);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .7rem;
	min-height: 54px;
	padding: .85rem 1.45rem;
	border: 2px solid var(--navy-900);
	border-radius: 2px;
	color: var(--white);
	background: var(--navy-900);
	font-size: .92rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
	border-color: var(--navy-700);
	background: var(--navy-700);
	transform: translateY(-2px);
}

.button .icon {
	transition: transform .2s ease;
}

.button:hover .icon {
	transform: translateX(4px);
}

.button--accent {
	border-color: var(--white);
	color: var(--navy-950);
	background: var(--white);
}

.button--accent:hover {
	border-color: var(--blue-100);
	color: var(--navy-950);
	background: var(--blue-100);
}

.button--outline {
	border-color: var(--navy-900);
	color: var(--navy-900);
	background: transparent;
}

.button--outline:hover {
	color: var(--white);
	background: var(--navy-900);
}

.button--small {
	min-height: 44px;
	padding: .65rem 1.05rem;
	font-size: .82rem;
}

.button--wide {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	color: var(--navy-800);
	font-size: .9rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}

.text-link--light {
	color: var(--white);
}

/* Header */
.site-header {
	position: relative;
	z-index: 1000;
	color: var(--navy-950);
	background: var(--white);
}

.utility-bar {
	color: rgba(255, 255, 255, .86);
	background: var(--navy-950);
	font-size: .76rem;
	font-weight: 650;
	letter-spacing: .025em;
}

.utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.utility-bar p {
	margin: 0;
}

.utility-bar__links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.utility-bar__links a {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	text-decoration: none;
}

.utility-bar__links a:hover {
	color: var(--white);
}

.utility-bar__links .icon {
	color: var(--blue-300);
	font-size: .9rem;
}

.header-main {
	min-height: var(--header-height);
	border-bottom: 1px solid rgba(6, 46, 78, .09);
	background: rgba(255, 255, 255, .97);
}

.site-header.is-sticky .header-main {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	box-shadow: 0 8px 30px rgba(3, 29, 49, .08);
	animation: header-in .25s ease-out;
}

.admin-bar .site-header.is-sticky .header-main {
	top: 32px;
}

@keyframes header-in {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.header-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
}

.brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.brand img {
	width: 244px;
	max-width: 26vw;
	height: auto;
}

.custom-logo {
	width: auto;
	max-width: 244px;
	max-height: 68px;
}

.primary-nav,
.primary-nav .menu {
	display: flex;
	align-items: center;
}

.primary-nav {
	gap: 1.6rem;
}

.primary-nav .menu {
	gap: clamp(1rem, 2vw, 1.8rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav .menu a {
	position: relative;
	display: block;
	padding: .75rem 0;
	color: var(--ink);
	font-size: .84rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-nav .menu a::after {
	position: absolute;
	right: 0;
	bottom: .55rem;
	left: 0;
	height: 2px;
	background: var(--blue-500);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .2s ease;
}

.primary-nav .menu a:hover::after,
.primary-nav .menu a.is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-toggle {
	display: none;
	align-items: center;
	gap: .6rem;
	padding: .65rem;
	border: 0;
	color: var(--navy-900);
	background: transparent;
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.nav-toggle__icon {
	display: grid;
	gap: 4px;
	width: 24px;
}

.nav-toggle__icon i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(780px, calc(100svh - 120px));
	overflow: hidden;
	color: var(--white);
	background: var(--navy-950);
}

.hero__media,
.hero__media picture,
.hero__media img,
.hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__media img {
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	background: linear-gradient(90deg, rgba(3, 29, 49, .99) 0%, rgba(3, 29, 49, .91) 31%, rgba(3, 29, 49, .38) 58%, rgba(3, 29, 49, .06) 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	padding-block: 6.5rem;
}

.hero__content {
	width: min(680px, 59%);
}

.hero h1 {
	max-width: 680px;
	margin-bottom: 1.5rem;
	color: var(--white);
	font-size: clamp(3.1rem, 6.3vw, 5.7rem);
	text-wrap: balance;
}

.hero__lead {
	max-width: 600px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, .84);
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
	line-height: 1.6;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2.25rem;
}

.hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: .7rem 1.5rem;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, .78);
	font-size: .78rem;
	font-weight: 650;
	list-style: none;
}

.hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

.hero__proof .icon {
	color: var(--blue-300);
}

.hero__corner {
	position: absolute;
	right: -65px;
	bottom: -65px;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(255, 255, 255, .17);
	transform: rotate(45deg);
}

.hero__corner::before,
.hero__corner::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .11);
	content: "";
}

.hero__corner::before {
	inset: 28px;
}

.hero__corner::after {
	inset: 62px;
}

.trust-strip {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	display: flex;
	align-items: center;
	gap: .85rem;
	min-height: 112px;
	padding: 1.2rem 1.5rem;
	border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
	border-left: 1px solid var(--line);
}

.trust-strip__grid .icon {
	flex: 0 0 auto;
	color: var(--navy-700);
	font-size: 1.8rem;
}

.trust-strip__grid span {
	display: grid;
	color: var(--muted);
	font-size: .77rem;
	line-height: 1.4;
}

.trust-strip__grid strong {
	color: var(--navy-950);
	font-size: .94rem;
}

/* Services */
.services {
	background:
		linear-gradient(90deg, transparent calc(50% - 600px), rgba(88, 166, 195, .08) calc(50% - 600px), rgba(88, 166, 195, .08) calc(50% - 599px), transparent calc(50% - 599px)),
		var(--white);
}

.section-intro {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	gap: 5rem;
	align-items: end;
	margin-bottom: 3.5rem;
}

.section-intro h2 {
	max-width: 740px;
	margin-bottom: 0;
}

.section-intro > p {
	margin-bottom: .5rem;
	color: var(--muted);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.service-card {
	position: relative;
	min-height: 350px;
	padding: 2.25rem;
	overflow: hidden;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
	transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.service-card::before {
	position: absolute;
	top: -45px;
	right: -45px;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(88, 166, 195, .15);
	content: "";
	transform: rotate(45deg);
}

.service-card:hover {
	z-index: 1;
	color: rgba(255, 255, 255, .74);
	background: var(--navy-900);
	transform: translateY(-4px);
}

.service-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 2rem;
	place-items: center;
	color: var(--navy-800);
	background: var(--blue-100);
	transition: background-color .3s ease, color .3s ease;
}

.service-card__icon .icon {
	font-size: 1.7rem;
}

.service-card:hover .service-card__icon {
	color: var(--white);
	background: rgba(255, 255, 255, .12);
}

.service-card__for {
	margin-bottom: .55rem;
	color: var(--navy-700);
	font-size: .69rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.service-card h3 {
	margin-bottom: .9rem;
	font-size: 1.45rem;
	transition: color .3s ease;
}

.service-card > p:not(.service-card__for) {
	color: var(--muted);
	font-size: .94rem;
	transition: color .3s ease;
}

.service-card:hover h3 {
	color: var(--white);
}

.service-card:hover .service-card__for {
	color: var(--blue-300);
}

.service-card:hover > p:not(.service-card__for) {
	color: rgba(255, 255, 255, .7);
}

.service-card > a {
	position: absolute;
	bottom: 2rem;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--navy-800);
	font-size: .82rem;
	font-weight: 800;
	text-decoration: none;
	transition: color .3s ease;
}

.service-card:hover > a {
	color: var(--white);
}

.service-note {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.5rem;
	align-items: center;
	margin-top: 2rem;
	padding: 1.7rem 2rem;
	background: var(--blue-50);
}

.service-note__icon {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	color: var(--white);
	background: var(--navy-900);
}

.service-note h3,
.service-note p {
	margin-bottom: 0;
}

.service-note p {
	color: var(--muted);
	font-size: .9rem;
}

/* About */
.about {
	position: relative;
	overflow: hidden;
	background: var(--cream);
}

.about::before {
	position: absolute;
	top: -250px;
	left: -250px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(6, 46, 78, .07);
	content: "";
	transform: rotate(45deg);
}

.about__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(4rem, 8vw, 7.5rem);
	align-items: center;
}

.about__visual {
	position: relative;
	min-height: 570px;
	background: var(--navy-900);
}

.about__photo {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.about__photo::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(3, 29, 49, .28) 100%);
	content: "";
}

.about__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 30%;
}

.about__statement {
	position: absolute;
	z-index: 3;
	right: -45px;
	bottom: 35px;
	width: min(330px, 82%);
	padding: 1.5rem;
	border-left: 4px solid var(--blue-500);
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.about__statement span {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: .5rem;
	color: var(--navy-700);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.about__statement strong {
	display: block;
	color: var(--navy-950);
	font-family: var(--font-display);
	font-size: 1.12rem;
	line-height: 1.4;
}

.about__content .large-copy {
	margin-bottom: 2.5rem;
	color: var(--muted);
	font-size: 1.1rem;
}

.values {
	display: grid;
	gap: 1.25rem;
}

.values > div {
	display: grid;
	grid-template-columns: 44px 155px 1fr;
	gap: 1rem;
	align-items: baseline;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.values span {
	color: var(--navy-700);
	font-size: .77rem;
	font-weight: 800;
}

.values h3,
.values p {
	margin: 0;
}

.values h3 {
	font-size: 1.05rem;
}

.values p {
	color: var(--muted);
	font-size: .88rem;
}

/* Process */
.process {
	background: var(--white);
}

.section-heading--center {
	max-width: 780px;
	margin: 0 auto 4rem;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
	padding: 0;
	counter-reset: process;
	list-style: none;
}

.process-grid li {
	position: relative;
	padding: 3rem 2.4rem 2rem;
	border-top: 1px solid var(--line);
	text-align: center;
}

.process-grid li:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	top: -5px;
	right: -5px;
	width: 9px;
	height: 9px;
	border: 2px solid var(--white);
	border-radius: 50%;
	background: var(--blue-500);
	content: "";
}

.process-grid__number {
	position: absolute;
	top: .5rem;
	left: 1rem;
	color: #6e8490;
	font-family: var(--font-display);
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1;
	opacity: 1;
}

.process-grid__icon {
	display: grid;
	width: 76px;
	height: 76px;
	margin: 0 auto 1.5rem;
	place-items: center;
	color: var(--white);
	background: var(--navy-900);
	box-shadow: 10px 10px 0 var(--blue-100);
}

.process-grid__icon .icon {
	font-size: 1.9rem;
}

.process-grid h3 {
	margin-bottom: .7rem;
}

.process-grid p {
	max-width: 290px;
	margin: 0 auto;
	color: var(--muted);
	font-size: .92rem;
}

/* Results */
.results {
	color: rgba(255, 255, 255, .75);
	background: var(--navy-950);
}

.results__grid {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
}

.results h2,
.results h3 {
	color: var(--white);
}

.results__content > p:not(.eyebrow) {
	font-size: 1.05rem;
}

.check-list {
	display: grid;
	gap: .75rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: .6rem;
	color: rgba(255, 255, 255, .9);
	font-size: .9rem;
	font-weight: 650;
}

.check-list .icon {
	color: var(--blue-300);
}

.comparison {
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.comparison__images {
	position: relative;
	aspect-ratio: 1.07 / 1;
	overflow: hidden;
	background: var(--blue-50);
}

.comparison__images > img,
.comparison__after,
.comparison__after img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.comparison__images img {
	object-fit: cover;
}

.comparison__after {
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison__label {
	position: absolute;
	z-index: 4;
	top: 1rem;
	padding: .35rem .75rem;
	color: var(--white);
	background: rgba(3, 29, 49, .78);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.comparison__label--before {
	left: 1rem;
}

.comparison__label--after {
	right: 1rem;
}

.comparison__handle {
	position: absolute;
	z-index: 5;
	top: 0;
	bottom: 0;
	left: var(--position);
	width: 2px;
	background: var(--white);
	transform: translateX(-1px);
	pointer-events: none;
}

.comparison__handle span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: 48px;
	height: 48px;
	border: 3px solid var(--white);
	border-radius: 50%;
	place-items: center;
	color: var(--navy-950);
	background: var(--white);
	box-shadow: 0 8px 25px rgba(3, 29, 49, .25);
	font-weight: 900;
	transform: translate(-50%, -50%);
}

.comparison__range {
	position: absolute;
	z-index: 8;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.comparison:has(.comparison__range:focus-visible) {
	outline: 3px solid var(--blue-300);
	outline-offset: 5px;
}

.review-block {
	display: grid;
	grid-template-columns: 1fr .8fr;
	gap: 3rem;
	align-items: center;
	margin-top: 5rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.review-block h3 {
	margin-bottom: .6rem;
	font-size: 1.7rem;
}

.review-block p {
	margin-bottom: 0;
}

.review-block__kicker {
	color: var(--blue-300);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.review-block__rating {
	display: grid;
	justify-items: end;
}

.review-block__stars {
	color: var(--blue-300);
	font-size: 1.8rem;
	letter-spacing: .15em;
}

.review-block__rating strong {
	margin: .3rem 0 .6rem;
	color: var(--white);
	font-family: var(--font-display);
}

.review-block .text-link {
	color: var(--blue-300);
}

/* Pricing */
.pricing {
	background: var(--blue-50);
}

.pricing__grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(4rem, 9vw, 8rem);
	align-items: center;
}

.pricing__intro > p:not(.eyebrow) {
	margin-bottom: 2rem;
	color: var(--muted);
}

.pricing__factors {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.pricing__factors article {
	min-height: 210px;
	padding: 2rem;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.pricing__factors article:nth-child(2n) {
	border-right: 0;
}

.pricing__factors article:nth-last-child(-n+2) {
	border-bottom: 0;
}

.pricing__factors article > span {
	display: block;
	margin-bottom: 1.5rem;
	color: var(--navy-700);
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .1em;
}

.pricing__factors h3 {
	margin-bottom: .6rem;
	font-size: 1.15rem;
}

.pricing__factors p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: .88rem;
}

/* FAQ */
.faq {
	background: var(--white);
}

.faq__grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: clamp(4rem, 9vw, 8rem);
}

.faq__grid > div:first-child > p:not(.eyebrow) {
	color: var(--muted);
}

.faq__items {
	border-top: 1px solid var(--line);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.5rem .25rem;
	color: var(--navy-950);
	font-family: var(--font-display);
	font-size: 1.08rem;
	font-weight: 700;
	list-style: none;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary span {
	position: relative;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.faq summary span::before,
.faq summary span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: var(--navy-800);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}

.faq summary span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
	transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
	max-width: 720px;
	padding: 0 3rem 1.5rem .25rem;
	color: var(--muted);
	font-size: .94rem;
}

/* Contact */
.contact {
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, .75);
	background: var(--navy-900);
}

.contact::before {
	position: absolute;
	right: -220px;
	bottom: -320px;
	width: 720px;
	height: 720px;
	border: 1px solid rgba(255, 255, 255, .08);
	content: "";
	transform: rotate(45deg);
}

.contact__grid {
	position: relative;
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(4rem, 9vw, 8rem);
	align-items: center;
}

.contact h2 {
	color: var(--white);
}

.contact__lead {
	margin-bottom: 2.5rem;
	font-size: 1.05rem;
}

.contact-list {
	display: grid;
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-list li > div {
	display: grid;
	flex: 0 0 46px;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .2);
	place-items: center;
	color: var(--blue-300);
}

.contact-list li > span {
	display: grid;
}

.contact-list small {
	color: var(--blue-300);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
	color: var(--white);
	font-size: .97rem;
	font-weight: 700;
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
}

.contact-card {
	padding: clamp(1.5rem, 4vw, 3rem);
	color: var(--ink);
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.contact-card__heading {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.8rem;
	padding-bottom: 1.4rem;
	border-bottom: 1px solid var(--line);
}

.contact-card__heading > span {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	color: var(--white);
	background: var(--navy-900);
}

.contact-card__heading p,
.contact-card__heading h3 {
	margin: 0;
}

.contact-card__heading p {
	color: var(--navy-700);
	font-size: .67rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.contact-card__heading h3 {
	font-size: 1.5rem;
}

.contact-card .wpcf7-form,
.contact-card .cf7-form-grid,
.contact-card .wpcf7-form label {
	display: grid;
}

.contact-card .wpcf7-form,
.contact-card .cf7-form-grid {
	gap: 1rem;
}

.contact-card .cf7-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.contact-card .wpcf7-form p {
	margin: 0;
}

.contact-card .wpcf7-form label {
	gap: .4rem;
	color: var(--navy-950);
	font-size: .78rem;
	font-weight: 750;
}

.contact-card .wpcf7-form label small {
	color: var(--muted);
	font-weight: 500;
}

.contact-card .wpcf7-form-control-wrap {
	display: block;
	margin-top: .4rem;
}

.contact-card .wpcf7-form input:not([type="checkbox"]):not([type="submit"]),
.contact-card .wpcf7-form select,
.contact-card .wpcf7-form textarea {
	width: 100%;
	padding: .78rem .9rem;
	border: 1px solid #cbd7de;
	border-radius: 0;
	background: #fff;
	font-size: .92rem;
	font-weight: 400;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-card .wpcf7-form input:not([type="checkbox"]):not([type="submit"]) {
	min-height: 48px;
}

.contact-card .wpcf7-form textarea {
	min-height: 125px;
	resize: vertical;
}

.contact-card .wpcf7-form input:focus,
.contact-card .wpcf7-form select:focus,
.contact-card .wpcf7-form textarea:focus {
	border-color: var(--blue-500);
	box-shadow: 0 0 0 3px rgba(88, 166, 195, .16);
	outline: none;
}

.contact-card .wpcf7-acceptance .wpcf7-list-item {
	margin: .2rem 0;
}

.contact-card .wpcf7-acceptance label {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: .6rem;
	align-items: start;
	color: var(--muted) !important;
	font-size: .7rem !important;
	font-weight: 400 !important;
	line-height: 1.5;
}

.contact-card .wpcf7-acceptance input {
	width: 18px;
	height: 18px;
	margin: .15rem 0 0;
	accent-color: var(--navy-800);
}

.contact-card .wpcf7-acceptance a {
	color: var(--navy-800);
	font-weight: 700;
}

.contact-card .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: .85rem 1.45rem;
	border: 2px solid var(--navy-900);
	border-radius: 2px;
	color: var(--white);
	background: var(--navy-900);
	font-size: .92rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-card .wpcf7-submit:hover {
	border-color: var(--navy-700);
	background: var(--navy-700);
	transform: translateY(-2px);
}

.contact-card .wpcf7-spinner {
	display: block;
	margin: .5rem auto 0;
}

.contact-card .cf7-form-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	margin: -.25rem 0 0;
	color: var(--muted);
	font-size: .68rem;
}

.contact-card .wpcf7-not-valid-tip {
	margin-top: .3rem;
	color: var(--error);
	font-size: .72rem;
	font-weight: 650;
}

.contact-card .wpcf7 form .wpcf7-response-output {
	margin: .75rem 0 0;
	padding: .85rem 1rem;
	border: 0;
	border-left: 3px solid var(--error);
	color: #7e2929;
	background: #fff0f0;
	font-size: .8rem;
	font-weight: 650;
}

.contact-card .wpcf7 form.sent .wpcf7-response-output {
	border-left-color: var(--success);
	color: #155638;
	background: #edf8f2;
}

.contact-form-missing {
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--navy-700);
	color: var(--navy-900);
	background: var(--blue-50);
	font-size: .88rem;
	font-weight: 650;
}

/* Career */
.career {
	padding: 4rem 0;
	background: var(--blue-50);
}

.career__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
}

.career__inner > div {
	max-width: 720px;
}

.career h2 {
	margin-bottom: .6rem;
	font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.career p:not(.eyebrow) {
	margin-bottom: 0;
	color: var(--muted);
}

/* Footer */
.site-footer {
	padding-top: 5rem;
	color: rgba(255, 255, 255, .65);
	background: var(--navy-950);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr .8fr 1fr;
	gap: 4rem;
	padding-bottom: 4rem;
}

.site-footer .brand img {
	width: 230px;
	filter: brightness(0) invert(1);
}

.footer-brand > p {
	margin: 1.25rem 0;
	color: rgba(255, 255, 255, .7);
	font-family: var(--font-display);
	font-weight: 600;
}

.social-links {
	display: flex;
	gap: .6rem;
}

.social-links a {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .2);
	place-items: center;
	color: var(--blue-300);
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.social-links a:hover {
	color: var(--navy-950);
	background: var(--white);
}

.footer-heading {
	margin-bottom: 1.25rem;
	color: var(--white);
	font-size: .83rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-list {
	display: grid;
	gap: .7rem;
	margin: 0;
	padding: 0;
	font-size: .83rem;
	list-style: none;
}

.footer-list a {
	text-decoration: none;
}

.footer-list a:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-contact li,
.footer-contact a {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
}

.footer-contact .icon {
	flex: 0 0 auto;
	margin-top: .25rem;
	color: var(--blue-300);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 76px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .73rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom ul {
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom a {
	text-decoration: none;
}

.footer-bottom a:hover {
	color: var(--white);
}

.mobile-call {
	position: fixed;
	z-index: 900;
	right: 1rem;
	bottom: 1rem;
	display: none;
	width: 54px;
	height: 54px;
	border: 2px solid var(--white);
	border-radius: 50%;
	place-items: center;
	color: var(--white);
	background: var(--navy-800);
	box-shadow: 0 10px 30px rgba(3, 29, 49, .3);
	text-decoration: none;
}

.mobile-call .icon {
	font-size: 1.3rem;
}

/* Generic content */
.content-page {
	min-height: 65vh;
	padding: clamp(5rem, 10vw, 8rem) 0;
	background: var(--cream);
}

.content-page__inner {
	max-width: 1050px;
}

.content-page__inner--narrow {
	max-width: 850px;
}

.content-header {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--line);
}

.content-header h1 {
	margin-bottom: 0;
	font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.entry-content {
	color: #354b5b;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2.2em;
}

.entry-content h2 {
	font-size: 1.8rem;
}

.entry-content h3 {
	font-size: 1.35rem;
}

.entry-content a {
	color: var(--navy-700);
}

.entry-content .alignwide {
	max-width: 1000px;
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.featured-image {
	margin-bottom: 2.5rem;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.post-card {
	padding: 2rem;
	border: 1px solid var(--line);
	background: var(--white);
}

.post-card__date {
	color: var(--navy-700);
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.post-card h2 {
	font-size: 1.7rem;
}

.post-card h2 a {
	text-decoration: none;
}

.legal-alert {
	margin-bottom: 2rem;
	padding: 1rem 1.25rem;
	border-left: 4px solid #d7952f;
	color: #6b4a17;
	background: #fff7e8;
	font-weight: 650;
}

.error-page {
	display: grid;
	min-height: 70vh;
	padding: 6rem 0;
	place-items: center;
	background: var(--blue-50);
	text-align: center;
}

.error-page__inner {
	max-width: 720px;
}

.error-page__code {
	margin-bottom: -1rem;
	color: var(--blue-100);
	font-family: var(--font-display);
	font-size: clamp(8rem, 25vw, 16rem);
	font-weight: 900;
	line-height: .8;
}

.error-page .eyebrow {
	justify-content: center;
}

.comments-area {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

/* Tablet and mobile */
@media (max-width: 1080px) {
	.nav-cta {
		display: none;
	}

	.primary-nav {
		gap: 0;
	}

	.service-card {
		min-height: 370px;
		padding: 1.75rem;
	}

	.about__grid {
		gap: 4rem;
	}

	.results__grid {
		grid-template-columns: .8fr 1.2fr;
		gap: 3rem;
	}
}

@media (max-width: 900px) {
	:root {
		--header-height: 76px;
	}

	.admin-bar .site-header.is-sticky .header-main {
		top: 46px;
	}

	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		position: fixed;
		z-index: 999;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 2rem 24px;
		visibility: hidden;
		overflow-y: auto;
		background: var(--white);
		opacity: 0;
		transform: translateY(-12px);
		transition: opacity .2s ease, transform .2s ease, visibility .2s;
	}

	.utility-bar + .header-main .primary-nav {
		top: calc(var(--header-height) + 34px);
	}

	.site-header.is-sticky .primary-nav {
		top: var(--header-height);
	}

	.admin-bar .site-header.is-sticky .primary-nav {
		top: calc(var(--header-height) + 46px);
	}

	.primary-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-nav .menu {
		display: grid;
		gap: 0;
	}

	.primary-nav .menu a {
		padding: 1rem 0;
		border-bottom: 1px solid var(--line);
		font-family: var(--font-display);
		font-size: 1.25rem;
	}

	.primary-nav .menu a::after {
		display: none;
	}

	.primary-nav .nav-cta {
		display: inline-flex;
		width: 100%;
		margin-top: 1.5rem;
	}

	.hero {
		min-height: 710px;
	}

	.hero__content {
		width: min(700px, 75%);
	}

	.trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-strip__grid > div:nth-child(3) {
		border-left: 1px solid var(--line);
	}

	.trust-strip__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}

	.section-intro,
	.about__grid,
	.pricing__grid,
	.faq__grid,
	.contact__grid {
		grid-template-columns: 1fr;
	}

	.section-intro {
		gap: 1rem;
	}

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

	.about__visual {
		min-height: 460px;
	}

	.about__statement {
		right: 30px;
	}

	.about__content {
		max-width: 740px;
	}

	.results__grid {
		grid-template-columns: 1fr;
	}

	.results__content {
		max-width: 740px;
	}

	.comparison {
		max-width: 720px;
	}

	.pricing__intro {
		max-width: 740px;
	}

	.faq__grid,
	.contact__grid {
		gap: 3rem;
	}

	.contact__info {
		max-width: 740px;
	}
}

@media (max-width: 700px) {
	body {
		font-size: 16px;
	}

	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.section {
		padding: 4.75rem 0;
	}

	.utility-bar {
		display: none;
	}

	.brand img {
		width: 205px;
		max-width: 58vw;
	}

	.primary-nav {
		top: var(--header-height) !important;
	}

	.admin-bar .site-header.is-sticky .primary-nav {
		top: calc(var(--header-height) + 46px) !important;
	}

	.hero {
		min-height: 700px;
		align-items: flex-end;
	}

	.hero__media img {
		object-position: 63% center;
	}

	.hero__overlay {
		background: linear-gradient(180deg, rgba(3, 29, 49, .1) 0%, rgba(3, 29, 49, .55) 28%, rgba(3, 29, 49, .98) 67%, var(--navy-950) 100%);
	}

	.hero__inner {
		padding-block: 12rem 3.5rem;
	}

	.hero__content {
		width: 100%;
	}

	.hero h1 {
		font-size: clamp(2.7rem, 13vw, 4rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
		gap: 1rem;
	}

	.hero__actions .text-link {
		justify-content: center;
	}

	.hero__proof {
		display: grid;
		grid-template-columns: 1fr;
	}

	.trust-strip__grid > div {
		min-height: 94px;
		padding: 1rem;
	}

	.trust-strip__grid .icon {
		font-size: 1.5rem;
	}

	.trust-strip__grid strong {
		font-size: .82rem;
	}

	.trust-strip__grid span {
		font-size: .68rem;
	}

	.section-intro {
		margin-bottom: 2.5rem;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 330px;
	}

	.service-note {
		grid-template-columns: auto 1fr;
		padding: 1.25rem;
	}

	.service-note .button {
		grid-column: 1 / -1;
	}

	.about__visual {
		min-height: 390px;
	}

	.about__statement {
		right: 16px;
		bottom: 16px;
	}

	.values > div {
		grid-template-columns: 36px 1fr;
	}

	.values p {
		grid-column: 2;
	}

	.process-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.process-grid li {
		padding-top: 2.5rem;
		border: 1px solid var(--line);
	}

	.process-grid li:not(:last-child)::after {
		display: none;
	}

	.comparison__handle span {
		width: 42px;
		height: 42px;
	}

	.review-block {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.review-block__rating {
		justify-items: start;
	}

	.pricing__factors {
		grid-template-columns: 1fr;
	}

	.pricing__factors article,
	.pricing__factors article:nth-child(2n),
	.pricing__factors article:nth-last-child(-n+2) {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.pricing__factors article:last-child {
		border-bottom: 0;
	}

	.contact-card .cf7-row {
		grid-template-columns: 1fr;
	}

	.contact-card {
		margin-inline: -8px;
	}

	.career__inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.career__inner {
		gap: 1.5rem;
	}

	.career__inner .button {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-bottom {
		justify-content: center;
		padding: 1.5rem 0 2rem;
	}

	.footer-bottom ul {
		flex-wrap: wrap;
	}

	.mobile-call {
		display: grid;
	}

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

@media (max-width: 420px) {
	.trust-strip__grid {
		grid-template-columns: 1fr;
	}

	.trust-strip__grid > div {
		border-right: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
		border-left: 1px solid var(--line);
	}

	.trust-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.contact-card {
		padding: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.mobile-call,
	.button {
		display: none !important;
	}

	.content-page {
		padding: 0;
		background: #fff;
	}
}
