
/* ========================================
   MOBILE CAROUSEL & SCROLL INDICATORS
   ======================================== */
@media (max-width: 768px) {
    /* Turn grids into horizontal scroll snaps on mobile */
    .features-grid, 
    .steps-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem !important;
        padding: 0.5rem 1rem 2rem 1rem !important; /* Bottom padding for scrollbar/dots */
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
        grid-template-columns: none !important; /* Override grid styles */
    }

    .features-grid::-webkit-scrollbar,
    .steps-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .feature-card,
    .step-card {
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: center;
        flex-shrink: 0;
        margin: 0 !important; /* Reset margins */
    }

    /* Scroll Indicators (Dots/Lines) */
    .scroll-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: -1rem;
        margin-bottom: 2rem;
    }

    .scroll-dot {
        width: 6px;
        height: 6px;
        background-color: var(--gray-300);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .scroll-dot.active {
        width: 24px;
        background-color: var(--brand-primary);
    }
}
