/*
  Owned site chrome for the Framer homepage: static header/footer + hide Framer’s
  duplicate Global Navigation Bar and footer blocks (all breakpoint copies).
*/
#main [data-framer-name="Global Navigation Bar"],
#main [data-framer-name="Website Footer Section"],
#main [data-framer-name="Footer Component"] {
  display: none !important;
}

.somaos-site-header {
  position: sticky;
  top: 0;
  z-index: 100000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 23, 25, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.somaos-site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.somaos-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: rgb(17, 23, 25);
  text-decoration: none;
}

.somaos-site-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.somaos-site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 20px;
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
}

.somaos-site-nav a {
  color: rgba(17, 23, 25, 0.65);
  text-decoration: none;
}

.somaos-site-nav a:hover {
  color: rgb(17, 23, 25);
}

@media (max-width: 809.98px) {
  .somaos-site-nav a[href*="solutions"] {
    display: none !important;
  }
}

.somaos-site-footer {
  border-top: 1px solid rgba(17, 23, 25, 0.1);
  background: rgb(255, 255, 255);
  padding: 28px 24px;
}

.somaos-site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.somaos-site-footer-copy {
  margin: 0;
  font-family: "Geist", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(17, 23, 25, 0.5);
}
