/* Mobile call-only landing — no scroll, force CTA */
.mobile-landing {
  min-height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 76px;
  background: var(--primary-dark);
}

.mobile-landing .compliance-banner,
.mobile-landing .site-header,
.mobile-landing .mlp-footer,
.mobile-landing .mlp-top-bar {
  display: none !important;
}

/* Full-screen CTA */
.mlp-screen {
  position: relative;
  min-height: calc(100dvh - 76px);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.mlp-screen-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #082f49 0%, #0c4a6e 45%, #0369a1 100%);
}

.mlp-screen-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-wing.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.mlp-screen-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mlp-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.mlp-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.mlp-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
}

.mlp-screen h1 {
  font-size: clamp(1.75rem, 7vw, 2.125rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.mlp-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.mlp-phone-tap {
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  padding: 0.25rem 0.5rem;
}

.mlp-phone-tap:active {
  color: #fbbf24;
  transform: scale(0.98);
}

.mlp-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  background: var(--accent);
  color: #1e293b;
  padding: 1.125rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5);
  animation: pulseGlow 2s ease-in-out infinite;
}

.mlp-btn-call:active {
  background: var(--accent-hover);
  transform: scale(0.97);
}

.mlp-hours {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
}

.mlp-legal {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-top: 1.75rem;
  max-width: 280px;
}

.mlp-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.mlp-dev-credit {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
}

.mlp-dev-credit a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
}

.mlp-dev-credit a:hover {
  color: #fde68a;
  text-decoration: underline;
}

/* Sticky bottom — always visible */
.mlp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f172a;
  border-top: 1px solid #334155;
  padding: 0.625rem 1rem;
  padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
}

.mlp-sticky-bar a.mlp-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1e293b;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.0625rem;
  text-decoration: none;
  animation: pulseGlow 2s ease-in-out infinite;
}

.mlp-sticky-bar a.mlp-sticky-call:active {
  background: var(--accent-hover);
}

/* Desktop — same call-only, centered */
@media (min-width: 769px) {
  .mobile-landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }

  .mlp-screen {
    min-height: auto;
    flex: 1;
    padding: 3rem 1.25rem;
  }

  .mlp-sticky-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    padding: 0 1.25rem;
  }
}

.mobile-landing #call-popup {
  display: none !important;
}
