/**
 * Site-wide üst menü — index.html, wms-list.html ve Next layout bu dosyayı yükler.
 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 3.5vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 0.85rem 1.35rem;
  flex-wrap: wrap;
}
/*
 * Logo: şeffaf PNG/SVG. Wrapper ve img üzerinde zemin, filtre, blend, gölge yok.
 */
.site-header__brand {
  display: flex;
  align-items: center;
  line-height: 0;
  margin: 0 auto 0 0;
  padding: 0;
  text-decoration: none;
  flex-shrink: 0;
  background: transparent;
  background-color: transparent;
  background-image: none;
  border: 0;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mix-blend-mode: normal;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.site-header__brand::before,
.site-header__brand::after {
  content: none;
}
.site-header__brand:hover {
  opacity: 0.94;
  filter: none;
}
.site-header__brand:focus {
  outline: none;
}
.site-header__brand:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-header__logo {
  height: clamp(2.35rem, 5.2vw, 3rem);
  width: auto;
  max-width: min(300px, 70vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
@media (max-width: 900px) {
  .site-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.55rem;
    margin-top: 0.2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    gap: 0.05rem;
  }
  .site-header__inner {
    padding-bottom: 0.65rem;
  }
}
.site-header__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  padding: 0.48rem 0.55rem;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.site-header__link:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.05);
}
.site-header__link.is-active {
  color: #0f172a;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
}
.site-header__cta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(37, 99, 235, 0.35);
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.28);
}
.site-header__cta:hover {
  filter: brightness(1.05);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.site-main {
  min-height: calc(100vh - 5rem);
}

/* Sabit üst menü altında #anchor hizalaması */
[id].section-data,
[id].section-lead,
section[id],
#pazar-verisi,
#lead,
#neden-var,
#kim {
  scroll-margin-top: 6rem;
}
