:root {
  color-scheme: light;
  --ink: #17201f;
  --muted: #65716e;
  --line: #dbe3df;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --green: #0c7a63;
  --green-dark: #075846;
  --orange: #f27b35;
  --yellow: #f5c84c;
  --blue: #2d6cdf;
  --shadow: 0 24px 60px rgba(23, 32, 31, 0.14);
  --soft-shadow: 0 12px 34px rgba(23, 32, 31, 0.08);
}

* {
  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;
  background:
    radial-gradient(circle at top left, rgba(12, 122, 99, 0.08), transparent 34rem),
    linear-gradient(180deg, #fbfcfa 0%, #f4f7f4 100%);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid rgba(219, 227, 223, 0.82);
  backdrop-filter: blur(14px);
}

.mobile-tabbar {
  display: none;
}

.brand,
.topbar nav,
.hero-actions,
.service-strip,
.section-heading,
.crew-card,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.78rem;
  line-height: 1.2;
}

.topbar nav {
  gap: clamp(10px, 2vw, 22px);
}

.topbar a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.topbar nav a {
  color: var(--muted);
  font-size: 0.94rem;
}

.call-button,
.primary-action,
.ghost-action {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.call-button,
.primary-action {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(12, 122, 99, 0.22);
}

.ghost-action {
  color: var(--ink);
  background: #eef3f0;
}

.call-button:hover,
.primary-action:hover,
.ghost-action:hover {
  transform: translateY(-1px);
}

.compact {
  min-height: 38px;
}

.wide {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 0 0 22px;
}

.app-install-card {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: -8px 0 22px;
  border: 1px solid rgba(12, 122, 99, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.app-install-card span {
  color: var(--green-dark);
  font-weight: 900;
}

.app-install-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.app-install-card .ghost-action {
  justify-self: start;
}

.hero-metrics div {
  border: 1px solid rgba(219, 227, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1rem;
}

.hero-metrics span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-strip {
  flex-wrap: wrap;
  gap: 10px;
}

.service-strip span,
.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(#cfe5f7 0 48%, #e8eee9 48% 100%);
  box-shadow: var(--shadow);
}

.city-skyline {
  position: absolute;
  inset: auto 0 250px 0;
  height: 180px;
  background:
    linear-gradient(90deg, transparent 0 5%, #8fa9b8 5% 13%, transparent 13% 18%, #678492 18% 28%, transparent 28% 32%, #7695a5 32% 42%, transparent 42% 48%, #89a3b0 48% 60%, transparent 60% 68%, #6f8997 68% 80%, transparent 80% 100%);
  opacity: 0.72;
}

.street {
  position: absolute;
  inset: auto 0 0 0;
  height: 235px;
  background: #6a706f;
}

.street::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 8px;
  background: repeating-linear-gradient(90deg, #f1f4ef 0 68px, transparent 68px 120px);
}

.truck {
  position: absolute;
  right: 7%;
  bottom: 92px;
  width: min(78%, 620px);
  height: 230px;
}

.truck-box {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 68%;
  height: 168px;
  border-radius: 8px 8px 4px 4px;
  background: #f7faf7;
  border: 6px solid #263331;
}

.truck-box span {
  position: absolute;
  top: 36px;
  left: 34px;
  color: var(--green);
  font-size: clamp(1.2rem, 3vw, 2.1rem);
  font-weight: 1000;
}

.truck-cab {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 35%;
  height: 128px;
  border-radius: 8px 18px 6px 4px;
  background: var(--orange);
  border: 6px solid #263331;
}

.truck-cab::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 24px;
  width: 72px;
  height: 46px;
  border-radius: 4px;
  background: #b9def3;
  border: 5px solid #263331;
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #1d2524;
  border: 12px solid #3a4644;
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #cdd7d2;
}

.wheel-one {
  left: 14%;
}

.wheel-two {
  right: 13%;
}

.box-stack {
  position: absolute;
  left: 9%;
  bottom: 72px;
  width: 180px;
  height: 170px;
}

.box-stack span {
  position: absolute;
  display: block;
  border-radius: 7px;
  background: var(--yellow);
  border: 5px solid #263331;
}

.box-stack span:nth-child(1) {
  width: 94px;
  height: 78px;
  left: 0;
  bottom: 0;
}

.box-stack span:nth-child(2) {
  width: 88px;
  height: 94px;
  left: 72px;
  bottom: 0;
  background: #dca35e;
}

.box-stack span:nth-child(3) {
  width: 104px;
  height: 74px;
  left: 34px;
  bottom: 82px;
  background: #f5c84c;
}

.sofa {
  position: absolute;
  left: 16%;
  bottom: 218px;
  width: 210px;
  height: 76px;
  border-radius: 18px 18px 8px 8px;
  background: #2d6cdf;
  border: 5px solid #263331;
  transform: rotate(-5deg);
}

.sofa::before,
.sofa::after {
  content: "";
  position: absolute;
  bottom: -22px;
  width: 44px;
  height: 52px;
  border-radius: 8px;
  background: #2d6cdf;
  border: 5px solid #263331;
}

.sofa::before {
  left: 14px;
}

.sofa::after {
  right: 14px;
}

.mover {
  position: absolute;
  width: 34px;
  height: 92px;
  border-radius: 16px 16px 7px 7px;
  background: #263331;
}

.mover::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #9c6a42;
}

.mover::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 54px;
  height: 24px;
  border-radius: 999px;
  background: var(--orange);
}

.mover-one {
  left: 31%;
  bottom: 80px;
}

.mover-two {
  left: 45%;
  bottom: 78px;
  transform: scaleX(-1);
}

.booking-grid,
.agent-console,
.dashboard,
.crews,
.services,
.service-areas,
.recruiting,
.ops-board {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 22px;
  background:
    linear-gradient(180deg, #edf3ef 0%, #f7faf7 100%);
}

.booking-panel,
.estimate-panel,
.agent-panel,
.hr-panel,
.hr-summary,
.agent-status-card,
.phone-shell,
.timeline,
.crew-card,
.service-grid article,
.area-grid article,
.ops-columns article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.booking-panel,
.estimate-panel,
.agent-panel,
.hr-panel,
.hr-summary,
.service-grid article,
.area-grid article,
.ops-columns article {
  position: relative;
  border-color: rgba(219, 227, 223, 0.92);
}

.booking-panel::before,
.agent-panel::before,
.hr-panel::before,
.hr-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.services {
  background: #fff;
}

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

.service-grid article,
.area-grid article {
  padding: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-grid article:hover,
.area-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 122, 99, 0.38);
  box-shadow: 0 18px 42px rgba(23, 32, 31, 0.12);
}

.service-grid span,
.area-grid span {
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 52px;
  height: 38px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #dff4ee;
  color: var(--green-dark);
  font-weight: 900;
}

.service-grid p,
.area-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-areas {
  background:
    linear-gradient(180deg, #f7faf7 0%, #edf3ef 100%);
}

.area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agent-console {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 24px;
  align-items: start;
  background:
    linear-gradient(135deg, #17201f 0%, #0f3029 100%);
  color: #fff;
}

.agent-copy {
  max-width: 560px;
}

.agent-copy .eyebrow {
  color: #98ead6;
}

.agent-copy p:not(.eyebrow) {
  color: #c8d5d0;
  line-height: 1.65;
  margin-top: 16px;
  font-size: 1.06rem;
}

.agent-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--ink);
}

.agent-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agent-status-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  box-shadow: none;
}

.agent-status-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.pulse-dot {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--orange);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(242, 123, 53, 0.28);
}

.agent-panel.running .pulse-dot {
  background: var(--green);
}

.agent-panel.running .pulse-dot::after {
  animation: pulse-ring 1.1s ease-out infinite;
  border-color: rgba(12, 122, 99, 0.35);
}

.agent-steps {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.agent-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.agent-steps span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 2px solid #b9c8c2;
  background: #fff;
}

.agent-steps .active {
  color: var(--ink);
  border-color: rgba(12, 122, 99, 0.42);
  background: #f3fbf8;
}

.agent-steps .active span {
  border-color: var(--green);
}

.agent-steps .done {
  color: var(--green-dark);
}

.agent-steps .done span {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 4px #fff;
}

.agent-log {
  min-height: 132px;
  max-height: 220px;
  overflow: auto;
  border-radius: 8px;
  background: #101817;
  color: #d7e5e0;
  padding: 14px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.84rem;
  line-height: 1.55;
}

.agent-log p {
  margin: 0 0 8px;
}

.agent-log p:last-child {
  margin-bottom: 0;
}

.ops-columns article.agent-updated {
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(12, 122, 99, 0.16);
}

@keyframes pulse-ring {
  from {
    transform: scale(0.72);
    opacity: 1;
  }

  to {
    transform: scale(1.45);
    opacity: 0;
  }
}

.booking-panel,
.estimate-panel {
  padding: clamp(18px, 3vw, 30px);
}

.panel-heading,
.field-row,
.price-breakdown div {
  display: flex;
  gap: 18px;
}

.panel-heading {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.field-row > label {
  flex: 1 1 220px;
}

label,
.range-label,
.segmented-control legend {
  display: grid;
  gap: 8px;
  color: #36423f;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6d1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 122, 99, 0.12);
}

.booking-panel {
  display: grid;
  gap: 18px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
}

.segmented-control legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.segmented-control label {
  display: block;
}

.segmented-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid #cbd6d1;
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

.segmented-control input:checked + span {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.range-label {
  grid-template-columns: 1fr auto;
}

.range-label input {
  grid-column: 1 / -1;
  padding: 0;
  accent-color: var(--green);
}

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

.option-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.option-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.estimate-panel {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.estimate-card {
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--green-dark), #0a715b);
}

.estimate-card .eyebrow {
  color: #98ead6;
}

.estimate-card strong {
  display: block;
  font-size: 3.1rem;
  line-height: 1;
}

.estimate-card span,
.fine-print,
.ops-columns p,
.crew-card p,
.timeline p,
.job-card p {
  color: var(--muted);
}

.price-breakdown {
  display: grid;
  gap: 10px;
  margin: 0;
}

.price-breakdown div {
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.price-breakdown dt,
.price-breakdown dd {
  margin: 0;
}

.price-breakdown dd {
  font-weight: 900;
}

.section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.phone-shell {
  padding: 14px;
  background: #202928;
}

.phone-screen {
  min-height: 610px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8faf8;
}

.map-panel {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(90deg, transparent 48%, #cfd9d5 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 42%, #cfd9d5 42% 46%, transparent 46%),
    #e9f0ec;
}

.route-dot,
.van-marker,
.route-line {
  position: absolute;
}

.route-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 8px 22px rgba(23, 32, 31, 0.22);
}

.pickup-dot {
  left: 26%;
  top: 25%;
  background: var(--green);
}

.dropoff-dot {
  right: 25%;
  bottom: 22%;
  background: var(--orange);
}

.route-line {
  left: 31%;
  right: 30%;
  top: 34%;
  height: 44%;
  border-right: 5px dashed var(--green);
  border-bottom: 5px dashed var(--green);
  border-radius: 0 0 28px 0;
}

.van-marker {
  right: 34%;
  top: 48%;
  width: 54px;
  height: 36px;
  border-radius: 8px 12px 8px 8px;
  background: var(--orange);
  border: 4px solid #263331;
}

.job-card {
  margin: 18px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 32, 31, 0.12);
}

.crew-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.crew-mini span,
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dff4ee;
  color: var(--green-dark);
  font-weight: 900;
}

.crew-mini small {
  color: var(--muted);
  font-weight: 800;
}

.timeline {
  counter-reset: steps;
  list-style: none;
  margin: 0;
  padding: 18px 24px;
}

.timeline li {
  position: relative;
  min-height: 96px;
  padding-left: 52px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline li:last-child::before {
  display: none;
}

.timeline span {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf3ef;
  border: 1px solid var(--line);
}

.timeline span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9caaa5;
}

.timeline .done span {
  background: var(--green);
}

.timeline .done span::after {
  background: #fff;
}

.crews {
  background: #fff;
}

.recruiting {
  background:
    linear-gradient(180deg, #f7faf7 0%, #edf3ef 100%);
}

.internal-page {
  background: #edf3ef;
}

.recruiting.standalone {
  min-height: calc(100vh - 73px);
}

.recruiting.standalone .section-heading {
  align-items: flex-end;
}

.recruiting.standalone h1 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  max-width: 840px;
}

.hr-login {
  min-height: calc(100vh - 73px);
  display: grid;
  place-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.hr-login-card {
  width: min(100%, 520px);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.hr-login-card h1 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 3.9rem);
  line-height: 0.98;
}

.hr-login-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hr-login-card.denied {
  border-color: rgba(242, 123, 53, 0.45);
}

.payment-onboarding {
  margin-top: clamp(28px, 5vw, 52px);
}

.hr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.hr-panel,
.hr-summary {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.hr-summary {
  position: sticky;
  top: 96px;
}

.hr-summary strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hr-summary > p:not(.eyebrow),
.hr-steps p {
  color: var(--muted);
  line-height: 1.55;
}

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

.hr-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.hr-steps li span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #b9c8c2;
  border-radius: 50%;
}

.hr-steps li span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9c8c2;
}

.hr-steps strong {
  color: var(--ink);
}

.hr-steps p {
  grid-column: 2;
  margin: 3px 0 0;
  font-size: 0.88rem;
}

.hr-steps .active {
  border-color: rgba(12, 122, 99, 0.42);
  background: #f3fbf8;
}

.hr-steps .active span {
  border-color: var(--green);
}

.hr-steps .active span::after {
  background: var(--green);
}

.hr-steps .done strong {
  color: var(--green-dark);
}

.hr-steps .done span {
  border-color: var(--green);
  background: var(--green);
}

.hr-steps .done span::after {
  background: #fff;
}

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

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

.crew-card {
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
}

.crew-card.active {
  border-color: var(--green);
  box-shadow: 0 12px 26px rgba(12, 122, 99, 0.14);
}

.crew-card div {
  flex: 1;
}

.crew-card strong {
  color: var(--green);
}

.ops-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.ops-tabs button {
  border: 0;
  border-radius: 6px;
  padding: 9px 13px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.ops-tabs .active {
  background: var(--green);
  color: #fff;
}

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

.ops-columns article {
  padding: 20px;
}

.ops-columns span {
  color: var(--orange);
  font-weight: 900;
}

meter {
  width: 100%;
  height: 12px;
}

footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

footer a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(18px, 4vw, 40px);
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-page section {
  margin-top: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 22px;
}

@media (max-width: 980px) {
  .hero,
  .agent-console,
  .booking-grid,
  .tracking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .estimate-panel {
    position: static;
  }

  .crew-grid,
  .service-grid,
  .area-grid,
  .hr-layout,
  .ops-columns {
    grid-template-columns: 1fr;
  }

  .hr-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .topbar nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .call-button {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .field-row,
  .panel-heading,
  .section-heading,
  .agent-toolbar,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-tabbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    border: 1px solid rgba(219, 227, 223, 0.94);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    padding: 6px;
    box-shadow: 0 16px 42px rgba(23, 32, 31, 0.2);
    backdrop-filter: blur(16px);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-tabbar a:focus,
  .mobile-tabbar a:hover {
    color: #fff;
    background: var(--green);
  }

  .segmented-control,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .truck {
    right: 4%;
    width: 84%;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .box-stack {
    transform: scale(0.78);
    transform-origin: left bottom;
  }

  .sofa {
    transform: rotate(-5deg) scale(0.78);
    transform-origin: left bottom;
  }

  .mover-one {
    left: 34%;
  }

  .mover-two {
    left: 51%;
  }
}
