Changed around line 1
+ :root {
+ --primary-color: #6366f1;
+ --secondary-color: #818cf8;
+ --text-color: #1f2937;
+ --background-color: #ffffff;
+ --accent-color: #c7d2fe;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -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.95);
+ backdrop-filter: blur(10px);
+ z-index: 100;
+ 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: bold;
+ 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;
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 6rem 2rem 2rem;
+ background: linear-gradient(135deg, #f8fafc, #f1f5f9);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ max-width: 600px;
+ z-index: 1;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-image {
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 50%;
+ height: 100%;
+ }
+
+ .floating-device {
+ position: absolute;
+ width: 300px;
+ height: 600px;
+ background: var(--background-color);
+ border-radius: 2rem;
+ box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .floating-circles {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ opacity: 0.5;
+ }
+
+ .floating-circles::before,
+ .floating-circles::after {
+ content: '';
+ position: absolute;
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ background: var(--accent-color);
+ animation: pulse 4s ease-in-out infinite;
+ }
+
+ .floating-circles::after {
+ right: 0;
+ animation-delay: -2s;
+ }
+
+ .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;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .features {
+ padding: 6rem 2rem;
+ background: var(--background-color);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 3rem auto 0;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 1rem;
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .how-it-works {
+ padding: 6rem 2rem;
+ background: linear-gradient(135deg, #f8fafc, #f1f5f9);
+ }
+
+ .steps {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 3rem auto 0;
+ }
+
+ .step {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .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;
+ }
+
+ .contact {
+ padding: 6rem 2rem;
+ background: var(--background-color);
+ }
+
+ .contact-card {
+ max-width: 600px;
+ margin: 0 auto;
+ text-align: center;
+ padding: 3rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ form {
+ display: flex;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ input[type="email"] {
+ flex: 1;
+ padding: 1rem;
+ border: 2px solid #e5e7eb;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section a {
+ display: block;
+ color: white;
+ text-decoration: none;
+ margin-top: 0.5rem;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @keyframes pulse {
+ 0%, 100% { transform: scale(1); opacity: 0.5; }
+ 50% { transform: scale(1.1); opacity: 0.3; }
+ }
+
+ @media (max-width: 768px) {
+ .hero {
+ text-align: center;
+ padding-top: 8rem;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-image {
+ display: none;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ form {
+ flex-direction: column;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }