/* Neuro CRM Homepage Styles */
:root {
	--color-1: #9E72C3;
	--color-2: #924DBF;
	--color-3: #7338A0;
	--color-4: #4A2574;
	--color-5: #0F0529;
	--gradient-1: linear-gradient(135deg, var(--color-2), var(--color-3));
	--gradient-2: linear-gradient(135deg, var(--color-3), var(--color-4));
	--gradient-hero: linear-gradient(180deg, var(--color-4) 0%, var(--color-5) 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--color-5);
	color: #ffffff;
	overflow-x: hidden;
}

/* Navbar */
.navbar {
	background: transparent;
	padding: 1.5rem 0;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(15, 5, 41, 0.95);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	box-shadow: 0 4px 20px rgba(146, 77, 191, 0.2);
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff !important;
}

.navbar-brand i {
	color: var(--color-2);
	margin-right: 0.5rem;
}

.navbar-brand span {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	transition: all 0.3s;
	padding: 0.5rem 1rem !important;
}

.nav-link:hover {
	color: var(--color-1) !important;
}

/* Hero Section */
.hero-section {
	position: relative;
	background: var(--gradient-hero);
	padding: 150px 0 100px;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(158, 114, 195, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(115, 56, 160, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.gradient-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	max-width: 500px;
}

.hero-cta .btn {
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.btn-primary-cta {
	background: var(--gradient-1);
	border: none;
	color: #fff;
	box-shadow: 0 8px 25px rgba(146, 77, 191, 0.4);
}

.btn-primary-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(146, 77, 191, 0.6);
	color: #fff;
}

.btn-outline-cta {
	background: transparent;
	border: 2px solid var(--color-1);
	color: #fff;
}

.btn-outline-cta:hover {
	background: var(--color-1);
	border-color: var(--color-1);
	color: #fff;
	transform: translateY(-3px);
}

.btn-outline-light-cta {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.btn-outline-light-cta:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: 700;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin: 0;
}

/* AI Brain Visual */
.hero-visual {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ai-brain-container {
	position: relative;
	width: 400px;
	height: 400px;
}

.brain-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	background: var(--gradient-1);
	border-radius: 50%;
	box-shadow: 
		0 0 60px rgba(146, 77, 191, 0.6),
		0 0 120px rgba(115, 56, 160, 0.4);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.1); }
}

.neural-network {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.node {
	position: absolute;
	width: 40px;
	height: 40px;
	background: var(--gradient-2);
	border-radius: 50%;
	box-shadow: 0 0 30px rgba(158, 114, 195, 0.5);
	animation: float 4s ease-in-out infinite;
}

.node-1 { top: 10%; left: 10%; animation-delay: 0s; }
.node-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.node-3 { top: 40%; left: 0%; animation-delay: 1s; }
.node-4 { top: 40%; right: 0%; animation-delay: 1.5s; }
.node-5 { bottom: 5%; left: 20%; animation-delay: 2s; }
.node-6 { bottom: 5%; right: 20%; animation-delay: 2.5s; }

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.connections {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.connection {
	stroke: var(--color-1);
	stroke-width: 2;
	opacity: 0.4;
	animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.8; }
}

.hero-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.hero-waves svg {
	width: 100%;
	height: 120px;
}

/* Features Section */
.features-section {
	padding: 100px 0;
	background: var(--color-5);
	position: relative;
}

.section-header {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
}

.feature-card {
	background: rgba(74, 37, 116, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(158, 114, 195, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-1);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: var(--color-1);
	box-shadow: 0 20px 50px rgba(146, 77, 191, 0.3);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-1);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 30px rgba(146, 77, 191, 0.3);
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.feature-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: rgba(158, 114, 195, 0.2);
	border: 1px solid var(--color-1);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--color-1);
}

/* Dashboard Preview Section */
.dashboard-section {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--color-5) 0%, var(--color-4) 100%);
}

.dashboard-mockup {
	position: relative;
	margin-top: 3rem;
}

.mockup-container {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(158, 114, 195, 0.3);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.mockup-header {
	background: rgba(15, 5, 41, 0.8);
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid rgba(158, 114, 195, 0.2);
}

.mockup-dots {
	display: flex;
	gap: 0.5rem;
}

.mockup-dots span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-1);
}

.mockup-title {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	flex: 1;
	text-align: center;
}

.mockup-content {
	padding: 2rem;
}

.dashboard-card {
	background: rgba(74, 37, 116, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(158, 114, 195, 0.2);
	border-radius: 15px;
	padding: 1.5rem;
	height: 100%;
}

.dashboard-card.tall {
	min-height: 250px;
}

.dashboard-card h5 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.dashboard-card h5 i {
	color: var(--color-1);
	margin-right: 0.5rem;
}

.card-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.card-value {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.card-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.5rem;
}

.card-trend {
	font-size: 0.85rem;
	font-weight: 600;
}

.card-trend.up {
	color: #28a745;
}

.card-trend i {
	margin-left: 0.25rem;
}

.pipeline-stages {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.stage {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: rgba(158, 114, 195, 0.1);
	border-radius: 10px;
	border-left: 4px solid var(--color-2);
}

.stage.success {
	border-left-color: #28a745;
}

.stage span {
	color: rgba(255, 255, 255, 0.7);
}

.stage strong {
	font-size: 1.25rem;
	color: #fff;
}

.ai-suggestions {
	background: linear-gradient(135deg, rgba(146, 77, 191, 0.2), rgba(115, 56, 160, 0.2));
}

.suggestion-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(15, 5, 41, 0.4);
	border-radius: 10px;
	margin-bottom: 1rem;
	border-left: 3px solid var(--color-1);
}

.suggestion-item:last-child {
	margin-bottom: 0;
}

.suggestion-item i {
	color: var(--color-1);
	font-size: 1.2rem;
}

.suggestion-item span {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-section {
	padding: 100px 0;
	background: var(--color-5);
}

.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.benefit-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.benefit-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: var(--gradient-1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 8px 20px rgba(146, 77, 191, 0.3);
}

.benefit-content h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.benefit-content p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

.benefits-visual {
	position: relative;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-box {
	background: rgba(74, 37, 116, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(158, 114, 195, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.stat-box:hover {
	transform: translateY(-10px);
	border-color: var(--color-1);
	box-shadow: 0 20px 50px rgba(146, 77, 191, 0.3);
}

.stat-box h3 {
	font-size: 3rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0.5rem;
}

.stat-box p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	margin: 0;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: var(--gradient-2);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 50%, rgba(158, 114, 195, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(115, 56, 160, 0.2) 0%, transparent 50%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

/* Footer */
.footer {
	background: var(--color-5);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(158, 114, 195, 0.1);
}

.footer-brand {
	margin-bottom: 2rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.footer-logo i {
	font-size: 2rem;
	color: var(--color-2);
}

.logo-text {
	font-size: 1.75rem;
	font-weight: 700;
	display: flex;
	align-items: baseline;
}

.logo-neuro {
	color: #ffffff;
}

.logo-crm {
	color: var(--color-1);
	margin-left: 0.25rem;
}

.footer-tagline {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	max-width: 300px;
}

.footer-heading {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 1.25rem;
	color: var(--color-1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.875rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--color-1);
	transform: translateX(5px);
}

.footer-divider {
	border: none;
	border-top: 1px solid rgba(158, 114, 195, 0.15);
	margin: 3rem 0 2rem;
	opacity: 0.5;
}

.footer-copyright {
	margin-top: 2rem;
}

.footer-copyright p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-visual {
		height: 400px;
		margin-top: 3rem;
	}
	
	.ai-brain-container {
		width: 300px;
		height: 300px;
	}
	
	.hero-stats {
		gap: 1.5rem;
	}
	
	.stat-item h3 {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.hero-section {
		padding: 120px 0 60px;
	}
	
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}
	
	.features-section,
	.dashboard-section,
	.benefits-section,
	.cta-section {
		padding: 60px 0;
	}
	
	.mockup-content {
		padding: 1rem;
	}
	
	.dashboard-card {
		padding: 1rem;
	}
	
	.footer {
		padding: 60px 0 30px;
	}
	
	.footer-logo {
		margin-bottom: 1rem;
	}
	
	.footer-logo i {
		font-size: 1.5rem;
	}
	
	.logo-text {
		font-size: 1.5rem;
	}
	
	.footer-tagline {
		max-width: 100%;
		font-size: 0.9rem;
	}
	
	.footer-heading {
		margin-top: 2rem;
		margin-bottom: 1rem;
	}
	
	.footer-divider {
		margin: 2rem 0 1.5rem;
	}
}

/* AOS Animation Library */
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

