/*
Theme Name: SMM Boost
Theme URI: https://example.com/smm-boost
Author: Your Name
Author URI: https://example.com
Description: A bold, colorful WordPress theme built for SMM panels — sell Instagram, TikTok, YouTube, and social media growth services with a pricing table, services grid, testimonials, and a strong call-to-action homepage.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smm-boost
Tags: e-commerce, blog, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   1. CSS VARIABLES / THEME COLORS
============================================= */
:root {
  --sb-primary: #6C5CE7;
  --sb-primary-dark: #5546c8;
  --sb-secondary: #FD79A8;
  --sb-accent: #FDBB2D;
  --sb-dark: #16162A;
  --sb-text: #2C2C3A;
  --sb-muted: #6b6b7b;
  --sb-light: #F7F6FD;
  --sb-white: #ffffff;
  --sb-border: #ECEBF7;
  --sb-radius: 18px;
  --sb-radius-sm: 10px;
  --sb-shadow: 0 10px 30px rgba(108, 92, 231, 0.12);
  --sb-shadow-lg: 0 20px 50px rgba(108, 92, 231, 0.18);
  --sb-gradient: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-secondary) 100%);
  --sb-gradient-2: linear-gradient(135deg, #7F5CFF 0%, #FD79A8 55%, #FDBB2D 100%);
  --sb-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =============================================
   2. RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sb-font);
  color: var(--sb-text);
  background: var(--sb-white);
  margin: 0;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sb-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sb-secondary); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; margin: 0 0 .6em; color: var(--sb-dark); }
p { margin: 0 0 1.2em; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
section { padding: 90px 0; }
@media (max-width: 782px) { section { padding: 56px 0; } }

/* Section heading */
.sb-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(108,92,231,.1);
  color: var(--sb-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sb-section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sb-section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.sb-section-head p { color: var(--sb-muted); font-size: 17px; }

/* Buttons */
.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.sb-btn-primary {
  background: var(--sb-gradient);
  color: var(--sb-white);
  box-shadow: var(--sb-shadow);
}
.sb-btn-primary:hover { color: var(--sb-white); transform: translateY(-3px); box-shadow: var(--sb-shadow-lg); }
.sb-btn-ghost {
  background: var(--sb-white);
  color: var(--sb-dark);
  border: 2px solid var(--sb-border);
}
.sb-btn-ghost:hover { border-color: var(--sb-primary); color: var(--sb-primary); }
.sb-btn-white { background: var(--sb-white); color: var(--sb-primary); }
.sb-btn-white:hover { color: var(--sb-primary-dark); transform: translateY(-3px); }
.sb-btn-block { width: 100%; }

/* =============================================
   3. HEADER
============================================= */
.sb-topbar {
  background: var(--sb-dark);
  color: #cfcfe6;
  font-size: 13px;
}
.sb-topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.sb-topbar a { color: #cfcfe6; }
.sb-topbar-contact { display: flex; gap: 20px; }
.sb-topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }
.sb-topbar-social { display: flex; gap: 14px; }

.sb-header {
  background: var(--sb-white);
  border-bottom: 1px solid var(--sb-border);
  position: sticky;
  top: 0;
  z-index: 999;
}
.sb-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.sb-logo { font-size: 24px; font-weight: 800; color: var(--sb-dark); display: flex; align-items: center; gap: 10px; }
.sb-logo img { max-height: 42px; width: auto; }
.sb-logo span { background: var(--sb-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.sb-main-nav ul { display: flex; gap: 8px; align-items: center; }
.sb-main-nav a {
  color: var(--sb-text);
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 50px;
  display: inline-block;
}
.sb-main-nav a:hover, .sb-main-nav .current-menu-item > a { color: var(--sb-primary); background: var(--sb-light); }
.sb-main-nav .sub-menu { display: none; }

.sb-header-actions { display: flex; align-items: center; gap: 14px; }
.sb-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--sb-dark);
}

@media (max-width: 900px) {
  .sb-main-nav { display: none; width: 100%; order: 3; }
  .sb-main-nav.is-open { display: block; }
  .sb-main-nav ul { flex-direction: column; align-items: stretch; padding: 12px 0; }
  .sb-main-nav a { display: block; padding: 12px 16px; }
  .sb-header .container { flex-wrap: wrap; }
  .sb-menu-toggle { display: block; }
  .sb-topbar-contact span:nth-child(2) { display: none; }
}

/* =============================================
   4. HERO
============================================= */
.sb-hero {
  background: var(--sb-gradient-2);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--sb-white);
}
.sb-hero::before, .sb-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.sb-hero::before { width: 420px; height: 420px; top: -160px; right: -120px; }
.sb-hero::after { width: 260px; height: 260px; bottom: -120px; left: -60px; }
.sb-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.sb-hero-content h1 { color: var(--sb-white); font-size: clamp(32px, 5vw, 54px); margin-bottom: 20px; }
.sb-hero-content p { font-size: 18px; opacity: .92; max-width: 520px; margin-bottom: 32px; }
.sb-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.sb-hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.sb-hero-stats div strong { display: block; font-size: 26px; }
.sb-hero-stats div span { font-size: 13px; opacity: .85; }
.sb-hero-media { position: relative; }
.sb-hero-media img { border-radius: var(--sb-radius); box-shadow: var(--sb-shadow-lg); }
.sb-hero-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--sb-white);
  color: var(--sb-dark);
  padding: 16px 20px;
  border-radius: var(--sb-radius-sm);
  box-shadow: var(--sb-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.sb-hero-card .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--sb-gradient); flex-shrink: 0; }
@media (max-width: 900px) {
  .sb-hero .container { grid-template-columns: 1fr; }
  .sb-hero-media { order: -1; }
}

/* Platform strip */
.sb-platforms { padding: 40px 0; border-bottom: 1px solid var(--sb-border); }
.sb-platforms .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.sb-platforms-label { color: var(--sb-muted); font-weight: 600; font-size: 14px; }
.sb-platform-icons { display: flex; gap: 30px; flex-wrap: wrap; }
.sb-platform-icons i { font-size: 26px; color: var(--sb-muted); transition: color .2s, transform .2s; }
.sb-platform-icons i:hover { color: var(--sb-primary); transform: translateY(-3px); }

/* =============================================
   5. SERVICES / FEATURES GRID
============================================= */
.sb-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.sb-service-card {
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: var(--sb-radius);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sb-service-card:hover { transform: translateY(-6px); box-shadow: var(--sb-shadow-lg); border-color: transparent; }
.sb-service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--sb-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--sb-white); font-size: 24px;
  margin-bottom: 20px;
}
.sb-service-card h3 { font-size: 19px; margin-bottom: 8px; }
.sb-service-card p { color: var(--sb-muted); font-size: 14.5px; margin-bottom: 14px; }
.sb-service-price { font-weight: 700; color: var(--sb-primary); font-size: 15px; }
.sb-service-card .sb-service-link { font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 1100px) { .sb-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sb-services-grid { grid-template-columns: 1fr; } }

/* =============================================
   6. HOW IT WORKS
============================================= */
.sb-steps { background: var(--sb-light); }
.sb-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; counter-reset: step; }
.sb-step { text-align: center; position: relative; }
.sb-step-number {
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sb-white);
  border: 2px solid var(--sb-primary);
  color: var(--sb-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.sb-step h3 { font-size: 18px; }
.sb-step p { color: var(--sb-muted); font-size: 14.5px; }
@media (max-width: 900px) { .sb-steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sb-steps-grid { grid-template-columns: 1fr; } }

/* =============================================
   7. PRICING
============================================= */
.sb-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sb-price-card {
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: var(--sb-radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.sb-price-card.is-featured {
  background: var(--sb-dark);
  color: var(--sb-white);
  transform: scale(1.04);
  box-shadow: var(--sb-shadow-lg);
  border: none;
}
.sb-price-card.is-featured h3,
.sb-price-card.is-featured .sb-price-amount { color: var(--sb-white); }
.sb-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sb-accent); color: var(--sb-dark);
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.sb-price-card h3 { font-size: 20px; margin-bottom: 6px; }
.sb-price-amount { font-size: 42px; font-weight: 800; color: var(--sb-primary); margin: 14px 0; }
.sb-price-amount span { font-size: 15px; font-weight: 500; opacity: .7; }
.sb-price-card ul { text-align: left; margin: 26px 0; }
.sb-price-card li { padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 14.5px; display: flex; gap: 10px; }
.sb-price-card.is-featured li { border-bottom-color: rgba(255,255,255,.12); }
.sb-price-card li i { color: var(--sb-primary); }
.sb-price-card.is-featured li i { color: var(--sb-accent); }
@media (max-width: 1000px) { .sb-pricing-grid { grid-template-columns: 1fr; } .sb-price-card.is-featured { transform: none; } }

/* =============================================
   8. STATS BAND
============================================= */
.sb-stats-band { background: var(--sb-gradient); color: var(--sb-white); }
.sb-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.sb-stats-grid strong { display: block; font-size: 36px; }
.sb-stats-grid span { font-size: 14px; opacity: .9; }
@media (max-width: 700px) { .sb-stats-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================
   9. TESTIMONIALS
============================================= */
.sb-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sb-testimonial-card {
  background: var(--sb-light);
  border-radius: var(--sb-radius);
  padding: 30px;
}
.sb-testimonial-stars { color: var(--sb-accent); margin-bottom: 14px; letter-spacing: 2px; }
.sb-testimonial-card p { font-size: 15px; color: var(--sb-text); }
.sb-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.sb-testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.sb-testimonial-author strong { display: block; font-size: 14.5px; }
.sb-testimonial-author span { font-size: 13px; color: var(--sb-muted); }
@media (max-width: 900px) { .sb-testimonials-grid { grid-template-columns: 1fr; } }

/* =============================================
   10. FAQ
============================================= */
.sb-faq { max-width: 800px; margin: 0 auto; }
.sb-faq-item { border-bottom: 1px solid var(--sb-border); }
.sb-faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-weight: 600; font-size: 16.5px; color: var(--sb-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.sb-faq-question i { transition: transform .2s ease; color: var(--sb-primary); }
.sb-faq-item.is-open .sb-faq-question i { transform: rotate(45deg); }
.sb-faq-answer { display: none; padding-bottom: 22px; color: var(--sb-muted); font-size: 15px; }
.sb-faq-item.is-open .sb-faq-answer { display: block; }

/* =============================================
   11. CTA BAND
============================================= */
.sb-cta {
  background: var(--sb-dark);
  border-radius: var(--sb-radius);
  padding: 64px;
  text-align: center;
  color: var(--sb-white);
  background-image: var(--sb-gradient-2);
}
.sb-cta h2 { color: var(--sb-white); font-size: clamp(26px, 3.5vw, 36px); }
.sb-cta p { opacity: .92; max-width: 560px; margin: 0 auto 30px; }
.sb-cta-wrap { padding-left: 24px; padding-right: 24px; max-width: 1200px; margin: 0 auto; }

/* =============================================
   12. BLOG / ARCHIVE / SINGLE
============================================= */
.sb-content-wrap { display: grid; grid-template-columns: 2.2fr 1fr; gap: 46px; }
@media (max-width: 900px) { .sb-content-wrap { grid-template-columns: 1fr; } }

.sb-post-card { margin-bottom: 42px; padding-bottom: 42px; border-bottom: 1px solid var(--sb-border); }
.sb-post-card img { border-radius: var(--sb-radius); margin-bottom: 20px; }
.sb-post-meta { font-size: 13px; color: var(--sb-muted); margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.sb-post-card h2 { font-size: 24px; }
.sb-post-card h2 a { color: var(--sb-dark); }
.sb-post-card h2 a:hover { color: var(--sb-primary); }

.sb-widget { background: var(--sb-light); border-radius: var(--sb-radius); padding: 26px; margin-bottom: 26px; }
.sb-widget h2, .sb-widget .widget-title { font-size: 16px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 18px; }
.sb-widget ul li { padding: 8px 0; border-bottom: 1px solid var(--sb-border); font-size: 14.5px; }
.sb-widget ul li:last-child { border-bottom: none; }

.single .entry-content { font-size: 17px; }
.single .entry-content h2 { margin-top: 1.6em; }
.single .entry-header { margin-bottom: 30px; }
.single .entry-title { font-size: clamp(28px, 4vw, 40px); }
.single .entry-thumb { border-radius: var(--sb-radius); margin-bottom: 30px; }

.sb-pagination { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.sb-pagination a, .sb-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 10px;
  background: var(--sb-light); color: var(--sb-text); font-weight: 600; font-size: 14px;
}
.sb-pagination .current { background: var(--sb-gradient); color: var(--sb-white); }

/* Comments */
.comment-list { margin: 0; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--sb-border); }
.comment-author .fn { font-weight: 700; }
.comment-metadata { font-size: 12.5px; color: var(--sb-muted); }
.comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url], .comment-respond textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--sb-border); border-radius: var(--sb-radius-sm); margin-bottom: 14px;
}

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-field { flex: 1; padding: 12px 16px; border: 1px solid var(--sb-border); border-radius: 50px; }
.search-submit {
  background: var(--sb-gradient); color: var(--sb-white); border: none; border-radius: 50px; padding: 0 20px; cursor: pointer;
}

/* =============================================
   13. FOOTER
============================================= */
.sb-footer { background: var(--sb-dark); color: #b9b9d1; padding-top: 70px; }
.sb-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sb-footer-about .sb-logo span { color: var(--sb-white); -webkit-text-fill-color: initial; background: none; }
.sb-footer h4 { color: var(--sb-white); font-size: 15px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 20px; }
.sb-footer ul li { margin-bottom: 10px; }
.sb-footer a { color: #b9b9d1; font-size: 14.5px; }
.sb-footer a:hover { color: var(--sb-white); }
.sb-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.sb-footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.sb-footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; }
@media (max-width: 900px) { .sb-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sb-footer-grid { grid-template-columns: 1fr; } }

/* =============================================
   14b. SCROLL-REVEAL SYSTEM
============================================= */
.sb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.sb-reveal.is-visible { opacity: 1; transform: translateY(0); }
.sb-reveal-grid > .sb-reveal:nth-child(1) { transition-delay: .03s; }
.sb-reveal-grid > .sb-reveal:nth-child(2) { transition-delay: .1s; }
.sb-reveal-grid > .sb-reveal:nth-child(3) { transition-delay: .17s; }
.sb-reveal-grid > .sb-reveal:nth-child(4) { transition-delay: .24s; }
.sb-reveal-grid > .sb-reveal:nth-child(5) { transition-delay: .31s; }
.sb-reveal-grid > .sb-reveal:nth-child(6) { transition-delay: .38s; }
.sb-reveal-grid > .sb-reveal:nth-child(7) { transition-delay: .45s; }
.sb-reveal-grid > .sb-reveal:nth-child(8) { transition-delay: .52s; }

@media (prefers-reduced-motion: reduce) {
  .sb-reveal, .sb-reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .sb-float, .sb-badge, .sb-bar, .sb-ring, .sb-pulse-dot { animation: none !important; }
}

/* Sticky header gets a shadow once the page scrolls */
.sb-header.is-scrolled { box-shadow: 0 6px 24px rgba(22,22,42,.08); }

/* =============================================
   14c. ANIMATED HERO GRAPHIC
============================================= */
.sb-hero-graphic {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.05;
}

/* Central "dashboard" mockup card */
.sb-mockup-card {
  position: absolute;
  inset: 10% 8%;
  background: rgba(255,255,255,.97);
  border-radius: 24px;
  box-shadow: var(--sb-shadow-lg);
  padding: 26px 24px;
  color: var(--sb-text);
  animation: sbFloatSlow 6s ease-in-out infinite;
}
.sb-mockup-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sb-mockup-head .dots { display: flex; gap: 6px; }
.sb-mockup-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--sb-border); }
.sb-mockup-head strong { font-size: 13px; color: var(--sb-muted); font-weight: 600; }

.sb-mockup-ring-row { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.sb-ring {
  --pct: 78%;
  width: 74px; height: 74px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(var(--sb-primary) var(--pct), var(--sb-border) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: sbRingSpinIn 1.4s cubic-bezier(.22,1,.36,1);
}
.sb-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--sb-white);
}
.sb-ring span { position: relative; z-index: 1; font-weight: 800; font-size: 14px; color: var(--sb-primary); }
.sb-mockup-ring-row div p { margin: 0; font-size: 13px; color: var(--sb-muted); }
.sb-mockup-ring-row div strong { font-size: 20px; display: block; }

.sb-bars { display: flex; align-items: flex-end; gap: 8px; height: 70px; }
.sb-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--sb-gradient);
  animation: sbBarGrow 1.6s cubic-bezier(.22,1,.36,1) both;
  transform-origin: bottom;
}
.sb-bar:nth-child(1) { height: 35%; animation-delay: .05s; }
.sb-bar:nth-child(2) { height: 55%; animation-delay: .15s; }
.sb-bar:nth-child(3) { height: 40%; animation-delay: .25s; }
.sb-bar:nth-child(4) { height: 75%; animation-delay: .35s; }
.sb-bar:nth-child(5) { height: 60%; animation-delay: .45s; }
.sb-bar:nth-child(6) { height: 92%; animation-delay: .55s; opacity: 1; }
.sb-bar:nth-child(6) { background: var(--sb-accent); }

/* Floating platform badges around the mockup */
.sb-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sb-white);
  border-radius: 50px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--sb-shadow-lg);
  font-size: 13px;
  font-weight: 700;
  color: var(--sb-dark);
  animation: sbFloat 4.5s ease-in-out infinite;
  white-space: nowrap;
}
.sb-badge .sb-badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}
.sb-badge span small { display: block; font-weight: 500; color: var(--sb-muted); font-size: 11px; }

.sb-badge--ig { top: 2%; left: -4%; animation-delay: 0s; }
.sb-badge--ig .sb-badge-icon { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.sb-badge--tiktok { top: 46%; right: -8%; animation-delay: 1.1s; }
.sb-badge--tiktok .sb-badge-icon { background: #111; }
.sb-badge--yt { bottom: 4%; left: -2%; animation-delay: .5s; }
.sb-badge--yt .sb-badge-icon { background: #ff0000; }

.sb-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display: inline-block; margin-right: 6px;
  animation: sbPulse 1.6s ease-in-out infinite;
}

@keyframes sbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
}
@keyframes sbFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes sbBarGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes sbRingSpinIn {
  from { background: conic-gradient(var(--sb-primary) 0%, var(--sb-border) 0); }
  to { background: conic-gradient(var(--sb-primary) var(--pct), var(--sb-border) 0); }
}
@keyframes sbPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
  50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

@media (max-width: 900px) {
  .sb-hero-graphic { max-width: 360px; margin-top: 30px; }
  .sb-badge { font-size: 11.5px; padding: 8px 14px 8px 8px; }
}
@media (max-width: 480px) {
  .sb-badge--ig { left: 0; }
  .sb-badge--tiktok { right: 0; }
  .sb-badge--yt { left: 0; }
}

/* =============================================
   14. UTILITIES
============================================= */
.alignwide { max-width: 1140px; }
.alignfull { max-width: 100%; }
.wp-block-image, .wp-caption { margin: 0 0 1.5em; }
