:root {
	--bg: #000000;
	--bg2: #080c18;
	--surface: #0c1220;
	--surface2: #111828;
	--border: rgba(255, 255, 255, 0.06);
	--border2: rgba(255, 255, 255, 0.1);
	--accent: #00c2ff;
	--accent2: #6c5ce7;
	--accent3: #00e5a0;
	--amber: #f4b942;
	--pink: #ff4d8b;
	--text: #e4eaf5;
	--muted: #9e9abb;
	--dim: #2a3450;
	--dark: #000;
	--text2: #a2b3d3 --glow:rgba(0, 194, 255, 0.12);
	--r: 16px;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px
}

body {
	font-family: "Roboto", sans-serif;
	;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6
}

body::after {
	content: '';
	position: fixed;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 9999;
	opacity: .5
}

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

::-webkit-scrollbar {
	width: 4px
}

::-webkit-scrollbar-track {
	background: var(--bg)
}

::-webkit-scrollbar-thumb {
	background: var(--accent2);
	border-radius: 2px
}

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

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit
}

/* ── PAGE SYSTEM ── */
.page {
	display: none;
	min-height: 100vh
}

.page.active {
	display: block
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	background: rgba(14, 19, 35, 1);
	backdrop-filter: blur(24px) saturate(1.4);
	border-bottom: 1px solid var(--border);
	transition: box-shadow .3s
}

nav.scrolled {
	box-shadow: 0 2px 40px rgba(0, 0, 0, .5)
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.42rem;
	letter-spacing: -.02em;
	cursor: pointer
}

.logo-mark {
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0
}

.logo em {
	color: var(--accent);
	font-style: normal
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none
}

.nav-links li {
	position: relative
}

.nav-links a,
.nav-links button {
	padding: 6px 12px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .75rem;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: .06em;
	transition: color .2s;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer
}

.nav-links a:hover,
.nav-links button:hover {
	color: var(--text)
}

.nav-links a.active,
.nav-links button.active {
	color: var(--accent)
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 0px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: 12px;
	padding: 8px;
	min-width: 220px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, transform .2s;
	transform: translateX(-50%) translateY(-6px);
	z-index: 600;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.nav-links li:hover .nav-dropdown {
	opacity: 1;
	pointer-events: all;
	transform: translateX(-50%) translateY(0)
}

.nav-dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: .85rem;
	font-weight: 400;
	color: var(--muted);
	text-transform: none;
	letter-spacing: 0;
	transition: all .2s
}

.nav-dropdown a:hover {
	background: var(--surface2);
	color: var(--text)
}

.nav-dropdown a span.dd-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
	flex-shrink: 0
}

.nav-cta {
	background: var(--accent) !important;
	color: var(--bg) !important;
	border-radius: 7px;
	padding: 8px 18px !important;
	font-weight: 600 !important;
	transition: all .2s !important
}

.nav-cta:hover {
	background: #fff !important;
	box-shadow: 0 6px 20px rgba(0, 194, 255, .35) !important;
	transform: translateY(-1px)
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	cursor: pointer
}

.hamburger span {
	width: 22px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: all .3s
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	background: var(--bg2);
	border-bottom: 1px solid var(--border);
	padding: 20px 5%;
	z-index: 499;
	flex-direction: column;
	gap: 4px
}

.mobile-nav.open {
	display: flex
}

.mobile-nav a,
.mobile-nav button {
	padding: 12px 8px;
	font-size: .9rem;
	color: var(--muted);
	border-bottom: 1px solid var(--border);
	width: 100%;
	text-align: left;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	font-family: 'DM Sans', sans-serif;
	cursor: pointer;
	transition: color .2s
}

.mobile-nav a:hover,
.mobile-nav button:hover {
	color: var(--accent)
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 5% 80px;
	position: relative;
	overflow: hidden
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(0, 194, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 194, 255, .025) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black, transparent)
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(0px)
}

.orb1 {
	width: 720px;
	height: 720px;
	background: radial-gradient(circle, rgba(0, 194, 255, .1) 0%, transparent 65%);
	top: -220px;
	right: -160px;
	animation: breathe 9s ease-in-out infinite
}

.orb2 {
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(108, 92, 231, .1) 0%, transparent 65%);
	bottom: -120px;
	left: -80px;
	animation: breathe 11s ease-in-out infinite reverse
}

.orb3 {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(0, 229, 160, .08) 0%, transparent 65%);
	top: 38%;
	right: 18%;
	animation: breathe 7s ease-in-out infinite 2s
}

@keyframes breathe {

	0%,
	100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.12);
		opacity: .7
	}
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto
}

@media(max-width:960px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px
	}
}

.hero-left {}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 194, 255, .07);
	border: 1px solid rgba(0, 194, 255, .18);
	padding: 5px 14px;
	border-radius: 100px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .7rem;
	color: var(--accent);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 26px;
	animation: fadeUp .7s ease both
}

.pulse {
	width: 6px;
	height: 6px;
	background: var(--accent3);
	border-radius: 50%;
	animation: pulse 1.6s ease-in-out infinite
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .3;
		transform: scale(.8)
	}
}

h1.hero-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2.8rem, 5.5vw, 5rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -.03em;
	margin-bottom: 22px;
	animation: fadeUp .7s ease .08s both
}

h1.hero-title .grad {
	background: linear-gradient(95deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.hero-sub {
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.78;
	max-width: 520px;
	margin-bottom: 38px;
	font-weight: 300;
	animation: fadeUp .7s ease .16s both
}

.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: fadeUp .7s ease .24s both
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: .9rem;
	transition: all .25s;
	cursor: pointer;
	border: none
}

.btn-fill {
	background: var(--accent);
	color: var(--bg)
}

.btn-fill:hover {
	background: #fff;
	box-shadow: 0 12px 36px rgba(0, 194, 255, .3);
	transform: translateY(-2px)
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border2)
}

.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(0, 194, 255, .05)
}

.btn-ghost {
	background: transparent;
	color: var(--accent);
	padding: 13px 0
}

.btn-ghost:hover {
	gap: 14px
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 52px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
	animation: fadeUp .7s ease .32s both
}

.stat-n {
	font-family: 'Syne', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -.02em
}

.stat-n em {
	color: var(--accent);
	font-style: normal
}

.stat-l {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-top: 3px
}

/* Hero visual */
.hero-right {
	animation: fadeUp .9s ease .4s both
}

.hero-card-wrap {
	position: relative
}

.hero-card {
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .03);
	overflow: hidden;
	position: relative
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle at 100% 0, rgba(0, 194, 255, .08), transparent 70%)
}

.hc-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px
}

.hc-label {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .08em
}

.hc-live {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	color: var(--accent3)
}

.hc-dot {
	width: 7px;
	height: 7px;
	background: var(--accent3);
	border-radius: 50%;
	animation: pulse 1.4s ease-in-out infinite
}

.chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 7px;
	height: 90px;
	margin-bottom: 22px
}

.cb {
	flex: 1;
	border-radius: 5px 5px 0 0;
	background: linear-gradient(180deg, var(--accent), rgba(0, 194, 255, .25));
	animation: growBar .8s ease both;
	transform-origin: bottom
}

.cb:nth-child(1) {
	height: 38%;
	animation-delay: .5s
}

.cb:nth-child(2) {
	height: 60%;
	animation-delay: .6s
}

.cb:nth-child(3) {
	height: 44%;
	animation-delay: .7s
}

.cb:nth-child(4) {
	height: 78%;
	animation-delay: .8s
}

.cb:nth-child(5) {
	height: 52%;
	animation-delay: .9s
}

.cb:nth-child(6) {
	height: 92%;
	background: linear-gradient(180deg, var(--accent3), rgba(0, 229, 160, .25));
	animation-delay: 1s
}

.cb:nth-child(7) {
	height: 68%;
	animation-delay: 1.1s
}

.cb:nth-child(8) {
	height: 85%;
	animation-delay: 1.2s
}

@keyframes growBar {
	from {
		transform: scaleY(0);
		opacity: 0
	}

	to {
		transform: scaleY(1);
		opacity: 1
	}
}

.hc-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px
}

.hcm {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 13px
}

.hcm-val {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 700
}

.hcm-val.c-blue {
	color: var(--accent)
}

.hcm-val.c-green {
	color: var(--accent3)
}

.hcm-val.c-purple {
	color: var(--accent2)
}

.hcm-val.c-amber {
	color: var(--amber)
}

.hcm-lbl {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .65rem;
	color: var(--muted);
	margin-top: 2px
}

/* floating badges */
.hero-badge-float {
	position: absolute;
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: 10px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
	font-size: .8rem;
	font-weight: 500;
	white-space: nowrap;
	animation: float 5s ease-in-out infinite
}

.hbf1 {
	bottom: -16px;
	left: -20px;
	animation-delay: 0s
}

.hbf2 {
	top: -14px;
	right: -14px;
	animation-delay: 1.5s
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

/* ── MARQUEE ── */
.marquee {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg2);
	padding: 16px 0;
	overflow: hidden
}

.mq-track {
	display: flex;
	gap: 60px;
	animation: mq 24s linear infinite;
	white-space: nowrap
}

.mq-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .80rem;
	color: #9e9abb;
	text-transform: uppercase;
	letter-spacing: .1em;
	flex-shrink: 0
}

.mq-dot {
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0
}

@keyframes mq {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

/* ── SECTIONS ── */
.section {
	padding: 100px 5%
}

.section-inner {
	max-width: 1300px;
	margin: 0 auto
}

.s-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .7rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 14px
}

.s-chip::before {
	content: '';
	width: 20px;
	height: 1px;
	background: var(--accent)
}

h2.s-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.9rem, 3.8vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.08;
	margin-bottom: 16px
}

p.s-sub {
	font-size: 1rem;
	color: var(--text);
	line-height: 1.78;
	font-weight: 300;
	max-width: 500px
}

/* ── SERVICES PAGE / GRID ── */
.services-hero {
	padding: 140px 5% 80px;
	background: var(--bg2);
	position: relative;
	overflow: hidden;
	text-align: center
}

.services-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0, 194, 255, .06), transparent)
}

.services-hero .s-chip {
	justify-content: center
}

.srv-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 56px
}

.srv-tab {
	padding: 9px 20px;
	border-radius: 100px;
	border: 1px solid var(--border2);
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--muted);
	transition: all .2s;
	cursor: pointer;
	background: transparent
}

.srv-tab.active,
.srv-tab:hover {
	background: var(--accent);
	color: var(--bg);
	border-color: var(--accent)
}

.srv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 28px
}

.srv-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all .3s;
	cursor: pointer
}

.srv-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 194, 255, .2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.srv-card-img {
	height: 200px;
	overflow: hidden;
	position: relative
}

.srv-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s
}

.srv-card:hover .srv-card-img img {
	transform: scale(1.05)
}

.srv-card-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 15, .9))
}

.srv-card-body {
	padding: 26px
}

.srv-card-tag {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .67rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px
}

.srv-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px
}

.srv-card p {
	font-size: .875rem;
	color: var(--muted);
	line-height: 1.72
}

.srv-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border)
}

.srv-pills {
	display: flex;
	gap: 6px;
	flex-wrap: wrap
}

.pill {
	background: var(--surface2);
	border: 1px solid var(--border);
	padding: 4px 10px;
	border-radius: 100px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .63rem;
	color: var(--muted);
	text-transform: uppercase
}

.srv-arrow {
	color: var(--accent);
	font-size: 1.1rem;
	transition: transform .2s
}

.srv-card:hover .srv-arrow {
	transform: translateX(5px)
}

/* ── SERVICE DETAIL PAGE ── */
.svc-detail-hero {
	padding: 140px 5% 80px;
	position: relative;
	overflow: hidden
}

.svc-detail-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 194, 255, .04), rgba(108, 92, 231, .04))
}

.svc-detail-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center
}

@media(max-width:900px) {
	.svc-detail-inner {
		grid-template-columns: 1fr
	}
}

.svc-img-wrap {
	border-radius: var(--r);
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0, 0, 0, .5)
}

.svc-img-wrap img {
	width: 100%;
	height: 380px;
	object-fit: cover
}

.svc-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 30px
}

.svc-feat {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 18px;
	border-radius: 12px;
	transition: all .25s
}

.svc-feat:hover {
	border-color: rgba(0, 194, 255, .2);
	transform: translateX(6px)
}

.svc-feat-ico {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
	background: rgba(0, 194, 255, .1);
	color: var(--accent)
}

.svc-feat-title {
	font-family: 'Syne', sans-serif;
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: 4px
}

.svc-feat-desc {
	font-size: .83rem;
	color: var(--muted);
	line-height: 1.65
}

/* ── ABOUT ── */
.about-hero {
	padding: 140px 5% 80px;
	background: var(--bg2);
	position: relative;
	overflow: hidden
}

.about-hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(108, 92, 231, .08), transparent 65%);
	pointer-events: none
}

.about-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center
}

@media(max-width:900px) {
	.about-inner {
		grid-template-columns: 1fr
	}
}

.about-img {
	border-radius: var(--r);
	overflow: hidden;
	position: relative
}

.about-img img {
	width: 100%;
	height: 420px;
	object-fit: cover
}

.about-img-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: 12px;
	padding: 16px 20px
}

.aib-num {
	font-family: 'Syne', sans-serif;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--accent)
}

.aib-lbl {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-top: 2px
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 32px
}

.val-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 20px;
	transition: all .25s
}

.val-item:hover {
	border-color: rgba(0, 194, 255, .2)
}

.val-ico {
	font-size: 1.3rem;
	margin-bottom: 8px
}

.val-name {
	font-family: 'Syne', sans-serif;
	font-size: .9rem;
	font-weight: 700;
	margin-bottom: 4px
}

.val-desc {
	font-size: .8rem;
	color: var(--muted);
	line-height: 1.6
}

/* Team */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 22px;
	margin-top: 56px
}

.team-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	text-align: center;
	transition: all .3s
}

.team-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 194, 255, .15)
}

.team-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top
}

.team-body {
	padding: 20px
}

.team-name {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 4px
}

.team-role {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .7rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .06em
}

/* ── INDUSTRIES ── */
.industries-hero {
	padding: 140px 5% 80px;
	text-align: center;
	position: relative;
	overflow: hidden
}

.ind-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 229, 160, .04), transparent)
}

.ind-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 56px
}

.ind-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all .3s;
	cursor: pointer;
	position: relative
}

.ind-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 229, 160, .2);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
}

.ind-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform .5s
}

.ind-card:hover img {
	transform: scale(1.06)
}

.ind-card-body {
	padding: 22px
}

.ind-card h4 {
	font-family: 'Syne', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 6px
}

.ind-card p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.65
}

.ind-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent3), var(--accent2));
	transform: scaleX(0);
	transition: transform .35s;
	transform-origin: left
}

.ind-card:hover .ind-card-line {
	transform: scaleX(1)
}

/* ── CASE STUDIES ── */
.cases-hero {
	padding: 140px 5% 80px;
	background: var(--bg2);
	position: relative;
	overflow: hidden;
	text-align: center
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 26px;
	margin-top: 56px
}

.case-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all .3s
}

.case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
	border-color: rgba(0, 194, 255, .15)
}

.case-card img {
	width: 100%;
	height: 190px;
	object-fit: cover
}

.case-card-body {
	padding: 26px
}

.case-tag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .67rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px
}

.case-tag-dot {
	width: 5px;
	height: 5px;
	background: var(--accent3);
	border-radius: 50%
}

.case-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px
}

.case-card p {
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.7
}

.case-results {
	display: flex;
	gap: 24px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border)
}

.cr-num {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--accent3)
}

.cr-lbl {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .65rem;
	color: var(--muted);
	text-transform: uppercase;
	margin-top: 2px
}

/* ── CAREERS ── */
.careers-hero {
	padding: 140px 5% 80px;
	position: relative;
	overflow: hidden
}

.careers-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 60% at 70% 40%, rgba(244, 185, 66, .04), transparent)
}

.careers-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start
}

@media(max-width:900px) {
	.careers-inner {
		grid-template-columns: 1fr
	}
}

.careers-img {
	border-radius: var(--r);
	overflow: hidden
}

.careers-img img {
	width: 100%;
	height: 380px;
	object-fit: cover
}

.perks-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 24px
}

.perk {
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 16px;
	border-radius: 10px;
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.perk-ico {
	font-size: 1.1rem
}

.perk-name {
	font-family: 'Syne', sans-serif;
	font-size: .85rem;
	font-weight: 600;
	margin-bottom: 2px
}

.perk-desc {
	font-size: .75rem;
	color: var(--muted)
}

.jobs-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 40px
}

.job-card {
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 22px 26px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	transition: all .25s;
	cursor: pointer
}

.job-card:hover {
	border-color: rgba(0, 194, 255, .2);
	background: var(--surface2)
}

.job-title {
	font-family: 'Syne', sans-serif;
	font-size: .95rem;
	font-weight: 700;
	margin-bottom: 4px
}

.job-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.job-tag {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .67rem;
	color: var(--muted);
	background: var(--bg2);
	border: 1px solid var(--border);
	padding: 3px 9px;
	border-radius: 5px;
	text-transform: uppercase
}

.job-apply {
	background: var(--accent);
	color: var(--bg);
	padding: 8px 18px;
	border-radius: 7px;
	font-size: .8rem;
	font-weight: 600;
	flex-shrink: 0;
	transition: all .2s
}

.job-apply:hover {
	background: #fff
}

/* ── CONTACT ── */
.contact-hero {
	padding: 140px 5% 80px;
	position: relative;
	overflow: hidden;
	text-align: center
}

.contact-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(0, 194, 255, .05), transparent)
}

< !-- .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 56px;
	margin-top: 60px;
	text-align: left;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto
}

-->.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px;
	margin-top: 60px;
	text-align: left;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto
}

@media(max-width:860px) {
	.contact-grid {
		grid-template-columns: 1fr
	}
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 28px
}

.ci-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 22px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: all .2s
}

.ci-card:hover {
	border-color: rgba(0, 194, 255, .2)
}

.ci-ico {
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: rgba(0, 194, 255, .1);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0
}

.ci-label {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px
}

.ci-val {
	font-size: .9rem;
	font-weight: 500
}

.contact-form {
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: var(--r);
	padding: 36px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 18px
}

.form-group label {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .7rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .07em
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--bg2);
	border: 1px solid var(--border2);
	border-radius: 8px;
	padding: 12px 15px;
	color: var(--text);
	font-family: 'DM Sans', sans-serif;
	font-size: .9rem;
	outline: none;
	transition: border-color .2s;
	resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--dim)
}

.form-group select option {
	background: var(--surface2)
}

.form-submit {
	width: 100%;
	background: var(--accent);
	color: var(--bg);
	border: none;
	border-radius: 9px;
	padding: 15px;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	transition: all .25s;
	margin-top: 6px
}

.form-submit:hover {
	background: #fff;
	box-shadow: 0 12px 36px rgba(0, 194, 255, .3)
}

/* ── BLOG ── */
.blog-hero {
	padding: 140px 5% 60px;
	text-align: center;
	background: var(--bg2)
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 56px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 5% 100px
}

.blog-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden;
	transition: all .3s;
	cursor: pointer
}

.blog-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 194, 255, .15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .4)
}

.blog-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform .5s
}

.blog-card:hover img {
	transform: scale(1.04)
}

.blog-card-body {
	padding: 24px
}

.blog-cat {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .67rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px
}

.blog-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px
}

.blog-card p {
	font-size: .82rem;
	color: var(--muted);
	line-height: 1.68
}

.blog-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--border)
}

.blog-date {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .65rem;
	color: var(--muted)
}

.blog-read {
	font-size: .78rem;
	color: var(--accent);
	font-weight: 500
}

/* ── PRIVACY / TERMS ── */
.legal-hero {
	padding: 140px 5% 60px;
	text-align: center;
	background: var(--bg2)
}

.legal-body {
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 5% 100px
}

.legal-body h2 {
	font-family: 'Syne', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	margin: 40px 0 12px;
	color: var(--text)
}

.legal-body h2:first-child {
	margin-top: 0
}

.legal-body p {
	font-size: .9rem;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 14px
}

.legal-body ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px
}

.legal-body ul li {
	font-size: .9rem;
	color: var(--muted);
	line-height: 1.75;
	padding-left: 20px;
	position: relative
}

.legal-body ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: .8rem
}

/* ── ERPNext DOCS ── */
.docs-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: calc(100vh - 68px);
	margin-top: 68px
}

.docs-sidebar {
	background: var(--bg2);
	border-right: 1px solid var(--border);
	padding: 32px 20px;
	position: sticky;
	top: 68px;
	height: calc(100vh - 68px);
	overflow-y: auto
}

.docs-sidebar h4 {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--muted);
	margin: 20px 0 8px
}

.docs-sidebar h4:first-child {
	margin-top: 0
}

.docs-sidebar a {
	display: block;
	padding: 8px 12px;
	border-radius: 7px;
	font-size: .85rem;
	color: var(--muted);
	transition: all .2s;
	margin-bottom: 2px;
	cursor: pointer
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
	background: rgba(0, 194, 255, .08);
	color: var(--accent)
}

.docs-content {
	padding: 60px 5%;
	max-width: 800px
}

.docs-content h1 {
	font-family: 'Syne', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 16px
}

.docs-content .docs-meta {
	display: flex;
	gap: 16px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .7rem;
	color: var(--muted);
	margin-bottom: 36px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border)
}

.docs-content h2 {
	font-family: 'Syne', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 36px 0 12px
}

.docs-content p {
	font-size: .9rem;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 16px
}

.docs-content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px
}

.docs-content ul li {
	font-size: .9rem;
	color: var(--muted);
	padding-left: 18px;
	position: relative;
	line-height: 1.7
}

.docs-content ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: .75rem;
	top: 3px
}

.docs-code {
	background: var(--surface);
	border: 1px solid var(--border2);
	border-radius: 10px;
	padding: 20px 22px;
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .82rem;
	color: var(--accent3);
	line-height: 1.8;
	margin-bottom: 20px;
	overflow-x: auto
}

.docs-callout {
	background: rgba(0, 194, 255, .06);
	border: 1px solid rgba(0, 194, 255, .15);
	border-radius: 10px;
	padding: 16px 20px;
	font-size: .88rem;
	color: var(--muted);
	margin-bottom: 20px;
	line-height: 1.72
}

.docs-callout strong {
	color: var(--accent)
}

/* ── PROCESS SECTION ── */
.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
	margin-top: 56px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--r);
	overflow: hidden
}

.process-step {
	background: var(--bg2);
	padding: 36px 28px;
	position: relative;
	transition: background .3s
}

.process-step:hover {
	background: var(--surface)
}

.ps-num {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .72rem;
	color: var(--dim);
	margin-bottom: 16px
}

.ps-ico {
	font-size: 1.6rem;
	margin-bottom: 14px
}

.ps-title {
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px
}

.ps-desc {
	font-size: .82rem;
	color: var(--text2);
	line-height: 1.65
}

/* ── TESTIMONIALS ── */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
	margin-top: 56px
}

.testi-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 30px;
	transition: all .3s;
	position: relative;
	overflow: hidden
}

.testi-card::before {
	content: '"';
	position: absolute;
	top: -10px;
	right: 20px;
	font-family: 'Syne', sans-serif;
	font-size: 7rem;
	color: var(--accent);
	opacity: .05;
	line-height: 1
}

.testi-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 194, 255, .15);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .35)
}

.testi-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 14px;
	font-size: .85rem
}

.testi-text {
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 22px
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 12px
}

.testi-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: .8rem;
	color: #fff;
	flex-shrink: 0
}

.testi-name {
	font-family: 'Syne', sans-serif;
	font-size: .88rem;
	font-weight: 700
}

.testi-role {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .67rem;
	color: var(--muted)
}

/* ── CTA BANNER ── */
.cta-banner {
	background: var(--bg2);
	padding: 100px 5%;
	text-align: center;
	position: relative;
	overflow: hidden
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0, 194, 255, .06), transparent)
}

.cta-banner-inner {
	max-width: 620px;
	margin: 0 auto;
	position: relative;
	z-index: 1
}

.cta-banner h2 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.9rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -.025em;
	margin-bottom: 16px
}

.cta-banner p {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.75;
	font-weight: 300;
	margin-bottom: 36px
}

.cta-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap
}

/* ── FOOTER ── */
footer {
	background: rgba(14, 19, 35, 1);
	border-top: 1px solid var(--border);
	padding: 64px 5% 36px
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px
}

@media(max-width:860px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:500px) {
	.footer-grid {
		grid-template-columns: 1fr
	}
}

.footer-brand .logo {
	margin-bottom: 14px
}

.footer-brand p {
	font-size: .85rem;
	color: var(--muted);
	line-height: 1.75;
	max-width: 270px;
	font-weight: 300
}

.footer-col h5 {
	font-family: 'Syne', sans-serif;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	margin-bottom: 18px
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.footer-col a {
	font-size: .855rem;
	color: var(--muted);
	transition: color .2s;
	cursor: pointer
}

.footer-col a:hover {
	color: var(--accent)
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px
}

.footer-copy {
	font-family: 'Google Sans', sans-serif;
	;
	font-size: .75rem;
	color: var(--dim)
}

.footer-socials {
	display: flex;
	gap: 10px
}

.soc-btn {
	width: 34px;
	height: 34px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	color: var(--muted);
	transition: all .2s;
	cursor: pointer
}

.soc-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: rgba(0, 194, 255, .06)
}

/* ── REVEAL ANIMATION ── */
.rv {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .65s ease, transform .65s ease
}

.rv.vis {
	opacity: 1;
	transform: translateY(0)
}

.rv1 {
	transition-delay: .1s
}

.rv2 {
	transition-delay: .2s
}

.rv3 {
	transition-delay: .3s
}

.rv4 {
	transition-delay: .4s
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
	.nav-links {
		display: none
	}

	.hamburger {
		display: flex
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 24px
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.docs-layout {
		grid-template-columns: 1fr
	}

	.docs-sidebar {
		display: none
	}
}
 .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-gradient {
            background: radial-gradient(circle at top right, #312e81, #1e1b4b, #0f172a);
        }

        .card-hover:hover {
            transform: translateY(-10px);
            border-color: #6366f1;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .step-line::after {
            content: '';
            position: absolute;
            top: 2rem;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #334155;
            z-index: -1;
        }

        @media (max-width: 768px) {
            .step-line::after {
                display: none;
            }
        }

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(22px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}
