/* ============ TOKENS ============ */
:root {
	--bg: #020617;
	--bg-alt: #050B18;
	--panel: #0A1020;
	--panel-2: #0D1426;
	--card: #101827;
	--border: #202A3D;
	--border-soft: #172033;
	--text: #F8FAFC;
	--text-dim: #A8B0C2;
	--text-faint: #6F7890;
	--orange: #A855F7;
	--orange-2: #B7F238;
	--orange-deep: #7C3AED;
	--grad-orange: linear-gradient(135deg, #A855F7 0%, #C084FC 45%, #B7F238 100%);
	--green: #3ddc84;
	--red: #ff6161;
	--radius: 16px;
	--radius-sm: 10px;
	--maxw: 1180px;
	--font-display: "Plus Jakarta Sans", "Inter", sans-serif;
	--font-body: "Inter", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

ul {
	list-style: none;
}

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

button {
	font-family: inherit;
	cursor: pointer;
}

input {
	font-family: inherit;
}

::selection {
	background: var(--orange);
	color: #fff;
}

/* subtle noise + radial ambience on body */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse 900px 500px at 20% -10%,
			rgba(168, 85, 247, 0.08),
			transparent 60%),
		radial-gradient(ellipse 700px 500px at 100% 20%,
			rgba(183, 242, 56, 0.045),
			transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.section-head {
	max-width: 100%;
	margin: 0 auto 56px;
	text-align: center;
	/* padding: 0 24px; */
	text-align: left;
	/* margin-left: 30px; */
	padding-left: 210px;

}

@media (max-width: 640px) {
	.section-head {
		max-width: 100%;
		margin: 0 0 40px 30px;
		text-align: left;
		padding-left: 0;
	}
}

.section-head h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}

.section-head p {
	color: var(--text-dim);
	font-size: 15px;
	line-height: 1.7;
}

/* ============ REVEAL ANIMATION ============ */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1),
		transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}

[data-reveal].in {
	opacity: 1;
	transform: translateY(0);
}

/* ============ NAV ============ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 18px 24px;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		padding 0.3s ease;
	border-bottom: 1px solid transparent;
}

.nav.scrolled {
	background: rgba(5, 7, 12, 0.85);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--border-soft);
	padding: 12px 24px;
}

.nav-inner {
	/* max-width: var(--maxw); */
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
}

.logo-mark {
	flex-shrink: 0;
	filter: drop-shadow(0 2px 12px rgba(168, 85, 247, 0.45));
	transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1);
}

.logo-mark.small {
	filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4));
}

.logo:hover .logo-mark {
	transform: rotate(10deg) scale(1.08);
}

.logo-text {

	font-weight: 800;
	font-size: 18px;
	letter-spacing: 0.01em;
	font-weight: 800;
	font-size: 21px;
	letter-spacing: -0.01em;
	color: #ffffff;
	position: relative;
	transition: filter 0.3s ease;

}

.logo-text .accent-letter::after {
	content: "n";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: var(--green);
	filter: blur(10px);
	opacity: 0.6;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo:hover .logo-text {
	filter: brightness(1.15);
}

.logo-text .accent-letter {
	color: var(--green);
	position: relative;
}

.logo-text.small {
	font-size: 14px;
}

.logo-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--grad-orange);
	box-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
	margin-left: 2px;
	align-self: flex-start;
	margin-top: 12px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
	font-size: 14px;
	color: var(--text-dim);
	margin-right: 110px;

}

.nav-link {
	transition: color 0.2s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--text);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 2px;
	background: var(--grad-orange);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 18px;

}

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
}

.burger span {
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: 0.3s;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease;
	white-space: nowrap;

}

.btn i {
	font-style: normal;
	transition: transform 0.25s ease;

}

.btn:hover i {
	transform: translateX(3px);
}

.btn-primary {
	background: #A855F7;
	color: #fff;
	box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);

}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5);

}

.btn-sm {
	padding: 9px 16px;
	font-size: 13px;
}


.btn-ghost {
	background: #B7F238;
	color: black;
	border-color: var(--border);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-2px);
}

.btn-dark {
	background: #191c24;
	color: var(--text);
	border-color: var(--border);
	padding: 11px 18px;
}

.btn-dark:hover {
	background: #20232d;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	border-color: var(--border);
	color: var(--text);
	justify-content: center;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.06);
}

.full {
	width: 100%;
}

/* ============ HERO ============ */
.hero {
	position: relative;
	padding: 150px 24px 0;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.hero-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 800px 500px at 50% 0%,
			black,
			transparent 70%);
	z-index: -2;
}

.hero-content {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	padding: 5px;
	padding-right: 70px;
	border-radius: 100px;
	font-size: 10px;
	margin-bottom: 28px;
	transition:
		border-color 0.25s ease,
		background 0.25s ease;
}

.badge:hover {
	border-color: #333844;
	background: rgba(255, 255, 255, 0.06);
}

.badge-pill {
	background: #A855F7;
	color: #fff;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 12px;
}

.badge-text {
	color: var(--text-dim);
}

.badge-arrow {
	color: var(--text-dim);
}

.hero-title {

	font-family: var(--font-display);
	font-size: clamp(38px, 6.4vw, 66px);
	/* font-size: 40px; */
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin-bottom: 22px;
	text-align: left;
	margin-left: 30px;
	/* padding-right: 150px; */
}

.hero-sub {
	color: var(--text-dim);
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 34px;
	text-align: left;
	margin-left: 30px;

}

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 80px;
	padding-right: 34px !important;
	/* padding-left: 10px; */
	color: #B7F238 !important;

}









/* =========================
   AI VIDEO SUN
========================= */

.sun-wrap {
	position: relative;
	height: 340px;
	max-width: 900px;
	margin: 0 auto;
	z-index: 1;
	overflow: hidden;
}

.sun {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);

	width: 780px;
	height: 780px;

	border-radius: 50%;
	overflow: hidden;

	background: #A855F7;

	z-index: 1;
}

/* AI video */
.sun video {
	width: 100%;
	height: 100%;

	display: block;

	object-fit: cover;

	object-position: center;

	border-radius: 50%;
}

/* Existing glow */
.sun-glow {
	position: absolute;

	left: 50%;
	top: 60px;

	transform: translateX(-50%);

	width: 780px;
	height: 780px;

	border-radius: 50%;

	background:
		radial-gradient(circle at 50% 20%,
			rgba(183, 242, 56, 0.22),
			transparent 60%);

	filter: blur(40px);

	pointer-events: none;

	z-index: 2;
}

/* Existing ring */
.sun-ring {
	position: absolute;

	left: 50%;
	top: 52px;

	transform: translateX(-50%);

	width: 800px;
	height: 800px;

	border-radius: 50%;

	border: 1px solid rgba(255, 255, 255, 0.15);

	box-shadow:
		0 -2px 20px rgba(255, 255, 255, 0.08);

	pointer-events: none;

	z-index: 3;
}











/* sun graphic
.sun-wrap {
	position: relative;
	height: 340px;
	max-width: 900px;
	margin: 0 auto;
	z-index: 1;
}

.sun {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	width: 780px;
	height: 780px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 22%,
			#ffd39b 0%,
			#B7F238 18%,
			#A855F7 34%,
			#d43c0c 52%,
			#591a06 70%,
			transparent 74%);
	filter: blur(0px);
}

.sun-glow {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	width: 780px;
	height: 780px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 20%,
			rgba(168, 85, 247, 0.42),
			transparent 60%);
	filter: blur(40px);
}

.sun-ring {
	position: absolute;
	left: 50%;
	top: 52px;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 -2px 20px rgba(255, 255, 255, 0.08);
} */
/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

	.sun-wrap {
		height: 300px;
	}

	.sun {
		width: 680px;
		height: 680px;
		top: 55px;
	}

	.sun-glow {
		width: 680px;
		height: 680px;
		top: 55px;
	}

	.sun-ring {
		width: 700px;
		height: 700px;
		top: 47px;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

	.sun-wrap {
		width: 100%;
		height: 230px;
		overflow: hidden;
	}

	.sun {
		width: 520px;
		height: 520px;
		top: 40px;
	}

	.sun-glow {
		width: 520px;
		height: 520px;
		top: 40px;
		filter: blur(25px);
	}

	.sun-ring {
		width: 540px;
		height: 540px;
		top: 32px;
	}
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

	.sun-wrap {
		height: 200px;
	}

	.sun {
		width: 450px;
		height: 450px;
		top: 35px;
	}

	.sun-glow {
		width: 450px;
		height: 450px;
		top: 35px;
	}

	.sun-ring {
		width: 470px;
		height: 470px;
		top: 27px;
	}
}

.hero::after {
	/* eclipse mask - dark bg covers bottom half of sun to create "rising" look, panel sits on top */
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 260px;
	background: linear-gradient(to bottom, transparent, var(--bg) 85%);
	z-index: 1;
	pointer-events: none;
}

/* ============ DASHBOARD PANEL (shared hero + cta) ============ */
.hero-panel {
	position: relative;
	z-index: 3;
	max-width: 1080px;
	margin: 0 auto;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 20px 20px 0 0;
	box-shadow:
		0 -20px 80px rgba(168, 85, 247, 0.12),
		0 30px 60px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	text-align: left;
}

.panel-topbar {
	display: flex;
	align-items: center;
	gap: 36px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--border-soft);
	background: var(--panel-2);
}

.panel-nav {
	display: flex;
	gap: 22px;
	font-size: 13px;
	color: var(--text-faint);
	flex: 1;
}

.panel-nav span {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: color 0.2s;
}

.panel-nav span:hover {
	color: var(--text-dim);
}

.panel-nav span.active {
	color: var(--text);
}

.panel-nav [class^="ic-"] {
	width: 13px;
	height: 13px;
	display: inline-block;
	opacity: 0.7;
}

.panel-icons {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-left: auto;
}

/* .ic-bell {
	width: 16px;
	height: 16px;
	border: 1.5px solid var(--text-faint);
	border-radius: 3px;
	display: inline-block;
} */
/* 
.avatar {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--grad-orange);
	display: inline-block;
} */

.panel-body {
	padding: 28px;
	background-color: #120428;
}

.panel-head-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.panel-head-row h3 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
}

.btn-invite {
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--text-dim);
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 12px;
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 18px;
}

.stat-row.small {
	grid-template-columns: repeat(3, 1fr);
}

.stat-card {
	background: #120428 !important;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
	position: relative;
	overflow: hidden;
}

.stat-label {
	font-size: 10.5px;
	letter-spacing: 0.06em;
	color: var(--text-faint);
	font-weight: 600;
}

.stat-bottom {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 8px;
}

.stat-bottom strong {
	font-size: 25px;
	font-family: var(--font-display);
}

.delta {
	font-size: 11px;
	font-weight: 600;
}

.delta.up {
	color: var(--green);
}

.delta.down {
	color: var(--red);
}

.spark {
	/* width: 100%; */
	height: 24px;
	margin-top: 8px;
	opacity: 0.55;
	display: flex;
	flex-direction: column;
	gap: 8px;
	/* pehle zyada hoga */
	margin-bottom: 0;
	padding: 6px 0;

}

.spark polyline {
	fill: none;
	stroke: var(--orange-2);
	stroke-width: 2;
}

.panel-two-col {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 16px;
	margin-bottom: 16px;

}

.panel-two-col.small {
	grid-template-columns: 1fr 1fr;
}

.import-card,
.chart-card {
	background: rgb(81, 59, 20);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px;
}

.import-head h4,
.chart-head h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

.import-head .sub,
.chart-head .sub {
	font-size: 11.5px;
	color: var(--text-faint);
}

.chart-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 14px;
}

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

.import-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}

.import-list li>div {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.import-list li small {
	color: var(--text-faint);
	font-size: 11px;
}

.import-list a {
	font-size: 12px;
	color: var(--orange-2);
	font-weight: 600;
}

.dot {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	flex-shrink: 0;
}

.dot1 {
	background: linear-gradient(135deg, #a78bfa, #f472b6);
}

.dot2 {
	background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.dot3 {
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.import-foot {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--border-soft);
	font-size: 12px;
	color: var(--text-faint);
}

.bars {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	height: 100px;
}

.bar {
	flex: 1;
	height: var(--h);
	border-radius: 5px 5px 0 0;
	background: linear-gradient(180deg, var(--orange-2), var(--orange-deep));
	opacity: 0.85;
	transition:
		opacity 0.2s,
		transform 0.25s;
	transform-origin: bottom;
}

.bar:hover {
	opacity: 1;
	transform: scaleY(1.03);
}

.bar:nth-child(2n) {
	opacity: 0.55;
}

.bar-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 10px;
	color: var(--text-faint);
}

/* ============ LOGOS ============ */
.logos {
	padding: 60px 0 90px;
	position: relative;
	z-index: 1;
}

.logos-title {
	text-align: center;
	color: var(--text-faint);
	font-size: 13px;
	margin-bottom: 32px;
	letter-spacing: 0.02em;
}

.logos-track {
	overflow: hidden;
	mask-image: linear-gradient(90deg,
			transparent,
			black 10%,
			black 90%,
			transparent);
}

.logos-row {
	display: flex;
	gap: 64px;
	width: max-content;
	animation: scroll-logos 26s linear infinite;
}

@keyframes scroll-logos {
	from {
		transform: translateX(0);
	}

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

.logo-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--text-faint);
	opacity: 0.6;
	flex-shrink: 0;
	transition: opacity 0.3s ease;
}

.logo-item:hover {
	opacity: 1;
}

.lg-icon {
	width: 20px;
	height: 20px;
	display: inline-block;
	object-fit: contain;
	opacity: 0.75;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover .lg-icon {
	opacity: 1;
	transform: scale(1.08);
}

/* ============ BENTO ============ */
.bento {
	padding: 0 24px 110px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;

}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 20px;
}

.bento-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	min-height: 230px;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease;
}

.bento-card:hover {
	transform: translateY(-4px);
	border-color: #2a2f3b;
}

.bento-card h4 {
	font-family: var(--font-display);
	font-size: 16px;
	margin-bottom: 8px;
}

.bento-card p {
	font-size: 12.5px;
	color: var(--text-faint);
	line-height: 1.6;
	max-width: 220px;
}

.mini-tasks {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mini-task {
	font-size: 11.5px;
	padding: 10px;
	border-radius: 8px;
	background: #171a22;
	border: 1px solid var(--border-soft);
	color: var(--text-dim);
	display: flex;
	gap: 6px;
	align-items: flex-start;
}

.mini-task.orange {
	background: rgba(255, 106, 43, 0.12);
	border-color: rgba(255, 106, 43, 0.3);
}

.tag {
	font-size: 9.5px;
	font-weight: 700;
	background: var(--grad-orange);
	color: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	flex-shrink: 0;
}

.tag.gray {
	background: #2a2e38;
	color: var(--text-dim);
}

.mini-stat {
	margin-top: 22px;
	background: #171a22;
	border: 1px solid var(--border-soft);
	border-radius: 10px;
	padding: 14px;
}

.mini-label {
	font-size: 9.5px;
	letter-spacing: 0.05em;
	color: var(--text-faint);
	font-weight: 600;
}

.mini-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 6px;
}

.mini-row strong {
	font-family: var(--font-display);
	font-size: 18px;
}

.create-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

.cone {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	height: 220px;
	background: conic-gradient(from 200deg at 50% 0%,
			transparent 0deg,
			rgba(255, 120, 50, 0.65) 90deg,
			transparent 180deg);
	filter: blur(2px);
}

.cone-icon {
	position: relative;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--grad-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 70px;
	box-shadow: 0 0 30px rgba(255, 110, 40, 0.6);
}

.create-card h4,
.create-card p {
	position: relative;
	z-index: 2;
}

.sidebar-mini {
	margin-top: 16px;
	position: relative;
}

.sm-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-faint);
	padding: 6px 0;
}

.sm-row.active {
	color: var(--text);
	font-weight: 600;
}

.sm-row span {
	margin-left: auto;
	font-size: 10px;
}

.ic-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3a3f4c;
	flex-shrink: 0;
}

.ic-dot.orange {
	background: var(--orange);
}

.floaters {
	position: absolute;
	right: -6px;
	bottom: 6px;
	width: 60px;
	height: 60px;
}

.f {
	position: absolute;
	border-radius: 4px;
	background: linear-gradient(135deg, #e8eaef, #c7cad4);
	opacity: 0.9;
}

.f1 {
	width: 16px;
	height: 16px;
	right: 20px;
	bottom: 10px;
	transform: rotate(45deg);
}

.f2 {
	width: 10px;
	height: 10px;
	right: 0;
	bottom: 30px;
	transform: rotate(45deg);
	background: linear-gradient(135deg, #B7F238, #A855F7);
}

.f3 {
	width: 12px;
	height: 12px;
	right: 34px;
	bottom: 34px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.8;
}

/* ============ FEATURES ============ */
.features {
	padding: 40px 24px 120px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.feature-text {
	margin-left: 30px !important;
}

.feature-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
}

.feature-block.reverse .feature-text {
	order: 2;
}

.feature-block.reverse .feature-visual {
	order: 1;
}

.feature-text h3 {
	font-family: var(--font-display);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	line-height: 1.3;

}

.feature-text p {
	color: var(--text-dim);
	font-size: 14.5px;
	line-height: 1.75;
	margin-bottom: 8px;
	max-width: 440px;
}

.feature-text p.muted {
	color: var(--text-faint);
	margin-bottom: 22px;
}

.check-list {
	margin-top: 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-dim);
}

.check {
	width: 18px;
	height: 18px;
	border-radius: 5px;
	background: var(--grad-orange);
	color: #fff;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-visual {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	min-height: 400px;
	position: relative;
	overflow: hidden;
	padding: 24px;
}

.mgmt-visual {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.mini-panel-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	z-index: 3;
}

.mp-row {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--card);
	border: 1px solid var(--border-soft);
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 12.5px;
}

.mp-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #1c202a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-dim);
	flex-shrink: 0;
}

.mp-icon.orange {
	background: var(--grad-orange);
	color: #fff;
}

.mp-row strong {
	display: block;
	font-size: 12.5px;
}

.mp-row small {
	color: var(--text-faint);
	font-size: 11px;
}

.rings {
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 320px;
	height: 320px;
}

.ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 120, 50, 0.25);
}

.r1 {
	inset: 0;
	background: radial-gradient(circle at 60% 40%,
			rgba(255, 110, 40, 0.25),
			transparent 70%);
}

.r2 {
	inset: 40px;
	border-color: rgba(255, 120, 50, 0.35);
}

.r3 {
	inset: 80px;
	border-color: rgba(255, 120, 50, 0.5);
}

.cube {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.charts-visual {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 26px;
}

.charts-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--card);
	border: 1px solid var(--border-soft);
	padding: 14px;
	border-radius: 12px;
	max-width: 320px;
}

.ci {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--grad-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.charts-badge strong {
	font-size: 13px;
	display: block;
}

.charts-badge small {
	font-size: 11px;
	color: var(--text-faint);
}

.tilt-card {
	background: var(--grad-orange);
	border-radius: 16px;
	padding: 20px;
	width: 280px;
	transform: rotate(-8deg) translateX(20px);
	box-shadow: 0 20px 50px rgba(168, 85, 247, 0.35);
}

.tilt-head {
	display: flex;
	justify-content: space-between;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 14px;
	opacity: 0.9;
}

.tilt-chart {
	width: 100%;
	height: 60px;
}

/* ============ PRICING ============ */
.pricing {
	padding: 0 24px 120px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.price-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	position: relative;
	transition:
		transform 0.3s ease,
		border-color 0.3s;
}

.price-card:hover {
	transform: translateY(-4px);
}

.price-card.featured {
	background: linear-gradient(180deg, #171a22, #101827);
	border-color: var(--orange);
	box-shadow: 0 20px 60px rgba(168, 85, 247, 0.18);
}

.popular {
	position: absolute;
	top: -13px;
	left: 32px;
	background: var(--grad-orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 100px;
}

.price-card h3 {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 4px;
}

.plan-name {
	font-size: 13px;
	color: var(--orange-2);
	font-weight: 600;
}

.price-card p {
	color: var(--text-faint);
	font-size: 13px;
	line-height: 1.7;
	margin: 16px 0 22px;
}

.feat-list {
	margin-top: 26px;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.feat-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--text-dim);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
	padding: 0 24px 120px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.testimonial-card {
	position: relative;
	background: linear-gradient(145deg, rgba(16, 24, 39, 0.96), rgba(10, 16, 32, 0.96));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(168, 85, 247, 0.4);
}

.quote-mark {
	position: absolute;
	top: 14px;
	right: 22px;
	font-family: var(--font-display);
	font-size: 54px;
	line-height: 1;
	font-weight: 800;
	background: var(--grad-orange);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.35;
}

.stars {
	color: #B7F238;
	font-size: 14px;
	letter-spacing: 2px;
}

.testimonial-text {
	color: var(--text-dim);
	font-size: 14.5px;
	line-height: 1.65;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 6px;
}

.testimonial-author strong {
	display: block;
	font-family: var(--font-display);
	font-size: 14px;
	color: var(--text);
}

.testimonial-author small {
	color: var(--text-faint);
	font-size: 12px;
}

.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	color: #05070C;
	background: var(--grad-orange);
	flex-shrink: 0;
}

/* =====================================================
   XEVONEXAI — INSIGHTS
===================================================== */

.blog {
	padding: 0 24px 120px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}


/* =========================
   BLOG GRID
========================= */

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}


/* =========================
   BLOG CARD
========================= */

.blog-card {
	position: relative;

	height: 340px;
	min-width: 0;

	border-radius: var(--radius);

	overflow: hidden;

	border: 1px solid var(--border);

	display: flex;
	align-items: flex-end;

	text-decoration: none;
	color: #fff;

	isolation: isolate;

	transition:
		transform 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease;
}


/* CARD HOVER */

.blog-card:hover {
	transform: translateY(-6px);

	border-color: rgba(255, 255, 255, 0.25);

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.35);
}


/* =========================
   CARD BACKGROUNDS
========================= */

.bc1 {
	background:
		radial-gradient(circle at 80% 20%,
			rgba(168, 85, 247, 0.35),
			transparent 35%),
		linear-gradient(150deg,
			#120c24 0%,
			#291743 48%,
			#7c3aed 150%);
}


.bc2 {
	background:
		radial-gradient(circle at 80% 20%,
			rgba(96, 165, 250, 0.22),
			transparent 35%),
		linear-gradient(150deg,
			#080d18 0%,
			#182235 50%,
			#374151 150%);
}


.bc3 {
	background:
		radial-gradient(circle at 80% 20%,
			rgba(183, 242, 56, 0.25),
			transparent 35%),
		linear-gradient(150deg,
			#08130d 0%,
			#14281b 50%,
			#84cc16 150%);
}


/* =========================
   DOT PATTERN
========================= */

.blog-card::before {
	content: "";

	position: absolute;
	inset: 0;

	background-image:
		radial-gradient(rgba(255, 255, 255, 0.15) 1px,
			transparent 1px);

	background-size: 16px 16px;

	opacity: 0.3;

	mix-blend-mode: overlay;

	pointer-events: none;

	z-index: -1;
}


/* =========================
   ICON
========================= */

.card-icon {
	position: absolute;

	top: 16px;
	left: 16px;

	z-index: 3;

	width: 42px;
	height: 42px;

	border-radius: 12px;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 17px;

	color: #fff;

	background: rgba(5, 7, 12, 0.4);

	border: 1px solid rgba(255, 255, 255, 0.16);

	backdrop-filter: blur(8px);

	transition:
		transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1),
		background 0.3s ease;
}


.blog-card:hover .card-icon {
	transform: translateY(-3px);

	background: rgba(5, 7, 12, 0.65);
}


/* =========================
   ARROW
========================= */

.blog-arrow {
	position: absolute;

	top: 16px;
	right: 16px;

	z-index: 3;

	width: 32px;
	height: 32px;

	border-radius: 50%;

	background: rgba(10, 12, 17, 0.55);

	color: #fff;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 15px;

	backdrop-filter: blur(6px);

	transition:
		transform 0.3s ease,
		background 0.3s ease;
}


.blog-card:hover .blog-arrow {
	transform: rotate(45deg);

	background: var(--orange);
}


/* =========================
   OVERLAY
========================= */

.blog-overlay {

	position: relative;

	z-index: 2;

	width: 100%;

	padding: 22px;

	box-sizing: border-box;

	background:
		linear-gradient(0deg,
			rgba(5, 7, 12, 0.96) 0%,
			rgba(5, 7, 12, 0.78) 48%,
			transparent 100%);

	color: #fff;

	transform: translateY(54px);

	transition:
		transform 0.45s cubic-bezier(0.16, 0.8, 0.24, 1);
}


/* SHOW CONTENT ON HOVER */

.blog-card:hover .blog-overlay {
	transform: translateY(0);
}


/* =========================
   CATEGORY
========================= */

.blog-category {

	display: block;

	margin-bottom: 8px;

	font-size: 9px;

	font-weight: 700;

	letter-spacing: 1.5px;

	text-transform: uppercase;

	color: #b7f238;
}


/* =========================
   TITLE
========================= */

.blog-overlay strong {

	display: block;

	font-family: var(--font-display);

	font-size: 17px;

	line-height: 1.25;

	font-weight: 700;

	color: #fff;
}


/* =========================
   DESCRIPTION
========================= */

.blog-overlay small {

	display: block;

	margin-top: 8px;

	color: rgba(255, 255, 255, 0.68);

	font-size: 12px;

	line-height: 1.55;

	font-weight: 400;
}


/* =========================
   READ MORE
========================= */

.read-more {

	display: inline-flex;

	align-items: center;

	gap: 7px;

	margin-top: 14px;

	font-size: 11px;

	font-weight: 700;

	color: #fff;

	opacity: 0;

	transform: translateY(8px);

	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}


.read-more i {
	font-size: 9px;

	transition: transform 0.3s ease;
}


.blog-card:hover .read-more {

	opacity: 1;

	transform: translateY(0);
}


.blog-card:hover .read-more i {
	transform: translateX(4px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

	.blog {
		padding: 0 18px 80px;
	}

	.blog-grid {
		grid-template-columns: 1fr;

		gap: 18px;
	}

	.blog-card {
		height: 320px;
	}

	.blog-overlay {
		transform: translateY(0);
	}

	.read-more {
		opacity: 1;
		transform: translateY(0);
	}

}

/* ============ PROJECTS / WORK ============ */
.work {
	padding: 0 24px 120px;
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.work-card {
	position: relative;
	height: 280px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	display: flex;
	align-items: flex-end;
}

.wc1 {
	background: linear-gradient(150deg, #C084FC 0%, #A855F7 55%, #7C3AED 100%);
}

.wc2 {
	background: linear-gradient(150deg, #2a2f3d, #3a4152 45%, #1a1e28);
}

.wc3 {
	background: linear-gradient(150deg, #67e8f9 0%, #38bdf8 45%, #7C3AED 100%);
}

.wc4 {
	background: linear-gradient(150deg, #343a48, #23272f 60%, #12151c);
}

.wc5 {
	background: linear-gradient(150deg, #B7F238 0%, #7C3AED 55%, #4c1d95 100%);
}

.wc6 {
	background: linear-gradient(150deg, #3a4152, #20242e 55%, #0d0f14);
}

/* ============ CTA ============ */
.cta {
	position: relative;
	padding: 100px 24px 0;
	overflow: hidden;
}

.cta::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 900px;
	height: 500px;
	background: radial-gradient(ellipse at 50% 100%,
			rgba(255, 106, 43, 0.18),
			transparent 70%);
	z-index: 0;
}

.cta-inner {
	max-width: var(--maxw);
	margin: 0 auto;
	background: linear-gradient(160deg, #14171f, #0c0e14);
	border: 1px solid var(--border);
	border-radius: 24px 24px 0 0;
	padding: 56px 56px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.cta-inner::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--grad-orange);
}

.cta-text h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	line-height: 1.15;
}

.cta-text p {
	color: var(--text-dim);
	font-size: 14.5px;
	margin-bottom: 26px;
	max-width: 380px;
}

.cta-form {
	display: flex;
	gap: 10px;
	max-width: 400px;
}

.cta-form input {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 13px 18px;
	color: var(--text);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.cta-form input::placeholder {
	color: var(--text-faint);
}

.cta-form input:focus {
	border-color: var(--orange);
}

.cta-form button {
	background: var(--grad-orange);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 13px 24px;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.cta-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.form-note {
	margin-top: 12px;
	font-size: 12.5px;
	color: var(--green);
	min-height: 16px;
}

.cta-visual {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	align-self: end;
	box-shadow: 0 -20px 60px rgba(168, 85, 247, 0.10);
	height: 100%;
}

.panel-topbar.small {
	padding: 12px 18px;
}

.panel-nav.small {
	gap: 16px;
	font-size: 11px;

}

.panel-body.small {
	padding: 20px;
}

/* ============ CONTACT INFO PANEL (CTA visual) ============ */
.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding: 32px;
	height: 100%;
}

.cip-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.cip-header h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 6px;
}

.cip-header p {
	color: var(--text-dim);
	font-size: 13.5px;
	line-height: 1.55;
	max-width: 320px;
}

.cip-contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cip-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 14px;
	border-radius: 12px;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.02);
	transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.cip-row:hover {
	border-color: rgba(168, 85, 247, 0.4);
	background: rgba(168, 85, 247, 0.06);
	transform: translateX(4px);
}

.cip-row div {
	flex: 1;
	min-width: 0;
}

.cip-row strong {
	display: block;
	font-family: var(--font-display);
	font-size: 13.5px;
	color: var(--text);
}

.cip-row small {
	display: block;
	color: var(--text-faint);
	font-size: 12px;
	margin-top: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cip-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #fff;
	background: var(--grad-orange);
}

.cip-icon.whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
}

.cip-icon.linkedin {
	background: linear-gradient(135deg, #0A66C2, #0e4a8a);
}

.cip-arrow {
	flex-shrink: 0;
	color: var(--text-faint);
	font-size: 12px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.cip-row:hover .cip-arrow {
	transform: translateX(3px);
	color: var(--green);
}

.cip-trust {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 4px;
	border-top: 1px solid var(--border-soft);
	border-bottom: 1px solid var(--border-soft);
}

.cip-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
}

.cip-trust-item strong {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 800;
	background: var(--grad-orange);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cip-trust-item span {
	font-size: 11px;
	color: var(--text-faint);
	margin-top: 4px;
}

.cip-note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	color: var(--text-dim);
	margin-top: auto;
}

.cip-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 8px rgba(183, 242, 56, 0.7);
	flex-shrink: 0;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
	width: 100%;
	height: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 35px;
	background: rgba(10, 10, 10, 0.75);
	border: 1px solid rgba(255, 102, 0, 0.25);
	border-radius: 18px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

/* Two columns */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Labels */
.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;

	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
}

/* Inputs + Textarea */
.contact-form input,
.contact-form textarea {
	width: 100%;
	box-sizing: border-box;

	padding: 14px 16px;

	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;

	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;

	outline: none;
	font-family: inherit;
	font-size: 15px;

	transition: all 0.3s ease;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #A855F7;
	background: rgba(255, 106, 0, 0.05);

	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

/* Textarea */
.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

/* Button */
.contact-form .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 13px 25px;

	background: linear-gradient(135deg, #A855F7, #ff3c00);
	color: #ffffff;

	border: none;
	border-radius: 10px;

	font-size: 15px;
	font-weight: 700;

	cursor: pointer;
	transition: all 0.3s ease;
}

/* Button hover */
.contact-form .btn-primary:hover {
	transform: translateY(-2px);

	box-shadow:
		0 10px 25px rgba(255, 106, 0, 0.3),
		0 0 20px rgba(255, 106, 0, 0.15);
}

/* Button icon */
.contact-form .btn-primary i {
	transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover i {
	transform: translateX(4px);
}

/* Form status message */
.form-message {
	margin-top: 15px;
	font-size: 14px;
	color: #ffffff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 700px) {
	.contact-form {
		padding: 25px 20px;
		border-radius: 14px;
	}

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

	.contact-form input,
	.contact-form textarea {
		font-size: 14px;
	}

	.contact-form .btn-primary {
		width: 100%;
	}
}

.panel-body.small h3 {
	font-family: var(--font-display);
	font-size: 16px;
	margin-bottom: 14px;
}

.import-card.small,
.chart-card.small {
	padding: 14px;
}

.import-card.small h4,
.chart-card.small h4 {
	font-size: 12px;
}

.import-card.small .import-list {
	margin-top: 10px;
	gap: 8px;
}

.import-card.small .import-list li {
	font-size: 11px;
}

.chart-card.small .bars {
	height: 60px;
	margin-top: 10px;
}

/* ============ FOOTER ============ */
.footer {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 70px 32px 30px;
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--border-soft);
}

.footer-brand h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	margin: 20px 0 12px;
	line-height: 1.3;
}

.footer-brand p {
	color: var(--text-faint);
	font-size: 13px;
	line-height: 1.7;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--text-faint);
	text-transform: uppercase;
	margin-bottom: 6px;

}

.footer-col a {
	font-size: 11px;
	color: var(--text-dim);
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--orange-2);
}

.footer-bottom {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-top: 26px;
	font-size: 12.5px;
	color: var(--text-faint);
	gap: 28px;
	width: 100%;
	box-sizing: border-box;
}

/* The HTML contains a <br>; flex handles the layout instead. */
.footer-bottom br {
	display: none;
}

.footer-bottom .bn,
.footer-bottom .m,
.footer-bottom .n {
	margin: 0;
	padding: 0;
	width: auto;
	text-align: center;
}

.footer-bottom .n {
	line-height: 1.6;
}

/* ============ TO TOP ============ */
.to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		background 0.2s ease;
}

.to-top.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.to-top:hover {
	background: var(--grad-orange);
	border-color: transparent;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
	.nav-links {
		display: none;
	}

	.burger {
		display: flex;
	}

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

	.feature-block,
	.feature-block.reverse {
		grid-template-columns: 1fr;
	}

	.feature-block.reverse .feature-text {
		order: 1;
	}

	.feature-block.reverse .feature-visual {
		order: 2;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.work-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.cta-inner {
		grid-template-columns: 1fr;
	}

	.cta-visual {
		align-self: auto;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

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

	.panel-two-col {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hero {
		padding-top: 120px;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.sun-wrap {
		height: 220px;
	}

	.sun,
	.sun-glow,
	.sun-ring {
		width: 520px;
		height: 520px;
		top: 30px;
	}

	.panel-nav {
		display: none;
	}

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

	.footer-bottom {
		flex-direction: column;
		gap: 6px;
	}

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

	.nav-links.open {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(5, 7, 12, 0.98);
		backdrop-filter: blur(14px);
		padding: 20px 24px;
		gap: 18px;
		border-bottom: 1px solid var(--border-soft);
	}
}

.socials {
	display: flex;
	gap: 12px;
}

.socials a {
	box-shadow: 0 0 10px #766485;
	width: 30px;
	height: 30px;
	border: 1px solid rgb(37, 35, 40);

	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--primary);
	font-size: 20px;
	background: black;
}

.footer-cta {
	background: var(--grad-orange);
	color: #fff !important;
	box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
	padding: 9px 16px;
	font-size: 13px;
	width: 200px;
	text-shadow: #C084FC;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
}

/* Custom cursor wheel */
.cursor-wheel {
	position: fixed;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(0, 255, 255, 0.7);
	border-radius: 50%;
	pointer-events: none;
	z-index: 99999;

	transform: translate(-50%, -50%);
	transition:
		width 0.25s ease,
		height 0.25s ease,
		border-color 0.25s ease;

	box-shadow:
		0 0 15px rgba(0, 255, 255, 0.25),
		inset 0 0 15px rgba(0, 255, 255, 0.08);
}

/* Inner dot */
.cursor-wheel span {
	position: absolute;
	width: 7px;
	height: 7px;

	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%);
	border-radius: 50%;

	background: #00ffff;
	box-shadow: 0 0 15px #00ffff;
}

/* Rotating wheel */
.cursor-wheel::before {
	content: "";
	position: absolute;
	inset: 16px;

	border-radius: 50%;

	border-top: 1px solid #00ffff;
	border-bottom: 1px solid transparent;

	animation: cursorRotate 2s linear infinite;
}

@keyframes cursorRotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Hover effect */
body.cursor-hover .cursor-wheel {
	width: 35px;
	height: 35px;

	border-color: #00ffff;

	box-shadow:
		0 0 30px rgba(0, 255, 255, 0.35),
		inset 0 0 20px rgba(0, 255, 255, 0.1);
}

/* Hide normal cursor */
body {
	cursor: none;
}

a,
button {
	cursor: none;
}




.hh3 {
	word-spacing: 2px;
}

.dep {

	font-size: 10.5px;
	letter-spacing: 0.06em;
	color: var(--text-faint);
	font-weight: 600;
}




/* adding through me and extra code as i need for updating */
.hero-title {
	color: #EDEDF3 !important;
}

.hero-title .future {
	color: #B56CFF !important;
}

.hero-title .highlight {
	color: #BEF03A !important;
}

.future {
	color: transparent !important;
	-webkit-text-stroke: 2px #B56CFF !important;
	text-shadow: none !important;
}

.m {
	margin-right: 100px;
}

.n {
	margin-left: 2px;
}

.bn {
	margin-right: 22px;
}

.background-video {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	pointer-events: none;
}

.video-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: -1;
	pointer-events: none;
}

.about-story {
	max-width: 760px;
	margin: 0 auto 72px;
	text-align: center;

}

.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange-2);
	background: rgba(183, 242, 56, 0.10);
	border: 1px solid rgba(168, 85, 247, 0.25);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 18px;
}

.about-story h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.about-story p {
	color: var(--text-dim);
	font-size: 15px;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 16px;
}

.about-story p:last-child {
	margin-bottom: 0;
}

.heap {

	font-family: "Space Mono";

	font-family: "Space Mono", monospace;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 4px;
	color: #B7F238;
	/* margin: 70px; */
	/* padding: 10px; */
	padding-left: 190px;
}

/* @media (max-width: 640px) {

  ===== TOP ZINTHRO / DASHBOARD BOX =====
  .hero-panel {
    width: calc(90vw - 32px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 16px) !important;
    margin-right: 0 !important;
  }

  ===== NAME / EMAIL BOX =====
  .contact-form {
    width: calc(90vw - 32px) !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw + 35px) !important;
    margin-right: 0 !important;
    box-sizing: border-box;
	border-radius: 20px !important;
  }

} */

@media (max-width: 640px) {

	.cta-inner {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.cta-visual {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}

	.cta-visual .panel-body.small {
		width: 100% !important;
		box-sizing: border-box !important;
	}

	.cta-visual .panel-topbar.small {
		width: 100% !important;
		box-sizing: border-box !important;

	}


}

.colors {
	/* font-family: "Space Mono"; */

	font-family: "Space Mono", monospace;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 4px;
	color: #B7F238;
	/* margin: 70px; */
	/* padding-left: 250px; */
}

/* =========================================================
   XEVEN-STYLE PREMIUM AI THEME
   Deep Navy + Electric Purple + Lime
   ========================================================= */

:root {
	--bg: #020617;
	--bg-alt: #050B18;
	--panel: #0A1020;
	--panel-2: #0D1426;
	--card: #101827;
	--border: #202A3D;
	--border-soft: #172033;

	--text: #F8FAFC;
	--text-dim: #A8B0C2;
	--text-faint: #6F7890;

	--orange: #A855F7;
	--orange-2: #B7F238;
	--orange-deep: #7C3AED;
	--grad-orange: linear-gradient(135deg,
			#A855F7 0%,
			#C084FC 45%,
			#B7F238 100%);

	--green: #B7F238;
	--red: #FF6B81;
}

body {
	background:
		radial-gradient(circle at 72% 18%, rgba(168, 85, 247, .10), transparent 30%),
		radial-gradient(circle at 25% 78%, rgba(183, 242, 56, .045), transparent 28%),
		var(--bg);
}

body::before {
	background:
		radial-gradient(ellipse 900px 500px at 15% -10%,
			rgba(168, 85, 247, .12),
			transparent 62%),
		radial-gradient(ellipse 700px 500px at 100% 20%,
			rgba(183, 242, 56, .045),
			transparent 62%);
}

.nav.scrolled {
	background: rgba(2, 6, 23, .86);
	border-bottom-color: rgba(168, 85, 247, .18);
}

.btn-primary {
	background: linear-gradient(135deg, #A855F7 0%, #B56CFF 48%, #B7F238 100%);
	color: #05070C;
	box-shadow: 0 6px 28px rgba(168, 85, 247, .28);
}

.btn-primary:hover {
	box-shadow:
		0 10px 32px rgba(168, 85, 247, .38),
		0 0 24px rgba(183, 242, 56, .12);
}

.btn-ghost {
	background: #B7F238;
	color: #05070C;
}

.btn-dark {
	background: #111827;
	border-color: #26334A;
}

.btn-outline {
	border-color: rgba(168, 85, 247, .55);
}

.hero-panel,
.cta-visual,
.contact-form {
	border-color: rgba(168, 85, 247, .20);
	box-shadow:
		0 -20px 80px rgba(168, 85, 247, .10),
		0 30px 70px rgba(0, 0, 0, .52);
}

.hero-panel {
	background:
		linear-gradient(145deg, rgba(13, 20, 38, .98), rgba(5, 11, 24, .98));
}

.stat-card,
.import-card,
.chart-card {
	background:
		linear-gradient(145deg, rgba(16, 24, 39, .96), rgba(10, 16, 32, .96));
	border-color: rgba(148, 163, 184, .14);
}

.hero-bg-grid {
	background-image:
		linear-gradient(rgba(168, 85, 247, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 85, 247, .035) 1px, transparent 1px);
}

.badge {
	background: rgba(168, 85, 247, .055);
	border-color: rgba(168, 85, 247, .45);
	box-shadow: 0 0 24px rgba(168, 85, 247, .08);
}

.badge-pill {
	background: linear-gradient(135deg, #A855F7, #B56CFF);
}

.nav-link.active::after {
	background: linear-gradient(90deg, #A855F7, #B7F238);
}

.spark polyline {
	stroke: #A855F7;
}

.import-list a {
	color: #B7F238;
}

.hero::after {
	background: linear-gradient(to bottom, transparent, var(--bg) 88%);
}

.to-top:hover {
	background: linear-gradient(135deg, #A855F7, #B7F238);
	color: #05070C;
}

.contact-form {
	background: rgba(10, 16, 32, .82);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #A855F7;
	background: rgba(168, 85, 247, .05);
	box-shadow: 0 0 0 3px rgba(168, 85, 247, .12);
}

.contact-form .btn-primary {
	background: linear-gradient(135deg, #A855F7, #B56CFF 48%, #B7F238);
	color: #05070C;
}

.footer-col a:hover {
	color: #B7F238;
}

::selection {
	background: #A855F7;
	color: #fff;
}

/* =========================================================
   ================  RESPONSIVE OVERHAUL  =================
   Added to make the whole site properly responsive across
   desktop, laptop, tablet and mobile screens.
   ========================================================= */

/* ---------- Global safety ---------- */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

img,
video,
svg {
	max-width: 100%;
	height: auto;
}

.background-video {
	height: 100%;
}

/* ---------- Large desktop / laptop (<=1200px) ---------- */
@media (max-width: 1200px) {
	.nav-links {
		margin-right: 40px;
	}

	.section-head {
		padding-left: 24px;
	}

	.heap {
		padding-left: 24px;
	}
}

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {
	.nav-links {
		gap: 20px;
		margin-right: 20px;
	}

	.nav-link {
		font-size: 13px;
	}

	.hero {
		padding-top: 130px;
	}

	.hero-content {
		max-width: 620px;
	}

	.hero-title,
	.hero-sub {
		margin-left: 0;
	}

	.hero-sub {
		font-size: 15px;
	}

	.hero-panel {
		max-width: 92%;
	}

	.panel-nav {
		gap: 14px;
		font-size: 12px;
	}

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

	.feature-text {
		margin-left: 0 !important;
	}

	.feature-text p {
		max-width: 100%;
	}

	.cta-inner {
		padding: 40px 32px 0;
	}

	.footer {
		padding: 60px 24px 30px;
	}
}

/* ---------- Small tablet / large phone (<=900px) ---------- */
@media (max-width: 900px) {
	.section-head {
		padding-left: 24px;
		margin-bottom: 40px;
	}

	.about-story {
		padding: 0 8px;
	}

	.charts-badge {
		max-width: 100%;
	}

	.tilt-card {
		width: 100%;
		max-width: 280px;
		transform: rotate(-4deg) translateX(0);
	}

	.rings {
		right: -100px;
		bottom: -100px;
	}
}

/* ---------- Mobile / tablet portrait (<=768px) ---------- */
@media (max-width: 768px) {
	.nav-inner {
		gap: 12px;
	}

	.logo-text {
		font-size: 16px;
	}

	.nav-right .btn-sm {
		display: none;
	}

	.hero {
		padding: 110px 16px 0;
	}

	.hero-content {
		max-width: 100%;
	}

	.badge {
		padding-right: 16px;
		max-width: 100%;
		flex-wrap: wrap;
		gap: 8px;
	}

	.hero-title {
		font-size: clamp(30px, 8vw, 40px);
		text-align: left;
	}

	.hero-sub {
		font-size: 14.5px;
	}

	.hero-actions {
		justify-content: flex-start;
		padding-right: 0 !important;
	}

	.hero-panel {
		max-width: 100%;
		border-radius: 14px 14px 0 0;
	}

	.panel-body {
		padding: 18px;
	}

	.panel-head-row {
		flex-wrap: wrap;
		gap: 10px;
	}

	.stat-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.stat-bottom strong {
		font-size: 20px;
	}

	.about-story h2,
	.section-head h2 {
		font-size: clamp(24px, 6vw, 32px);
	}

	.bento {
		padding: 0 16px 80px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.features {
		padding: 30px 16px 80px;
	}

	.feature-block {
		gap: 30px;
		margin-bottom: 40px;
	}

	.feature-visual {
		min-height: 300px;
		padding: 18px;
	}

	.work,
	.pricing,
	.blog,
	.testimonials {
		padding: 0 16px 80px;
	}

	.work-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.work-card {
		height: 240px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.blog-card {
		height: 280px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
	}

	.price-card {
		padding: 26px;
	}

	.cta {
		padding: 60px 16px 0;
	}

	.cta-inner {
		padding: 30px 20px 0;
		border-radius: 18px 18px 0 0;
		gap: 24px;
	}

	.footer {
		padding: 50px 16px 24px;
	}

	.footer-grid {
		gap: 26px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: 285px;
		max-width: calc(100% - 32px);
		margin-left: auto;
		margin-right: auto;
		gap: 8px;
		text-align: left;
	}

	.footer-bottom .bn,
	.footer-bottom .m,
	.footer-bottom .n {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: left;
		box-sizing: border-box;
	}

	.footer-bottom .n {
		line-height: 1.6;
	}

	/* touch devices: kill the custom cursor ring so it doesn't
	   sit frozen in a corner on phones/tablets */
	.cursor-wheel {
		display: none;
	}

	body,
	a,
	button {
		cursor: auto;
	}
}

/* ---------- Small mobile (<=480px) ---------- */
@media (max-width: 480px) {
	.nav {
		padding: 14px 16px;
	}

	.logo-text {
		font-size: 14px;
	}

	.hero {
		padding: 100px 14px 0;
	}

	.hero-title {
		font-size: clamp(26px, 9vw, 34px);
		line-height: 1.15;
	}

	.hero-sub {
		font-size: 14px;
	}

	.hero-actions {
		gap: 10px;
	}

	.btn {
		padding: 11px 16px;
		font-size: 13px;
	}

	.panel-body {
		padding: 14px;
	}

	.panel-head-row h3 {
		font-size: 16px;
	}

	.stat-row {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.stat-card {
		padding: 12px;
	}

	.stat-bottom strong {
		font-size: 18px;
	}

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

	.bento-card {
		min-height: auto;
		padding: 18px;
	}

	.bento-card p {
		max-width: 100%;
	}

	.section-head {
		padding-left: 16px;
	}

	.section-head p,
	.about-story p {
		font-size: 13.5px;
	}

	.feature-text h3 {
		font-size: 20px;
	}

	.price-card h3 {
		font-size: 28px;
	}

	.contact-form {
		padding: 22px 16px;
	}

	.contact-form label {
		font-size: 13px;
	}

	.to-top {
		width: 38px;
		height: 38px;
		right: 14px;
		bottom: 14px;
		font-size: 14px;
	}

	.socials a {
		width: 26px;
		height: 26px;
		font-size: 15px;
	}
}

/* ---------- Extra small phones (<=360px) ---------- */
@media (max-width: 360px) {
	.hero-title {
		font-size: 24px;
	}

	.badge-pill {
		font-size: 10px;
		padding: 5px 10px;
	}

	.badge-text {
		font-size: 9px;
	}

	.stat-row {
		grid-template-columns: 1fr;
	}
}

/* ==============================
   COMPANY STATS SECTION
============================== */
.stats-section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 10px;
	box-sizing: border-box;
}

.stat-box {
	width: 100%;
	box-sizing: border-box;
}

.stat-box {
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: space-around;

	padding: 18px 10px;

	box-sizing: border-box;

	background: rgba(10, 15, 30, 0.75);

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;

	box-shadow:
		0 0 25px rgba(0, 0, 0, 0.35),
		inset 0 0 20px rgba(255, 255, 255, 0.02);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}


/* ==============================
   INDIVIDUAL STAT
============================== */

.stat-item {
	flex: 1;
	min-width: 0;

	text-align: center;

	padding: 5px 10px;

	box-sizing: border-box;
}


/* ==============================
   NUMBER
============================== */

.stat-item h2 {
	margin: 0;

	font-family: Arial, Helvetica, sans-serif;

	font-size: 27px;
	font-weight: 700;

	line-height: 1.2;

	color: #f5f7ff;

	letter-spacing: -0.5px;
}


/* ==============================
   DESCRIPTION
============================== */

.stat-item p {
	margin: 6px 0 0;

	font-family: Arial, Helvetica, sans-serif;

	font-size: 10px;
	font-weight: 500;

	color: #9ca3b5;

	letter-spacing: 0.2px;

	white-space: nowrap;
}


/* ==============================
   DIVIDER
============================== */

.stat-divider {
	width: 1px;
	height: 42px;

	flex-shrink: 0;

	background: rgba(255, 255, 255, 0.12);
}


/* ==============================
   TABLET
============================== */

@media (max-width: 768px) {

	.stats-section {
		width: 100%;
		padding: 30px 15px;
	}

	.stat-box {
		display: grid;

		grid-template-columns: repeat(2, 1fr);

		gap: 20px;

		padding: 25px 15px;
	}

	.stat-divider {
		display: none;
	}

	.stat-item h2 {
		font-size: 24px;
	}

	.stat-item p {
		font-size: 9px;
	}
}


/* ==============================
   MOBILE
============================== */

@media (max-width: 480px) {

	.stats-section {
		width: 100%;

		padding: 25px 10px;

		box-sizing: border-box;
	}

	.stat-box {
		width: 100%;

		grid-template-columns: repeat(2, 1fr);

		gap: 15px;

		padding: 20px 8px;

		border-radius: 10px;
	}

	.stat-item {
		padding: 5px 2px;
	}

	.stat-item h2 {
		font-size: 20px;
	}

	.stat-item p {
		font-size: 8px;

		letter-spacing: 0;

		white-space: normal;
	}
}


/* ==============================
   VERY SMALL MOBILE
============================== */

@media (max-width: 360px) {

	.stats-section {
		padding: 20px 7px;
	}

	.stat-box {
		gap: 12px;

		padding: 18px 5px;
	}

	.stat-item h2 {
		font-size: 18px;
	}

	.stat-item p {
		font-size: 7px;
	}
}

.systems-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.systems-list li {
	position: relative;
	min-height: 90px;
	padding: 14px 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.system-icon {
	font-size: 27px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.systems-list li div {
	display: flex;
	flex-direction: column;
}

.systems-list li strong {
	font-size: 11px;
	color: #fff;
}

.systems-list li small {
	font-size: 9px;
	color: #8cff4d;
	margin-top: 3px;
}

.systems-list li>a {
	position: absolute;
	top: 8px;
	right: 9px;
	font-size: 8px;
	color: #8cff4d;
}

.whatsapp {
	color: #25d366;
}

.gmail {
	color: #ea4335;
}

.slack {
	color: #36c5f0;
}

.sheets {
	color: #34a853;
}

.crm {
	color: #9b5cff;
}

.openai {
	color: #ffffff;
}

.success-rate {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 180px;
	gap: 12px;
}

.success-ring {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: conic-gradient(#9b5cff 0deg,
			#9b5cff 145deg,
			#b8ff3d 330deg,
			#b8ff3d 354deg,
			rgba(255, 255, 255, 0.08) 354deg,
			rgba(255, 255, 255, 0.08) 360deg);
	position: relative;
	box-shadow: 0 0 25px rgba(155, 92, 255, 0.18);
}

.success-ring::before {
	content: "";
	position: absolute;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: #070b14;
}

.success-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.success-inner strong {
	font-size: 28px;
	line-height: 1;
	color: #fff;
}

.success-inner span {
	margin-top: 7px;
	font-size: 10px;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.65);
}

.success-change {
	font-size: 11px;
	color: #b8ff3d;
}

.success-ring {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;

	background: conic-gradient(#9b5cff 0deg,
			#b8ff3d 0deg,
			rgba(255, 255, 255, 0.08) 0deg);

	animation: ringFill 2.5s ease-out forwards;
}

.success-ring::before {
	content: "";
	position: absolute;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: #070b14;
}

.success-inner {
	position: relative;
	z-index: 2;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.success-inner strong {
	font-size: 28px;
	line-height: 1;
	color: #fff;
}

.success-inner span {
	margin-top: 7px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.65);
}

.success-change {
	font-size: 11px;
	color: #b8ff3d;
}


/* Ring animation */
@keyframes ringFill {
	from {
		background: conic-gradient(#9b5cff 0deg,
				#b8ff3d 0deg,
				rgba(255, 255, 255, 0.08) 0deg);
	}

	to {
		background: conic-gradient(#9b5cff 0deg,
				#b8ff3d 355deg,
				rgba(255, 255, 255, 0.08) 355deg);
	}
}

.automation-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 14px;

	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.035);
}

.lead-icon {
	color: #b8ff3d;
}

.support-icon {
	color: #a855f7;
}

.email-icon {
	color: #b8ff3d;
}

.data-icon {
	color: #a855f7;
}

.automation-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;


}

.automation-info {
	flex: 1;
}

.automation-info strong {
	display: block;
}

.automation-info small {
	display: block;
	margin-top: 3px;
	color: #8cff4d;
	font-size: 9px;
}

.activity-icon {
	width: 28px;
	height: 28px;
	min-width: 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 8px;

	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);

	font-size: 12px;
}

.lead-icon {
	color: #b8ff3d;
}

.email-icon {
	color: #a855f7;
}

.sheets-icon {
	color: #b8ff3d;
}

.support-icon {
	color: #a855f7;
}

.live-activity li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.live-activity li>div {
	flex: 1;
}

.live-activity small {
	display: block;
	margin-top: 3px;
	font-size: 9px;
	opacity: 0.55;
}

.system-logo {
	width: 42px;
	height: 42px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 8px;
}

.system-logo img {
	width: 38px;
	height: 38px;
	object-fit: contain;

	display: block;
}

.systems-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.systems-list li {
	position: relative;

	min-height: 90px;
	padding: 14px 10px;

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;
}

.systems-list li div {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.systems-list li strong {
	font-size: 11px;
	color: #fff;
}

.systems-list li small {
	font-size: 9px;
	color: #8cff4d;
	margin-top: 3px;
}

.systems-list li>a {
	position: absolute;
	top: 8px;
	right: 9px;

	font-size: 8px;
	color: #8cff4d;
}

@media (max-width: 600px) {

	.footer-content {
		width: 280px;
		max-width: calc(100% - 30px);
		margin: 0 auto;
		text-align: left;
	}

	.footer-content p {
		width: 100%;
		text-align: left;
	}

	.footer-services {
		line-height: 1.6;
	}
}


/* =====================================================
   INSIGHTS — WORKING BACKGROUND VISUALS
===================================================== */

.blog-card {
	isolation: isolate;
}


/* BACKGROUND IMAGE */

.blog-bg-image {
	position: absolute;

	inset: 0;

	z-index: -3;

	overflow: hidden;
}


.blog-bg-image img {
	width: 365px;
	height: 300px;

	display: block;

	object-fit: cover;

	object-position: center;

	opacity: 0.55;

	filter:
		saturate(0.9) contrast(1.05);

	transition:
		transform 0.8s cubic-bezier(0.16, 0.8, 0.24, 1),
		opacity 0.5s ease,
		filter 0.5s ease;
}


/* DARK OVERLAY */

.blog-image-overlay {
	position: absolute;

	inset: 0;

	z-index: -2;

	background:
		linear-gradient(180deg,
			rgba(5, 7, 15, 0.18) 0%,
			rgba(5, 7, 15, 0.25) 30%,
			rgba(5, 7, 15, 0.92) 100%);
}


/* HOVER IMAGE */

.blog-card:hover .blog-bg-image img {
	transform: scale(1.08);

	opacity: 0.72;

	filter:
		saturate(1.15) contrast(1.1);
}


/* =====================================================
   DIFFERENT COLOR TREATMENT
===================================================== */


/* AI AUTOMATION */

.bc1 .blog-image-overlay {
	background:
		linear-gradient(180deg,
			rgba(88, 28, 135, 0.20),
			rgba(5, 7, 15, 0.94));
}


/* N8N WORKFLOW */

.bc2 .blog-image-overlay {
	background:
		linear-gradient(180deg,
			rgba(30, 64, 175, 0.18),
			rgba(5, 7, 15, 0.94));
}


/* AI AGENTS */

.bc3 .blog-image-overlay {
	background:
		linear-gradient(180deg,
			rgba(22, 101, 52, 0.20),
			rgba(5, 7, 15, 0.94));
}


/* .work-card {
	position: relative;
	overflow: hidden;
}

.project-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.work-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85),
		rgba(0, 0, 0, 0.15)
	);
	z-index: 1;
	pointer-events: none;
}

.video-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.video-overlay .card-icon {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 3;
}

.video-overlay .blog-arrow {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
}

.video-overlay .blog-overlay {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 3;
} */






/* =========================================
   PROJECT VIDEO SYSTEM
   ========================================= */

.work-card {
	position: relative;
	overflow: hidden;
}

/* Video */
.project-video {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;

	display: block;

	z-index: 0;

	background: #111;
}

/* Dark layer over video */
.work-card::after {
	content: "";

	position: absolute;
	inset: 0;

	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.15) 0%,
			rgba(0, 0, 0, 0.25) 45%,
			rgba(0, 0, 0, 0.90) 100%);

	z-index: 1;

	pointer-events: none;
}

/* Content above video */
.video-overlay {
	position: absolute;
	inset: 0;

	z-index: 5;

	pointer-events: none;
}

/* =========================================
   PLAY DEMO BUTTON
   ========================================= */

.play-demo-btn {
	position: absolute;

	top: 50%;
	left: 50%;

	transform: translate(-50%, -50%);

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 9px;

	padding: 12px 20px;

	border: 1px solid rgba(255, 255, 255, 0.30);

	border-radius: 50px;

	background: rgba(0, 0, 0, 0.65);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	color: #fff;

	font-family: inherit;

	font-size: 14px;
	font-weight: 600;

	cursor: pointer;

	z-index: 20;

	pointer-events: auto;

	transition:
		transform 0.3s ease,
		background 0.3s ease,
		opacity 0.3s ease;
}

/* Play icon */
.play-demo-btn i {
	font-size: 12px;
}

/* Hover */
.play-demo-btn:hover {
	transform: translate(-50%, -50%) scale(1.06);

	background: rgba(0, 0, 0, 0.85);
}

/* Hide after clicking */
.play-demo-btn.playing {
	opacity: 1;
	pointer-events: auto;
}

/* =========================================
   CARD ICON
   ========================================= */

.video-overlay .card-icon {
	position: absolute;

	top: 20px;
	left: 20px;

	z-index: 10;
}

/* =========================================
   ARROW
   ========================================= */

.video-overlay .blog-arrow {
	position: absolute;

	top: 20px;
	right: 20px;

	z-index: 10;
}

/* =========================================
   PROJECT TEXT
   ========================================= */

.video-overlay .blog-overlay {
	position: absolute;

	left: 20px;
	right: 20px;
	bottom: 20px;

	z-index: 10;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

	.play-demo-btn {
		padding: 10px 16px;
		font-size: 13px;
	}

	.video-overlay .blog-overlay {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.video-overlay .card-icon {
		top: 16px;
		left: 16px;
	}

	.video-overlay .blog-arrow {
		top: 16px;
		right: 16px;
	}
}
/* =========================================
   PROJECT CARD HOVER ANIMATION
   ========================================= */

.work-card {
	position: relative;
	overflow: hidden;
	transform: translateY(0) scale(1);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

/* Card lift */
.work-card:hover {
	transform: translateY(-8px) scale(1.015);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Video zoom */
.project-video {
	transition: transform 0.7s ease;
}

.work-card:hover .project-video {
	transform: scale(1.08);
}

/* Dark overlay animation */
.work-card::after {
	transition: background 0.4s ease;
}

.work-card:hover::after {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.10) 0%,
		rgba(0, 0, 0, 0.30) 45%,
		rgba(0, 0, 0, 0.92) 100%
	);
}

/* Play button animation */
.play-demo-btn {
	transition:
		transform 0.3s ease,
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.work-card:hover .play-demo-btn {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Play button hover */
.play-demo-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
}

/* Project title animation */
.video-overlay .blog-overlay {
	transition: transform 0.4s ease;
}

.work-card:hover .blog-overlay {
	transform: translateY(-4px);
}

/* Icon animation */
.video-overlay .card-icon {
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.work-card:hover .card-icon {
	transform: translateY(-3px) scale(1.08);
}

/* Arrow animation */
.video-overlay .blog-arrow {
	transition: transform 0.4s ease;
}

.work-card:hover .blog-arrow {
	transform: translate(4px, -4px);
}









.work-card {
	position: relative;
	overflow: hidden;

	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;

	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	transition: all 0.4s ease;
}

/* Glass hover */
.work-card:hover {
	transform: translateY(-8px) scale(1.015);

	border-color: rgba(255, 255, 255, 0.3);

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.4),
		0 0 25px rgba(255, 255, 255, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
