/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f6f7fb;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 32px;
  background: #ccff00;
  color: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  z-index: 300;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 32px;
  width: 100%;
  height: 88px;
  background: transparent;
  z-index: 200;
  transition: background .25s ease, box-shadow .25s ease;
}

.header.header-solid {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

/* ===== HEADER INNER ===== */
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
}

.header.header-solid .logo {
  color: #111;
}

/* NAV */
.header-center {
  display: flex;
  gap: 32px;
}

.header-center a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
}

.header.header-solid .header-center a {
  color: #111;
}

/* BUTTONS */
.btn-outline {
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.header.header-solid .btn-outline {
  border-color: #111;
  color: #111;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}

/* ===== MOBILE ===== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .header {
    height: 72px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
  }

  .header.header-solid .mobile-only {
    color: #111;
  }
}
