:root {
	--neo-ink: #101828;
	--neo-muted: #667085;
	--neo-line: #e4e7ec;
	--neo-soft: #f3f6fb;
	--neo-card: #ffffff;
	--neo-blue: #0c7bdc;
	--neo-blue-dark: #074f9f;
	--neo-green: #12b76a;
	--neo-logo-navy: #092f57;
	--neo-logo-blue: #0875bd;
	--neo-logo-cyan: #36aee2;
	--neo-logo-soft: #eef8fd;
	--neo-shadow: 0 18px 46px rgba(16, 24, 40, .10);
}

html { scroll-behavior: smooth; }
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}
body {
	color: var(--neo-ink);
	background: #fff;
	text-rendering: optimizeLegibility;
}
.neo-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 34, 57, .46);
	backdrop-filter: blur(3px);
	transition: opacity .5s ease, visibility .5s ease;
	overflow: hidden;
}
.neo-preloader:before,
.neo-preloader:after {
	display: none;
}
.neo-preloader.loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.neo-loader-seen .neo-preloader {
	display: none;
}
.neo-preloader-card {
	position: relative;
	z-index: 2;
	width: 48px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 0;
	text-align: center;
	box-shadow: none;
}
.neo-preloader-inner {
	position: relative;
	width: 48px;
	height: 88px;
}
.neo-fortunexis-loader {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	background: #0d5ef4;
	animation: neoRotationBack 1s ease-in-out infinite reverse;
}
.neo-fortunexis-loader:before {
	content: "";
	position: absolute;
	inset: 0;
	background: #0d5ef4;
	transform: rotate(45deg);
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}
.neo-fortunexis-loader:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 5px rgba(0,0,0,.15);
}
@keyframes neoRotationBack {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
img,
iframe,
video {
	max-width: 100%;
}
body p {
	color: var(--neo-muted);
	line-height: 1.72;
}
a { transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
a,
a:hover,
a:focus,
a:active {
	text-decoration: none !important;
}

.neo-top-header {
	position: relative;
	overflow: hidden;
	background: linear-gradient(90deg, var(--neo-logo-navy) 0%, var(--neo-logo-blue) 58%, var(--neo-logo-cyan) 100%) !important;
	border-bottom: 1px solid rgba(255,255,255,.08);
	padding: 8px 0 !important;
	box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.neo-top-header .container {
	position: relative;
	z-index: 1;
	align-items: center;
	justify-content: flex-end !important;
	gap: 26px;
}
.neo-top-header i {
	color: #fff;
	margin-right: 5px;
	font-size: 18px;
}
.neo-top-header a,
.neo-top-header div {
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}
.neo-top-header a {
	position: relative;
	margin-right: 0 !important;
	padding-right: 26px;
	border-right: 1px solid rgba(255,255,255,.22);
}
.neo-main-header {
	position: sticky !important;
	top: 0;
	z-index: 999;
	background: linear-gradient(90deg, var(--neo-logo-navy) 0%, var(--neo-logo-blue) 58%, var(--neo-logo-cyan) 100%) !important;
	backdrop-filter: none;
	box-shadow: 0 12px 30px rgba(16,24,40,.08) !important;
	border-bottom: 0;
	min-height: 124px;
	overflow: hidden;
}
.neo-header-curve {
	display: none;
}
.neo-main-header:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-top-left-radius: 98px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	z-index: 1;
	box-shadow: 0 16px 42px rgba(16,24,40,.08);
}
.neo-main-header:after {
	display: none;
}
.neo-main-header .container {
	position: relative;
	z-index: 3;
}
.neo-main-header .navbar {
	min-height: 124px;
	padding: 24px 0 22px !important;
}
.neo-logo img {
	max-height: 62px !important;
	max-width: 215px !important;
	object-fit: contain;
}
.neo-nav {
	gap: 18px !important;
}
.neo-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 4px;
	border-radius: 6px;
	color: var(--neo-logo-navy) !important;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	border: 1px solid transparent;
}
.neo-nav a:hover {
	background: transparent;
	border-color: transparent;
	color: var(--neo-logo-blue) !important;
	box-shadow: none;
}
.neo-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--neo-line);
	border-radius: 6px;
	background: #fff;
	color: var(--neo-ink);
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
}
.neo-header-cta {
	background: var(--neo-blue) !important;
	box-shadow: 0 10px 24px rgba(12,123,220,.26);
}
.neo-quote-cta {
	background: #0f62f2 !important;
	color: #fff !important;
	box-shadow: 0 14px 30px rgba(15,98,242,.28);
	padding-left: 17px !important;
	padding-right: 17px !important;
	min-height: 48px !important;
}
.neo-quote-cta:hover {
	background: #074fcd !important;
	color: #fff !important;
}
.neo-search-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #d7e2f3;
	background: #fff;
	color: #0b1220;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(16,24,40,.06);
}
.neo-search-btn:hover {
	color: #0f62f2;
	border-color: #b8cdf2;
}
.neo-header-cta:hover {
	background: var(--neo-blue-dark) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.banner_area.banner3 {
	position: relative;
	overflow: hidden;
	min-height: 650px;
	background:
		linear-gradient(110deg, rgba(8, 23, 52, .92) 0%, rgba(12, 77, 146, .82) 48%, rgba(12, 123, 220, .72) 100%),
		url("../images/slider/hero-bg.png") center right / cover no-repeat !important;
}
.banner_area.banner3:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: .16;
	pointer-events: none;
}
.banner_area.banner3 .container,
.banner_area.banner3 .row,
.banner_area.banner3 .single_banner {
	position: relative;
	z-index: 1;
}
.banner_text_content h5 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	background: rgba(255,255,255,.10);
	color: #fff !important;
	font-weight: 700;
}
.banner_text_content h1 {
	color: #fff !important;
	font-size: 58px;
	line-height: 1.08;
	letter-spacing: 0;
}
.banner_content_text p {
	color: rgba(255,255,255,.82) !important;
	font-size: 18px;
	max-width: 620px;
}
.button a,
.slider_button a,
.neo-product-actions a,
.neo-demo-actions a {
	border-radius: 6px !important;
	box-shadow: 0 12px 26px rgba(12,123,220,.22);
}
.button a:hover,
.slider_button a:hover,
.neo-product-actions a:hover,
.neo-demo-actions a:hover {
	transform: translateY(-2px);
}
.single_banner_thumb {
	filter: drop-shadow(0 24px 42px rgba(0,0,0,.18));
}

.about_area,
.software_area,
.main_contact_area {
	background: #fff;
}
.section_sub_title h6 {
	color: var(--neo-blue) !important;
	font-weight: 800;
	letter-spacing: 0;
}
.section_main_title h1 {
	color: var(--neo-ink);
	line-height: 1.18;
}
.em_bar_bg {
	background: var(--neo-blue) !important;
}
.about_icon_box_inner span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 11px 12px;
	background: #f8fbff;
	border: 1px solid #e4effb;
	border-radius: 6px;
	color: var(--neo-ink);
	font-weight: 700;
}
.about_icon_box_inner i {
	color: var(--neo-green);
}
.single_about_thumb_inner img,
.software_thumb_inner img {
	border-radius: 8px;
	filter: drop-shadow(var(--neo-shadow));
}

.service_area.bg_color2,
.brand_area.bg_color2 {
	background: var(--neo-soft) !important;
}
.single_service {
	background: var(--neo-card);
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	overflow: hidden;
}
.single_service:hover {
	transform: translateY(-5px);
	border-color: rgba(12,123,220,.28);
	box-shadow: var(--neo-shadow);
}
.single_service_inner {
	padding: 24px 20px !important;
}
.single_service_icon i {
	color: var(--neo-blue) !important;
}
.single_service_content h4 {
	color: var(--neo-ink);
	font-size: 18px;
	line-height: 1.3;
}
.brand_list .single_brand_thumb {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	padding: 14px;
	min-height: 128px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(16,24,40,.06);
}

.breatcome_area {
	background:
		linear-gradient(110deg, rgba(16,24,40,.88), rgba(12,123,220,.76)),
		url("../images/slider/bg.jpg") center / cover no-repeat !important;
	min-height: 260px;
}
.contact_from_box,
.contact_address {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	box-shadow: var(--neo-shadow);
	padding: 28px;
}
.form-control,
.demoInputBox {
	border: 1px solid #d0d5dd !important;
	border-radius: 6px !important;
	min-height: 46px;
	box-shadow: none !important;
}
.form-control:focus,
.demoInputBox:focus {
	border-color: var(--neo-blue) !important;
	box-shadow: 0 0 0 4px rgba(12,123,220,.12) !important;
}

.neo-products-hero {
	background:
		linear-gradient(110deg, rgba(16,24,40,.92), rgba(12,123,220,.76)),
		url("../images/slider/seo-bg.jpg") center / cover no-repeat !important;
}
.neo-product-card,
.neo-demo-panel,
.neo-site-footer {
	border-radius: 8px;
}
.neo-site-footer {
	background:
		linear-gradient(180deg, #101828 0%, #0b1220 100%) !important;
}
.neo-footer-logo img {
	box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

@media (max-width: 991px) {
	.banner_text_content h1 { font-size: 42px; }
	.banner_area.banner3 { min-height: 560px; }
	.neo-main-header .navbar { min-height: auto; }
}
@media (max-width: 767px) {
	.neo-top-header .container { gap: 6px; }
	.neo-top-header {
		display: none;
	}
	.neo-main-header .navbar {
		position: relative;
		flex-wrap: nowrap !important;
		align-items: center !important;
		min-height: 68px;
		padding: 10px 0 !important;
	}
	.neo-main-header {
		min-height: 68px;
		overflow: visible;
		background: #fff !important;
	}
	.neo-header-curve,
	.neo-main-header:before {
		display: none;
	}
	.neo-logo img {
		max-width: 150px !important;
		max-height: 48px !important;
	}
	.neo-menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}
	.neo-nav {
		position: absolute;
		left: 15px;
		right: 15px;
		top: calc(100% + 10px);
		width: 100%;
		display: none !important;
		flex-direction: column;
		gap: 6px !important;
		background: #fff;
		border: 1px solid var(--neo-line);
		border-radius: 8px;
		box-shadow: var(--neo-shadow);
		padding: 10px !important;
		z-index: 1000;
	}
	body.neo-menu-open .neo-nav {
		display: flex !important;
	}
	.neo-nav a {
		width: 100%;
		min-height: 38px;
		padding: 10px 12px;
		font-size: 14px;
	}
	.neo-search-btn {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}
	.neo-header-cta {
		justify-content: center;
	}
	.banner_text_content h1 { font-size: 34px; }
	.banner_area.banner3 {
		min-height: auto;
		padding: 70px 0;
	}
	.about_area,
	.service_area,
	.software_area,
	.brand_area,
	.neo-products {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}

.neo-home {
	background: #fff;
}
.neo-modern-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(118deg, rgba(9, 47, 87, .90) 0%, rgba(8, 117, 189, .82) 54%, rgba(54, 174, 226, .66) 100%),
		url("../images/slider/seo-bg.jpg") center / cover no-repeat;
	color: #fff;
	padding: 46px 0 40px;
}
.neo-modern-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
	background-size: 46px 46px;
	opacity: .14;
	pointer-events: none;
}
.neo-modern-hero:after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(238,248,253,.34), transparent 66%);
	pointer-events: none;
}
.neo-modern-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
	gap: 34px;
	align-items: center;
}
.neo-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(12,123,220,.10);
	color: var(--neo-blue);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 16px;
}
.neo-modern-hero .neo-eyebrow {
	background: rgba(238,248,253,.16);
	color: #fff;
	border: 1px solid rgba(255,255,255,.22);
	box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.neo-modern-hero h1 {
	color: #fff;
	font-size: 46px;
	line-height: 1.04;
	margin-bottom: 14px;
	letter-spacing: 0;
	text-shadow: 0 8px 26px rgba(0,0,0,.22);
}
.neo-modern-hero p {
	color: rgba(238,247,255,.88);
	font-size: 16px;
	max-width: 650px;
}
.neo-hero-slides {
	position: relative;
	height: 214px;
	overflow: hidden;
}
.neo-hero-slide {
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	opacity: 0;
	transform: translateY(18px);
	pointer-events: none;
	transition: opacity .55s ease, transform .55s ease;
}
.neo-hero-slide.active {
	position: absolute;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.neo-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}
.neo-hero-dots {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 16px;
}
.neo-hero-dots button {
	width: 11px;
	height: 11px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.38);
	cursor: pointer;
	padding: 0;
	transition: width .25s ease, background-color .25s ease;
}
.neo-hero-dots button.active {
	width: 34px;
	background: var(--neo-logo-cyan);
	box-shadow: 0 0 0 4px rgba(54,174,226,.20);
}
.neo-primary-btn,
.neo-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 6px;
	padding: 13px 18px;
	font-weight: 800;
	line-height: 1.2;
}
.neo-primary-btn {
	background: linear-gradient(135deg, var(--neo-logo-cyan), var(--neo-logo-blue));
	color: #fff;
	box-shadow: 0 18px 34px rgba(8,117,189,.30);
	border: 1px solid rgba(255,255,255,.20);
}
.neo-primary-btn:hover {
	background: linear-gradient(135deg, var(--neo-logo-blue), var(--neo-logo-navy));
	color: #fff;
	transform: translateY(-2px);
}
.neo-secondary-btn {
	background: #fff;
	color: var(--neo-ink);
	border: 1px solid var(--neo-line);
}
.neo-secondary-btn:hover {
	color: var(--neo-blue);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(16,24,40,.10);
}
.neo-secondary-btn.dark {
	background: var(--neo-ink);
	color: #fff;
	border-color: var(--neo-ink);
}
.neo-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
	max-width: 620px;
}
.neo-hero-metrics div {
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(12px);
	border-radius: 8px;
	padding: 11px 12px;
}
.neo-hero-metrics strong {
	display: block;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 7px;
}
.neo-hero-metrics span {
	color: rgba(238,247,255,.78);
	font-size: 13px;
}
.neo-modern-hero-media {
	position: relative;
	height: 300px;
	min-height: 300px;
	overflow: hidden;
	border-radius: 12px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
		radial-gradient(circle at 62% 42%, rgba(54,174,226,.24), transparent 38%);
	border: 1px solid rgba(255,255,255,.16);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 60px rgba(0,0,0,.20);
}
.neo-modern-hero-media img {
	width: 100%;
	display: block;
	border-radius: 8px;
	background: transparent;
	filter: drop-shadow(0 24px 42px rgba(0,0,0,.24));
	box-shadow: none;
}
.neo-modern-hero-media .neo-hero-image {
	position: absolute;
	inset: 0;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transform: translateX(22px) scale(.98);
	transition: opacity .6s ease, transform .6s ease;
}
.neo-modern-hero-media .neo-hero-image.active {
	opacity: 1;
	transform: translateX(0) scale(1);
}
.neo-hero-product-panel {
	position: absolute;
	right: 8px;
	top: 10px;
	width: min(280px, 68%);
	background: rgba(255,255,255,.96);
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 8px;
	padding: 14px;
	box-shadow: 0 18px 45px rgba(0,0,0,.18);
	z-index: 2;
}
.neo-hero-product-panel span {
	display: block;
	color: var(--neo-blue);
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 4px;
}
.neo-hero-product-panel strong {
	display: block;
	color: var(--neo-ink);
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 12px;
}
.neo-hero-product-panel div {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.neo-hero-product-panel em {
	font-style: normal;
	font-size: 12px;
	font-weight: 800;
	color: #166534;
	background: #dcfce7;
	border-radius: 999px;
	padding: 5px 8px;
}
.neo-floating-note {
	position: absolute;
	left: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,.96);
	color: var(--neo-ink);
	border-radius: 8px;
	padding: 12px 14px;
	box-shadow: 0 18px 38px rgba(16,24,40,.22);
	font-weight: 800;
	max-width: 310px;
}
.neo-floating-note i { color: var(--neo-green); }

.neo-scroll-progress {
	position: fixed;
	right: 26px;
	bottom: 154px;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--neo-blue);
	z-index: 998;
	box-shadow: 0 16px 36px rgba(16,24,40,.18);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .22s ease;
}
.neo-scroll-progress.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.neo-scroll-progress svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.neo-scroll-progress circle {
	fill: none;
	stroke-width: 4;
}
.neo-scroll-progress .track {
	stroke: #e4e7ec;
}
.neo-scroll-progress .fill {
	stroke: var(--neo-blue);
	stroke-linecap: round;
	transition: stroke-dashoffset .12s linear;
}
.neo-scroll-progress i {
	position: relative;
	z-index: 1;
	font-size: 21px;
}
.neo-scroll-progress:hover {
	background: var(--neo-blue);
	color: #fff;
}
.neo-scroll-progress:hover .track {
	stroke: rgba(255,255,255,.24);
}
.neo-scroll-progress:hover .fill {
	stroke: #fff;
}

.neo-after-hero {
	position: relative;
	z-index: 3;
	background: linear-gradient(180deg, #f4f8fd 0%, #fff 100%);
	border-bottom: 1px solid rgba(12,123,220,.10);
	padding: 0 0 42px;
}
.neo-after-hero-panel {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: 26px;
	margin-top: -28px;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,251,255,.96)),
		radial-gradient(circle at 82% 18%, rgba(12,123,220,.12), transparent 32%);
	border: 1px solid rgba(12,123,220,.12);
	border-radius: 8px;
	box-shadow: 0 24px 58px rgba(16,24,40,.12);
}
.neo-after-copy h2 {
	font-size: 34px;
	line-height: 1.12;
	color: var(--neo-ink);
	margin: 0 0 12px;
}
.neo-after-copy p {
	color: #5b6678;
	margin: 0;
}
.neo-after-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}
.neo-after-stats div {
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 8px;
	padding: 14px;
	box-shadow: 0 10px 24px rgba(16,24,40,.06);
}
.neo-after-stats strong {
	display: block;
	color: var(--neo-blue);
	font-size: 26px;
	line-height: 1;
	margin-bottom: 6px;
}
.neo-after-stats span {
	color: var(--neo-muted);
	font-weight: 800;
	font-size: 13px;
}
.neo-after-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.neo-after-cards div {
	background: #fff;
	border: 1px solid #e3edf8;
	border-radius: 8px;
	padding: 18px;
	min-height: 156px;
	box-shadow: 0 12px 28px rgba(16,24,40,.07);
	transition: transform .2s ease, box-shadow .2s ease;
}
.neo-after-cards div:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(16,24,40,.12);
}
.neo-after-cards i {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	margin-bottom: 12px;
}
.neo-after-cards strong {
	display: block;
	color: var(--neo-ink);
	font-size: 16px;
	margin-bottom: 7px;
}
.neo-after-cards span {
	color: var(--neo-muted);
	line-height: 1.55;
}
.neo-client-marquee {
	position: relative;
	overflow: hidden;
	margin-top: 20px;
	padding: 4px 0;
	mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.neo-client-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: neoClientSlide 28s linear infinite;
}
.neo-client-marquee.slow .neo-client-track {
	animation-duration: 36s;
}
.neo-client-marquee:hover .neo-client-track {
	animation-play-state: paused;
}
@keyframes neoClientSlide {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.neo-modern-section {
	padding: 76px 0;
}
.neo-soft-section {
	background: var(--neo-soft);
}
.neo-section-head {
	max-width: 830px;
	margin-bottom: 34px;
}
.neo-section-head.compact {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.neo-section-head.with-action {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}
.neo-section-head h2 {
	color: var(--neo-ink);
	font-size: 42px;
	line-height: 1.14;
	margin-bottom: 14px;
}
.neo-section-head p {
	font-size: 17px;
	margin-bottom: 0;
}
.neo-capability-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: 28px;
	align-items: stretch;
}
.neo-capability-large {
	background: #edf5ff;
	border: 1px solid #d9ebff;
	border-radius: 10px;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--neo-shadow);
}
.neo-capability-large img {
	max-width: 100%;
	max-height: 390px;
	object-fit: contain;
}
.neo-capability-list {
	display: grid;
	gap: 14px;
}
.neo-capability-list div {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	padding: 18px;
	box-shadow: 0 10px 24px rgba(16,24,40,.06);
	font-weight: 700;
	color: var(--neo-ink);
}
.neo-capability-list i {
	color: var(--neo-green);
	margin-top: 4px;
}
.neo-service-grid,
.neo-demo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
.neo-service-card,
.neo-demo-card {
	display: block;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	min-height: 100%;
}
.neo-service-card:hover,
.neo-demo-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--neo-shadow);
	border-color: rgba(12,123,220,.28);
}
.neo-service-card i,
.neo-demo-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	margin-bottom: 18px;
}
.neo-service-card h3,
.neo-demo-card h3 {
	font-size: 20px;
	color: var(--neo-ink);
	margin-bottom: 10px;
}
.neo-service-card p,
.neo-demo-card p {
	margin-bottom: 0;
}
.neo-demo-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.neo-demo-card a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	color: var(--neo-blue);
	font-weight: 800;
}

.neo-process-band {
	background: var(--neo-ink);
	color: #fff;
	padding: 72px 0;
}
.neo-process-grid {
	display: grid;
	grid-template-columns: .9fr 1.4fr;
	gap: 36px;
	align-items: start;
}
.neo-process-grid h2 {
	color: #fff;
	font-size: 40px;
	line-height: 1.15;
}
.neo-process-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.neo-process-steps div {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 8px;
	padding: 20px;
}
.neo-process-steps strong {
	display: block;
	color: #7dd3fc;
	font-size: 14px;
	margin-bottom: 9px;
}
.neo-process-steps span {
	color: #fff;
	font-weight: 800;
}
.neo-client-section {
	padding: 54px 0;
	background: #fff;
	border-bottom: 1px solid var(--neo-line);
}
.neo-client-logo {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	height: 92px;
	width: 150px;
	flex: 0 0 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	box-shadow: 0 8px 22px rgba(16,24,40,.05);
}
.neo-client-logo img {
	max-width: 100%;
	max-height: 62px;
	object-fit: contain;
}
.neo-cta-section {
	padding: 64px 0;
	background: var(--neo-soft);
}
.neo-cta-inner {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	box-shadow: var(--neo-shadow);
}
.neo-cta-inner h2 {
	font-size: 34px;
	line-height: 1.16;
	margin: 0;
	color: var(--neo-ink);
	max-width: 820px;
}

/* Homepage premium section polish */
.neo-after-hero {
	padding: 46px 0 58px;
	background:
		linear-gradient(180deg, #f5f9ff 0%, #fff 48%, #f7fbf8 100%);
}
.neo-after-hero-panel {
	margin-top: 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	align-items: center;
}
.neo-after-copy {
	position: relative;
	padding: 30px 0;
}
.neo-after-copy:before {
	content: "";
	position: absolute;
	left: 0;
	top: 30px;
	bottom: 30px;
	width: 5px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--neo-blue), var(--neo-green));
}
.neo-after-copy .neo-eyebrow,
.neo-after-copy h2,
.neo-after-copy p,
.neo-after-stats {
	margin-left: 24px;
}
.neo-after-copy h2 {
	font-size: 40px;
	max-width: 560px;
}
.neo-after-copy p {
	font-size: 17px;
	max-width: 620px;
}
.neo-after-stats div {
	border-color: #dbeafe;
	background: linear-gradient(180deg, #fff, #f8fbff);
}
.neo-after-cards {
	gap: 16px;
}
.neo-after-cards div {
	position: relative;
	overflow: hidden;
	border-color: #dce9f7;
	background: linear-gradient(180deg, #fff, #fbfdff);
}
.neo-after-cards div:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--neo-blue), var(--neo-green));
}
.neo-home-about {
	background:
		linear-gradient(180deg, #fff 0%, #f7fafc 100%);
	padding-top: 68px;
}
.neo-home-about .neo-section-head {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.neo-home-about .neo-capability-grid {
	grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
	align-items: center;
}
.neo-home-about .neo-capability-large {
	position: relative;
	background: linear-gradient(135deg, #eef6ff, #ecfdf3);
	border: 0;
	min-height: 360px;
}
.neo-home-about .neo-capability-large:after {
	content: "Custom web application";
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: #fff;
	color: var(--neo-ink);
	border: 1px solid #e4e7ec;
	border-radius: 8px;
	padding: 10px 13px;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(16,24,40,.10);
}
.neo-home-about .neo-capability-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.neo-home-about .neo-capability-list div {
	min-height: 112px;
	background: linear-gradient(180deg, #fff, #f9fbfe);
	border-color: #dce9f7;
}
.neo-home-services {
	background:
		linear-gradient(135deg, #0b1220 0%, #123b67 56%, #0c7bdc 100%);
	color: #fff;
}
.neo-home-services .neo-section-head h2,
.neo-home-services .neo-section-head p {
	color: #fff;
}
.neo-home-services .neo-section-head p {
	color: rgba(255,255,255,.78);
}
.neo-home-services .neo-eyebrow {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
}
.neo-home-services .neo-service-card {
	background: rgba(255,255,255,.96);
	border: 0;
	min-height: 246px;
}
.neo-home-services .neo-service-card:hover {
	transform: translateY(-7px);
}
.neo-home-demos {
	background: #fff;
}
.neo-home-demos .neo-demo-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.neo-home-demos .neo-demo-card {
	border: 1px solid #dce9f7;
	background: linear-gradient(180deg, #fff, #f8fbff);
	min-height: 260px;
}
.neo-home-process {
	background:
		linear-gradient(135deg, rgba(12,123,220,.08), rgba(18,183,106,.08)),
		#f7fafc;
}
.neo-home-process .neo-process-grid {
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 18px 44px rgba(16,24,40,.08);
}
.neo-home-process .neo-process-grid h2 {
	color: var(--neo-ink);
}
.neo-home-process .neo-process-steps div {
	background: #f8fbff;
	border-color: #dbeafe;
}
.neo-home-process .neo-process-steps strong {
	color: var(--neo-blue);
}
.neo-home-process .neo-process-steps span {
	color: var(--neo-ink);
	font-weight: 800;
}
.neo-home-clients {
	background:
		linear-gradient(180deg, #fff, #f7fafc);
	padding-top: 62px;
}
.neo-home-clients .neo-section-head {
	margin-bottom: 22px;
}
.neo-home-clients .neo-client-marquee {
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 8px;
	padding: 16px 0;
	box-shadow: 0 16px 38px rgba(16,24,40,.07);
}
.neo-home-cta {
	background: #fff;
}
.neo-home-cta .neo-cta-inner {
	background:
		linear-gradient(135deg, #0b1220, #0c4a78 62%, #0c7bdc);
	border: 1px solid rgba(255,255,255,.16);
	box-shadow: 0 24px 64px rgba(12,77,146,.24);
}
.neo-home-cta .neo-cta-inner h2 {
	color: #fff;
}
.neo-home-cta .neo-cta-inner .neo-eyebrow {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
}

@media (max-width: 991px) {
	.neo-modern-hero-grid,
	.neo-capability-grid,
	.neo-process-grid {
		grid-template-columns: 1fr;
	}
	.neo-modern-hero h1 { font-size: 48px; }
	.neo-hero-slides {
		height: 238px;
		min-height: 238px;
	}
	.neo-modern-hero-media {
		height: 320px;
		min-height: 320px;
	}
	.neo-service-grid,
	.neo-demo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.neo-after-hero-panel {
		grid-template-columns: 1fr;
		margin-top: -18px;
	}
	.neo-after-copy h2 {
		font-size: 30px;
	}
	.neo-home-about .neo-capability-list,
	.neo-home-demos .neo-demo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.neo-section-head.with-action,
	.neo-cta-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 575px) {
	.neo-modern-hero {
		padding: 54px 0 48px;
	}
	.neo-modern-hero h1,
	.neo-section-head h2,
	.neo-process-grid h2,
	.neo-cta-inner h2 {
		font-size: 32px;
	}
	.neo-hero-slides {
		height: 236px;
		min-height: 236px;
	}
	.neo-modern-hero-media {
		height: 270px;
		min-height: 270px;
	}
	.neo-modern-hero p,
	.neo-section-head p {
		font-size: 16px;
	}
	.neo-hero-metrics,
	.neo-service-grid,
	.neo-demo-grid,
	.neo-process-steps {
		grid-template-columns: 1fr;
	}
	.neo-after-hero-panel {
		padding: 20px;
	}
	.neo-after-cards,
	.neo-after-stats,
	.neo-home-about .neo-capability-list,
	.neo-home-demos .neo-demo-grid {
		grid-template-columns: 1fr;
	}
	.neo-after-copy h2 {
		font-size: 27px;
	}
	.neo-client-logo {
		width: 132px;
		flex-basis: 132px;
		height: 82px;
	}
	.neo-floating-note {
		position: static;
		margin-top: 14px;
		max-width: none;
	}
	.neo-hero-product-panel {
		position: static;
		width: 100%;
		margin-bottom: 14px;
	}
	.neo-scroll-progress {
		right: 18px;
		bottom: 132px;
		width: 50px;
		height: 50px;
	}
	.neo-cta-inner {
		padding: 24px;
	}
}

/* About page stability and responsive polish */
.neo-about-page-intro {
	overflow: visible;
	padding-top: 72px !important;
	padding-bottom: 70px !important;
	background: #fff;
}
.neo-about-page-intro > .container > .row {
	display: flex;
	align-items: flex-start;
	row-gap: 34px;
}
.neo-about-page-intro .single_about_thumb {
	position: sticky;
	top: 110px;
}
.neo-about-page-intro .single_about_thumb_inner {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(16,24,40,.12);
	background: #f8fafc;
}
.neo-about-page-intro .single_about_thumb_inner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
}
.neo-about-page-intro .single_about_shape {
	display: none;
}
.neo-about-page-intro .section_title {
	margin-bottom: 22px !important;
}
.neo-about-page-intro .section_main_title h1 {
	font-size: 36px;
	line-height: 1.14;
	margin-bottom: 4px;
}
.neo-about-page-intro .section_content_text p {
	font-size: 15px;
	line-height: 1.78;
	margin-bottom: 0;
	text-align: left;
}
.neo-about-page-intro .singel_about_left {
	display: grid;
	gap: 16px;
	margin-bottom: 0 !important;
}
.neo-about-page-intro .singel_about_left_inner {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	padding: 18px;
	box-shadow: 0 10px 26px rgba(16,24,40,.06);
	margin-bottom: 0 !important;
}
.neo-about-page-intro .about_icon {
	margin-right: 0 !important;
}
.neo-about-page-intro .about_icon .icon {
	margin-top: 0 !important;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: #eef6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--neo-blue);
}
.neo-about-page-intro .singel-about-content h5 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--neo-ink);
}
.neo-about-page-intro .singel-about-content p {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 0;
}

.neo-about-cta {
	position: relative;
	clear: both;
	padding: 74px 0 96px !important;
	background-size: cover !important;
	background-position: center !important;
	overflow: hidden;
}
.neo-about-cta:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(16,24,40,.88), rgba(12,123,220,.56));
}
.neo-about-cta .container {
	position: relative;
	z-index: 1;
}
.neo-about-cta .section_main_title h1 {
	color: #fff;
	font-size: 38px;
	line-height: 1.16;
}
.neo-about-cta .phone_number h5 {
	color: #dbeafe;
}

.neo-about-counter {
	clear: both;
	background: #f3f6fb;
	padding: 0 0 54px;
}
.neo-about-counter .nagative_margin {
	margin-top: -48px !important;
	position: relative;
	z-index: 3;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	box-shadow: var(--neo-shadow);
}
.neo-about-counter .single_counter {
	margin-bottom: 0 !important;
	padding: 10px 8px;
}
.neo-about-counter .countr_text h1 {
	color: var(--neo-ink);
	font-size: 32px;
	margin-bottom: 8px;
}
.neo-about-counter .counter_desc h5 {
	color: var(--neo-blue);
	font-size: 15px;
	margin: 0;
}
.neo-about-services {
	clear: both;
	background: #fff;
	padding-top: 64px !important;
}
.neo-about-services .service_style_two {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(16,24,40,.06);
	padding: 22px;
	min-height: 100%;
}
.neo-about-services .service_style_two_number {
	margin-right: 0 !important;
}
.neo-about-services .service_style_two_number h5 {
	color: var(--neo-blue);
}

@media (max-width: 991px) {
	.neo-about-page-intro {
		padding-top: 54px !important;
		padding-bottom: 54px !important;
	}
	.neo-about-page-intro > .container > .row {
		display: block;
	}
	.neo-about-page-intro .single_about_thumb {
		position: static;
		margin-bottom: 28px !important;
	}
	.neo-about-page-intro .section_main_title h1 {
		font-size: 32px;
	}
	.neo-about-cta {
		padding: 58px 0 84px !important;
	}
	.neo-about-counter .nagative_margin {
		margin-top: -38px !important;
	}
}
@media (max-width: 767px) {
	.neo-about-page-intro {
		padding-top: 42px !important;
		padding-bottom: 42px !important;
	}
	.neo-about-page-intro .col-lg-6,
	.neo-about-page-intro .col-md-6,
	.neo-about-page-intro .col-sm-12,
	.neo-about-page-intro .col-xs-6 {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
	}
	.neo-about-page-intro .section_main_title h1 {
		font-size: 28px;
	}
	.neo-about-page-intro .singel_about_left_inner {
		grid-template-columns: 1fr;
		padding: 16px;
	}
	.neo-about-cta {
		padding: 46px 0 34px !important;
	}
	.neo-about-cta .section_title {
		margin-bottom: 0 !important;
	}
	.neo-about-cta .section_main_title h1 {
		font-size: 28px;
	}
	.neo-about-counter {
		padding-top: 24px;
		padding-bottom: 36px;
	}
	.neo-about-counter .nagative_margin {
		margin-top: 0 !important;
		padding-top: 24px !important;
		padding-bottom: 10px !important;
	}
	.neo-about-counter .single_counter {
		border-bottom: 1px solid var(--neo-line);
	}
	.neo-about-counter .row > div:last-child .single_counter {
		border-bottom: 0;
	}
	.neo-about-services {
		padding-top: 42px !important;
		padding-bottom: 36px !important;
	}
}

/* Rebuilt modern about page */
.neo-about-modern {
	background: #fff;
}
.neo-about-hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 72px;
	background:
		linear-gradient(120deg, rgba(8,20,43,.96), rgba(11,72,128,.9)),
		url("../images/slider/dark1.jpg") center / cover no-repeat;
	color: #fff;
}
.neo-about-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 46px 46px;
	opacity: .14;
}
.neo-about-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
	gap: 48px;
	align-items: center;
}
.neo-about-hero .neo-eyebrow {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
}
.neo-about-hero h1 {
	color: #fff;
	font-size: 58px;
	line-height: 1.05;
	margin-bottom: 20px;
	max-width: 790px;
}
.neo-about-hero p {
	color: rgba(255,255,255,.80);
	font-size: 18px;
	max-width: 680px;
}
.neo-about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}
.neo-about-hero-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255,255,255,.10);
	padding: 12px;
	box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.neo-about-hero-card img {
	display: block;
	width: 100%;
	border-radius: 10px;
}
.neo-about-experience {
	position: absolute;
	left: 28px;
	bottom: 28px;
	background: #fff;
	color: var(--neo-ink);
	border-radius: 10px;
	padding: 16px 18px;
	box-shadow: 0 18px 38px rgba(16,24,40,.24);
	min-width: 150px;
}
.neo-about-experience strong {
	display: block;
	font-size: 38px;
	line-height: 1;
	color: var(--neo-blue);
}
.neo-about-experience span {
	font-weight: 800;
	font-size: 13px;
}
.neo-about-story {
	padding: 78px 0;
	background: #fff;
}
.neo-story-grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
	gap: 38px;
	align-items: start;
}
.neo-story-copy h2 {
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 18px;
	color: var(--neo-ink);
}
.neo-story-copy p {
	font-size: 16px;
	margin-bottom: 14px;
}
.neo-story-points {
	display: grid;
	gap: 16px;
}
.neo-story-points div {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 22px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
}
.neo-story-points i {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 14px;
}
.neo-story-points h3 {
	font-size: 20px;
	color: var(--neo-ink);
	margin-bottom: 8px;
}
.neo-story-points p {
	margin: 0;
}
.neo-about-stats {
	padding: 34px 0;
	background: var(--neo-soft);
}
.neo-about-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}
.neo-about-stat-grid div {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 22px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	text-align: center;
}
.neo-about-stat-grid strong {
	display: block;
	font-size: 34px;
	line-height: 1;
	color: var(--neo-blue);
	margin-bottom: 8px;
}
.neo-about-stat-grid span {
	color: var(--neo-ink);
	font-weight: 800;
}
.neo-about-services-modern {
	padding: 78px 0;
	background: #fff;
}
.neo-about-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.neo-about-service-grid div {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	transition: transform .2s ease, box-shadow .2s ease;
}
.neo-about-service-grid div:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: var(--neo-blue);
}
.neo-about-service-grid div:hover {
	transform: translateY(-5px);
	box-shadow: var(--neo-shadow);
}
.neo-about-service-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: #eef6ff;
	color: var(--neo-blue);
	font-weight: 900;
	margin-bottom: 18px;
}
.neo-about-service-grid h3 {
	font-size: 20px;
	color: var(--neo-ink);
	margin-bottom: 10px;
}
.neo-about-service-grid p {
	margin: 0;
}
.neo-about-process {
	background: var(--neo-ink);
	padding: 76px 0;
}
.neo-about-process .neo-eyebrow {
	background: rgba(255,255,255,.10);
	color: #fff;
}
.neo-about-cta-modern {
	padding: 68px 0;
	background: var(--neo-soft);
}

@media (max-width: 991px) {
	.neo-about-hero-grid,
	.neo-story-grid {
		grid-template-columns: 1fr;
	}
	.neo-about-hero h1 {
		font-size: 46px;
	}
	.neo-about-stat-grid,
	.neo-about-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 575px) {
	.neo-about-hero {
		padding: 52px 0 46px;
	}
	.neo-about-hero h1,
	.neo-story-copy h2 {
		font-size: 32px;
	}
	.neo-about-hero p {
		font-size: 16px;
	}
	.neo-about-hero-grid {
		gap: 26px;
	}
	.neo-about-experience {
		position: static;
		margin-top: 12px;
	}
	.neo-about-story,
	.neo-about-services-modern,
	.neo-about-process,
	.neo-about-cta-modern {
		padding: 48px 0;
	}
	.neo-about-stat-grid,
	.neo-about-service-grid {
		grid-template-columns: 1fr;
	}
	.neo-story-points div,
	.neo-about-service-grid div,
	.neo-about-stat-grid div {
		padding: 18px;
	}
}

/* Modern contact page */
.neo-contact-modern {
	background: #fff;
}
.neo-contact-hero {
	padding: 70px 0 62px;
	background:
		linear-gradient(120deg, rgba(8,20,43,.94), rgba(12,123,220,.72)),
		url("../images/slider/bg2.jpg") center / cover no-repeat;
	color: #fff;
}
.neo-contact-hero .neo-eyebrow {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
}
.neo-contact-hero h1 {
	color: #fff;
	font-size: 52px;
	line-height: 1.08;
	max-width: 850px;
	margin-bottom: 14px;
}
.neo-contact-hero p {
	color: rgba(255,255,255,.82);
	font-size: 18px;
	margin-bottom: 0;
}
.neo-contact-section {
	padding: 70px 0;
	background: var(--neo-soft);
}
.neo-contact-grid {
	display: grid;
	grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
	gap: 28px;
	align-items: start;
}
.neo-contact-info-card,
.neo-contact-form-card {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	box-shadow: var(--neo-shadow);
	padding: 30px;
}
.neo-contact-info-card h2,
.neo-contact-form-card h2 {
	font-size: 30px;
	line-height: 1.18;
	color: var(--neo-ink);
	margin-bottom: 12px;
}
.neo-contact-list {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}
.neo-contact-list a,
.neo-contact-list div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--neo-line);
	border-radius: 8px;
	background: #f8fafc;
	color: var(--neo-ink);
}
.neo-contact-list i {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--neo-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.neo-contact-list strong {
	display: block;
	color: var(--neo-ink);
	margin-bottom: 3px;
}
.neo-contact-list span {
	color: var(--neo-muted);
	line-height: 1.45;
	word-break: break-word;
}
.neo-contact-form-card form {
	display: grid;
	gap: 16px;
}
.neo-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.neo-contact-form-card label {
	display: grid;
	gap: 7px;
	color: var(--neo-ink);
	font-weight: 800;
}
.neo-contact-form-card input,
.neo-contact-form-card textarea {
	width: 100%;
	border: 1px solid #d0d5dd;
	border-radius: 7px;
	padding: 12px 14px;
	font: inherit;
	color: var(--neo-ink);
	background: #fff;
	outline: none;
}
.neo-contact-form-card textarea {
	resize: vertical;
	min-height: 132px;
}
.neo-contact-form-card input:focus,
.neo-contact-form-card textarea:focus {
	border-color: var(--neo-blue);
	box-shadow: 0 0 0 4px rgba(12,123,220,.12);
}
.neo-contact-form-card button {
	border: 0;
	justify-self: start;
	cursor: pointer;
}
.neo-form-status {
	min-height: 20px;
	margin-bottom: 12px;
	font-weight: 700;
}
.neo-form-status .success,
.neo-form-status p.success {
	color: #027a48 !important;
}
.neo-form-status .Error,
.neo-form-status p.Error,
.neo-form-status.error {
	color: #b42318 !important;
}
.neo-contact-cta {
	padding: 0 0 70px;
	background: var(--neo-soft);
}
.neo-contact-cta .neo-cta-inner {
	margin: 0;
}

/* Site-wide polish for legacy pages */
.breatcome_area {
	position: relative;
	overflow: hidden;
	min-height: 250px !important;
	background:
		linear-gradient(110deg, rgba(8,20,43,.94), rgba(12,77,146,.82)),
		url("../images/slider/seo-bg.jpg") center / cover no-repeat !important;
}
.breatcome_area:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
	background-size: 42px 42px;
	opacity: .14;
}
.breatcome_area .container {
	position: relative;
	z-index: 1;
}
.breatcome_title_inner h2,
.breatcome_title h2 {
	color: #fff !important;
	font-size: 44px;
	line-height: 1.1;
	letter-spacing: 0;
}
.breatcome_content ul {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	display: inline-flex;
	padding: 8px 14px;
	margin: 0;
}
.breatcome_content ul li,
.breatcome_content ul li a,
.breatcome_content ul li span {
	color: rgba(255,255,255,.86) !important;
}
.section_title {
	position: relative;
}
.section_sub_title h5,
.section_sub_title h6,
.section_sub_title.uppercase h6,
.section_sub_title.upper h5 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--neo-blue) !important;
	background: #eef6ff;
	border: 1px solid #dbeafe;
	border-radius: 999px;
	padding: 7px 12px;
	font-weight: 800;
	letter-spacing: 0;
}
.section_main_title h1,
.section_main_title h2 {
	color: var(--neo-ink);
	letter-spacing: 0;
	line-height: 1.16;
}
.section_content_text p {
	color: #5b6678;
	font-size: 16px;
	line-height: 1.75;
}
.about_area,
.portfolio_area,
.service-area,
.team_area,
.faq_area,
.choose_us_area {
	background: linear-gradient(180deg, #fff 0%, #f7fafc 100%) !important;
}
.service-area,
.portfolio_area,
.team_area {
	padding-top: 70px !important;
	padding-bottom: 76px !important;
}
.slider_area.slider15 {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	background:
		linear-gradient(120deg, rgba(8,20,43,.96), rgba(11,58,103,.92), rgba(12,123,220,.82)),
		url("../images/slider/seo-bg.jpg") center / cover no-repeat !important;
}
.slider_area.slider15:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
	background-size: 44px 44px;
	opacity: .18;
}
.slider_area.slider15 .container {
	position: relative;
	z-index: 1;
}
.slider_area.slider15 h5 {
	display: inline-flex;
	color: #fff !important;
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	padding: 8px 12px;
	font-weight: 800;
}
.slider_area.slider15 h1 {
	color: #fff !important;
	font-size: 54px;
	line-height: 1.08;
	letter-spacing: 0;
}
.slider_area.slider15 p {
	color: rgba(255,255,255,.82) !important;
	font-size: 17px;
	max-width: 620px;
}
.hero_section_thumb img {
	filter: drop-shadow(0 24px 42px rgba(0,0,0,.24));
}
.em-service-single-box,
.single_service,
.single_team,
.single_portfolio,
.single_process,
.single_feature,
.single_choose_us {
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 8px !important;
	box-shadow: 0 14px 34px rgba(16,24,40,.08);
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.em-service-single-box:hover,
.single_service:hover,
.single_team:hover,
.single_portfolio:hover,
.single_process:hover,
.single_feature:hover,
.single_choose_us:hover {
	transform: translateY(-5px);
	border-color: rgba(12,123,220,.24);
	box-shadow: 0 22px 50px rgba(16,24,40,.13);
}
.em-service-box-inner,
.single_service_inner {
	padding: 24px !important;
}
.em-service-title h2,
.single_service_content h4,
.single_service_content h3,
.single_team_content h4 {
	color: var(--neo-ink);
	line-height: 1.28;
}
.em-service-button a,
.section_button2 a,
.abou-button1 a,
.single_service_button a,
.portfolio_menu ul li {
	border-radius: 6px !important;
}
.em-service-button a,
.section_button2 a,
.abou-button1 a,
.single_service_button a {
	background: var(--neo-blue) !important;
	color: #fff !important;
	box-shadow: 0 14px 28px rgba(12,123,220,.24);
}
.portfolio_menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 0;
	margin: 0 0 34px;
}
.portfolio_menu ul li {
	background: #fff;
	border: 1px solid #dbeafe;
	color: var(--neo-ink);
	padding: 10px 15px;
	font-weight: 800;
	box-shadow: 0 8px 20px rgba(16,24,40,.05);
}
.portfolio_menu ul li.current_menu_item,
.portfolio_menu ul li:hover {
	background: var(--neo-blue);
	color: #fff;
	border-color: var(--neo-blue);
}
.single_portfolio_thumb img {
	width: 100%;
	height: 270px !important;
	object-fit: cover;
	border-radius: 0;
}
.single_portfolio_content {
	background: linear-gradient(180deg, transparent, rgba(8,20,43,.92)) !important;
}
.single_portfolio_content_inner span,
.single_portfolio_content_inner h2 a {
	color: #fff !important;
}
.contact_from_box,
.contact_address,
.neo-product-card,
.neo-demo-card,
.neo-demo-panel,
.neo-lead-box {
	border-radius: 8px !important;
}
@media (max-width: 991px) {
	.slider_area.slider15 {
		min-height: auto;
		padding: 54px 0;
	}
	.slider_area.slider15 h1 {
		font-size: 40px;
	}
	.single_portfolio_thumb img {
		height: 240px !important;
	}
}
@media (max-width: 575px) {
	.breatcome_title_inner h2,
	.breatcome_title h2 {
		font-size: 32px;
	}
	.breatcome_content ul {
		border-radius: 8px;
	}
	.slider_area.slider15 h1 {
		font-size: 32px;
	}
	.service-area,
	.portfolio_area,
	.team_area {
		padding-top: 48px !important;
		padding-bottom: 52px !important;
	}
}

/* Services page compact polish */
body:has(.slider_area.slider15) .slider_area.slider15 {
	height: auto !important;
	min-height: 460px;
	padding: 46px 0;
}
body:has(.slider_area.slider15) .slider15 .single_slider,
body:has(.slider_area.slider15) .slider15 .slider_content,
body:has(.slider_area.slider15) .slider15 .hero_section_thumb {
	top: auto !important;
	position: relative;
}
body:has(.slider_area.slider15) .slider_area.slider15 .row {
	align-items: center;
}
body:has(.slider_area.slider15) .slider_area.slider15 h1 {
	font-size: 42px;
	line-height: 1.08;
}
body:has(.slider_area.slider15) .slider_area.slider15 p {
	font-size: 16px;
	line-height: 1.65;
	max-width: 560px;
}
body:has(.slider_area.slider15) .slider_button {
	padding-top: 14px !important;
}
body:has(.slider_area.slider15) .button a {
	padding: 12px 18px !important;
}
body:has(.slider_area.slider15) .hero_section_thumb {
	max-width: 430px;
	margin-left: auto;
}
body:has(.slider_area.slider15) .hero-main-thumb img {
	max-height: 360px;
	object-fit: contain;
}
body:has(.slider_area.slider15) .about_area {
	padding-top: 72px !important;
	padding-bottom: 44px !important;
}
body:has(.slider_area.slider15) .section_main_title h1 {
	font-size: 34px;
}
body:has(.slider_area.slider15) .section_content_text p {
	font-size: 15px;
}
body:has(.slider_area.slider15) .single_about_thumb_inner img {
	max-height: 380px;
	object-fit: contain;
}
body:has(.slider_area.slider15) .service-area {
	padding-top: 54px !important;
	padding-bottom: 58px !important;
}
body:has(.slider_area.slider15) .service-area .section_title {
	margin-bottom: 34px !important;
}
body:has(.slider_area.slider15) .service-area .section_content_text {
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
}
body:has(.slider_area.slider15) .service-area .section_content_text p {
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 0;
}
body:has(.slider_area.slider15) .service-area .row:last-child {
	row-gap: 22px;
}
body:has(.slider_area.slider15) .em-service-single-box {
	height: auto !important;
	min-height: 238px;
	display: flex;
	align-items: stretch;
}
body:has(.slider_area.slider15) .em-service-box-inner {
	width: 100%;
	padding: 0 !important;
	display: flex;
}
body:has(.slider_area.slider15) .em-service-content {
	padding: 22px !important;
	display: flex;
	flex-direction: column;
	width: 100%;
}
body:has(.slider_area.slider15) .em-service-icon {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
body:has(.slider_area.slider15) .em-icon img {
	max-width: 44px;
	max-height: 44px;
	object-fit: contain;
}
body:has(.slider_area.slider15) .em-icon-title h4 {
	font-size: 15px;
	margin: 0;
}
body:has(.slider_area.slider15) .em-service-title h2 {
	font-size: 20px;
	line-height: 1.28;
	padding: 0 !important;
	margin: 0;
}
body:has(.slider_area.slider15) .em-service-text {
	display: none;
}
body:has(.slider_area.slider15) .em-service-button {
	margin: auto 0 0 !important;
}
body:has(.slider_area.slider15) .em-service-button a {
	padding: 9px 13px !important;
	font-size: 14px;
	text-decoration: none !important;
}
body:has(.slider_area.slider15) .testimonial-area {
	position: relative;
	overflow: hidden;
	padding-top: 78px !important;
	padding-bottom: 76px !important;
	background:
		linear-gradient(115deg, rgba(9, 31, 78, .96), rgba(10, 86, 190, .92)),
		url("../images/slider/hero-bg.png") center / cover no-repeat !important;
}
body:has(.slider_area.slider15) .testimonial-area:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.06), transparent 45%);
	pointer-events: none;
}
body:has(.slider_area.slider15) .testimonial-area .container {
	position: relative;
	z-index: 1;
}
body:has(.slider_area.slider15) .testimonial-single-box1 {
	max-width: 520px;
	margin: 0 auto;
}
body:has(.slider_area.slider15) .testimonial-thumb img {
	max-height: 420px;
	object-fit: contain;
}
body:has(.slider_area.slider15) .testi-counter-box {
	transform: scale(.86);
	transform-origin: left center;
}
body:has(.slider_area.slider15) .section_title.white .section_main_title h1 {
	color: #fff !important;
	font-size: 36px;
	line-height: 1.16;
	margin-bottom: 12px;
}
body:has(.slider_area.slider15) .em-testimoinal-single-box.white {
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.20);
	border-radius: 8px;
	padding: 24px;
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 46px rgba(0,0,0,.16);
}
body:has(.slider_area.slider15) .em-testimoinal-single-box.white p,
body:has(.slider_area.slider15) .em-testimonial-title p {
	color: rgba(255,255,255,.86) !important;
	font-size: 16px;
	line-height: 1.72;
}
body:has(.slider_area.slider15) .people-title h4 {
	color: #fff !important;
	font-size: 20px;
	margin-bottom: 4px;
}
body:has(.slider_area.slider15) .people-title p {
	color: #9ed8ff !important;
	font-size: 15px;
	margin: 0;
}
body:has(.slider_area.slider15) .testimonial-area .people-title p {
	color: #9ed8ff !important;
}
body:has(.slider_area.slider15) .people-thumb img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border: 4px solid rgba(255,255,255,.85);
	border-radius: 50%;
}
body:has(.slider_area.slider15) .owl-dots .owl-dot span {
	background: rgba(255,255,255,.50) !important;
}
body:has(.slider_area.slider15) .owl-dots .owl-dot.active span {
	background: #ff7a2f !important;
}

@media (max-width: 991px) {
	body:has(.slider_area.slider15) .slider_area.slider15 {
		padding: 42px 0;
	}
	body:has(.slider_area.slider15) .slider_area.slider15 h1 {
		font-size: 36px;
	}
	body:has(.slider_area.slider15) .hero_section_thumb {
		margin: 24px auto 0;
	}
}

@media (max-width: 575px) {
	body:has(.slider_area.slider15) .slider_area.slider15 h1 {
		font-size: 30px;
	}
	body:has(.slider_area.slider15) .section_main_title h1 {
		font-size: 28px;
	}
}

@media (max-width: 991px) {
	.neo-contact-grid {
		grid-template-columns: 1fr;
	}
	.neo-contact-hero h1 {
		font-size: 42px;
	}
}
@media (max-width: 575px) {
	.neo-contact-hero {
		padding: 48px 0 42px;
	}
	.neo-contact-hero h1 {
		font-size: 32px;
	}
	.neo-contact-section {
		padding: 42px 0;
	}
	.neo-contact-info-card,
	.neo-contact-form-card {
		padding: 20px;
	}
	.neo-form-grid {
		grid-template-columns: 1fr;
	}
	.neo-contact-list a,
	.neo-contact-list div {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 12px;
	}
	.neo-contact-list i {
		width: 42px;
		height: 42px;
	}
	.neo-contact-cta {
		padding-bottom: 44px;
	}
}

/* Modern process page */
.neo-process-modern {
	background: #fff;
}
.neo-process-hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 72px;
	background:
		radial-gradient(circle at 78% 18%, rgba(20,184,166,.28), transparent 31%),
		radial-gradient(circle at 15% 20%, rgba(59,130,246,.30), transparent 28%),
		linear-gradient(120deg, #07111f 0%, #102a52 52%, #075985 100%);
	color: #fff;
}
.neo-process-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 38px 38px;
	opacity: .18;
}
.neo-process-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
	gap: 48px;
	align-items: center;
}
.neo-process-hero .neo-eyebrow {
	background: rgba(255,255,255,.12);
	color: #fff;
	border: 1px solid rgba(255,255,255,.18);
}
.neo-process-hero h1 {
	color: #fff;
	font-size: 58px;
	line-height: 1.05;
	max-width: 830px;
	margin-bottom: 18px;
}
.neo-process-hero p {
	color: rgba(255,255,255,.82);
	font-size: 18px;
	max-width: 680px;
}
.neo-dev-console {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(4,12,24,.82);
	border: 1px solid rgba(255,255,255,.16);
	box-shadow: 0 32px 80px rgba(0,0,0,.34);
	backdrop-filter: blur(16px);
}
.neo-dev-console:after {
	content: "";
	position: absolute;
	right: -60px;
	top: -60px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: rgba(20,184,166,.24);
	pointer-events: none;
}
.neo-console-top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 15px 18px;
	border-bottom: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.06);
}
.neo-console-top span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #ef4444;
}
.neo-console-top span:nth-child(2) { background: #f59e0b; }
.neo-console-top span:nth-child(3) { background: #22c55e; }
.neo-console-top strong {
	margin-left: 10px;
	color: #cbd5e1;
	font-family: Consolas, monospace;
	font-size: 14px;
}
.neo-console-body {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
	padding: 20px;
}
.neo-console-body div {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 13px;
	border: 1px solid rgba(255,255,255,.10);
	border-radius: 10px;
	background: rgba(15,23,42,.82);
}
.neo-console-body em {
	font-style: normal;
	color: #38bdf8;
	font-weight: 900;
}
.neo-console-body code {
	color: #e2e8f0;
	background: transparent;
	padding: 0;
	font-family: Consolas, monospace;
	white-space: normal;
}
.neo-console-body b {
	color: #86efac;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
}
.neo-console-footer {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: 0 20px 20px;
}
.neo-console-footer div {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	padding: 16px;
}
.neo-console-footer strong {
	display: block;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	margin-bottom: 7px;
}
.neo-console-footer span {
	color: #cbd5e1;
	font-size: 13px;
}
.neo-tech-stack-band {
	background: #07111f;
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.neo-tech-stack-grid {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 18px 0;
}
.neo-tech-stack-grid span {
	color: #dbeafe;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	padding: 8px 13px;
	font-weight: 800;
	font-size: 13px;
}
.neo-process-feature-strip {
	background: #fff;
	border-bottom: 1px solid var(--neo-line);
}
.neo-process-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 28px 0;
}
.neo-process-feature-grid div {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	column-gap: 14px;
	align-items: center;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 18px;
	box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.neo-process-feature-grid i {
	grid-row: span 2;
	width: 48px;
	height: 48px;
	border-radius: 9px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
.neo-process-feature-grid strong {
	color: var(--neo-ink);
	font-size: 18px;
}
.neo-process-feature-grid span {
	color: var(--neo-muted);
}
.neo-process-timeline-section {
	padding: 78px 0;
	background: var(--neo-soft);
}
.neo-process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.neo-process-timeline div {
	position: relative;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	min-height: 100%;
	overflow: hidden;
}
.neo-process-timeline div:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--neo-blue), #14b8a6);
}
.neo-process-timeline strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--neo-blue);
	color: #fff;
	margin-bottom: 16px;
}
.neo-process-timeline h3 {
	font-size: 20px;
	color: var(--neo-ink);
	margin-bottom: 10px;
}
.neo-process-timeline p {
	margin: 0;
}
.neo-process-timeline small {
	display: inline-flex;
	margin-top: 16px;
	color: #0369a1;
	background: #e0f2fe;
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 800;
}
.neo-delivery-lab {
	padding: 78px 0;
	background:
		linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
}
.neo-delivery-grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
	gap: 34px;
	align-items: center;
}
.neo-delivery-grid h2 {
	color: var(--neo-ink);
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 14px;
}
.neo-delivery-grid p {
	font-size: 17px;
}
.neo-lab-board {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.neo-lab-board div {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 12px;
	padding: 18px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	font-weight: 900;
	color: var(--neo-ink);
}
.neo-lab-board i {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex: 0 0 auto;
}
.neo-process-services {
	padding: 78px 0;
	background: #fff;
}
.neo-process-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.neo-process-service-grid div {
	background: #fff;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(16,24,40,.07);
	transition: transform .2s ease, box-shadow .2s ease;
}
.neo-process-service-grid div:hover {
	transform: translateY(-5px);
	box-shadow: var(--neo-shadow);
}
.neo-process-service-grid i {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #eef6ff;
	color: var(--neo-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
}
.neo-process-service-grid h3 {
	color: var(--neo-ink);
	font-size: 20px;
	margin-bottom: 10px;
}
.neo-process-service-grid p {
	margin: 0;
}
.neo-process-quality {
	padding: 78px 0;
	background: var(--neo-ink);
	color: #fff;
}
.neo-process-quality .neo-eyebrow {
	background: rgba(255,255,255,.10);
	color: #fff;
}
.neo-process-quality-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
	gap: 36px;
	align-items: center;
}
.neo-process-quality h2 {
	color: #fff;
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 16px;
}
.neo-process-quality p {
	color: rgba(255,255,255,.76);
	font-size: 17px;
}
.neo-quality-list {
	display: grid;
	gap: 14px;
}
.neo-quality-list div {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 10px;
	padding: 16px;
}
.neo-quality-list i {
	width: 46px;
	height: 46px;
	border-radius: 9px;
	background: rgba(255,255,255,.12);
	color: #7dd3fc;
	display: flex;
	align-items: center;
	justify-content: center;
}
.neo-quality-list span {
	color: #fff;
	font-weight: 800;
}
.neo-process-contact-strip {
	padding: 34px 0;
	background: #fff;
	border-bottom: 1px solid var(--neo-line);
}
.neo-process-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.neo-process-contact-grid div {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	background: #f8fafc;
	border: 1px solid var(--neo-line);
	border-radius: 10px;
	padding: 16px;
}
.neo-process-contact-grid i {
	grid-row: span 2;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--neo-blue);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.neo-process-contact-grid strong {
	color: var(--neo-ink);
}
.neo-process-contact-grid span,
.neo-process-contact-grid a {
	color: var(--neo-muted);
	word-break: break-word;
}

@media (max-width: 991px) {
	.neo-process-hero-grid,
	.neo-process-quality-grid,
	.neo-delivery-grid {
		grid-template-columns: 1fr;
	}
	.neo-process-hero h1,
	.neo-process-quality h2 {
		font-size: 44px;
	}
	.neo-process-timeline,
	.neo-process-service-grid,
	.neo-process-feature-grid,
	.neo-process-contact-grid,
	.neo-lab-board {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 575px) {
	.neo-process-hero {
		padding: 52px 0 46px;
	}
	.neo-process-hero h1,
	.neo-process-quality h2 {
		font-size: 32px;
	}
	.neo-process-hero p,
	.neo-process-quality p {
		font-size: 16px;
	}
	.neo-process-feature-grid,
	.neo-process-timeline,
	.neo-process-service-grid,
	.neo-process-contact-grid,
	.neo-lab-board {
		grid-template-columns: 1fr;
	}
	.neo-process-timeline-section,
	.neo-process-services,
	.neo-process-quality,
	.neo-delivery-lab {
		padding: 48px 0;
	}
	.neo-process-feature-grid div,
	.neo-process-timeline div,
	.neo-process-service-grid div,
	.neo-quality-list div,
	.neo-process-contact-grid div {
		padding: 16px;
	}
	.neo-console-body div {
		grid-template-columns: 34px minmax(0, 1fr);
	}
	.neo-console-body b {
		grid-column: 2;
	}
	.neo-console-footer {
		grid-template-columns: 1fr;
	}
	.neo-delivery-grid h2 {
		font-size: 32px;
	}
}
