/* Move-In Guide page. Shared header/footer styles come from styles.css and header.css. */

.move-in-page {
  background: #f9f9f9;
}

.move-in-page .landing-hero {
  padding: 64px 0 56px;
  background: linear-gradient(135deg, #002348 0%, #003f63 100%);
  color: #fff;
}

.move-in-page .hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.move-in-page h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 4.25rem);
  line-height: 1.06;
}

.move-in-page .hero-sub {
  max-width: 760px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
}

.move-in-page .hero-intro {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.move-in-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
}

.move-in-page .hero-primary,
.move-in-page .hero-secondary,
.move-in-page .guide-button,
.move-in-page .guide-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.move-in-page .hero-primary,
.move-in-page .guide-button {
  background: #FD3B26;
  color: #fff;
}

.move-in-page .hero-primary:hover,
.move-in-page .hero-primary:focus,
.move-in-page .guide-button:hover,
.move-in-page .guide-button:focus {
  background: #d6321f;
  color: #fff;
}

.move-in-page .hero-secondary,
.move-in-page .guide-button-secondary {
  background: #fff;
  color: #002348;
}

.move-in-page .hero-secondary:hover,
.move-in-page .hero-secondary:focus,
.move-in-page .guide-button-secondary:hover,
.move-in-page .guide-button-secondary:focus {
  background: #f2f6fb;
  color: #002348;
}

.move-in-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.move-in-trust-row span {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.move-in-section {
  padding: 46px 0;
}

.move-in-section.soft-band {
  background: #fff;
  border-top: 1px solid rgba(0, 35, 72, 0.06);
  border-bottom: 1px solid rgba(0, 35, 72, 0.06);
}

.move-in-section-heading {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.move-in-section-heading h2,
.move-in-callout h2,
.move-in-final h2 {
  margin: 0 0 10px;
  color: #002348;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1.16;
}

.move-in-section-heading p,
.move-in-callout p,
.move-in-final p {
  margin: 0;
  color: #34465d;
  line-height: 1.65;
}

.move-in-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.move-in-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(0, 35, 72, 0.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 35, 72, 0.05);
}

.move-in-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #002348;
  color: #fff;
  font-weight: 800;
}

.move-in-card h2,
.move-in-card h3 {
  margin: 0 0 12px;
  color: #002348;
  font-size: 1.35rem;
  line-height: 1.22;
}

.move-in-card p {
  margin: 0 0 14px;
  color: #34465d;
  line-height: 1.65;
}

.move-in-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.move-in-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 24px;
  color: #24364d;
  line-height: 1.5;
}

.move-in-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FD3B26;
}

.tip-box {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 4px solid #FD3B26;
  border-radius: 8px;
  background: #f7f9fc;
  color: #26384f;
  line-height: 1.55;
}

.tip-box strong {
  color: #002348;
}

.move-in-timeline {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.move-in-timeline li {
  padding: 16px 18px;
  border-left: 4px solid #FD3B26;
  border-radius: 8px;
  background: #fff;
  color: #24364d;
  box-shadow: 0 6px 18px rgba(0, 35, 72, 0.04);
}

.move-in-timeline strong {
  display: block;
  color: #002348;
}

.move-in-callout,
.move-in-final {
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 35, 72, 0.09);
  box-shadow: 0 8px 22px rgba(0, 35, 72, 0.05);
}

.move-in-callout {
  background: #002348;
  color: #fff;
}

.move-in-callout h2,
.move-in-callout p {
  color: #fff;
}

.move-in-callout p {
  color: rgba(255, 255, 255, 0.9);
}

.move-in-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 860px) {
  .move-in-grid,
  .move-in-trust-row {
    grid-template-columns: 1fr;
  }

  .move-in-section-heading {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .move-in-page .landing-hero {
    padding: 42px 0 36px;
  }

  .move-in-page .hero-copy {
    text-align: left;
  }

  .move-in-page .hero-sub,
  .move-in-page .hero-intro {
    margin-left: 0;
    margin-right: 0;
  }

  .move-in-page .hero-actions,
  .move-in-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .move-in-page .hero-actions a,
  .move-in-actions a {
    width: 100%;
    text-align: center;
  }

  .move-in-card,
  .move-in-callout,
  .move-in-final {
    padding: 20px;
  }
}
