{"id":1187,"date":"2026-05-09T13:47:27","date_gmt":"2026-05-09T13:47:27","guid":{"rendered":"https:\/\/kensbusinesstools.com\/scorecard\/"},"modified":"2026-05-09T13:47:27","modified_gmt":"2026-05-09T13:47:27","slug":"scorecard","status":"publish","type":"page","link":"https:\/\/kensbusinesstools.com\/scorecard\/","title":{"rendered":"Marketing Readiness Score"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>Marketing Readiness Score | Ken's Business Tools<\/title>\n<style>\n:root {\n  --bg: #0a0a1a;\n  --card: #12122a;\n  --accent: #efefc9;\n  --gold: #f0c040;\n  --text: #e0e0e0;\n  --muted: #8888aa;\n  --green: #4ade80;\n  --red: #f87171;\n  --blue: #60a5fa;\n  --border: #2a2a4a;\n}\n* { margin:0; padding:0; box-sizing:border-box; }\nbody {\n  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;\n  background: var(--bg);\n  color: var(--text);\n  min-height: 100vh;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  padding: 20px;\n}\n.container {\n  max-width: 700px;\n  width: 100%;\n}\n\/* Logo *\/\n.logo { text-align:center; margin-bottom:24px; }\n.logo img { height:50px; }\n\n\/* Card *\/\n.card {\n  background: var(--card);\n  border: 1px solid var(--border);\n  border-radius: 16px;\n  padding: 40px 32px;\n}\nh1 {\n  font-size: 28px;\n  color: var(--accent);\n  text-align: center;\n  margin-bottom: 8px;\n  line-height: 1.3;\n}\n.subtitle {\n  text-align: center;\n  color: var(--muted);\n  margin-bottom: 32px;\n  font-size: 15px;\n}\n\n\/* Progress *\/\n.progress-wrap {\n  background: var(--border);\n  border-radius: 8px;\n  height: 6px;\n  margin-bottom: 32px;\n  overflow: hidden;\n}\n.progress-bar {\n  height: 100%;\n  background: linear-gradient(90deg, var(--gold), var(--accent));\n  border-radius: 8px;\n  transition: width 0.4s ease;\n}\n\n\/* Question *\/\n.question-block { display:none; }\n.question-block.active { display:block; }\n.question-block h3 {\n  font-size: 20px;\n  margin-bottom: 20px;\n  color: #fff;\n  line-height: 1.4;\n}\n.options { display:flex; flex-direction:column; gap:10px; }\n.option {\n  background: var(--bg);\n  border: 2px solid var(--border);\n  border-radius: 10px;\n  padding: 14px 18px;\n  cursor: pointer;\n  transition: all 0.2s;\n  font-size: 15px;\n  color: var(--text);\n  text-align: left;\n}\n.option:hover {\n  border-color: var(--gold);\n  background: #1a1a35;\n}\n.option.selected {\n  border-color: var(--gold);\n  background: #1a1a35;\n  box-shadow: 0 0 0 1px var(--gold);\n}\n\n\/* Results *\/\n.results { display:none; }\n.results.active { display:block; text-align:center; }\n.score-circle {\n  width: 140px;\n  height: 140px;\n  border-radius: 50%;\n  border: 6px solid var(--gold);\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  margin: 0 auto 20px;\n  font-size: 48px;\n  font-weight: 700;\n  color: var(--accent);\n}\n.score-label {\n  font-size: 18px;\n  color: var(--muted);\n  margin-bottom: 24px;\n}\n.verdict {\n  font-size: 20px;\n  font-weight: 600;\n  color: #fff;\n  margin-bottom: 12px;\n}\n.recommendations {\n  text-align: left;\n  background: var(--bg);\n  border-radius: 10px;\n  padding: 24px;\n  margin: 24px 0;\n}\n.recommendations h3 {\n  color: var(--accent);\n  margin-bottom: 16px;\n  font-size: 16px;\n}\n.rec-item {\n  display: flex;\n  align-items: flex-start;\n  gap: 12px;\n  padding: 12px 0;\n  border-bottom: 1px solid var(--border);\n}\n.rec-item:last-child { border-bottom:none; }\n.rec-icon {\n  font-size: 24px;\n  flex-shrink: 0;\n  margin-top: 2px;\n}\n.rec-text strong { color:#fff; display:block; margin-bottom:4px; }\n.rec-text p { color:var(--muted); font-size:13px; }\n\n\/* Email Capture *\/\n.email-capture {\n  background: linear-gradient(135deg, #1a1a35, #12122a);\n  border: 2px solid var(--gold);\n  border-radius: 12px;\n  padding: 28px 24px;\n  text-align: center;\n  margin-top: 24px;\n}\n.email-capture h3 {\n  color: var(--accent);\n  font-size: 18px;\n  margin-bottom: 8px;\n}\n.email-capture p {\n  color: var(--muted);\n  font-size: 14px;\n  margin-bottom: 18px;\n}\n.email-form {\n  display: flex;\n  gap: 10px;\n  flex-wrap: wrap;\n  justify-content: center;\n}\n.email-form input {\n  flex: 1;\n  min-width: 200px;\n  padding: 12px 16px;\n  background: var(--bg);\n  border: 1px solid var(--border);\n  border-radius: 8px;\n  color: #fff;\n  font-size: 15px;\n}\n.email-form input:focus {\n  outline: none;\n  border-color: var(--gold);\n}\n.email-form button, .btn {\n  padding: 12px 28px;\n  background: var(--gold);\n  color: #0a0a1a;\n  border: none;\n  border-radius: 8px;\n  font-size: 15px;\n  font-weight: 600;\n  cursor: pointer;\n  transition: all 0.2s;\n  white-space: nowrap;\n}\n.email-form button:hover, .btn:hover {\n  background: #f5d060;\n  transform: translateY(-1px);\n}\n.btn-outline {\n  background: transparent;\n  border: 2px solid var(--gold);\n  color: var(--gold);\n  padding: 10px 24px;\n  border-radius: 8px;\n  font-size: 14px;\n  font-weight: 600;\n  cursor: pointer;\n  transition: all 0.2s;\n}\n.btn-outline:hover {\n  background: var(--gold);\n  color: #0a0a1a;\n}\n\n.thank-you { display:none; text-align:center; padding:30px 0; }\n.thank-you.active { display:block; }\n.thank-you .emoji { font-size:56px; margin-bottom:16px; }\n.thank-you h3 { color:var(--accent); font-size:22px; margin-bottom:8px; }\n.thank-you p { color:var(--muted); }\n\n\/* Mobile *\/\n@media (max-width: 600px) {\n  .card { padding: 24px 16px; }\n  h1 { font-size: 22px; }\n  .question-block h3 { font-size: 17px; }\n  .email-form { flex-direction:column; }\n}\n<\/style>\n<\/head>\n<body>\n<div class=\"container\">\n\n  <!-- Logo -->\n  <div class=\"logo\">\n    <span style=\"font-size:22px;font-weight:700;color:var(--accent);\">Ken's Business Tools<\/span>\n  <\/div>\n\n  <div class=\"card\">\n\n    <!-- Intro -->\n    <div id=\"intro\" class=\"question-block active\">\n      <h1>\ud83d\ude80 What's Your Marketing Readiness Score?<\/h1>\n      <p class=\"subtitle\">Answer 10 quick questions and get a personalized action plan with the exact tools you need to grow your online business \u2014 in under 2 minutes.<\/p>\n      <button class=\"btn\" onclick=\"startQuiz()\" style=\"display:block;margin:0 auto;font-size:16px;padding:14px 40px;\">\n        Start Free Assessment \u2192\n      <\/button>\n    <\/div>\n\n    <!-- Questions will be injected here -->\n    <div id=\"quiz-area\"><\/div>\n\n    <!-- Results -->\n    <div id=\"results\" class=\"results\"><\/div>\n\n    <!-- Thank You -->\n    <div id=\"thank-you\" class=\"thank-you\">\n      <div class=\"emoji\">\ud83d\udcec<\/div>\n      <h3>You're All Set, <span id=\"user-name\"><\/span>!<\/h3>\n      <p>Your free <strong>Digital Marketing Starter Kit<\/strong> is on its way to your inbox.<br>Check your email in the next few minutes.<\/p>\n      <p style=\"margin-top:20px;color:var(--muted);font-size:13px;\">In the meantime, explore our <a href=\"\/demo-tools\/\" style=\"color:var(--gold);\">free marketing tools<\/a>.<\/p>\n    <\/div>\n\n  <\/div>\n<\/div>\n\n<script>\n\/\/ Quiz Questions\nconst questions = [\n  {\n    q: \"1. Do you currently have a website or blog for your business?\",\n    options: [\n      { text: \"Yes, it's live and running\", score: 3 },\n      { text: \"I have one but it needs work\", score: 2 },\n      { text: \"No, I don't have one yet\", score: 0 }\n    ]\n  },\n  {\n    q: \"2. How would you rate your email list?\",\n    options: [\n      { text: \"I have 500+ subscribers and email regularly\", score: 3 },\n      { text: \"I have a small list (< 500) and email sometimes\", score: 2 },\n      { text: \"I have a list but never email them\", score: 1 },\n      { text: \"I don't have an email list yet\", score: 0 }\n    ]\n  },\n  {\n    q: \"3. How do you currently get traffic to your site?\",\n    options: [\n      { text: \"SEO + Social Media + Email \u2014 I use multiple channels\", score: 3 },\n      { text: \"Mostly social media\", score: 2 },\n      { text: \"I'm not actively driving traffic yet\", score: 0 }\n    ]\n  },\n  {\n    q: \"4. How confident are you with SEO (Search Engine Optimization)?\",\n    options: [\n      { text: \"Very confident \u2014 I rank for multiple keywords\", score: 3 },\n      { text: \"I know the basics but need help\", score: 2 },\n      { text: \"I have no idea where to start\", score: 0 }\n    ]\n  },\n  {\n    q: \"5. Are you currently making money online?\",\n    options: [\n      { text: \"Yes, consistently ($1,000+\/month)\", score: 3 },\n      { text: \"Yes, but it's inconsistent\", score: 2 },\n      { text: \"Not yet \u2014 that's why I'm here!\", score: 0 }\n    ]\n  },\n  {\n    q: \"6. What's your biggest marketing challenge right now?\",\n    options: [\n      { text: \"Getting traffic \/ visibility\", score: 1 },\n      { text: \"Converting visitors into leads or sales\", score: 2 },\n      { text: \"I need a clear strategy to follow\", score: 1 },\n      { text: \"Scaling what's already working\", score: 3 }\n    ]\n  },\n  {\n    q: \"7. Have you ever run paid ads (Facebook, Google, etc.)?\",\n    options: [\n      { text: \"Yes, and they're profitable\", score: 3 },\n      { text: \"I've tried but didn't get good results\", score: 2 },\n      { text: \"Never tried paid ads\", score: 0 }\n    ]\n  },\n  {\n    q: \"8. Do you have a lead magnet or freebie to capture emails?\",\n    options: [\n      { text: \"Yes, and it's converting well\", score: 3 },\n      { text: \"I have one but it needs improvement\", score: 2 },\n      { text: \"No, I need help creating one\", score: 0 }\n    ]\n  },\n  {\n    q: \"9. How much time do you spend on marketing each week?\",\n    options: [\n      { text: \"10+ hours \u2014 I treat it like a business\", score: 3 },\n      { text: \"3-10 hours \u2014 I'm consistent but limited\", score: 2 },\n      { text: \"Less than 3 hours \u2014 I'm just getting started\", score: 0 }\n    ]\n  },\n  {\n    q: \"10. What's your primary goal for the next 6 months?\",\n    options: [\n      { text: \"Replace my 9-to-5 income completely\", score: 3 },\n      { text: \"Build a consistent side income ($500-$2,000\/month)\", score: 2 },\n      { text: \"Learn the basics and get my first sale\", score: 0 }\n    ]\n  }\n];\n\nlet currentQuestion = 0;\nlet totalScore = 0;\nlet answers = [];\n\nfunction startQuiz() {\n  document.getElementById('intro').classList.remove('active');\n  totalScore = 0;\n  answers = [];\n  currentQuestion = 0;\n  renderQuestion();\n}\n\nfunction renderQuestion() {\n  const area = document.getElementById('quiz-area');\n  const q = questions[currentQuestion];\n  const progress = ((currentQuestion) \/ questions.length) * 100;\n\n  area.innerHTML = `\n    <div class=\"progress-wrap\">\n      <div class=\"progress-bar\" style=\"width:${progress}%\"><\/div>\n    <\/div>\n    <div class=\"question-block active\">\n      <h3>${q.q}<\/h3>\n      <div class=\"options\">\n        ${q.options.map((opt, i) => `\n          <button class=\"option\" onclick=\"selectAnswer(${i}, ${opt.score}, this)\">\n            ${opt.text}\n          <\/button>\n        `).join('')}\n      <\/div>\n    <\/div>\n  `;\n  area.style.display = 'block';\n}\n\nfunction selectAnswer(idx, score, el) {\n  \/\/ Mark selected\n  document.querySelectorAll('.option').forEach(o => o.classList.remove('selected'));\n  el.classList.add('selected');\n  \n  answers.push({ questionIdx: currentQuestion, optionIdx: idx, score: score });\n  totalScore += score;\n\n  \/\/ Delay for visual feedback\n  setTimeout(() => {\n    currentQuestion++;\n    if (currentQuestion < questions.length) {\n      renderQuestion();\n    } else {\n      showResults();\n    }\n  }, 300);\n}\n\nfunction showResults() {\n  document.getElementById('quiz-area').style.display = 'none';\n  const results = document.getElementById('results');\n  const maxScore = questions.length * 3; \/\/ 30\n  const percentage = Math.round((totalScore \/ maxScore) * 100);\n\n  let verdict, level, recommendations;\n\n  if (percentage >= 70) {\n    verdict = \"You're a Marketing Pro! \ud83c\udfc6\";\n    level = \"You've built solid foundations. Now it's time to scale and automate.\";\n    recommendations = [\n      {\n        icon: \"\ud83d\udcca\",\n        title: \"Advanced Diagnostics \u2014 SignalEngines\",\n        desc: \"Run a full audit of your ad accounts, email deliverability, and tracking. Fix hidden issues killing your ROI.\",\n        link: \"https:\/\/www.signalengines.com\/engines?utm_source=kensbusinesstools&utm_medium=scorecard&utm_campaign=pro\"\n      },\n      {\n        icon: \"\ud83c\udfaf\",\n        title: \"Affiliate Profit Scanner\",\n        desc: \"Analyze your affiliate campaigns and find untapped profit opportunities with our free scanner tool.\",\n        link: \"https:\/\/www.signalengines.com?utm_source=kensbusinesstools&utm_medium=scorecard\"\n      },\n      {\n        icon: \"\ud83d\udcda\",\n        title: \"Smart Hustler Books on Amazon\",\n        desc: \"Take your marketing to the next level with our best-selling guides on AI tools and digital strategy.\",\n        link: \"https:\/\/smarthustlermarketing.com\/shop?utm_source=kensbusinesstools\"\n      }\n    ];\n  } else if (percentage >= 40) {\n    verdict = \"You're on the Right Track! \ud83d\ude80\";\n    level = \"You have momentum \u2014 now let's fill in the gaps and build consistency.\";\n    recommendations = [\n      {\n        icon: \"\ud83d\udce7\",\n        title: \"Email List Builder \u2014 5 Dollar Friday\",\n        desc: \"Build and automate your email list with proven templates and sequences. Start capturing leads today.\",\n        link: \"https:\/\/5dollarfriday.idevaffiliate.com\/235-87.html\"\n      },\n      {\n        icon: \"\ud83d\udd0d\",\n        title: \"SEO Wizard \u2014 5 Dollar Friday\",\n        desc: \"Get your content ranking on Google. Step-by-step SEO system for beginners and intermediates.\",\n        link: \"https:\/\/5dollarfriday.idevaffiliate.com\/235-92.html\"\n      },\n      {\n        icon: \"\ud83c\udf93\",\n        title: \"Premium Video Courses at Ken's Business Tools\",\n        desc: \"Master digital marketing fundamentals \u2014 affiliate marketing, traffic, email, and scaling.\",\n        link: \"\/demo-course\/\"\n      },\n      {\n        icon: \"\ud83d\udee0\ufe0f\",\n        title: \"Free Marketing Tools \u2014 Ken's Business Tools\",\n        desc: \"10 essential free tools every marketer needs. Canva, Google Analytics, Mailchimp & more.\",\n        link: \"\/demo-tools\/\"\n      }\n    ];\n  } else {\n    verdict = \"You're Just Getting Started \u2014 Perfect! \ud83c\udf31\";\n    level = \"Everyone starts here. The good news? You have the biggest upside potential. Let's build your foundation.\";\n    recommendations = [\n      {\n        icon: \"\ud83c\udf93\",\n        title: \"Premium Video Courses \u2014 Start Here\",\n        desc: \"Our step-by-step training takes you from complete beginner to confident marketer. No experience needed.\",\n        link: \"\/demo-course\/\"\n      },\n      {\n        icon: \"\ud83d\udee0\ufe0f\",\n        title: \"Free Digital Marketing Tools\",\n        desc: \"10 essential tools to start your journey \u2014 all free. Perfect for beginners on a budget.\",\n        link: \"\/demo-tools\/\"\n      },\n      {\n        icon: \"\ud83d\udcac\",\n        title: \"1-on-1 Mentoring with Ken\",\n        desc: \"Get personalized guidance. We'll create your custom roadmap and I'll help you every step of the way.\",\n        link: \"\/demo-program\/\"\n      },\n      {\n        icon: \"\ud83d\udce6\",\n        title: \"Mega Bundle \u2014 5 Dollar Friday\",\n        desc: \"All-in-one starter pack with traffic, content, and email tools. Everything you need in one bundle.\",\n        link: \"https:\/\/5dollarfriday.idevaffiliate.com\/235-1.html\"\n      }\n    ];\n  }\n\n  results.innerHTML = `\n    <div class=\"score-circle\">${percentage}%<\/div>\n    <div class=\"score-label\">Marketing Readiness Score<\/div>\n    <div class=\"verdict\">${verdict}<\/div>\n    <p style=\"color:var(--muted);margin-bottom:20px;\">${level}<\/p>\n    \n    <div class=\"recommendations\">\n      <h3>\ud83c\udfaf Your Personalized Action Plan<\/h3>\n      ${recommendations.map(r => `\n        <div class=\"rec-item\">\n          <div class=\"rec-icon\">${r.icon}<\/div>\n          <div class=\"rec-text\">\n            <strong>${r.title}<\/strong>\n            <p>${r.desc} <a href=\"${r.link}\" style=\"color:var(--gold);\">Learn more \u2192<\/a><\/p>\n          <\/div>\n        <\/div>\n      `).join('')}\n    <\/div>\n\n    <div class=\"email-capture\">\n      <h3>\ud83d\udcec Get Your Free Digital Marketing Starter Kit<\/h3>\n      <p>Includes your full score breakdown, the 10-tool checklist, and a 5-day email crash course \u2014 delivered free to your inbox.<\/p>\n      <div class=\"email-form\">\n        <input type=\"text\" id=\"name\" placeholder=\"First Name\" \/>\n        <input type=\"email\" id=\"email\" placeholder=\"Your best email\" \/>\n        <button onclick=\"submitEmail()\">Send My Free Kit<\/button>\n      <\/div>\n    <\/div>\n  `;\n  results.classList.add('active');\n}\n\nfunction submitEmail() {\n  const name = document.getElementById('name').value.trim();\n  const email = document.getElementById('email').value.trim();\n  \n  if (!name || !email) {\n    alert('Please enter both your name and email to receive your free kit.');\n    return;\n  }\n  if (!email.includes('@')) {\n    alert('Please enter a valid email address.');\n    return;\n  }\n\n  \/\/ Store results for server-side capture\n  const resultsData = {\n    name: name,\n    email: email,\n    score: Math.round((totalScore \/ (questions.length * 3)) * 100),\n    answers: answers,\n    timestamp: new Date().toISOString()\n  };\n\n  \/\/ Attempt to send to WordPress REST API or Bloom\n  \/\/ For now, we show thank you and store in localStorage for later processing\n  try {\n    localStorage.setItem('kbt_scorecard_' + Date.now(), JSON.stringify(resultsData));\n  } catch(e) {}\n\n  \/\/ Show thank you\n  document.getElementById('results').classList.remove('active');\n  document.getElementById('user-name').textContent = name;\n  document.getElementById('thank-you').classList.add('active');\n\n  \/\/ If Bloom plugin is available, trigger it\n  if (typeof window.bloom_trigger === 'function') {\n    window.bloom_trigger();\n  }\n}\n<\/script>\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>Marketing Readiness Score | Ken&#8217;s Business Tools Ken&#8217;s Business Tools \ud83d\ude80 What&#8217;s Your Marketing Readiness Score? Answer 10 quick questions and get a personalized action plan with the exact tools you need to grow your online business \u2014 in under 2 minutes. Start Free Assessment \u2192 \ud83d\udcec You&#8217;re All Set, ! Your free Digital Marketing [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"order-bump-settings":[],"_wpfnl_thankyou_order_overview":"on","_wpfnl_thankyou_order_details":"on","_wpfnl_thankyou_billing_details":"on","_wpfnl_thankyou_shipping_details":"on","footnotes":""},"class_list":["post-1187","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/pages\/1187","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/comments?post=1187"}],"version-history":[{"count":0,"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/pages\/1187\/revisions"}],"wp:attachment":[{"href":"https:\/\/kensbusinesstools.com\/v\/wp\/v2\/media?parent=1187"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}