:root {
	--primary-color: #2b75da;
	--background-color: #f1f4f8;
	--text-color: #333;
	--white: #ffffff;
}

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

body {
	font-family: "Albert Sans", sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-cta {
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(43, 117, 218, 0.3);
}

.nav-cta::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
}

.nav-cta:hover::after {
	width: 200%;
	height: 200%;
}

/* Hero Section */
.hero {
	padding: 8rem 2rem 4rem;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4rem;
	min-height: 80vh;
}

.hero-content {
	flex: 1;
	transition: transform 0.3s ease;
}

.hero h1 {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dashboard-image {
	width: 100%;
	height: auto;
	max-width: 600px;
	filter: drop-shadow(0 10px 20px rgba(43, 117, 218, 0.1));
	transition: transform 0.3s ease;
}

.dashboard-image:hover {
	transform: translateY(-10px);
}

.cta-button {
	background-color: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 1rem 2rem;
	border-radius: 5px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(43, 117, 218, 0.3);
}

.cta-button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
}

.cta-button:hover::after {
	width: 200%;
	height: 200%;
}

/* Features Section */
.features {
	padding: 4rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-section {
	display: flex;
	align-items: center;
	gap: 4rem;
	margin-bottom: 6rem;
}

.feature-section.reverse {
	flex-direction: row-reverse;
}

.feature-image {
	flex: 1;
}

.feature-content {
	flex: 1;
	transition: transform 0.3s ease;
	opacity: 0;
}

.feature-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.feature-content p {
	color: #666;
	font-size: 1.1rem;
}

/* CTA Section */
.cta {
	padding: 6rem 2rem;
	background-color: var(--white);
	text-align: center;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	transition: transform 0.3s ease;
	opacity: 0;
}

.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.cta p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
}

.trust-elements {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-bottom: 2rem;
}

.rating span {
	color: #ffd700;
	font-size: 1.5rem;
}

/* Footer Section */
.footer {
	padding: 1rem 12rem;
	background-color: #2f2e2e;
	color: white;
}

.footer-copyright {
	text-align: center;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleUp {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* SVG Animations */
@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes pulse {
	0% {
		opacity: 0.3;
	}
	50% {
		opacity: 0.8;
	}
	100% {
		opacity: 0.3;
	}
}

@keyframes dash {
	to {
		stroke-dashoffset: -20;
	}
}

@keyframes moveParticle {
	0% {
		opacity: 0;
		transform: translateX(0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(200px);
	}
}

.laptop {
	animation: float 4s ease-in-out infinite;
}

.dashboard rect {
	animation: pulse 3s ease-in-out infinite;
}

.data-points circle {
	animation: pulse 2s ease-in-out infinite;
}

.smartphone {
	animation: float 4s ease-in-out infinite;
	animation-delay: 1s;
}

.field-agent {
	animation: float 4s ease-in-out infinite;
	animation-delay: 2s;
}

.connections path {
	stroke-dasharray: 5, 5;
	animation: dash 1s linear infinite;
}

/* Data particles animation */
.data-particles circle:nth-child(1) {
	animation: moveParticle 3s linear infinite;
}

.data-particles circle:nth-child(2) {
	animation: moveParticle 3s linear infinite reverse;
}

/* Add animation delay to dashboard circles */
.dashboard circle:nth-child(1) {
	--i: 1;
}
.dashboard circle:nth-child(2) {
	--i: 2;
}
.dashboard circle:nth-child(3) {
	--i: 3;
}
.dashboard circle:nth-child(4) {
	--i: 4;
}
.dashboard circle:nth-child(5) {
	--i: 5;
}
.dashboard circle:nth-child(6) {
	--i: 6;
}
.dashboard circle:nth-child(7) {
	--i: 7;
}
.dashboard circle:nth-child(8) {
	--i: 8;
}

/* Hover Effects */
.hero-content:hover,
.feature-content:hover,
.cta-content:hover {
	transform: translateY(-5px);
}

.cta-button:hover::after,
.nav-cta:hover::after {
	width: 200%;
	height: 200%;
}

/* Scroll Animation Classes */
.fade-in-up {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.slide-in-left {
	opacity: 0;
	animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
	opacity: 0;
	animation: slideInRight 0.6s ease forwards;
}

.scale-up {
	opacity: 0;
	animation: scaleUp 0.8s ease forwards;
}

/* Remove the general opacity: 0 for these elements since we're adding animation classes directly */
.hero-content,
.hero-image,
.feature-section > div,
.cta-content {
	opacity: 1;
}

/* Remove unused SVG animations */
.hero-image svg,
.laptop,
.dashboard rect,
.data-points circle,
.smartphone,
.field-agent,
.connections path,
.data-particles circle {
	animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero {
		flex-direction: column;
		text-align: center;
		padding-top: 6rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.feature-section {
		flex-direction: column;
		text-align: center;
	}

	.feature-section.reverse {
		flex-direction: column;
	}

	.trust-elements {
		flex-direction: column;
		gap: 2rem;
	}
}
