:root {
 --ink: #10233f;
 --muted: #60708a;
 --blue: #2457ff;
 --cyan: #19c6ff;
 --violet: #7b3cff;
 --bg: #f5f8ff;
 --line: #dfe7f4;
 --white: #fff;
 --dark: #07182f
}
* {
	box-sizing: border-box
}
body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.7
}
.marlton-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 45%, #f7f2ff 100%);
	padding: 90px 0 70px
}
.min-vh-75 {
	min-height: 75vh
}
.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(36, 87, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 87, 255, .06) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, #000, transparent)
}
.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(25px);
	opacity: .3
}
.glow-a {
	width: 400px;
	height: 400px;
	background: #66d8ff;
	left: -120px;
	top: -100px
}
.glow-b {
	width: 420px;
	height: 420px;
	background: #9e6cff;
	right: -140px;
	bottom: -120px
}
.eyebrow, .kicker, .section-head span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border: 1px solid rgba(36, 87, 255, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
 font-size: .82rem;
	font-weight:700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--blue)
}
h1 {
	font-size: clamp(2.7rem, 6vw, 5rem);
	line-height: 1.02;
	letter-spacing: -.055em;
	font-weight:800;
	margin: 22px 0
}
h1 span {
	background: linear-gradient(90deg, var(--blue), var(--violet));
	-webkit-background-clip: text;
	color: transparent
}
.lead-copy {
	font-size: 1.12rem;
	color: #40516d
}
.hero-orbit {
	position: relative;
	width: min(480px, 90vw);
	aspect-ratio: 1;
	margin: auto;
	border: 1px solid rgba(36, 87, 255, .18);
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, .96) 0 24%, rgba(255, 255, 255, .3) 25% 50%, transparent 51%)
}
.hero-orbit:before, .hero-orbit:after {
	content: "";
	position: absolute;
	border-radius: 50%;
	inset: 12%;
	border: 1px dashed rgba(36, 87, 255, .22);
	animation: spin 22s linear infinite
}
.hero-orbit:after {
	inset: 26%;
	animation-direction: reverse;
	animation-duration: 16s
}
.core {
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #102e7a, #5a35d5);
	color: #fff;
	box-shadow: 0 24px 60px rgba(36, 87, 255, .3)
}
.core i {
	font-size: 2rem;
	margin-bottom: 8px
}
.core span {
 font-size: .8rem;
	opacity: .8
}
.node {
	position: absolute;
	padding: 10px 14px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 40px rgba(25, 54, 105, .15);
	font-weight:700;
 font-size: .85rem
}
.n1 {
	top: 5%;
	left: 42%
}
.n2 {
	top: 26%;
	right: 2%
}
.n3 {
	bottom: 22%;
	right: 4%
}
.n4 {
	bottom: 5%;
	left: 40%
}
.n5 {
	bottom: 24%;
	left: 1%
}
.n6 {
	top: 24%;
	left: 2%
}
 @keyframes spin {
 to {
 transform: rotate(360deg)
}
}
.section {
	padding: 90px 0
}
.intro-section, .industries-section, .help-section, .faq-section {
	background: var(--bg)
}
.section-head {
	margin: 0 auto 45px
}
.section-head h2, .section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.035em;
	margin: 15px 0
}
.section-head p {
	color: var(--muted)
}
.service-card {
	height: 100%;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(34, 67, 118, .07);
 transition: .3s
}
.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 80px rgba(34, 67, 118, .13)
}
.service-card.dark {
	background: linear-gradient(145deg, #07182f, #12366e);
	color: #fff;
	border: 0
}
.service-card.dark p {
	color: #dce7ff
}
.service-card.accent {
	background: linear-gradient(145deg, #edf6ff, #f6efff)
}
.icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--blue), var(--violet));
	color: #fff;
	font-size: 1.35rem;
	margin-bottom: 18px
}
.service-card h3, .help-grid h3, .process-grid h3 {
	font-size: 1.3rem;
	font-weight: 800
}
.service-card p, .help-grid p, .process-grid p {
	color: var(--muted)
}
.service-card.dark .tag-grid span {
	background: rgba(255, 255, 255, .09);
	border-color: rgba(255, 255, 255, .12);
	color: #fff
}
.tag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 16px 0
}
.tag-grid span {
	padding: 7px 11px;
	border-radius: 999px;
	background: #f3f7ff;
	border: 1px solid var(--line);
 font-size: .78rem;
	font-weight: 700
}
.question-section {
	background: linear-gradient(135deg, #081a34, #122e64);
	color: #fff
}
.question-section p {
	color: #d8e5ff
}
.question-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px
}
.question-grid div {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	background: rgba(255, 255, 255, .06);
	backdrop-filter: blur(12px)
}
.question-grid .wide {
	grid-column: 1/-1
}
.industry-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}
.industry-grid div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 22px;
	font-weight: 760;
	box-shadow: 0 12px 30px rgba(34, 67, 118, .06)
}
.metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px
}
.metrics div {
	padding: 30px;
	border-radius: 24px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 20px 50px rgba(34, 67, 118, .08)
}
.metrics strong {
	display: block;
	font-size: 2.4rem;
	color: var(--blue);
	font-weight:800;
}
.metrics span {
	color: var(--muted)
}
.location-section {
	background: #fff
}
.location-card {
	display: grid;
 grid-template-columns: 1.4fr .6fr;
	gap: 35px;
	align-items: center;
	background: linear-gradient(135deg, #eef5ff, #f5f0ff);
	border: 1px solid var(--line);
	padding: 45px;
	border-radius: 32px
}
.pin-visual {
	min-height: 300px;
	border-radius: 28px;
	background: radial-gradient(circle at 50% 45%, #fff 0 8%, transparent 9%), linear-gradient(135deg, #1b45c8, #6c3ed9);
	display: grid;
	place-items: center
}
.pin-visual i {
	font-size: 5rem;
	color: #fff;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .25))
}
.help-grid, .process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}
.help-grid>div, .process-grid>div {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 16px 40px rgba(34, 67, 118, .06)
}
.process-section {
	background: linear-gradient(180deg, #fff, #f7f9ff)
}
.process-grid b {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--blue), var(--violet));
	color: #fff;
	margin-bottom: 16px
}
.accordion-item {
	border: 1px solid var(--line) !important;
	border-radius: 18px !important;
	overflow: hidden;
	margin-bottom: 12px;
	background: #fff
}
.accordion-button {
	font-weight: 750;
	padding: 20px 22px
}
 .accordion-button:not(.collapsed) {
 background: #edf3ff;
 color: var(--blue);
 box-shadow: none
}
.accordion-body {
	color: var(--muted);
	padding: 0 22px 22px
}
.final-cta {
	padding: 90px 0;
	background: #081a34
}
.cta-box {
	margin: auto;
	text-align: center;
	padding: 55px;
	border-radius: 32px;
	background: linear-gradient(135deg, #173e9c, #713de0);
	color: #fff;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .25)
}
.cta-box h2 {
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	font-weight:700;
	letter-spacing: -.04em;
	max-width: 950px;
}
.cta-box p {
	color: #e9eeff;
	font-size: 1.05rem
}
 @media(max-width:991px) {
 .marlton-hero {
 padding-top: 60px
}
 .hero-orbit {
 margin-top: 20px
}
 .industry-grid,  .help-grid,  .process-grid {
 grid-template-columns: repeat(2, 1fr)
}
 .location-card {
 grid-template-columns: 1fr
}
 .pin-visual {
 min-height: 220px
}
}
 @media(max-width:640px) {
 .section {
 padding: 65px 0
}
 .service-card,  .location-card,  .cta-box {
 padding: 24px
}
 .question-grid,  .industry-grid,  .help-grid,  .process-grid,  .metrics {
 grid-template-columns: 1fr
}
 .question-grid .wide {
 grid-column: auto
}
 .hero-orbit {
 width: 330px
}
 .node {
 font-size: .72rem;
 padding: 7px 9px
}
 .core {
 width: 120px;
 height: 120px
}
 h1 {
 font-size: 2.65rem
}
}
