/* Shared Cyber Smart Solutions header for all inner pages */
.csl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(7, 11, 20, 0.92);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.csl-nav,
.csl-nav * {
  box-sizing: border-box;
}

.csl-nav a {
  text-decoration: none;
}

.csl-nav-inner {
  width: min(94%, 1760px);
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.csl-nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.csl-nav-logo img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.csl-nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.csl-nav-links a {
  padding: 7px 13px;
  border-radius: 6px;
  color: rgba(240, 244, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.csl-nav-links a:hover,
.csl-nav-links a.is-current {
  color: #fff;
  background: rgba(245, 166, 35, 0.1);
}

.csl-nav .navbar-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.csl-btn-login {
  padding: 7px 14px;
  border-radius: 6px;
  color: rgba(240, 244, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.2s, background 0.2s;
}

.csl-btn-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.csl-btn-get-started {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 6px;
  background: #f5a623;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.csl-btn-get-started:hover {
  background: #ffba40;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.csl-nav .menu-button-4.w-nav-button {
  display: none;
  padding: 8px;
  border: 0;
  background: none;
  color: rgba(240, 244, 255, 0.82);
  cursor: pointer;
}

.csl-nav .burger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
}

body.csl-shared-header {
  padding-top: 64px !important;
}

@media (max-width: 860px) {
  .csl-nav-links {
    display: none;
  }

  .csl-nav .menu-button-4.w-nav-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .csl-btn-get-started {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 520px) {
  .csl-nav-inner {
    width: 92%;
    gap: 8px;
  }

  .csl-nav-logo img {
    height: 31px;
  }

  .csl-btn-login {
    display: none;
  }
}
