/* [Keep all your existing CSS from * to .software-hero] */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #f9fafb;
            overflow-x: hidden;
        }
        
        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
            z-index: 9999;
            transition: width 0.1s linear;
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
        }
        
        .software-hero {
            background: linear-gradient(180deg, #ffffff 0%, #fef3f2 30%, #fff7ed 60%, #fef3f2 100%);
            padding: 6rem 5% 4rem;
            color: #0f172a;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .software-hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            animation: float-blob 25s infinite ease-in-out;
        }
        
        .software-hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
            bottom: -200px;
            left: -150px;
            animation: float-blob 20s infinite ease-in-out reverse;
        }
        
        @keyframes float-blob {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-30px, 30px) scale(0.95); }
        }
        
        .hero-content {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 2px solid #bfdbfe;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: #1e40af;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 2rem;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
            animation: badge-bounce 3s infinite;
        }
        
        @keyframes badge-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #0f172a;
            letter-spacing: -0.02em;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            color: #64748b;
        }
        
        /* Stats Section */
        .software-stats {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 5% 0;
            position: relative;
            z-index: 1;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            display: block;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        /* Category Tabs */
        .category-tabs-container {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding: 0 5%;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .category-tab {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            background: white;
            color: #6b7280;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        
        .category-tab:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
            color: #1e40af;
        }
        
        .category-tab.active {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border-color: #1e40af;
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
        }
        
        .tab-icon {
            font-size: 1.3rem;
        }
        
        /* Tab Content */
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Software Container */
        .software-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5% 6rem;
        }
        
        /* [Keep all your software-card styles] */
        
        .software-card {
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 3rem;
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 0;
        }
        
        .software-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #3b82f6, #f97316, #3b82f6);
            background-size: 200% 100%;
            animation: gradient-shift 3s ease infinite;
        }
        
        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .software-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
        }
        
        .software-price-sticker {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 12px;
            font-size: 1.4rem;
            font-weight: 900;
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
            z-index: 10;
            transform: rotate(3deg);
            animation: sticker-bounce 3s ease-in-out infinite;
        }

        .software-price-sticker.paid {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
        }

        .software-price-sticker.freemium {
            background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        @keyframes sticker-bounce {
            0%, 100% { transform: rotate(3deg) translateY(0); }
            50% { transform: rotate(3deg) translateY(-5px); }
        }
        
        .software-preview {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .software-preview-wrapper {
            position: relative;
            width: 100%;
            max-width: 320px;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .software-card:hover .software-preview-wrapper {
            transform: scale(1.05) rotateY(5deg);
        }
        
        .software-preview-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            display: block;
        }
        
        .gallery-indicator {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
            z-index: 5;
            transition: all 0.3s ease;
        }
        
        .software-preview-wrapper:hover .gallery-indicator {
            background: rgba(59, 130, 246, 0.9);
            transform: scale(1.1);
        }
        
        .software-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            overflow: hidden;
        }
        
        .software-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .software-category {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            color: #1e40af;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 2px solid #bfdbfe;
        }
        
        .software-version {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            color: #15803d;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 2px solid #bbf7d0;
        }
        
        .software-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        
        .software-tagline {
            font-size: 1.1rem;
            color: #3b82f6;
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-style: italic;
        }
        
        .software-description {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .software-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1.1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: #1e40af;
            border: 2px solid #1e40af;
            box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
        }
        
        .btn-secondary:hover {
            background: #1e40af;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
        }

        .no-software {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .no-software-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
        }

        .no-software h3 {
            font-size: 1.8rem;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .no-software p {
            font-size: 1.1rem;
            color: #6b7280;
        }
        
        /* CTA Section */
        .software-cta {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 5rem 5%;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }
        
        .software-cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: drift 30s linear infinite;
        }
        
        @keyframes drift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }
        
        .cta-content {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-content p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: white;
            color: #1e40af;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .hero-title { font-size: 2.5rem; }
            .software-card {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .software-preview-wrapper {
                max-width: 280px;
                margin: 0 auto;
            }
            .software-title { font-size: 1.8rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .category-tabs { gap: 0.8rem; }
            .category-tab {
                padding: 1rem 2rem;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 640px) {
            .software-hero { padding: 4rem 5% 3rem; }
            .hero-title { font-size: 2rem; }
            .software-card { padding: 2rem 1.5rem; }
            .software-buttons { flex-direction: column; }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .cta-content h2 { font-size: 1.8rem; }
            .category-tabs {
                flex-direction: column;
                align-items: stretch;
            }
            .category-tab {
                justify-content: center;
            }
        }
/* ── Extra styles not in original ── */

/* Cards stack vertically — each card is a full-width horizontal row */
.software-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 100px;
    padding: 0 6px;
    margin-left: 4px;
}
.category-tab.active .tab-count {
    background: rgba(255,255,255,0.35);
}

.software-platform {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #bbf7d0;
}

.software-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0.75rem 0;
}
.tech-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    letter-spacing: 0.3px;
}
.tech-more {
    background: #e0e7ff;
    color: #4338ca;
    border-color: #c7d2fe;
}

.btn-download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.3);
}

.is-featured {
    border: 2px solid #f59e0b !important;
    box-shadow: 0 0 0 4px rgba(245,158,11,0.12), 0 20px 40px rgba(0,0,0,0.1) !important;
}

.featured-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 3;
    letter-spacing: 0.5px;
}
.software-card { position: relative; }

.software-preview-placeholder {
    height: 240px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Card entrance animation */
.card-hidden  { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.card-visible { opacity: 1; transform: translateY(0); }

.software-cta {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    padding: 5rem 5%;
    text-align: center;
    color: white;
}
.software-cta .cta-content { max-width: 700px; margin: 0 auto; }
.software-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.software-cta p  { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.8; }
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1e40af;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

@media (max-width: 768px) {
    .software-grid { gap: 1.5rem; }
}

/* ── COMPREHENSIVE MOBILE RESPONSIVE ADDITIONS ── */

@media (max-width: 480px) {
    .software-hero,
    .software-section {
        padding: 3rem 0 2rem;
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .software-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .software-card {
        border-radius: 16px;
    }
    .software-preview-placeholder {
        height: 180px;
    }
    .software-cta {
        padding: 3rem 5%;
    }
    .software-cta h2 {
        font-size: 1.6rem;
    }
    .software-cta p {
        font-size: 0.95rem;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    .software-filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .software-filter-pill {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .software-tech-stack {
        gap: 4px;
    }
    .tech-tag {
        font-size: 0.68rem;
        padding: 2px 8px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }
}
