/* Fix Hero Counter Alignment (Desktop & Tablet) */
.bringer-counter {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    height: 100% !important;
}

.bringer-counter-number {
    line-height: 1 !important;
    display: flex !important;
    align-items: baseline !important;
    margin-bottom: 5px !important;
}

/* Mobile Specific Fix for 8+ and 20+ blocks */
@media (max-width: 768px) {
    .bringer-hero-block .stg-row {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
    }

    /* Force the counter columns to align their tops */
    .stg-m-col-6 {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        margin-bottom: 20px !important;
    }

    .bringer-counter.bringer-small-counter {
        height: auto !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .bringer-counter-number {
        font-size: 32px !important; /* Standardize size */
        margin-bottom: 5px !important;
    }

    .bringer-counter-label {
        font-size: 13px !important;
        line-height: 1.3 !important;
        min-height: 3.2em !important; /* Ensure labels have same height for alignment */
    }
}

/* Social Icons: Remove jump, add brand color filling */
.bringer-socials-list li a {
    transition: all 0.3s ease !important;
    transform: none !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.bringer-socials-list li a:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.bringer-socials-list li a i {
    transition: background 0.3s ease !important;
}

.bringer-socials-facebook:hover i { background-color: #1877F2 !important; }
.bringer-socials-instagram:hover i { 
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background-color: transparent !important;
}
.bringer-socials-telegram:hover i { background-color: #26A5E4 !important; }

/* Global Spacing Normalization */
section {
    padding: 80px 0 !important;
}

.stg-bottom-gap-l {
    margin-bottom: 40px !important;
}

.stg-bottom-gap {
    margin-bottom: 25px !important;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0 !important;
    }
}

/* Pricing Section: Reliable Grid/Scroll */
@media (min-width: 993px) {
    .bringer-price-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }

    .bringer-price-table {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 40px !important;
    }
    
    .bringer-price-table .bringer-button {
        margin-top: auto !important;
    }

    .bringer-price-dots {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .bringer-price-grid-wrapper {
        width: 100% !important;
        overflow: hidden !important;
        padding: 20px 0 !important;
    }

    .bringer-price-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 0 10% !important;
        -webkit-overflow-scrolling: touch;
    }

    .bringer-price-grid::-webkit-scrollbar {
        display: none !important;
    }
    .bringer-price-grid {
        scrollbar-width: none !important;
    }

    .bringer-price-table {
        width: 80vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        min-height: 480px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .bringer-price-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }

    .bringer-price-dots span {
        width: 8px !important;
        height: 8px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 50% !important;
    }

    .bringer-price-dots span.active {
        background: #ffffff !important;
        transform: scale(1.3) !important;
        opacity: 1 !important;
    }
}
