<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>KB Software LLC - Building Software That Works</title>
  <!-- Google tag (gtag.js) -->
  <script async src="https://www.googletagmanager.com/gtag/js?id=G-QFNTRMNS09"></script>
  <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());
    gtag('config', 'G-QFNTRMNS09');
    gtag('config', 'AW-17782832258');
  </script>
  <meta name="p:domain_verify" content="7ddb0ff1ead6aa2acf9eee177ba2e444"/>
  <meta name="description" content="KB Software LLC builds reliable, powerful software tools — from Windows utilities and cybersecurity to AI-powered productivity add-ons. Based in Miami/Boca Raton, FL.">
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: #0a0a0a; color: #fff; line-height: 1.6; }

    /* Navigation */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; }
    .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { font-weight: 800; font-size: 20px; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
    .nav-logo span { color: #3b82f6; }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a { color: #999; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }
    .nav-cta { background: #3b82f6; color: #fff !important; padding: 8px 18px; border-radius: 6px; font-weight: 600; }
    .nav-cta:hover { background: #2563eb; }

    /* Hero */
    .hero { max-width: 1200px; margin: 0 auto; padding: 140px 24px 80px; text-align: center; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); padding: 6px 16px; border-radius: 50px; font-size: 13px; color: #3b82f6; margin-bottom: 28px; font-weight: 500; }
    .hero h1 { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
    .hero h1 span { background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero p { font-size: 18px; color: #888; max-width: 640px; margin: 0 auto 40px; }
    .hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 48px; }
    .hero-stat { text-align: center; }
    .hero-stat .num { font-size: 32px; font-weight: 800; color: #fff; }
    .hero-stat .label { font-size: 13px; color: #666; margin-top: 4px; }

    /* Products Section */
    .products { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
    .section-label { font-size: 13px; font-weight: 600; color: #3b82f6; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
    .section-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 17px; color: #888; margin-bottom: 48px; max-width: 600px; }

    /* Product Category */
    .category { margin-bottom: 64px; }
    .category-header { margin-bottom: 24px; }
    .category-title { font-size: 22px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
    .category-title .icon { font-size: 24px; }
    .category-desc { font-size: 14px; color: #666; }

    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
    .product-card { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 28px; transition: all 0.2s; text-decoration: none; color: inherit; display: block; }
    .product-card:hover { border-color: #3b82f6; transform: translateY(-2px); }
    .product-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
    .product-name { font-size: 18px; font-weight: 700; }
    .product-badge { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
    .badge-live { background: rgba(34,197,94,0.15); color: #22c55e; }
    .badge-coming { background: rgba(234,179,8,0.15); color: #eab308; }
    .badge-free { background: rgba(59,130,246,0.15); color: #3b82f6; }
    .product-desc { font-size: 14px; color: #888; margin-bottom: 16px; line-height: 1.5; }
    .product-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .product-tag { font-size: 11px; background: #1a1a1a; color: #666; padding: 3px 8px; border-radius: 4px; }
    .product-arrow { color: #3b82f6; font-size: 18px; }

    /* About Section */
    .about { background: #0f0f0f; padding: 80px 24px; }
    .about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .about-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
    .about-text p { font-size: 16px; color: #888; margin-bottom: 16px; }
    .about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .about-highlight { background: #151515; border: 1px solid #1e1e1e; border-radius: 10px; padding: 20px; }
    .about-highlight .num { font-size: 28px; font-weight: 800; color: #3b82f6; }
    .about-highlight .text { font-size: 13px; color: #888; margin-top: 4px; }

    /* Footer */
    footer { border-top: 1px solid #1a1a1a; padding: 48px 24px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
    .footer-brand .footer-logo { font-weight: 800; font-size: 18px; margin-bottom: 8px; }
    .footer-brand .footer-logo span { color: #3b82f6; }
    .footer-brand p { font-size: 13px; color: #555; max-width: 280px; }
    .footer-col h4 { font-size: 13px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
    .footer-col a { display: block; font-size: 14px; color: #555; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom { max-width: 1200px; margin: 24px auto 0; padding-top: 24px; border-top: 1px solid #1a1a1a; display: flex; justify-content: space-between; font-size: 13px; color: #444; }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 { font-size: 32px; }
      .hero-stats { gap: 24px; }
      .hero-stat .num { font-size: 24px; }
      .nav-links { display: none; }
      .products-grid { grid-template-columns: 1fr; }
      .about-container { grid-template-columns: 1fr; gap: 32px; }
      .about-highlights { grid-template-columns: 1fr 1fr; }
      .footer-container { flex-direction: column; }
      .footer-bottom { flex-direction: column; gap: 8px; }
    }
  </style>
</head>
<body>
  <!-- Navigation -->
  <nav>
    <div class="nav-container">
      <a href="/" class="nav-logo">KB <span>Software</span></a>
      <div class="nav-links">
        <a href="#products">Products</a>
        <a href="#services">Services</a>
        <a href="#about">About</a>
        <a href="mailto:contact@kbsoftware.org">Contact</a>
        <a href="mailto:contact@kbsoftware.org" class="nav-cta">Contact Us</a>
      </div>
    </div>
  </nav>

  <!-- Hero Section -->
  <section class="hero">
    <div class="hero-badge">Miami/Boca Raton, FL &mdash; Software Company</div>
    <h1>Building software <span>that works</span></h1>
    <p>Florida-based engineering studio specializing in production software development. We build SaaS backends, Telegram bots, Python web crawlers, Windows tools, and custom automation systems. Every project is tested, deployed, and documented before handoff.</p>
    <div class="hero-stats">
      <div class="hero-stat">
        <div class="num">13</div>
        <div class="label">Products</div>
      </div>
      <div class="hero-stat">
        <div class="num">14</div>
        <div class="label">Live Sites</div>
      </div>
      <div class="hero-stat">
        <div class="num">2020</div>
        <div class="label">Founded</div>
      </div>
    </div>
  </section>

  <!-- Products Section -->
  <section class="products" id="products">
    <div class="section-label">Our Products</div>
    <div class="section-title">Tools that solve real problems</div>
    <div class="section-subtitle">Every product is designed with reliability, security, and user experience at the core.</div>

    <!-- Windows & Security -->
    <div class="category">
      <div class="category-header">
        <div class="category-title"><span class="icon">&#x1F5A5;</span> Windows & Security</div>
        <div class="category-desc">Tools for Windows users and cybersecurity</div>
      </div>
      <div class="products-grid">
        <a href="https://windowsupgradehelp.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">WinReady (Eleven Upgrade Tool)</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Upgrade any PC to Windows 11 — even without TPM 2.0 or supported CPU. Uses Microsoft's own documented registry methods. Two-click upgrade.</div>
          <div class="product-tags">
            <span class="product-tag">Windows 11</span>
            <span class="product-tag">$39</span>
            <span class="product-tag">One-time</span>
          </div>
        </a>
        <a href="https://beamsecure.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">BeamSecure</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Tamper-proof cybersecurity audit fabric. Forensic infrastructure anchored by cryptography, quorum, and time.</div>
          <div class="product-tags">
            <span class="product-tag">Cybersecurity</span>
            <span class="product-tag">Enterprise</span>
            <span class="product-tag">Audit</span>
          </div>
        </a>
      </div>
    </div>

    <!-- SaaS & Platforms -->
    <div class="category">
      <div class="category-header">
        <div class="category-title"><span class="icon">&#x1F4BC;</span> SaaS & Platforms</div>
        <div class="category-desc">Production SaaS products and business platforms</div>
      </div>
      <div class="products-grid">
        <a href="https://affiliatesflow.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">AffiliatesFlow</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Smart affiliate ad network. Recruit affiliates, track referrals, and pay commissions — all at a simple 6% flat fee.</div>
          <div class="product-tags">
            <span class="product-tag">Affiliate Marketing</span>
            <span class="product-tag">6% Fee</span>
          </div>
        </a>
        <a href="https://kb5forum.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KB5 Forum</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">SEO-optimized forum hosting with AI content generation and AffiliatesFlow ad integration. Forum as a Service.</div>
          <div class="product-tags">
            <span class="product-tag">Forum Hosting</span>
            <span class="product-tag">AI Content</span>
            <span class="product-tag">SEO</span>
          </div>
        </a>
        <a href="https://kb365service.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KB365 Service</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Business tools that work. Integrated suite of productivity and operations tools for small businesses.</div>
          <div class="product-tags">
            <span class="product-tag">Business Tools</span>
            <span class="product-tag">Productivity</span>
          </div>
        </a>
        <a href="https://kbdenialrecovery.pages.dev" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KB Denial Recovery</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">AI-powered insurance denial recovery for healthcare providers. Automated appeal generation, root cause analysis, and revenue recovery.</div>
          <div class="product-tags">
            <span class="product-tag">Healthcare</span>
            <span class="product-tag">Insurance</span>
            <span class="product-tag">AI</span>
          </div>
        </a>
      </div>
    </div>

    <!-- AI & Automation -->
    <div class="category">
      <div class="category-header">
        <div class="category-title"><span class="icon">&#x1F916;</span> AI & Automation</div>
        <div class="category-desc">AI-powered tools and intelligent automation</div>
      </div>
      <div class="products-grid">
        <a href="https://kianbot.ai" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KianBot</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">AI software factory. Automated code generation, deployment pipelines, and intelligent development workflows.</div>
          <div class="product-tags">
            <span class="product-tag">AI</span>
            <span class="product-tag">Automation</span>
            <span class="product-tag">DevOps</span>
          </div>
        </a>
        <a href="https://kianclaw.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KianClaw</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">AI personal assistant for your PC. Mileage tracking, expense management, remote control, and desktop automation.</div>
          <div class="product-tags">
            <span class="product-tag">AI Assistant</span>
            <span class="product-tag">Windows</span>
            <span class="product-tag">Desktop</span>
          </div>
        </a>
      </div>
    </div>

    <!-- Data & Real Estate -->
    <div class="category">
      <div class="category-header">
        <div class="category-title"><span class="icon">&#x1F3E0;</span> Data & Real Estate</div>
        <div class="category-desc">Public records data platforms and real estate intelligence</div>
      </div>
      <div class="products-grid">
        <a href="https://kbforeclosures.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">KBForeclosures</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Multi-state foreclosure data engine. Automated courthouse crawlers, parcel enrichment, and property valuation across 41+ FL counties.</div>
          <div class="product-tags">
            <span class="product-tag">Real Estate</span>
            <span class="product-tag">Data Pipeline</span>
            <span class="product-tag">450K+ Records</span>
          </div>
        </a>
        <a href="https://foreclosuresdeals.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">ForeclosuresDeals</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Consumer foreclosure listings marketplace. Real properties below market value, powered by the KBForeclosures data engine.</div>
          <div class="product-tags">
            <span class="product-tag">Marketplace</span>
            <span class="product-tag">Real Estate</span>
            <span class="product-tag">Consumer</span>
          </div>
        </a>
      </div>
    </div>

    <!-- Privacy & Infrastructure -->
    <div class="category">
      <div class="category-header">
        <div class="category-title"><span class="icon">&#x2601;&#xFE0F;</span> Privacy & Infrastructure</div>
        <div class="category-desc">Privacy-first tools and cloud infrastructure</div>
      </div>
      <div class="products-grid">
        <a href="https://r2dee2.com" target="_blank" class="product-card">
          <div class="product-card-header">
            <div class="product-name">R2DEE2</div>
            <span class="product-badge badge-live">Live</span>
          </div>
          <div class="product-desc">Private email that actually respects you. No ads, no tracking, no data mining. Just email. $1.99/mo.</div>
          <div class="product-tags">
            <span class="product-tag">Privacy</span>
            <span class="product-tag">Email</span>
            <span class="product-tag">$1.99/mo</span>
          </div>
        </a>
      </div>
    </div>
  </section>

  <!-- What We Build Section -->
  <section id="services" style="padding: 80px 24px; max-width: 1200px; margin: 0 auto;">
    <p style="color: #3b82f6; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;">WHAT WE BUILD</p>
    <h2 style="font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #ffffff; margin-bottom: 12px;">Production software across every stack</h2>
    <p style="color: #9ca3af; font-size: 1.1rem; margin-bottom: 48px;">Every engagement is scoped, built, tested, and shipped. No handoff without documentation.</p>

    <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;">

      <!-- SaaS & Web Applications -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x1F310;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">SaaS & Web Applications</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Full-stack SaaS on Cloudflare Workers, D1 & R2</li>
          <li>&#x2192; Custom dashboards and admin panels</li>
          <li>&#x2192; Subscription and licensing systems</li>
          <li>&#x2192; Multi-tenant architectures</li>
        </ul>
      </div>

      <!-- Automation & Bots -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x1F916;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Automation & Bots</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Telegram bots with custom commands & scheduled tasks</li>
          <li>&#x2192; Browser automation using Playwright</li>
          <li>&#x2192; Desktop automation tools (Windows)</li>
          <li>&#x2192; Workflow automation across web services and APIs</li>
        </ul>
      </div>

      <!-- Data & Web Scraping -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x1F577;&#xFE0F;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Data & Web Scraping</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Python web crawlers for any public data source</li>
          <li>&#x2192; County-level public records scrapers</li>
          <li>&#x2192; Postgres data pipelines and storage</li>
          <li>&#x2192; Scheduled scraping with retry logic & proxy rotation</li>
          <li>&#x2192; Data cleaning, deduplication, and export</li>
        </ul>
      </div>

      <!-- Windows Tools & System Software -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x1F5A5;&#xFE0F;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Windows Tools & System Software</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Custom Windows utilities and installers</li>
          <li>&#x2192; Registry-based system tools</li>
          <li>&#x2192; Hardware-bound licensing (anti-piracy)</li>
          <li>&#x2192; Desktop applications with auto-update</li>
        </ul>
      </div>

      <!-- Trading & Financial Tools -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x1F4C8;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Trading & Financial Tools</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Order flow analysis tools</li>
          <li>&#x2192; Custom indicators and signal systems</li>
          <li>&#x2192; Broker API integrations (IBKR, etc.)</li>
          <li>&#x2192; Backtesting and data pipelines</li>
        </ul>
      </div>

      <!-- Infrastructure & DevOps -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x2699;&#xFE0F;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Infrastructure & DevOps</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Cloudflare Workers deployment and architecture</li>
          <li>&#x2192; Proxmox virtualization setups</li>
          <li>&#x2192; Distributed worker fleets</li>
          <li>&#x2192; Home lab and private datacenter builds</li>
          <li>&#x2192; Server provisioning and monitoring</li>
        </ul>
      </div>

      <!-- Cloud & Edge Computing -->
      <div style="background: #111111; border: 1px solid #1f2937; border-radius: 12px; padding: 28px;">
        <div style="font-size: 1.5rem; margin-bottom: 12px;">&#x2601;&#xFE0F;</div>
        <h3 style="color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;">Cloud & Edge Computing</h3>
        <ul style="color: #9ca3af; font-size: 0.9rem; line-height: 1.8; list-style: none; padding: 0; margin: 0;">
          <li>&#x2192; Cloudflare Pages, Workers, R2, KV, D1 deployments</li>
          <li>&#x2192; Edge API design</li>
          <li>&#x2192; Serverless backend architecture</li>
          <li>&#x2192; Global low-latency systems</li>
        </ul>
      </div>

    </div>
  </section>

  <!-- About Section -->
  <section class="about" id="about">
    <div class="about-container">
      <div class="about-text">
        <h2>Built in Miami/Boca Raton. Used everywhere.</h2>
        <p>KB Software LLC is a Florida-based engineering studio specializing in production software development. We ship SaaS backends, Telegram bots, Python web crawlers, Windows tools, and custom automation systems — fully tested, deployed, and documented before every handoff.</p>
        <p>Our philosophy is simple: real shipped products, not prototypes. US-based LLC.</p>
        <p>From Cloud & Edge Computing and Infrastructure & DevOps, to Trading & Financial Tools, Windows utilities, Data & Web Scraping, Automation & Bots, and full SaaS & Web Applications — we build software that ships.</p>
      </div>
      <div class="about-highlights">
        <div class="about-highlight">
          <div class="num">13</div>
          <div class="text">Products shipped</div>
        </div>
        <div class="about-highlight">
          <div class="num">5 Gbps</div>
          <div class="text">AT&T Fiber infrastructure</div>
        </div>
        <div class="about-highlight">
          <div class="num">30+</div>
          <div class="text">Years cross-domain experience</div>
        </div>
        <div class="about-highlight">
          <div class="num">24/7</div>
          <div class="text">Customer support</div>
        </div>
      </div>
    </div>
  </section>

  <!-- Footer -->
  <footer>
    <div class="footer-container">
      <div class="footer-brand">
        <div class="footer-logo">KB <span>Software</span></div>
        <p>Building software that works — once and forever. Miami/Boca Raton, FL.</p>
      </div>
      <div class="footer-col">
        <h4>Products</h4>
        <a href="https://windowsupgradehelp.com" target="_blank">WinReady</a>
        <a href="https://affiliatesflow.com" target="_blank">AffiliatesFlow</a>
        <a href="https://kb5forum.com" target="_blank">KB5 Forum</a>
        <a href="https://kbforeclosures.com" target="_blank">KBForeclosures</a>
        <a href="https://foreclosuresdeals.com" target="_blank">ForeclosuresDeals</a>
      </div>
      <div class="footer-col">
        <h4>More</h4>
        <a href="https://kianbot.ai" target="_blank">KianBot</a>
        <a href="https://kianclaw.com" target="_blank">KianClaw</a>
        <a href="https://r2dee2.com" target="_blank">R2DEE2</a>
        <a href="https://beamsecure.com" target="_blank">BeamSecure</a>
        <a href="https://kb365service.com" target="_blank">KB365 Service</a>
      </div>
      <div class="footer-col">
        <h4>Contact</h4>
        <a href="mailto:contact@kbsoftware.org">contact@kbsoftware.org</a>
        <a href="mailto:support@kbsoftware.org">support@kbsoftware.org</a>
        <a href="mailto:careers@kbsoftware.org">careers@kbsoftware.org</a>
      </div>
      <div class="footer-col">
        <h4>Team</h4>
        <a href="mailto:kian@kbsoftware.org">kian@kbsoftware.org</a>
        <a href="mailto:yousefR@kbsoftware.org">yousefR@kbsoftware.org</a>
        <a href="mailto:samS@kbsoftware.org">samS@kbsoftware.org</a>
        <a href="mailto:amirP@kbsoftware.org">amirP@kbsoftware.org</a>
        <a href="mailto:daveA@kbsoftware.org">daveA@kbsoftware.org</a>
      </div>
      <div class="footer-col">
        <h4>Company</h4>
        <a href="/privacy">Privacy Policy</a>
        <a href="https://www.reddit.com/user/kbSoftwareLlc/" target="_blank">Reddit</a>
      </div>
    </div>
    <div class="footer-bottom">
      <span>&copy; 2025 KB Software LLC. All rights reserved.</span>
      <span>Miami/Boca Raton, Florida</span>
    </div>
  </footer>
<!-- Chat Widget -->
<div id="kb-chat-btn" onclick="toggleChat()" style="position:fixed;bottom:24px;right:24px;width:56px;height:56px;background:#3b82f6;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(59,130,246,0.4);z-index:9999;transition:transform .2s;">
  <svg width="24" height="24" fill="none" stroke="#fff" stroke-width="2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"/></svg>
</div>
<div id="kb-chat-box" style="display:none;position:fixed;bottom:92px;right:24px;width:420px;max-height:520px;background:#111;border:1px solid #1f2937;border-radius:16px;z-index:9999;box-shadow:0 8px 32px rgba(0,0,0,0.5);overflow:hidden;font-family:'Inter',sans-serif;">
  <div style="background:#151515;padding:16px 20px;border-bottom:1px solid #1f2937;display:flex;justify-content:space-between;align-items:center;">
    <div>
      <div style="font-weight:700;font-size:14px;color:#fff;">KB Software Team</div>
      <div style="font-size:11px;color:#3b82f6;">Systems Analyzer</div>
    </div>
    <div onclick="toggleChat()" style="cursor:pointer;color:#666;font-size:18px;">&times;</div>
  </div>
  <div id="kb-chat-msgs" style="padding:16px;height:300px;overflow-y:auto;display:flex;flex-direction:column;gap:12px;">
    <div style="background:#1a1a2e;color:#9ca3af;padding:10px 14px;border-radius:12px;font-size:13px;max-width:85%;align-self:flex-start;">Hey! We're the KB Software team. What can we help you build?</div>
  </div>
  <div style="padding:12px;border-top:1px solid #1f2937;display:flex;gap:8px;">
    <input id="kb-chat-input" type="text" placeholder="Ask about our services..." onkeydown="if(event.key==='Enter')sendChat()" style="flex:1;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:8px;padding:10px 14px;color:#fff;font-size:13px;outline:none;font-family:inherit;" />
    <button onclick="sendChat()" style="background:#3b82f6;border:none;border-radius:8px;padding:10px 14px;cursor:pointer;color:#fff;font-weight:600;font-size:13px;">Send</button>
  </div>
</div>
<script>
var _chatOpen=false;
function toggleChat(){_chatOpen=!_chatOpen;document.getElementById('kb-chat-box').style.display=_chatOpen?'flex':'none';document.getElementById('kb-chat-box').style.flexDirection='column';if(_chatOpen)document.getElementById('kb-chat-input').focus();}
function addMsg(text,isUser){var d=document.getElementById('kb-chat-msgs');var m=document.createElement('div');m.style.cssText='padding:10px 14px;border-radius:12px;font-size:13px;max-width:85%;line-height:1.5;word-wrap:break-word;align-self:'+(isUser?'flex-end':'flex-start');m.style.background=isUser?'#3b82f6':'#1a1a2e';m.style.color=isUser?'#fff':'#9ca3af';m.textContent=text;d.appendChild(m);d.scrollTop=d.scrollHeight;}
function sendChat(){var inp=document.getElementById('kb-chat-input');var msg=inp.value.trim();if(!msg)return;addMsg(msg,true);inp.value='';inp.disabled=true;var dots=document.createElement('div');dots.id='kb-typing';dots.style.cssText='padding:10px 14px;border-radius:12px;font-size:13px;max-width:85%;background:#1a1a2e;color:#555;align-self:flex-start';dots.textContent='Thinking...';document.getElementById('kb-chat-msgs').appendChild(dots);
fetch('https://kbforeclosures.com/api/chat',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({message:msg})}).then(function(r){return r.json()}).then(function(d){var t=document.getElementById('kb-typing');if(t)t.remove();addMsg(d.reply||'Sorry, no response.',false);inp.disabled=false;inp.focus();}).catch(function(){var t=document.getElementById('kb-typing');if(t)t.remove();addMsg('Connection error. Please try again.',false);inp.disabled=false;});}
</script>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js" defer></script>
</body>
</html>
