/* Missed Call Rescue brand layer */
:root {
  --mcr-blue: #1D4ED8;
  --mcr-blue-dark: #1E40AF;
  --mcr-navy: #0F172A;
  --mcr-slate: #334155;
  --mcr-light: #F1F5F9;
  --mcr-green: #22C55E;
}

html { scroll-behavior: smooth; }
body {
  font-family: Inter, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mcr-navy);
}

.mcr-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.mcr-site-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mcr-site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.mcr-site-header__logo {
  display: block;
  width: min(280px, 68vw);
  height: auto;
}

.mcr-site-header__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mcr-site-header__link {
  color: var(--mcr-slate);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.mcr-site-header__link:hover {
  color: var(--mcr-blue);
}

.mcr-site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mcr-blue);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.mcr-site-header__cta:hover {
  background: var(--mcr-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(29, 78, 216, 0.28);
}

@media (max-width: 720px) {
  .mcr-site-header__inner { padding: 0.75rem 1rem; }
  .mcr-site-header__link { display: none; }
  .mcr-site-header__logo { width: min(235px, 64vw); }
  .mcr-site-header__cta { padding: 0.65rem 0.8rem; font-size: 0.9rem; border-radius: 0.65rem; }
}

@media (max-width: 430px) {
  .mcr-site-header__logo { width: 190px; }
  .mcr-site-header__cta { font-size: 0.82rem; padding: 0.6rem 0.7rem; }
}
