        /* ---------- Feature / upgrade tabs ---------- */
            .tab-content{opacity:1!important;visibility:visible!important;}

            /* ---------- Mobile navigation ---------- */
            #mobile-menu,.mobile-nav{display:block!important;height:auto!important;}

            /* ---------- Sticky CTA bar ---------- */
            #mobile-sticky-cta.hidden-cta,
            .hidden-cta{
          display:flex!important;      /* reveal bar */
          position:static!important;   /* keep in normal flow */
          transform:none!important;    /* undo JS translateY */        
          }
        /* Add scroll margin to account for sticky header */
        section[id] {
            scroll-margin-top: 80px;  Adjust based on final header height 
        }

        /* Simple animation for feature tabs */
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }

        /* Tooltip styles for upgrade hooks */
        .tooltip-container {
            position: relative;
            display: inline-flex;
            align-items: center;
        }
        .tooltip-text {
            visibility: hidden;
            width: 220px;
            background-color: var(--dark-blue);
            color: var(--white);
            text-align: center;
            border-radius: 6px;
            padding: 8px;
            position: absolute;
            z-index: 10;
            bottom: 125%;
            left: 50%;
            margin-left: -110px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.875rem;
            font-weight: 500;
            pointer-events: none;
        }
        .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: var(--dark-blue) transparent transparent transparent;
        }
        .tooltip-container:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        /* Accordion arrow rotation */
        details[open] summary .accordion-arrow {
            transform: rotate(180deg);
        }
        .accordion-arrow {
            transition: transform 0.2s ease-in-out;
        }
        
        /* Styles for the sticky mobile CTA bar */
        #mobile-sticky-cta {
            transition: transform 0.3s ease-in-out;
        }
        #mobile-sticky-cta.hidden-cta {
            transform: translateY(100%);
        }

        /* Styles for the roadmap timeline */
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 12px;
            left: -17px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            border: 2px solid var(--white);
        }

        /* Styles for Testimonial Carousel */
        .carousel-dots {
            text-align: center;
            margin-top: 2rem;
        }
        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 4px;
            background-color: #d1d5db; 
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }
        .dot.active {
            background-color: var(--primary-blue);
        }

/* aug 12 */
.main-header br {
    display: inline-block !important;
}

.recommended-by h3 {
    font-weight: 600 !important;
}

#why-booster {
    background-color: #f6fafc !important;
}

#why-booster svg circle.cls-2 {
    fill: #ef4444 !important;
}

#why-booster h2 {
     font-weight: 800 !important;
}

.the-old-way h4 {
    color: #334155 !important;
}

.bottom-link a {
    color:  #64748b !important;
}

#persona-chooser h2 {
    font-weight: 800 !important;
}

#persona-chooser .bottom-link a {
    color: #64748b !important;
}

#persona-chooser .bottom-link a:hover {
    text-decoration: underline !important;
}

#persona-chooser svg .cls-1 {
    fill: #2f4254 !important;
}

#free-plugin-showcase .text-link span {
    color: #334155 !important;
}  

#free-plugin-showcase .text-link span:hover {
    text-decoration: underline !important;
}

#free-plugin-showcase svg .cls-1,
#free-plugin-showcase svg .cls-2 {
    fill: #0076a7 !important;
}

#free-plugin-showcase .icon-link .fa-wordpress-simple:before {
    color: #fff !important;
}  

#elite-showcase .icon svg path {
    stroke: unset !important;
    fill: #ffbb43 !important;
}

#elite-showcase .icon svg {
    width: 100%;
}

#social-proof {
    background-color: #f6fafc !important;
}

#persona-chooser .bottom-btn {
    width: max-content;
    margin: 25px auto 0px;
}

.red-cross path {
    fill: #ef4444 !important;
}

@media (max-width:640px) {
    .main-header br {
        display: none !important;

    }

    .page-template-new-home-page h1 {
        font-size: 36px !important;
    }

    .recommended-by ul {
        column-gap: 60px;
        row-gap: 20px;
    }
}

@media (max-width:540px) {
    .recommended-by ul {
        column-gap: 120px;
    }
}

/* Hide for mobile, show for tablet & desktop */
@media (max-width: 767px) {
  #mobile_view_subhead {
    display: none;
  }
}