:root {
  --ink: #101316;
  --muted: #637078;
  --paper: #f7f4ec;
  --white: #ffffff;
  --green: #1f9d68;
  --lime: #d7ff5f;
  --blue: #2f63ff;
  --cyan: #74e7ff;
  --gold: #f1b840;
  --red: #ef5b45;
  --line: rgba(16, 19, 22, 0.12);
  --shadow: 0 28px 80px rgba(16, 19, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #080b0d 0%, #f6f4ec 42%, #eef7ef 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

#motion-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 11, 13, 0.66);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}

.brand-mark {
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 8px 8px 0 var(--lime);
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.hero {
  scroll-margin-top: 90px;
  position: relative;
  min-height: calc(100vh - 71px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 4vw, 70px) clamp(36px, 5vw, 72px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.93) 0%, rgba(8, 11, 13, 0.68) 45%, rgba(8, 11, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 11, 13, 0.5), rgba(8, 11, 13, 0.12) 50%, rgba(8, 11, 13, 0.9)),
    url("https://unsplash.com/photos/ctXcNX1b4Oo/download?force=true");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(116, 231, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(215, 255, 95, 0.1) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 72%);
  opacity: 0.45;
}

.hero-copy {
  max-width: 820px;
}

.saving-badge,
.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.saving-badge {
  padding: 10px 12px;
  border: 1px solid rgba(215, 255, 95, 0.34);
  border-radius: 8px;
  background: rgba(8, 11, 13, 0.44);
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.lede,
.visual-section p,
article p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 690px;
}

.mobile-jump,
.mobile-call {
  display: none;
}

.engine-strip {
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.engine-strip span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 30px 0 0;
}

.proof-row div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.proof-row strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.proof-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.assurance-card {
  max-width: 540px;
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.assurance-card strong {
  font-size: 1rem;
}

.assurance-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  line-height: 1.5;
}

.move-preview {
  max-width: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  margin-top: 16px;
}

.crew-card,
.preview-list {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.crew-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.crew-photo {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 32%, #f5c29a 0 18%, transparent 19%),
    linear-gradient(140deg, var(--green) 0 44%, var(--ink) 45% 100%);
  box-shadow: inset 0 -18px 0 rgba(16, 19, 22, 0.18);
}

.crew-card strong {
  display: block;
  margin-bottom: 6px;
}

.crew-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
}

.preview-list span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: rgba(215, 255, 95, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.button,
.quote-card button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.quote-card .next-step,
.quote-card button[type="submit"] {
  color: var(--white);
  background: var(--ink);
}

.button.ghost,
.quote-card .back-step {
  background: rgba(255, 255, 255, 0.62);
}

.quote-card {
  scroll-margin-top: 96px;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: clamp(20px, 3.2vw, 32px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--cyan), var(--blue));
}

.quote-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 70px;
  height: 48px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 26px 10px 0 var(--blue), -18px -16px 0 var(--lime);
  opacity: 0.28;
  animation: floatBox 3.4s ease-in-out infinite;
}

.quote-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 12px;
}

.quote-topline .eyebrow {
  margin: 0;
}

#step-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-card h2 {
  position: relative;
  z-index: 1;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.quote-engine-badge {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(215, 255, 95, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-engine-badge span,
.system-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 157, 104, 0.16), 0 0 18px rgba(31, 157, 104, 0.8);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.estimate-box {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(16, 19, 22, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 12%, rgba(215, 255, 95, 0.62), transparent 35%),
    #f9fbf3;
}

.route-data {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: -8px 0 20px;
}

.route-data div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 19, 22, 0.05);
}

.route-data span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-data strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.estimate-box span,
.estimate-box small {
  color: var(--muted);
  font-weight: 900;
}

.estimate-box span {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.estimate-box strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.estimate-box small {
  line-height: 1.45;
}

.progress {
  position: relative;
  z-index: 1;
  height: 9px;
  margin-bottom: 24px;
  border-radius: 99px;
  background: rgba(16, 19, 22, 0.1);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width 320ms ease;
}

.quote-context {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
}

.system-status {
  max-width: 560px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 4px 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(116, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 11, 13, 0.48);
  backdrop-filter: blur(16px);
}

.system-status strong {
  color: var(--white);
}

.system-status small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
  line-height: 1.45;
}

.trust-card {
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 11, 13, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.trust-card strong {
  flex-basis: 100%;
  color: var(--white);
  font-size: 1.02rem;
}

.trust-card span {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
}

.quote-context strong {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-context span {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(31, 157, 104, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
}

.quote-card form {
  position: relative;
  z-index: 1;
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  animation: stepIn 260ms ease;
}

.form-step.is-active {
  display: grid;
  gap: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 157, 104, 0.12);
}

input:invalid,
select:invalid {
  box-shadow: none;
}

.bedroom-group {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.bedroom-group > span,
.service-options > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.bedroom-group label,
.service-options label {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.bedroom-group label:has(input:checked),
.service-options label:has(input:checked) {
  color: var(--white);
  background: var(--ink);
}

.bedroom-group input,
.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-size: 0.74rem;
  line-height: 1.45;
}

.consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.quote-success {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.quote-success[hidden] {
  display: none;
}

.broker-note {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.quote-microtrust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.quote-microtrust span {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(16, 19, 22, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-strip {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 16px clamp(18px, 4vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.confidence-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 70px);
  background: var(--ink);
}

.confidence-panel div {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.confidence-panel span {
  color: var(--lime);
  font-weight: 900;
}

.confidence-panel strong {
  font-size: 1.08rem;
}

.confidence-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.trust-strip span {
  flex: 1;
  min-width: max-content;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 900;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 70px);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.route-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 19, 22, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 19, 22, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 42px 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-visual {
  min-height: 520px;
  background: var(--ink);
}

.image-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 19, 22, 0.58), rgba(16, 19, 22, 0.12) 55%, rgba(16, 19, 22, 0.32)),
    linear-gradient(180deg, transparent, rgba(16, 19, 22, 0.36));
}

.image-visual::before {
  display: none;
}

.visual-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-width: 360px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 19, 22, 0.72);
  backdrop-filter: blur(14px);
}

.visual-overlay span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-overlay strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.visual-overlay small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.45;
}

.route-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 46%;
  width: 76%;
  height: 20px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 34px, rgba(16, 19, 22, 0.16) 34px 50px);
  transform: rotate(-10deg);
}

.pin {
  position: absolute;
  z-index: 3;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(16, 19, 22, 0.2);
}

.pickup {
  left: 12%;
  top: 36%;
  background: var(--green);
}

.dropoff {
  right: 10%;
  top: 52%;
  background: var(--blue);
}

.animated-route {
  position: absolute;
  left: 18%;
  top: 47%;
  width: 58%;
  height: 4px;
  border-radius: 99px;
  background: var(--lime);
  transform: rotate(-10deg);
  transform-origin: left center;
  animation: routeGrow 3s ease-in-out infinite;
}

.moving-truck {
  position: absolute;
  left: 9%;
  top: 40%;
  z-index: 4;
  width: 128px;
  height: 64px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 58px 16px 0 -18px var(--blue);
  animation: truckDrive 6s ease-in-out infinite;
}

.moving-truck span {
  position: absolute;
  left: 14px;
  top: 18px;
  color: var(--white);
  font-weight: 900;
}

.moving-truck::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -10px;
  width: 22px;
  height: 22px;
  border: 6px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 74px 0 0 -6px var(--paper), 74px 0 0 0 var(--ink);
}

.estimate-chip {
  position: absolute;
  right: 26px;
  bottom: 28px;
  z-index: 4;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(16, 19, 22, 0.22);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-band {
  background: var(--ink);
  color: var(--white);
}

.service-band .eyebrow {
  color: var(--lime);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.coverage-grid div {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.coverage-grid strong {
  font-size: 1.2rem;
}

.coverage-grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-weight: 700;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease, box-shadow 220ms ease;
}

article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

article:hover {
  box-shadow: 0 18px 48px rgba(16, 19, 22, 0.12);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.reviews {
  background: rgba(255, 255, 255, 0.38);
  border-top: 1px solid var(--line);
}

.price-section {
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-grid div {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-grid strong {
  font-size: 1.2rem;
}

.price-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.review-grid article {
  min-height: 210px;
}

.review-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.final-cta {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 255, 95, 0.22), transparent 28%),
    var(--green);
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 880px;
}

.final-cta .button.primary {
  background: var(--ink);
  border-color: var(--ink);
}

.final-cta .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.sticky-conversion-bar {
  display: none;
}

@keyframes floatBox {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.16);
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes routeGrow {
  0%,
  100% {
    transform: rotate(-10deg) scaleX(0.2);
  }
  50% {
    transform: rotate(-10deg) scaleX(1);
  }
}

@keyframes truckDrive {
  0%,
  100% {
    transform: translate(0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(310px, -54px) rotate(-10deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding-top: 30px;
  }

  .hero-copy {
    display: grid;
  }

  .move-preview,
  .confidence-panel,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .move-preview {
    display: none;
  }

  .assurance-card {
    display: none;
  }

  .quote-card {
    min-height: 650px;
  }

  .service-grid,
  .review-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(3rem, 9vw, 5.2rem);
  }

  .proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-row div {
    min-height: 78px;
    padding: 12px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 24px 16px 38px;
    gap: 20px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.58rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .lede {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mobile-jump,
  .mobile-call {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--ink);
    font-weight: 900;
  }

  .mobile-call {
    margin-top: 10px;
    color: var(--ink);
    background: var(--lime);
  }

  .hero-actions {
    display: none;
  }

  .final-cta .hero-actions {
    display: flex;
  }

  .proof-row {
    display: none;
  }

  .trust-strip {
    overflow-x: auto;
    padding-inline: 16px;
  }

  .section {
    padding-inline: 16px;
  }

  .quote-card {
    min-height: 680px;
  }

  .move-preview {
    grid-template-columns: 1fr;
  }

  .crew-card {
    grid-template-columns: 60px 1fr;
  }

  .crew-photo {
    width: 60px;
    height: 60px;
  }

  .bedroom-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .route-visual {
    min-height: 360px;
  }

  .image-visual {
    min-height: 340px;
  }

  .visual-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .moving-truck {
    transform: scale(0.8);
    animation-name: truckDriveMobile;
  }

  .sticky-conversion-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 11, 13, 0.82);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
  }

  .sticky-conversion-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--ink);
    background: var(--lime);
    font-size: 0.88rem;
    font-weight: 900;
  }

  .sticky-conversion-bar a:first-child {
    color: var(--white);
    background: var(--green);
  }
}

@keyframes truckDriveMobile {
  0%,
  100% {
    transform: translate(0, 0) rotate(-10deg) scale(0.8);
  }
  50% {
    transform: translate(190px, -32px) rotate(-10deg) scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
