/* 3qare — shared public site header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-bottom: 2px solid rgba(197, 157, 95, 0.35);
}
.landing-logo {
  width: min(11rem, 38vw);
  height: auto;
  display: block;
}
@media (min-width: 640px) {
  .landing-logo { width: 13rem; }
}
@media (min-width: 1024px) {
  .landing-logo { width: 15rem; }
}
.shadow-luxury {
  box-shadow: 0 4px 24px rgba(5, 28, 57, 0.08), 0 1px 3px rgba(197, 157, 95, 0.12);
}
.header-signup-btn {
  background: linear-gradient(135deg, #C59D5F 0%, #cfa66d 50%, #a8844f 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #051C39;
  box-shadow: 0 1px 2px rgba(5, 28, 57, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-signup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 157, 95, 0.45);
}
.header-login-agency-btn {
  background: #051C39;
  color: #fff;
  border: 2px solid rgba(197, 157, 95, 0.35);
  box-shadow: 0 1px 2px rgba(5, 28, 57, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.header-login-agency-btn svg {
  color: #C59D5F;
}
.header-login-agency-btn:hover {
  background: #041428;
  box-shadow: 0 4px 16px rgba(5, 28, 57, 0.25);
  transform: translateY(-1px);
}
.header-login-appraisal-btn {
  background: #fff;
  color: #051C39;
  border: 2px solid rgba(5, 28, 57, 0.15);
  box-shadow: 0 1px 2px rgba(5, 28, 57, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.header-login-appraisal-btn svg {
  color: #C59D5F;
}
.header-login-appraisal-btn:hover {
  border-color: #C59D5F;
  background: #faf7f0;
  box-shadow: 0 4px 14px rgba(197, 157, 95, 0.2);
  transform: translateY(-1px);
}
.landing-header-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .landing-header-inner {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .landing-header-inner {
    padding: 1rem 2rem;
  }
}
.landing-header-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.5rem;
  width: 100%;
  max-width: 16rem;
}
@media (min-width: 640px) {
  .landing-header-actions {
    gap: 0.5rem;
    max-width: 18rem;
  }
}
@media (min-width: 1024px) {
  .landing-header-actions {
    max-width: 20rem;
  }
}
.landing-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 640px) {
  .landing-header-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .landing-header-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }
}
.landing-header-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.landing-header-btn__label-short { display: inline; }
.landing-header-btn__label-full { display: none; }
@media (min-width: 768px) {
  .landing-header-btn__label-short { display: none; }
  .landing-header-btn__label-full { display: inline; }
}
.landing-header-inner > a:first-child {
  flex-shrink: 0;
}
