.mfr-header {
  z-index: 1000;
  background: #0f172be5;
  position: relative;
}

.mfr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mfr-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
nav.mfr-header__nav {
  background: #1d293d80;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
}
.mfr-header__nav ul {
  display: flex;
  gap: 32px;
}

.mfr-header__nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.mfr-header__nav a:hover,
.mfr-header__nav .current-menu-item a {
  color: var(--color-primary);
}

.mfr-header__cta .mfr-btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  text-align: center;
}

.mfr-header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .mfr-header__toggle {
    display: block;
  }

  nav.mfr-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172b;
    border-bottom: 1px solid var(--color-border);
    padding: 24px 20px;
    border-radius: 0;
    z-index: 999;
  }

  .mfr-header__nav.is-open {
    display: block;
  }

  .mfr-header__nav ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .mfr-header__cta {
    display: none;
  }
}
