
    body.enterprise-theme {
      background: #ffffff;
      color: #0F172A;
      overflow-x: hidden;
      font-family: 'Inter', sans-serif;
    }

    .enterprise-theme .navbar {
      background: #ffffff !important;
      backdrop-filter: none !important;
      border: 1px solid rgba(255,255,255,0.5) !important;
      box-shadow: 0 20px 40px rgba(0,87,255,0.05) !important;
      border-radius: 100px !important;
      margin: 0 30px !important;
      width: calc(100% - 60px) !important;
      top: 30px !important;
      padding: 12px 30px !important;
    }
    .enterprise-theme .navbar .nav-link,
    .enterprise-theme .navbar .logo-text { color: #0B1120 !important; }
    .enterprise-theme .navbar .nav-link svg { stroke: #0B1120 !important; }
    .enterprise-theme .navbar .logo-accent { color: #255bbd !important; }

    .cursor-light {
      position: fixed;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37, 91, 189, 0.12) 0%, rgba(124, 58, 237, 0.06) 40%, transparent 70%);
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: left 0.3s ease, top 0.3s ease;
      will-change: left, top;
    }

    .bg-parallax-1 { background-image: url('../../../assets/images/bg_digital_light_1.png'); background-size: cover; background-position: center; background-attachment: fixed; background-repeat: no-repeat; }
    
    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      z-index: 0;
      animation: orb-drift 20s infinite alternate ease-in-out;
      pointer-events: none;
    }
    .shape-1 { width: 150px; height: 150px; background: rgba(99, 102, 241, 0.5); top: -50px; left: -50px; }
    .shape-2 { width: 200px; height: 200px; background: rgba(168, 85, 247, 0.5); bottom: -80px; right: -50px; animation-direction: reverse; animation-duration: 20s; }
    .shape-3 { width: 120px; height: 120px; background: rgba(59, 130, 246, 0.4); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: pulse-shape 8s infinite alternate; }
    @keyframes orb-drift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(10vw, 5vh) scale(1.1); } 100% { transform: translate(-5vw, 15vh) scale(0.9); } }

    .reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .reveal-visible { opacity: 1; transform: translateY(0); }

    /* DEEP TECH BLUE/PURPLE LAYOUT */
    .hero-bubble-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1700px;
      margin: 0 auto;
      padding: 40px 10px 0 10px;
      align-items: stretch;
      position: relative;
      z-index: 10;
    }
    
    .bubble-title-box {
      grid-column: 1 / 3;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: start; margin-top: 0 !important; padding-top: 0 !important;
      justify-content: center;
      padding: 30px 40px !important;
    }
    .bubble-para-box1 { grid-column: 1 / 2; display: flex; flex-direction: column; justify-content: center; }
    .bubble-para-box2 { grid-column: 2 / 3; display: flex; flex-direction: column; justify-content: center; }

    .bento-glass {
      background: linear-gradient(135deg, rgba(37, 91, 189, 0.25) 0%, rgba(124, 58, 237, 0.05) 100%);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(37, 91, 189, 0.5);
      border-top-color: rgba(255,255,255,0.7);
      border-left-color: rgba(255,255,255,0.4);
      border-radius: 40px;
      box-shadow: 
        0 40px 80px rgba(37, 91, 189, 0.15), 
        inset 0 30px 40px rgba(255,255,255,0.4),
        inset 0 -20px 40px rgba(37, 91, 189, 0.2),
        inset 2px 2px 5px rgba(255,255,255,0.8);
      padding: 40px;
      overflow: hidden;
      position: relative;
      transform-style: preserve-3d;
      transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .bento-glass:hover {
      box-shadow: 
        0 50px 100px rgba(37, 91, 189, 0.25), 
        inset 0 30px 40px rgba(255,255,255,0.6),
        inset 0 -20px 40px rgba(37, 91, 189, 0.3),
        inset 2px 2px 8px rgba(255,255,255,1);
      z-index: 0; 
    }
    .bento-glass > * { transform: translateZ(30px); position: relative; }

    .bento-glare {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 100;
      mix-blend-mode: overlay; border-radius: 40px;
    }
    .bento-glass:hover .bento-glare { opacity: 1; }

    .revolving-shape {
      position: absolute; border-radius: 50%; filter: blur(40px); z-index: 0; opacity: 0.6;
      animation: revolve 15s linear infinite; pointer-events: none;
    }
    @keyframes revolve { 0% { transform: rotate(0deg) translate(50px) rotate(0deg); } 100% { transform: rotate(360deg) translate(50px) rotate(-360deg); } }
    @keyframes pulse-shape { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; } 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; } }

    /* Grid 3 Columns */
    .tailored-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1700px; margin: 0 auto; padding:  40px 10px; }
    @media (max-width: 992px) { .tailored-grid { grid-template-columns: 1fr; } .hero-bubble-layout { grid-template-columns: 1fr; } }
    
    .btn-primary { background: linear-gradient(to right, #255bbd, #255bbd); color: white; padding: 20px 45px; border-radius: 100px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; box-shadow: 0 10px 30px rgba(37, 91, 189, 0.4); text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; font-size: 1.2rem; border: none; cursor: pointer; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37, 91, 189, 0.5); }
  
    
      100% { transform: rotate(360deg); }
    }

  
    

  
    
      50% { transform: translateY(-25px) rotate(180deg) scale(1.15); border-radius: 50%; box-shadow: 0 25px 45px rgba(168, 85, 247, 0.5), inset 0 0 25px rgba(255,255,255,0.8); }
      100% { transform: translateY(0) rotate(360deg) scale(1); border-radius: 16px; }
    }

  
    

  
    100% { transform: scale(1.2); opacity: 0.7; }
    }

  
    
    
      20% { opacity: 1; }
      80% { opacity: 1; }
      100% { transform: translateY(-1200px) scale(1.2); opacity: 0; }
    }
    
    
    
    
    
    
    
    

  
    50% { border-radius: 50%; transform: rotate(180deg) scale(1.1) translateY(-20px); background: rgba(255,255,255,0.2); }
      100% { border-radius: 20px; transform: rotate(360deg) scale(0.9) translateY(20px); }
    }

  
    .cyber-ring {
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 3px dashed rgba(255, 255, 255, 0.3);
      border-top: 6px solid #60A5FA;
      border-left: 6px solid #255bbd;
      box-shadow: 0 0 30px rgba(168, 85, 247, 0.5), inset 0 0 20px rgba(37, 91, 189, 0.4);
      animation: spin-cyber 14s linear infinite;
      z-index: 0;
      pointer-events: none;
    }
    .cyber-ring::before {
      content: '';
      position: absolute;
      top: 15px; left: 15px; right: 15px; bottom: 15px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.7);
      border-right: 2px solid transparent;
      border-bottom: 2px solid transparent;
      animation: spin-cyber 8s linear infinite reverse;
    }
    .cyber-ring::after {
      content: '';
      position: absolute;
      top: 35px; left: 35px; right: 35px; bottom: 35px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
      opacity: 0.5;
      animation: pulse-cyber 4s ease-in-out infinite alternate;
    }
    .cyber-ring.top-left { top: -60px; left: -60px; }
    .cyber-ring.top-right { top: -60px; right: -60px; }
    .cyber-ring.bottom-left { bottom: -60px; left: -60px; }
    .cyber-ring.bottom-right { bottom: -60px; right: -60px; }

    @keyframes spin-cyber {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    @keyframes pulse-cyber {
      0% { transform: scale(0.8); opacity: 0.2; }
      100% { transform: scale(1.2); opacity: 0.7; }
    }

  

/* MATTE GLASS BUBBLES */
.cta-bubble {
  border-radius: 50%;
  position: absolute;
  bottom: -200px;
  animation-name: float-up-bubbles;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  pointer-events: none;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7) 0%, rgba(160, 175, 195, 0.8) 25%, rgba(85, 105, 130, 0.9) 60%, rgba(30, 45, 65, 0.95) 100%);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.9), inset 0 10px 30px rgba(255, 255, 255, 0.3), inset -10px -20px 30px rgba(0, 0, 0, 0.6), 0 15px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  z-index: 5;
}

@keyframes float-up-bubbles {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(-1500px) scale(1.2); opacity: 0; }
}

.cta-bubble.b1 { width: 140px; height: 140px; left: 10%; animation-duration: 14s; animation-delay: 0s; }
.cta-bubble.b2 { width: 80px; height: 80px; left: 25%; animation-duration: 17s; animation-delay: 3s; }
.cta-bubble.b3 { width: 220px; height: 220px; left: 40%; animation-duration: 22s; animation-delay: 1s; }
.cta-bubble.b4 { width: 60px; height: 60px; left: 55%; animation-duration: 11s; animation-delay: 5s; }
.cta-bubble.b5 { width: 160px; height: 160px; left: 70%; animation-duration: 19s; animation-delay: 2s; }
.cta-bubble.b6 { width: 100px; height: 100px; left: 85%; animation-duration: 15s; animation-delay: 6s; }
.cta-bubble.b7 { width: 250px; height: 250px; left: 90%; animation-duration: 26s; animation-delay: 0s; }
.cta-bubble.b8 { width: 45px; height: 45px; left: 5%; animation-duration: 9s; animation-delay: 4s; }


        .cta-split-grid {
          display: grid;
          grid-template-columns: 1.2fr 0.8fr;
          gap: 60px;
          align-items: start; margin-top: 0 !important; padding-top: 0 !important;
        }
        @media (max-width: 1024px) {
          .cta-split-grid {
            grid-template-columns: 1fr;
            text-align: center;
          }
          .cta-split-grid > div {
            padding-right: 0 !important;
          }
        }
      
/* --- GLOBAL MOBILE OPTIMIZATION PATCH --- */
@media (max-width: 768px) {
  /* Fix container paddings */
  section, .container, .container-balanced, .container-expanded, .main-content, .hero-container, .content-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
    min-width: 0 !important;
  }
  
  /* Reset rigid min-widths causing overflow or squishing */
  [style*="min-width"], .bento-card, .glass-card, .r-card, .step-card, .folder-box, .glass-box {
    min-width: 0 !important;
    width: 100% !important;
  }
  
  /* Force inline flex containers to wrap */
  [style*="display: flex"] {
    flex-wrap: wrap !important;
  }
  
  /* Force common grid/flex layouts to stack vertically */
  .hero-bubble-layout, .bento-container, .glass-grid, .retail-grid, .hero-container, .zig-zag-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Reduce massive padding inside cards and CTA sections */
  .bento-card, .glass-card, .r-card, .step-card, .folder-box, .bento-glass, .glass-box, .massive-cta, .cta-glass-panel, .retail-cta, .r-cta-content {
    padding: 25px 20px !important;
  }
  
  /* Fix overlapping absolute elements in hero sections (e.g., Shopify page) */
  section > div > div[style*="position: relative; width: 100%; display: flex"] {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Avoid giant box shadows pushing width */
  .folder-box, .glass-card, .step-card, .bento-card {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05) !important;
  }
}
