/* Shared Proovd top nav — include on static HTML pages for SEO crawl paths */
.proovd-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #f3f4f6;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: Inter, system-ui, sans-serif;
}
.proovd-nav-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proovd-nav-brand {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
  text-decoration: none;
  z-index: 1;
}
.proovd-nav-brand:hover { color: #15803d; text-decoration: none; }
.proovd-nav-links {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
  align-items: center;
}
.proovd-nav-links a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0.5rem;
}
.proovd-nav-links a:hover {
  color: #15803d;
  background: #f0fdf4;
  text-decoration: none;
}
.proovd-nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: #15803d;
  text-decoration: none;
  z-index: 1;
}
.proovd-nav-cta:hover { color: #166534; text-decoration: none; }
.proovd-nav-mobile {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.5rem;
  gap: 0.25rem;
  overflow-x: auto;
  border-top: 1px solid #f3f4f6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.proovd-nav-mobile a {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  border-radius: 0.375rem;
  white-space: nowrap;
}
.proovd-nav-mobile a:hover {
  color: #15803d;
  background: #f0fdf4;
  text-decoration: none;
}
@media (min-width: 768px) {
  .proovd-nav-links { display: flex; }
  .proovd-nav-mobile { display: none; }
  .proovd-nav-inner { max-width: 64rem; }
}
