Changed around line 1
+ :root {
+ --primary: #4A90E2;
+ --secondary: #6C63FF;
+ --dark: #2C3E50;
+ --light: #F5F6FA;
+ --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ .nav-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--dark);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .cta-button {
+ background: var(--gradient);
+ color: white;
+ padding: 0.8rem 1.5rem;
+ border-radius: 25px;
+ text-decoration: none;
+ transition: transform 0.3s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 6rem 2rem 2rem;
+ background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
+ }
+
+ .hero-content {
+ flex: 1;
+ max-width: 600px;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-image {
+ flex: 1;
+ position: relative;
+ height: 500px;
+ }
+
+ .floating-device {
+ position: absolute;
+ background: white;
+ border-radius: 20px;
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
+ animation: float 6s ease-in-out infinite;
+ }
+
+ .phone {
+ width: 150px;
+ height: 300px;
+ left: 20%;
+ top: 20%;
+ animation-delay: 0s;
+ }
+
+ .laptop {
+ width: 400px;
+ height: 250px;
+ right: 10%;
+ top: 30%;
+ animation-delay: 1s;
+ }
+
+ .tablet {
+ width: 200px;
+ height: 280px;
+ left: 40%;
+ top: 40%;
+ animation-delay: 2s;
+ }
+
+ @keyframes float {
+ 0% { transform: translateY(0px); }
+ 50% { transform: translateY(-20px); }
+ 100% { transform: translateY(0px); }
+ }
+
+ .features {
+ padding: 5rem 2rem;
+ background: white;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 15px;
+ background: white;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .how-it-works {
+ padding: 5rem 2rem;
+ background: var(--light);
+ }
+
+ .steps {
+ display: flex;
+ justify-content: space-around;
+ max-width: 1200px;
+ margin: 0 auto;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .step {
+ flex: 1;
+ min-width: 250px;
+ text-align: center;
+ }
+
+ .step-number {
+ width: 50px;
+ height: 50px;
+ border-radius: 50%;
+ background: var(--gradient);
+ color: white;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 1rem;
+ font-size: 1.5rem;
+ }
+
+ .contact {
+ padding: 5rem 2rem;
+ text-align: center;
+ background: white;
+ }
+
+ .contact-form {
+ max-width: 500px;
+ margin: 2rem auto;
+ display: flex;
+ gap: 1rem;
+ }
+
+ .contact-form input {
+ flex: 1;
+ padding: 0.8rem 1.5rem;
+ border: 2px solid #eee;
+ border-radius: 25px;
+ font-size: 1rem;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 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 {
+ color: white;
+ text-decoration: none;
+ display: block;
+ margin: 0.5rem 0;
+ opacity: 0.8;
+ transition: opacity 0.3s;
+ }
+
+ .footer-section a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-image {
+ height: 300px;
+ margin-top: 2rem;
+ }
+
+ .contact-form {
+ flex-direction: column;
+ }
+ }