
      
    


      
     


      {} *{} 
     


      #IE-warning {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: white;
      }
      .IE-warning-message {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
      }
    



 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background-color: #f8f9fa; } /* NAVIGATION */ nav { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 1rem 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } nav .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; } nav .logo { color: white; font-size: 1.5rem; font-weight: bold; text-decoration: none; } nav .nav-links { display: flex; gap: 2rem; list-style: none; } nav .nav-links a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.3s; } nav .nav-links a:hover { opacity: 0.8; } /* CONTAINER */ .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* HERO SECTION */ .hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 80px 0; text-align: center; } .hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.2; font-weight: 700; } .hero .sub-headline { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.95; max-width: 800px; margin-left: auto; margin-right: auto; } .hero .problem-statement { font-size: 1.1rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; } .cta-button { display: inline-block; background: #ff6b6b; color: white; padding: 18px 45px; font-size: 1.1rem; font-weight: bold; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; border: 2px solid #ff6b6b; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); } .cta-button:hover { background: white; color: #ff6b6b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4); } /* FEATURES SECTION */ .features { padding: 80px 0; background: white; } .features h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background: #f8f9fa; padding: 2rem; border-radius: 10px; text-align: center; transition: all 0.3s ease; border: 2px solid transparent; } .feature-card:hover { border-color: #667eea; box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1); transform: translateY(-5px); } .feature-card .icon { font-size: 3rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #667eea; } .feature-card p { color: #666; line-height: 1.8; } /* BENEFITS TABLE */ .benefits-section { padding: 80px 0; background: #f8f9fa; } .benefits-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #333; } .benefits-table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); } .benefits-table th { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 1.5rem; text-align: left; font-weight: 600; } .benefits-table td { padding: 1.5rem; border-bottom: 1px solid #eee; } .benefits-table tr:last-child td { border-bottom: none; } .benefits-table tr:hover { background: #f8f9fa; } /* SOCIAL PROOF SECTION */ .social-proof { padding: 80px 0; background: white; } .social-proof h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #333; } .urgency-box { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%); color: white; padding: 2rem; border-radius: 10px; text-align: center; margin-bottom: 3rem; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2); } .urgency-box h3 { font-size: 1.8rem; margin-bottom: 1rem; } .urgency-box p { font-size: 1.1rem; opacity: 0.95; } .testimonial { background: #f8f9fa; padding: 2rem; border-radius: 10px; border-left: 4px solid #667eea; margin-bottom: 2rem; } .testimonial-text { font-style: italic; color: #666; margin-bottom: 1rem; font-size: 1.1rem; } .testimonial-author { color: #667eea; font-weight: 600; } /* FINAL CTA SECTION */ .final-cta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 80px 0; text-align: center; } .final-cta h2 { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.3; } .final-cta p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.95; } .final-cta .cta-button { background: #ff6b6b; border-color: #ff6b6b; font-size: 1.2rem; padding: 20px 50px; } /* FOOTER */ footer { background: #333; color: white; text-align: center; padding: 2rem 0; font-size: 0.9rem; } footer p { margin-bottom: 0.5rem; } /* RESPONSIVE */ @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero .sub-headline { font-size: 1.2rem; } nav .nav-links { gap: 1rem; font-size: 0.9rem; } .features h2, .benefits-section h2, .social-proof h2, .final-cta h2 { font-size: 1.8rem; } .benefits-table { font-size: 0.9rem; } .benefits-table th, .benefits-table td { padding: 1rem; } .cta-button { padding: 15px 35px; font-size: 1rem; } } /* ANIMATIONS */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .hero, .features, .benefits-section, .social-proof, .final-cta { animation: fadeInUp 0.8s ease-out; } /* BADGE */ .badge { display: inline-block; background: #ff6b6b; color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; } 

