/* Header aligned with landing (terms / privacy) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.6rem 1.5rem;
  background: rgba(253, 248, 240, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(57, 40, 0, 0.08);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 0;
}
.nav a {
  margin-left: 1.5rem;
  color: var(--text);
  font-weight: 500;
}
.nav a:hover {
  color: var(--primary-light);
  text-decoration: none;
}
.header .nav .btn-get-started {
  margin: 0 0 0 1.25rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffc44d);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header .nav .btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  color: var(--primary);
}
body.has-fixed-header {
  padding-top: 4.5rem;
}
@media (max-width: 768px) {
  .nav a { margin-left: 1rem; font-size: 0.95rem; }
  .header .nav .btn-get-started { margin-left: 1rem; font-size: 0.85rem; padding: 0.45rem 0.95rem; }
}
