:root {
  --md-coral: #ff5a4f;
  --md-coral-dark: #e74a40;
  --md-coral-soft: #fff0ed;
  --md-ink: #1f2328;
  --md-muted: #6f7479;
  --md-cream: #fffaf4;
  --md-white: #ffffff;
  --md-line: #eee5dc;
  --md-green: #2ba66a;
  --md-green-soft: #edf9f3;
  --md-shadow: 0 22px 60px rgba(50, 37, 24, 0.08);
  --md-radius-lg: 28px;
  --md-radius-md: 18px;
  --md-radius-sm: 13px;
  --md-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--md-ink);
  background: var(--md-cream);
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
[hidden] { display: none !important; }
.shell { width: min(var(--md-max), calc(100% - 32px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 244, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(238, 229, 220, 0.75);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.brand-mark {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--md-coral);
  color: white;
  transform: rotate(-3deg);
}
.brand-mark svg { width: 18px; height: 18px; display: block; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555c62;
}
.desktop-nav a { transition: color 160ms ease; }
.desktop-nav a:hover { color: var(--md-ink); }
.header-actions,
.account-nav {
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  border: 0;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--md-coral);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 90, 79, 0.18);
}
.button-primary:hover { background: var(--md-coral-dark); }
.button-secondary {
  background: var(--md-white);
  color: var(--md-ink);
  border: 1px solid var(--md-line);
}
.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--md-line);
  border-radius: 50%;
  background: white;
}
.mobile-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--md-ink);
}

/* Account menu */
.account-my-move { min-height: 42px; }
.account-menu-wrap { position: relative; }
.account-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 13px 5px 6px;
  border: 1px solid var(--md-line);
  border-radius: 999px;
  background: white;
  color: var(--md-ink);
  font-weight: 800;
}
.account-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--md-coral-soft);
  color: var(--md-coral-dark);
  font-size: 0.8rem;
  font-weight: 900;
}
.account-chevron { color: var(--md-muted); font-size: 0.72rem; }
.account-dropdown {
  position: absolute;
  z-index: 300;
  top: calc(100% + 10px);
  right: 0;
  width: 235px;
  padding: 8px;
  border: 1px solid var(--md-line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 50px rgba(40, 30, 20, 0.13);
}
.account-dropdown-head { padding: 10px 11px 13px; }
.account-dropdown-head strong { display: block; margin-bottom: 3px; font-size: 0.86rem; }
.account-dropdown-head span {
  display: block;
  overflow: hidden;
  color: var(--md-muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-dropdown a,
.account-dropdown button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--md-ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
}
.account-dropdown a:hover,
.account-dropdown button:hover { background: var(--md-coral-soft); }
.account-dropdown-divider { height: 1px; margin: 6px 5px; background: var(--md-line); }
.account-dropdown .account-logout { color: #a73b34; }

/* Mobile panel */
.mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 10px 16px 18px;
  background: rgba(255, 250, 244, 0.99);
  border-bottom: 1px solid var(--md-line);
  box-shadow: 0 20px 40px rgba(40, 30, 20, 0.08);
}
.mobile-panel-nav {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 5px;
}
.mobile-panel-nav > a,
.mobile-panel-nav > div > a,
.mobile-panel-nav > div > button {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--md-ink);
  font-weight: 750;
  text-align: left;
}
.mobile-panel-nav a:hover,
.mobile-panel-nav button:hover { background: var(--md-coral-soft); }
.mobile-panel-divider { height: 1px; margin: 6px 0; background: var(--md-line); }
.mobile-panel-nav .mobile-primary { background: var(--md-coral); color: white; }
.mobile-panel-nav .mobile-logout { color: #a73b34; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 70px 0 78px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--md-coral-soft);
  color: #b73f35;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}
.eyebrow-icon { width: 15px; height: 15px; display: block; }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.7rem, 6.2vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 950;
}
.hero h1 span { color: var(--md-coral); }
.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--md-muted);
  font-size: 1.18rem;
  line-height: 1.68;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 30px;
  font-size: 0.9rem;
  font-weight: 750;
  color: #53595f;
}
.proof-row div { display: inline-flex; align-items: center; gap: 7px; }
.proof-row span { color: var(--md-green); font-weight: 950; }
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 150px;
  right: -130px;
  bottom: -95px;
  background: linear-gradient(120deg, rgba(255, 90, 79, 0.9), rgba(255, 138, 113, 0.65));
  border-radius: 50% 0 0 0;
  transform: rotate(-5deg);
}

/* Planner */
.planner-card {
  width: 100%;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--md-line);
  border-radius: var(--md-radius-lg);
  padding: 30px;
  box-shadow: var(--md-shadow);
}
.planner-heading { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 25px; }
.planner-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--md-coral-soft);
  color: var(--md-coral);
}
.planner-icon svg { width: 24px; height: 24px; display: block; }
.planner-heading h2 { margin: 0 0 5px; font-size: 1.65rem; letter-spacing: -0.04em; }
.planner-heading p { margin: 0; color: var(--md-muted); line-height: 1.5; font-size: 0.94rem; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; margin-bottom: 7px; color: #454b50; font-size: 0.84rem; font-weight: 800; }
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  color: #666d73;
  pointer-events: none;
}
.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px 0 43px;
  border-radius: var(--md-radius-sm);
  border: 1px solid #ded7d0;
  background: white;
  color: var(--md-ink);
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder { color: #a3a7aa; }
.field input:focus { border-color: var(--md-coral); box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.09); }
.planner-submit { width: 100%; min-height: 56px; border-radius: 14px; margin-top: 2px; }
.privacy-note { margin-top: 13px; color: #969a9e; font-size: 0.77rem; text-align: center; }

/* General sections */
.services-section,
.progress-section,
.business-teaser-section,
.resources-section { padding: 72px 0; }
.services-section,
.business-teaser-section { background: #fffdf9; border-top: 1px solid var(--md-line); border-bottom: 1px solid var(--md-line); }
.section-kicker { display: inline-flex; align-items: center; color: #b73f35; font-size: 0.82rem; font-weight: 850; letter-spacing: 0.01em; }
.section-title {
  margin: 14px 0 17px;
  max-width: 800px;
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.058em;
}
.section-copy { max-width: 680px; margin: 0 0 38px; color: var(--md-muted); font-size: 1.05rem; line-height: 1.65; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--md-radius-md);
  border: 1px solid var(--md-line);
  background: var(--md-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover { transform: translateY(-4px); border-color: #e4d8ce; box-shadow: 0 16px 38px rgba(47,38,31,0.08); }
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 21px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--md-coral-soft);
  color: var(--md-coral);
}
.service-icon svg { width: 32px; height: 32px; display: block; }
.service-card h3 { margin: 0 0 9px; font-size: 1.08rem; letter-spacing: -0.02em; }
.service-card p { margin: 0; max-width: 220px; color: var(--md-muted); font-size: 0.9rem; line-height: 1.55; }
.service-arrow {
  position: absolute;
  right: 19px;
  bottom: 17px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff6f3;
  color: var(--md-coral);
}
.service-arrow svg { width: 16px; height: 16px; display: block; }

/* Progress */
.progress-grid { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); align-items: center; gap: 76px; }
.progress-card { padding: 29px; background: white; border: 1px solid var(--md-line); border-radius: var(--md-radius-lg); box-shadow: var(--md-shadow); }
.progress-top,
.checklist-heading,
.task { display: flex; align-items: center; }
.progress-top { justify-content: space-between; margin-bottom: 16px; }
.progress-top > strong { font-size: 1.15rem; }
.progress-percent { display: flex; gap: 4px; align-items: baseline; }
.progress-percent strong { color: var(--md-coral); font-size: 1.5rem; letter-spacing: -0.03em; }
.progress-percent span { color: var(--md-muted); font-size: 0.8rem; font-weight: 700; }
.progress-bar { height: 10px; overflow: hidden; border-radius: 999px; background: #efeae5; margin-bottom: 28px; }
.progress-bar div { width: 42%; height: 100%; background: var(--md-coral); border-radius: inherit; }
.checklist-heading { justify-content: space-between; padding-bottom: 11px; border-bottom: 1px solid var(--md-line); font-size: 0.8rem; }
.checklist-heading span { color: var(--md-muted); }
.task { min-height: 58px; gap: 12px; border-bottom: 1px solid var(--md-line); }
.task:last-child { border-bottom: 0; }
.task > span:first-child {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5f1ed;
  color: #888d91;
  font-size: 0.8rem;
  font-weight: 900;
}
.task.done > span:first-child { background: var(--md-green-soft); color: var(--md-green); }
.task strong { font-size: 0.9rem; }
.task small { margin-left: auto; color: #9ca0a3; font-size: 0.75rem; }
.task.done small { color: var(--md-green); }
.progress-copy .button { min-height: 48px; }

/* Business/resources */
.business-teaser,
.resources-row { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 60px; align-items: center; }
.business-teaser-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--md-line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--md-shadow);
}
.business-teaser-card strong { font-size: 1.25rem; letter-spacing: -0.03em; }
.business-teaser-card span { color: var(--md-muted); line-height: 1.5; }
.business-teaser-card .button { margin-top: 8px; }
.resources-row .section-copy { margin-bottom: 0; }

/* Footer */
footer { border-top: 1px solid var(--md-line); background: #fffdf9; }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--md-muted); font-size: 0.85rem; }

/* Tablet */
@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .header-actions,
  .account-nav { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 760px; }
  .planner-card { max-width: 700px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-grid,
  .business-teaser,
  .resources-row { grid-template-columns: 1fr; gap: 44px; }
  .progress-card { max-width: 700px; }
}

/* Mobile */
@media (max-width: 700px) {
  .shell { width: min(var(--md-max), calc(100% - 22px)); }
  .header-inner { min-height: 66px; }
  .header-actions,
  .account-nav { display: none !important; }
  .mobile-menu { display: block; }
  .hero { padding: 42px 0 54px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  .hero-copy { margin-top: 21px; font-size: 1rem; }
  .proof-row { gap: 11px 16px; font-size: 0.82rem; }
  .planner-card { padding: 21px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .services-section,
  .progress-section,
  .business-teaser-section,
  .resources-section { padding: 54px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 176px; }
  .section-title { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .progress-card { padding: 21px; }
  .footer-inner { min-height: 120px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .hero::after { display: none; }
  .business-teaser-card { padding: 21px; }
}

@media (max-width: 420px) {
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 29px; height: 29px; }
  .hero h1 { font-size: 3.65rem; }
  .planner-heading { gap: 11px; }
  .planner-icon { width: 41px; height: 41px; }
  .planner-heading h2 { font-size: 1.42rem; }
  .task strong { font-size: 0.84rem; }
  .task small { font-size: 0.68rem; }
}

/* =========================================================
   UPDATE 003 — HOW IT WORKS + LEGAL FOOTER
   ========================================================= */

#services,
#how-it-works,
#businesses,
#resources,
#move-plan-form {
  scroll-margin-top: 96px;
}

.how-it-works-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: center;
}

.how-it-works-copy .section-copy {
  margin-bottom: 28px;
}

.how-steps {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--md-line);
}

.how-step:last-child {
  border-bottom: 0;
}

.how-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--md-coral-soft);
  color: var(--md-coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.how-step strong {
  display: block;
  margin: 2px 0 5px;
  font-size: 0.96rem;
}

.how-step p {
  margin: 0;
  color: var(--md-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.how-start-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--md-line);
  background: #fffdf9;
}

.footer-main {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  padding-top: 44px;
  padding-bottom: 36px;
}

.footer-brand-column p {
  margin: 12px 0 0;
  color: var(--md-muted);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 48px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: var(--md-ink);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a {
  color: var(--md-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--md-coral-dark);
}

.acknowledgement {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid var(--md-line);
  border-bottom: 1px solid var(--md-line);
}

.acknowledgement strong {
  display: block;
  margin-bottom: 8px;
  color: var(--md-ink);
  font-size: 0.8rem;
}

.acknowledgement p {
  max-width: 980px;
  margin: 0;
  color: var(--md-muted);
  font-size: 0.79rem;
  line-height: 1.65;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--md-muted);
  font-size: 0.74rem;
}

@media (max-width: 1040px) {
  .how-it-works-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .how-step {
    grid-template-columns: 42px 1fr;
  }

  .footer-main {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .footer-bottom {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   UPDATE 008 — LIFESTYLE HERO
   ========================================================= */

.hero {
  isolation: isolate;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 58px 0 64px;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 250, 244, 0.96) 0%,
      rgba(255, 250, 244, 0.90) 20%,
      rgba(255, 250, 244, 0.58) 35%,
      rgba(255, 250, 244, 0.10) 48%,
      rgba(255, 250, 244, 0.03) 61%,
      rgba(255, 250, 244, 0.24) 76%,
      rgba(255, 250, 244, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 250, 244, 0.04) 0%,
      rgba(255, 250, 244, 0.02) 72%,
      rgba(255, 250, 244, 0.35) 100%
    ),
    url('/assets/images/Hero_Image_Move_Done.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(238, 229, 220, 0.76);
}

.hero::after {
  display: none;
}

.hero-grid {
  width: min(var(--md-max), calc(100% - 32px));
  grid-template-columns: minmax(0, 0.98fr) minmax(410px, 0.76fr);
  gap: 128px;
}

.hero-content {
  max-width: 585px;
  padding: 28px 0;
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(4.15rem, 6vw, 6.15rem);
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

.hero-copy {
  max-width: 530px;
  color: #5f666c;
}

.hero .eyebrow {
  background: rgba(255, 240, 237, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero .planner-card {
  position: relative;
  z-index: 4;
  max-width: 470px;
  margin-left: auto;
  background: rgba(255,255,255,0.94);
  border-color: rgba(231, 221, 211, 0.92);
  box-shadow: 0 24px 70px rgba(59, 42, 28, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero .planner-heading h2 {
  font-size: 1.72rem;
}

.hero .proof-row {
  max-width: 570px;
  padding: 10px 0;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 675px;
    background-position: center 48%;
  }

  .hero-grid {
    gap: 150px;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    gap: 66px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.4vw, 5.5rem);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: 0;
    align-items: stretch;
    padding: 54px 0 64px;
    background-image:
      linear-gradient(
        180deg,
        rgba(255,250,244,0.96) 0%,
        rgba(255,250,244,0.88) 34%,
        rgba(255,250,244,0.46) 55%,
        rgba(255,250,244,0.76) 100%
      ),
      url('/assets/images/Hero_Image_Move_Done.png');
    background-position: 52% center;
  }

  .hero-grid {
    width: min(var(--md-max), calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    max-width: 700px;
    padding: 0;
  }

  .hero .planner-card {
    width: min(100%, 620px);
    max-width: 620px;
    margin: 0;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 38px 0 48px;
    background-image:
      linear-gradient(
        180deg,
        rgba(255,250,244,0.97) 0%,
        rgba(255,250,244,0.93) 38%,
        rgba(255,250,244,0.62) 58%,
        rgba(255,250,244,0.88) 100%
      ),
      url('/assets/images/Hero_Image_Move_Done.png');
    background-size: auto 100%, cover;
    background-position: 50% center;
  }

  .hero-grid {
    width: min(var(--md-max), calc(100% - 22px));
    gap: 28px;
  }

  .hero-content {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.55rem);
  }

  .hero .planner-card {
    width: 100%;
    max-width: none;
    background: rgba(255,255,255,0.96);
  }
}

/* =========================================================
   MOVEDONE UPDATE 009 — CUSTOM DATE + LOCATION SEARCH
   ========================================================= */

.date-picker,
.location-autocomplete {
  position: relative;
}

.date-trigger {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid #ded7d0;
  border-radius: var(--md-radius-sm);
  background: #fff;
  color: var(--md-ink);
  text-align: left;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.date-trigger:hover {
  border-color: #d2c8c0;
}

.date-trigger:focus,
.date-trigger[aria-expanded="true"] {
  border-color: var(--md-coral);
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.09);
}

.date-trigger.field-invalid {
  border-color: var(--md-coral);
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.09);
}

.date-trigger > svg {
  width: 20px;
  height: 20px;
  color: #666d73;
}

#move-date-label {
  color: #6f7479;
  font-weight: 650;
}

.date-trigger-chevron {
  color: #8c9297;
  font-size: 1rem;
  transform: translateY(-1px);
}

.move-calendar {
  position: absolute;
  z-index: 500;
  top: calc(100% + 9px);
  left: 0;
  width: min(360px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--md-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(41, 31, 23, 0.18);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}

.calendar-header > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calendar-kicker {
  color: var(--md-coral-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-header strong {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.calendar-nav {
  display: flex;
  gap: 6px;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--md-line);
  border-radius: 11px;
  background: #fffdf9;
  color: var(--md-ink);
  font-size: 1.25rem;
  line-height: 1;
}

.calendar-nav button:hover:not(:disabled) {
  border-color: #d9ccc3;
  background: var(--md-coral-soft);
}

.calendar-nav button:disabled {
  opacity: 0.32;
  cursor: default;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekdays {
  margin-bottom: 6px;
}

.calendar-weekdays span {
  display: grid;
  place-items: center;
  min-height: 25px;
  color: #93989c;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.calendar-empty,
.calendar-day {
  aspect-ratio: 1;
}

.calendar-day {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #33383d;
  font-size: 0.8rem;
  font-weight: 750;
}

.calendar-day:hover:not(:disabled) {
  background: var(--md-coral-soft);
  color: var(--md-coral-dark);
}

.calendar-day.today:not(.selected) {
  border-color: #e6d8cf;
  background: #fffdf9;
}

.calendar-day.selected {
  border-color: var(--md-coral);
  background: var(--md-coral);
  color: #fff;
  box-shadow: 0 7px 18px rgba(255, 90, 79, 0.22);
}

.calendar-day:disabled {
  color: #d2d4d5;
  cursor: default;
}

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--md-line);
}

.calendar-footer span {
  color: #9aa0a4;
  font-size: 0.66rem;
}

.calendar-today {
  min-height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  background: var(--md-coral-soft);
  color: var(--md-coral-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.location-coverage-note {
  margin: -5px 0 15px;
  color: #9a9fa3;
  font-size: 0.69rem;
  text-align: center;
}

.location-suggestions {
  position: absolute;
  z-index: 480;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  max-height: 315px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--md-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(41, 31, 23, 0.16);
  overscroll-behavior: contain;
}

.location-option {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  background: #fff;
  color: var(--md-ink);
  text-align: left;
}

.location-option:hover,
.location-option.active {
  background: var(--md-coral-soft);
}

.location-option-pin {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff4f1;
  color: var(--md-coral);
}

.location-option-pin svg {
  width: 17px;
  height: 17px;
}

.location-option-copy {
  min-width: 0;
}

.location-option-copy strong,
.location-option-copy span {
  display: block;
}

.location-option-copy strong {
  overflow: hidden;
  font-size: 0.79rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-option-copy span {
  margin-top: 2px;
  color: var(--md-muted);
  font-size: 0.68rem;
}

.location-country-chip {
  min-width: 30px;
  padding: 5px 6px;
  border-radius: 8px;
  background: #f5f1ed;
  color: #6c7378;
  font-size: 0.62rem;
  font-weight: 900;
  text-align: center;
}

.location-empty {
  padding: 14px;
}

.location-empty strong,
.location-empty span {
  display: block;
}

.location-empty strong {
  margin-bottom: 3px;
  font-size: 0.78rem;
}

.location-empty span {
  color: var(--md-muted);
  font-size: 0.69rem;
  line-height: 1.4;
}

.field input.location-selected {
  font-weight: 700;
  color: var(--md-ink);
}

.site-footer .footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 700px) {
  .move-calendar {
    position: fixed;
    top: auto;
    right: 11px;
    bottom: 11px;
    left: 11px;
    width: auto;
    max-height: min(560px, calc(100vh - 22px));
    overflow-y: auto;
    border-radius: 22px;
  }

  .calendar-day {
    min-height: 38px;
  }

  .location-suggestions {
    max-height: 270px;
  }
}

/* =========================================================
   MOVEDONE UPDATE 010 — BRAND, LOCATION RESULTS & QUOTE DISCLOSURE
   ========================================================= */

/* Wordmark now reads exactly "MoveDone ✅". */
.brand {
  gap: 7px;
}

.brand-check-emoji {
  display: inline-block;
  font-size: 1.02em;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(1px);
}

/* The location fields remain side-by-side, but the full prompt is readable. */
.field-row .field input {
  padding-right: 10px;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.field-row .field input::placeholder {
  color: #9ca1a5;
  opacity: 1;
  font-size: 0.82rem;
}

/* Cleaner, roomier desktop autocomplete panel. */
.location-suggestions {
  right: auto;
  width: min(430px, calc(100vw - 40px));
  max-height: 360px;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(41, 31, 23, 0.18);
}

.field-row .field:last-child .location-suggestions {
  left: auto;
  right: 0;
}

.location-option {
  min-height: 68px;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-radius: 13px;
}

.location-option + .location-option {
  margin-top: 2px;
}

.location-option-pin {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.location-option-pin svg {
  width: 19px;
  height: 19px;
}

.location-option-copy strong {
  overflow: visible;
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}

.location-option-copy span {
  margin-top: 4px;
  color: #72797e;
  font-size: 0.73rem;
  line-height: 1.35;
}

.location-country-chip {
  display: none;
}

.location-coverage-note {
  margin-top: -4px;
  line-height: 1.4;
}

.quote-disclosure {
  display: grid;
  gap: 4px;
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 90, 79, 0.16);
  border-radius: 13px;
  background: rgba(255, 240, 237, 0.72);
}

.quote-disclosure strong {
  color: var(--md-coral-dark);
  font-size: 0.74rem;
}

.quote-disclosure span {
  color: #73797e;
  font-size: 0.68rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .field-row .field input,
  .field-row .field input::placeholder {
    font-size: 0.9rem;
  }

  .location-suggestions,
  .field-row .field:last-child .location-suggestions {
    right: auto;
    left: 0;
    width: min(430px, calc(100vw - 34px));
    max-height: 310px;
  }
}

/* Build-my-move quote routing disclosure and explicit permission. */
.quote-routing-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  margin: 26px 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 90, 79, 0.15);
  border-radius: 16px;
  background: #fff8f6;
}

.quote-routing-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--md-coral-soft);
  color: var(--md-coral-dark);
  font-size: 1rem;
  font-weight: 900;
}

.quote-routing-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.quote-routing-note p {
  margin: 0;
  color: var(--md-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.quote-consent-panel {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(255, 90, 79, 0.18);
  border-radius: 18px;
  background: #fffaf8;
}

.quote-consent-panel[hidden] {
  display: none !important;
}

.quote-consent-heading {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
}

.quote-consent-kicker {
  color: var(--md-coral-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-consent-heading strong {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.quote-consent-choice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.quote-consent-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-consent-box {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1.5px solid #d8cec7;
  border-radius: 7px;
  background: #fff;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.quote-consent-choice input:focus-visible + .quote-consent-box {
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.10);
}

.quote-consent-choice input:checked + .quote-consent-box {
  border-color: var(--md-green);
  background: var(--md-green);
  color: #fff;
}

.quote-consent-copy strong,
.quote-consent-copy small {
  display: block;
}

.quote-consent-copy strong {
  margin-bottom: 5px;
  font-size: 0.87rem;
}

.quote-consent-copy small {
  color: var(--md-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.quote-consent-legal {
  margin: 13px 0 0 36px;
  color: #91969a;
  font-size: 0.7rem;
  line-height: 1.4;
}

.quote-consent-legal a {
  color: var(--md-coral-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* =========================================================
   MOVEDONE PRO COMPLETION MARK
   ========================================================= */
.brand{gap:9px}
.brand-check-pro{position:relative;width:31px;height:31px;display:inline-grid;place-items:center;flex:0 0 auto;border-radius:10px;background:linear-gradient(145deg,#31b977,#249a62);box-shadow:0 7px 18px rgba(43,166,106,.22),inset 0 1px 0 rgba(255,255,255,.35);transform:rotate(-5deg);overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.brand-check-pro::after{content:"";position:absolute;width:18px;height:48px;left:-20px;top:-9px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);transform:rotate(25deg);transition:left .45s ease}
.brand-check-pro svg{position:relative;z-index:1;width:18px;height:18px;color:#fff;filter:drop-shadow(0 1px 0 rgba(0,0,0,.08))}
.brand:hover .brand-check-pro{transform:rotate(0deg) scale(1.04);box-shadow:0 9px 22px rgba(43,166,106,.28),inset 0 1px 0 rgba(255,255,255,.4)}
.brand:hover .brand-check-pro::after{left:34px}
.dashboard-quotes-link{color:var(--md-muted);font-size:.84rem;font-weight:800}
@media(max-width:700px){.brand-check-pro{width:29px;height:29px;border-radius:9px}.dashboard-quotes-link{display:none}}


/* =========================================================
   MOVEDONE UPDATE 012 — BOLD COMPLETION TICK
   ========================================================= */
.brand-check-pro{width:34px;height:34px;border-radius:10px;transform:rotate(-4deg);box-shadow:0 8px 19px rgba(43,166,106,.24),inset 0 1px 0 rgba(255,255,255,.38)}
.brand-check-pro svg{display:none!important}
.brand-check-pro::before{content:"";position:absolute;z-index:2;width:27px;height:24px;left:4px;top:5px;background:#fff;clip-path:polygon(0 45%,15% 27%,38% 50%,79% 5%,100% 24%,39% 91%);filter:drop-shadow(0 1px 0 rgba(0,0,0,.08));transform:rotate(-2deg)}
.brand:hover .brand-check-pro{transform:rotate(0deg) scale(1.045)}
@media(max-width:700px){.brand-check-pro{width:31px;height:31px;border-radius:9px}.brand-check-pro::before{width:25px;height:22px;left:3px;top:4px}}


/* =========================================================
   MOVEDONE UPDATE 013 — SIGNATURE COMPLETION MARK
   Original MoveDone mark: bold, forward-sweeping geometry.
   ========================================================= */
.brand-check-pro{position:relative;width:36px;height:36px;flex:0 0 auto;display:inline-block;border-radius:10px;background:linear-gradient(145deg,#35b979,#219d64);transform:rotate(-4deg);box-shadow:0 8px 20px rgba(43,166,106,.25),inset 0 1px 0 rgba(255,255,255,.35);overflow:hidden;transition:transform .16s ease,box-shadow .16s ease}
.brand-check-pro svg{display:none!important}
.brand-check-pro::before{content:"";position:absolute;z-index:2;left:3px;top:2px;width:31px;height:31px;background:#fff;clip-path:polygon(2% 49%,14% 34%,38% 57%,84% 1%,100% 10%,42% 97%);transform:rotate(-1deg);filter:drop-shadow(0 1px 0 rgba(0,0,0,.07))}
.brand-check-pro::after{content:"";position:absolute;inset:2px;border-radius:8px;background:linear-gradient(145deg,rgba(255,255,255,.18),transparent 48%);pointer-events:none}
.brand:hover .brand-check-pro{transform:rotate(0deg) scale(1.055);box-shadow:0 10px 24px rgba(43,166,106,.3),inset 0 1px 0 rgba(255,255,255,.4)}
@media(max-width:700px){.brand-check-pro{width:33px;height:33px}.brand-check-pro::before{width:28px;height:28px;left:3px;top:2px}}


/* =========================================================
   MOVEDONE UPDATE 014 — FLAT SIGNATURE COMPLETION MARK
   Original MoveDone check geometry; flat, solid treatment.
   ========================================================= */
.brand-check-pro{position:relative;width:36px;height:36px;flex:0 0 auto;display:inline-block;border-radius:10px;background:#2ba66a!important;transform:rotate(-3deg);box-shadow:0 5px 12px rgba(43,166,106,.18)!important;overflow:hidden;transition:transform .16s ease,box-shadow .16s ease}
.brand-check-pro svg{display:none!important}
.brand-check-pro::before{content:"";position:absolute;z-index:2;left:2px;top:1px;width:33px;height:33px;background:#fff;clip-path:polygon(1% 50%,13% 33%,37% 57%,84% 0%,100% 10%,41% 99%);transform:rotate(-1deg);filter:none!important}
.brand-check-pro::after{display:none!important;content:none!important}
.brand:hover .brand-check-pro{transform:rotate(0deg) scale(1.045);box-shadow:0 6px 14px rgba(43,166,106,.22)!important}
@media(max-width:700px){.brand-check-pro{width:33px;height:33px}.brand-check-pro::before{width:30px;height:30px;left:2px;top:1px}}

/* MOVEDONE GLOBAL WORDMARK PERIOD - UPDATE 083 START */

/*
 * One source of truth for the MoveDone wordmark:
 *
 *   DOM text = MoveDone
 *   CSS      = renders the final full stop
 *
 * This prevents individual pages/scripts from producing different period
 * sizes. Any page using the global .brand component and movedone.css now gets
 * the same wordmark automatically.
 */
.brand > span:not(.brand-mark)::after,
.brand > strong:not(.brand-mark)::after,
.brand > b:not(.brand-mark)::after {
  content: ".";
  display: inline-block;
  margin-left: 1px;
  font-size: 1.16em;
  line-height: 0;
  transform: translateY(-0.01em);
}

/*
 * Older MoveDone updates wrapped their own full stop. Hide those legacy
 * wrappers so the shared wordmark rule above is always the only visible dot.
 */
.md-brand-period,
.md073-brand-period {
  display: none !important;
}

/* MOVEDONE GLOBAL WORDMARK PERIOD - UPDATE 083 END */
