nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  margin: 1rem auto 0;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 0 #c2410c, 0 3px 6px rgba(234,88,12,0.25);
  position: relative;
  top: 0;
}

nav .nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

nav .lang-switch {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

nav .lang-switch:hover {
  background: #f3f4f6;
  color: #f97316;
}

nav .nav-cta {
  background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 0 #c2410c, 0 3px 6px rgba(234,88,12,0.25);
  transition: all 0.12s ease;
  position: relative;
  top: 0;
}

nav .nav-cta:hover {
  top: 1px;
  box-shadow: 0 1px 0 #c2410c, 0 2px 4px rgba(234,88,12,0.2);
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
}

nav .nav-cta:active {
  top: 2px;
  box-shadow: 0 0 0 #c2410c, 0 1px 2px rgba(234,88,12,0.15);
}

@media (max-width: 600px) {
  .lang-label {
    display: none;
  }
  nav {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    width: calc(100% - 1rem);
  }
}
