 {} *{} {} #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; } :root { --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); --warning-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); } body { font-family: 'Inter', sans-serif; line-height: 1.6; } .hero-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } .card-hover { transition: all 0.3s ease; } .card-hover:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); } .pulse-animation { animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .fade-in { opacity: 0; transform: translateY(30px); animation: fadeIn 0.8s ease forwards; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } .gradient-text { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .btn-primary { background: var(--primary-gradient); transition: all 0.3s ease; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4); } .btn-success { background: var(--success-gradient); } .btn-success:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(17, 153, 142, 0.4); } .star-rating { color: #fbbf24; text-shadow: 0 1px 2px rgba(0,0,0,0.1); } .trust-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); } .comparison-card { position: relative; overflow: hidden; } .comparison-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.6s ease; } .comparison-card:hover::before { transform: translateX(100%); } .step-connector::after { content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 40px; height: 2px; background: linear-gradient(90deg, #667eea, #764ba2); } .step-connector:last-child::after { display: none; } @media (max-width: 768px) { .step-connector::after { display: none; } } .floating-cta { position: fixed; bottom: 20px; right: 20px; 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); } }
