 /* Landing Page Styles - Pure CSS */ * { 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; } .landing-page { min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #e73c7e 100%); color: white; } /* Navigation */ .landing-nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.2); z-index: 1000; } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 70px; } .nav-brand { display: flex; align-items: center; gap: 12px; } .brand-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; } .brand-icon svg { width: 24px; height: 24px; color: white; } .brand-text { font-size: 1.5rem; font-weight: 700; color: white; } .nav-actions { display: flex; gap: 12px; } .nav-button { padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; border: 1px solid transparent; } .nav-button-secondary { color: white; border-color: rgba(255, 255, 255, 0.3); } .nav-button-secondary:hover { background: rgba(255, 255, 255, 0.1); text-decoration: none; } .nav-button-primary { background: rgba(255, 255, 255, 0.2); color: white; border-color: rgba(255, 255, 255, 0.3); } .nav-button-primary:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-1px); text-decoration: none; } /* Hero Section */ .hero { padding: 120px 0 80px; } .hero-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .hero-title { font-size: 3.5rem; font-weight: 700; margin: 0 0 20px 0; line-height: 1.2; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); } .hero-subtitle { font-size: 1.5rem; margin: 0 0 15px 0; opacity: 0.9; } .hero-description { font-size: 1.1rem; margin: 0 0 30px 0; opacity: 0.8; line-height: 1.6; } .hero-actions { display: flex; gap: 15px; margin-bottom: 40px; } .hero-button { padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .hero-button-primary { background: rgba(255, 255, 255, 0.2); color: white; border: 2px solid rgba(255, 255, 255, 0.3); } .hero-button-primary:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); text-decoration: none; } .hero-button-secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); } .hero-button-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); text-decoration: none; } .hero-stats { display: flex; gap: 30px; } .stat { text-align: center; } .stat-number { font-size: 2rem; font-weight: 700; margin-bottom: 5px; } .stat-label { font-size: 0.9rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; } .hero-visual { display: flex; justify-content: center; align-items: center; } .phone-mockup { width: 280px; height: 560px; background: linear-gradient(145deg, #2d3748, #4a5568); border-radius: 30px; padding: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .phone-screen { width: 100%; height: 100%; background: #000; border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; } .video-preview { width: 90%; height: 70%; background: linear-gradient(45deg, #667eea, #764ba2); border-radius: 10px; display: flex; align-items: center; justify-content: center; } .video-placeholder { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .play-icon { width: 0; height: 0; border-left: 15px solid white; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 5px; } /* Features Section */ .features { padding: 80px 0; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); } .features-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .features-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 50px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .feature-card { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 30px; text-align: center; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; } .feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); } .feature-icon { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; } .feature-title { font-size: 1.3rem; font-weight: 600; margin: 0 0 15px 0; } .feature-description { font-size: 1rem; opacity: 0.9; margin: 0; line-height: 1.5; } /* CTA Section */ .cta { padding: 80px 0; text-align: center; } .cta-container { max-width: 800px; margin: 0 auto; padding: 0 20px; } .cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); } .cta-description { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; } .cta-actions { display: flex; gap: 20px; justify-content: center;flex-wrap: wrap; } .cta-button { padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; } .cta-button-primary { background: rgba(255, 255, 255, 0.2); color: white; border: 2px solid rgba(255, 255, 255, 0.3); } .cta-button-primary:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); text-decoration: none; } .cta-button-secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); } .cta-button-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); text-decoration: none; } /* Footer */ .footer { background: rgba(0, 0, 0, 0.2); padding: 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); } .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .footer-content { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; } .footer-description { font-size: 1rem; opacity: 0.8; margin: 0; } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); } .footer-bottom p { margin: 0; opacity: 0.7; font-size: 0.9rem; } /* Responsive Design */ @media (max-width: 768px) { .nav-container { padding: 0 15px; } .nav-actions { gap: 8px; } .nav-button { padding: 8px 16px; font-size: 0.9rem; } .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; } .hero-title { font-size: 2.5rem; } .hero-subtitle { font-size: 1.2rem; } .hero-actions { justify-content: center;flex-wrap: wrap; } .hero-stats { justify-content: center; } .phone-mockup { width: 240px; height: 480px; } .features-grid { grid-template-columns: 1fr; } .features-title, .cta-title { font-size: 2rem; } .cta-actions { flex-direction: column; align-items: center; } .cta-button { width: 250px; justify-content: center; } .footer-content { flex-direction: column; text-align: center; } } @media (max-width: 480px) { .hero { padding: 100px 0 60px; } .hero-title { font-size: 2rem; } .hero-subtitle { font-size: 1.1rem; } .hero-stats { flex-direction: column; gap: 20px; } .phone-mockup { width: 200px; height: 400px; } .features, .cta { padding: 60px 0; } .feature-card { padding: 25px; } } 