:root {
	--navy: #0a3a78;
	--navy-dark: #05254f;
	--gold: #d4a441;
	--gold-light: #f0cc78;
	--white: #fff;
	--light: #f8f9fb;
	--ink: #152236;
	--gray: #667085;
	--line: #e5e9f0;
	--shadow: 0 20px 60px rgba(10, 58, 120, .12)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	color: var(--ink);
	font-family: "DM Sans", sans-serif;
	background: #fff
}

body.menu-open {
	overflow: hidden
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0
}

h1,
h2,
h3,
h4 {
	font-family: Manrope, sans-serif
}

a {
	color: inherit;
	text-decoration: none
}

img {
	display: block;
	max-width: 100%
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto
}

.topbar {
	background: var(--navy-dark);
	color: #d8e4f4;
	font-size: 12px;
	padding: 8px 0
}

.topbar-inner,
.topbar-inner div {
	display: flex;
	justify-content: space-between;
	gap: 24px
}

.topbar a:hover {
	color: var(--gold-light)
}

.site-header {
	height: 82px;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(10, 58, 120, .08);
	box-shadow: 0 4px 20px rgba(8, 44, 92, .04)
}

.nav-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 35px
}

.brand {
	width: 150px;
	height: 65px;
	overflow: hidden;
	display: flex;
	align-items: center
}

.brand img {
	width: 100%;
	transform: scale(1.8)
}

.main-nav {
	margin-left: auto;
	display: flex;
	gap: 28px
}

.main-nav a {
	font-size: 14px;
	font-weight: 600;
	color: #34445a
}

.main-nav a:hover {
	color: var(--navy)
}

.nav-actions {
	display: flex;
	gap: 10px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 0;
	border-radius: 6px;
	padding: 14px 21px;
	font-family: "DM Sans";
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: .25s;
	white-space: nowrap
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(7, 38, 79, .15)
}

.btn.small {
	padding: 11px 16px
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	color: #17243a
}

.btn-outline {
	border: 1px solid #c9d4e2;
	color: var(--navy);
	background: #fff
}

.btn-light {
	background: #fff;
	color: var(--navy)
}

.btn-navy {
	background: var(--navy);
	color: #fff
}

.btn-outline-light {
	border: 1px solid rgba(255, 255, 255, .5);
	color: #fff
}

.menu-toggle {
	display: none;
	background: none;
	border: 0
}

.hero {
	background: linear-gradient(125deg, #062b5d 0%, #0a3a78 58%, #0c4d95 100%);
	min-height: 680px;
	position: relative;
	overflow: hidden;
	color: #fff
}

.hero:after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: linear-gradient(to right, black, transparent)
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	opacity: .35
}

.orb-one {
	width: 600px;
	height: 600px;
	background: #1268b8;
	right: -220px;
	top: -300px
}

.orb-two {
	width: 350px;
	height: 350px;
	border: 1px solid rgba(212, 164, 65, .4);
	left: -180px;
	bottom: -170px
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 70px;
	align-items: center;
	padding: 75px 0 68px
}

.eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #f2cf7d;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px
}

.eyebrow span {
	height: 1px;
	width: 28px;
	background: currentColor
}

.eyebrow.dark {
	color: #b27d18
}

.hero h1 {
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: -2.8px;
	margin-bottom: 20px
}

.hero h1 em,
.section h2 em {
	color: var(--gold-light);
	font-style: normal
}

.hero-copy>p {
	color: #d5e3f3;
	font-size: 17px;
	line-height: 1.7;
	max-width: 590px
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin: 30px 0 38px
}

.hero-badges {
	display: flex;
	gap: 26px;
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding-top: 25px
}

.hero-badges div {
	display: flex;
	align-items: center;
	gap: 9px
}

.hero-badges b {
	color: var(--gold-light);
	font-size: 16px
}

.hero-badges span {
	font-size: 11px;
	color: #b9cce2
}

.hero-badges strong {
	display: block;
	color: #fff;
	font-size: 13px
}

.hero-card-wrap {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center
}

.consultant-image {
	position: relative;
	height: 460px;
	border-radius: 12px 0 0 12px;
	overflow: hidden
}

.consultant-image:after {
	content: "";
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, rgba(4, 28, 61, .9))
}

.consultant-image img {
	height: 100%;
	width: 100%;
	object-fit: cover
}

.image-label {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 18px;
	right: 12px;
	display: flex;
	align-items: center;
	gap: 9px
}

.image-label strong,
.image-label small {
	display: block
}

.image-label strong {
	font-size: 13px
}

.image-label small {
	font-size: 9px;
	color: #d8e4f4
}

.status-dot {
	width: 9px;
	height: 9px;
	background: #4bd783;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(75, 215, 131, .2)
}

.form-card {
	background: rgba(255, 255, 255, .98);
	color: var(--ink);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 20px 70px rgba(0, 0, 0, .24)
}

.form-heading span {
	color: #b27d18;
	letter-spacing: 1.8px;
	font-weight: 700;
	font-size: 9px
}

.form-heading h3 {
	font-size: 19px;
	line-height: 1.3;
	margin: 7px 0 19px
}

.form-card label,
.eligibility-form label {
	display: block;
	margin-bottom: 12px
}

.form-card label span,
.eligibility-form label span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	color: #536176;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: .5px
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid #dde3eb;
	border-radius: 5px;
	background: #fbfcfd;
	padding: 12px 13px;
	color: #27364b;
	font: 12px "DM Sans";
	outline: none
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(212, 164, 65, .12)
}

.quick-form .btn,
.eligibility-form .btn,
.contact-form .btn {
	width: 100%;
	margin-top: 5px
}

.quick-form>small {
	display: block;
	text-align: center;
	color: #8b95a4;
	font-size: 9px;
	margin-top: 9px
}

.trust-strip {
	background: #fff;
	box-shadow: 0 10px 30px rgba(10, 58, 120, .08);
	position: relative;
	z-index: 3
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr)
}

.trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 25px 15px;
	border-right: 1px solid var(--line)
}

.trust-item:last-child {
	border: 0
}

.trust-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f3f6fa;
	color: var(--gold);
	display: grid;
	place-items: center;
	font-size: 23px
}

.trust-item strong,
.trust-item span {
	display: block
}

.trust-item strong {
	font: 700 19px Manrope;
	color: var(--navy)
}

.trust-item span {
	font-size: 10px;
	color: var(--gray);
	margin-top: 2px
}

.section {
	padding: 100px 0
}

.section-head {
	max-width: 600px;
	margin-bottom: 45px
}

.section-head.center {
	text-align: center;
	margin: 0 auto 45px
}

.section-head.center .eyebrow {
	justify-content: center
}

.section h2 {
	font-size: 39px;
	letter-spacing: -1.7px;
	line-height: 1.18;
	margin-bottom: 14px;
	color: #10233c
}

.section h2 em {
	color: #b58224
}

.section-head p,
.why-copy>p,
.about-copy>p,
.contact-copy>p {
	color: var(--gray);
	line-height: 1.7;
	font-size: 14px
}

.services {
	background: var(--light)
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.service-card {
	background: #fff;
	border: 1px solid #ebedf1;
	border-radius: 10px;
	padding: 28px;
	position: relative;
	transition: .3s;
	overflow: hidden
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
	border-color: #d6b66d
}

.service-card.featured {
	background: var(--navy);
	color: #fff
}

.service-icon {
	width: 48px;
	height: 48px;
	background: #f5efe2;
	border-radius: 8px;
	color: #b27d18;
	display: grid;
	place-items: center;
	font-size: 23px;
	margin-bottom: 27px
}

.featured .service-icon {
	background: rgba(255, 255, 255, .12);
	color: var(--gold-light)
}

.service-no {
	position: absolute;
	right: 22px;
	top: 24px;
	color: #cbd3dd;
	font: 700 11px Manrope
}

.featured .service-no {
	color: #7295bd
}

.service-card h3 {
	font-size: 16px;
	margin-bottom: 10px
}

.service-card p {
	color: #7b8797;
	font-size: 12px;
	line-height: 1.7;
	min-height: 62px
}

.featured p {
	color: #bcd0e6
}

.service-card a {
	color: #b27d18;
	font-weight: 700;
	font-size: 11px
}

.featured a {
	color: var(--gold-light)
}

.service-card a span,
.text-link span {
	margin-left: 5px
}

.center {
	text-align: center
}

.service-footer {
	margin-top: 35px
}

.text-link {
	font-size: 12px;
	font-weight: 700;
	color: var(--navy);
	border-bottom: 1px solid #ccd6e1;
	padding-bottom: 4px
}

.why-grid,
.about-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center
}

.why-visual {
	position: relative;
	padding: 0 35px 35px 0
}

.why-visual img {
	height: 520px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	position: relative;
	z-index: 2
}

.gold-square {
	position: absolute;
	width: 65%;
	height: 70%;
	right: 0;
	bottom: 0;
	background: #f2e7ce;
	border-radius: 10px
}

.experience-card {
	position: absolute;
	z-index: 3;
	bottom: 65px;
	right: -22px;
	background: #fff;
	box-shadow: var(--shadow);
	padding: 22px;
	width: 180px;
	border-left: 4px solid var(--gold)
}

.experience-card strong,
.experience-card span {
	display: block
}

.experience-card strong {
	font: 800 36px Manrope;
	color: var(--navy)
}

.experience-card span {
	font-size: 10px;
	line-height: 1.5;
	color: var(--gray)
}

.check-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 28px 0 32px
}

.check-grid div {
	display: flex;
	gap: 10px
}

.check-grid b {
	color: #b58224
}

.check-grid strong,
.check-grid span {
	display: block
}

.check-grid strong {
	font-size: 12px;
	color: #26374d;
	margin-bottom: 3px
}

.check-grid span {
	font-size: 10px;
	color: #8792a0
}

.process {
	background: var(--navy-dark);
	color: #fff;
	overflow: hidden
}

.process .section-head h2 {
	color: #fff
}

.process .section-head p {
	color: #b7c9df
}

.process-flow {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	position: relative
}

.process-flow:before {
	content: "";
	position: absolute;
	top: 49px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: #426388
}

.process-step {
	padding-right: 28px;
	position: relative
}

.process-step>span {
	font: 700 11px Manrope;
	color: #6e8bab
}

.process-dot {
	width: 16px;
	height: 16px;
	border: 4px solid #31567e;
	background: var(--navy-dark);
	border-radius: 50%;
	margin: 22px 0;
	position: relative;
	z-index: 2
}

.process-step.active .process-dot {
	border-color: var(--gold);
	box-shadow: 0 0 0 7px rgba(212, 164, 65, .15)
}

.process-step h3 {
	font-size: 14px
}

.process-step p {
	font-size: 11px;
	color: #8fa8c4;
	line-height: 1.6
}

.stories {
	background: var(--light)
}

.story-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.story-card {
	background: #fff;
	padding: 28px;
	border-radius: 9px;
	border: 1px solid #edf0f4;
	position: relative
}

.quote {
	font: 800 60px Georgia;
	color: #edf1f5;
	position: absolute;
	right: 24px;
	top: 12px
}

.stars {
	color: var(--gold);
	font-size: 12px;
	letter-spacing: 2px
}

.story-card>p {
	font-size: 12px;
	color: #687588;
	line-height: 1.8;
	margin: 18px 0 24px
}

.client {
	border-top: 1px solid var(--line);
	padding-top: 18px;
	display: flex;
	align-items: center;
	gap: 10px
}

.client>span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--navy);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 10px
}

.client strong,
.client small {
	display: block
}

.client strong {
	font-size: 10px
}

.client small {
	font-size: 8px;
	color: #8a95a4
}

.client b {
	margin-left: auto;
	color: #b58224;
	font-size: 10px
}

.profile-card {
	height: 535px;
	position: relative;
	border-radius: 10px;
	overflow: hidden
}

.profile-card img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.profile-card:after {
	content: "";
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, #082e61)
}

.profile-overlay {
	position: absolute;
	z-index: 2;
	bottom: 30px;
	left: 30px;
	color: #fff
}

.profile-overlay small {
	font-size: 9px;
	color: var(--gold-light);
	letter-spacing: 1.8px
}

.profile-overlay h3 {
	font-size: 25px;
	margin: 7px 0
}

.profile-overlay span {
	font-size: 11px;
	color: #d3dfec
}

.profile-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
	border-radius: 8px;
	margin: 30px 0
}

.profile-stats div {
	padding: 19px;
	border-right: 1px solid var(--line)
}

.profile-stats div:last-child {
	border: 0
}

.profile-stats strong,
.profile-stats span {
	display: block
}

.profile-stats strong {
	font: 800 20px Manrope;
	color: var(--navy)
}

.profile-stats span {
	font-size: 8px;
	color: #8490a0
}

.contact-row {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 12px
}

.contact-row a {
	display: flex;
	gap: 10px;
	align-items: center
}

.contact-row a>span {
	width: 36px;
	height: 36px;
	background: #f3f6fa;
	color: var(--gold);
	display: grid;
	place-items: center;
	border-radius: 50%
}

.contact-row small,
.contact-row strong {
	display: block
}

.contact-row small {
	font-size: 7px;
	color: #8c96a5
}

.contact-row strong {
	font-size: 10px;
	margin-top: 3px
}

.eligibility {
	background: linear-gradient(120deg, #062d61, #0a4388);
	color: #fff
}

.eligibility-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 90px;
	align-items: center
}

.eligibility h2 {
	color: #fff
}

.eligibility-copy>p {
	color: #c4d5e8;
	line-height: 1.7;
	font-size: 13px
}

.eligibility-copy ul {
	list-style: none;
	padding: 0;
	margin: 25px 0 0
}

.eligibility-copy li {
	margin: 13px 0;
	color: #d9e4f0;
	font-size: 11px
}

.eligibility-copy li b {
	color: var(--gold-light);
	margin-right: 9px
}

.eligibility-form {
	background: #fff;
	color: var(--ink);
	padding: 32px;
	border-radius: 10px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

.faq-grid {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	gap: 90px
}

.faq-item {
	border-bottom: 1px solid var(--line)
}

.faq-item button {
	width: 100%;
	background: none;
	border: 0;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	text-align: left;
	color: var(--ink);
	font: 700 12px Manrope;
	cursor: pointer
}

.faq-item button b {
	font-size: 18px;
	color: #b58224;
	transition: .25s
}

.faq-item div {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s
}

.faq-item p {
	font-size: 11px;
	line-height: 1.7;
	color: #758194;
	padding: 0 35px 18px 0;
	margin: 0
}

.faq-item.open div {
	max-height: 130px
}

.faq-item.open button b {
	transform: rotate(45deg)
}

.cta-banner {
	padding: 60px 0;
	background: linear-gradient(120deg, #0a3a78, #0b559e);
	color: #fff
}

.cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px
}

.cta-inner small {
	font-size: 9px;
	letter-spacing: 2px;
	color: var(--gold-light)
}

.cta-inner h2 {
	font-size: 29px;
	margin: 8px 0 0
}

.cta-inner>div:last-child {
	display: flex;
	gap: 10px
}

.contact {
	background: var(--light)
}

.contact-grid {
	align-items: start
}

.contact-list {
	display: grid;
	gap: 14px;
	margin-top: 28px
}

.contact-list a {
	display: flex;
	align-items: center;
	gap: 13px
}

.contact-list b {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	color: #b58224;
	display: grid;
	place-items: center;
	box-shadow: 0 5px 15px rgba(10, 58, 120, .07)
}

.contact-list small,
.contact-list strong {
	display: block
}

.contact-list small {
	font-size: 7px;
	color: #939dab;
	letter-spacing: 1px
}

.contact-list strong {
	font-size: 11px;
	color: #34445b;
	margin-top: 4px
}

.map-link {
	height: 130px;
	border-radius: 8px;
	background: linear-gradient(rgba(6, 46, 97, .84), rgba(6, 46, 97, .84)), url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=800&q=70") center/cover;
	margin-top: 25px;
	color: #fff;
	display: flex;
	align-items: end;
	justify-content: space-between;
	padding: 20px
}

.map-link span {
	font: 700 12px Manrope;
	letter-spacing: 2px
}

.map-link a {
	font-size: 9px;
	color: var(--gold-light)
}

.contact-form {
	box-shadow: var(--shadow)
}

textarea {
	min-height: 90px;
	resize: vertical
}

footer {
	background: #041d3e;
	color: #9eb2ca;
	padding-top: 60px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
	gap: 55px;
	padding-bottom: 45px
}

.footer-brand img {
	width: 180px;
	filter: brightness(0) invert(1);
	margin-bottom: 15px
}

.footer-brand p,
footer p {
	font-size: 10px;
	line-height: 1.7
}

footer h4 {
	font-size: 11px;
	color: #fff;
	margin-bottom: 17px
}

footer a {
	display: block;
	font-size: 9px;
	margin: 10px 0
}

footer a:hover {
	color: var(--gold-light)
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	font-size: 8px
}

.footer-bottom div {
	display: flex;
	gap: 20px
}

.footer-bottom a {
	margin: 0
}

.float-actions {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 40;
	display: flex;
	flex-direction: column;
	gap: 8px
}

.float-actions a,
.float-actions button {
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font: 700 11px "DM Sans";
	box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
	cursor: pointer
}

.float-call {
	background: var(--navy)
}

.float-wa {
	background: #27b563
}

.back-top {
	background: #27374d;
	opacity: 0;
	pointer-events: none;
	transition: .2s
}

.back-top.show {
	opacity: 1;
	pointer-events: auto
}

.toast {
	position: fixed;
	z-index: 100;
	left: 50%;
	bottom: -100px;
	transform: translateX(-50%);
	background: #17355a;
	color: #fff;
	padding: 13px 22px;
	border-radius: 6px;
	font-size: 12px;
	box-shadow: var(--shadow);
	transition: .3s
}

.toast.show {
	bottom: 30px
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .65s, transform .65s
}

.reveal.visible {
	opacity: 1;
	transform: none
}

@media(max-width:1050px) {
	.nav-actions .btn-outline {
		display: none
	}

	.main-nav {
		gap: 18px
	}

	.hero-grid {
		gap: 35px
	}

	.hero h1 {
		font-size: 46px
	}

	.hero-card-wrap {
		grid-template-columns: 1fr
	}

	.consultant-image {
		display: none
	}

	.why-grid,
	.about-grid,
	.contact-grid {
		gap: 50px
	}
}

@media(max-width:820px) {
	.topbar {
		display: none
	}

	.site-header {
		height: 70px
	}

	.brand {
		width: 130px
	}

	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 4px;
		margin-left: auto;
		padding: 10px
	}

	.menu-toggle span {
		width: 22px;
		height: 2px;
		background: var(--navy)
	}

	.main-nav {
		position: fixed;
		inset: 70px 0 0;
		background: #fff;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 50px;
		gap: 30px;
		transform: translateX(100%);
		transition: .3s
	}

	.menu-open .main-nav {
		transform: none
	}

	.main-nav a {
		font-size: 18px
	}

	.nav-actions {
		display: none
	}

	.hero-grid {
		grid-template-columns: 1fr;
		padding: 65px 0
	}

	.hero-copy {
		text-align: center
	}

	.hero-copy .eyebrow {
		justify-content: center
	}

	.hero h1 {
		font-size: 42px
	}

	.hero-copy>p {
		margin-left: auto;
		margin-right: auto
	}

	.hero-actions,
	.hero-badges {
		justify-content: center
	}

	.hero-card-wrap {
		max-width: 480px;
		margin: auto;
		width: 100%
	}

	.trust-grid {
		grid-template-columns: 1fr 1fr
	}

	.trust-item:nth-child(2) {
		border-right: 0
	}

	.trust-item:nth-child(-n+2) {
		border-bottom: 1px solid var(--line)
	}

	.service-grid,
	.story-grid {
		grid-template-columns: 1fr 1fr
	}

	.why-grid,
	.about-grid,
	.contact-grid,
	.eligibility-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 45px
	}

	.why-visual,
	.profile-card {
		max-width: 560px;
		margin: auto;
		width: 100%
	}

	.process-flow {
		grid-template-columns: 1fr 1fr;
		gap: 30px
	}

	.process-flow:before {
		display: none
	}

	.cta-inner {
		flex-direction: column;
		text-align: center
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.footer-brand {
		grid-column: 1/-1
	}
}

@media(max-width:560px) {
	.container {
		width: min(100% - 28px, 1180px)
	}

	.section {
		padding: 70px 0
	}

	.hero {
		min-height: auto
	}

	.hero-grid {
		padding: 50px 0 60px
	}

	.hero h1 {
		font-size: 34px;
		letter-spacing: -1.7px
	}

	.hero-copy>p {
		font-size: 14px
	}

	.hero-actions {
		flex-direction: column
	}

	.hero-badges {
		gap: 14px
	}

	.hero-badges div {
		display: block;
		text-align: left
	}

	.hero-badges b {
		display: none
	}

	.form-card {
		padding: 23px
	}

	.trust-item {
		justify-content: flex-start;
		padding: 18px 8px;
		gap: 8px
	}

	.trust-icon {
		width: 34px;
		height: 34px
	}

	.trust-item strong {
		font-size: 14px
	}

	.section h2 {
		font-size: 30px
	}

	.service-grid,
	.story-grid {
		grid-template-columns: 1fr
	}

	.why-visual img {
		height: 390px
	}

	.experience-card {
		right: 0
	}

	.check-grid {
		grid-template-columns: 1fr
	}

	.process-flow {
		grid-template-columns: 1fr
	}

	.process-step {
		padding-left: 35px
	}

	.process-dot {
		position: absolute;
		left: 0;
		top: 0
	}

	.profile-card {
		height: 440px
	}

	.profile-stats {
		grid-template-columns: 1fr 1fr
	}

	.profile-stats div:last-child {
		grid-column: 1/-1;
		border-top: 1px solid var(--line)
	}

	.contact-row,
	.form-row {
		grid-template-columns: 1fr
	}

	.cta-inner h2 {
		font-size: 24px
	}

	.cta-inner>div:last-child {
		flex-direction: column;
		width: 100%
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px
	}

	.footer-bottom {
		gap: 15px;
		flex-direction: column
	}

	.float-actions {
		bottom: 10px;
		right: 10px
	}

	.float-actions a,
	.float-actions button {
		width: 38px;
		height: 38px
	}
}

.brand {
	width: 215px;
	overflow: visible;
	gap: 10px
}

.brand img {
	width: 66px;
	height: 66px;
	object-fit: contain;
	transform: none
}

.brand span,
.brand strong,
.brand small {
	display: block
}

.brand strong {
	font: 800 20px Manrope;
	letter-spacing: 2.7px;
	color: var(--navy)
}

.brand small {
	font: 700 8px Manrope;
	letter-spacing: 3.5px;
	color: #b58224;
	margin-top: 2px
}

.footer-wordmark strong,
.footer-wordmark span {
	display: block
}

.footer-wordmark strong {
	font: 800 25px Manrope;
	letter-spacing: 5px;
	color: #fff
}

.footer-wordmark span {
	font: 700 8px Manrope;
	letter-spacing: 5px;
	color: var(--gold-light);
	margin-top: 3px
}

@media(max-width:820px) {
	.main-nav {
		margin-left: 0
	}
}

@media(max-width:820px) {
	.brand {
		width: 190px
	}

	.brand img {
		width: 60px;
		height: 60px
	}

	.brand strong {
		font-size: 18px
	}

	.brand small {
		font-size: 7px
	}
}

/* Readability and photography refresh */
body {
	font-size: 16px
}

.main-nav a {
	font-size: 16px
}

.btn {
	font-size: 16px;
	padding: 15px 22px
}

.eyebrow {
	font-size: 13px;
	letter-spacing: 1.7px
}

.hero-copy>p {
	font-size: 19px;
	color: #e1ebf6
}

.hero-badges span {
	font-size: 13px;
	color: #c9d8e9
}

.hero-badges strong {
	font-size: 15px
}

.consultant-image:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(145deg, transparent 45%, rgba(6, 43, 93, .22))
}

.image-label strong {
	font-size: 15px
}

.image-label small {
	font-size: 11px
}

.form-heading span {
	font-size: 11px
}

.form-heading h3 {
	font-size: 21px
}

.form-card label span,
.eligibility-form label span {
	font-size: 12px;
	margin-bottom: 7px
}

input,
select,
textarea {
	padding: 14px;
	font-size: 15px
}

.quick-form>small {
	font-size: 11px
}

.trust-item span {
	font-size: 13px
}

.section-head p,
.why-copy>p,
.about-copy>p,
.contact-copy>p {
	font-size: 17px;
	color: #58677a;
	line-height: 1.75
}

.service-card {
	padding: 0;
	border-radius: 12px
}

.service-image {
	height: 170px;
	overflow: hidden;
	position: relative
}

.service-image:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(5, 37, 79, .25))
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s
}

.service-card:hover .service-image img {
	transform: scale(1.05)
}

.service-content {
	padding: 25px 27px 28px
}

.service-no {
	z-index: 2;
	right: 18px;
	top: 145px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	box-shadow: 0 5px 16px rgba(5, 37, 79, .14);
	color: #a97418;
	font-size: 12px
}

.featured .service-no {
	color: #a97418
}

.service-card h3 {
	font-size: 19px
}

.service-card p {
	font-size: 15px;
	line-height: 1.7;
	min-height: 77px;
	color: #637185
}

.featured p {
	color: #d1dfed
}

.service-card a {
	font-size: 14px
}

.check-grid strong {
	font-size: 14px
}

.check-grid span {
	font-size: 12px;
	line-height: 1.5
}

.process-step h3 {
	font-size: 16px
}

.process-step p {
	font-size: 13px
}

.story-card>p {
	font-size: 14px
}

.faq-item button {
	font-size: 15px
}

.faq-item p {
	font-size: 14px
}

.contact-list strong {
	font-size: 14px
}

.contact-list small {
	font-size: 10px
}

.footer-brand p,
footer p {
	font-size: 12px
}

footer h4 {
	font-size: 14px
}

footer a {
	font-size: 12px
}

@media(max-width:560px) {
	.hero-copy>p {
		font-size: 17px
	}

	.service-image {
		height: 190px
	}

	.service-no {
		top: 165px
	}

	.section-head p,
	.why-copy>p,
	.about-copy>p,
	.contact-copy>p {
		font-size: 16px
	}
}

/* Accessible typography scale */
body {
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6
}

.section h2 {
	font-size: 42px;
	line-height: 1.22
}

.section-head p,
.why-copy>p,
.about-copy>p,
.contact-copy>p,
.eligibility-copy>p {
	font-size: 18px;
	line-height: 1.75
}

.text-link {
	font-size: 15px
}

.eligibility-copy li {
	font-size: 15px;
	line-height: 1.65;
	margin: 15px 0
}

.process .section-head p {
	font-size: 18px;
	line-height: 1.7
}

.process-flow {
	gap: 20px
}

.process-step {
	padding-right: 20px
}

.process-step>span {
	font-size: 13px
}

.process-step h3 {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 10px
}

.process-step p {
	font-size: 15px;
	line-height: 1.65;
	color: #b4c7dc;
	max-width: 190px
}

.story-card {
	padding: 32px
}

.story-card>p {
	font-size: 16px;
	line-height: 1.8;
	min-height: 145px;
	color: #58677a
}

.stars {
	font-size: 14px
}

.client strong {
	font-size: 13px
}

.client small {
	font-size: 11px;
	margin-top: 3px
}

.client b {
	font-size: 12px
}

.faq-item button {
	font-size: 17px;
	line-height: 1.45;
	padding: 23px 0
}

.faq-item p {
	font-size: 16px;
	line-height: 1.8;
	padding-bottom: 24px;
	color: #647286
}

.faq-item.open div {
	max-height: 190px
}

.check-grid strong {
	font-size: 16px
}

.check-grid span {
	font-size: 14px;
	line-height: 1.55
}

.profile-stats span {
	font-size: 11px
}

.contact-row small {
	font-size: 10px
}

.contact-row strong {
	font-size: 13px
}

.contact-list strong {
	font-size: 15px;
	line-height: 1.45
}

.service-card p {
	font-size: 16px
}

.service-card a {
	font-size: 15px
}

.quick-form>small {
	font-size: 12px
}

.footer-brand p,
footer p {
	font-size: 14px
}

.footer-grid a {
	font-size: 14px;
	line-height: 1.5
}

@media(max-width:820px) {
	body {
		font-size: 16px
	}

	.section h2 {
		font-size: 36px
	}

	.process-flow {
		gap: 28px
	}

	.process-step p {
		max-width: none
	}

	.story-card>p {
		min-height: auto
	}

	.faq-item button {
		font-size: 16px
	}

	.faq-item p {
		font-size: 16px
	}
}

@media(max-width:560px) {
	.section h2 {
		font-size: 32px
	}

	.section-head p,
	.why-copy>p,
	.about-copy>p,
	.contact-copy>p,
	.eligibility-copy>p {
		font-size: 17px
	}

	.process-step h3 {
		font-size: 17px
	}

	.process-step p {
		font-size: 15px
	}

	.story-card>p {
		font-size: 16px
	}

	.eligibility-copy li {
		font-size: 15px
	}
}

/* PHP site refinements */
.topbar {
	font-size: 14px
}

.topbar strong {
	font-weight: 800;
	color: #fff;
	letter-spacing: .2px
}

.mini-icon {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 20px;
	margin-right: 7px;
	border-radius: 999px;
	background: rgba(212, 164, 65, .18);
	color: #f0cc78;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase
}

.topbar-inner a {
	font-weight: 700
}

.trust-icon {
	font-size: 12px;
	font-weight: 900
}

.trust-item strong {
	font-size: 30px;
	line-height: 1;
	min-height: 34px;
	display: flex;
	align-items: center;
	gap: 2px
}

.trust-item strong .counter {
	font-size: 30px
}

.trust-item:nth-child(2) strong,
.trust-item:nth-child(4) strong {
	font-size: 26px
}

.service-grid-8 {
	grid-template-columns: repeat(4, 1fr)
}

.service-grid-8 .service-card.featured {
	background: #fff;
	color: var(--ink)
}

.service-grid-8 .service-card.featured p {
	color: #637185
}

.service-grid-8 .service-card.featured a {
	color: #a97418
}

.consultant-image img,
.profile-card img {
	object-position: center top
}

.cta-banner {
	padding: 78px 0;
	background: radial-gradient(circle at 10% 20%, rgba(212, 164, 65, .22), transparent 28%), linear-gradient(120deg, #062d61, #0a4d95);
	position: relative;
	overflow: hidden
}

.cta-banner:before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, .12);
	pointer-events: none
}

.cta-inner {
	position: relative;
	z-index: 2
}

.cta-inner small {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	color: #f0cc78
}

.cta-inner h2 {
	font-size: 42px;
	line-height: 1.18;
	max-width: 760px
}

.cta-inner p {
	margin: 14px 0 0;
	color: #d5e3f3;
	font-size: 18px;
	line-height: 1.7;
	max-width: 720px
}

.cta-inner>div:last-child {
	align-items: center
}

.footer-bottom {
	font-size: 14px;
	color: #e2ebf6
}

.footer-bottom a {
	font-size: 14px;
	color: #e2ebf6
}

.footer-bottom a:hover,
.footer-bottom span {
	color: #fff
}

.float-call {
	font-size: 10px
}

.inner-hero {
	background: linear-gradient(125deg, #062b5d, #0a3a78);
	color: #fff;
	padding: 84px 0
}

.inner-hero-grid {
	display: grid;
	grid-template-columns: 1fr .85fr;
	gap: 70px;
	align-items: center
}

.inner-hero h1 {
	font-size: 56px;
	line-height: 1.08;
	letter-spacing: -2px;
	margin-bottom: 18px
}

.inner-hero p {
	font-size: 19px;
	line-height: 1.75;
	color: #dbe8f6;
	margin-bottom: 30px
}

.inner-hero img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .25)
}

.service-detail-grid {
	display: grid;
	grid-template-columns: 1fr .75fr;
	gap: 70px;
	align-items: start
}

.service-detail-grid h2 {
	font-size: 42px;
	line-height: 1.2;
	letter-spacing: -1.4px;
	color: #10233c
}

.service-detail-grid>div>p {
	font-size: 18px;
	line-height: 1.75;
	color: #58677a
}

.service-checks {
	grid-template-columns: 1fr 1fr
}

.form-status {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 700
}

.form-status.ok {
	color: #19744a
}

.form-status.error {
	color: #b42318
}

@media(max-width:1050px) {
	.service-grid-8 {
		grid-template-columns: repeat(2, 1fr)
	}

	.inner-hero-grid,
	.service-detail-grid {
		grid-template-columns: 1fr
	}

	.cta-inner h2 {
		font-size: 36px
	}
}

@media(max-width:820px) {
	.topbar {
		display: block
	}

	.topbar-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 8px
	}

	.topbar-inner div {
		justify-content: center;
		flex-wrap: wrap
	}

	.trust-item strong,
	.trust-item strong .counter {
		font-size: 26px
	}

	.service-grid-8 {
		grid-template-columns: 1fr 1fr
	}

	.cta-inner p {
		font-size: 16px
	}

	.footer-bottom {
		font-size: 13px
	}

	.footer-bottom a {
		font-size: 13px
	}

	.inner-hero h1 {
		font-size: 40px
	}

	.inner-hero img {
		height: 320px
	}
}

@media(max-width:560px) {
	.service-grid-8 {
		grid-template-columns: 1fr
	}

	.trust-item strong,
	.trust-item strong .counter {
		font-size: 24px
	}

	.trust-item:nth-child(2) strong,
	.trust-item:nth-child(4) strong {
		font-size: 20px
	}

	.cta-inner h2 {
		font-size: 30px
	}

	.cta-inner small {
		font-size: 10px
	}

	.inner-hero {
		padding: 60px 0
	}

	.inner-hero h1 {
		font-size: 34px
	}

	.inner-hero p {
		font-size: 17px
	}

	.service-detail-grid h2 {
		font-size: 31px
	}

	.service-checks {
		grid-template-columns: 1fr
	}
}

/* Page navigation and SVG icons */
.ui-icon,
.mini-icon,
.contact-row a>span,
.contact-list b,
.float-actions a,
.float-actions button,
.btn span,
.service-card a span {
	display: inline-grid;
	place-items: center
}

.mini-icon {
	min-width: 26px;
	width: 26px;
	height: 26px;
	padding: 0
}

.mini-icon svg,
.contact-row svg,
.contact-list svg,
.float-actions svg,
.btn svg,
.service-card a svg {
	width: 17px;
	height: 17px;
	fill: currentColor
}

.btn span svg,
.service-card a span svg {
	width: 18px;
	height: 18px
}

.float-actions svg {
	width: 19px;
	height: 19px
}

.contact-list b svg {
	width: 20px;
	height: 20px
}

.contact-row a>span svg {
	width: 18px;
	height: 18px
}

.main-nav {
	align-items: center
}

.nav-item {
	position: relative
}

.nav-item>a {
	display: block
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	min-width: 285px;
	transform: translate(-50%, 10px);
	background: #fff;
	border: 1px solid #e7ebf1;
	border-radius: 12px;
	box-shadow: 0 22px 55px rgba(5, 37, 79, .16);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .22s;
	z-index: 80
}

.dropdown-menu:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	height: 20px
}

.dropdown-menu a {
	display: block;
	padding: 11px 13px;
	border-radius: 8px;
	font-size: 14px;
	color: #24364d
}

.dropdown-menu a:hover {
	background: #f7f2e8;
	color: #0a3a78
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0)
}

.float-actions a,
.float-actions button {
	font-size: 0
}

.contact-row a>span,
.contact-list b {
	font-size: 0
}

.btn-gold svg {
	color: #17243a
}

.btn-navy svg {
	color: #fff
}

.service-card a {
	display: inline-flex;
	align-items: center;
	gap: 7px
}

.contact-list b {
	flex: 0 0 42px
}

.inner-hero .btn span {
	margin-left: 2px
}

@media(max-width:820px) {
	.main-nav {
		align-items: center;
		overflow: auto
	}

	.nav-item {
		width: 100%;
		text-align: center
	}

	.dropdown-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		box-shadow: none;
		border: 0;
		background: #f8f9fb;
		min-width: 0;
		margin: 10px auto 0;
		width: min(320px, 90%);
		display: none
	}

	.has-dropdown:hover .dropdown-menu,
	.has-dropdown:focus-within .dropdown-menu,
	.menu-open .dropdown-menu {
		display: block;
		transform: none
	}

	.dropdown-menu a {
		font-size: 14px;
		padding: 9px
	}
}

/* About page layout polish */
.about .values-panel {
	margin-top: 95px;
	padding-top: 82px;
	border-top: 1px solid var(--line);
	position: relative
}

.about .values-panel:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	width: 120px;
	height: 3px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	transform: translateX(-50%)
}

.about .values-panel .section-head {
	max-width: 760px;
	margin-bottom: 44px
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px
}

.value-card {
	min-height: 265px;
	background: #fff;
	border: 1px solid #e5e9f0;
	border-radius: 16px;
	padding: 34px;
	box-shadow: 0 12px 36px rgba(10, 58, 120, .07);
	position: relative;
	overflow: hidden
}

.value-card:before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	opacity: .85
}

.value-card>span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f8f0df;
	color: #a97418;
	font: 800 13px Manrope;
	margin-bottom: 28px
}

.value-card h3 {
	font-size: 23px;
	margin-bottom: 18px;
	color: #13233a
}

.value-card p {
	font-size: 17px;
	line-height: 1.75;
	color: #58677a;
	margin: 0
}

.about .profile-card {
	box-shadow: var(--shadow)
}

.about-copy .contact-row {
	margin-top: 18px
}

@media(max-width:820px) {
	.about .values-panel {
		margin-top: 70px;
		padding-top: 62px
	}

	.value-grid {
		grid-template-columns: 1fr
	}

	.value-card {
		min-height: auto
	}
}

/* About transition spacing fix */
.about .about-grid {
	margin-bottom: 110px
}

.about .values-panel {
	clear: both;
	margin-top: 0;
	padding-top: 88px
}

.about-copy .contact-row {
	margin-bottom: 0
}

@media(max-width:820px) {
	.about .about-grid {
		margin-bottom: 78px
	}

	.about .values-panel {
		padding-top: 62px
	}
}

.footer-logo {
	display: inline-block;
	margin: 0 0 18px
}

/*.footer-logo img {
	width: 180px;
	max-width: 100%;
	filter: none;
	background: #fff;
	border-radius: 4px;
	padding: 6px
}
*/

.footer-logo img {
    width: 128px;
    max-width: 100%;
    filter: none;
    background: #fff;
    border-radius: 4px;
}

.footer-contact-item {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	margin: 12px 0;
	color: #c7d5e6
}

.footer-contact-item span {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	background: rgba(212, 164, 65, .16);
	color: var(--gold-light);
	margin-top: 1px
}

.footer-contact-item svg {
	width: 15px;
	height: 15px;
	fill: currentColor
}

.footer-contact-item:hover {
	color: var(--gold-light)
}

footer p.footer-contact-item {
	font-size: 14px;
	line-height: 1.5
}