.home { min-height: 100vh; } .hero { padding: 6rem 2rem; text-align: center; background: linear-gradient(135deg, #0055ff 0%, #0066ff 100%); color: white; } .hero-content { max-width: 800px; margin: 0 auto; } .hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; } .hero p { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.9; } .hero-buttons { display: flex; gap: 1rem; justify-content: center; } .features { padding: 5rem 2rem; background: #f8f9fa; } .features h2 { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; } .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .feature-card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .feature-card h3 { margin-bottom: 1rem; font-size: 1.5rem; } .comparison { padding: 5rem 2rem; } .comparison h2 { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; } .comparison-table { max-width: 800px; margin: 0 auto; overflow-x: auto; } .comparison-table table { width: 100%; border-collapse: collapse; } .comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #eee; } .comparison-table th { background: #f8f9fa; font-weight: 600; } .social-proof { padding: 5rem 2rem; background: #f8f9fa; text-align: center; } .social-proof h2 { margin-bottom: 3rem; font-size: 2.5rem; } .company-logos { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .company-logos img { height: 32px; opacity: 0.6; transition: opacity 0.2s; filter: grayscale(100%); } .company-logos img:hover { opacity: 1; filter: none; } .cta { padding: 5rem 2rem; text-align: center; background: linear-gradient(135deg, #0055ff 0%, #0066ff 100%); color: white; } .cta h2 { font-size: 2.5rem; margin-bottom: 1rem; } .cta p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; } .button { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 500; text-decoration: none; transition: all 0.2s; } .button.primary { background: white; color: #0055ff; } .button.primary:hover { background: #f8f9fa; transform: translateY(-1px); } .button.secondary { background: transparent; border: 2px solid white; color: white; } .button.secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); } @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.25rem; } .feature-grid { grid-template-columns: 1fr; } .company-logos { gap: 2rem; } .company-logos img { height: 24px; } }