
  /* Base Glass Container */
  .glass-mega-menu {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  /* Professional Card Sizing */
  .feature-hero-card, .feature-sub-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
  }

  .dark-mode-card { background: #0f172a; border-color: #1e293b; color: #fff; }

  /* Icon Badges */
  .badge-icon-sm {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff;
  }
  .bg-blue { background: #0d6efd; }

  /* Typography & Links */
  .fs-14 { font-size: 14px !important; }
  .vertical-links-compact { list-style: none; padding: 0; margin: 0; }
  .vertical-links-compact li { margin-bottom: 2px; }
  
  .vertical-links-compact a {
    display: flex; align-items: center;
    text-decoration: none; color: #475569;
    font-size: 13px; font-weight: 500;
    padding: 5px 0; transition: all 0.2s ease;
  }

  .vertical-links-compact a i {
    width: 24px; font-size: 14px; margin-right: 10px;
    display: flex; justify-content: center; flex-shrink: 0;
  }

  /* Dark List Overrides */
  .vertical-links-compact.dark a { color: #cbd5e1; }
  .vertical-links-compact.dark a i { color: #38bdf8; }

  /* Hover States */
  .vertical-links-compact a:hover { color: #0d6efd; padding-left: 4px; }
  .vertical-links-compact.dark a:hover { color: #fff; }
  .vertical-links-compact a:hover i { transform: scale(1.15); }

  /* Badge Styling */
  .badge-auto { font-size: 10px; background: #eff6ff; color: #0d6efd; padding: 1px 5px; border-radius: 4px; font-weight: 700; margin-left: 5px; }
  .badge-mini { font-size: 11px; padding: 2px 8px; border-radius: 20px; background: rgba(255, 193, 7, 0.1); display: inline-block; margin-bottom: 8px; }

  /* Footer & Unique Buttons */
  .mega-footer-compact { border-top: 1px solid #f1f5f9; margin-top: 16px; padding-top: 16px; }
  .small-text { font-size: 12px; color: #64748b; }
  .user-proof-sm img { width: 22px; height: 22px; border-radius: 50%; margin-left: -8px; border: 2px solid #fff; }

  .view-all-link-unique { font-size: 13px; font-weight: 700; color: #0d6efd; text-decoration: none; position: relative; }
  .view-all-link-unique:hover .arrow-move { transform: translateX(5px); display: inline-block; transition: 0.3s; }

  .btn-demo-unique { text-decoration: none; font-size: 13px; font-weight: 700; color: #475569; display: flex; align-items: center; gap: 8px; }
  .btn-demo-unique:hover { color: #0d6efd; }
  .btn-demo-unique:hover svg { transform: translateX(3px); transition: 0.3s; }

  .btn-creative-primary {
    position: relative; background: #0d6efd; color: #fff !important;
    padding: 8px 20px; border-radius: 10px; font-size: 13px; font-weight: 600;
    text-decoration: none; overflow: hidden; display: inline-block;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2); transition: 0.3s;
  }
  .btn-creative-primary:hover { background: #0056b3; transform: translateY(-1px); }

  .btn-shimmer {
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
  }
  @keyframes shimmer { 0% {left: -100%} 20% {left: 100%} 100% {left: 100%} }

  /* Forces spacing consistency inside the mega-menu grid systems */
#featureDropdown .d-flex.align-items-center.mb-3 {
  gap: 12px !important; /* Forces the structural layout separation between icon and title text */
}

#featureDropdown h6.fw-bold {
  margin-left: 0 !important; /* Cleans up any competing layout drifts */
  margin-bottom: 0 !important;
}

/* Fixes the nested subtitle layouts (e.g., Sales & Billing) */
.feature-sub-card h6 i {
  margin-right: 10px !important; /* Forces layout tracking space for individual section icons */
}