@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --ink: #0a0a0a;
  --text: #1a1a1a;
  --mute: #6b6b6b;
  --line: #e8e8e8;
  --line-strong: #d4d4d4;
  --black: #111111;
  --accent: #1c1c1c;
  --ok: #0f7a4c;
  --danger: #b42318;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.rh-body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.rh-shell { width: var(--shell); margin-inline: auto; }
.rh-shell-sm { width: min(720px, calc(100% - 2rem)); margin-inline: auto; }

/* Typography */
.rh-display {
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
}
h1, h2, h3 { color: var(--ink); }

/* Buttons — mature, not playful */
.rh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .75rem 1.15rem;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.rh-btn-sm { padding: .5rem .85rem; font-size: .875rem; }
.rh-btn-lg { padding: .9rem 1.35rem; font-size: 1rem; }
.rh-btn-block { width: 100%; }
.rh-btn-signal,
.rh-btn-ink {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.rh-btn-signal:hover,
.rh-btn-ink:hover { background: #000; color: #fff; }
.rh-btn-ghost-dark {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.rh-btn-ghost-dark:hover { background: var(--bg-soft); }
.rh-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.rh-btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.rh-btn-pulse { animation: none; }

.rh-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Forms */
.rh-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: .4rem;
}
.rh-input, .rh-select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 8px;
  padding: .8rem .95rem;
  color: var(--text);
  outline: none;
}
.rh-input:focus, .rh-select:focus {
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

/* Surfaces */
.rh-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.rh-panel-pad { padding: 1.25rem; }
@media (min-width: 768px) { .rh-panel-pad { padding: 1.5rem; } }

.rh-badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .65rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--mute);
  border: 1px solid var(--line);
}

.rh-status {
  display: inline-flex;
  align-items: center;
  padding: .25rem .55rem;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: capitalize;
}
.rh-status-success { background: #eaf7f0; color: var(--ok); }
.rh-status-warning { background: #fff7e8; color: #9a6700; }
.rh-status-info { background: #eef5ff; color: #175cd3; }
.rh-status-danger { background: #fef3f2; color: var(--danger); }
.rh-status-primary { background: #f4f4f4; color: var(--ink); }
.rh-status-secondary { background: #f4f4f4; color: var(--mute); }

.rh-alert {
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .92rem;
  font-weight: 500;
}
.rh-alert-ok { background: #eaf7f0; color: #065f46; }
.rh-alert-err { background: #fef3f2; color: #912018; }

/* ===== Site header ===== */
.rh-site-header,
.rh-trust-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.rh-site-header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}
.rh-site-left {
  display: flex;
  align-items: center;
  min-width: 0;
  justify-self: start;
}
.rh-site-nav,
.rh-trust-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  justify-self: center;
  grid-column: 2;
}
.rh-site-right {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  justify-self: end;
  grid-column: 3;
}
.rh-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.rh-site-header .rh-brand-mark { display: none; }
.rh-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}
.rh-brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.rh-site-nav a,
.rh-trust-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: .9rem;
  padding: .45rem .7rem;
  border-radius: 8px;
}
.rh-site-nav a:hover,
.rh-trust-nav a:hover {
  color: var(--ink);
  background: var(--bg-soft);
}
.rh-site-nav a.is-active,
.rh-trust-nav a.is-active {
  color: var(--ink);
  font-weight: 650;
  background: var(--bg-soft);
}
@media (min-width: 880px) {
  .rh-site-nav,
  .rh-trust-nav { display: flex; }
}

.rh-site-city {
  display: none;
  color: var(--mute);
  font-size: .85rem;
  font-weight: 500;
  padding-right: .55rem;
  margin-right: .15rem;
  border-right: 1px solid var(--line-strong);
}
@media (min-width: 640px) {
  .rh-site-city { display: inline; }
}
.rh-site-login {
  display: none;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem .55rem;
}
@media (min-width: 480px) {
  .rh-site-login { display: inline; }
}
.rh-site-login:hover { opacity: .65; }
.rh-site-book {
  border-radius: 999px;
  padding: .5rem 1rem;
}

.rh-site-menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0 11px;
}
.rh-site-menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .15s ease, opacity .15s ease;
}
.rh-site-menu-btn.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.rh-site-menu-btn.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
@media (min-width: 880px) {
  .rh-site-menu-btn { display: none; }
}

.rh-site-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: .5rem 0 .85rem;
}
.rh-site-mobile a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.rh-site-mobile a:last-child { border-bottom: 0; }
.rh-site-mobile[hidden] { display: none !important; }
@media (min-width: 880px) {
  .rh-site-mobile { display: none !important; }
}

/* legacy */
.rh-location-chip,
.rh-trust-search { display: none !important; }
.rh-trust-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.rh-trust-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
}

/* Soft trust metrics under header — subtle, not loud strip */
.rh-trust-strip {
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
}
.rh-trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 1rem;
  padding: .65rem 0;
  font-size: .8rem;
}
.rh-trust-strip-inner strong { color: var(--ink); font-weight: 600; }
@media (min-width: 768px) {
  .rh-trust-strip-inner {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}

/* Sections */
.rh-section {
  padding: 3.25rem 0;
  background: #fff;
}
.rh-section-ink {
  background: var(--bg-soft);
  color: var(--ink);
}
.rh-section h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 .4rem;
}
.rh-section-lead {
  color: var(--mute);
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: .98rem;
}
.rh-section-ink .rh-section-lead { color: var(--mute); }

.rh-offer-grid,
.rh-portal-grid,
.rh-service-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .rh-offer-grid { grid-template-columns: repeat(3, 1fr); }
  .rh-portal-grid { grid-template-columns: repeat(3, 1fr); }
  .rh-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .rh-service-grid { grid-template-columns: repeat(3, 1fr); }
}

.rh-offer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #fff;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.rh-offer::after { display: none; }
.rh-offer-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--mute);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: .2rem .5rem;
  border-radius: 6px;
}
.rh-offer h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: .65rem 0 .35rem;
  letter-spacing: -0.02em;
}
.rh-offer p { margin: 0; color: var(--mute); font-size: .9rem; }

.rh-portal-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rh-portal-link:hover {
  border-color: #cfcfcf;
  box-shadow: var(--shadow);
  color: inherit;
  transform: none;
}
.rh-portal-link strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.rh-portal-link span { color: var(--mute); font-size: .9rem; }

/* ===== FOOTER (UC style black) ===== */
.rh-trust-footer {
  background: #212121;
  color: rgba(255,255,255,.65);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}
.rh-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 720px) {
  .rh-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .rh-footer-grid { grid-template-columns: 1.1fr 1fr 1fr 1.2fr; }
}
.rh-footer-grid h4 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
}
.rh-footer-grid a {
  display: block;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: .9rem;
  margin-bottom: .55rem;
}
.rh-footer-grid a:hover { color: #fff; }
.rh-social-row {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.rh-social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  margin: 0;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
}
.rh-store-row { display: grid; gap: .5rem; max-width: 200px; }
.rh-store-badge {
  display: block;
  background: #000;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: .65rem .75rem;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}
.rh-footer-help {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.rh-footer-bottom {
  padding-top: 1.25rem;
  display: grid;
  gap: .3rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* Legal / trust pages */
.rh-legal { padding: 2.25rem 0 2rem; }
.rh-legal-head { margin-bottom: 1.25rem; max-width: 40rem; }
.rh-legal-head h1 {
  margin: 0 0 .4rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.rh-legal-head p { margin: 0; color: var(--mute); }
.rh-legal-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.25rem 0 .4rem;
}
.rh-legal-body p, .rh-legal-body li {
  color: #444;
  line-height: 1.65;
  font-size: .95rem;
}
.rh-legal-body ul { padding-left: 1.1rem; }

.rh-review-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rh-review-grid { grid-template-columns: repeat(2, 1fr); }
}
.rh-review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}
.rh-stars { color: #b45309; letter-spacing: 1px; font-weight: 700; font-size: .85rem; }
.rh-mute { color: var(--mute); font-size: .85rem; }
.rh-trust-checklist { display: grid; gap: .5rem; font-weight: 500; }
.rh-trust-checklist div {
  padding: .8rem .95rem;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .92rem;
}

/* App shells */
.rh-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.rh-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 60px;
  padding: .5rem 0;
}
.rh-nav-links {
  display: flex;
  align-items: center;
  gap: .95rem;
  flex-wrap: wrap;
}
.rh-nav-links a {
  text-decoration: none;
  color: var(--mute);
  font-weight: 500;
  font-size: .9rem;
}
.rh-nav-links a.is-active,
.rh-nav-links a:hover { color: var(--ink); font-weight: 600; }
.rh-main { padding: 1.5rem 0 2.5rem; background: #fff; }
.rh-page-head { margin-bottom: 1.25rem; }
.rh-page-head h1 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 .3rem;
}
.rh-page-head p { margin: 0; color: var(--mute); font-size: .95rem; }

/* Customer home — professional SOS */
.rh-sos-band {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.rh-sos-band h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: .4rem 0 .35rem;
  color: var(--ink);
}
.rh-sos-band p {
  margin: 0;
  color: var(--mute);
  max-width: 34rem;
  font-size: .95rem;
}
.rh-sos-band .rh-badge {
  background: #fff;
}

.rh-offer-strip {
  display: grid;
  gap: .75rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
  .rh-offer-strip { grid-template-columns: 1.3fr 1fr; }
}
.rh-offer-banner {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.rh-offer-banner.alt { background: var(--bg-soft); }
.rh-offer-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}
.rh-offer-banner div { color: var(--mute); font-size: .88rem; }

.rh-service-tile {
  display: block;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rh-service-tile:hover {
  border-color: #cfcfcf;
  box-shadow: var(--shadow);
  transform: none;
}
.rh-service-tile.is-selected {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.rh-service-tile .rh-svc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--mute);
  margin-bottom: .65rem;
  font-size: .7rem;
  font-weight: 700;
}
.rh-service-tile strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .2rem;
}
.rh-service-tile small { color: var(--mute); font-size: .8rem; }

.rh-list { display: grid; gap: .65rem; }
.rh-list-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.rh-list-item:hover { border-color: #cfcfcf; color: inherit; }
.rh-list-item h3 {
  margin: 0 0 .15rem;
  font-size: .95rem;
  font-weight: 650;
}
.rh-list-item p { margin: 0; color: var(--mute); font-size: .82rem; }

.rh-tracking-map {
  height: 160px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px dashed var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--mute);
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* Auth — clean split */
.rh-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
}
@media (min-width: 960px) {
  .rh-auth-page { grid-template-columns: 1fr 1fr; }
}
.rh-auth-art {
  display: none;
  padding: 2.5rem;
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  color: var(--ink);
  flex-direction: column;
  justify-content: space-between;
}
.rh-auth-art::before { display: none; }
@media (min-width: 960px) {
  .rh-auth-art { display: flex; }
}
.rh-auth-art h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin: 1rem 0;
  color: var(--ink);
}
.rh-auth-art p { color: var(--mute); }
.rh-auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}
.rh-auth-card { width: min(400px, 100%); }
.rh-auth-card h1 {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: .85rem 0 .35rem;
}
.rh-auth-card .rh-muted { color: var(--mute); margin: 0 0 1.25rem; font-size: .95rem; }

/* Vendor */
.rh-online-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 8px;
  padding: .55rem .9rem;
  font-weight: 600;
  font-size: .875rem;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  background: #fff;
}
.rh-online-on { background: #eaf7f0; color: var(--ok); border-color: #c6ebd7; }
.rh-online-off { color: var(--mute); }
.rh-stat-row {
  display: grid;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .rh-stat-row { grid-template-columns: repeat(2, 1fr); }
}
.rh-stat {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.rh-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-top: .15rem;
}
.rh-stat span { color: var(--mute); font-size: .82rem; font-weight: 500; }
.rh-job-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.rh-app-footer-wrap { margin-top: 1rem; }

.rh-rise, .rh-rise-delay-1, .rh-rise-delay-2, .rh-rise-delay-3 { animation: none; }

/* ===== Dense app portals (customer / vendor) ===== */
.rh-app-body { background: #f7f7f7; }
.rh-main-dense { padding: 1.25rem 0 2rem; background: transparent; min-height: calc(100vh - 140px); }
.rh-user-pill {
  display: none;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mute);
}
@media (min-width: 900px) { .rh-user-pill { display: inline-flex; } }
.rh-nav-logout { color: var(--ink) !important; font-weight: 600 !important; }

.rh-app-foot {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1rem 0;
}
.rh-app-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.rh-app-foot-links { display: flex; flex-wrap: wrap; gap: .85rem; }
.rh-app-foot-links a {
  text-decoration: none;
  color: var(--mute);
  font-size: .85rem;
  font-weight: 500;
}
.rh-app-foot-links a:hover { color: var(--ink); }
.rh-app-foot-copy { color: var(--mute); font-size: .78rem; }
.rh-app-foot-copy a { color: var(--ink); font-weight: 700; text-decoration: none; }
.rh-app-foot-copy a:hover { text-decoration: underline; }

.rh-book-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .rh-book-layout { grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr); align-items: start; }
}
.rh-book-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.rh-book-hero h1 {
  margin: .35rem 0 .25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.rh-book-hero p { margin: 0; color: var(--mute); font-size: .92rem; max-width: 36rem; }
.rh-book-steps {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  align-content: flex-start;
}
.rh-book-steps span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--mute);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .65rem;
}
.rh-book-steps span.is-on { color: var(--ink); background: #fff; border-color: #bbb; }

.rh-section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .85rem;
}
.rh-section-title h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.rh-section-title p { margin: 0; color: var(--mute); font-size: .85rem; }

.rh-service-grid-dense { gap: .65rem; }
@media (min-width: 720px) {
  .rh-service-grid-dense { grid-template-columns: repeat(3, 1fr); }
}
.rh-loc-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr 1fr;
}
.rh-loc-span { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .rh-loc-grid { grid-template-columns: 1fr; }
}

.rh-estimate-card .rh-estimate-name {
  font-weight: 700;
  margin: .25rem 0 .15rem;
}
.rh-estimate-price {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: .85rem;
}
.rh-estimate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.rh-estimate-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  color: var(--mute);
}
.rh-estimate-list span { color: var(--ink); font-weight: 600; }
.rh-estimate-note {
  margin: .85rem 0 0;
  font-size: .8rem;
  color: var(--mute);
  line-height: 1.45;
}
.sticky-side { position: sticky; top: 84px; }
.rh-mini-offer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.rh-mini-offer:last-child { border-bottom: 0; }
.rh-mini-offer strong { font-size: .8rem; letter-spacing: .02em; }
.rh-mini-offer span { color: var(--mute); }
.rh-text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: .88rem;
}
.rh-text-link:hover { text-decoration: underline; }
.rh-list-compact { gap: .5rem; }
.rh-list-compact .rh-list-item { padding: .75rem .85rem; }

.rh-detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.rh-detail-value { font-weight: 700; font-size: 1.05rem; }
.rh-detail-price { font-size: 1.35rem; font-weight: 800; }
.rh-vendor-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.rh-support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .rh-detail-grid, .rh-support-grid { grid-template-columns: 1fr; }
}

.rh-table-wrap { overflow-x: auto; }
.rh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.rh-table th, .rh-table td {
  text-align: left;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.rh-table th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--mute);
  background: #fafafa;
}

.rh-stat-row-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .rh-stat-row-3 { grid-template-columns: repeat(3, 1fr); }
}
.rh-job-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.rh-job-card:last-child { border-bottom: 0; padding-bottom: 0; }
.rh-job-card:first-of-type { padding-top: .25rem; }
.rh-job-code { font-weight: 750; }
.rh-job-meta { color: var(--mute); font-size: .88rem; margin: .2rem 0; }
.rh-job-amt { font-weight: 700; }
.rh-empty-state {
  color: var(--mute);
  font-size: .92rem;
  padding: .5rem 0;
}

.rh-auth-art-rich { gap: 2rem; }
.rh-auth-bullets {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--mute);
  font-size: .92rem;
  line-height: 1.7;
}
.rh-auth-demo {
  font-size: .85rem;
  color: var(--mute);
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.rh-auth-card-rich { width: min(440px, 100%); }
.rh-auth-card-head { margin-bottom: 1.25rem; }
.rh-auth-form { display: grid; gap: .85rem; }
.rh-auth-form .rh-btn { margin-top: .35rem; }
.rh-auth-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.rh-auth-foot a {
  color: var(--mute);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
}
.rh-auth-foot a:hover { color: var(--ink); }

/* ===== Uber / Porter style booking flow ===== */
.rh-uber-home { display: grid; gap: 1rem; }
.rh-uber-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
}
.rh-uber-kicker { margin: 0; color: var(--mute); font-size: .9rem; font-weight: 500; }
.rh-uber-hero h1 {
  margin: .35rem 0 .45rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.rh-uber-hero-copy p { margin: 0 0 1rem; color: var(--mute); max-width: 34rem; }
.rh-uber-quick { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.rh-uber-chip {
  text-decoration: none;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.rh-uber-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .rh-uber-grid { grid-template-columns: 1.1fr 1fr; }
}
.rh-uber-flow {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.rh-uber-flow li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
  font-size: .9rem;
}
.rh-uber-flow span { color: var(--mute); }

.rh-progress {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 1.15rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
.rh-progress-step {
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  color: var(--mute);
  font-size: .82rem;
  font-weight: 600;
}
.rh-progress-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: .72rem;
}
.rh-progress-step.is-current { color: var(--ink); }
.rh-progress-step.is-current .rh-progress-num,
.rh-progress-step.is-done .rh-progress-num {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.rh-progress-step.is-done { color: var(--ink); }
.rh-progress-line {
  flex: 1;
  min-width: 18px;
  height: 2px;
  background: var(--line);
}
.rh-progress-line.is-done { background: #bbb; }

.rh-book-flow { max-width: 860px; }
.rh-book-flow-head { margin-bottom: 1rem; }
.rh-book-flow-head h1 {
  margin: .35rem 0 .35rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.rh-book-flow-head p { margin: 0; color: var(--mute); }
.rh-back-link {
  display: inline-block;
  text-decoration: none;
  color: var(--mute);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.rh-back-link:hover { color: var(--ink); }

.rh-vehicle-grid {
  display: grid;
  gap: .85rem;
}
@media (min-width: 720px) {
  .rh-vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}
.rh-vehicle-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  cursor: pointer;
  display: grid;
  gap: .35rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rh-vehicle-card:hover {
  border-color: #bbb;
  box-shadow: var(--shadow);
}

.rh-vehicle-ico,
.rh-vehicle-code {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.rh-vehicle-ico .ti {
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}
.rh-vehicle-card strong { font-size: 1.05rem; }
.rh-vehicle-card span { color: var(--mute); font-size: .88rem; }

.rh-problem-list { display: grid; gap: .65rem; }
.rh-problem-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: .85rem;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  cursor: pointer;
}
.rh-problem-row:hover { border-color: #bbb; box-shadow: var(--shadow); }
.rh-problem-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f3f3;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.rh-problem-ico .ti {
  font-size: 1.2rem;
  color: #111;
  line-height: 1;
}
.rh-problem-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.rh-problem-row strong { display: block; font-size: 1rem; margin-bottom: .15rem; }
.rh-problem-row span { color: var(--mute); font-size: .85rem; }
.rh-problem-fare { text-align: right; flex: 0 0 auto; }
.rh-problem-fare strong { display: block; font-size: .95rem; }
.rh-problem-fare span { color: var(--mute); font-size: .8rem; font-weight: 600; }

.rh-location-stage {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .rh-location-stage { grid-template-columns: 1.15fr .95fr; align-items: stretch; }
}
.rh-map-stage {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.65)),
    repeating-linear-gradient(90deg, #eef1f4 0 24px, #e7ebf0 24px 25px),
    repeating-linear-gradient(0deg, #eef1f4 0 24px, #e7ebf0 24px 25px),
    #dfe5ec;
  overflow: hidden;
}
.rh-map-roads {
  position: absolute;
  inset: 35% 10% auto 10%;
  height: 10px;
  background: #c5ccd6;
  border-radius: 6px;
  box-shadow: 0 48px 0 #c5ccd6, 0 -56px 0 #c5ccd6;
}
.rh-map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: var(--black);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(0,0,0,.2);
}
.rh-map-label {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .35rem .65rem;
  font-size: .78rem;
  font-weight: 600;
}
.rh-location-sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: grid;
  gap: .75rem;
  align-content: start;
}
.rh-sheet-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .25rem;
  font-size: .92rem;
}
.rh-sheet-title span { color: var(--mute); font-weight: 600; }
.rh-loc-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.rh-preset-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.rh-preset {
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
}
.rh-preset.is-on { background: #fff; border-color: #111; }

.rh-confirm-layout {
  display: grid;
  gap: 1rem;
}
@media (min-width: 960px) {
  .rh-confirm-layout { grid-template-columns: 1.35fr .85fr; align-items: start; }
}
.rh-confirm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rh-nearby-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.rh-nearby-row:last-child { border-bottom: 0; }
.rh-nearby-row strong { display: block; font-size: .95rem; }
.rh-nearby-row span { color: var(--mute); font-size: .82rem; }
.rh-nearby-row.is-best { background: #fafafa; margin: 0 -.5rem; padding: .75rem .5rem; border-radius: 10px; border-bottom: 0; }
.rh-nearby-eta { font-weight: 750; font-size: .95rem; }

/* ===== Home hero + services in one block ===== */
.rh-hero {
  padding: 3.25rem 0 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.rh-hero-top {
  padding-bottom: 2.25rem;
}
.rh-hero-copy {
  max-width: 560px;
}
.rh-hero-brand {
  margin: 0 0 .65rem;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.rh-hero h1 {
  margin: 0 0 .65rem;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink);
}
.rh-hero-copy > p {
  margin: 0 0 1.35rem;
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 32rem;
}

.rh-hero-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .rh-hero-services { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .rh-hero-services { grid-template-columns: repeat(6, 1fr); }
}
.rh-hero-svc {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.15rem 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
  transition: background .15s ease;
}
.rh-hero-svc:hover { background: #f0f0f0; }
.rh-hero-svc strong {
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.rh-hero-svc span {
  color: var(--mute);
  font-size: .82rem;
  font-weight: 500;
}
@media (min-width: 1000px) {
  .rh-hero-svc { border-bottom: 0; }
  .rh-hero-svc:last-child { border-right: 0; }
}

.rh-section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rh-home-offers {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .rh-home-offers { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.rh-home-offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.rh-home-offer span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: .4rem;
}
.rh-home-offer h3 {
  margin: 0 0 .35rem;
  font-size: 1.02rem;
}
.rh-home-offer p {
  margin: 0 0 .85rem;
  color: var(--mute);
  font-size: .9rem;
}
.rh-home-offer strong {
  font-size: .85rem;
  font-weight: 750;
}

/* keep partner landing helpers */
.rh-hero-lead {
  margin: 0 0 1.5rem;
  color: rgba(244,244,242,.72);
  font-size: 1.05rem;
  max-width: 32rem;
  line-height: 1.55;
}
.rh-btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.rh-btn-ghost-light:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.rh-how-steps {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
@media (min-width: 800px) {
  .rh-how-steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.rh-how-steps li {
  display: grid;
  gap: .35rem;
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
}
.rh-how-steps strong { font-size: .95rem; }
.rh-how-steps span { color: var(--mute); font-size: .9rem; }

.rh-partner-band {
  background: #121417;
  color: #f4f4f2;
  border-top: 0;
}
.rh-partner-band .rh-display { color: #fff; }
.rh-partner-band p { color: rgba(244,244,242,.7); max-width: 36rem; }
.rh-partner-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.rh-partner-band .rh-btn-ink {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.rh-partner-band .rh-btn-ink:hover { background: #eee; color: #111; }

.rh-partner-landing { background: #fff; }
.rh-partner-hero {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(212,160,60,.2), transparent 55%),
    linear-gradient(165deg, #1a1d22, #0e1013);
  color: #f4f4f2;
  padding: 4rem 0 3.25rem;
}
.rh-partner-hero .rh-hero-brand { color: #fff; }
.rh-partner-hero h1 {
  margin: .75rem 0;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(255,255,255,.94);
}
.rh-partner-body { padding: 2.5rem 0 3.5rem; }
.rh-partner-checklist { margin: 1.75rem 0 1.25rem; max-width: 520px; }
.rh-partner-note { color: var(--mute); margin: 0 0 1.25rem; max-width: 36rem; }


/* ===== Vendor Pro desk (Uber / Porter style) ===== */
.rh-vendor-body { padding-bottom: 4.5rem; }
.rh-online-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}
.rh-online-pill.is-on { background: #eaf7f0; color: var(--ok); border-color: #c6ebd7; }
.rh-online-pill.is-off { color: var(--mute); }
.rh-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.rh-online-on .rh-online-dot,
.rh-online-pill.is-on .rh-online-dot { box-shadow: 0 0 0 3px rgba(15,122,76,.15); }
.rh-nav-online { display: inline-flex; margin: 0; }

.rh-vendor-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}
.rh-vendor-tabbar a {
  text-decoration: none;
  text-align: center;
  padding: .85rem .5rem;
  font-size: .8rem;
  font-weight: 650;
  color: var(--mute);
}
.rh-vendor-tabbar a.is-active { color: var(--ink); }

.rh-vendor-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
}
.rh-vendor-status.is-online { border-color: #c6ebd7; background: linear-gradient(180deg, #f7fcf9, #fff); }
.rh-vendor-greet { margin: 0; color: var(--mute); font-size: .88rem; font-weight: 500; }
.rh-vendor-status h1 {
  margin: .2rem 0 .35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.rh-vendor-status p { margin: 0; color: var(--mute); max-width: 34rem; font-size: .92rem; }

.rh-active-strip { margin: 0 0 1rem; }
.rh-active-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-top: .65rem;
}
.rh-active-card strong { display: block; font-size: 1rem; }
.rh-active-card span { color: var(--mute); font-size: .85rem; }
.rh-active-card-meta { display: grid; gap: .35rem; justify-items: end; }
.rh-active-go { font-size: .82rem; font-weight: 700; color: var(--ink); }

.rh-offer-inbox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.25rem;
}
.rh-offer-card {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  margin-top: .85rem;
  background: #fff;
  transition: opacity .25s ease;
}
.rh-offer-card.is-expired { opacity: .45; pointer-events: none; }
.rh-offer-timer {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .85rem;
  background: #111;
  color: #fff;
}
.rh-offer-timer-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 99px;
  overflow: hidden;
}
.rh-offer-timer-bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: #d4a03c;
  transform-origin: left center;
  animation: rh-timer-shrink linear forwards;
}
.rh-offer-secs { font-size: .78rem; font-weight: 700; min-width: 2.2rem; text-align: right; }
.rh-offer-body { padding: 1rem 1.05rem 1.05rem; }
.rh-offer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.rh-offer-addr { margin: .55rem 0 .5rem; font-weight: 600; }
.rh-offer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}
.rh-offer-chips span {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mute);
}
.rh-empty-offline { border: 1px dashed var(--line-strong); }

.rh-job-flow { max-width: 960px; }
.rh-job-flow-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.rh-job-flow-title h1 {
  margin: .2rem 0 .25rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.rh-job-flow-title p { margin: 0; color: var(--mute); }

.rh-job-stepper {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: .85rem 1rem;
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.rh-job-stepper li {
  flex: 1;
  min-width: 72px;
  text-align: center;
  font-size: .75rem;
  font-weight: 650;
  color: var(--mute);
  position: relative;
  padding-top: .85rem;
}
.rh-job-stepper li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--line-strong);
}
.rh-job-stepper li.is-done,
.rh-job-stepper li.is-current { color: var(--ink); }
.rh-job-stepper li.is-done::before,
.rh-job-stepper li.is-current::before { background: var(--black); }

.rh-job-map { min-height: 240px; }
.rh-map-nav-btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: .55rem .85rem;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.rh-job-action-sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  position: sticky;
  top: 76px;
}
.rh-job-action-sheet h2 { margin: 0 0 .45rem; font-size: 1rem; }
.rh-job-action-hint { margin: 0 0 1rem; color: var(--mute); font-size: .9rem; }
.rh-job-cta-stack { display: grid; gap: .65rem; }

.rh-earn-row { cursor: default; }
.rh-earn-row:hover { background: transparent; }
.rh-support-topics {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--mute);
  font-size: .9rem;
  display: grid;
  gap: .45rem;
}

@keyframes rh-timer-shrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

@media (max-width: 860px) {
  /* Web portal keeps top nav (no forced phone tab bar).
     Phone preview uses body.rh-native-app rules in app-shell.css instead. */
  body.rh-native-app .rh-vendor-nav a:not(.rh-nav-logout),
  body.rh-native-app .rh-vendor-nav .rh-nav-online { display: none; }
  body.rh-native-app .rh-vendor-tabbar { display: grid; }
  body.rh-native-app.rh-vendor-body .rh-app-foot { display: none; }
  body:not(.rh-native-app) .rh-vendor-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .rh-nav-links .rh-hide-sm { display: none; }
  .rh-trust-search { order: 5; flex-basis: 100%; max-width: none; }
  .rh-cta-row .rh-btn { width: 100%; }
  .rh-confirm-row, .rh-loc-pair { grid-template-columns: 1fr; }
  .rh-hero { padding-top: 2.25rem; }
  .rh-hero-svc { padding: 1rem .85rem; }
}

/* ===== Live maps (OSM embed) ===== */
.rh-live-map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e8ecef;
}
.rh-live-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}
.rh-live-map-tall iframe { height: 280px; }
.rh-live-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .65rem .75rem;
  background: #fff;
  border-top: 1px solid var(--line);
}
.rh-live-map-wrap { min-height: 280px; }

/* ===== Receipt ===== */
.rh-receipt {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
}
.rh-receipt-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: .85rem;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 1rem;
}
.rh-receipt-sub { color: var(--mute); font-size: .85rem; margin-top: .2rem; }
.rh-receipt-no { text-align: right; }
.rh-receipt-no span {
  display: block;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mute);
}
.rh-receipt-no strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-top: .15rem;
}
.rh-receipt-grid {
  display: grid;
  gap: .85rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) {
  .rh-receipt-grid { grid-template-columns: 1fr 1fr; }
}
.rh-receipt-lines {
  list-style: none;
  margin: 0;
  padding: .5rem 0 0;
  border-top: 1px solid var(--line);
}
.rh-receipt-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.rh-receipt-total {
  font-weight: 750;
  border-bottom: 0 !important;
  padding-top: .85rem !important;
}
.rh-receipt-foot {
  margin: .85rem 0 1rem;
  color: var(--mute);
  font-size: .85rem;
}

@media print {
  .rh-topbar, .rh-app-foot, .rh-vendor-tabbar, .rh-book-side,
  .rh-cta-row, .rh-live-map-actions, .rh-btn { display: none !important; }
  .rh-receipt { border: 0; }
}


/* ===== Phase 2 public marketing pages ===== */
.rh-pub { padding: 2.75rem 0 3.5rem; }
.rh-pub-head { max-width: 640px; margin-bottom: 1.75rem; }
.rh-pub-head p { margin: .55rem 0 0; color: var(--mute); font-size: 1.02rem; line-height: 1.55; }
.rh-pub-kicker { margin: 0 0 .45rem !important; font-size: .85rem !important; color: var(--mute) !important; }
.rh-pub-kicker a { color: var(--mute); text-decoration: none; font-weight: 600; }
.rh-pub-kicker a:hover { color: var(--ink); }
.rh-pub-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .rh-pub-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-pub-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .rh-pub-grid { grid-template-columns: repeat(3, 1fr); }
}
.rh-pub-card {
  display: grid;
  gap: .35rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  background: #fff;
}
.rh-pub-card:hover { border-color: #cfcfcf; background: #fafafa; }
.rh-pub-card strong { font-size: 1rem; }
.rh-pub-card span { color: var(--mute); font-size: .9rem; }
.rh-pub-card em { font-style: normal; font-size: .82rem; font-weight: 650; color: var(--ink); }
.rh-pub-split {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .rh-pub-split { grid-template-columns: 1.4fr .8fr; align-items: start; }
}
.rh-pub-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .rh-pub-meta { grid-template-columns: repeat(3, 1fr); }
}
.rh-pub-bullets {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--mute);
  display: grid;
  gap: .4rem;
}
.rh-pub-vehicles { color: var(--mute); font-size: .92rem; }
.rh-pub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.rh-pub-side-list { display: grid; gap: .35rem; }
.rh-pub-side-list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
}
.rh-pub-side-list a:last-child { border-bottom: 0; }
.rh-pub-note { color: var(--mute); font-size: .88rem; margin: 1rem 0 0; }
.rh-pub-price {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 .85rem;
}
.rh-pub-price span { font-size: .9rem; font-weight: 500; color: var(--mute); }
.rh-table-wrap { overflow-x: auto; }
.rh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.rh-table th,
.rh-table td {
  text-align: left;
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--line);
}
.rh-table th { color: var(--mute); font-weight: 650; font-size: .8rem; }
.rh-faq-list { display: grid; gap: .65rem; max-width: 720px; }
.rh-faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
  background: #fff;
}
.rh-faq-item summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
.rh-faq-item summary::-webkit-details-marker { display: none; }
.rh-faq-item p {
  margin: .65rem 0 0;
  color: var(--mute);
  font-size: .92rem;
  line-height: 1.5;
}
