/* =========================
       HEADER
========================= */

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--tech-dark);
}

.brand img {
  width: 85px;
  height: 48px;
  object-fit: contain;
}

.brand h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.brand p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--tech-dark);
  font-weight: 600;
  font-size: 14px;
}

.cta {
  background: linear-gradient(90deg, var(--tech-accent), #1ac7ff);
  color: white !important;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}



