Digital Marketing Strategy Finder @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); --secondary-gradient: linear-gradient(135deg, #059669 0%, #047857 100%); --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%); --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%); --glass-bg: rgba(255, 255, 255, 0.15); --glass-border: rgba(255, 255, 255, 0.2); --shadow-light: 0 8px 32px 0 rgba(37, 99, 235, 0.2); --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1); --shadow-color: 0 10px 30px rgba(37, 99, 235, 0.3); --text-primary: #000000; --text-secondary: #374151; --text-light: #6b7280; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif; line-height: 1.6; background: var(--primary-gradient); background-attachment: fixed; overflow-x: hidden; } /* Animated background */ body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%); animation: backgroundShift 15s ease-in-out infinite; z-index: -1; } @keyframes backgroundShift { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; transform: scale(1.1); } } .container { width: 100%; min-height: 100vh; position: relative; } .page { display: none; width: 100%; min-height: 100vh; padding: 24px; position: relative; } .page.active { display: flex; flex-direction: column; animation: pageSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); } @keyframes pageSlideIn { from { opacity: 0; transform: translateY(30px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } } /* Allow scrolling only on recommendation pages */ .page.recommendation-page { overflow-y: auto; min-height: 100vh; } .page.recommendation-page.active { display: block; } /* Glassmorphism elements */ .glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--shadow-light); } /* Start Page */ .start-page { justify-content: center; align-items: center; position: relative; } .start-content { text-align: center; max-width: 800px; position: relative; z-index: 2; } .floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; } .shape { position: absolute; background: var(--secondary-gradient); border-radius: 50%; opacity: 0.1; animation: floatShape 6s ease-in-out infinite; } .shape:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 10%; animation-delay: 0s; } .shape:nth-child(2) { width: 150px; height: 150px; top: 20%; right: 15%; animation-delay: 2s; } .shape:nth-child(3) { width: 80px; height: 80px; bottom: 20%; left: 20%; animation-delay: 4s; } @keyframes floatShape { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(180deg); } } .start-title { font-size: 4rem; font-weight: 800; color: white; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); letter-spacing: -0.02em; line-height: 1.1; animation: titleGlow 3s ease-in-out infinite; } @keyframes titleGlow { 0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); } 50% { text-shadow: 0 4px 30px rgba(255, 255, 255, 0.4); } } .start-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 48px; font-weight: 400; opacity: 0; animation: fadeInUp 0.8s ease-out 0.3s forwards; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .button-group { display: flex; flex-direction: column; gap: 20px; align-items: center; opacity: 0; animation: fadeInUp 0.8s ease-out 0.6s forwards; } .btn { background: var(--success-gradient); color: white; font-weight: 600; padding: 20px 40px; border-radius: 50px; border: none; font-size: 1.125rem; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: inline-flex; align-items: center; gap: 12px; box-shadow: var(--shadow-color); text-decoration: none; box-sizing: border-box; position: relative; overflow: hidden; min-height: 60px; } .btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; } .btn:hover::before { left: 100%; } .btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4); } .btn:active { transform: translateY(-1px) scale(1.02); } .btn-secondary-link { background: rgba(255, 255, 255, 0.1); color: white; font-weight: 500; padding: 14px 28px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; backdrop-filter: blur(10px); } .btn-secondary-link:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); } /* Question Page */ .question-page { background: transparent; } .progress-container { position: fixed; top: 0; left: 0; right: 0; height: 8px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); z-index: 100; } .progress-fill { height: 100%; background: var(--success-gradient); transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; } .progress-fill::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: progressShine 2s infinite; } @keyframes progressShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } .question-content { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 1024px; margin: 0 auto; width: 100%; padding-top: 80px; } .back-btn { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; cursor: pointer; margin-bottom: 40px; display: flex; align-items: center; gap: 8px; font-size: 16px; padding: 12px 20px; border-radius: 50px; backdrop-filter: blur(10px); transition: all 0.3s ease; align-self: flex-start; } .back-btn:hover { background: rgba(255, 255, 255, 0.2); transform: translateX(-5px); } .question-header { text-align: center; margin-bottom: 48px; } .question-title { font-size: 3rem; font-weight: 700; color: white; margin-bottom: 16px; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); letter-spacing: -0.01em; } .question-counter { color: rgba(255, 255, 255, 0.7); font-size: 1.125rem; font-weight: 500; } .options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-bottom: 48px; } .option-btn { padding: 28px; border-radius: 20px; border: 2px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); cursor: pointer; text-align: left; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; } .option-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: left 0.6s; } .option-btn:hover::before { left: 100%; } .option-btn:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.15); transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); } .option-btn.selected { border-color: rgba(16, 185, 129, 0.6); background: rgba(16, 185, 129, 0.1); transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3); } .option-text { font-size: 1.25rem; font-weight: 600; color: white; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .check-icon { width: 32px; height: 32px; background: var(--success-gradient); border-radius: 50%; display: none; align-items: center; justify-content: center; color: white; font-size: 18px; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); } .option-btn.selected .check-icon { display: flex; animation: checkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); } @keyframes checkPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } } /* Recommendation Page */ .recommendation-page { background: transparent; padding: 0; min-height: 100vh; } .recommendation-content { max-width: 1200px; margin: 0 auto; width: 100%; padding: 24px; min-height: 100vh; display: flex; flex-direction: column; } .recommendation-header { text-align: center; margin-bottom: 60px; padding-top: 60px; } .recommendation-icon { width: 120px; height: 120px; background: var(--success-gradient); border-radius: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3); animation: iconFloat 3s ease-in-out infinite; } @keyframes iconFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } } .recommendation-title { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); letter-spacing: -0.02em; } .recommendation-subtitle { font-size: 1.5rem; color: rgba(255, 255, 255, 0.8); font-weight: 400; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 30px; margin-bottom: 60px; } .service-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; padding: 32px; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--success-gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; } .service-card:hover::before { transform: scaleX(1); } .service-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.15); } .service-video { width: 100%; height: 220px; border-radius: 16px; margin-bottom: 24px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); } .service-video iframe { width: 100%; height: 100%; border: none; border-radius: 16px; transition: transform 0.3s ease; } .service-card:hover .service-video iframe { transform: scale(1.05); } .service-title { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .service-description { color: rgba(255, 255, 255, 0.8); margin-bottom: 24px; line-height: 1.7; font-size: 1.125rem; } .service-benefits { list-style: none; padding: 0; margin: 0; } .service-benefit { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 1rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; } .benefit-check { width: 24px; height: 24px; background: var(--success-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; flex-shrink: 0; box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3); } .action-buttons { text-align: center; padding-bottom: 60px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; } .btn-secondary { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: white; backdrop-filter: blur(10px); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.3); } .btn-primary { background: var(--success-gradient); border: none; } .btn-primary:hover { box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4); } /* No Recommendations */ .no-recommendations { text-align: center; padding: 120px 24px; max-width: 600px; margin: 0 auto; } .no-recommendations-text { font-size: 1.5rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; line-height: 1.8; font-weight: 400; } /* Click to Call Button */ .click-to-call { position: fixed; top: 30px; right: 30px; z-index: 1000; background: var(--success-gradient); color: white; padding: 16px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4); transition: all 0.3s ease; border: none; cursor: pointer; backdrop-filter: blur(20px); } .click-to-call:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5); } .click-to-call svg { width: 20px; height: 20px; } /* Mobile Responsive */ @media (max-width: 768px) { .start-title { font-size: 2.5rem; } .question-title { font-size: 2rem; } .recommendation-title { font-size: 2.5rem; } .options-grid { grid-template-columns: 1fr; } .services-grid { grid-template-columns: 1fr; } .btn { padding: 16px 32px; font-size: 1rem; } .recommendation-header { padding-top: 40px; margin-bottom: 40px; } .action-buttons { padding-bottom: 40px; flex-direction: column; align-items: center; } .btn-secondary, .btn-primary { width: 100%; max-width: 280px; } .click-to-call { top: 20px; right: 20px; padding: 12px 18px; font-size: 14px; } .click-to-call svg { width: 18px; height: 18px; } .question-content { padding-top: 60px; } } /* Pulse animation for important buttons */ @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } .btn-primary { animation: pulse 2s infinite; } /* Loading states */ @keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } } /* Enhanced transitions */ * { transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); } ::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #2563eb 0%, #059669 100%); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, #059669 0%, #2563eb 100%); } (425) 232-6029

Find Your Perfect Digital Marketing Strategy

Answer a few quick questions to get personalized recommendations for your business

Home

Your Personalized Marketing Strategy

Based on your answers, here are our recommendations:

Home Strategy session with Benjamin Sehayek

Based on your requirements, we recommend consulting with our experts for a custom strategy.