/* === MOVING HELP MIDTOWN PAGE === */
.mv-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
}

.mv-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,149,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.mv-page .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* === HERO === */
.mv-hero {
  text-align: center;
  margin-bottom: 56px;
}

.mv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,149,0,0.4);
  background: var(--amber-dim);
}

.mv-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.mv-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* === BULLETS === */
.mv-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 56px 0;
  border-top: 1px solid rgba(255,149,0,0.10);
}

.mv-bullets li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  padding: 22px 0 22px 32px;
  border-bottom: 1px solid rgba(255,149,0,0.10);
  position: relative;
}

.mv-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 14px;
  height: 1px;
  background: var(--amber);
}

/* === CTA === */
.mv-cta-block {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,149,0,0.18);
  background: #1E1E1C;
  border-radius: 6px;
  margin-bottom: 40px;
}

.mv-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  margin-bottom: 14px;
}

.mv-cta-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* === ALSO === */
.mv-also {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.mv-also a {
  color: var(--amber);
  text-decoration: none;
}

.mv-also a:hover {
  text-decoration: underline;
}

/* === TIER STRIP === */
.mv-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.mv-tier {
  display: inline-block;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid rgba(255,149,0,0.35);
  border-radius: 999px;
  color: var(--amber);
  text-decoration: none;
  background: transparent;
  transition: background 120ms ease;
}

.mv-tier:hover {
  background: var(--amber-dim);
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .mv-bullets li { font-size: 15px; }
}
