Metrics Reporting Class
.accordion-section * { margin: 0; padding: 0; box-sizing: border-box; } .accordion-section { padding: 40px; font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', R oboto, sans-serif; } .accordion-section .section-container { max-width: 1000px; margin: 0 auto; } .accordion-container { margin-top: 0; } .accordion-item { border-radius: 15px; overflow: hidden; margin-bottom: 15px; border: 2px solid #d3eafd; transition: all 0.3s ease; background: white; box-shadow: 0 4px 15px rgba(0, 95, 0, 0.06); } .accordion-item:hover { border-color: #a3cc98; box-shadow: 0 6px 20px rgba(0, 95, 0, 0.1); } .accordion-button { width: 100%; background: transparent; border: none; padding: 20px 25px; text-align: left; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: space-between; align-items: center; position: relative; } .accordion-button:hover { background: rgba(211, 234, 253, 0.1); } .accordion-button.active { background: rgba(163, 204, 152, 0.1); } .accordion-title { color: #005f00; font-size: 1.3rem; font-weight: 600; line-height: 1.3; margin: 0; padding-right: 20px; } .accordion-icon { color: #005f00; font-size: 1.4rem; font-weight: 300; transition: transform 0.3s ease; flex-shrink: 0; } .accordion-button.active .accordion-icon { transform: rotate(45deg); } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: white; } .accordion-content.active { max-height: 1000px; padding: 0 25px 25px 25px; } .included-list { list-style: none; margin-top: 15px; } .included-item { display: flex; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid rgba(163, 204, 152, 0.15); } .included-item:last-child { border-bottom: none; } .checkmark { width: 20px; height: 20px; background: linear-gradient(135deg, #005f00, #a3cc98); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 12px; flex-shrink: 0; margin-top: 2px; } .checkmark::before { content: '✓'; color: white; font-weight: bold; font-size: 0.8rem; } .item-content { flex: 1; } .item-title { color: #005f00; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; } .item-description { color: #005f00; font-size: 0.85rem; opacity: 0.8; line-height: 1.4; } .info-cards-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 15px; } .info-card-compact { background: rgba(211, 234, 253, 0.2); border: 1px solid #d3eafd; border-radius: 10px; padding: 18px; transition: all 0.3s ease; } .info-card-compact:hover { background: rgba(211, 234, 253, 0.3); transform: translateY(-2px); } .card-title-compact { color: #005f00; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; } .card-content-compact { color: #005f00; font-size: 0.9rem; line-height: 1.5; opacity: 0.85; } .faq-answer { color: #005f00; font-size: 0.95rem; line-height: 1.6; opacity: 0.9; margin-top: 15px; } @media (max-width: 768px) { .accordion-section { padding: 30px 20px; } .accordion-button { padding: 18px 20px; } .accordion-title { font-size: 1.2rem; } .accordion-content.active { padding: 0 20px 20px 20px; } .info-cards-grid { gap: 12px; } .info-card-compact { padding: 15px; } } @media (max-width: 480px) { .accordion-section { padding: 20px 15px; } .accordion-button { padding: 16px 18px; } .accordion-title { font-size: 1.1rem; padding-right: 15px; } .accordion-icon { font-size: 1.2rem; } .accordion-content.active { padding: 0 18px 18px 18px; } } What's Included + Complete Strategic Framework Learn what metrics actually mean, how to select strategic KPIs, and create comprehensive social media reports that demonstrate your value Social Media Manager's KPI Cheatsheet Strategic reference guide that eliminates guesswork from metric selection and helps you determine the right performance indicators for each client Social Media Management Results Report Template Professional Canva template with three design styles for creating custom presentations with branded charts and strategic recommendations 30, 60, and 90 Day Objective Calculator Systematic calculator that determines realistic client objectives within specific timelines for strategic planning and ROI demonstration Key Features & Benefits + Data-Driven Confidence Go from metrics-avoider to strategic advisor. Learn to read insights confidently, select meaningful KPIs, and create reports that demonstrate your value to clients. Streamlined Reporting Workflows Streamlined processes and proven templates that demonstrate your value without requiring constant meetings or explanations. Save time while impressing clients. Strategic Positioning Position yourself as the strategic advisor who understands both creative execution and business impact, building sustainable client relationships through data-driven communication. Frequently Asked Questions + What if I'm terrible with numbers and data analysis? + This masterclass is specifically designed for creative social media managers who feel intimidated by data. I break down complex metrics into simple, understandable concepts and provide systematic frameworks that handle the complexity for you. You don't need to be a data analyst—you just need to understand what the numbers mean for your clients' success. How is this different from just looking at platform analytics? + Platform analytics show you what happened, but this masterclass teaches you how to interpret what the data means and translate it into strategic recommendations. You'll learn to calculate metrics not offered by platforms, select meaningful KPIs, and create comprehensive reports that demonstrate your strategic value rather than just reporting vanity metrics. Will this help me have better conversations with clients about performance? + Absolutely. You'll gain the confidence to answer any client question about performance metrics and learn to communicate data in ways that reinforce your expertise. The reporting templates and frameworks help you present insights professionally, positioning you as the strategic advisor who understands both creative execution and business impact. Do I need any special tools or software? + No special tools required! The masterclass works with standard platform analytics that you already have access to. The included Canva templates work with any Canva account, and the calculators are simple tools that help you determine objectives and track performance using the data you're already collecting. How quickly can I start creating better client reports? + You can start using the templates and frameworks immediately after completing the training. The systematic approach is designed for quick implementation—you'll have everything you need to create professional, data-driven reports that demonstrate your strategic value without requiring extensive time investment or complex analysis. function toggleAccordion(button) { const accordionItem = button.parentElement; const content = accordionItem.querySelector('.accordion-content'); const icon = button.querySelector('.accordion-icon'); const isNested = accordionItem.parentElement.classList.contains('accordion-content'); if (!isNested) { document.querySelectorAll('.accordion-container > .accordion-item').forEach(item => { if (item !== accordionItem) { item.querySelector('.accordion-button').classList.remove('active'); item.querySelector('.accordion-content').classList.remove('active'); item.querySelector('.accordion-icon').textContent = '+'; } }); } else { accordionItem.closest('.accordion-content').querySelectorAll('.accordion-item').forEach(item => { if (item !== accordionItem) { item.querySelector('.accordion-button').classList.remove('active'); item.querySelector('.accordion-content').classList.remove('active'); item.querySelector('.accordion-icon').textContent = '+'; } }); } const isActive = button.classList.contains('active'); if (isActive) { button.classList.remove('active'); content.classList.remove('active'); icon.textContent = '+'; } else { button.classList.add('active'); content.classList.add('active'); icon.textContent = '×'; } }
More you might like
Related
Content Success Bundle (2 Classes: Metrics Reporting, Conten
Related
MetricPack Studio | Metric Definition and Evaluation Reporti
Related
Advanced Skills Bundle (3 Masterclasses: Metrics Reporting,
Related