
  
    /* Industries menu */
    .industry-badge {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      font-family: inherit;
      flex: 0 0 48px;
    }

    /* Sticky in-page navigation */
    .page-subnav {
      position: sticky;
      top: 76px;
      background: #fff;
      border-bottom: 2px solid #e5e7eb;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    }

    .page-subnav .nav-link {
      padding: .75rem 1rem;
      color: #6b7280;
      font-weight: 500;
      border-bottom: 3px solid transparent;
      transition: all .2s ease;
      white-space: nowrap;
      font-size: .9rem;
    }

    .page-subnav .nav-link:hover {
      color: var(--qh-blue);
      background: #f8f9fa;
    }

    .page-subnav .nav-link.active {
      color: var(--qh-blue);
      border-bottom-color: var(--qh-blue);
      font-weight: 600;
      background: #f8f9fa;
    }

    /* Industry sections */
    .industry-section {
      scroll-margin-top: 140px;
      padding: 4rem 0;
    }

    .industry-section:nth-child(even) {
      background: #f8f9fb;
    }

    .industry-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .industry-badge-lg {
      width: 72px;
      height: 72px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .challenge-card {
      background: #fff;
      border-left: 4px solid var(--qh-blue);
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .solution-pill {
      display: inline-block;
      background: var(--qh-blue);
      color: #fff;
      padding: .375rem .75rem;
      border-radius: 20px;
      font-size: .85rem;
      font-weight: 500;
      margin: .25rem;
    }

    .client-logo {
      height: 48px;
      opacity: .6;
      filter: grayscale(100%);
      transition: all .2s;
    }

    .client-logo:hover {
      opacity: 1;
      filter: grayscale(0%);
    }