Changed around line 1
+ :root {
+ --primary: #007AFF;
+ --secondary: #5856D6;
+ --dark: #1D1D1F;
+ --light: #F5F5F7;
+ --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ }
+
+ body {
+ background: var(--light);
+ color: var(--dark);
+ line-height: 1.6;
+ }
+
+ .nav-header {
+ backdrop-filter: blur(10px);
+ background: rgba(255, 255, 255, 0.8);
+ position: fixed;
+ width: 100%;
+ z-index: 100;
+ padding: 1rem;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ 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);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: var(--gradient);
+ color: white;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .primary-btn {
+ background: white;
+ color: var(--primary);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .primary-btn:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ }
+
+ .features-grid, .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card, .stat-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover, .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stat-number {
+ font-size: 3rem;
+ font-weight: 700;
+ color: var(--primary);
+ display: block;
+ }
+
+ .demo-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input {
+ padding: 1rem;
+ border: 2px solid #ddd;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ input:focus {
+ border-color: var(--primary);
+ outline: none;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .features-grid, .stats-grid {
+ grid-template-columns: 1fr;
+ }
+ }