Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --text-color: #1f2937;
+ --bg-color: #ffffff;
+ --accent-color: #4f46e5;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .cta-button {
+ background: var(--primary-color);
+ color: white !important;
+ padding: 0.5rem 1rem;
+ border-radius: 0.5rem;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--accent-color);
+ }
+
+ main {
+ padding-top: 4rem;
+ }
+
+ .hero {
+ min-height: 90vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, #f0f4ff, #e5e7ff);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ margin-bottom: 2rem;
+ }
+
+ .primary-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 0.5rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s ease, background-color 0.3s ease;
+ }
+
+ .primary-button:hover {
+ background: var(--accent-color);
+ transform: translateY(-2px);
+ }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ color: var(--primary-color);
+ }
+
+ .steps {
+ display: flex;
+ justify-content: space-around;
+ max-width: 1200px;
+ margin: 0 auto;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .step {
+ text-align: center;
+ flex: 1;
+ min-width: 250px;
+ }
+
+ .step-number {
+ width: 3rem;
+ height: 3rem;
+ background: var(--primary-color);
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 1rem;
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .demo-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ aspect-ratio: 16/9;
+ background: #f1f5f9;
+ border-radius: 1rem;
+ overflow: hidden;
+ }
+
+ .contact {
+ background: linear-gradient(135deg, #f0f4ff, #e5e7ff);
+ text-align: center;
+ }
+
+ form {
+ max-width: 500px;
+ margin: 0 auto;
+ display: flex;
+ gap: 1rem;
+ }
+
+ input[type="email"] {
+ flex: 1;
+ padding: 1rem;
+ border: 2px solid transparent;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ transition: border-color 0.3s ease;
+ }
+
+ input[type="email"]:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ opacity: 0.8;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ form {
+ flex-direction: column;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-links a {
+ margin: 0 1rem;
+ }
+ }