 {} *{} #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: #0072C6; --primary-dark: #005ea3; --secondary: #FF9900; --secondary-dark: #e68a00; --success: #28a745; --danger: #dc3545; --light: #f8f9fa; --dark: #343a40; --gray: #6c757d; --white: #ffffff; --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); --border-radius: 8px; --transition: all 0.3s ease; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--dark); background-color: #f5f7fa; padding: 0; margin: 0; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background-color: var(--primary); color: var(--white); padding: 20px 0; text-align: center; } header h1 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 700; } header p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; font-weight: 300; } .quiz-container { background-color: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); margin: 40px auto; max-width: 800px; overflow: hidden; } .progress-container { padding: 15px 20px; background-color: #f0f4f8; } .progress-bar { height: 8px; background-color: #e0e0e0; border-radius: 4px; overflow: hidden; } .progress { height: 100%; background-color: var(--primary); width: 0%; transition: width 0.3s ease; } .step-indicator { display: flex; justify-content: space-between; margin-top: 10px; color: var(--gray); font-size: 0.85rem; } .quiz-content { padding: 30px; } .quiz-step { display: none; } .quiz-step.active { display: block; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .question { margin-bottom: 25px; } .question h2 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); } .question p { color: var(--gray); margin-bottom: 20px; } .options { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 30px; } .option { background-color: #f8f9fa; border: 2px solid #e9ecef; border-radius: var(--border-radius); padding: 15px; cursor: pointer; transition: var(--transition); position: relative; } .option:hover { border-color: var(--primary); background-color: #f0f7ff; } .option.selected { border-color: var(--primary); background-color: #e6f2ff; } .option.selected::after { content: "✓"; position: absolute; top: 10px; right: 10px; color: var(--primary); font-weight: bold; } .option h3 { font-size: 1.1rem; margin-bottom: 5px; } .option p { font-size: 0.9rem; color: var(--gray); } .input-field { margin-bottom: 20px; } .input-field label { display: block; margin-bottom: 8px; font-weight: 500; } .input-field input { width: 100%; padding: 12px 15px; border: 2px solid #e9ecef; border-radius: var(--border-radius); font-size: 1rem; transition: var(--transition); } .input-field input:focus { outline: none; border-color: var(--primary); } .buttons { display: flex; justify-content: space-between; margin-top: 20px; } .btn { padding: 12px 25px; border: none; border-radius: var(--border-radius); font-size: 1rem; font-weight: 500; cursor: pointer; transition: var(--transition); } .btn-prev { background-color: #e9ecef; color: var(--dark); } .btn-prev:hover { background-color: #dee2e6; } .btn-next { background-color: var(--primary); color: var(--white); } .btn-next:hover { background-color: var(--primary-dark); } .btn-submit { background-color: var(--secondary); color: var(--white); } .btn-submit:hover { background-color: var(--secondary-dark); } .results { display: none; animation: fadeIn 0.5s ease; } .results.active { display: block; } .package-recommendation { background-color: #f0f7ff; border-radius: var(--border-radius); padding: 25px; margin-bottom: 30px; border-left: 5px solid var(--primary); } .package-recommendation h2 { color: var(--primary); margin-bottom: 15px; font-size: 1.8rem; } .package-recommendation .price { font-size: 2rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 15px; } .package-recommendation .discount { display: inline-block; background-color: var(--secondary); color: var(--white); padding: 5px 10px; border-radius: 20px; font-size: 0.9rem; margin-left: 10px; font-weight: 500; } .benefits { margin-bottom: 25px; } .benefit-item { display: flex; align-items: flex-start; margin-bottom: 10px; } .benefit-item svg { flex-shrink: 0; margin-right: 10px; color: var(--success); } .roi-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; } .metric { background-color: var(--white); border-radius: var(--border-radius); padding: 20px; box-shadow: var(--shadow); text-align: center; } .metric h3 { font-size: 1rem; color: var(--gray); margin-bottom: 10px; } .metric .value { font-size: 1.8rem; font-weight: 700; color: var(--primary); } .cta-container { text-align: center; margin: 40px 0 20px; } .btn-cta { background-color: var(--secondary); color: var(--white); padding: 15px 30px; font-size: 1.2rem; border-radius: var(--border-radius); text-decoration: none; display: inline-block; font-weight: 600; transition: var(--transition); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .btn-cta:hover { background-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); } .testimonials { margin-top: 50px; padding: 30px 0; background-color: #f8f9fa; } .testimonials h2 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; color: var(--primary); } .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .testimonial { background-color: var(--white); border-radius: var(--border-radius); padding: 25px; box-shadow: var(--shadow); } .testimonial p { font-style: italic; margin-bottom: 15px; } .testimonial-author { font-weight: 600; color: var(--primary); } .testimonial-company { font-size: 0.9rem; color: var(--gray); } footer { background-color: var(--dark); color: var(--light); padding: 30px 0; text-align: center; margin-top: 50px; } footer p { margin-bottom: 10px; } footer a { color: var(--secondary); text-decoration: none; } footer a:hover { text-decoration: underline; } /* Responsive adjustments */ @media (max-width: 768px) { header h1 { font-size: 2rem; } header p { font-size: 1rem; } .quiz-content { padding: 20px; } .options { grid-template-columns: 1fr; } .roi-metrics { grid-template-columns: 1fr; } .buttons { flex-direction: column; gap: 10px; } .btn { width: 100%; } .btn-prev { order: 2; } .btn-next, .btn-submit { order: 1; } } /* Accessibility improvements */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } /* Focus styles for keyboard navigation */ .option:focus-visible, .btn:focus-visible, .btn-cta:focus-visible, input:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
