
      
    


      
     


      {} *{} /*endBaseStyles*/
     


      #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: 'Arial', sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { background: rgba(255, 255, 255, 0.95); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 24px; font-weight: bold; color: #4a5568; } .trust-badges { display: flex; gap: 15px; font-size: 12px; color: #666; } .badge { background: #e2e8f0; padding: 5px 10px; border-radius: 15px; } /* Hero Section */ .hero { padding: 60px 0; text-align: center; color: white; } .hero h1 { font-size: 3.5rem; font-weight: bold; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); line-height: 1.2; } .hero .subtitle { font-size: 1.5rem; margin-bottom: 30px; opacity: 0.9; } .hero .description { font-size: 1.2rem; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; } /* CTA Button */ .cta-button { display: inline-block; background: linear-gradient(45deg, #ff6b6b, #ee5a24); color: white; padding: 20px 40px; font-size: 1.3rem; font-weight: bold; text-decoration: none; border-radius: 50px; box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4); transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6); } .cta-button:active { transform: translateY(-1px); } /* Features Section */ .features { background: white; padding: 80px 0; } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 20px; color: #2d3748; } .section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; } .feature-card { text-align: center; padding: 40px 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; background: white; } .feature-card:hover { transform: translateY(-10px); } .feature-icon { width: 80px; height: 80px; background: linear-gradient(45deg, #667eea, #764ba2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: white; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #2d3748; } .feature-card p { color: #666; line-height: 1.6; } /* Benefits Section */ .benefits { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); padding: 80px 0; color: white; } .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; } .benefit-item { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 10px; backdrop-filter: blur(10px); } .benefit-icon { width: 50px; height: 50px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; font-size: 1.5rem; } /* Social Proof */ .social-proof { background: #f8f9fa; padding: 80px 0; text-align: center; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-top: 50px; } .stat-item { padding: 30px; } .stat-number { font-size: 3rem; font-weight: bold; color: #667eea; margin-bottom: 10px; } .stat-label { font-size: 1.1rem; color: #666; text-transform: uppercase; letter-spacing: 1px; } /* FAQ Section */ .faq { background: white; padding: 80px 0; } .faq-item { margin-bottom: 20px; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; } .faq-question { background: #f8f9fa; padding: 20px; font-weight: bold; cursor: pointer; transition: background 0.3s ease; } .faq-question:hover { background: #e9ecef; } .faq-answer { padding: 20px; display: none; border-top: 1px solid #e2e8f0; } .faq-answer.active { display: block; } /* Final CTA */ .final-cta { background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%); padding: 80px 0; text-align: center; color: white; } .urgency-text { background: #ff6b6b; color: white; padding: 10px 20px; border-radius: 25px; display: inline-block; margin-bottom: 30px; font-weight: bold; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } /* Footer */ .footer { background: #2d3748; color: white; padding: 40px 0; text-align: center; } /* Responsive Design */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero .subtitle { font-size: 1.2rem; } .hero .description { font-size: 1rem; } .cta-button { padding: 15px 30px; font-size: 1.1rem; } .features-grid { grid-template-columns: 1fr; } .section-title { font-size: 2rem; } } /* Floating Elements */ .floating-element { position: fixed; bottom: 20px; right: 20px; background: #ff6b6b; color: white; padding: 15px 25px; border-radius: 50px; box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4); z-index: 1000; animation: bounce 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } 

