/* Match supporting-page header visuals to index.html navigation */

body.lead-page,
body.legal-page {
  padding-top: 0;
}

.vc-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.vc-header__inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vc-header__left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-width: 0;
}

.vc-logo img {
  height: 27px;
  width: auto;
}

.vc-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.vc-nav a {
  padding: 0.45rem 0.55rem;
  background: transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
  box-shadow: none;
}

.vc-nav a:hover,
.vc-nav a.is-active,
.vc-nav a[aria-current="page"] {
  color: #0284c7;
  background: rgba(14, 165, 233, 0.1);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.16);
}

.vc-nav a:focus-visible,
.vc-nav a:active {
  color: #0284c7;
  background: rgba(14, 165, 233, 0.1);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.16);
}

.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.28s ease, color 0.28s ease, background-color 0.28s ease;
  box-shadow: none;
}

.vc-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vc-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
  transform: none;
}

.vc-home-link {
  padding: 0.45rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0284c7;
  transition: color 0.28s ease;
}

.vc-home-link:hover {
  background: transparent;
  border: 0;
  color: #0369a1;
}

@media (max-width: 980px) {
  .vc-header__inner {
    min-height: auto;
    padding: 0.7rem 0;
    align-items: flex-start;
  }

  .vc-header__left {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .vc-nav {
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.2rem;
  }

  .vc-nav a {
    font-size: 0.88rem;
  }
}
