.site-header {
  padding: 18px 0 10px;
  position: relative;
  z-index: 40;
}

.site-header .site-header-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header .site-header-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  padding: 16px 18px;
}

.site-header .site-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0f172a;
  text-decoration: none;
}

.site-header .site-brand:hover {
  text-decoration: none;
}

.site-header .site-brand-badge {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.site-header .site-brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-header .site-brand-title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header .site-brand-sub {
  font-size: 13px;
  line-height: 1.35;
  color: #64748b;
}

.site-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header .site-nav a,
.site-header .site-mobile-nav a {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.site-header .site-nav a:hover,
.site-header .site-mobile-nav a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.site-header .site-nav a[aria-current="page"],
.site-header .site-mobile-nav a[aria-current="page"] {
  color: #0f172a;
}

.site-header .site-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-header .site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.site-header .site-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.site-header .site-btn-secondary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
  color: #ffffff;
}

.site-header .site-btn-secondary:hover {
  color: #ffffff;
  box-shadow: 0 20px 36px rgba(37, 99, 235, 0.3);
}

.site-header .site-btn-light {
  background: #ffffff;
  border-color: #dbe3f1;
  color: #0f172a;
}

.site-header .site-btn-light:hover {
  color: #0f172a;
  border-color: #c7d4e8;
}

.site-header .site-phone-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.site-header .site-phone-chip a {
  color: #0f172a;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.site-header .site-phone-chip span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.2;
}

.site-header .site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #dbe3f1;
  background: #ffffff;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
}

.site-header .site-mobile-panel {
  display: none;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 18px;
}

.site-header .site-mobile-panel.open {
  display: block;
}

.site-header .site-mobile-nav {
  display: grid;
  gap: 14px;
}

.site-header .site-mobile-actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 1180px) {
  .site-header .site-header-shell {
    gap: 14px;
  }

  .site-header .site-nav {
    gap: 14px;
  }

  .site-header .site-actions .site-btn-secondary {
    padding-inline: 18px;
  }
}

@media (max-width: 1040px) {
  .site-header .site-nav,
  .site-header .site-actions {
    display: none;
  }

  .site-header .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .site-header-shell {
    padding: 14px 16px;
  }

  .site-header .site-brand-title {
    font-size: 14px;
  }

  .site-header .site-brand-sub {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 12px;
  }

  .site-header .site-header-container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header .site-header-shell {
    border-radius: 22px;
    padding: 12px 14px;
  }

  .site-header .site-brand {
    gap: 10px;
  }

  .site-header .site-brand-badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
    font-size: 20px;
  }

  .site-header .site-brand-title {
    font-size: 13px;
  }

  .site-header .site-brand-sub {
    font-size: 11px;
  }
}
