Changed around line 1
+ :root {
+ --charcoal: #2c3e50;
+ --electric-blue: #2980b9;
+ --light-gray: #ecf0f1;
+ --white: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--charcoal);
+ }
+
+ /* Navigation */
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ background: var(--white);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ color: var(--electric-blue);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--charcoal);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--electric-blue);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 0 5%;
+ background: linear-gradient(135deg, var(--charcoal) 0%, #34495e 100%);
+ color: var(--white);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ width: 50%;
+ z-index: 2;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ }
+
+ .hero-animation {
+ position: absolute;
+ right: 0;
+ width: 50%;
+ height: 100%;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 5%;
+ background: var(--white);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 10px;
+ background: var(--light-gray);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ /* Buttons */
+ .primary-button, .demo-button {
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 5px;
+ background: var(--electric-blue);
+ color: var(--white);
+ font-weight: 600;
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover, .demo-button:hover {
+ transform: scale(1.05);
+ }
+
+ /* Animations */
+ @keyframes pulse {
+ 0% { transform: scale(1); opacity: 0.5; }
+ 50% { transform: scale(1.2); opacity: 0.8; }
+ 100% { transform: scale(1); opacity: 0.5; }
+ }
+
+ .pulse-circle {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ background: var(--electric-blue);
+ animation: pulse 2s infinite;
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .hero-content {
+ width: 100%;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .hero-animation {
+ display: none;
+ }
+ }