@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cz-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --cz-dark: #09091f;
  --cz-purple: #7c3aed;
  --cz-blue: #2563eb;
}

body,
button,
input,
textarea,
select {
  font-family: var(--cz-font) !important;
}

.cz-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cz-header-inner {
  height: 64px;
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.cz-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: start;
}

.cz-nav a {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.cz-nav a:hover {
  color: #111;
}

.cz-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cz-logo img {
  display: block;
  height: 48px;
  width: auto;
}

.cz-login {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 7px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.cz-login:hover {
  background: #1d4ed8;
  color: #fff;
}

.cz-nav-item {
  position: relative;
}

.cz-mega {
  position: fixed;
  top: 64px;
  left: 0;
  width: 360px;
  min-height: calc(100vh - 64px);
  padding: 28px 24px;
  background: #f5f3ff;
  box-shadow: 18px 0 40px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: 0.16s ease;
}

.cz-nav-item:hover .cz-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cz-mega a {
  display: block;
  padding: 10px 0;
  color: #1f1f2e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.cz-mega a span {
  display: block;
  margin-top: 4px;
  color: #4f4f63;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.cz-mega p {
  margin: 0 0 10px;
  color: #7c3aed;
  font-size: 14px;
  font-weight: 600;
}

.cz-mega-wide {
  width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 980px) {
  .cz-header-inner {
    height: auto;
    padding: 16px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .cz-logo {
    justify-self: start;
  }

  .cz-nav-left {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    gap: 18px;
  }

  .cz-login {
    justify-self: end;
  }

  .cz-mega {
    display: none;
  }
}

/* =========================
   CLEANYZ HEADER TUNING
========================= */

.cz-header-inner {
  height: 58px;
  padding: 0 18px;
}

.cz-nav {
  gap: 22px;
}

.cz-nav a {
  color: #777672;
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.cz-nav a:hover {
  color: #222;
}

.cz-login {
  margin-right: 48px;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 8px;
  background: #0070d7;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
}

.cz-login:hover {
  background: #1d4ed8;
  color: #fff;
}

.cz-logo img {
  margin-top: 8px;
  height: 38px;
  width: auto;
}

.cz-mega {
  top: 58px;
  background: #fff;
  box-shadow: 18px 0 45px rgba(15, 23, 42, 0.08);
}

.cz-mega a {
  color: #242424;
  font-size: 14px;
  font-weight: 500;
}

.cz-mega a span {
  color: #777672;
  font-size: 12px;
  font-weight: 400;
}

.cz-mega p {
  color: #777672;
  font-size: 13px;
  font-weight: 600;
}

.cz-nav a {
  display: flex;
  align-items: center;
  line-height: 1;
}