* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Microsoft JhengHei', 'Noto Sans TC', sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 20px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); position: sticky; top: 0; z-index: 100; } header h1 { color: #2c3e50; font-size: 2.5rem; margin-bottom: 10px; text-align: center; } header h1 i { color: #25d366; margin-right: 10px; } .tagline { text-align: center; font-size: 1.2rem; color: #7f8c8d; margin-bottom: 20px; } .cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; } .whatsapp-btn { background: linear-gradient(45deg, #25d366, #128c7e); color: white; text-decoration: none; padding: 12px 24px; border-radius: 50px; font-weight: bold; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); } .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); } .whatsapp-btn.primary { font-size: 1.2rem; padding: 15px 30px; } .whatsapp-btn.large { font-size: 1.3rem; padding: 18px 36px; } .whatsapp-btn.pulse { animation: pulse 2s infinite; } .call-btn { background: linear-gradient(45deg, #3498db, #2980b9); color: white; text-decoration: none; padding: 12px 24px; border-radius: 50px; font-weight: bold; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); } .call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4); } .hero { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 60px 0; text-align: center; color: white; margin: 20px 0; border-radius: 20px; } .hero h2 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); } .hero p { font-size: 1.3rem; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .all-plans { margin: 40px 0; } .all-plans h2 { text-align: center; color: white; margin-bottom: 20px; font-size: 2.5rem; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); } .plans-count { text-align: center; color: white; margin-bottom: 30px; font-size: 1.2rem; } .plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; margin-bottom: 40px; } .plan-card { background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 30px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; position: relative; overflow: hidden; } .plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); } .plan-card.featured { border: 3px solid #f39c12; } .plan-badge { position: absolute; top: 15px; right: 15px; background: #f39c12; color: white; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; } .plan-card h3 { color: #2c3e50; font-size: 1.5rem; margin-bottom: 15px; } .plan-provider { color: #7f8c8d; font-size: 1rem; margin-bottom: 10px; } .plan-speed { color: #3498db; font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; } .price { font-size: 2.5rem; font-weight: bold; color: #e74c3c; margin-bottom: 10px; } .price span { font-size: 1rem; color: #7f8c8d; } .original-price { text-decoration: line-through; color: #bdc3c7; margin-bottom: 5px; } .savings { background: #27ae60; color: white; padding: 5px 15px; border-radius: 15px; display: inline-block; font-weight: bold; margin-bottom: 20px; } .features { list-style: none; margin-bottom: 20px; text-align: left; } .features li { padding: 5px 0; font-size: 0.9rem; color: #2c3e50; } .features i { color: #27ae60; margin-right: 8px; width: 15px; } .plan-actions { display: flex; flex-direction: column; gap: 10px; } .center-cta { text-align: center; margin-top: 40px; } .urgent-banner { background: linear-gradient(45deg, #e74c3c, #c0392b); color: white; text-align: center; padding: 40px 20px; border-radius: 20px; margin: 40px 0; position: relative; overflow: hidden; } .urgent-banner::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); animation: shine 3s infinite; } .urgent-content h2 { font-size: 2.5rem; margin-bottom: 15px; animation: bounce 2s infinite; } .urgent-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; } .whatsapp-btn.urgent, .call-btn.urgent { font-size: 1.2rem; padding: 15px 30px; animation: pulse 1.5s infinite; } footer { background: rgba(44, 62, 80, 0.95); backdrop-filter: blur(10px); color: white; padding: 40px 0 20px; margin-top: 60px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 20px; } .footer-content h3 { margin-bottom: 15px; color: #ecf0f1; } .quick-links a { display: block; color: #bdc3c7; text-decoration: none; margin-bottom: 8px; transition: color 0.3s; } .quick-links a:hover { color: #25d366; } .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #34495e; color: #bdc3c7; } .floating-whatsapp { position: fixed; bottom: 20px; right: 20px; z-index: 1000; } .floating-btn { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: linear-gradient(45deg, #25d366, #128c7e); color: white; border-radius: 50%; text-decoration: none; font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); animation: bounce 2s infinite; transition: all 0.3s ease; } .floating-btn:hover { transform: scale(1.1); } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } @keyframes shine { 0% { left: -100%; } 100% { left: 100%; } } @media (max-width: 768px) { header h1 { font-size: 2rem; } .hero h2 { font-size: 2rem; } .plans-grid { grid-template-columns: 1fr; } .urgent-buttons { flex-direction: column; align-items: center; } .cta-buttons { flex-direction: column; align-items: center; } }