:root {
  --red: #df5b3f;
  --red-dark: #bf4328;
  --red-light: #fff1ea;
  --red-soft: #fff7f3;
  --navy: #1f3142;
  --navy-soft: #2b455f;
  --ink: #213547;
  --gray: #64748b;
  --gray-dark: #475569;
  --gray-light: #f6f3ee;
  --surface: #fffdf9;
  --surface-2: #fff;
  --border: rgba(31, 49, 66, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --gold: #f3b34c;
  --green: #0f9f72;
  --shadow: 0 20px 45px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 24, 40, 0.15);
  --shadow-soft: 0 10px 30px rgba(31, 49, 66, 0.06);
  --r: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 179, 76, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff 24%, #fff9f4 100%);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #162431;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: #fff3cf;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 49, 66, 0.06);
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-logo,
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-logo span {
  color: var(--navy);
}

.brand-logo-link,
.brand-logo-static {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo-img {
  display: block;
  width: clamp(126px, 11vw, 158px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.ft-brand .brand-logo-static {
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

.ft-brand .brand-logo-img {
  width: 150px;
  max-height: 48px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex: 1;
  gap: 1px;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.nav-links a {
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--red);
  background: var(--red-light);
}

.nav-links a.on {
  color: var(--red);
  background: var(--red-light);
  font-weight: 700;
}

/* "帮助中心" 单独靠右、视觉降权 */
.nav-links li.nav-secondary {
  margin-left: auto;
}
.nav-links li.nav-secondary a {
  color: var(--gray);
  font-weight: 500;
}
.nav-links li.nav-secondary a:hover,
.nav-links li.nav-secondary a.on {
  color: var(--red);
  background: var(--red-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-auth-link,
.nav-auth-user {
  border: 1px solid rgba(31, 49, 66, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(31, 49, 66, 0.04);
}

.nav-auth-link {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-auth-link:hover,
.nav-auth-user:hover {
  color: var(--red);
  background: var(--red-light);
}

.nav-auth-user {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 126px;
  padding: 4px 9px 4px 5px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
}

.nav-auth-user span:last-child {
  display: block;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-auth-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(31, 49, 66, 0.1);
  flex-shrink: 0;
}

.nav-auth-initial {
  display: inline-grid;
  place-items: center;
  background: var(--red-light);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.nav-auth-logout {
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gray);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.nav-auth-logout:hover {
  color: var(--red);
  background: var(--red-light);
}

.nav-toggle,
.nav-mobile-shell {
  display: none;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(31, 49, 66, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.nav-mobile-shell {
  padding-bottom: 14px;
}

.nav-mobile {
  display: grid;
  gap: 8px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  position: relative;
  z-index: 3;
  transition: max-height 0.24s ease, opacity 0.24s ease, padding 0.24s ease;
}

.nav-mobile.on {
  padding: 12px 0 0;
  max-height: min(640px, calc(100vh - 126px));
  overflow-y: auto;
  opacity: 1;
}

.nav-mobile a {
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(31, 49, 66, 0.08);
}

.nav-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active,
.mini-btn:active {
  transform: translateY(0);
}

.btn:disabled,
.mini-btn:disabled,
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: .62;
  transform: none;
  box-shadow: none;
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #f07b55 100%);
  box-shadow: 0 14px 32px rgba(223, 91, 63, 0.28);
}

.btn-red:hover {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.btn-ghost {
  color: var(--navy);
  border: 1.5px solid rgba(31, 49, 66, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.btn-ghost:hover {
  border-color: rgba(223, 91, 63, 0.32);
  color: var(--red);
}

.btn-lg {
  min-height: 52px;
  padding: 0 30px;
  font-size: 15px;
}

.btn-xl {
  min-height: 58px;
  padding: 0 34px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-admin {
  font-size: 13px;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff5e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding: 64px 0 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(243, 179, 76, 0.26), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, #1c2b3a 0%, #31526d 55%, #446d8b 100%);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin-top: 18px;
  max-width: 720px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.metric-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span,
.list-hero-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.hero-quick-picks {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-pick {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.quick-pick:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.quick-pick strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.quick-pick span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.hero-search-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.hero-search-card h2 {
  margin: 14px 0 18px;
  font-size: 30px;
  line-height: 1.15;
  color: var(--navy);
}

.search-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(31, 49, 66, 0.1);
  background: #fff;
  transition: 0.2s ease;
}

.sb-field:hover {
  border-color: rgba(223, 91, 63, 0.22);
  box-shadow: var(--shadow-soft);
}

.sb-icon {
  flex-shrink: 0;
  color: var(--red);
}

.sb-stack {
  flex: 1;
}

.sb-label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}

.sb-field select,
.sb-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--navy);
}

.sb-btn {
  min-height: 58px;
  border: none;
  border-radius: 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #f07b55 100%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(223, 91, 63, 0.26);
}

.sb-btn:hover {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.hero-mini-cards {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mini-card {
  padding: 15px 16px;
  border-radius: 18px;
  background: var(--red-soft);
  border: 1px solid rgba(223, 91, 63, 0.12);
}

.mini-card strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.mini-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray-dark);
}

.cred-strip {
  margin-top: 0;
  padding-top: 18px;
  position: relative;
  z-index: 2;
}

.cred-strip::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 120px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 127, 35, 0.12), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(20, 61, 135, 0.12), transparent 30%);
  filter: blur(18px);
  opacity: .9;
}

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

.cred-item {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  height: 100%;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.54)),
    linear-gradient(155deg, rgba(255,126,28,.09), rgba(21,60,136,.06));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 60px rgba(31, 49, 66, 0.12),
    inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.cred-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.65) 0%, rgba(255,255,255,.18) 34%, transparent 58%),
    radial-gradient(circle at 90% 0%, rgba(255,126,28,.14), transparent 38%);
}

.cred-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,60,136,.18), transparent);
}

.cred-num,
.cred-label {
  position: relative;
  z-index: 1;
}

.cred-num {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  color: var(--navy);
}

.cred-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray);
}

.scenes {
  padding: 64px 0 18px;
}

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

.scene-card {
  padding: 28px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 244, 0.96) 100%);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: var(--shadow);
}

.scene-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff1ea 0%, #ffe4d8 100%);
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
}

.scene-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
}

.scene-card p {
  margin-top: 12px;
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.8;
}

.scene-points {
  margin-top: 18px;
  padding-left: 20px;
  color: var(--gray);
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.section-soft {
  background: transparent;
}

.services,
.featured,
.reviews,
.weekly-pick,
.hot-sitters,
.hiw,
.trust,
.app-banner,
.cta {
  padding: 92px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 42px;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--red-light);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sec-label-warm {
  background: #fff4df;
  color: #c4830e;
}

.sec-label-green {
  background: #e8fbf5;
  color: #118463;
}

.sec-label-dark {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.sec-head h2,
.trust-head h2,
.cta h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.sec-head p,
.trust-head p,
.cta p {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 17px;
  color: var(--gray);
}

.svc-grid,
.sitters-grid,
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.svc-card,
.sc,
.rv-card,
.wk-card,
.hot-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.svc-card:hover,
.sc:hover,
.rv-card:hover,
.wk-card:hover,
.hot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(223, 91, 63, 0.18);
}

.svc-card:focus-visible,
.sc:focus-visible,
.hot-card:focus-visible,
.wk-card:focus-visible {
  outline: 3px solid rgba(223, 91, 63, .32);
  outline-offset: 4px;
}

.svc-card {
  overflow: hidden;
  cursor: pointer;
}

.svc-img {
  height: 160px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe7d6 0%, #ffd4c2 100%);
}

.svc-img .svc-emoji {
  font-size: 76px;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
  z-index: 2;
}

.svc-card:hover .svc-img .svc-emoji {
  transform: scale(1.12) rotate(-4deg);
}

/* 每卡不同色调 */
.svc-card:nth-child(6n+1) .svc-img { background: linear-gradient(135deg,#ffe1d0 0%,#ffb89a 100%); }
.svc-card:nth-child(6n+2) .svc-img { background: linear-gradient(135deg,#dceeff 0%,#a7d2ff 100%); }
.svc-card:nth-child(6n+3) .svc-img { background: linear-gradient(135deg,#fff3c4 0%,#ffd980 100%); }
.svc-card:nth-child(6n+4) .svc-img { background: linear-gradient(135deg,#f0e0ff 0%,#cab1ff 100%); }
.svc-card:nth-child(6n+5) .svc-img { background: linear-gradient(135deg,#d4f5e5 0%,#9be0bd 100%); }
.svc-card:nth-child(6n+6) .svc-img { background: linear-gradient(135deg,#ffd9e0 0%,#ffa3b6 100%); }

.sc-photo::after,
.wk-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.7;
  pointer-events: none;
}

.sc-photo img,
.wk-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sc:hover .sc-photo img,
.wk-card:hover .wk-cover img {
  transform: scale(1.06);
}

.svc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.svc-body {
  padding: 20px 20px 22px;
}

.svc-body h3 {
  font-size: 20px;
  color: var(--navy);
}

.svc-body p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.card-action-line {
  margin-top: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.svc-price {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
}

.hiw {
  background:
    radial-gradient(circle at top right, rgba(243, 179, 76, 0.14), transparent 22%),
    var(--gray-light);
}

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

.hiw-step {
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: var(--shadow);
}

.hiw-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red-light) 0%, #fff7f2 100%);
  color: var(--red);
  font-size: 24px;
  font-weight: 950;
}

.hiw-step h3 {
  margin-top: 18px;
  font-size: 22px;
  color: var(--navy);
}

.hiw-step p {
  margin-top: 10px;
  color: var(--gray);
  font-size: 15px;
}

.hot-sitters {
  background: linear-gradient(180deg, #fff8ef 0%, transparent 100%);
}

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

.hot-card {
  padding: 22px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.hot-rank {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  background: linear-gradient(135deg, #f0ac37 0%, #c97b08 100%);
}

.hot-rank.rank-2 {
  background: linear-gradient(135deg, #8fa5bb 0%, #54677c 100%);
}

.hot-rank.rank-3 {
  background: linear-gradient(135deg, #ec8f66 0%, #b45828 100%);
}

.hot-rank.rank-4 {
  background: linear-gradient(135deg, #7b8ef6 0%, #5062c6 100%);
}

.hot-ava {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff6e8;
}

.hot-name {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
}

.hot-loc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray);
}

.hot-stats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 49, 66, 0.14);
  display: flex;
  gap: 14px;
}

.hot-stat strong {
  display: block;
  font-size: 18px;
  color: var(--red);
}

.hot-stat span {
  font-size: 11px;
  color: var(--gray);
}

.hot-price {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 950;
  color: var(--navy);
}

.hot-price small {
  margin-left: 4px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.weekly-pick {
  background: transparent;
}

.wk-card {
  overflow: hidden;
  cursor: pointer;
}

.wk-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.wk-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.wk-body {
  position: relative;
  padding: 22px;
}

.wk-ava {
  position: absolute;
  top: -34px;
  left: 22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.wk-main {
  padding-top: 42px;
}

.wk-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
}

.wk-verify {
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8fbf5;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.wk-loc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray);
}

.wk-bio {
  margin-top: 10px;
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wk-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 49, 66, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.wk-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.wk-rating strong {
  color: var(--navy);
  font-size: 18px;
}

.wk-rating span:last-child {
  color: var(--gray);
  font-size: 12px;
}

.wk-price {
  font-size: 24px;
  font-weight: 950;
  color: var(--red);
}

.wk-price small {
  margin-left: 4px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.sc {
  overflow: hidden;
  cursor: pointer;
}

.sc-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sc-avail {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 159, 114, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.sc-avail.busy {
  background: rgba(216, 119, 6, 0.92);
}

.sc-body {
  padding: 18px 18px 20px;
}

.sc-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sc-ava {
  width: 56px;
  height: 56px;
  margin-top: -36px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}

.sc-info {
  min-width: 0;
  flex: 1;
}

.sc-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.sc-loc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-rating {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.sc-rnum {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
}

.sc-rcnt {
  font-size: 13px;
  color: var(--gray);
}

.sc-credit {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 49, 66, 0.08);
  background: #f8fafc;
}

.sc-credit-score {
  color: var(--navy);
  font-size: 14px;
  font-weight: 950;
}

.sc-credit-level {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.sc-credit.gold .sc-credit-level { background: #fffbeb; color: #b45309; }
.sc-credit.silver .sc-credit-level { background: #f1f5f9; color: #475569; }
.sc-credit.bronze .sc-credit-level { background: #fff7ed; color: #c2410c; }
.sc-credit.warning .sc-credit-level { background: #fefce8; color: #a16207; }
.sc-credit.restricted .sc-credit-level { background: #fef2f2; color: #dc2626; }

.sc-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sc-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.sc-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 49, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sc-price {
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  color: var(--navy);
}

.sc-price span {
  margin-left: 4px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.sc-verify {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}

.sc-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 42px;
  gap: 8px;
}

.mini-btn {
  height: 38px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.mini-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(223, 91, 63, 0.28);
  box-shadow: 0 8px 18px rgba(31, 49, 66, 0.08);
}

.mini-btn.primary {
  border-color: transparent;
  background: var(--red);
  color: #fff;
}

.mini-btn.icon {
  padding: 0;
  font-size: 18px;
  color: var(--red);
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

.trust {
  background:
    radial-gradient(circle at top left, rgba(243, 179, 76, 0.18), transparent 24%),
    linear-gradient(135deg, #15222e 0%, #24394c 100%);
  color: #fff;
}

.trust-head {
  text-align: center;
  margin-bottom: 40px;
}

.trust-head h2 {
  color: #fff;
}

.trust-head p {
  color: rgba(255, 255, 255, 0.74);
}

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

.trust-item {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff0d0;
  font-size: 18px;
  font-weight: 900;
}

.trust-item h3 {
  margin-top: 18px;
  font-size: 20px;
}

.trust-item p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.app-banner {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--red) 0%, #f07b55 100%);
  color: #fff;
}

.app-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 38px;
  align-items: center;
}

.app-text h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.app-text p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.app-btns {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: 0.18s ease;
  font: inherit;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.app-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 20px;
  font-weight: 900;
}

.app-btn-text small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.app-btn-text strong {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 900;
}

.app-showcase {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: min(100%, 360px);
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.phone-top {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 14px;
}

.phone-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.phone-body {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.phone-map {
  height: 140px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 40%, rgba(223, 91, 63, 0.2), transparent 18%),
    linear-gradient(135deg, #ffe3d6 0%, #fff5ee 100%);
}

.phone-order {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.phone-order strong {
  display: block;
  font-size: 16px;
}

.phone-order span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.phone-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.phone-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7f3;
}

.phone-list-item em {
  font-style: normal;
  font-weight: 700;
}

.phone-list-item span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.reviews {
  background: linear-gradient(180deg, transparent 0%, #fff8f1 100%);
}

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

.rv-card {
  padding: 24px;
}

.rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.rv-name {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
}

.rv-meta {
  margin-top: 2px;
  font-size: 13px;
  color: var(--gray);
}

.rv-stars {
  margin-top: 4px;
  color: var(--gold);
}

.rv-text {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.8;
}

.rv-text::before {
  content: "“";
  margin-right: 2px;
  font-size: 28px;
  line-height: 0;
  vertical-align: -5px;
  color: var(--red);
}

.rv-text::after {
  content: "”";
  margin-left: 2px;
  font-size: 28px;
  line-height: 0;
  vertical-align: -5px;
  color: var(--red);
}

.cta {
  padding-top: 84px;
}

.cta-shell {
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(243, 179, 76, 0.22), transparent 28%),
    linear-gradient(180deg, #fff9f5 0%, #fff 100%);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-btns {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.floating-bar {
  position: sticky;
  bottom: 16px;
  z-index: 1200;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(18, 28, 37, 0.92);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.floating-copy strong {
  display: block;
  font-size: 18px;
}

.floating-copy span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

footer {
  margin-top: 24px;
  padding: 64px 0 26px;
  background: #121c25;
  color: rgba(255, 255, 255, 0.64);
}

.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.ft-brand .nav-logo {
  color: #fff;
  display: inline-flex;
}

.ft-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.85;
}

.ft-social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ft-social a {
  min-width: 40px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.18s ease;
}

.ft-social a:hover {
  background: var(--red);
  color: #fff;
}

.ft-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.ft-col ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.ft-col li a {
  font-size: 14px;
  transition: 0.18s ease;
}

.ft-col li a:hover {
  color: #fff;
}

.ft-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.ft-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.ft-extra {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.7;
}

.ft-qr {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 6px, rgba(255,255,255,.03) 6px 12px);
  color: rgba(255,255,255,.72);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.mask {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.24s ease;
}

.mask.on {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 28px;
  background: #fff;
  transform: translateY(18px) scale(0.98);
  transition: 0.24s ease;
  box-shadow: var(--shadow-lg);
}

.mask.on .modal {
  transform: translateY(0) scale(1);
}

.mh {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(31, 49, 66, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.mh h2 {
  font-size: 22px;
  color: var(--navy);
}

.mc {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
}

.mb {
  padding: 26px;
}

.fg {
  margin-bottom: 18px;
}

.fl {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.fi,
.fs,
.ft2 {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1.5px solid rgba(31, 49, 66, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  outline: none;
  transition: 0.18s ease;
}

.ft2 {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.fi:focus,
.fs:focus,
.ft2:focus {
  border-color: rgba(223, 91, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(223, 91, 63, 0.08);
}

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

.switch-link,
.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

.switch-link a,
.form-note a {
  color: var(--red);
  font-weight: 800;
}

.modal-text {
  margin-bottom: 18px;
  color: var(--gray-dark);
}

.callout-box {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  background: var(--red-soft);
  border: 1px solid rgba(223, 91, 63, 0.12);
}

.callout-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--red);
}

.callout-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.75;
}

.checkbox-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1.5px solid rgba(31, 49, 66, 0.12);
  border-radius: 18px;
}

.checkbox-panel label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-dark);
}

.checkbox-panel input,
.cb-item input {
  accent-color: var(--red);
}

.booking-head-card {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 20px;
  background: var(--gray-light);
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
}

.booking-head-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.booking-head-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
}

.booking-head-sub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray);
}

.booking-head-price {
  font-size: 22px;
  font-weight: 950;
  color: var(--red);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  padding: 14px 18px;
  border-radius: 18px;
  color: #fff;
  background: rgba(31, 49, 66, 0.94);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.24s ease;
  pointer-events: none;
}

.toast.on,
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed rgba(31, 49, 66, 0.14);
  text-align: center;
  color: var(--gray);
}

.list-hero {
  padding: 58px 0 34px;
  background:
    radial-gradient(circle at 10% 16%, rgba(243, 179, 76, 0.18), transparent 22%),
    linear-gradient(135deg, #1b2a38 0%, #29455c 100%);
  color: #fff;
}

.list-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 26px;
  align-items: end;
}

.list-hero h1 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.list-hero p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.list-hero-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-hero-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.list-hero-stat + .list-hero-stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.list-hero-stat strong {
  display: block;
  font-size: 16px;
}

.list-hero-stat span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.page-shell {
  padding: 34px 0 74px;
}

.layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 108px;
}

.filter-card,
.results-panel,
.booking-card,
.calendar-wrap {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: var(--shadow);
}

.filter-card {
  padding: 24px;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.filter-head h3 {
  font-size: 20px;
  color: var(--navy);
}

.text-action {
  border: none;
  background: none;
  color: var(--red);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.fg-s {
  margin-bottom: 22px;
}

.fgt {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.cb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31, 49, 66, 0.08);
  cursor: pointer;
}

.cb-item span,
.cb-item label {
  font-size: 14px;
  color: var(--gray-dark);
}

.price-dual {
  position: relative;
  height: 34px;
  margin-top: 8px;
}

.price-dual .track,
.price-dual .track-fill {
  position: absolute;
  top: 14px;
  height: 5px;
  border-radius: 999px;
}

.price-dual .track {
  left: 0;
  right: 0;
  background: #ebe7df;
}

.price-dual .track-fill {
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--red) 0%, #f28a61 100%);
}

.price-dual input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-dual input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.price-dual input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: #fff;
  pointer-events: auto;
}

.price-range-label {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 13px;
  color: var(--gray);
}

.price-range-label strong {
  color: var(--red);
}

.star-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.star-rating button,
.tag-filter,
.sort-select,
.vt-btn,
.page-btn,
.rf-btn {
  font: inherit;
}

.star-rating button {
  min-width: 62px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  background: #fff;
  color: var(--gray-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.star-rating button.on,
.star-rating button:hover {
  color: var(--red);
  border-color: rgba(223, 91, 63, 0.3);
  background: var(--red-soft);
}

.tag-filters,
.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-filter {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 49, 66, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: 0.18s ease;
}

.tag-filter:hover,
.tag-filter.on {
  color: var(--red);
  border-color: rgba(223, 91, 63, 0.3);
  background: var(--red-soft);
}

.active-chips {
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(223, 91, 63, 0.18);
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.chip .x {
  font-size: 14px;
  line-height: 1;
}

.results-panel {
  margin-top: 18px;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.results-meta p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray);
}

.results-count {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
}

.results-count em {
  font-style: normal;
  color: var(--red);
}

.results-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.sitter-search-box {
  min-width: min(280px, 100%);
}

.sitter-search-box .fi {
  min-height: 42px;
  border-radius: 999px;
  background: #fff;
}

.sitter-quality-strip {
  margin: -6px 0 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sitter-quality-strip > div {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff8f2);
  border: 1px solid rgba(31, 49, 66, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.sitter-quality-strip strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
}

.sitter-quality-strip span {
  display: block;
  margin-top: 2px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 800;
}

.sort-select {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.vt-btn,
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.vt-btn.on,
.vt-btn:hover,
.page-btn.on,
.page-btn:hover,
.rf-btn.on,
.rf-btn:hover {
  color: var(--red);
  border-color: rgba(223, 91, 63, 0.28);
  background: var(--red-soft);
}

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

.grid-3.list-view {
  grid-template-columns: 1fr;
}

.list-view .sc {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-width: 0;
}

.list-view .sc-photo {
  height: 100%;
  min-height: 220px;
}

.list-view .sc-body {
  min-width: 0;
  display: grid;
  align-content: start;
}

.sc-match-note {
  margin-top: 12px;
  padding: 9px 11px;
  border-radius: 13px;
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sk-card {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(246, 243, 238, 0.8), rgba(255, 255, 255, 0.95), rgba(246, 243, 238, 0.8));
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

.no-result {
  grid-column: 1 / -1;
  padding: 64px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 49, 66, 0.08);
  text-align: center;
}

.no-result-ico {
  font-size: 54px;
  margin-bottom: 12px;
}

.no-result h3 {
  font-size: 22px;
  color: var(--navy);
}

.no-result p {
  margin-top: 8px;
  color: var(--gray);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.photo-wall .pw-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--gray-light);
  cursor: pointer;
}

.photo-wall .pw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-wall .pw-item:hover img {
  transform: scale(1.06);
}

.pw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.9);
}

.pw-lightbox.on {
  display: flex;
}

.pw-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
}

.pw-lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  border: none;
  background: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.rating-dist {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 49, 66, 0.08);
}

.rd-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.rd-label small {
  color: var(--gold);
}

.rd-bar {
  height: 10px;
  border-radius: 999px;
  background: #ece8df;
  overflow: hidden;
}

.rd-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, #f7c86a 100%);
}

.rd-count {
  min-width: 40px;
  text-align: right;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.rf-btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  background: #fff;
  color: var(--gray-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.calendar-wrap {
  padding: 20px;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cal-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
}

.cal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cal-nav button {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(31, 49, 66, 0.12);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.cal-nav button:hover {
  border-color: rgba(233, 82, 60, 0.35);
  background: #fff8f5;
}

.cal-month {
  min-width: 120px;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.cal-wk {
  padding: 6px 0;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  font-weight: 800;
}

.cal-day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 12px;
  background: #f8f6f1;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.cal-day.today {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.cal-day.past {
  color: #c6c0b7;
  background: #fbfaf8;
}

.cal-day.free {
  background: #e8fbf5;
  color: #07654b;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.cal-day.free:hover,
.cal-day.free:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 101, 75, 0.12);
  outline: 2px solid rgba(7, 101, 75, 0.25);
  outline-offset: 2px;
}

.cal-day.selected {
  border: 2px solid var(--red);
  background: #fff4ef;
  color: var(--red);
  box-shadow: 0 12px 26px rgba(233, 82, 60, 0.18);
}

.cal-day.free::after {
  content: "✓";
  position: absolute;
  bottom: 4px;
  font-size: 10px;
}

.cal-day.busy-待确认 {
  background: #fff4cf;
  color: #946200;
}

.cal-day.busy-进行中 {
  background: #ffe3df;
  color: #ad2d18;
}

.cal-day.busy-已完成 {
  background: #e7ebff;
  color: #3142a8;
}

.cal-day.busy-待确认::after,
.cal-day.busy-进行中::after,
.cal-day.busy-已完成::after {
  content: "•";
  position: absolute;
  bottom: 4px;
  font-size: 12px;
}

.cal-day.empty {
  background: transparent;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray);
}

.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cal-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .list-hero-inner,
  .app-inner,
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .cred-grid,
  .trust-grid,
  .hot-grid,
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-grid,
  .sitters-grid,
  .weekly-grid,
  .hiw-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.svc-photo {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #e5e7eb;
}

.svc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.42) 100%);
  pointer-events: none;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-card:hover .svc-photo img {
  transform: scale(1.06);
}

.svc-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  font-size: 22px;
  backdrop-filter: blur(12px);
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.svc-chip {
  font-size: 12px;
  color: #64748b;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-weight: 700;
}

.hot-card {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.hot-cover {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #e5e7eb;
}

.hot-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 38%, rgba(15, 23, 42, 0.48) 100%);
  pointer-events: none;
}

.hot-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hot-card:hover .hot-cover img {
  transform: scale(1.06);
}

.hot-body {
  padding: 18px 20px 20px;
}

.hot-rank {
  top: 14px;
  right: 14px;
  width: auto;
  height: auto;
  min-width: 66px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 1;
}

.hot-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
}

.hot-ava {
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.hot-name {
  margin-top: 0;
}

.hot-stats {
  justify-content: space-between;
  gap: 8px;
}

.hot-stat {
  min-width: 0;
}

.hot-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 49, 66, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.hot-foot > span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.hot-price {
  margin-top: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1200px);
  }

  .topbar-inner,
  .nav-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile-shell {
    display: block;
    width: 100%;
  }

  .nav-toggle {
    order: 3;
  }

  .nav-right {
    display: none;
  }

  .nav-right.nav-auth-managed {
    display: flex;
    width: 100%;
    justify-content: flex-end;
  }

  .hero-home,
  .list-hero {
    padding-top: 42px;
  }

  .cred-strip {
    padding-top: 14px;
  }

  .scenes {
    padding-top: 52px;
  }

  .hero-copy h1,
  .list-hero h1 {
    font-size: 34px;
  }

  .hero-metrics,
  .hero-quick-picks,
  .cred-grid,
  .scene-grid,
  .svc-grid,
  .sitters-grid,
  .weekly-grid,
  .hiw-steps,
  .trust-grid,
  .reviews-grid,
  .grid-3,
  .frow,
  .ft-grid {
    grid-template-columns: 1fr;
  }

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

  .list-view .sc {
    grid-template-columns: 1fr;
  }

  .list-view .sc-photo {
    min-height: 220px;
  }

  .hero-actions,
  .cta-btns,
  .floating-actions,
  .ft-extra {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-bar {
    width: min(100% - 20px, 1200px);
    bottom: 10px;
    padding: 16px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .booking-head-card {
    grid-template-columns: 54px 1fr;
  }

  .booking-head-price {
    grid-column: 1 / -1;
  }

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

/* Rover-inspired search-first homepage refresh */
body.home-page {
  background:
    linear-gradient(90deg, #fff3e4 0%, #fffaf3 39%, #fffdf9 67%, #fff3df 100%);
  color: #2a1b14;
}

body.home-page .wrap {
  width: min(1800px, calc(100% - 80px));
}

body.home-page .nav .wrap {
  width: calc(100% - 80px);
}

body.home-page .topbar,
body.home-page .home-aurora {
  display: none;
}

body.home-page .nav {
  position: sticky;
  top: 0;
  background: rgba(255, 250, 243, 0.94);
  border-bottom: 1px solid rgba(90, 63, 42, 0.08);
  box-shadow: none;
}

body.home-page .nav-inner {
  min-height: 76px;
  gap: 24px;
  max-width: none;
}

body.home-page .brand-logo-img {
  width: 132px;
  max-height: 46px;
}

body.home-page .nav-links {
  gap: 8px;
}

body.home-page .nav-links a {
  color: #4e372b;
  font-size: 15px;
  font-weight: 800;
  padding: 8px 10px;
  background: transparent;
}

body.home-page .nav-links a:hover {
  color: var(--red);
  background: rgba(223, 91, 63, 0.08);
}

body.home-page .nav-right .btn,
body.home-page .nav-auth-link,
body.home-page .nav-auth-user {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
}

body.home-page .hero-home {
  min-height: 640px;
  padding: 48px 0 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 184, 108, 0.22), transparent 32%),
    linear-gradient(90deg, #fff2df 0%, #fffaf4 48%, #fff3df 100%);
  overflow: hidden;
}

body.home-page .hero-home::before,
body.home-page .hero-home::after {
  display: none;
}

body.home-page .rover-hero-grid {
  width: min(1800px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(500px, 0.86fr);
  gap: 58px;
  align-items: center;
}

body.home-page .rover-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

body.home-page .rover-hero-copy .home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(223, 91, 63, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #d95338;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

body.home-page .rover-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #2a160f;
  font-size: clamp(44px, 4.45vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 950;
}

body.home-page .rover-hero-copy h1 span {
  display: block;
}

body.home-page .rover-hero-copy .hero-lead {
  max-width: 660px;
  margin: 16px 0 24px;
  color: #6b4635;
  font-size: 19px;
  line-height: 1.72;
  font-weight: 600;
}

body.home-page .rover-search-card {
  width: min(720px, 100%);
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(121, 83, 54, 0.12);
  box-shadow: 0 28px 65px rgba(92, 55, 31, 0.13);
}

body.home-page .service-segments {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 12px;
}

body.home-page .service-segment {
  appearance: none;
  border: 1px solid rgba(223, 91, 63, 0.12);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 10px;
  background: #fffaf5;
  color: #5f3b2d;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

body.home-page .service-segment:hover,
body.home-page .service-segment.active {
  border-color: #f16e4f;
  background: #fff1e8;
  color: #e45739;
  box-shadow: inset 0 0 0 1px rgba(241, 110, 79, 0.28);
}

body.home-page .rover-search-bar {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.9fr auto;
  gap: 8px;
  align-items: stretch;
}

body.home-page .rover-search-bar .sb-field {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 14px;
  border: 1px solid rgba(31, 49, 66, 0.1);
  background: #fff;
}

body.home-page .rover-search-bar .sb-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff3eb;
  color: #e75d3f;
  font-size: 15px;
}

body.home-page .rover-search-bar .sb-stack {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 2px;
}

body.home-page .rover-search-bar .sb-label {
  color: #9a7a68;
  font-size: 12px;
  font-weight: 900;
}

body.home-page .rover-search-bar select,
body.home-page .rover-search-bar input {
  width: 100%;
  min-width: 0;
  height: 28px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2a1b14;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

body.home-page .rover-search-bar .sb-btn {
  min-width: 142px;
  min-height: 66px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ec6347, #ff8b62);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(232, 92, 60, 0.28);
}

body.home-page .hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body.home-page .hero-trust-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(80, 55, 38, 0.1);
  color: #4d362b;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(92, 55, 31, 0.07);
}

body.home-page .rover-hero-side {
  min-width: 0;
  display: block;
}

body.home-page .hero-collage {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

body.home-page .collage-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 60px rgba(81, 51, 31, 0.18);
}

body.home-page .collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .collage-card figcaption {
  display: none;
}

body.home-page .collage-main {
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  z-index: auto;
  grid-column: 1;
  grid-row: 1;
}

body.home-page .collage-top {
  right: auto;
  top: auto;
  width: auto;
  height: auto;
  z-index: auto;
  grid-column: 1;
  grid-row: 2;
}

body.home-page .collage-bottom {
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  z-index: auto;
  grid-column: 2;
  grid-row: 1 / span 2;
}

body.home-page .collage-note {
  position: absolute;
  left: 42px;
  bottom: 30px;
  z-index: 4;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(81, 51, 31, 0.14);
}

body.home-page .collage-note strong {
  color: #2a160f;
  font-size: 16px;
  font-weight: 950;
}

body.home-page .collage-note span {
  color: #7b5b49;
  font-size: 13px;
  font-weight: 700;
}

body.home-page .home-services {
  padding-top: 34px;
  background: #fff8f0;
}

body.home-page .home-section-head h2 {
  color: #2a160f;
  letter-spacing: 0;
}

body.home-page .home-section-head {
  position: relative;
}

body.home-page .home-head-link {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #ee5732;
  font-size: 14px;
  font-weight: 900;
}

body.home-page .home-section-head p {
  color: #6b4635;
}

body.home-page .home-service-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-page .home-service-card {
  border-radius: 18px;
  background: #fffaf4;
  border: 1px solid rgba(92, 55, 31, 0.1);
  box-shadow: 0 14px 38px rgba(92, 55, 31, 0.08);
}

body.home-page .home-service-photo {
  height: 190px;
}

@media (max-width: 1060px) {
  body.home-page .rover-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.home-page .hero-collage {
    min-height: 420px;
  }

  body.home-page .collage-main {
    width: 52%;
    height: 280px;
  }
}

@media (max-width: 780px) {
  body.home-page .hero-home {
    min-height: auto;
    padding: 34px 0 38px;
  }

  body.home-page .rover-hero-grid {
    width: min(100% - 32px, 1220px);
  }

  body.home-page .rover-hero-copy h1 {
    font-size: 40px;
  }

  body.home-page .rover-search-card {
    padding: 14px;
  }

  body.home-page .service-segments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-page .rover-search-bar {
    grid-template-columns: 1fr;
  }

  body.home-page .rover-search-bar .sb-btn {
    width: 100%;
  }

  body.home-page .hero-collage {
    min-height: 360px;
  }

  body.home-page .collage-main {
    left: 0;
    top: 48px;
    width: 64%;
    height: 236px;
  }

  body.home-page .collage-top {
    width: 58%;
    height: 190px;
  }

  body.home-page .collage-bottom {
    right: 0;
    width: 58%;
    height: 180px;
  }

  body.home-page .collage-note {
    left: 14px;
    bottom: 10px;
    padding: 12px 14px;
  }
}

/* Exact pass for the latest approved homepage screenshot. */
body.home-page .rover-search-card {
  width: min(860px, 100%);
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(231, 222, 212, .92);
  box-shadow: 0 22px 48px rgba(64, 42, 28, .10);
}

body.home-page .service-segments {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

body.home-page .service-segment {
  min-height: 58px;
  border-radius: 10px;
  border: 1px solid #ece7e1;
  background: #fff;
  color: #7a4934;
  gap: 8px;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(80, 50, 28, .035);
}

body.home-page .service-segment .seg-ico {
  color: #8b3f25;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

body.home-page .service-segment:hover,
body.home-page .service-segment.active {
  color: #ef5b35;
  border-color: #ff8a68;
  background: #fffdfb;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 88, .46), 0 10px 22px rgba(239, 91, 53, .08);
}

body.home-page .service-segment.active .seg-ico {
  color: #ef5b35;
}

body.home-page .rover-search-bar {
  grid-template-columns: 1fr 1fr 1fr 164px;
  gap: 12px;
}

body.home-page .rover-search-bar .sb-field {
  min-height: 76px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #ebe5dd;
  box-shadow: 0 8px 18px rgba(80, 50, 28, .035);
}

body.home-page .rover-search-bar .sb-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 0;
  background: transparent;
  color: #7f5140;
  font-size: 24px;
}

body.home-page .rover-search-bar .sb-label {
  color: #384252;
  font-size: 13px;
  line-height: 1.1;
}

body.home-page .rover-search-bar select,
body.home-page .rover-search-bar input {
  color: #2d3645;
  font-size: 16px;
  font-weight: 850;
}

body.home-page .rover-search-bar .sb-btn {
  min-height: 76px;
  min-width: 164px;
  border-radius: 10px;
  background: #ee5732;
  box-shadow: 0 14px 26px rgba(238, 87, 50, .24);
}

body.home-page .rover-search-bar .sb-btn::before {
  content: "⌕";
  margin-right: 8px;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

body.home-page .hero-trust-badges {
  width: min(820px, 100%);
  margin-top: 14px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(231, 222, 212, .84);
  box-shadow: 0 14px 34px rgba(64, 42, 28, .08);
}

body.home-page .hero-trust-badges span {
  min-height: 56px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 10px;
  border: 0;
  border-right: 1px solid #eee6df;
  border-radius: 0;
  color: #1f2d3d;
  background: transparent;
  box-shadow: none;
}

body.home-page .hero-trust-badges span:last-child {
  border-right: 0;
}

body.home-page .hero-trust-badges i {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ed;
  color: #ef5b35;
  font-style: normal;
  font-size: 23px;
  font-weight: 900;
}

body.home-page .hero-trust-badges strong {
  color: #29364a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

body.home-page .hero-trust-badges em {
  margin-top: 3px;
  color: #768295;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
}

body.home-page .rover-search-card {
  width: min(820px, 100%);
  padding: 18px;
  border-radius: 16px;
}

body.home-page .service-segments {
  gap: 10px;
  margin-bottom: 18px;
}

body.home-page .service-segment {
  min-height: 56px;
  border-radius: 9px;
  color: #6f4a38;
  white-space: nowrap;
}

body.home-page .service-segment:hover,
body.home-page .service-segment.active {
  border-color: #ff7d59;
  color: #f15b38;
}

body.home-page .rover-search-bar {
  grid-template-columns: 1.18fr 1.58fr 1fr 150px;
  gap: 12px;
}

body.home-page .rover-search-bar .sb-field {
  min-height: 74px;
  border-radius: 9px;
}

body.home-page .rover-search-bar .sb-btn {
  min-height: 74px;
  min-width: 150px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ee5b36 0%, #f67948 100%);
}

body.home-page .hero-trust-badges {
  width: min(860px, 100%);
  border-radius: 16px;
  padding: 12px 14px;
}

body.home-page .hero-trust-badges span {
  min-height: 56px;
  padding: 0 16px;
}

body.home-page .rover-search-bar select,
body.home-page .rover-search-bar input {
  font-size: 15px;
}

body.home-page .hero-trust-badges strong,
body.home-page .hero-trust-badges em {
  white-space: nowrap;
}

body.home-page .hot-service-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(90, 63, 42, .09);
  box-shadow: 0 16px 44px rgba(64, 42, 28, .10);
}

body.home-page .hot-service-card .home-service-photo {
  height: 220px;
  border-radius: 0;
}

body.home-page .hot-service-card .home-service-photo em {
  right: 18px;
  left: auto;
  top: 16px;
  bottom: auto;
  background: #24b879;
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 900;
}

body.home-page .hot-service-body {
  padding: 18px 20px 20px;
}

body.home-page .scene-service-card .home-service-photo {
  height: 250px;
}

body.home-page .scene-service-card:nth-child(1) .home-service-photo img {
  object-position: center 48%;
}

body.home-page .scene-service-card:nth-child(2) .home-service-photo img {
  object-position: center 44%;
}

body.home-page .scene-service-card:nth-child(3) .home-service-photo img {
  object-position: center 50%;
}

body.home-page .hot-scene-title {
  margin: 0;
  color: #2a160f;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 950;
}

body.home-page .hot-scene-summary {
  margin: 8px 0 0;
  min-height: 22px;
  color: #6f5f55;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

body.home-page .hot-provider-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

body.home-page .hot-provider-avatar {
  width: 48px;
  height: 48px;
  margin-top: -38px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(64, 42, 28, .18);
}

body.home-page .hot-provider-main strong {
  display: block;
  color: #2a160f;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

body.home-page .hot-provider-main span {
  display: block;
  margin-top: 4px;
  color: #7d6a60;
  font-size: 13px;
  font-weight: 700;
}

body.home-page .hot-rating {
  color: #c6772c;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

body.home-page .hot-rating small {
  margin-left: 4px;
  color: #8f8179;
  font-weight: 700;
}

body.home-page .hot-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

body.home-page .hot-service-name {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  background: #fff5ee;
  color: #8b3f25;
  font-weight: 900;
}

body.home-page .hot-service-meta strong {
  color: #f0643f;
  font-size: 22px;
  font-weight: 950;
}

body.home-page .hot-service-meta small {
  color: #a38c7f;
  font-size: 13px;
  font-weight: 800;
}

body.home-page .hot-service-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

body.home-page .hot-service-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 9px;
  background: #fbf3ed;
  color: #8b6f61;
  font-size: 13px;
  font-weight: 900;
}

body.home-page .hot-service-tags button {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #f1ded4;
  background: #fff;
  color: #f0643f;
  font-size: 24px;
  cursor: pointer;
}

body.home-page .hot-scene-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 12px;
  margin-top: 18px;
}

body.home-page .hot-scene-actions .btn-primary,
body.home-page .hot-scene-actions .btn-ghost {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
}

body.home-page .home-local-channel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,247,238,.92)),
    #fff;
  border: 1px solid rgba(222, 184, 148, .46);
  box-shadow: 0 18px 50px rgba(87, 57, 35, .09);
}

body.home-page .home-local-copy h3 {
  margin: 10px 0 8px;
  color: #2a160f;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
}

body.home-page .home-local-copy p {
  margin: 0;
  max-width: 680px;
  color: #6f5f55;
  line-height: 1.7;
  font-weight: 700;
}

body.home-page .home-local-tags {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px;
}

body.home-page .home-local-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff4ec;
  border: 1px solid #ffd8c4;
  color: #a94d30;
  font-size: 13px;
  font-weight: 900;
}

.local-page {
  background:
    radial-gradient(circle at 14% 0, rgba(255, 226, 204, .78), transparent 30%),
    linear-gradient(180deg, #fff8f1 0, #f7f9fc 440px, #fff 100%);
  color: #1f2d3d;
}

.local-hero,
.local-merchant-hero {
  padding: 58px 0 34px;
}

.local-hero-grid,
.local-merchant-hero-grid,
.local-ops-grid,
.local-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 24px;
  align-items: stretch;
}

.local-hero-copy,
.local-hero-panel,
.local-merchant-hero-copy,
.local-merchant-hero-image,
.local-search-card,
.local-category-card,
.local-merchant-card,
.local-detail-card,
.local-empty,
.local-rule-list > div {
  background: rgba(255,255,255,.95);
  border: 1px solid #e7edf4;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.local-hero-copy,
.local-merchant-hero-copy {
  padding: 34px;
}

.local-hero-copy h1,
.local-merchant-hero-copy h1 {
  margin: 16px 0 14px;
  color: #1e2d40;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.local-hero-copy p,
.local-merchant-hero-copy p,
.local-ops p {
  margin: 0;
  color: #5f6e82;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 650;
}

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

.local-hero-panel {
  padding: 28px;
  align-self: end;
}

.local-hero-visuals {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.local-hero-visuals figure {
  position: relative;
  min-width: 0;
  min-height: 122px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
}

.local-hero-visual-main {
  grid-row: 1 / span 2;
}

.local-hero-visuals img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.local-hero-visuals figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(31, 45, 61, .68);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.local-hero-image-note {
  margin: 0 0 18px;
  padding: 10px 12px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
  color: #8a4b31;
  line-height: 1.55;
  font-size: 13px;
  font-weight: 750;
}

.local-hero-panel strong {
  display: block;
  color: #1e2d40;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 14px;
}

.local-hero-panel ul,
.local-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.local-hero-panel li,
.local-check-list li {
  position: relative;
  padding-left: 18px;
  color: #607087;
  line-height: 1.65;
  font-weight: 700;
}

.local-hero-panel li::before,
.local-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ee6f4d;
}

.local-search {
  padding: 0 0 22px;
}

.local-search-card {
  display: grid;
  grid-template-columns: 180px 220px minmax(240px, 1fr) auto;
  gap: 12px;
  padding: 18px;
  align-items: end;
}

.local-search-card label {
  display: grid;
  gap: 7px;
  color: #1e2d40;
  font-weight: 900;
}

.local-search-card select,
.local-search-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #dbe3ec;
  background: #fff;
  color: #1e2d40;
  font: inherit;
  font-weight: 750;
}

.local-search-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.local-search-tags button {
  min-height: 34px;
  border: 1px solid #ffe0d2;
  border-radius: 999px;
  background: #fff8f3;
  color: #a94d30;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.local-search-tags button:hover {
  border-color: #f2744f;
  background: #fff1e8;
}

.local-section {
  padding: 34px 0;
}

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

.local-category-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px 14px;
  align-items: start;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  border: 1px solid #e7edf4;
  font: inherit;
}

.local-category-card span {
  grid-row: span 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff2e8;
  color: #c85f39;
  font-weight: 950;
}

.local-category-card strong {
  color: #1e2d40;
  font-size: 17px;
  font-weight: 950;
}

.local-category-card em {
  color: #718096;
  font-style: normal;
  line-height: 1.55;
  font-weight: 650;
}

.local-category-card small {
  color: #8a6a58;
  line-height: 1.55;
  font-size: 13px;
  font-weight: 750;
}

.local-category-card b {
  width: max-content;
  margin-top: 4px;
  color: #d95735;
  font-size: 13px;
  font-weight: 950;
}

.local-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff2e8;
  color: #c85f39;
  font-weight: 950;
}

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

.local-demo-notice,
.local-detail-demo-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff7ed;
  color: #9a3412;
  line-height: 1.65;
}

.local-demo-notice strong,
.local-detail-demo-note strong {
  color: #7c2d12;
  font-weight: 950;
}

.local-demo-notice span,
.local-detail-demo-note span {
  color: #9a3412;
  font-weight: 750;
}

.local-merchant-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.local-merchant-card.is-demo {
  border-color: #fed7aa;
  background: linear-gradient(180deg, #fff, #fffaf5);
}

.local-merchant-cover {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
}

.local-merchant-cover img,
.local-merchant-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.local-merchant-cover span {
  position: absolute;
  left: 16px;
  top: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(31, 45, 61, .74);
  color: #fff;
  font-weight: 900;
}

.local-merchant-cover em {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #8a4b31;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.local-merchant-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.local-merchant-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.local-merchant-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.local-merchant-title a {
  color: #1e2d40;
  text-decoration: none;
}

.local-merchant-title em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff4ec;
  color: #bb5533;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.local-merchant-body p {
  margin: 12px 0 0;
  color: #64748b;
  line-height: 1.7;
  font-weight: 650;
}

.local-merchant-service {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.local-merchant-service strong {
  color: #1e2d40;
  font-weight: 950;
}

.local-merchant-service span {
  color: #64748b;
  line-height: 1.58;
  font-weight: 700;
}

.local-merchant-meta,
.local-merchant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.local-merchant-meta span,
.local-merchant-quick span,
.local-mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  color: #607087;
  font-size: 13px;
  font-weight: 850;
}

.local-merchant-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

.local-merchant-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff8f3;
  color: #9a4a2f;
  font-size: 12px;
  font-weight: 950;
}

.local-merchant-card.is-demo .local-merchant-trust span {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}

.local-merchant-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.local-merchant-actions .btn {
  min-height: 44px;
}

.local-empty {
  grid-column: 1 / -1;
  padding: 32px;
  color: #64748b;
  font-weight: 800;
  text-align: center;
}

.local-empty-rich {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.local-empty-rich strong {
  color: #1e2d40;
  font-size: 20px;
  font-weight: 950;
}

.local-empty-rich span {
  max-width: 720px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 700;
}

.local-empty-rich div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.local-trust,
.local-checklist-section {
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,248,243,.72));
}

.local-trust-grid,
.local-checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.local-trust-copy,
.local-trust-steps,
.local-checklist-grid > div,
.local-checklist-grid > ul {
  padding: 24px;
  border: 1px solid #e7edf4;
  border-radius: 8px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.local-trust-copy h2,
.local-checklist-grid h2 {
  margin: 12px 0 10px;
  color: #1e2d40;
  font-size: 34px;
  line-height: 1.18;
}

.local-trust-copy p,
.local-checklist-grid p {
  margin: 0;
  color: #5f6e82;
  line-height: 1.75;
  font-weight: 650;
}

.local-trust-steps {
  display: grid;
  gap: 12px;
}

.local-trust-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.local-trust-steps b {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff4ec;
  color: #d9673a;
  font-weight: 950;
}

.local-trust-steps strong {
  color: #1e2d40;
  font-weight: 950;
}

.local-trust-steps span {
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.local-ops {
  padding-bottom: 72px;
}

.local-ops h2 {
  margin: 14px 0 12px;
  color: #1e2d40;
  font-size: 36px;
  line-height: 1.18;
}

.local-rule-list {
  display: grid;
  gap: 12px;
}

.local-rule-list > div {
  padding: 18px;
}

.local-rule-list strong {
  display: block;
  color: #1e2d40;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 950;
}

.local-rule-list span {
  color: #64748b;
  line-height: 1.65;
  font-weight: 650;
}

.local-merchant-page {
  padding-bottom: 70px;
}

.local-merchant-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.local-merchant-hero-image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(31, 45, 61, .72);
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.local-detail-grid {
  align-items: start;
}

.local-detail-main {
  display: grid;
  gap: 18px;
}

.local-detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 90px;
}

.local-detail-card {
  padding: 24px;
}

.local-detail-card h2 {
  margin: 0 0 16px;
  color: #1e2d40;
  font-size: 22px;
  font-weight: 950;
}

.local-detail-lead {
  margin: -4px 0 16px;
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.local-review-summary,
.local-review-empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.local-review-summary strong {
  color: #ee6f4d;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.local-review-empty strong {
  color: #1e2d40;
  font-size: 20px;
  font-weight: 950;
}

.local-review-summary span,
.local-review-empty span {
  color: #64748b;
  line-height: 1.65;
  font-weight: 750;
}

.local-review-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.local-review-list article {
  padding: 14px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
}

.local-review-list strong {
  color: #1e2d40;
  font-weight: 950;
}

.local-review-list p {
  margin: 8px 0;
  color: #334155;
  line-height: 1.65;
}

.local-review-list span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 750;
}

.local-inquiry-modal[hidden] {
  display: none;
}

.local-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(30, 45, 64, .42);
}

.local-inquiry-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(30, 45, 64, .22);
}

.local-inquiry-card h2 {
  margin: 8px 0;
  color: #1e2d40;
  font-size: 28px;
  font-weight: 950;
}

.local-inquiry-card p {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 700;
}

.local-inquiry-card form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.local-inquiry-card label {
  display: grid;
  gap: 7px;
  color: #1e2d40;
  font-weight: 900;
}

.local-inquiry-card input,
.local-inquiry-card select,
.local-inquiry-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  padding: 0 14px;
  color: #1e2d40;
  font: inherit;
  font-weight: 750;
}

.local-inquiry-card textarea {
  min-height: 110px;
  padding: 12px 14px;
  line-height: 1.65;
  resize: vertical;
}

.local-inquiry-card .merchant-full,
.local-inquiry-card button[type="submit"] {
  grid-column: 1 / -1;
}

.local-inquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid #edf0f4;
  border-radius: 999px;
  background: #fff;
  color: #1e2d40;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.local-service-list {
  display: grid;
  gap: 12px;
}

.local-service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #fbfdff;
  border: 1px solid #eef2f7;
}

.local-service-row strong,
.local-service-row b {
  display: block;
  color: #1e2d40;
  font-size: 16px;
  font-weight: 950;
}

.local-service-row span,
.local-service-row em {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-style: normal;
  line-height: 1.55;
  font-weight: 650;
}

.local-service-list--detail {
  gap: 14px;
}

.local-service-row--detail {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  background: #fff;
}

.local-service-row-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.local-service-row-title strong {
  color: #1e2d40;
  font-size: 20px;
  font-weight: 950;
}

.local-service-row-title b {
  flex: 0 0 auto;
  max-width: 48%;
  color: #d95735;
  text-align: right;
  line-height: 1.45;
}

.local-service-row--detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.local-service-row--detail dl div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.local-service-row--detail dt {
  margin: 0 0 6px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 950;
}

.local-service-row--detail dd {
  margin: 0;
  color: #334155;
  line-height: 1.6;
  font-weight: 750;
}

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

.local-gallery-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.local-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #f8fafc;
}

.local-gallery-grid figcaption {
  padding: 10px 12px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.local-info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.local-info-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f7;
}

.local-info-list dt {
  color: #8794a7;
  font-weight: 850;
}

.local-info-list dd {
  margin: 0;
  color: #1e2d40;
  font-weight: 900;
}

.local-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.local-detail-cta {
  display: grid;
  gap: 12px;
}

.local-detail-cta p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.local-detail-cta .btn {
  width: 100%;
}

.local-ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.merchant-page {
  min-height: 100vh;
}

.merchant-apply-wrap,
.merchant-center-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 20px 88px;
}

.merchant-center-wrap--gate {
  max-width: 1120px;
  padding-top: 54px;
}

.merchant-apply-hero,
.merchant-center-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.merchant-center-head--gate {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border: 1px solid #f2ddce;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(255,247,239,.92)),
    radial-gradient(circle at 86% 20%, rgba(255,124,82,.14), transparent 32%);
  box-shadow: 0 22px 60px rgba(112, 76, 50, .08);
}

.merchant-apply-hero > div,
.merchant-apply-hero > aside,
.merchant-status-card,
.merchant-form-card,
.merchant-manage-card,
.merchant-tabs,
.merchant-panel {
  background: rgba(255,255,255,.95);
  border: 1px solid #e7edf4;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
}

.merchant-apply-hero > div,
.merchant-login-copy {
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,247,239,.94));
  border-color: #f0d9ca;
}

.merchant-apply-hero > div,
.merchant-apply-hero > aside,
.merchant-status-card,
.merchant-form-card,
.merchant-manage-card {
  padding: 24px;
}

.merchant-apply-hero h1,
.merchant-center-head h1 {
  margin: 14px 0 10px;
  color: #1e2d40;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.merchant-apply-hero p,
.merchant-center-head p,
.merchant-muted {
  margin: 0;
  color: #607087;
  line-height: 1.75;
  font-weight: 650;
}

.merchant-apply-hero aside {
  display: grid;
  gap: 10px;
  align-content: center;
}

.merchant-apply-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.merchant-apply-steps span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffd8c4;
  border-radius: 8px;
  background: #fff8f3;
  color: #a94d30;
  font-size: 14px;
  font-weight: 950;
}

.merchant-apply-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr) 300px;
  gap: 14px;
  align-items: stretch;
  margin: -4px 0 18px;
  padding: 16px;
  border: 1px solid #f0d9ca;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(112, 76, 50, .06);
}

.merchant-apply-summary-main,
.merchant-apply-summary-note {
  display: grid;
  gap: 6px;
  align-content: center;
}

.merchant-apply-summary-main > span {
  color: #d9673a;
  font-size: 13px;
  font-weight: 950;
}

.merchant-apply-summary-main strong,
.merchant-apply-summary-note strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-apply-summary-main p,
.merchant-apply-summary-note span {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-apply-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f2e7df;
}

.merchant-apply-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef6f4e, #f59f6d);
  transition: width .2s ease;
}

.merchant-apply-summary-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.merchant-apply-summary-steps span {
  display: grid;
  gap: 7px;
  justify-items: center;
  align-content: center;
  min-height: 74px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fbfdff;
  color: #1e2d40;
  font-size: 13px;
  font-weight: 900;
}

.merchant-apply-summary-steps span.is-active {
  border-color: #ffd8c4;
  background: #fff8f3;
}

.merchant-apply-summary-steps span.is-done {
  border-color: #bde9cf;
  background: #f1fbf5;
}

.merchant-apply-summary-steps b {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff4ec;
  color: #d9673a;
  font-weight: 950;
}

.merchant-apply-summary-steps .is-done b {
  background: #e8f8ef;
  color: #0f8a5f;
}

.merchant-apply-summary-steps em {
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.merchant-apply-summary-steps .is-active em {
  color: #d9673a;
}

.merchant-apply-summary-steps .is-done em {
  color: #0f8a5f;
}

.merchant-apply-summary-note {
  padding-left: 14px;
  border-left: 1px solid #edf0f4;
}

.merchant-apply-hero aside strong,
.merchant-status-card strong {
  color: #1e2d40;
  font-size: 20px;
  font-weight: 950;
}

.merchant-apply-hero aside span,
.merchant-status-card span,
.merchant-status-card em {
  display: block;
  color: #64748b;
  font-style: normal;
  font-weight: 750;
}

.merchant-status-note {
  display: block;
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
  color: #8a4b31;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.merchant-status-pill {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef7f8;
  color: #1f6f8b;
  font-size: 12px;
  font-weight: 950;
}

.merchant-status-pill--pending {
  background: #eff6ff;
  color: #1d4ed8;
}

.merchant-status-pill--warn {
  background: #fff7ed;
  color: #c2410c;
}

.merchant-status-pill--ok {
  background: #ecfdf5;
  color: #047857;
}

.merchant-status-pill--bad {
  background: #fef2f2;
  color: #b91c1c;
}

.merchant-status-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef4;
}

.merchant-status-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f6f8b, #0f8a5f);
}

.merchant-status-complete {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

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

.merchant-status-card--gate {
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 200px;
  border-color: #f0d9ca;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 54px rgba(112, 76, 50, .08);
}

.merchant-status-card--gate > span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4ec;
  color: #d9673a;
  font-size: 13px;
  font-weight: 950;
}

.merchant-gate-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.merchant-form {
  display: grid;
  gap: 18px;
}

.merchant-account-card {
  margin-bottom: 18px;
  border-color: #f0d9ca;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,243,.95)),
    radial-gradient(circle at 88% 12%, rgba(251,138,102,.16), transparent 34%);
}

.merchant-account-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.merchant-account-copy {
  display: grid;
  gap: 14px;
}

.merchant-account-auth {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #f3ddcf;
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 30px rgba(112,76,50,.06);
}

.merchant-account-auth.is-complete {
  display: none;
}

.merchant-account-auth-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.merchant-account-auth-head strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-account-auth-head span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
  font-weight: 750;
}

.merchant-account-rule-list {
  display: grid;
  gap: 8px;
}

.merchant-account-rule-list span {
  position: relative;
  padding: 10px 12px 10px 32px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fbfdff;
  color: #52667f;
  line-height: 1.55;
  font-weight: 800;
}

.merchant-account-rule-list span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef6f4e;
}

.merchant-account-status {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
  padding: 13px 14px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
}

.merchant-account-status.is-on {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.merchant-account-status.is-blocked {
  border-color: #fecaca;
  background: #fef2f2;
}

.merchant-account-status strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-account-status span {
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-account-status-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.merchant-account-status-actions a,
.merchant-account-status-actions button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
}

.merchant-forgot-link {
  border: none;
  background: transparent;
  color: #d95735;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
}

.merchant-reset-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  background: #fff7ed;
}

.merchant-reset-panel[hidden] {
  display: none;
}

.merchant-reset-panel--warn {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.merchant-reset-panel strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-reset-panel span {
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-reset-panel input {
  min-height: 44px;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
  color: #1e2d40;
  background: #fff;
}

.workspace-page {
  background:
    linear-gradient(120deg, rgba(255,244,236,.92), rgba(255,255,255,.96) 42%, rgba(240,253,244,.72));
  min-height: 100vh;
}

.workspace-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.workspace-hero {
  max-width: 760px;
  margin-bottom: 24px;
}

.workspace-hero h1 {
  margin: 10px 0 12px;
  color: #1e2d40;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.workspace-hero p {
  margin: 0;
  color: #5c6f89;
  line-height: 1.8;
  font-size: 17px;
  font-weight: 750;
}

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

.workspace-card,
.workspace-empty,
.workspace-note {
  border: 1px solid #e6edf5;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(30,45,64,.08);
}

.workspace-card {
  display: grid;
  gap: 13px;
  padding: 24px;
  min-height: 290px;
}

.workspace-card.is-active {
  border-color: #fb8a66;
  background: #fff8f3;
}

.workspace-card > span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff0e8;
  color: #d95735;
  font-size: 12px;
  font-weight: 950;
}

.workspace-card h2 {
  margin: 0;
  color: #1e2d40;
  font-size: 26px;
  letter-spacing: 0;
}

.workspace-card p {
  margin: 0;
  color: #52667f;
  line-height: 1.7;
  font-weight: 750;
}

.workspace-scope {
  padding: 12px;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  line-height: 1.6;
  font-weight: 750;
  font-size: 14px;
}

.workspace-empty {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
}

.workspace-empty h2 {
  margin: 0 0 8px;
  color: #1e2d40;
}

.workspace-empty p {
  margin: 0 0 18px;
  color: #64748b;
}

.workspace-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  background: #f8fafc;
}

.workspace-note strong {
  color: #1e2d40;
  font-weight: 950;
}

.workspace-note span {
  color: #64748b;
  line-height: 1.7;
  font-weight: 750;
}

.merchant-account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.merchant-account-tabs button {
  min-height: 38px;
  border: 1px solid #ffe1d0;
  border-radius: 999px;
  background: #fff;
  color: #8a4b31;
  padding: 0 14px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.merchant-account-tabs button.on {
  border-color: #ef6f4e;
  background: #fff4ec;
  color: #d95735;
}

.merchant-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.merchant-account-auth .merchant-account-grid {
  grid-template-columns: 1fr;
}

.merchant-account-grid[hidden] {
  display: none;
}

.merchant-account-grid .btn {
  min-height: 48px;
  white-space: nowrap;
}

.merchant-account-auth .merchant-account-grid .btn {
  width: 100%;
  justify-content: center;
}

.merchant-apply-redesign {
  max-width: 1280px;
  padding-top: 34px;
}

.merchant-apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.merchant-apply-rail {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr) 260px;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #dbe7f0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,253,.96) 56%, rgba(255,248,243,.9)),
    radial-gradient(circle at 92% 8%, rgba(15,138,95,.14), transparent 31%);
  box-shadow: 0 24px 70px rgba(30, 45, 64, .09);
}

.merchant-apply-rail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #1f6f8b, #0f8a5f 56%, #ef6f4e);
}

.merchant-apply-rail-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.merchant-apply-rail h1 {
  margin: 0;
  color: #1e2d40;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.merchant-apply-rail p {
  margin: 0;
  color: #5f7086;
  line-height: 1.75;
  font-weight: 750;
}

.merchant-apply-rail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.merchant-apply-rail-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #d6e4ee;
  border-radius: 999px;
  background: #fff;
  color: #315068;
  font-size: 13px;
  font-weight: 900;
}

.merchant-apply-path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.merchant-apply-path li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 13px 14px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
}

.merchant-apply-path b {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef7f8;
  color: #1f6f8b;
  font-size: 13px;
}

.merchant-apply-path strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-apply-path span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.merchant-apply-rail-note {
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 18px;
  border: 1px solid #cfe9dd;
  border-radius: 8px;
  background: #f2fbf6;
}

.merchant-apply-rail-note strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-apply-rail-note span {
  color: #4d6478;
  line-height: 1.6;
  font-weight: 750;
}

.merchant-apply-stage {
  display: grid;
  gap: 16px;
}

.merchant-apply-redesign .merchant-account-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-color: #dbe7f0;
  box-shadow: 0 20px 54px rgba(30, 45, 64, .08);
}

.merchant-apply-redesign .merchant-account-layout {
  grid-template-columns: minmax(0, .9fr) minmax(350px, .72fr);
  gap: 0;
}

.merchant-apply-redesign .merchant-account-copy {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,251,253,.96));
}

.merchant-apply-redesign .merchant-account-auth {
  min-height: 100%;
  padding: 24px;
  border-width: 0 0 0 1px;
  border-color: #dbe7f0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.merchant-apply-redesign .merchant-account-auth.is-complete {
  display: none;
}

.merchant-apply-redesign .merchant-account-layout:has(.merchant-account-auth.is-complete) {
  grid-template-columns: 1fr;
}

.merchant-apply-redesign .merchant-account-status {
  margin: 0;
}

.merchant-apply-redesign .merchant-apply-summary {
  margin: 0;
  grid-template-columns: minmax(0, .72fr) minmax(380px, 1fr);
  border-color: #dbe7f0;
  box-shadow: 0 18px 50px rgba(30, 45, 64, .07);
}

.merchant-apply-redesign .merchant-apply-summary-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 0;
  border-top: 1px solid #edf0f4;
  background: #f8fbfd;
  border-radius: 8px;
}

.merchant-apply-redesign .merchant-form {
  gap: 16px;
}

.merchant-account-agree {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none !important;
  gap: 10px !important;
  align-items: flex-start;
  color: #64748b !important;
  font-weight: 750 !important;
}

.merchant-form-card h2,
.merchant-manage-card h2 {
  margin: 0 0 18px;
  color: #1e2d40;
  font-size: 22px;
  font-weight: 950;
}

.merchant-apply-redesign .merchant-form-card {
  border-color: #dbe7f0;
  box-shadow: 0 18px 48px rgba(30, 45, 64, .06);
}

.merchant-form-card.has-error {
  border-color: #ffb79c;
  box-shadow: 0 20px 54px rgba(217, 87, 53, .12);
}

.merchant-section-error {
  display: none;
  margin: -4px 0 14px;
  padding: 12px 14px;
  border: 1px solid #ffb79c;
  border-radius: 8px;
  background: #fff4ec;
  color: #a93518;
  line-height: 1.55;
  font-weight: 850;
}

.merchant-section-error.show {
  display: block;
}

.merchant-form-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.merchant-form-title > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #eef7f8;
  color: #1f6f8b;
  font-weight: 950;
}

.merchant-form-title h2 {
  margin: 0 0 6px;
}

.merchant-form-title p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-section-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px 56px;
}

.merchant-section-guide span {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 13px 14px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #f8fbfd;
}

.merchant-section-guide b {
  color: #1e2d40;
  font-size: 14px;
  font-weight: 950;
}

.merchant-section-guide em {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 750;
}

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

.merchant-profile-intake {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.merchant-profile-group {
  padding: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.merchant-profile-group-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.merchant-profile-group-head strong {
  color: #1e2d40;
  font-size: 17px;
  font-weight: 950;
}

.merchant-profile-group-head span {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
  font-weight: 750;
}

.merchant-profile-group--intro textarea {
  min-height: 132px;
}

.merchant-profile-group--intro {
  grid-column: 1 / -1;
}

.merchant-form-card label,
.merchant-manage-card label {
  display: grid;
  gap: 7px;
  color: #1e2d40;
  font-weight: 900;
}

.merchant-form-card input,
.merchant-form-card select,
.merchant-form-card textarea,
.merchant-manage-card input,
.merchant-manage-card select,
.merchant-manage-card textarea,
.merchant-service-editor input,
.merchant-service-editor select,
.merchant-service-editor textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: #fff;
  color: #1e2d40;
  padding: 0 14px;
  font: inherit;
  font-weight: 750;
}

.merchant-form-card input:focus,
.merchant-form-card select:focus,
.merchant-form-card textarea:focus,
.merchant-manage-card input:focus,
.merchant-manage-card select:focus,
.merchant-manage-card textarea:focus {
  outline: none;
  border-color: #1f6f8b;
  box-shadow: 0 0 0 3px rgba(31, 111, 139, .12);
}

.merchant-form-card input[type="checkbox"],
.merchant-manage-card input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: #ef6f4e;
  cursor: pointer;
}

.merchant-form-card textarea,
.merchant-manage-card textarea {
  min-height: 118px;
  padding: 12px 14px;
  line-height: 1.65;
  resize: vertical;
}

.merchant-full {
  margin-top: 14px;
}

.merchant-service-intake {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.merchant-service-intake-main,
.merchant-service-intake-side {
  display: grid;
  gap: 14px;
}

.merchant-service-intake-side {
  align-content: start;
  padding: 14px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
}

.merchant-service-intake-main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.merchant-service-intake .merchant-full {
  grid-column: 1 / -1;
  margin-top: 0;
}

.merchant-material-intake {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.merchant-material-center {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #edf0f4;
}

.merchant-material-intake.is-disabled {
  opacity: .68;
  pointer-events: none;
}

.merchant-material-intake .merchant-full {
  grid-column: 1 / -1;
  margin-top: 0;
}

.merchant-material-intake textarea {
  min-height: 96px;
}

.merchant-upload-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  align-content: start;
  align-self: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
}

.merchant-upload-field label {
  min-width: 0;
}

.merchant-upload-field label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.merchant-field-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff4ec;
  color: #d95735;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.merchant-field-tag.is-muted {
  background: #eef7f8;
  color: #1f6f8b;
}

.merchant-upload-field .btn {
  min-height: 48px;
  white-space: nowrap;
  border-color: #cfe0ea;
  color: #315068;
}

.merchant-upload-preview {
  grid-column: 1 / -1;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px dashed #b9d3df;
  border-radius: 8px;
  background: #fff;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.merchant-upload-preview.on {
  display: flex;
}

.merchant-upload-preview img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #edf0f4;
  background: #f8fafc;
}

.merchant-upload-preview button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #d95735;
  cursor: pointer;
  font-weight: 900;
}

.merchant-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #f8fbfd;
  border: 1px solid #dfe8f0;
}

.merchant-checks label {
  display: flex;
  grid-template-columns: none;
  gap: 12px;
  align-items: flex-start;
  min-height: 116px;
  padding: 16px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  color: #4b5563;
  line-height: 1.6;
  cursor: pointer;
}

.merchant-checks label > span {
  display: grid;
  gap: 5px;
}

.merchant-checks strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-checks em {
  color: #64748b;
  font-style: normal;
  font-weight: 700;
}

.merchant-commitment-link {
  justify-self: start;
  width: max-content;
  margin-top: 4px;
  border: 0;
  border-bottom: 1px solid rgba(217, 87, 53, .42);
  background: transparent;
  color: #d95735;
  padding: 0 0 2px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.merchant-commitment-link:hover,
.merchant-commitment-link:focus-visible {
  color: #a93518;
  outline: none;
  border-bottom-color: currentColor;
}

.merchant-commitment-modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.merchant-commitment-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(30, 45, 64, .42);
}

.merchant-commitment-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px;
  border: 1px solid #f0d9ca;
  border-radius: 8px;
  background: #fffaf5;
  box-shadow: 0 28px 80px rgba(30, 45, 64, .22);
}

.merchant-commitment-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 36px;
  border: 1px solid #f0d9ca;
  border-radius: 999px;
  background: #fff;
  color: #8a4b31;
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.merchant-commitment-card h2 {
  margin: 12px 80px 14px 0;
  color: #1e2d40;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0;
}

.merchant-commitment-body {
  padding: 18px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff;
  color: #4b5563;
}

.merchant-commitment-body ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.merchant-commitment-body li {
  padding-left: 4px;
  line-height: 1.72;
  font-weight: 750;
}

.merchant-commitment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.merchant-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.merchant-submit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #cfe9dd;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f2fbf6);
}

.merchant-submit-copy {
  display: grid;
  gap: 6px;
}

.merchant-submit-copy strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-submit-copy span {
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.merchant-submit-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.merchant-submit-flow span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe9dd;
  border-radius: 8px;
  background: #fff;
  color: #0f8a5f;
  font-size: 13px;
  font-weight: 950;
}

.merchant-submit-panel .merchant-submit-row {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #d8f0e1;
}

.merchant-apply-result {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #bde9cf;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f1fbf5);
  box-shadow: 0 18px 48px rgba(15, 118, 82, .08);
}

.merchant-apply-result[hidden] {
  display: none;
}

.merchant-result-head {
  display: grid;
  gap: 8px;
  align-content: center;
}

.merchant-result-head span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f8ef;
  color: #0f8a5f;
  font-size: 13px;
  font-weight: 950;
}

.merchant-apply-result h2 {
  margin: 0;
  color: #1e2d40;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

.merchant-apply-result p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-weight: 700;
}

.merchant-result-review-card {
  display: grid;
  gap: 7px;
  align-content: center;
  padding: 18px;
  border: 1px solid #d8f0e1;
  border-radius: 8px;
  background: #fff;
}

.merchant-result-review-card span {
  color: #0f8a5f;
  font-size: 13px;
  font-weight: 950;
}

.merchant-result-review-card strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-result-review-card p {
  color: #52667f;
  font-size: 14px;
}

.merchant-result-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  grid-column: 1 / -1;
}

.merchant-result-timeline span {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 12px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
}

.merchant-result-timeline b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff4ec;
  color: #d95735;
  font-size: 13px;
}

.merchant-result-timeline strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-result-timeline em {
  color: #8a9aaf;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.merchant-result-timeline .is-active {
  border-color: #ffcbb4;
  background: #fff8f3;
}

.merchant-result-timeline .is-active em {
  color: #ef6f4e;
}

.merchant-result-timeline .is-done {
  border-color: #9fe4b9;
  background: #f0fbf5;
}

.merchant-result-timeline .is-done b {
  background: #dcfce7;
  color: #0f8a5f;
}

.merchant-result-timeline .is-done em {
  color: #0f8a5f;
}

.merchant-result-guidance {
  display: grid;
  gap: 10px;
}

.merchant-result-guidance div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #d8f0e1;
  border-radius: 8px;
  background: #fff;
}

.merchant-result-guidance strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-result-guidance span {
  color: #64748b;
  line-height: 1.55;
  font-weight: 700;
}

.merchant-apply-result-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #d8f0e1;
}

.merchant-center-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.merchant-center-wrap--gate .merchant-center-grid {
  grid-template-columns: 1fr;
}

.merchant-center-wrap--gate .merchant-panel {
  max-width: none;
}

.merchant-tabs {
  position: sticky;
  top: 90px;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.merchant-tabs button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #506075;
  text-align: left;
  padding: 0 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.merchant-tabs button.on,
.merchant-tabs button:hover {
  background: #fff1ea;
  color: #d95735;
}

.merchant-tabs button.is-limited {
  color: #94a3b8;
}

.merchant-status-card {
  display: grid;
  gap: 8px;
  align-content: center;
}

.merchant-status-card .btn {
  width: fit-content;
  margin-top: 8px;
}

.merchant-service-editor {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(160px, .72fr) minmax(150px, .64fr) minmax(160px, .72fr) auto;
  gap: 10px;
  margin: 16px 0;
  align-items: start;
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-service-editor.is-disabled {
  opacity: .68;
  pointer-events: none;
}

.merchant-service-editor textarea {
  min-height: 82px;
  resize: vertical;
  line-height: 1.55;
}

.merchant-service-editor textarea,
.merchant-service-editor .btn {
  align-self: stretch;
}

.merchant-service-editor textarea:nth-of-type(1),
.merchant-service-editor textarea:nth-of-type(2) {
  grid-column: span 2;
}

.merchant-overview-shell {
  display: grid;
  gap: 18px;
}

.merchant-overview-hero,
.merchant-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.merchant-overview-hero > div,
.merchant-overview-hero aside,
.merchant-overview-card {
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
}

.merchant-overview-hero > div {
  padding: 22px;
  background: linear-gradient(135deg, #fff, #fff8f3);
  border-color: #f0d9ca;
}

.merchant-overview-hero h2 {
  margin: 8px 0 10px;
  color: #1e2d40;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 950;
}

.merchant-overview-hero aside {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 22px;
  background: #fbfdff;
}

.merchant-overview-hero aside span,
.merchant-overview-hero aside em {
  color: #64748b;
  font-style: normal;
  font-weight: 750;
}

.merchant-overview-hero aside strong {
  color: #d95735;
  font-size: 24px;
  font-weight: 950;
}

.merchant-overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.merchant-overview-stats div,
.merchant-overview-action {
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
}

.merchant-overview-stats div {
  padding: 16px;
  background: #fbfdff;
}

.merchant-overview-stats strong {
  display: block;
  color: #1e2d40;
  font-size: 22px;
  font-weight: 950;
}

.merchant-overview-stats span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-weight: 750;
}

.merchant-overview-stats small {
  display: block;
  margin-top: 6px;
  color: #94a3b8;
  line-height: 1.45;
  font-weight: 650;
}

.merchant-center-status-board,
.merchant-supplement-card {
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.merchant-center-status-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.merchant-center-status-steps article {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-center-status-steps article.is-current {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.merchant-center-status-steps b {
  color: #1e2d40;
  font-size: 17px;
  font-weight: 950;
}

.merchant-center-status-steps span {
  color: #64748b;
  line-height: 1.58;
  font-weight: 700;
}

.merchant-center-status-board p {
  margin: 14px 0 0;
  color: #52667f;
  line-height: 1.7;
  font-weight: 700;
}

.merchant-center-status-board p strong {
  color: #1e2d40;
}

.merchant-supplement-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f2fbf6);
  border-color: #cfe9dd;
}

.merchant-supplement-card h3 {
  margin: 8px 0 8px;
  color: #1e2d40;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
}

.merchant-supplement-card p {
  margin: 0;
  color: #52667f;
  line-height: 1.7;
  font-weight: 700;
}

.merchant-supplement-card aside {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 18px;
  border: 1px solid #cfe9dd;
  border-radius: 8px;
  background: #fff;
}

.merchant-supplement-card aside strong {
  color: #0f8a5f;
  font-size: 34px;
  font-weight: 950;
}

.merchant-supplement-card aside span {
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.merchant-supplement-missing,
.merchant-supplement-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.merchant-supplement-missing span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #315068;
  border: 1px solid #d6e4ee;
  font-size: 13px;
  font-weight: 900;
}

.merchant-overview-card {
  padding: 18px;
}

.merchant-overview-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.merchant-overview-card-head strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-overview-card-head span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
}

.merchant-overview-checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.merchant-overview-checks li {
  display: grid;
  grid-template-columns: 70px minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-overview-checks b {
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.merchant-overview-checks .is-ok b {
  background: #e8f8ef;
  color: #0f8a5f;
}

.merchant-overview-checks .is-warn b {
  background: #fff4ec;
  color: #d95735;
}

.merchant-overview-checks span {
  color: #1e2d40;
  font-weight: 900;
}

.merchant-overview-checks em {
  color: #64748b;
  font-style: normal;
  line-height: 1.5;
  font-weight: 650;
}

.merchant-overview-role-list {
  display: grid;
  gap: 10px;
}

.merchant-overview-role-list span {
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
  color: #1e2d40;
  font-weight: 850;
}

.merchant-overview-note {
  margin: 14px 0 0;
  padding: 13px 14px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.merchant-draft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
}

.merchant-draft-banner strong {
  display: block;
  color: #9a3412;
  font-weight: 950;
}

.merchant-draft-banner span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  line-height: 1.55;
  font-weight: 700;
}

.merchant-draft-banner .btn {
  flex: 0 0 auto;
}

.merchant-review-notice {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
  margin: 0 0 16px;
}

.merchant-review-notice--warn {
  border-color: #fed7aa;
  background: #fff7ed;
}

.merchant-review-notice--bad {
  border-color: #fecaca;
  background: #fef2f2;
}

.merchant-review-notice--ok {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.merchant-review-notice--pending {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.merchant-review-notice-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.merchant-review-notice-head span {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #d95735;
  font-size: 12px;
  font-weight: 950;
}

.merchant-review-notice-head em {
  color: #94a3b8;
  font-style: normal;
  font-size: 12px;
  font-weight: 750;
}

.merchant-review-notice > strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-review-notice p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-weight: 700;
}

.merchant-review-fix-list {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(226,232,240,.9);
}

.merchant-review-fix-list b {
  display: block;
  color: #1e2d40;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 950;
}

.merchant-review-fix-list ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-review-fix-list li {
  padding-right: 4px;
}

.merchant-review-fix-list li button {
  margin-left: 8px;
  border: 1px solid #ffd0ba;
  border-radius: 999px;
  background: #fff;
  color: #a94d30;
  padding: 4px 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.merchant-review-fix-list li button:hover {
  background: #fff4ec;
}

.merchant-review-notice-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.merchant-overview-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.merchant-overview-action {
  text-align: left;
  padding: 16px;
  cursor: pointer;
  font: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.merchant-overview-action:hover {
  transform: translateY(-2px);
  border-color: #ffd0ba;
  box-shadow: 0 16px 34px rgba(112, 76, 50, .08);
}

.merchant-overview-action strong {
  display: block;
  color: #1e2d40;
  font-weight: 950;
}

.merchant-overview-action span {
  display: block;
  margin-top: 8px;
  color: #64748b;
  line-height: 1.6;
  font-weight: 650;
}

.merchant-overview-action small {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff4ec;
  color: #a94d30;
  font-size: 12px;
  font-weight: 950;
}

.merchant-workspace-empty {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.merchant-workspace-empty-head {
  max-width: 760px;
}

.merchant-workspace-empty-head h2 {
  margin: 8px 0 10px;
  color: #1e2d40;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

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

.merchant-workspace-grid article {
  min-height: 142px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-workspace-grid strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-workspace-grid span {
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.merchant-workspace-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.merchant-workspace-stats div {
  padding: 16px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
}

.merchant-workspace-stats strong {
  display: block;
  color: #1e2d40;
  font-size: 22px;
  font-weight: 950;
}

.merchant-workspace-stats span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-weight: 750;
}

.merchant-admin-review-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 88px;
}

.merchant-admin-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid #dbe7f0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,251,253,.96));
  box-shadow: 0 20px 54px rgba(30,45,64,.07);
}

.merchant-admin-review-hero h1 {
  margin: 10px 0 10px;
  color: #1e2d40;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.merchant-admin-review-hero p {
  margin: 0;
  color: #52667f;
  line-height: 1.75;
  font-weight: 750;
}

.merchant-admin-review-hero aside {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  padding: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
}

.merchant-admin-review-hero aside strong {
  color: #0f8a5f;
  font-size: 40px;
  font-weight: 950;
}

.merchant-admin-review-hero aside em {
  color: #64748b;
  font-style: normal;
  font-weight: 850;
}

.merchant-admin-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-bottom: 18px;
}

.merchant-admin-card {
  padding: 22px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(30,45,64,.06);
}

.merchant-admin-profile {
  display: grid;
  gap: 10px;
  margin: 0;
}

.merchant-admin-profile div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-admin-profile dt {
  color: #64748b;
  font-weight: 850;
}

.merchant-admin-profile dd {
  margin: 0;
  color: #1e2d40;
  line-height: 1.55;
  font-weight: 800;
}

.merchant-admin-materials {
  display: grid;
  gap: 10px;
}

.merchant-admin-materials span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
  color: #1e2d40;
  font-weight: 850;
}

.merchant-admin-materials b {
  width: max-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.merchant-admin-materials .is-ok b {
  background: #e8f8ef;
  color: #0f8a5f;
}

.merchant-admin-materials .is-missing b {
  background: #fff4ec;
  color: #d95735;
}

.merchant-admin-decision {
  display: grid;
  gap: 16px;
}

.merchant-admin-decision label {
  display: grid;
  gap: 8px;
  color: #1e2d40;
  font-weight: 900;
}

.merchant-admin-decision select,
.merchant-admin-decision textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: #fff;
  color: #1e2d40;
  padding: 0 14px;
  font: inherit;
  font-weight: 750;
}

.merchant-admin-decision textarea {
  min-height: 126px;
  padding: 12px 14px;
  line-height: 1.65;
  resize: vertical;
}

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

.merchant-admin-reason-grid label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-admin-reason-grid input {
  margin-top: 3px;
  accent-color: #ef6f4e;
}

.merchant-admin-reason-grid span {
  display: grid;
  gap: 4px;
}

.merchant-admin-reason-grid strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-admin-reason-grid em {
  color: #64748b;
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.merchant-inquiry-list {
  display: grid;
  gap: 12px;
}

.merchant-inquiry-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 16px;
  padding: 16px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
}

.merchant-inquiry-main {
  min-width: 0;
}

.merchant-inquiry-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.merchant-inquiry-row strong {
  color: #1e2d40;
  font-weight: 950;
}

.merchant-inquiry-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.merchant-inquiry-status--new {
  background: #fff7ed;
  color: #c2410c;
}

.merchant-inquiry-status--contacted,
.merchant-inquiry-status--reserved {
  background: #ecfdf5;
  color: #047857;
}

.merchant-inquiry-status--closed {
  background: #f8fafc;
  color: #94a3b8;
}

.merchant-inquiry-row span,
.merchant-inquiry-row em {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-style: normal;
  line-height: 1.55;
  font-weight: 750;
}

.merchant-inquiry-row p {
  margin: 10px 0 0;
  color: #334155;
  line-height: 1.65;
}

.merchant-inquiry-note {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.merchant-inquiry-note textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 12px 14px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  color: #1e2d40;
  font: inherit;
  line-height: 1.5;
  background: #fbfdff;
}

.merchant-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.merchant-inquiry-actions button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  background: #fff;
  color: #1e2d40;
  font-weight: 900;
  cursor: pointer;
}

.merchant-inquiry-actions button:hover {
  border-color: #ff7a59;
  color: #f05a3b;
}

.merchant-workspace-empty-state {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px dashed #dbe3ec;
  border-radius: 8px;
  background: #fbfdff;
  color: #64748b;
  line-height: 1.6;
}

.merchant-workspace-empty-state strong {
  color: #1e2d40;
}

.merchant-workspace-empty--support {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,243,.96));
}

.merchant-workspace-empty--finance {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,250,.96));
}

.merchant-overview-action em {
  display: inline-flex;
  margin-top: 12px;
  color: #d95735;
  font-style: normal;
  font-weight: 950;
}

.merchant-service-manage-list,
.merchant-review-log,
.merchant-review-flow,
.merchant-image-list {
  display: grid;
  gap: 12px;
}

.merchant-service-manage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 132px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-service-manage-row--editable {
  grid-template-columns: 1fr;
  align-items: stretch;
  background: #fff;
}

.merchant-service-row-head,
.merchant-service-row-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.merchant-service-row-head small {
  width: max-content;
  max-width: 100%;
  margin-top: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff4ec;
  color: #a94d30;
}

.merchant-service-edit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.merchant-service-edit-grid label {
  display: grid;
  gap: 7px;
  color: #1e2d40;
  font-weight: 900;
}

.merchant-service-edit-grid label span {
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
}

.merchant-service-edit-grid textarea {
  min-height: 96px;
}

.merchant-service-wide {
  grid-column: span 2;
}

.merchant-service-row-actions {
  justify-content: flex-end;
}

.merchant-service-manage-row strong,
.merchant-service-manage-row b {
  display: block;
  color: #1e2d40;
  font-weight: 950;
}

.merchant-service-manage-row span,
.merchant-service-manage-row em,
.merchant-service-manage-row small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-style: normal;
  line-height: 1.5;
  font-weight: 700;
}

.merchant-service-manage-row button,
.merchant-image-item button {
  margin-top: 8px;
  border: 1px solid #ffd1c4;
  background: #fff;
  color: #d95735;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.merchant-image-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merchant-image-item {
  padding: 12px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-image-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.merchant-image-item strong,
.merchant-image-item span {
  display: block;
  color: #1e2d40;
  font-weight: 900;
}

.merchant-image-item span {
  color: #64748b;
  font-size: 13px;
  margin-top: 3px;
}

.merchant-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.merchant-role-card,
.merchant-staff-row,
.merchant-permission-note {
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-role-card {
  padding: 14px;
}

.merchant-role-card strong,
.merchant-staff-row strong,
.merchant-staff-row b,
.merchant-staff-subtitle {
  display: block;
  color: #1e2d40;
  font-weight: 950;
}

.merchant-role-card span,
.merchant-staff-row span,
.merchant-staff-row em,
.merchant-staff-row small,
.merchant-permission-note {
  display: block;
  margin-top: 6px;
  color: #64748b;
  line-height: 1.55;
  font-style: normal;
  font-weight: 650;
}

.merchant-staff-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 150px auto;
  gap: 10px;
  margin: 16px 0;
}

.merchant-staff-form input,
.merchant-staff-form select,
.merchant-staff-actions select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  font: inherit;
  font-weight: 750;
  color: #1e2d40;
}

.merchant-staff-list {
  display: grid;
  gap: 12px;
}

.merchant-staff-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr) 190px;
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.merchant-staff-row.is-invite {
  background: #fffaf3;
  border-color: #ffe0bd;
}

.merchant-staff-actions {
  display: grid;
  gap: 8px;
}

.merchant-staff-actions button {
  border: 1px solid #ffd1c4;
  background: #fff;
  color: #d95735;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.merchant-staff-subtitle {
  margin: 10px 0 0;
}

.merchant-permission-note {
  padding: 12px 14px;
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}

.merchant-review-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.merchant-review-flow div,
.merchant-review-log div {
  padding: 14px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fbfdff;
}

.merchant-review-flow strong,
.merchant-review-log strong {
  display: block;
  color: #1e2d40;
  margin-bottom: 6px;
  font-weight: 950;
}

.merchant-review-flow span,
.merchant-review-log span,
.merchant-review-log p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-weight: 650;
}

.merchant-login-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px 90px;
}

.merchant-login-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
}

.merchant-login-copy,
.merchant-login-form {
  background: rgba(255,255,255,.95);
  border: 1px solid #e7edf4;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .06);
  padding: 28px;
}

.merchant-login-copy h1 {
  margin: 14px 0 12px;
  color: #1e2d40;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

.merchant-login-copy {
  display: grid;
  align-content: start;
}

.merchant-login-copy p {
  margin: 0;
  color: #607087;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 650;
}

.merchant-login-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.merchant-login-rules span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff4ec;
  border: 1px solid #ffd8c4;
  color: #a94d30;
  font-weight: 900;
}

.merchant-login-flow {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.merchant-login-flow article {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid #f0d9ca;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}

.merchant-login-flow strong {
  color: #1e2d40;
  font-size: 16px;
  font-weight: 950;
}

.merchant-login-flow span,
.merchant-login-hint,
.merchant-login-help span {
  color: #64748b;
  line-height: 1.6;
  font-weight: 700;
}

.merchant-login-form {
  display: grid;
  gap: 14px;
  align-content: center;
  border-color: #f0d9ca;
  box-shadow: 0 22px 60px rgba(112, 76, 50, .08);
}

.merchant-login-form h2 {
  margin: 0 0 4px;
  color: #1e2d40;
  font-size: 24px;
  font-weight: 950;
}

.merchant-login-hint {
  margin: -2px 0 4px;
}

.merchant-login-form label {
  display: grid;
  gap: 7px;
  color: #1e2d40;
  font-weight: 900;
}

.merchant-login-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background: #fff;
  color: #1e2d40;
  padding: 0 14px;
  font: inherit;
  font-weight: 750;
}

.merchant-login-help {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
}

.merchant-login-help strong {
  color: #a94d30;
  font-weight: 950;
}

.merchant-login-preview {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid #edf2f7;
}

.merchant-login-preview p {
  margin: 0;
  color: #7a8798;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.merchant-access-gate {
  min-height: auto;
  display: grid;
  gap: 24px;
  padding: 30px;
  border-color: #f0d9ca;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,252,248,.96));
  box-shadow: 0 24px 70px rgba(112, 76, 50, .08);
}

.merchant-gate-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.merchant-gate-eyebrow {
  color: #d9673a;
  font-size: 13px;
  font-weight: 950;
}

.merchant-access-gate h2 {
  margin: 0;
  color: #1e2d40;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

.merchant-gate-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.merchant-gate-features article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #edf0f4;
  border-radius: 8px;
  background: #fff;
}

.merchant-gate-features strong {
  color: #1e2d40;
  font-size: 18px;
  font-weight: 950;
}

.merchant-gate-features span,
.merchant-gate-note {
  color: #64748b;
  line-height: 1.65;
  font-weight: 700;
}

.merchant-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 2px;
}

.merchant-gate-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #ffe1d0;
  border-radius: 8px;
  background: #fff8f3;
}

@media (max-width: 980px) {
  body.home-page .home-local-channel,
  .local-hero-grid,
  .local-merchant-hero-grid,
  .local-ops-grid,
  .local-trust-grid,
  .local-checklist-grid,
  .local-detail-grid,
  .local-search-card,
  .local-merchant-grid,
  .merchant-apply-hero,
  .merchant-apply-summary,
  .merchant-center-head,
  .merchant-center-grid,
  .merchant-service-editor,
  .merchant-profile-group-head,
  .merchant-service-intake,
  .merchant-material-intake,
  .merchant-service-intake-main,
  .merchant-account-grid,
  .merchant-checks,
  .merchant-submit-panel,
  .merchant-apply-result,
  .merchant-overview-hero,
  .merchant-overview-grid,
  .merchant-overview-stats,
  .merchant-role-grid,
  .merchant-staff-form,
  .merchant-staff-row,
  .merchant-login-card,
  .merchant-workspace-grid,
  .merchant-workspace-stats {
    grid-template-columns: 1fr;
  }

  .merchant-result-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .merchant-upload-field {
    grid-template-columns: 1fr;
  }

  .merchant-service-editor textarea:nth-of-type(1),
  .merchant-service-editor textarea:nth-of-type(2),
  .merchant-service-wide {
    grid-column: 1 / -1;
  }

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

  .local-service-row--detail dl {
    grid-template-columns: 1fr;
  }

  .local-gallery-grid {
    grid-template-columns: 1fr;
  }

  .local-service-row-title {
    display: grid;
  }

  .local-service-row-title b {
    max-width: none;
    text-align: left;
  }

  .merchant-draft-banner {
    display: grid;
  }

  .local-inquiry-card form {
    grid-template-columns: 1fr;
  }

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

  .merchant-apply-summary-note {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid #edf0f4;
  }

  .merchant-profile-group-head {
    display: grid;
  }

  .merchant-profile-group-head span {
    text-align: left;
  }

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

  .merchant-apply-summary-steps {
    grid-template-columns: 1fr;
  }

  .merchant-commitment-card {
    max-height: calc(100vh - 32px);
  }

  .merchant-submit-flow {
    grid-template-columns: 1fr;
  }

  .merchant-center-head--gate,
  .merchant-gate-features {
    grid-template-columns: 1fr;
  }

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

  body.home-page .home-local-tags {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

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

  .local-detail-side {
    position: static;
  }

  .local-checklist-grid > ul {
    padding-left: 24px;
  }

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

  .local-hero-visual-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  body.home-page .home-local-channel,
  .local-hero-copy,
  .local-hero-panel,
  .local-merchant-hero-copy,
  .local-detail-card,
  .local-trust-copy,
  .local-trust-steps,
  .local-checklist-grid > div,
  .local-checklist-grid > ul {
    padding: 18px;
  }

  body.home-page .home-local-tags,
  .local-category-grid,
  .local-service-row,
  .local-merchant-actions,
    .merchant-form-grid,
    .merchant-service-manage-row,
    .merchant-image-list,
    .merchant-overview-stats,
    .merchant-overview-actions,
    .merchant-role-grid,
    .merchant-staff-form,
    .merchant-staff-row,
    .merchant-review-flow {
    grid-template-columns: 1fr;
  }

  .merchant-overview-checks li {
    grid-template-columns: 1fr;
  }

  .local-hero,
  .local-merchant-hero {
    padding-top: 38px;
  }

  .local-hero-copy h1,
  .local-merchant-hero-copy h1 {
    font-size: 36px;
  }

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

  .local-hero-visuals figure {
    min-height: 180px;
  }

  .merchant-commitment-modal {
    padding: 16px;
  }

  .merchant-commitment-card {
    padding: 22px 18px;
  }

  .merchant-commitment-close {
    position: static;
    justify-self: start;
    margin-bottom: 12px;
  }

  .merchant-commitment-card h2 {
    margin-right: 0;
    font-size: 22px;
  }
}

@media (max-width: 980px) {
  body.home-page .hero-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .hero-trust-badges span:nth-child(2) {
    border-right: 0;
  }

  body.home-page .home-service-grid {
    grid-template-columns: 1fr;
  }
}
.booking-pet-summary{margin:10px 0 14px;padding:12px 14px;border:1px solid #fde7d9;background:#fff9f5;border-radius:12px}
.pet-chip-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.pet-chip{display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;background:#fff0e8;color:#c2410c;font-size:12px;font-weight:600}
.pet-chip.warn{background:#fff1f2;color:#be123c}
.smart-recommend-box{display:grid;gap:10px}
.smart-card{padding:12px;border:1px solid #e5e7eb;border-radius:12px;background:#fff}
.smart-card.active{border-color:#f97316;box-shadow:0 0 0 2px rgba(249,115,22,.08)}
.smart-head{display:flex;justify-content:space-between;gap:8px;font-size:14px;font-weight:700;color:#111827}
.smart-meta{margin-top:6px;font-size:12px;color:#6b7280}
.smart-tags,.smart-home-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.smart-tag{display:inline-flex;padding:4px 8px;border-radius:999px;background:#eff6ff;color:#1d4ed8;font-size:12px}
.smart-empty{padding:18px 16px;border:1px dashed #d1d5db;border-radius:12px;color:#6b7280;background:#f9fafb}
.smart-home-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-top:18px}
.smart-home-card{padding:18px;border-radius:18px;border:1px solid #e5e7eb;background:linear-gradient(180deg,#fff,#fff7ed);cursor:pointer;transition:transform .18s ease,box-shadow .18s ease}
.smart-home-card:hover{transform:translateY(-3px);box-shadow:0 14px 28px rgba(15,23,42,.08)}
.smart-home-top{display:flex;justify-content:space-between;align-items:center;gap:8px}
.smart-home-score{font-size:18px;font-weight:800;color:#c2410c}
.smart-home-credit{font-size:12px;padding:4px 8px;border-radius:999px;background:#111827;color:#fff;text-transform:uppercase}
.smart-home-name{margin-top:12px;font-size:18px;font-weight:800;color:#111827}
.smart-home-meta{margin-top:8px;font-size:13px;color:#6b7280}
.smart-map-panel{margin:24px 0 18px;padding:22px;border:1px solid rgba(226,232,240,.95);border-radius:26px;background:linear-gradient(135deg,#fffaf4 0%,#ffffff 46%,#eef7ff 100%);box-shadow:0 22px 48px rgba(15,23,42,.08);display:grid;grid-template-columns:minmax(240px,.85fr) minmax(260px,1fr);gap:20px;align-items:stretch}
.smart-map-copy{padding:8px 4px 8px 2px}
.smart-map-kicker{display:inline-flex;padding:6px 12px;border-radius:999px;background:#fff3e8;color:#c2410c;font-size:12px;font-weight:900;letter-spacing:.04em}
.smart-map-copy h3{margin:13px 0 8px;color:#172534;font-size:24px;line-height:1.2}
.smart-map-copy p{margin:0;color:#64748b;line-height:1.8;font-size:14px}
.smart-map-actions{display:flex;flex-direction:column;gap:12px;justify-content:flex-start}
.smart-address-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px}
.smart-map-shell{grid-column:1/-1;position:relative;overflow:hidden;border-radius:22px;border:1px solid rgba(203,213,225,.9);background:radial-gradient(circle at 22% 22%,rgba(248,113,113,.14),transparent 28%),linear-gradient(135deg,#eaf7f1,#e7eefb);min-height:320px}
.smart-map{min-height:320px;width:100%}
.smart-map-status{position:absolute;left:14px;bottom:14px;z-index:2;max-width:min(520px,calc(100% - 28px));padding:9px 13px;border-radius:999px;background:rgba(255,255,255,.92);box-shadow:0 12px 28px rgba(15,23,42,.14);color:#475569;font-size:12px;font-weight:800;backdrop-filter:blur(10px)}
.smart-map-status[data-type="ok"]{color:#166534;background:rgba(240,253,244,.95)}
.smart-map-status[data-type="error"]{color:#b91c1c;background:rgba(254,242,242,.95)}
.smart-map-status[data-type="empty"]{color:#92400e;background:rgba(255,251,235,.95)}
.amap-user-dot,.amap-sitter-dot{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;color:#fff;font-size:12px;font-weight:900;box-shadow:0 10px 22px rgba(15,23,42,.22);border:2px solid #fff}
.amap-user-dot{background:#0f766e}
.amap-sitter-dot{background:#ef5a43}
@media (max-width: 760px) {
  .smart-map-panel{grid-template-columns:1fr;padding:18px;border-radius:22px}
  .smart-address-row{grid-template-columns:1fr}
}

/* =========================================================
   爪小爱 Warm Premium UI v1
   目标：把前台从“功能型深色平台”升级为“温暖可信的精品宠物服务平台”。
   第一阶段仅覆盖全局视觉变量、导航、按钮、首页首屏和信任数据卡，
   不改变搜索、登录、注册、服务安排等业务逻辑。
   ========================================================= */
:root {
  --red: #e97858;
  --red-dark: #cf5d43;
  --red-light: #fff1e8;
  --red-soft: #fff8f2;
  --navy: #2e2119;
  --navy-soft: #5b4537;
  --ink: #2e2119;
  --gray: #8a7a70;
  --gray-dark: #6f5f55;
  --gray-light: #fff8ef;
  --surface: #fffaf3;
  --surface-2: #fffdf8;
  --border: rgba(99, 70, 48, 0.14);
  --gold: #d99b54;
  --green: #3fa77a;
  --shadow: 0 24px 70px rgba(109, 77, 48, 0.12);
  --shadow-lg: 0 34px 90px rgba(109, 77, 48, 0.18);
  --shadow-soft: 0 16px 38px rgba(109, 77, 48, 0.1);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 192, 126, .23), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(255, 238, 203, .72), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 38%, #fff8ef 100%);
}

.topbar {
  background: rgba(255, 248, 239, .92);
  color: #7b675b;
  border-bottom: 1px solid rgba(112, 84, 60, .08);
}

.topbar a {
  color: #b45e3f;
}

.nav {
  background: rgba(255, 252, 247, .84);
  border-bottom: 1px solid rgba(112, 84, 60, .08);
  box-shadow: 0 10px 32px rgba(97, 72, 51, .04);
}

.nav-inner {
  min-height: 76px;
  gap: 28px;
}

.brand-logo-img {
  width: clamp(132px, 10vw, 162px);
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  color: #625247;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.on,
.nav-links li.nav-secondary a:hover,
.nav-links li.nav-secondary a.on {
  color: #bd6246;
  background: #fff0e8;
}

.btn {
  border-radius: 999px;
}

.btn-red,
.sb-btn {
  background: linear-gradient(135deg, #df7257 0%, #ff9365 100%);
  box-shadow: 0 18px 34px rgba(219, 110, 82, .26);
}

.btn-red:hover,
.sb-btn:hover {
  background: linear-gradient(135deg, #cf5d43 0%, #ed7f58 100%);
}

.btn-ghost,
.nav-auth-link,
.nav-auth-user {
  color: #3c2b22;
  border-color: rgba(85, 60, 42, .14);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 10px 24px rgba(97, 72, 51, .06);
}

.hero-home {
  padding: 64px 0 32px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 151, .48), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(255, 238, 198, .78), transparent 24%),
    linear-gradient(180deg, #fff9ef 0%, #fffdf8 100%);
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-home::before {
  right: 34px;
  bottom: 72px;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,0) 68%);
}

.hero-home::after {
  left: 7%;
  top: 28%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 229, 190, .42), rgba(255,255,255,0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .88fr);
  gap: 28px;
}

.hero-copy {
  min-width: 0;
}

.hero-visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(80, 52, 33, .08), rgba(255, 250, 242, .08)),
    linear-gradient(140deg, #dac6ae 0%, #f4ddc5 38%, #a8754b 100%);
  box-shadow: 0 34px 85px rgba(96, 68, 46, .2);
  border: 1px solid rgba(255,255,255,.78);
}

.hero-photo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.48), transparent 24%),
    linear-gradient(90deg, rgba(52, 31, 20, .12), rgba(255,255,255,0) 44%);
}

.hero-photo img {
  position: relative;
  z-index: 1;
  width: min(58%, 390px);
  margin: 0 42px 42px 0;
  filter: drop-shadow(0 34px 42px rgba(80, 44, 21, .26));
  transform: scale(1.26);
  transform-origin: bottom center;
}

.hero-photo-glow {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 238, 204, .88), rgba(255, 184, 113, .18) 52%, transparent 70%);
}

.hero-glass-panel {
  position: absolute;
  left: 38px;
  top: 54px;
  width: min(440px, calc(100% - 76px));
  padding: 36px 32px;
  border-radius: 26px;
  background: rgba(255, 252, 246, .72);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 22px 60px rgba(66, 44, 28, .14);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.eyebrow,
.panel-kicker {
  color: #b66043;
  background: rgba(255, 241, 232, .9);
  border: 1px solid rgba(228, 153, 111, .22);
  letter-spacing: .04em;
}

.hero-copy h1 {
  margin-top: 18px;
  color: #3b261b;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.14;
  letter-spacing: -.045em;
}

.hero-lead {
  margin: 18px 0 26px;
  max-width: 520px;
  color: #684f3f;
  font-size: 20px;
  line-height: 1.75;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-search-card {
  position: relative;
  overflow: hidden;
  padding: 34px 32px 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 229, 177, .78), transparent 32%),
    rgba(255, 253, 248, .82);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 34px 85px rgba(105, 73, 47, .14);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.hero-search-card h2 {
  margin: 0 0 20px;
  color: #3b261b;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.2;
  font-weight: 900;
}

.search-bar {
  gap: 13px;
}

.sb-field {
  min-height: 72px;
  border-radius: 18px;
  border-color: rgba(112, 84, 60, .13);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 32px rgba(100, 72, 50, .07);
}

.sb-field:hover {
  border-color: rgba(219, 110, 82, .34);
  box-shadow: 0 18px 38px rgba(100, 72, 50, .11);
}

.sb-icon {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 15px;
  color: #c86b4c;
  background: #fff3eb;
  box-shadow: inset 0 0 0 1px rgba(220, 136, 91, .12);
}

.sb-label {
  display: none;
}

.sb-field select,
.sb-field input {
  color: #4c3426;
  font-size: 17px;
  font-weight: 650;
}

.sb-btn {
  min-height: 66px;
  border-radius: 999px;
  font-size: 17px;
}

.hero-metrics {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-height: 118px;
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: 0 20px 48px rgba(105, 73, 47, .12);
  backdrop-filter: blur(14px) saturate(130%);
}

.metric-card strong {
  color: #3b261b;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -.04em;
}

.metric-card span {
  color: #6f5f55;
  font-size: 14px;
  font-weight: 700;
}

.cred-strip {
  padding: 14px 0 10px;
  background: linear-gradient(180deg, #fffdf8, rgba(255, 248, 239, .64));
}

.cred-grid {
  gap: 16px;
}

.cred-item {
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(112,84,60,.1);
  box-shadow: 0 20px 54px rgba(105,73,47,.08);
}

.cred-num {
  color: #3b261b;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-card {
    min-height: 460px;
  }
  .hero-metrics,
  .cred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }
  .nav-inner {
    min-height: 66px;
  }
  .hero-home {
    padding: 28px 0 22px;
  }
  .hero-visual-card {
    min-height: 440px;
    border-radius: 26px;
  }
  .hero-glass-panel {
    left: 18px;
    top: 22px;
    width: calc(100% - 36px);
    padding: 24px 20px;
    border-radius: 22px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-photo img {
    width: 70%;
    margin: 0 10px 34px 0;
  }
  .hero-search-card {
    padding: 24px 18px;
    border-radius: 26px;
  }
  .hero-metrics,
  .cred-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Homepage reference lock v2
   这一段按用户提供的参考图复刻首页首屏：奶油背景、无促销黑条、
   左侧真实人宠大图卡、右侧搜索卡、下方三张数据卡。
   ========================================================= */
body {
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 197, 134, .18), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(255, 229, 176, .44), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 42%, #fff8ef 100%);
}

body > .topbar {
  display: none;
}

.nav {
  position: sticky;
  background: rgba(255, 252, 246, .78);
  border-bottom: 0;
  box-shadow: none;
}

.nav-inner {
  min-height: 88px;
  max-width: 1320px;
}

.brand-logo-img {
  width: 132px;
  max-height: 46px;
}

.nav-links {
  gap: 14px;
  justify-content: flex-start;
}

.nav-links a {
  padding: 8px 5px;
  background: transparent;
  border-radius: 0;
  color: #66584f;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.on,
.nav-links li.nav-secondary a:hover,
.nav-links li.nav-secondary a.on {
  color: #2f2118;
  background: transparent;
}

.nav-links li.nav-secondary {
  margin-left: auto;
}

.nav-right {
  gap: 18px;
}

.nav-auth-managed {
  min-width: 0;
}

.nav-auth-managed .nav-auth {
  gap: 10px;
}

.nav-right .btn,
.nav-auth-link,
.nav-auth-user,
.nav-auth-logout {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
}

@media (max-width: 1280px) {
  .nav-inner {
    gap: 18px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-right .btn,
  .nav-auth-link,
  .nav-auth-user,
  .nav-auth-logout {
    min-height: 44px;
    padding-inline: 18px;
  }
}

.nav-right .btn-ghost,
.nav-auth-link,
.nav-auth-user {
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(92, 70, 52, .18);
  box-shadow: none;
}

.nav-right .btn-red {
  color: #3a2a20;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(92, 70, 52, .18);
  box-shadow: none;
}

.nav-right .btn-red:hover,
.nav-right .btn-ghost:hover {
  color: #c9694c;
  background: #fff3eb;
}

/* Logged-in navigation alignment pass.
   Keep dynamic auth controls on the same baseline as logo and text links. */
.nav-right.nav-auth-managed {
  align-self: center;
  display: flex;
  align-items: center;
}

.nav-right.nav-auth-managed .nav-auth {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-right.nav-auth-managed .nav-auth-link,
.nav-right.nav-auth-managed .nav-auth-user {
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  line-height: 1;
  font-size: 14px;
  font-weight: 850;
}

.nav-right.nav-auth-managed .nav-auth-user {
  justify-content: flex-start;
  gap: 8px;
  width: 128px;
  max-width: 128px;
  padding: 0 12px 0 8px;
}

.nav-right.nav-auth-managed .nav-auth-avatar {
  width: 30px;
  height: 30px;
}

.nav-right.nav-auth-managed .nav-auth-user span:last-child {
  max-width: 62px;
}

.nav-right.nav-auth-managed .nav-auth-logout {
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  line-height: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-home {
  min-height: auto;
  padding: 62px 0 0;
  background:
    radial-gradient(circle at 6% 4%, rgba(255, 229, 183, .38), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 239, 205, .72), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf8 100%);
}

.hero-home::before {
  right: 58px;
  bottom: 54px;
  width: 82px;
  height: 82px;
  background:
    linear-gradient(45deg, transparent 42%, rgba(255,255,255,.8) 43%, rgba(255,255,255,.8) 57%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(255,255,255,.8) 43%, rgba(255,255,255,.8) 57%, transparent 58%);
  filter: blur(.2px);
  opacity: .76;
}

.hero-home::after {
  display: none;
}

.hero-grid {
  width: min(1320px, calc(100% - 72px));
  grid-template-columns: minmax(640px, 1.1fr) minmax(520px, .88fr);
  gap: 32px;
  align-items: start;
}

.hero-visual-card {
  height: 600px;
  min-height: 600px;
  border-radius: 16px;
  border: 0;
  box-shadow: none;
  background: #ead7c0;
}

.hero-photo {
  background-image:
    linear-gradient(90deg, rgba(87, 57, 39, .18), rgba(255,255,255,0) 54%),
    url("https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=1100&q=86");
  background-size: cover;
  background-position: 52% center;
}

.hero-photo::before {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.42), transparent 24%),
    linear-gradient(90deg, rgba(58, 37, 25, .10), rgba(255,255,255,0) 48%);
}

.hero-photo img,
.hero-photo-glow {
  display: none;
}

.hero-glass-panel {
  left: 32px;
  top: 48px;
  width: 360px;
  padding: 40px 34px 36px;
  border-radius: 16px;
  background: rgba(255, 250, 242, .68);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: none;
  color: #3a271d;
}

.hero-glass-panel .eyebrow {
  display: none;
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 44px;
  line-height: 1.22;
  letter-spacing: -.04em;
  font-weight: 500;
  color: #3a271d;
}

.hero-lead {
  margin: 22px 0 30px;
  color: #4f3c30;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-glass-panel .btn-xl {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
}

.hero-side {
  gap: 20px;
}

.hero-search-card {
  min-height: 426px;
  padding: 42px 30px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 7%, rgba(255, 229, 177, .64), transparent 28%),
    rgba(255, 252, 246, .78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 28px 70px rgba(112, 82, 55, .12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.hero-search-card h2 {
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 500;
  color: #37261d;
}

.search-bar {
  gap: 12px;
}

.sb-field {
  min-height: 66px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(107, 82, 62, .14);
  box-shadow: 0 12px 26px rgba(104, 76, 52, .06);
}

.sb-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #c47757;
  background: linear-gradient(135deg, #fff5ec, #fffaf6);
  box-shadow: 0 8px 18px rgba(196, 119, 87, .12);
}

.sb-field select,
.sb-field input {
  color: #3f2e24;
  font-size: 17px;
  font-weight: 500;
}

.sb-btn {
  min-height: 64px;
  margin-top: 8px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  background: linear-gradient(90deg, #db7558 0%, #ff9366 100%);
  box-shadow: 0 18px 28px rgba(205, 103, 74, .26);
}

.hero-metrics {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-card {
  min-height: 112px;
  padding: 22px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 252, 246, .72);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow:
    0 22px 52px rgba(112, 82, 55, .1),
    inset 0 1px 0 rgba(255,255,255,.86);
}

.metric-card strong {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #3a271d;
}

.metric-card span {
  margin-top: 10px;
  color: #5d493c;
  font-size: 15px;
  font-weight: 500;
}

.cred-strip {
  margin-top: 30px;
  padding: 0 0 36px;
  background: transparent;
}

.cred-strip::before {
  display: none;
}

.cred-grid {
  width: min(1320px, calc(100% - 72px));
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cred-item {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cred-item::before,
.cred-item::after {
  display: none;
}

.cred-item:nth-child(n+3) {
  display: none;
}

.cred-num {
  display: none;
}

.cred-label {
  margin: 0;
  color: #4d3b30;
  font-size: 15px;
}

.cred-item:first-child .cred-label::before {
  content: "按城市、日期和宠物类型筛选服务者，先查看资料与服务说明，再预约。";
}

.cred-item:first-child .cred-label {
  font-size: 0;
}

.cred-item:first-child .cred-label::before,
.cred-item:nth-child(2) .cred-label {
  font-size: 15px;
}

.cred-item:nth-child(2) .cred-label::before {
  content: "支持城市、服务、宠物类型组合筛选";
}

.cred-item:nth-child(2) .cred-label {
  font-size: 0;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-card {
    height: 560px;
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    min-height: 66px;
  }
  .hero-home {
    padding-top: 26px;
  }
  .hero-grid,
  .cred-grid {
    width: min(100% - 32px, 1320px);
  }
  .hero-visual-card {
    height: 500px;
    min-height: 500px;
    border-radius: 20px;
  }
  .hero-glass-panel {
    left: 18px;
    top: 20px;
    width: calc(100% - 36px);
    padding: 28px 22px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-search-card {
    min-height: auto;
    padding: 28px 18px;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .cred-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Exact reference lock: left hero card uses the user's provided UI.png crop. */
.hero-grid {
  width: min(1195px, calc(100% - 72px));
  grid-template-columns: 646px 522px;
  gap: 28px;
}

.hero-visual-card {
  width: 646px;
  height: 537px;
  min-height: 537px;
  border-radius: 16px;
  background: url("../assets/home-hero-reference.png") center / 100% 100% no-repeat;
}

.hero-visual-card .hero-photo {
  display: none;
}

.hero-glass-panel {
  left: 30px;
  top: 307px;
  width: 225px;
  height: 52px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-glass-panel .eyebrow,
.hero-glass-panel h1,
.hero-glass-panel .hero-lead {
  display: none;
}

.hero-glass-panel .btn-xl {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  display: block;
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: 1fr;
    width: min(646px, calc(100% - 32px));
  }
  .hero-visual-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 646 / 537;
  }
  .hero-side {
    width: 100%;
  }
}

/* Home below-hero refresh: keep the locked banner above, compact everything after it. */
.home-flow {
  color: #2a1408;
}

.home-flow .wrap {
  width: min(1168px, calc(100% - 40px));
}

.home-services {
  padding: 46px 0 28px;
}

.home-section-head {
  margin-bottom: 30px;
}

.home-section-head.align-left {
  margin-bottom: 0;
}

.home-section-head h2 {
  margin: 0;
  color: #2a1408;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 900;
}

.home-section-head p {
  max-width: 640px;
  margin: 10px 0 0;
  color: #6a4028;
  font-size: 15px;
}

.home-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.home-text-link {
  flex-shrink: 0;
  color: #d4784a;
  font-size: 14px;
  font-weight: 900;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.home-service-card {
  min-height: 190px;
  padding: 28px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 4px 22px rgba(100, 35, 8, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-align: center;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(100, 35, 8, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  outline: none;
}

.home-service-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255, 195, 140, 0.62), rgba(220, 120, 60, 0.42));
  border: 1px solid rgba(255, 200, 150, 0.5);
  color: #b05a30;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(180, 80, 30, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-service-card h3 {
  margin: 0;
  color: #2a1408;
  font-size: 17px;
  font-weight: 900;
}

.home-service-card p {
  min-height: 44px;
  margin: 9px 0 12px;
  color: #8b5f43;
  font-size: 13px;
  line-height: 1.65;
}

.home-service-card span {
  color: #d4784a;
  font-size: 12px;
  font-weight: 900;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.home-trust-card {
  min-height: 112px;
  padding: 20px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 4px 18px rgba(100, 35, 8, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(100, 35, 8, 0.1);
}

.home-trust-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255, 195, 140, 0.58), rgba(220, 120, 60, 0.42));
  color: #b05a30;
  font-size: 14px;
  font-weight: 900;
}

.home-trust-card strong {
  color: #2a1408;
  font-size: 15px;
  line-height: 1.35;
}

.home-trust-card p {
  margin: 5px 0 0;
  color: #8b5f43;
  font-size: 12px;
  line-height: 1.55;
}

.home-steps {
  padding: 34px 0 42px;
}

.home-steps-shell {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: center;
}

.home-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-step {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 28px rgba(100, 35, 8, 0.06);
}

.home-step span {
  color: #d4784a;
  font-size: 13px;
  font-weight: 950;
}

.home-step strong {
  display: block;
  margin-top: 8px;
  color: #2a1408;
  font-size: 17px;
  font-weight: 900;
}

.home-step p {
  margin-top: 8px;
  color: #7d543a;
  font-size: 13px;
  line-height: 1.7;
}

.home-featured,
.home-reviews {
  padding: 48px 0;
}

.home-featured .sitters-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-featured .sc,
.home-reviews .rv-card {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 42px rgba(100, 35, 8, 0.08);
}

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

.home-join {
  padding: 34px 0 48px;
}

.home-join-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 54px rgba(100, 35, 8, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-kicker {
  color: #d4784a;
  font-size: 13px;
  font-weight: 950;
}

.home-join h2 {
  max-width: 640px;
  margin: 8px 0 0;
  color: #2a1408;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 950;
}

.home-join p {
  max-width: 700px;
  margin: 10px 0 0;
  color: #6a4028;
  font-size: 14px;
}

@media (max-width: 1020px) {
  .home-trust-grid,
  .home-step-list,
  .home-featured .sitters-grid,
  .home-reviews .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-steps-shell,
  .home-join-shell {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 700px) {
  .home-flow .wrap {
    width: min(100% - 32px, 1168px);
  }

  .home-section-head h2,
  .home-join h2 {
    font-size: 26px;
  }

  .home-head-row {
    align-items: start;
    flex-direction: column;
  }

  .home-service-grid,
  .home-trust-grid,
  .home-step-list,
  .home-featured .sitters-grid,
  .home-reviews .reviews-grid {
    grid-template-columns: 1fr;
  }

  .home-join-shell {
    padding: 24px;
  }
}

/* Glassmorphism refinement pass. */
:root {
  --home-bg: #faf0e6;
  --home-ink: #2a1408;
  --home-text: #6a4028;
  --home-muted: #9b6f50;
  --home-accent: #d4784a;
  --home-accent-2: #e8946a;
  --home-accent-dark: #b05a30;
  --home-glass-nav: rgba(255, 248, 242, 0.78);
  --home-glass-card: rgba(255, 255, 255, 0.34);
  --home-glass-panel: rgba(255, 255, 255, 0.54);
  --home-glass-float: rgba(255, 255, 255, 0.72);
  --home-border: rgba(255, 255, 255, 0.68);
  --home-border-strong: rgba(255, 255, 255, 0.9);
  --home-shadow-card: 0 16px 46px rgba(100, 35, 8, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  --home-shadow-float: 0 24px 70px rgba(100, 35, 8, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --home-radius-card: 22px;
  --home-radius-panel: 28px;
}

body {
  background: var(--home-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 184, 120, 0.13), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 214, 154, 0.12), transparent 30%),
    var(--home-bg);
}

.home-aurora-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  animation: homeAuroraDrift 16s ease-in-out infinite;
}

.home-aurora .orb-a {
  width: 620px;
  height: 620px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 178, 108, 0.2), transparent 68%);
}

.home-aurora .orb-b {
  width: 520px;
  height: 520px;
  top: 240px;
  right: -130px;
  background: radial-gradient(circle, rgba(232, 148, 106, 0.16), transparent 66%);
  animation-delay: -5s;
}

.home-aurora .orb-c {
  width: 500px;
  height: 500px;
  bottom: -160px;
  left: 30%;
  background: radial-gradient(circle, rgba(255, 215, 155, 0.15), transparent 65%);
  animation-delay: -9s;
}

@keyframes homeAuroraDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  35% { transform: translate3d(28px, -24px, 0) scale(1.04); }
  68% { transform: translate3d(-18px, 20px, 0) scale(0.98); }
}

.topbar,
.nav,
.hero,
.home-flow,
footer {
  position: relative;
}

.topbar,
.nav,
.hero,
.home-flow,
footer {
  flex-shrink: 0;
  margin-top: 0;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--home-glass-nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 1px 0 rgba(180, 100, 40, 0.06);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.home-flow {
  color: var(--home-ink);
  flex: 1 0 auto;
}

.home-flow .wrap {
  width: min(1168px, calc(100% - 56px));
}

.home-section-head {
  margin-bottom: 32px;
}

.home-section-head h2 {
  color: var(--home-ink);
  font-size: 32px;
  letter-spacing: 0;
}

.home-section-head p {
  color: var(--home-text);
  font-size: 15px;
}

.home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row dense;
  gap: 18px;
  align-items: stretch;
}

.home-service-card,
.home-mid-banner,
.home-trust-card,
.home-step,
.home-join-shell {
  border: 1px solid var(--home-border);
  background: var(--home-glass-card);
  box-shadow: var(--home-shadow-card);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}

.home-service-card {
  min-height: 206px;
  height: 100%;
  padding: 28px 22px;
  border-radius: var(--home-radius-card);
  display: grid;
  align-content: center;
  text-align: center;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  background: var(--home-glass-panel);
  box-shadow: var(--home-shadow-float);
  transform: translateY(-6px);
}

.home-service-icon,
.home-trust-icon {
  background: linear-gradient(145deg, rgba(255, 195, 140, 0.7), rgba(220, 120, 60, 0.48));
  border: 1px solid rgba(255, 218, 180, 0.72);
  color: var(--home-accent-dark);
  box-shadow: 0 8px 18px rgba(180, 80, 30, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.home-service-icon svg,
.home-trust-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-service-card h3 {
  color: var(--home-ink);
  font-size: 17px;
}

.home-service-card p {
  min-height: 48px;
  color: var(--home-text);
}

.home-service-card span {
  color: #e15f2e;
  font-size: 13px;
}

.home-mid-banner {
  position: relative;
  width: min(920px, 100%);
  min-height: 214px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: var(--home-radius-panel);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
  padding: 18px;
  gap: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 198, 135, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 246, 236, 0.36)),
    rgba(255, 255, 255, 0.42);
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-mid-banner:hover {
  transform: translateY(-6px);
  box-shadow: var(--home-shadow-float);
}

.home-mid-banner::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.home-mid-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  margin: 0;
  padding: 22px;
  border-radius: 22px;
  background: var(--home-glass-float);
  border: 1px solid var(--home-border-strong);
  box-shadow: 0 12px 38px rgba(80, 30, 8, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(44px) saturate(190%);
  -webkit-backdrop-filter: blur(44px) saturate(190%);
}

.home-mid-copy span,
.home-mid-copy em {
  display: block;
  color: var(--home-accent-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.home-mid-copy strong {
  display: block;
  margin: 8px 0;
  color: var(--home-ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 950;
}

.home-mid-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 178px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(145deg, rgba(255, 216, 173, 0.52), rgba(212, 120, 74, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(100, 35, 8, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.home-mid-visual::before,
.home-mid-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(1px);
}

.home-mid-visual::before {
  width: 138px;
  height: 138px;
  right: -32px;
  top: -42px;
}

.home-mid-visual::after {
  width: 180px;
  height: 180px;
  left: -58px;
  bottom: -76px;
}

.home-pet {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 16px 24px rgba(100, 35, 8, 0.14));
}

.home-pet-dog {
  width: 156px;
  right: 34px;
  bottom: 4px;
}

.home-pet-cat {
  width: 118px;
  left: 34px;
  bottom: 14px;
}

.home-mini-card {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--home-accent-dark);
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(100, 35, 8, 0.12);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.home-mini-card.card-one {
  top: 22px;
  left: 24px;
}

.home-mini-card.card-two {
  right: 18px;
  bottom: 18px;
}

.home-trust-grid {
  margin-top: 28px;
  gap: 18px;
}

.home-trust-card {
  min-height: 118px;
  border-radius: 18px;
  background: var(--home-glass-panel);
}

.home-trust-card strong {
  color: var(--home-ink);
}

.home-trust-card p {
  color: var(--home-text);
}

.home-glass-toolbar {
  margin-top: 18px;
  padding: 15px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--home-text);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--home-border);
  box-shadow: 0 12px 34px rgba(100, 35, 8, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.home-glass-toolbar a {
  flex-shrink: 0;
  color: var(--home-accent);
  font-weight: 950;
}

.home-steps-shell {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
}

.home-step {
  min-height: 148px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
}

.home-step span {
  color: var(--home-accent);
}

.home-step strong {
  color: var(--home-ink);
}

.home-step p {
  color: var(--home-text);
}

@media (max-width: 1020px) {
  body .home-steps-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body .home-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body .nav-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }

  body .nav-links {
    display: none;
  }

  body .nav-toggle {
    display: flex;
  }

  body .nav-mobile-shell {
    display: block;
    width: 100%;
  }

  body .nav-right {
    display: none;
  }
}

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

.home-featured .sc,
.home-reviews .rv-card {
  background: rgba(255, 255, 255, 0.48);
  border-color: var(--home-border);
  box-shadow: var(--home-shadow-card);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}

.home-join-shell {
  border-radius: var(--home-radius-panel);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.home-join h2 {
  color: var(--home-ink);
  letter-spacing: 0;
}

.home-join p {
  color: var(--home-text);
}

.home-kicker,
.home-text-link {
  color: var(--home-accent);
}

@media (max-width: 1080px) {
  .home-service-grid,
  .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .home-flow .wrap {
    width: min(100% - 32px, 1168px);
  }

  .home-service-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-mid-banner {
    min-height: 260px;
    grid-template-columns: 1fr;
  }

  .home-mid-visual,
  .home-mid-copy {
    grid-column: 1;
  }

  .home-mid-visual {
    min-height: 180px;
  }

  .home-glass-toolbar {
    align-items: flex-start;
    border-radius: 22px;
    flex-direction: column;
  }
}

/* Slim CTA banner, matching the requested second reference. */
.home-mid-banner {
  width: 100%;
  min-height: 96px;
  margin: 24px 0 0;
  padding: 0;
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 150px minmax(260px, 0.82fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(200, 82, 40, 0.96) 0%, rgba(216, 111, 61, 0.96) 54%, rgba(235, 148, 92, 0.9) 100%);
  border: 1px solid rgba(255, 216, 188, 0.58);
  box-shadow: 0 18px 42px rgba(157, 62, 25, 0.18);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.home-mid-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(157, 62, 25, 0.22);
}

.home-mid-banner::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(255, 230, 200, 0.22), transparent 28%);
  pointer-events: none;
}

.home-mid-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  width: auto;
  margin: 0;
  padding: 0 0 0 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-mid-copy strong {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
}

.home-mid-copy em {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.home-mid-copy span {
  display: none;
}

.home-mid-cta {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: center;
  min-width: 116px;
  min-height: 34px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d65f34;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(102, 30, 8, 0.16);
  font-size: 13px;
  font-weight: 950;
}

.home-mid-photo {
  position: relative;
  z-index: 1;
  grid-column: 3;
  align-self: stretch;
  min-height: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 236, 214, 0.34), rgba(183, 82, 42, 0.16));
}

.home-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.home-mid-image,
.home-mid-visual,
.home-pet,
.home-mini-card {
  display: none;
}

@media (max-width: 760px) {
  .home-mid-banner {
    min-height: 128px;
    grid-template-columns: 1fr auto;
    padding: 20px;
  }

  .home-mid-copy {
    padding: 0;
  }

  .home-mid-photo {
    display: none;
  }

  .home-mid-copy strong {
    font-size: 18px;
  }
}

/* Footer scroll fix: keep the homepage in normal document flow so the
   decorative background cannot create a long blank scroll area after footer. */
html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.topbar,
.nav,
.hero,
.home-flow,
footer {
  flex: none;
}

.home-flow {
  flex: 0 0 auto;
}

footer {
  flex: 0 0 auto;
  margin-bottom: 0;
}

body > footer:last-of-type {
  margin-top: auto;
}

.mask {
  position: fixed !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.24s ease !important;
}

.mask.on {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Homepage service cards: use real-life service scenes instead of abstract icons. */
.home-service-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  align-content: stretch;
  text-align: left;
  display: grid;
  grid-template-rows: 168px 1fr;
  background: rgba(255, 255, 255, 0.52);
}

.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-5px);
}

.home-service-photo {
  position: relative;
  overflow: hidden;
  background: #f7e7da;
}

.home-service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 20, 8, 0) 48%, rgba(42, 20, 8, .34) 100%);
  pointer-events: none;
}

.home-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .34s ease;
}

.home-service-card:hover .home-service-photo img,
.home-service-card:focus-visible .home-service-photo img {
  transform: scale(1.05);
}

.home-service-photo em {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(42, 20, 8, .46);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.home-service-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 148px;
  padding: 20px 22px 22px;
}

.home-service-copy h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.home-service-copy p {
  min-height: 0;
  margin: 0;
  color: var(--home-text);
  font-size: 13px;
  line-height: 1.65;
}

.home-service-copy span {
  align-self: end;
  margin-top: 6px;
  color: #e15f2e;
  font-size: 13px;
  font-weight: 950;
}

@media (max-width: 760px) {
  .home-service-card {
    grid-template-rows: 190px 1fr;
  }
}

/* P0/P1 trust pass: restore a decision-focused homepage hero and reduce demo-like decoration. */
body .home-aurora {
  display: none;
}

body .hero-home {
  padding: 58px 0 42px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 253, 248, 0.98) 58%, rgba(255, 248, 239, 0.96) 100%);
}

body .hero-home::before,
body .hero-home::after {
  display: none;
}

body .hero-grid {
  width: min(1220px, calc(100% - 56px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

body .hero-copy {
  min-width: 0;
}

body .hero-visual-card {
  width: auto;
  height: auto;
  min-height: 540px;
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.86fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(112, 84, 60, 0.12);
  background: #fffaf2;
  box-shadow: 0 24px 64px rgba(72, 45, 26, 0.1);
}

body .hero-visual-card .hero-photo {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(42, 20, 8, 0.02), rgba(42, 20, 8, 0.18)),
    url("../assets/services/service-feeding.jpg") center / cover no-repeat;
}

body .hero-visual-card .hero-photo::before {
  display: none;
}

body .hero-visual-card .hero-photo img,
body .hero-visual-card .hero-photo-glow {
  display: none;
}

body .hero-glass-panel {
  position: relative;
  left: auto;
  top: auto;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  height: auto;
  min-height: 540px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 246, 236, 0.92), rgba(255, 253, 248, 0.98));
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body .hero-glass-panel .eyebrow,
body .hero-glass-panel h1,
body .hero-glass-panel .hero-lead {
  display: block;
}

body .hero-glass-panel .eyebrow {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #9f5a39;
  background: #fff1e8;
  border: 1px solid rgba(223, 91, 63, 0.14);
  font-size: 12px;
  font-weight: 900;
}

body .hero-copy h1 {
  margin: 0;
  color: #2f2118;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

body .hero-lead {
  max-width: 560px;
  margin: 20px 0 30px;
  color: #5d493c;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

body .hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body .hero-glass-panel .btn-xl {
  width: auto;
  height: auto;
  min-height: 54px;
  padding: 0 24px;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

body .hero-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

body .hero-search-card {
  min-height: auto;
  padding: 32px 28px;
  border-radius: 24px;
  background: #fffdf8;
  border: 1px solid rgba(112, 84, 60, 0.12);
  box-shadow: 0 22px 56px rgba(72, 45, 26, 0.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body .hero-search-card h2 {
  margin: 0 0 22px;
  color: #2f2118;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 900;
}

body .sb-field {
  min-height: 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31, 49, 66, 0.12);
  box-shadow: none;
}

body .sb-label {
  display: block;
  letter-spacing: 0;
  text-transform: none;
}

body .sb-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  color: var(--red);
  background: var(--red-light);
  box-shadow: none;
}

body .sb-field select,
body .sb-field input {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

body .sb-btn {
  min-height: 58px;
  margin-top: 2px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  background: var(--red);
  box-shadow: 0 14px 24px rgba(223, 91, 63, 0.22);
}

body .hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body .metric-card {
  min-height: auto;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fffdf8;
  border: 1px solid rgba(112, 84, 60, 0.12);
  box-shadow: 0 16px 42px rgba(72, 45, 26, 0.07);
  backdrop-filter: none;
}

body .metric-card strong {
  display: block;
  color: #2f2118;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

body .metric-card span {
  display: block;
  margin-top: 7px;
  color: #625349;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

body .home-services {
  padding-top: 58px;
}

body .home-service-card,
body .home-trust-card,
body .home-step,
body .home-join-shell,
body .home-featured .sc,
body .home-reviews .rv-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(112, 84, 60, 0.12);
  box-shadow: 0 14px 40px rgba(72, 45, 26, 0.07);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body .home-glass-toolbar {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(112, 84, 60, 0.12);
  box-shadow: 0 12px 30px rgba(72, 45, 26, 0.06);
  backdrop-filter: none;
}

@media (max-width: 1180px) {
  body .hero-grid {
    grid-template-columns: 1fr;
  }

  body .hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    grid-template-rows: auto;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  body .hero-home {
    padding: 26px 0 34px;
  }

  body .hero-grid {
    width: min(100% - 32px, 1220px);
    gap: 18px;
  }

  body .hero-visual-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body .hero-glass-panel {
    grid-row: 1;
    min-height: auto;
    padding: 32px 22px;
  }

  body .hero-copy h1 {
    font-size: 34px;
  }

  body .hero-lead {
    font-size: 16px;
  }

  body .hero-visual-card .hero-photo {
    grid-column: 1;
    grid-row: 2;
    min-height: 240px;
  }

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

  body .hero-search-card {
    padding: 24px 18px;
  }

  body .hero-search-card h2 {
    font-size: 23px;
  }

  body .hero-cta-row .btn {
    width: 100%;
  }
}

/* Homepage search card detail pass: closer to the provided reference crop. */
body.home-page .rover-search-card {
  width: min(940px, 100%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(231, 222, 212, .95);
  box-shadow: 0 22px 54px rgba(64, 42, 28, .12);
}

body.home-page .service-segments {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
  margin: 0 0 17px;
}

body.home-page .service-segment {
  min-height: 60px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid #ece7e1;
  background: #fff;
  color: #7a4934;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(80, 50, 28, .035);
}

body.home-page .service-segment .seg-ico {
  color: #8b3f25;
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
}

body.home-page .service-segment.active {
  color: #ef5b35;
  border-color: #ff8a68;
  background: #fffdfb;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 88, .52), 0 12px 26px rgba(239, 91, 53, .10);
}

body.home-page .service-segment.active .seg-ico {
  color: #ef5b35;
}

body.home-page .rover-search-bar {
  display: grid;
  grid-template-columns: minmax(180px, .95fr) minmax(230px, 1.2fr) minmax(180px, .95fr) 178px;
  gap: 13px;
}

body.home-page .rover-search-bar .sb-field {
  min-height: 76px;
  padding: 13px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #ebe5dd;
  box-shadow: 0 8px 18px rgba(80, 50, 28, .035);
  display: flex;
  align-items: center;
  gap: 12px;
}

body.home-page .rover-search-bar .sb-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #7f5140;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

body.home-page .rover-search-bar .sb-label {
  margin-bottom: 5px;
  color: #384252;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

body.home-page .rover-search-bar select,
body.home-page .rover-search-bar input {
  width: 100%;
  padding: 0 22px 0 0;
  border: none;
  background: transparent;
  color: #2d3645;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 850;
  outline: none;
}

body.home-page .rover-search-bar .sb-btn {
  min-height: 76px;
  margin: 0;
  border-radius: 12px;
  background: #ee5732;
  color: #fff;
  border: 0;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(238, 87, 50, .24);
}

body.home-page .rover-search-bar .sb-btn::before {
  content: "⌕";
  margin-right: 8px;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

body.home-page .hero-trust-badges {
  width: min(940px, 100%);
  margin-top: 14px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(231, 222, 212, .84);
  box-shadow: 0 14px 34px rgba(64, 42, 28, .08);
}

body.home-page .hero-trust-badges span {
  min-height: 56px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 10px;
  border-right: 1px solid #eee6df;
  color: #1f2d3d;
  background: transparent;
  box-shadow: none;
}

body.home-page .hero-trust-badges span:last-child {
  border-right: none;
}

body.home-page .hero-trust-badges i {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3ed;
  color: #ef5b35;
  font-style: normal;
  font-size: 23px;
  font-weight: 900;
}

body.home-page .hero-trust-badges strong {
  color: #29364a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

body.home-page .hero-trust-badges em {
  margin-top: 3px;
  color: #768295;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
}

body.home-page .service-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.home-page .service-project-card {
  border-radius: 8px;
  background: #fffaf4;
  border: 1px solid rgba(90, 63, 42, .10);
  box-shadow: 0 16px 44px rgba(64, 42, 28, .09);
  overflow: hidden;
}

body.home-page .service-project-card .home-service-photo {
  height: 300px;
  background: #f7efe7;
}

body.home-page .service-project-card .home-service-photo img {
  object-fit: cover;
  object-position: center;
}

body.home-page .service-project-card:nth-child(1) .home-service-photo img { object-position: center 42%; }
body.home-page .service-project-card:nth-child(2) .home-service-photo img { object-position: center 50%; }
body.home-page .service-project-card:nth-child(3) .home-service-photo img { object-position: center 46%; }
body.home-page .service-project-card:nth-child(4) .home-service-photo img { object-position: center 42%; }
body.home-page .service-project-card:nth-child(5) .home-service-photo img { object-position: center 45%; }
body.home-page .service-project-card:nth-child(6) .home-service-photo img { object-position: center 48%; }

body.home-page .service-project-card .home-service-photo em {
  left: 18px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(42, 31, 24, .58);
  color: #fff;
}

body.home-page .service-project-card .home-service-copy {
  min-height: 164px;
  padding: 18px 24px 22px;
  display: flex;
  flex-direction: column;
}

body.home-page .service-project-card .home-service-copy h3 {
  font-size: 19px;
}

body.home-page .service-project-card .home-service-copy h3 a {
  color: inherit;
  text-decoration: none;
}

body.home-page .service-project-card .home-service-copy h3 a:hover {
  color: #ee5732;
}

body.home-page .service-project-card .home-service-copy span {
  margin-top: 10px;
  color: #ee5732;
  font-size: 14px;
}

body.home-page .service-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

body.home-page .service-link,
body.home-page .service-cta {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
}

body.home-page .service-link {
  flex: 1;
  background: #fff;
  border: 1px solid #eadfd5;
  color: #354154;
}

body.home-page .service-cta {
  flex: 1.08;
  background: #ee5732;
  border: 1px solid #ee5732;
  color: #fff;
  box-shadow: 0 12px 22px rgba(238, 87, 50, .18);
}

@media (max-width: 980px) {
  .merchant-apply-shell,
  .merchant-apply-redesign .merchant-account-layout,
  .merchant-apply-redesign .merchant-apply-summary {
    grid-template-columns: 1fr;
  }

  .merchant-apply-rail {
    position: static;
    grid-template-columns: 1fr;
  }

  .merchant-apply-redesign .merchant-account-auth {
    border-width: 1px 0 0;
  }

  .merchant-account-layout {
    grid-template-columns: 1fr;
  }

  .merchant-account-auth-head {
    display: grid;
  }

  .merchant-account-auth-head span {
    text-align: left;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card {
    min-height: auto;
  }

  body.home-page .service-segments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.home-page .rover-search-bar {
    grid-template-columns: 1fr 1fr;
  }
  body.home-page .rover-search-bar .sb-btn {
    grid-column: 1 / -1;
  }
  body.home-page .hero-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .service-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home-page .hero-trust-badges span:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 560px) {
  .workspace-wrap {
    width: min(100% - 24px, 1120px);
    padding-top: 34px;
  }

  .workspace-hero h1 {
    font-size: 34px;
  }

  .merchant-apply-redesign {
    padding: 22px 12px 64px;
  }

  .merchant-apply-rail,
  .merchant-apply-redesign .merchant-account-copy,
  .merchant-apply-redesign .merchant-account-auth,
  .merchant-form-card,
  .merchant-manage-card {
    padding: 18px;
  }

  .merchant-apply-path,
  .merchant-apply-summary-steps,
  .merchant-section-guide,
  .merchant-profile-intake,
  .merchant-form-grid,
  .merchant-material-intake,
  .merchant-service-intake,
  .merchant-service-intake-main,
  .merchant-checks,
  .merchant-submit-panel {
    grid-template-columns: 1fr;
  }

  .merchant-section-guide {
    margin-left: 0;
  }

  .merchant-profile-group--intro {
    grid-column: auto;
  }

  .merchant-upload-field {
    grid-template-columns: 1fr;
  }

  .merchant-apply-rail h1 {
    font-size: 36px;
  }

  body.home-page .rover-search-card {
    padding: 14px;
  }
  body.home-page .service-segments,
  body.home-page .rover-search-bar,
  body.home-page .hero-trust-badges,
  body.home-page .service-project-grid {
    grid-template-columns: 1fr;
  }
  body.home-page .service-segment,
  body.home-page .rover-search-bar .sb-field,
  body.home-page .rover-search-bar .sb-btn {
    min-height: 56px;
  }
  body.home-page .hero-trust-badges span {
    border-right: none;
    border-bottom: 1px solid #eee6df;
  }
  body.home-page .hero-trust-badges span:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .merchant-page,
  .merchant-page * {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .merchant-apply-wrap,
  .merchant-center-wrap {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .merchant-apply-rail,
  .merchant-form-card,
  .merchant-manage-card,
  .merchant-apply-summary,
  .merchant-apply-result,
  .merchant-center-status-board,
  .merchant-supplement-card {
    max-width: 100%;
  }

  .merchant-account-status-actions,
  .merchant-submit-row,
  .merchant-apply-result-actions,
  .merchant-status-actions,
  .merchant-supplement-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .merchant-page .btn,
  .merchant-page .btn-xl,
  .merchant-account-status-actions a,
  .merchant-account-status-actions button,
  .merchant-submit-row .btn,
  .merchant-apply-result-actions .btn,
  .merchant-status-actions .btn,
  .merchant-supplement-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .merchant-upload-field {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .merchant-upload-field label > span {
    align-items: flex-start;
  }

  .merchant-upload-field .btn {
    width: 100%;
  }

  .merchant-upload-preview.on {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .merchant-upload-preview button {
    margin-left: 0;
    justify-self: start;
  }

  .merchant-center-status-steps,
  .merchant-supplement-card,
  .merchant-result-guidance,
  .merchant-admin-review-hero,
  .merchant-admin-review-grid,
  .merchant-admin-reason-grid {
    grid-template-columns: 1fr;
  }

  .merchant-admin-review-wrap {
    width: 100%;
    padding: 24px 12px 70px;
  }

  .merchant-admin-card,
  .merchant-admin-review-hero {
    padding: 18px;
  }

  .merchant-admin-profile div {
    grid-template-columns: 1fr;
  }

  .merchant-supplement-missing,
  .merchant-supplement-actions {
    grid-column: auto;
  }
}

/* Front desk UX polish: first-round public pages only. */
.front-path-grid {
  width: min(940px, 100%);
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.front-path-card {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(31, 49, 66, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(64, 42, 28, .07);
  color: #213547;
  display: grid;
  gap: 6px;
}

.front-path-card-primary {
  border-color: rgba(223, 91, 63, .22);
  background: linear-gradient(180deg, #fff, #fff7f1);
}

.front-path-card span {
  color: #df5b3f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.front-path-card strong {
  color: #1f3142;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.front-path-card em {
  color: #64748b;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

body.home-page .hero-lead {
  max-width: 780px;
}

body.home-page .hero-trust-badges strong,
body.home-page .hero-trust-badges em,
.list-hero-tags span,
.tag-filter,
.chip,
.local-merchant-meta span,
.local-merchant-quick span,
.local-mini-tags span,
.local-merchant-trust span {
  overflow-wrap: anywhere;
}

.list-hero-card,
.filter-card,
.results-panel,
.sitter-quality-strip > div,
.sc,
.local-hero-copy,
.local-hero-panel,
.local-search-card,
.local-category-card,
.local-merchant-card,
.local-detail-card {
  border-radius: 18px;
}

.list-hero-card {
  align-self: stretch;
}

.results-panel {
  align-items: stretch;
}

.results-tools {
  justify-content: flex-end;
}

.sc {
  min-width: 0;
  overflow: hidden;
}

.sc-photo {
  aspect-ratio: 4 / 3;
  height: auto;
}

.sc-body {
  min-width: 0;
}

.sc-tags,
.sc-actions {
  min-width: 0;
}

.sc-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) 42px;
  gap: 8px;
}

.sc-actions .mini-btn {
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.local-demo-notice,
.local-detail-demo-note {
  box-shadow: 0 14px 30px rgba(154, 52, 18, .06);
}

.local-hero-actions .btn,
.local-merchant-actions .btn,
.local-detail-cta .btn {
  white-space: normal;
  text-align: center;
}

.local-merchant-body p,
.local-merchant-service span,
.local-detail-lead,
.local-check-list li {
  overflow-wrap: anywhere;
}

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

  .sidebar {
    position: static;
  }

  .results-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .results-tools {
    justify-content: stretch;
  }

  .sitter-search-box,
  .sort-select {
    width: 100%;
  }

  .sitter-quality-strip,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1200px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
    gap: 4px;
  }

  .front-path-grid,
  .sitter-quality-strip,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .front-path-card {
    padding: 14px;
  }

  .list-hero {
    padding: 38px 0 26px;
  }

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

  .list-hero h1 {
    font-size: 34px;
  }

  .list-hero-card,
  .filter-card,
  .results-panel {
    padding: 16px;
  }

  .tag-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .tag-filter {
    flex: 0 0 auto;
  }

  .sc-actions,
  .local-hero-actions,
  .local-merchant-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sc-actions .mini-btn.icon {
    width: 100%;
  }

  .local-search-card {
    gap: 10px;
  }

  .local-search-tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .local-search-tags button {
    flex: 0 0 auto;
  }

  .local-merchant-cover {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .local-merchant-title {
    display: grid;
  }

  .local-merchant-title em {
    width: max-content;
    max-width: 100%;
  }

  .local-merchant-meta,
  .local-merchant-quick,
  .local-mini-tags {
    gap: 6px;
  }

  .local-merchant-meta span,
  .local-merchant-quick span,
  .local-mini-tags span {
    max-width: 100%;
  }
}

/* Frontend polish round 2: keep legacy static pages readable without adding new behavior. */
@media (max-width: 860px) {
  .nav-inner:not(:has(.nav-toggle)) {
    align-items: flex-start;
  }

  .nav-inner:not(:has(.nav-toggle)) .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 8px;
    scrollbar-width: thin;
  }

  .nav-inner:not(:has(.nav-toggle)) .nav-links a {
    white-space: nowrap;
    padding: 8px 10px;
  }

  .nav-inner:not(:has(.nav-toggle)) .nav-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .bs-hero-actions,
  .hero-actions,
  .profile-hero-actions,
  .feedback-btns,
  .contact-btns,
  .side-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .bs-hero-actions .btn,
  .hero-actions .btn,
  .profile-hero-actions .btn,
  .feedback-btns .btn,
  .feedback-btns .fb-btn,
  .contact-btns a,
  .side-cta .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .art-hero h1,
  .help-hero h1,
  .info-hero h1,
  .bs-hero h1,
  .profile-hero h1 {
    overflow-wrap: anywhere;
  }

  .article-role-badge,
  .profile-badge,
  .scenario-tags span,
  .bs-hero .badges span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Homepage miniapp asset alignment and resilient trust-strip layout. */
body.home-page .brand-logo-link {
  background: transparent;
}

body.home-page .brand-logo-img {
  width: 136px;
  max-height: 48px;
  object-fit: contain;
}

body.home-page .service-segment .seg-ico,
body.home-page .rover-search-bar .sb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: inherit;
}

body.home-page .service-segment .seg-ico {
  width: 34px;
  height: 34px;
}

body.home-page .service-segment .seg-ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

body.home-page .rover-search-bar .sb-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

body.home-page .rover-search-bar .sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

body.home-page .rover-search-bar .sb-btn::before {
  content: none;
  display: none;
}

body.home-page .rover-search-bar .sb-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

body.home-page .hero-trust-badges {
  width: min(1040px, 100%);
  padding: 12px 0;
  overflow: hidden;
  align-items: stretch;
}

body.home-page .hero-trust-badges span {
  position: relative;
  min-width: 0;
  min-height: 72px;
  padding: 0 54px 0 28px;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 12px;
  border: 0 !important;
}

body.home-page .hero-trust-badges span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 1px;
  background: #eee2d9;
  pointer-events: none;
}

body.home-page .hero-trust-badges i {
  width: 42px;
  height: 42px;
  background: #fff3ed;
}

body.home-page .hero-trust-badges i img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

body.home-page .hero-trust-badges strong,
body.home-page .hero-trust-badges em {
  min-width: 0;
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
}

body.home-page .hero-trust-badges em {
  padding-right: 2px;
  line-height: 1.32;
}

@media (max-width: 1500px) {
  body.home-page .rover-search-bar {
    grid-template-columns: 1fr 1fr;
  }

  body.home-page .rover-search-bar .sb-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  body.home-page .hero-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .hero-trust-badges span::after {
    display: none;
  }

  body.home-page .hero-trust-badges span:nth-child(odd)::after {
    display: block;
  }

  body.home-page .hero-trust-badges span:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: #eee2d9;
    pointer-events: none;
  }
}

@media (max-width: 560px) {
  body.home-page .brand-logo-img {
    width: 126px;
  }

  body.home-page .hero-trust-badges {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-trust-badges span {
    min-height: 62px;
    padding: 10px 22px;
  }

  body.home-page .hero-trust-badges span::after {
    display: none !important;
  }

  body.home-page .hero-trust-badges span:nth-child(-n + 2)::before,
  body.home-page .hero-trust-badges span:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 1px;
    background: #eee2d9;
    pointer-events: none;
  }
}

/* Homepage Hero search-first hierarchy. */
body.home-page .hero-home {
  min-height: clamp(570px, calc(100vh - 150px), 730px);
  padding: 46px 0 16px;
}

body.home-page .rover-hero-grid {
  grid-template-columns: minmax(800px, .55fr) minmax(400px, .42fr);
  gap: clamp(40px, 3vw, 56px);
}

body.home-page .rover-hero-copy {
  align-self: center;
  min-width: 0;
}

body.home-page .rover-hero-copy h1 {
  width: auto;
  max-width: 820px;
  font-size: clamp(50px, 4.2vw, 72px);
  line-height: 1.06;
  text-align: left !important;
  text-align-last: left !important;
  text-justify: none;
  word-break: keep-all;
  letter-spacing: -0.02em;
  word-spacing: 0;
  justify-content: initial !important;
}

body.home-page .rover-hero-copy h1 .hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  text-align: left !important;
  text-align-last: left !important;
  word-spacing: 0;
}

body.home-page .rover-hero-copy .hero-lead {
  max-width: min(840px, 100%);
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
}

body.home-page .hero-search-engine {
  width: 100%;
  max-width: 840px;
  margin-top: 32px;
  padding: 24px;
  border-radius: 28px;
  box-sizing: border-box;
  min-width: 0;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(226, 214, 203, .96);
  box-shadow: 0 30px 72px rgba(72, 43, 24, .16);
}

body.home-page .hero-search-engine .service-segments {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  min-width: 0;
}

body.home-page .hero-search-engine .service-segment {
  min-width: 0;
  min-height: 62px;
  padding: 0 10px;
  border-radius: 16px;
  border-color: #ece2da;
  background: #fff;
  color: #724735;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(80, 50, 28, .04);
}

body.home-page .hero-search-engine .service-segment:hover:not(.active) {
  border-color: #ead4c7;
  background: #fffaf7;
  color: #724735;
  box-shadow: 0 12px 24px rgba(80, 50, 28, .055);
}

body.home-page .hero-search-engine .service-segment.active {
  border-color: #f36b4a;
  background: #fff2eb;
  color: #e85a38;
  box-shadow: inset 0 0 0 1px rgba(243, 107, 74, .34), 0 14px 28px rgba(232, 90, 56, .10);
}

body.home-page .hero-search-engine .service-segment .seg-ico {
  width: 30px;
  height: 30px;
}

body.home-page .hero-search-engine .service-segment .seg-ico img {
  width: 28px;
  height: 28px;
  opacity: .88;
  filter: saturate(.92);
}

body.home-page .hero-search-engine .service-segment:hover:not(.active) .seg-ico img {
  opacity: .96;
  filter: saturate(1);
}

body.home-page .hero-search-engine .service-segment.active .seg-ico img {
  opacity: 1;
  filter: saturate(1.14) contrast(1.03);
}

body.home-page .hero-search-engine .rover-search-bar {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(132px, .75fr) minmax(266px, 1.6fr) minmax(154px, .86fr) minmax(176px, .88fr);
  gap: 12px;
  align-items: stretch;
  box-sizing: border-box;
}

body.home-page .hero-search-engine .rover-search-bar .sb-field,
body.home-page .hero-search-engine .rover-search-bar .sb-btn {
  box-sizing: border-box;
  min-width: 0;
  min-height: 82px;
  border-radius: 18px;
}

body.home-page .hero-search-engine .rover-search-bar .sb-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 14px 12px;
}

body.home-page .hero-search-engine .rover-search-bar .sb-field::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 54%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #273142;
  border-bottom: 2px solid #273142;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  flex-shrink: 0;
}

body.home-page .hero-search-engine .rover-search-bar .sb-stack {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 5px;
  padding-right: 18px;
}

body.home-page .hero-search-engine .rover-search-bar .sb-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 13px;
  background: #fff1e8;
}

body.home-page .hero-search-engine .rover-search-bar .sb-icon img {
  width: 26px;
  height: 26px;
  filter: sepia(1) saturate(4.6) hue-rotate(326deg) brightness(1.02);
}

body.home-page .hero-search-engine .rover-search-bar .sb-label {
  display: block;
  color: #2f3949;
  font-size: 15px;
  line-height: 1.12;
  font-weight: 800;
  white-space: nowrap;
}

body.home-page .hero-search-engine .rover-search-bar select,
body.home-page .hero-search-engine .rover-search-bar input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  height: 34px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: clip;
  overflow: visible;
  padding-right: 0;
}

body.home-page .hero-search-engine .rover-search-bar .sb-btn {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 18px 34px rgba(238, 87, 50, .25);
}

@media (max-width: 1500px) {
  body.home-page .rover-hero-grid {
    grid-template-columns: minmax(0, 820px) minmax(280px, 1fr);
    gap: 30px;
  }

  body.home-page .hero-search-engine {
    width: 100%;
    max-width: 820px;
    padding: 22px;
  }

  body.home-page .hero-search-engine .rover-search-bar {
    grid-template-columns: minmax(126px, .78fr) minmax(242px, 1.45fr) minmax(144px, .88fr) minmax(170px, .92fr);
    gap: 12px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-btn {
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-stack {
    padding-right: 14px;
  }
}

@media (max-width: 1320px) {
  body.home-page .hero-search-engine .rover-search-bar {
    grid-template-columns: minmax(116px, .75fr) minmax(238px, 1.45fr) minmax(134px, .86fr) minmax(164px, .94fr);
    gap: 10px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-btn {
    width: 100%;
    min-width: 0;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field {
    gap: 8px;
    padding-left: 11px;
    padding-right: 11px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field::after {
    right: 12px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-icon img {
    width: 28px;
    height: 28px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-stack {
    padding-right: 14px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-label {
    font-size: 14px;
  }
}

@media (max-width: 1240px) {
  body.home-page .hero-home {
    min-height: auto;
    padding: 40px 0 36px;
  }

  body.home-page .rover-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  body.home-page .hero-search-engine {
    max-width: 840px;
    width: 100%;
  }

  body.home-page .hero-search-engine .rover-search-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 90px;
  }

  body.home-page .hero-collage {
    min-height: 360px;
    max-height: 420px;
  }
}

@media (max-width: 760px) {
  body.home-page .hero-home {
    padding: 28px 0 32px;
  }

  body.home-page .rover-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(27px, 7vw, 36px);
    line-height: 1.08;
  }

  body.home-page .rover-hero-copy h1 .hero-title-line {
    width: auto;
    white-space: normal;
  }

  body.home-page .rover-hero-copy .hero-lead {
    font-size: 16px;
    line-height: 1.66;
  }

  body.home-page .hero-search-engine {
    margin-top: 28px;
    padding: 14px;
    border-radius: 22px;
  }

  body.home-page .hero-search-engine .service-segments {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin-bottom: 14px;
  }

  body.home-page .hero-search-engine .service-segments::-webkit-scrollbar {
    display: none;
  }

  body.home-page .hero-search-engine .service-segment {
    flex: 0 0 138px;
    min-height: 58px;
    padding: 0 10px;
    font-size: 15px;
    gap: 7px;
  }

  body.home-page .hero-search-engine .service-segment .seg-ico {
    width: 30px;
    height: 30px;
  }

  body.home-page .hero-search-engine .service-segment .seg-ico img {
    width: 28px;
    height: 28px;
  }

  body.home-page .hero-search-engine .rover-search-bar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field,
  body.home-page .hero-search-engine .rover-search-bar .sb-btn {
    min-height: 78px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field {
    gap: 10px;
    padding: 14px 16px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-field::after {
    right: 16px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-stack {
    padding-right: 20px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body.home-page .hero-search-engine .rover-search-bar select,
  body.home-page .hero-search-engine .rover-search-bar input {
    font-size: 18px;
  }

  body.home-page .hero-search-engine .rover-search-bar .sb-btn {
    width: 100%;
    min-width: 0;
    min-height: 90px;
    font-size: 17px;
  }

  body.home-page .hero-collage {
    min-height: 260px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  body.home-page .collage-main {
    grid-column: 1;
    grid-row: 1;
  }

  body.home-page .collage-top {
    grid-column: 2;
    grid-row: 1;
  }

  body.home-page .collage-bottom {
    display: none;
  }
}

@media (max-width: 420px) {
  body.home-page .hero-search-engine .service-segments {
    grid-template-columns: none;
  }

  body.home-page .hero-search-engine .service-segment {
    flex-basis: 132px;
    justify-content: center;
  }

  body.home-page .hero-collage {
    min-height: 210px;
  }
}

/* Homepage second-screen refinement: scene cards, sitter CTA, and trust cards. */
body.home-page .home-services .home-section-head p {
  max-width: 560px;
  color: #78685f;
}

body.home-page .home-head-link {
  color: #e8580c;
  text-decoration: none;
  transition: color .16s ease;
}

body.home-page .home-head-link:hover {
  color: #c74308;
}

body.home-page #svcGrid.home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

body.home-page #svcGrid .scene-service-card {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 224px 1fr;
  border-radius: 10px;
  background: #fffaf6;
  border: 1px solid rgba(90, 63, 42, .11);
  box-shadow: 0 12px 32px rgba(64, 42, 28, .075);
}

body.home-page #svcGrid .scene-service-card:hover,
body.home-page #svcGrid .scene-service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(64, 42, 28, .095);
}

body.home-page #svcGrid .scene-service-card .home-service-photo {
  height: 224px;
}

body.home-page #svcGrid .scene-service-card .home-service-photo em {
  top: 14px;
  right: 14px;
  left: auto;
  bottom: auto;
  min-height: 28px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #22a86d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

body.home-page #svcGrid .hot-service-body {
  min-height: 256px;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
}

body.home-page #svcGrid .hot-scene-title {
  color: #2b211d;
  font-size: 22px;
  line-height: 1.25;
}

body.home-page #svcGrid .hot-scene-summary {
  min-height: 44px;
  margin-top: 8px;
  color: #74665f;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 650;
}

body.home-page #svcGrid .hot-service-meta {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

body.home-page #svcGrid .hot-service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #e8580c;
  font-weight: 950;
}

body.home-page #svcGrid .hot-service-price span {
  color: #e8580c;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

body.home-page #svcGrid .hot-service-price small {
  color: #e8580c;
  font-size: 14px;
  font-weight: 850;
}

body.home-page #svcGrid .hot-service-meta em {
  color: #968981;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

body.home-page #svcGrid .hot-service-tags {
  min-height: 34px;
  margin-top: 17px;
  gap: 8px;
}

body.home-page #svcGrid .hot-service-tags span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff3ea;
  border: 1px solid #f5ddcf;
  color: #876557;
  font-size: 12px;
}

body.home-page #svcGrid .hot-scene-actions {
  margin-top: auto;
  padding-top: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
}

body.home-page #svcGrid .hot-scene-actions .btn-ghost,
body.home-page #svcGrid .hot-scene-actions .btn-primary {
  min-height: 42px;
  border-radius: 999px;
  box-shadow: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

body.home-page #svcGrid .hot-scene-actions .btn-ghost {
  background: #fff;
  border: 1px solid #e8ddd4;
  color: #374151;
}

body.home-page #svcGrid .hot-scene-actions .btn-primary {
  background: #fff1e8;
  border: 1px solid #ffb999;
  color: #e8580c;
}

body.home-page #svcGrid .hot-scene-actions .btn-ghost:hover,
body.home-page #svcGrid .hot-scene-actions .btn-primary:hover {
  transform: translateY(-1px);
}

body.home-page #svcGrid .hot-scene-actions .btn-ghost:hover {
  border-color: #d9cbc0;
  background: #fffaf6;
}

body.home-page #svcGrid .hot-scene-actions .btn-primary:hover {
  border-color: #f48b5e;
  background: #ffe6d8;
  color: #c74308;
}

body.home-page .home-mid-banner {
  min-height: 88px;
  margin-top: 24px;
  background:
    linear-gradient(90deg, rgba(210, 92, 45, .92) 0%, rgba(221, 119, 66, .9) 56%, rgba(238, 160, 101, .82) 100%);
  box-shadow: 0 12px 30px rgba(157, 62, 25, .13);
}

body.home-page .home-mid-banner:hover {
  box-shadow: 0 16px 36px rgba(157, 62, 25, .17);
}

body.home-page .home-mid-copy strong {
  font-size: 20px;
}

body.home-page .home-mid-copy em {
  color: rgba(255, 255, 255, .82);
}

body.home-page .home-mid-cta {
  min-height: 32px;
  color: #d95d31;
}

body.home-page .home-mid-photo {
  min-height: 88px;
}

body.home-page .home-banner-photo {
  object-position: 62% center;
}

body.home-page .home-trust-grid {
  align-items: stretch;
}

body.home-page .home-trust-card {
  height: 100%;
  min-height: 132px;
  text-align: left;
}

body.home-page .home-trust-card strong {
  align-self: end;
  font-size: 16px;
}

body.home-page .home-trust-card p {
  max-width: 220px;
  color: #78685f;
  line-height: 1.58;
}

@media (max-width: 980px) {
  body.home-page #svcGrid.home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-page .home-services .home-section-head {
    padding-right: 0;
  }

  body.home-page .home-head-link {
    position: static;
    display: inline-flex;
    margin-top: 12px;
  }

  body.home-page #svcGrid.home-service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.home-page #svcGrid .scene-service-card {
    grid-template-rows: 206px 1fr;
  }

  body.home-page #svcGrid .scene-service-card .home-service-photo {
    height: 206px;
  }

  body.home-page .home-mid-banner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  body.home-page .home-mid-copy {
    padding: 0;
  }

  body.home-page .home-mid-cta {
    justify-self: start;
  }

  body.home-page .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  body.home-page .home-trust-card p {
    max-width: none;
  }
}

@media (max-width: 460px) {
  body.home-page #svcGrid .hot-scene-actions {
    grid-template-columns: 1fr;
  }

  body.home-page .home-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage rear-section refinement: local services, booking flow, service catalog, final CTA, footer. */
body.home-page .home-glass-toolbar {
  display: none;
}

body.home-page .home-local-channel {
  margin-top: 28px;
  padding: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, auto) auto;
  gap: 22px;
  align-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,248,240,.96)),
    #fff;
  border: 1px solid rgba(222, 184, 148, .5);
  box-shadow: 0 16px 42px rgba(87, 57, 35, .08);
}

body.home-page .home-local-copy h3 {
  margin: 10px 0 8px;
  color: #2a160f;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.22;
  font-weight: 950;
}

body.home-page .home-local-copy p {
  max-width: 700px;
  color: #70625b;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 650;
}

body.home-page .home-local-tags {
  justify-content: end;
  grid-template-columns: repeat(2, max-content);
  gap: 9px;
}

body.home-page .home-local-tags span {
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff4ec;
  border: 1px solid #ffd8c4;
  color: #a94d30;
  font-size: 13px;
  font-weight: 900;
}

body.home-page .home-local-channel .btn-red {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  white-space: nowrap;
}

body.home-page .home-steps {
  padding: 42px 0 44px;
}

body.home-page .home-steps-shell {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

body.home-page .home-steps .home-section-head p {
  color: #78685f;
  line-height: 1.68;
}

body.home-page .home-step-list {
  position: relative;
  gap: 16px;
  align-items: stretch;
}

body.home-page .home-step-list::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 31px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 88, 12, .18), transparent);
  pointer-events: none;
}

body.home-page .home-step {
  position: relative;
  z-index: 1;
  min-height: 166px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(112, 84, 60, .12);
  box-shadow: 0 12px 32px rgba(72, 45, 26, .06);
}

body.home-page .home-step span {
  width: 46px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff1e8;
  color: #e8580c;
  font-size: 13px;
  font-weight: 950;
}

body.home-page .home-step strong {
  margin-top: 14px;
  color: #2b211d;
  font-size: 18px;
  line-height: 1.28;
}

body.home-page .home-step p {
  margin-top: 9px;
  color: #74665f;
  font-size: 13px;
  line-height: 1.66;
}

body.home-page .home-featured {
  padding: 46px 0 38px;
}

body.home-page .home-featured .home-section-head p {
  max-width: 720px;
  color: #78685f;
}

body.home-page .home-text-link {
  color: #e8580c;
  text-decoration: none;
  font-weight: 950;
}

body.home-page .home-text-link:hover {
  color: #c74308;
}

body.home-page .service-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

body.home-page .service-project-card {
  height: 100%;
  display: grid;
  grid-template-rows: 218px 1fr;
  border-radius: 10px;
  background: #fffaf6;
  border: 1px solid rgba(90, 63, 42, .1);
  box-shadow: 0 12px 30px rgba(64, 42, 28, .07);
}

body.home-page .service-project-card:hover,
body.home-page .service-project-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(64, 42, 28, .09);
}

body.home-page .service-project-card .home-service-photo {
  height: 218px;
  border-radius: 0;
}

body.home-page .service-project-card .home-service-photo em {
  left: 16px;
  bottom: 14px;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(42, 31, 24, .62);
  color: #fff;
  font-size: 12px;
}

body.home-page .service-project-card .home-service-copy {
  min-height: 170px;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
}

body.home-page .service-project-card .home-service-copy h3 {
  font-size: 20px;
  line-height: 1.26;
}

body.home-page .service-project-card .home-service-copy p {
  min-height: 44px;
  margin-top: 8px;
  color: #74665f;
  font-size: 14px;
  line-height: 1.58;
}

body.home-page .service-card-actions {
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 10px;
}

body.home-page .service-link,
body.home-page .service-cta {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  box-shadow: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

body.home-page .service-link {
  background: #fff;
  border: 1px solid #e7dbd1;
  color: #374151;
}

body.home-page .service-cta {
  background: #e8580c;
  border: 1px solid #e8580c;
  color: #fff;
}

body.home-page .service-link:hover,
body.home-page .service-cta:hover {
  transform: translateY(-1px);
}

body.home-page .service-link:hover {
  background: #fffaf6;
  border-color: #d9cbc0;
}

body.home-page .service-cta:hover {
  background: #c74308;
  border-color: #c74308;
}

body.home-page .home-join {
  padding: 34px 0 50px;
}

body.home-page .home-join-shell {
  padding: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(112, 84, 60, .12);
  box-shadow: 0 14px 40px rgba(72, 45, 26, .075);
}

body.home-page .home-join h2 {
  font-size: clamp(26px, 3vw, 36px);
}

body.home-page .home-join p {
  max-width: 620px;
  color: #74665f;
  line-height: 1.7;
}

body.home-page .home-join .cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

body.home-page .home-join .btn-ghost {
  background: #fff;
  border-color: #e6d8ce;
  color: #374151;
}

body.home-page footer {
  margin-top: 0;
  background: #111b24;
}

body.home-page .ft-grid {
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(150px, 1fr));
  gap: 42px;
}

body.home-page .ft-brand p {
  max-width: 410px;
  color: rgba(255, 255, 255, .72);
}

body.home-page .ft-col h4 {
  color: #fff;
}

body.home-page .ft-col li a {
  color: rgba(255, 255, 255, .68);
}

body.home-page .ft-col li a:hover,
body.home-page .ft-bottom a:hover {
  color: #fff;
}

body.home-page .ft-bottom {
  color: rgba(255, 255, 255, .54);
}

@media (max-width: 980px) {
  body.home-page .home-local-channel {
    grid-template-columns: 1fr;
  }

  body.home-page .home-local-tags {
    justify-content: start;
  }

  body.home-page .home-local-channel .btn-red {
    justify-self: start;
  }

  body.home-page .home-step-list::before {
    display: none;
  }

  body.home-page .service-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .ft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-page .home-local-channel {
    padding: 22px;
  }

  body.home-page .home-local-tags {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  body.home-page .home-steps-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.home-page .home-step-list,
  body.home-page .service-project-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .home-step {
    min-height: 0;
  }

  body.home-page .service-project-card {
    grid-template-rows: 204px 1fr;
  }

  body.home-page .service-project-card .home-service-photo {
    height: 204px;
  }

  body.home-page .home-join-shell {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  body.home-page .home-join .cta-btns {
    justify-content: stretch;
  }

  body.home-page .home-join .cta-btns .btn {
    width: 100%;
  }

  body.home-page .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.home-page .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  body.home-page .home-local-tags,
  body.home-page .service-card-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage rear-section final polish: tighten rhythm and reduce button noise. */
body.home-page .home-services {
  padding-bottom: 38px;
}

body.home-page .home-services > .wrap > .home-trust-grid {
  margin-top: 40px;
}

body.home-page .home-local-channel {
  margin-top: 26px;
  padding: 24px 26px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

body.home-page .home-local-copy {
  min-width: 0;
}

body.home-page .home-local-copy h3 {
  margin: 8px 0 7px;
  font-size: clamp(22px, 2.2vw, 28px);
}

body.home-page .home-local-copy p {
  max-width: 660px;
  line-height: 1.66;
}

body.home-page .home-local-tags {
  gap: 8px;
  align-items: center;
}

body.home-page .home-local-channel .btn-red {
  min-height: 40px;
  padding: 0 17px;
}

body.home-page .home-steps {
  padding: 44px 0 40px;
}

body.home-page .home-steps-shell {
  gap: 30px;
}

body.home-page .home-step {
  min-height: 156px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(72, 45, 26, .055);
}

body.home-page .home-step strong {
  margin-top: 12px;
}

body.home-page .home-step p {
  margin-top: 8px;
}

body.home-page .home-featured {
  padding: 44px 0 34px;
}

body.home-page .service-project-card {
  grid-template-rows: 202px 1fr;
  box-shadow: 0 10px 26px rgba(64, 42, 28, .065);
}

body.home-page .service-project-card:hover,
body.home-page .service-project-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(64, 42, 28, .08);
}

body.home-page .service-project-card .home-service-photo {
  height: 202px;
}

body.home-page .service-project-card .home-service-copy {
  min-height: 150px;
  padding: 17px 20px 18px;
}

body.home-page .service-project-card .home-service-copy h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

body.home-page .service-project-card .home-service-copy p {
  min-height: 42px;
  margin-top: 0;
  line-height: 1.58;
}

body.home-page .service-card-actions {
  padding-top: 22px;
  gap: 10px;
}

body.home-page .service-link,
body.home-page .service-cta {
  min-height: 40px;
  padding: 0 12px;
}

body.home-page .service-cta {
  background: #fff3ea;
  border-color: #ffbc9a;
  color: #e8580c;
}

body.home-page .service-cta:hover {
  background: #ffe5d5;
  border-color: #f09164;
  color: #c74308;
}

body.home-page .home-join {
  padding: 38px 0 44px;
}

body.home-page .home-join-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 32px 34px;
}

body.home-page .home-join-shell > div:first-child {
  min-width: 0;
}

body.home-page .home-join h2 {
  max-width: 820px;
  font-size: clamp(30px, 2.45vw, 34px);
  line-height: 1.3;
  text-wrap: balance;
}

body.home-page .text-nowrap {
  white-space: nowrap;
}

body.home-page .home-join p {
  margin-top: 9px;
}

body.home-page .home-join .cta-btns {
  flex-shrink: 0;
}

body.home-page footer {
  padding: 56px 0 24px;
}

body.home-page .ft-grid {
  gap: 36px;
}

body.home-page .ft-bottom {
  margin-top: 30px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  body.home-page .home-local-channel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.home-page .home-local-tags {
    justify-content: start;
  }

  body.home-page .home-join-shell {
    grid-template-columns: 1fr;
  }

  body.home-page .home-join .cta-btns {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body.home-page .home-services {
    padding-bottom: 32px;
  }

  body.home-page .home-local-channel {
    padding: 21px;
  }

  body.home-page .home-steps,
  body.home-page .home-featured {
    padding-top: 40px;
    padding-bottom: 34px;
  }

  body.home-page .service-project-card {
    grid-template-rows: 194px 1fr;
  }

  body.home-page .service-project-card .home-service-photo {
    height: 194px;
  }

  body.home-page .service-project-card .home-service-copy {
    min-height: 146px;
  }

  body.home-page .service-card-actions {
    padding-top: 20px;
  }

  body.home-page .home-join {
    padding: 34px 0 38px;
  }

  body.home-page .home-join-shell {
    padding: 24px;
    gap: 20px;
  }

  body.home-page .home-join h2 {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.32;
  }

  body.home-page footer {
    padding-top: 46px;
  }
}

/* Homepage hero-to-services rhythm: keep the first screen content-driven. */
body.home-page .hero-home {
  min-height: auto;
  padding-bottom: 4px;
}

body.home-page .home-services {
  padding-top: 36px;
}

@media (max-width: 760px) {
  body.home-page .hero-home {
    padding-bottom: 22px;
  }

  body.home-page .home-services {
    padding-top: 36px;
  }
}

/* Homepage second-screen need scenarios: separate life needs from the service catalog. */
body.home-page #svcGrid .needs-scene-card .hot-service-body {
  min-height: 224px;
  padding-bottom: 18px;
}

body.home-page #svcGrid .needs-scene-card .hot-scene-summary {
  min-height: 46px;
}

body.home-page #svcGrid .needs-scene-card .hot-service-tags {
  margin-top: 18px;
}

body.home-page #svcGrid .needs-scene-card .hot-scene-actions {
  padding-top: 20px;
}

body.home-page #svcGrid .needs-scene-card .hot-scene-actions .btn-ghost,
body.home-page #svcGrid .needs-scene-card .hot-scene-actions .btn-primary {
  min-height: 42px;
  font-size: 14px;
}

@media (max-width: 760px) {
  body.home-page #svcGrid .needs-scene-card .hot-service-body {
    min-height: 0;
  }

  body.home-page #svcGrid .needs-scene-card .hot-scene-summary {
    min-height: 0;
  }
}

/* Homepage service catalog prices: keep pricing in the directory, not scenario cards. */
body.home-page .service-project-card .home-service-copy {
  min-height: 184px;
}

body.home-page .service-project-card .home-service-copy h3 {
  margin-bottom: 8px;
}

body.home-page .service-project-card .service-price-line {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  margin: 0 0 9px;
  white-space: nowrap;
}

body.home-page .service-project-card .service-price-line strong {
  color: #e8580c;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

body.home-page .service-project-card .service-price-line em {
  color: #968981;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

body.home-page .service-project-card .home-service-copy p {
  margin-top: 0;
}

@media (max-width: 760px) {
  body.home-page .service-project-card .home-service-copy {
    min-height: 176px;
  }

body.home-page .service-project-card .service-price-line strong {
    font-size: 20px;
  }
}

/* Sitter search cards: keep photo, avatar, and content from overlapping. */
#sittersGrid:not(.list-view) .sc {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
}

#sittersGrid .sc {
  min-width: 0;
  overflow: hidden;
}

#sittersGrid .sc-photo {
  position: relative;
  z-index: 0;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

#sittersGrid .sc-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sittersGrid .sc-body {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}

#sittersGrid .sc-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

#sittersGrid .sc-ava {
  width: 48px;
  height: 48px;
  margin-top: 0;
  border-width: 3px;
  box-shadow: 0 8px 18px rgba(31, 49, 66, .12);
}

#sittersGrid .sc-info,
#sittersGrid .sc-name,
#sittersGrid .sc-loc,
#sittersGrid .sc-credit-score,
#sittersGrid .sc-verify {
  min-width: 0;
}

#sittersGrid .sc-name,
#sittersGrid .sc-loc,
#sittersGrid .sc-credit-score {
  overflow: hidden;
  text-overflow: ellipsis;
}

#sittersGrid .sc-name,
#sittersGrid .sc-credit-score {
  white-space: nowrap;
}

#sittersGrid .sc-rating {
  flex-wrap: wrap;
}

#sittersGrid .sc-credit {
  min-width: 0;
}

#sittersGrid .sc-credit-level,
#sittersGrid .sc-price {
  flex-shrink: 0;
}

#sittersGrid .sc-tags,
#sittersGrid .sc-actions {
  min-width: 0;
}

#sittersGrid .sc-actions .mini-btn {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sittersGrid.list-view .sc {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

#sittersGrid.list-view .sc-photo {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  aspect-ratio: auto;
  height: 100%;
  min-height: 220px;
}

#sittersGrid.list-view .sc-body {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 760px) {
  #sittersGrid.list-view .sc {
    grid-template-columns: 1fr;
  }

  #sittersGrid.list-view .sc-photo {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  #sittersGrid.list-view .sc-body {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Official homepage repositioning: brand intro + mini program routing + provider entry. */
body.home-brand-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 188, 119, .26), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 116, 78, .13), transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #fff7ef 42%, #fffdf9 100%);
  color: #241710;
}

body.home-brand-page .wrap {
  width: min(1400px, calc(100% - 48px));
}

body.home-brand-page .nav {
  background: rgba(255, 250, 242, .9);
}

body.home-brand-page .nav-inner {
  min-height: 76px;
}

body.home-brand-page .nav-links {
  justify-content: center;
  gap: 12px;
}

body.home-brand-page .nav-links a {
  color: #3a2a22;
  font-weight: 800;
}

body.home-brand-page .nav-right .btn {
  min-height: 42px;
  padding: 0 18px;
}

body.home-brand-page .brand-hero {
  padding: 48px 0 26px;
}

body.home-brand-page .brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .96fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}

body.home-brand-page .brand-hero-copy {
  min-width: 0;
}

body.home-brand-page .home-kicker {
  min-height: 30px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(255, 241, 232, .92);
  border: 1px solid rgba(255, 189, 154, .72);
  color: #e8580c;
  font-size: 13px;
  font-weight: 950;
}

body.home-brand-page .brand-hero h1 {
  margin-top: 22px;
  color: #241710;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: 1.13;
  letter-spacing: -0.025em;
  font-weight: 950;
}

body.home-brand-page .brand-hero h1 span {
  display: block;
}

body.home-brand-page .brand-highlight {
  display: inline !important;
  color: #f04f22;
  white-space: nowrap;
}

body.home-brand-page .brand-hero-lead {
  max-width: 690px;
  margin-top: 22px;
  color: #604f44;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 650;
}

body.home-brand-page .miniapp-entry-card {
  margin-top: 30px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(224, 197, 174, .66);
  box-shadow: 0 22px 58px rgba(92, 56, 31, .12);
}

body.home-brand-page .miniapp-entry {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fffaf6;
  border: 1px solid rgba(229, 206, 188, .72);
}

body.home-brand-page .provider-entry {
  background: linear-gradient(135deg, #fff7ef, #fff);
}

body.home-brand-page .entry-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fff0e7;
  font-size: 18px;
}

body.home-brand-page .miniapp-entry h2 {
  margin-top: 10px;
  color: #2b160f;
  font-size: 20px;
  line-height: 1.3;
}

body.home-brand-page .miniapp-entry p {
  margin-top: 8px;
  color: #69584e;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 650;
}

body.home-brand-page .qr-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

body.home-brand-page .qr-card strong {
  color: #2b160f;
  font-size: 13px;
  font-weight: 950;
}

body.home-brand-page .qr-card span {
  color: #8a7a70;
  font-size: 12px;
  line-height: 1.5;
}

body.home-brand-page .qr-placeholder {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #211714 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(#211714 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(135deg, #fff 0%, #fff8ef 100%);
  box-shadow: 0 12px 26px rgba(76, 48, 28, .16);
}

body.home-brand-page .qr-placeholder img {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

body.home-brand-page .entry-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

body.home-brand-page .text-action {
  color: #e8580c;
  font-size: 14px;
  font-weight: 950;
}

body.home-brand-page .text-action:hover {
  color: #c74308;
}

body.home-brand-page .brand-video-card {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 24px;
  background: #2d2119;
  border: 1px solid rgba(99, 70, 45, .16);
  box-shadow: 0 28px 70px rgba(66, 42, 26, .18);
}

body.home-brand-page .brand-video-card > img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  filter: saturate(1.05) contrast(.98);
}

body.home-brand-page .brand-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 24, 16, .04), rgba(35, 24, 16, .14) 45%, rgba(35, 24, 16, .74));
  pointer-events: none;
}

body.home-brand-page .video-badge,
body.home-brand-page .video-copy,
body.home-brand-page .video-trust,
body.home-brand-page .video-play {
  position: absolute;
  z-index: 1;
}

body.home-brand-page .video-badge {
  top: 20px;
  right: 20px;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(45, 31, 22, .68);
  color: #fff5ee;
  font-size: 12px;
  font-weight: 900;
}

body.home-brand-page .video-play {
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.84);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
}

body.home-brand-page .video-play span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #fff;
}

body.home-brand-page .video-copy {
  left: 28px;
  right: 28px;
  bottom: 92px;
  color: #fff;
}

body.home-brand-page .video-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 950;
}

body.home-brand-page .video-copy p {
  margin-top: 8px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  font-weight: 750;
}

body.home-brand-page .video-trust {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(62, 42, 28, .72);
  backdrop-filter: blur(12px);
}

body.home-brand-page .video-trust span {
  padding: 16px 18px;
  display: grid;
  align-content: center;
  gap: 3px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
}

body.home-brand-page .video-trust span:last-child {
  border-right: 0;
}

body.home-brand-page .video-trust strong {
  font-size: 14px;
  font-weight: 950;
}

body.home-brand-page .video-trust em {
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-style: normal;
}

body.home-brand-page .quick-services,
body.home-brand-page .home-services,
body.home-brand-page .local-channel-section,
body.home-brand-page .home-steps,
body.home-brand-page .home-featured,
body.home-brand-page .home-join {
  padding: 42px 0;
}

body.home-brand-page .quick-services {
  padding-top: 24px;
}

body.home-brand-page .home-section-head {
  margin-bottom: 26px;
}

body.home-brand-page .home-section-head h2 {
  color: #2b160f;
  font-size: clamp(27px, 2.8vw, 38px);
  letter-spacing: -0.02em;
}

body.home-brand-page .home-section-head p {
  color: #7a6a60;
  font-weight: 650;
}

body.home-brand-page .home-head-link,
body.home-brand-page .home-text-link {
  color: #e8580c;
}

body.home-brand-page .quick-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

body.home-brand-page .quick-service-grid a {
  min-height: 116px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(231, 204, 184, .72);
  box-shadow: 0 12px 28px rgba(78, 48, 28, .07);
  transition: transform .16s ease, border-color .16s ease;
}

body.home-brand-page .quick-service-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 151, 96, .55);
}

body.home-brand-page .quick-service-grid strong {
  color: #2b160f;
  font-size: 18px;
  font-weight: 950;
}

body.home-brand-page .quick-service-grid span {
  color: #7a6a60;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

body.home-brand-page #svcGrid .scene-service-card,
body.home-brand-page .service-project-card {
  border-radius: 18px;
  background: #fffdf9;
  border-color: rgba(223, 197, 176, .72);
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo em {
  background: #fff1e8;
  border: 1px solid #ffd5bf;
  color: #e8580c;
}

body.home-brand-page #svcGrid .hot-service-tags span {
  background: #fff4ec;
  border-color: #f5d6c3;
  color: #8a563f;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary,
body.home-brand-page .service-cta {
  background: #fff1e8;
  border: 1px solid #ffb999;
  color: #e8580c;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary:hover,
body.home-brand-page .service-cta:hover {
  background: #ffe3d2;
  border-color: #f09164;
  color: #c74308;
}

body.home-brand-page .home-trust-grid {
  margin-top: 38px;
}

body.home-brand-page .home-trust-card {
  cursor: pointer;
  font: inherit;
  border: 1px solid rgba(223, 197, 176, .68);
  background: rgba(255,255,255,.88);
}

body.home-brand-page .home-trust-icon {
  background: #fff1e8;
  color: #e8580c;
}

body.home-brand-page .home-trust-card svg {
  stroke: currentColor;
}

body.home-brand-page .local-channel-section {
  padding-top: 24px;
}

body.home-brand-page .home-local-channel {
  margin-top: 0;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,244,235,.92)),
    #fff;
}

body.home-brand-page .home-local-copy h2 {
  margin: 10px 0 8px;
  color: #2b160f;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.22;
  font-weight: 950;
}

body.home-brand-page .home-local-tags span {
  background: #fff1e8;
  border-color: #ffd6bf;
  color: #a84a2c;
}

body.home-brand-page .home-step {
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border-color: rgba(223, 197, 176, .68);
}

body.home-brand-page .service-price-line {
  margin: 2px 0 8px;
}

body.home-brand-page .service-price-line strong {
  color: #e8580c;
}

body.home-brand-page .home-join-shell {
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,246,238,.94)),
    #fff;
}

body.home-brand-page footer {
  background: #211811;
}

body.home-brand-page .brand-ft-grid {
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(130px, .8fr)) minmax(150px, .72fr);
}

body.home-brand-page .ft-miniapp {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  text-align: center;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 850;
}

body.home-brand-page .qr-placeholder-dark {
  width: 86px;
  border-width: 6px;
}

body.home-brand-page .qr-placeholder-dark img {
  width: 34px;
  height: 34px;
  padding: 6px;
}

body.home-brand-page .modal-qr-wrap {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

body.home-brand-page .qr-placeholder-large {
  width: 220px;
  border-radius: 28px;
  border-width: 12px;
}

body.home-brand-page .qr-placeholder-large img {
  width: 68px;
  height: 68px;
  padding: 10px;
  border-radius: 18px;
}

body.home-brand-page .modal-qr-wrap p {
  max-width: 300px;
  color: #6f625a;
  line-height: 1.75;
  font-weight: 650;
}

@media (max-width: 1180px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-entry-card {
    max-width: 860px;
  }

  body.home-brand-page .brand-video-card {
    min-height: 420px;
  }

  body.home-brand-page .quick-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-brand-page .brand-ft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-brand-page .wrap {
    width: min(100% - 32px, 1400px);
  }

  body.home-brand-page .brand-hero {
    padding: 34px 0 18px;
  }

  body.home-brand-page .brand-hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.18;
  }

  body.home-brand-page .brand-hero-lead {
    font-size: 15px;
    line-height: 1.78;
  }

  body.home-brand-page .miniapp-entry-card {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 22px;
  }

  body.home-brand-page .miniapp-entry {
    padding: 17px;
  }

  body.home-brand-page .entry-actions .btn {
    width: 100%;
  }

  body.home-brand-page .brand-video-card {
    min-height: 360px;
    border-radius: 22px;
  }

  body.home-brand-page .brand-video-card > img {
    min-height: 360px;
  }

  body.home-brand-page .video-play {
    width: 72px;
    height: 72px;
  }

  body.home-brand-page .video-play span {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 21px;
  }

  body.home-brand-page .video-copy {
    left: 20px;
    right: 20px;
    bottom: 114px;
  }

  body.home-brand-page .video-copy h2 {
    font-size: 28px;
  }

  body.home-brand-page .video-copy p {
    font-size: 14px;
  }

  body.home-brand-page .video-trust {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .video-trust span {
    padding: 10px 16px;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  body.home-brand-page .quick-services,
  body.home-brand-page .home-services,
  body.home-brand-page .local-channel-section,
  body.home-brand-page .home-steps,
  body.home-brand-page .home-featured,
  body.home-brand-page .home-join {
    padding: 34px 0;
  }

  body.home-brand-page .quick-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .quick-service-grid a {
    min-height: 104px;
    padding: 15px;
  }

  body.home-brand-page .home-local-channel {
    border-radius: 20px;
  }

  body.home-brand-page .brand-ft-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .ft-miniapp {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  body.home-brand-page .quick-service-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .qr-placeholder-large {
    width: 190px;
  }
}

/* Homepage visual density pass: closer to compact official landing reference. */
body.home-brand-page {
  --home-orange: #ff5a2a;
  --home-orange-dark: #e94a20;
  --home-orange-soft: #fff1e6;
  --home-cream: #fff8ef;
  --home-text: #2a1711;
  --home-muted: #6f5b52;
  --home-border: rgba(120, 70, 40, .08);
  --home-card-shadow: 0 12px 32px rgba(80, 40, 20, .08);
  background: linear-gradient(180deg, #fff8ef 0%, #fff7ee 48%, #fffdf9 100%);
}

body.home-brand-page .wrap {
  width: min(1440px, calc(100% - 96px));
}

body.home-brand-page .nav {
  border-bottom: 1px solid var(--home-border);
  background: rgba(255, 250, 243, .95);
}

body.home-brand-page .nav-inner {
  min-height: 72px;
}

body.home-brand-page .nav-links {
  gap: 18px;
}

body.home-brand-page .nav-links a {
  padding-inline: 8px;
  color: var(--home-text);
}

body.home-brand-page .nav-right .btn-ghost {
  border: 1.5px solid rgba(255, 90, 42, .55);
  background: #fff;
  color: var(--home-orange-dark);
  box-shadow: none;
}

body.home-brand-page .nav-right .btn-red {
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 90, 42, .22);
}

body.home-brand-page .brand-hero {
  padding: 34px 0 14px;
}

body.home-brand-page .brand-hero-grid {
  grid-template-columns: minmax(620px, 1.05fr) minmax(560px, .95fr);
  gap: 56px;
}

body.home-brand-page .brand-hero h1 {
  margin-top: 15px;
  max-width: 720px;
  color: var(--home-text);
  font-size: clamp(40px, 3.05vw, 58px);
  line-height: 1.12;
  font-weight: 950;
}

body.home-brand-page .brand-hero h1 > span {
  white-space: nowrap;
}

body.home-brand-page .brand-highlight {
  color: var(--home-orange);
}

body.home-brand-page .brand-hero-lead {
  max-width: 680px;
  margin-top: 14px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.7;
}

body.home-brand-page .miniapp-entry-card {
  max-width: 670px;
  margin-top: 18px;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 16px 40px rgba(80, 40, 20, .08);
}

body.home-brand-page .miniapp-entry {
  min-height: 226px;
  padding: 17px;
  gap: 12px;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: #fff;
}

body.home-brand-page .miniapp-entry + .miniapp-entry {
  border-left: 1px solid rgba(120, 70, 40, .08);
}

body.home-brand-page .entry-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--home-orange-soft);
}

body.home-brand-page .miniapp-entry h2 {
  margin-top: 7px;
  font-size: 18px;
  color: var(--home-text);
}

body.home-brand-page .miniapp-entry p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.52;
  color: var(--home-muted);
}

body.home-brand-page .miniapp-entry .btn-red {
  min-height: 44px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  box-shadow: 0 12px 24px rgba(255, 90, 42, .22);
}

body.home-brand-page .miniapp-qr-img {
  width: 112px;
  height: 112px;
  padding: 7px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 10px 22px rgba(80, 40, 20, .1);
}

body.home-brand-page .qr-card {
  gap: 5px;
}

body.home-brand-page .brand-video-card {
  min-width: 560px;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(80, 40, 20, .16);
}

body.home-brand-page .brand-video-card > img {
  min-height: 0;
  height: 100%;
  object-position: center;
}

body.home-brand-page .video-play {
  width: 84px;
  height: 84px;
}

body.home-brand-page .video-copy {
  bottom: 82px;
}

body.home-brand-page .video-copy h2 {
  font-size: clamp(30px, 2.6vw, 40px);
}

body.home-brand-page .video-trust {
  min-height: 76px;
}

body.home-brand-page .video-trust span {
  position: relative;
  padding: 15px 16px 15px 46px;
}

body.home-brand-page .video-trust span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 950;
}

body.home-brand-page .quick-services {
  padding: 14px 0 36px;
}

body.home-brand-page .home-services,
body.home-brand-page .local-channel-section,
body.home-brand-page .home-steps,
body.home-brand-page .home-featured,
body.home-brand-page .home-join {
  padding: 42px 0;
}

body.home-brand-page .home-section-head {
  margin-bottom: 22px;
}

body.home-brand-page .home-section-head h2 {
  font-size: clamp(26px, 2.2vw, 34px);
}

body.home-brand-page .quick-service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

body.home-brand-page .quick-service-grid a {
  min-height: 94px;
  padding: 16px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 2px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

body.home-brand-page .quick-service-grid i {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff4eb, #ffe0cc);
  color: var(--home-orange);
  font-size: 22px;
  font-style: normal;
}

body.home-brand-page .quick-service-grid strong {
  align-self: end;
  font-size: 17px;
}

body.home-brand-page .quick-service-grid span {
  align-self: start;
  font-size: 12px;
}

body.home-brand-page #svcGrid.home-service-grid {
  gap: 20px;
}

body.home-brand-page #svcGrid .scene-service-card {
  grid-template-rows: 196px 1fr;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(80, 40, 20, .08);
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo {
  height: 196px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo em {
  background: #fff1e6;
  border: 1px solid rgba(255, 90, 42, .24);
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-service-body {
  min-height: 218px;
  padding: 18px;
}

body.home-brand-page #svcGrid .hot-scene-title {
  font-size: 20px;
}

body.home-brand-page #svcGrid .hot-scene-summary {
  min-height: 42px;
  color: var(--home-muted);
}

body.home-brand-page #svcGrid .hot-scene-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding-top: 18px;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-ghost {
  min-height: 42px;
  border: 1.5px solid rgba(255, 90, 42, .38);
  background: #fff;
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary {
  min-height: 42px;
  border: 1px solid var(--home-orange);
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 90, 42, .2);
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary:hover {
  background: linear-gradient(135deg, var(--home-orange-dark), var(--home-orange));
  color: #fff;
}

body.home-brand-page .home-trust-grid {
  gap: 18px;
  margin-top: 34px;
}

body.home-brand-page .home-trust-card {
  min-height: 128px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--home-card-shadow);
}

body.home-brand-page .home-trust-card p {
  max-width: none;
  font-size: 13px;
}

body.home-brand-page .home-local-channel {
  grid-template-columns: minmax(0, 1.25fr) 180px auto auto;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 22px;
  box-shadow: var(--home-card-shadow);
}

body.home-brand-page .home-local-copy h2 {
  font-size: clamp(24px, 2vw, 30px);
}

body.home-brand-page .local-channel-visual {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  justify-items: center;
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5eb, #ffe7d5);
}

body.home-brand-page .local-channel-visual span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 18px rgba(80, 40, 20, .08);
  font-size: 24px;
}

body.home-brand-page .local-channel-visual span:nth-child(2) {
  align-self: start;
}

body.home-brand-page .home-steps-shell {
  grid-template-columns: 320px minmax(0, 1fr);
}

body.home-brand-page .home-step-list {
  gap: 14px;
}

body.home-brand-page .home-step {
  min-height: 146px;
  padding: 20px;
}

body.home-brand-page .home-step i {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--home-orange-soft);
  color: var(--home-orange-dark);
  font-style: normal;
  font-weight: 950;
}

body.home-brand-page .home-featured {
  padding-top: 42px;
}

body.home-brand-page .service-project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

body.home-brand-page .service-project-card {
  grid-template-rows: 132px 1fr;
  min-height: 318px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(80, 40, 20, .075);
}

body.home-brand-page .service-project-card .home-service-photo {
  height: 132px;
}

body.home-brand-page .service-project-card .home-service-photo em {
  left: 12px;
  bottom: 10px;
  min-height: 24px;
  padding: 0 10px;
  background: rgba(42, 23, 17, .62);
  font-size: 11px;
}

body.home-brand-page .service-project-card .home-service-copy {
  min-height: 0;
  padding: 14px;
}

body.home-brand-page .service-project-card .home-service-copy h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

body.home-brand-page .service-price-line {
  margin: 0 0 7px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

body.home-brand-page .service-price-line strong {
  font-size: 15px;
  line-height: 1.2;
}

body.home-brand-page .service-price-line em {
  color: #9a887e;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  flex-shrink: 0;
}

body.home-brand-page.home-page .service-project-card .service-price-line {
  margin: 0 0 7px;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

body.home-brand-page.home-page .service-project-card .service-price-line strong {
  display: inline;
  color: var(--home-orange-dark);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

body.home-brand-page.home-page .service-project-card .service-price-line em {
  display: inline;
  color: #9a887e;
  font-size: 10px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 800;
  flex-shrink: 0;
}

body.home-brand-page .service-project-card .home-service-copy p {
  min-height: 42px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

body.home-brand-page .service-card-actions {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 12px;
}

body.home-brand-page .service-link,
body.home-brand-page .service-cta {
  min-height: 34px;
  padding: 0 8px;
  font-size: 12px;
}

body.home-brand-page .service-link {
  border: 1.3px solid rgba(255, 90, 42, .34);
  color: var(--home-orange-dark);
}

body.home-brand-page .service-cta {
  border: 1px solid var(--home-orange);
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  color: #fff;
}

body.home-brand-page .service-cta:hover {
  background: linear-gradient(135deg, var(--home-orange-dark), var(--home-orange));
  color: #fff;
}

body.home-brand-page .home-join-shell {
  position: relative;
  padding: 30px 34px;
  padding-right: 128px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,241,230,.92)),
    #fff;
}

body.home-brand-page .home-join-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(80, 40, 20, .08);
  font-size: 40px;
  transform: translateY(-50%);
  pointer-events: none;
}

body.home-brand-page .home-join-shell > * {
  position: relative;
  z-index: 1;
}

body.home-brand-page .home-join .cta-btns {
  grid-column: 2;
}

body.home-brand-page .home-join .btn-ghost {
  border-color: rgba(255, 90, 42, .34);
  color: var(--home-orange-dark);
}

body.home-brand-page .miniapp-qr-img-dark {
  width: 94px;
  height: 94px;
  padding: 5px;
  border-radius: 13px;
}

body.home-brand-page .miniapp-qr-img-large {
  width: 220px;
  height: 220px;
  padding: 12px;
  border-radius: 24px;
}

@media (max-width: 1320px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .brand-video-card {
    min-width: 0;
  }
}

@media (max-width: 1279px) {
  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.home-brand-page .wrap {
    width: min(100% - 40px, 1440px);
  }

  body.home-brand-page .quick-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.home-brand-page .home-local-channel {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .local-channel-visual {
    max-width: 240px;
  }

  body.home-brand-page .home-join-shell {
    padding-right: 34px;
  }

  body.home-brand-page .home-join-shell::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body.home-brand-page .wrap {
    width: min(100% - 32px, 1440px);
  }

  body.home-brand-page .nav-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 10px 0;
    flex-wrap: nowrap;
  }

  body.home-brand-page .nav-logo {
    grid-column: 1;
    grid-row-start: 1;
    min-width: 0;
  }

  body.home-brand-page .brand-logo-img {
    width: 112px;
  }

  body.home-brand-page .nav-right {
    grid-column: 2;
    grid-row-start: 1;
    display: flex;
    gap: 6px;
    width: auto;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-end;
  }

  body.home-brand-page .nav-right .btn {
    min-height: 34px;
    padding: 0 9px;
    font-size: 11px;
    white-space: nowrap;
  }

  body.home-brand-page .nav-toggle {
    grid-column: 3;
    grid-row-start: 1;
    order: initial;
    width: 42px;
    height: 42px;
    margin-left: 0;
    border-radius: 15px;
  }

  body.home-brand-page .brand-hero {
    padding: 30px 0 16px;
  }

  body.home-brand-page .brand-hero h1 {
    font-size: clamp(31px, 8vw, 42px);
  }

  body.home-brand-page .brand-hero h1 > span {
    white-space: normal;
  }

  body.home-brand-page .miniapp-entry-card {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-entry {
    min-height: 0;
  }

  body.home-brand-page .miniapp-entry + .miniapp-entry {
    border-left: 0;
    border-top: 1px solid rgba(120, 70, 40, .08);
  }

  body.home-brand-page .brand-video-card {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  body.home-brand-page .brand-video-card > img {
    min-height: 0;
  }

  body.home-brand-page .video-copy {
    bottom: 112px;
  }

  body.home-brand-page .quick-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .quick-service-grid a {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 92px;
  }

  body.home-brand-page .quick-service-grid i {
    width: 40px;
    height: 40px;
  }

  body.home-brand-page .home-services,
  body.home-brand-page .local-channel-section,
  body.home-brand-page .home-steps,
  body.home-brand-page .home-featured,
  body.home-brand-page .home-join {
    padding: 34px 0;
  }

  body.home-brand-page .home-steps-shell {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .service-project-card {
    min-height: 310px;
  }

  body.home-brand-page .home-join .cta-btns {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  body.home-brand-page .service-project-grid,
  body.home-brand-page .service-card-actions {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-qr-img-large {
    width: 190px;
    height: 190px;
  }
}

/* Homepage target-reference tightening pass: compact official-site rhythm. */
body.home-brand-page {
  --home-orange: #ff5a2a;
  --home-orange-dark: #e94a20;
  --home-orange-soft: #fff1e6;
  --home-cream: #fff8ef;
  --home-text: #2a1711;
  --home-muted: #6f5b52;
  --home-border: rgba(120, 70, 40, .08);
  --home-card-shadow: 0 12px 32px rgba(80, 40, 20, .08);
  background: linear-gradient(180deg, #fff8ef 0%, #fff7ee 54%, #fffaf5 100%);
  color: var(--home-text);
}

body.home-brand-page .wrap {
  width: min(1480px, calc(100% - 96px));
}

body.home-brand-page .nav {
  background: rgba(255, 250, 243, .96);
}

body.home-brand-page .nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 68px;
}

body.home-brand-page .nav-logo {
  flex: 0 0 auto;
}

body.home-brand-page .nav-links {
  flex: 0 0 auto;
  margin-left: 40px;
  gap: 34px;
  justify-content: flex-start;
}

body.home-brand-page .nav-right {
  margin-left: auto;
}

body.home-brand-page .brand-hero {
  padding: 42px 0 18px;
}

body.home-brand-page .brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, .9fr) minmax(600px, 1.1fr);
  gap: 56px;
  align-items: start;
}

body.home-brand-page .brand-hero-copy {
  min-width: 0;
}

body.home-brand-page .home-kicker {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 241, 230, .94);
  border: 1px solid rgba(255, 90, 42, .18);
  color: var(--home-orange-dark);
  font-size: 13px;
  font-weight: 850;
}

body.home-brand-page .brand-hero h1 {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--home-text);
  font-size: clamp(36px, 2.4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 850;
}

body.home-brand-page .brand-hero h1 > span {
  display: block;
  white-space: nowrap;
}

body.home-brand-page .brand-highlight {
  display: inline !important;
  color: var(--home-orange);
  white-space: nowrap;
}

body.home-brand-page .brand-hero-lead {
  max-width: 600px;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}

body.home-brand-page .miniapp-entry-card {
  width: 100%;
  max-width: 600px;
  margin-top: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 14px 36px rgba(80, 40, 20, .08);
}

body.home-brand-page .miniapp-entry {
  min-height: 228px;
  padding: 18px 20px;
  gap: 10px;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: #fff;
}

body.home-brand-page .miniapp-entry + .miniapp-entry {
  border-left: 1px solid var(--home-border);
}

body.home-brand-page .entry-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--home-orange-soft);
  font-size: 16px;
}

body.home-brand-page .miniapp-entry h2 {
  margin-top: 8px;
  color: var(--home-text);
  font-size: 18px;
  line-height: 1.3;
}

body.home-brand-page .miniapp-entry p {
  margin-top: 6px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.52;
}

body.home-brand-page .qr-card {
  gap: 5px;
}

body.home-brand-page .miniapp-qr-img {
  width: 116px;
  height: 116px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 10px 22px rgba(80, 40, 20, .1);
}

body.home-brand-page .qr-card strong {
  font-size: 12px;
}

body.home-brand-page .qr-card span {
  color: #99887d;
  font-size: 11px;
}

body.home-brand-page .entry-actions {
  gap: 12px;
  margin-top: auto;
}

body.home-brand-page .miniapp-entry .btn-red {
  width: fit-content;
  min-height: 42px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  box-shadow: 0 12px 24px rgba(255, 90, 42, .2);
}

body.home-brand-page .text-action,
body.home-brand-page .home-head-link,
body.home-brand-page .home-text-link {
  color: var(--home-orange-dark);
}

body.home-brand-page .brand-video-card {
  width: 100%;
  max-width: 700px;
  min-width: 0;
  aspect-ratio: 16 / 9.35;
  align-self: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(80, 40, 20, .14);
}

body.home-brand-page .brand-video-card > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

body.home-brand-page .brand-video-card::after {
  background: linear-gradient(180deg, rgba(42, 23, 17, .04) 12%, rgba(42, 23, 17, .08) 42%, rgba(42, 23, 17, .66) 100%);
}

body.home-brand-page .video-badge {
  top: 20px;
  right: 20px;
  background: rgba(42, 23, 17, .58);
  font-size: 12px;
}

body.home-brand-page .video-play {
  width: 78px;
  height: 78px;
  border-width: 3px;
}

body.home-brand-page .video-copy {
  left: 34px;
  right: 34px;
  bottom: 72px;
}

body.home-brand-page .video-copy h2 {
  font-size: clamp(30px, 2.2vw, 38px);
}

body.home-brand-page .video-copy p {
  margin-top: 4px;
  font-size: 15px;
}

body.home-brand-page .video-trust {
  min-height: 68px;
  background: rgba(45, 24, 15, .78);
}

body.home-brand-page .video-trust span {
  padding: 12px 14px 12px 44px;
}

body.home-brand-page .video-trust strong {
  font-size: 13px;
}

body.home-brand-page .video-trust em {
  font-size: 11px;
}

body.home-brand-page .home-flow {
  margin-top: 0;
}

body.home-brand-page .home-services {
  padding: 20px 0 24px;
}

body.home-brand-page .home-services > .wrap {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 247, 238, .78), rgba(255, 255, 255, .58));
  border: 1px solid rgba(120, 70, 40, .05);
}

body.home-brand-page .home-section-head {
  margin-bottom: 20px;
}

body.home-brand-page .home-section-head h2 {
  color: var(--home-text);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.22;
}

body.home-brand-page .home-section-head p {
  color: var(--home-muted);
  font-size: 15px;
}

body.home-brand-page #svcGrid.home-service-grid {
  gap: 20px;
}

body.home-brand-page #svcGrid .scene-service-card {
  grid-template-rows: 180px 1fr;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(80, 40, 20, .07);
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
  height: 180px;
}

body.home-brand-page #svcGrid .hot-service-body {
  min-height: 202px;
  padding: 18px;
}

body.home-brand-page #svcGrid .hot-scene-title {
  font-size: 20px;
  line-height: 1.25;
}

body.home-brand-page #svcGrid .hot-scene-summary {
  min-height: 40px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

body.home-brand-page #svcGrid .hot-service-tags {
  gap: 8px;
  margin-top: 16px;
}

body.home-brand-page #svcGrid .hot-service-tags span,
body.home-brand-page #svcGrid .scene-service-card .home-service-photo em {
  border-color: rgba(255, 90, 42, .22);
  background: #fff5ef;
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-scene-actions {
  gap: 10px;
  padding-top: 17px;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-ghost,
body.home-brand-page #svcGrid .hot-scene-actions .btn-primary {
  min-height: 42px;
}

body.home-brand-page .home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 10px 26px rgba(80, 40, 20, .06);
}

body.home-brand-page .home-trust-card {
  min-height: 96px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: left;
}

body.home-brand-page .home-trust-card:not(:last-child) {
  border-right: 1px solid var(--home-border);
}

body.home-brand-page .home-trust-icon {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--home-orange-soft);
}

body.home-brand-page .home-trust-card strong {
  align-self: end;
  color: var(--home-text);
  font-size: 16px;
}

body.home-brand-page .home-trust-card p {
  align-self: start;
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.5;
}

body.home-brand-page .local-channel-section {
  padding: 24px 0;
}

body.home-brand-page .home-local-channel {
  min-height: 118px;
  grid-template-columns: minmax(0, 1.18fr) 160px minmax(220px, auto) 144px;
  gap: 18px;
  padding: 20px 26px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(90deg, #fff, #fff4eb);
  border: 1px solid var(--home-border);
  box-shadow: 0 10px 26px rgba(80, 40, 20, .06);
}

body.home-brand-page .home-local-copy h2 {
  margin-top: 8px;
  font-size: clamp(23px, 1.7vw, 28px);
}

body.home-brand-page .home-local-copy p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
}

body.home-brand-page .local-channel-visual {
  min-height: 78px;
  padding: 10px;
}

body.home-brand-page .local-channel-visual span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 21px;
}

body.home-brand-page .home-local-tags {
  gap: 8px;
}

body.home-brand-page .home-local-tags span {
  min-height: 30px;
  background: #fff7ef;
  border: 1px solid rgba(255, 90, 42, .16);
  color: var(--home-orange-dark);
}

body.home-brand-page .home-local-channel .btn-red {
  min-height: 42px;
}

body.home-brand-page .home-steps {
  padding: 28px 0;
}

body.home-brand-page .home-steps-shell {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

body.home-brand-page .home-step-list {
  gap: 14px;
}

body.home-brand-page .home-step {
  min-height: 138px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(80, 40, 20, .06);
}

body.home-brand-page .home-step span {
  min-width: 44px;
  min-height: 28px;
  padding: 0 12px;
}

body.home-brand-page .home-step strong {
  margin-top: 14px;
  font-size: 17px;
}

body.home-brand-page .home-step p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

body.home-brand-page .home-step i,
body.home-brand-page .step-mini-qr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 4px;
  border-radius: 13px;
  background: var(--home-orange-soft);
  object-fit: contain;
}

body.home-brand-page .home-featured {
  padding: 24px 0 32px;
}

body.home-brand-page .service-project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

body.home-brand-page .service-project-card {
  grid-template-rows: 120px 1fr;
  min-height: 286px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(80, 40, 20, .065);
}

body.home-brand-page .service-project-card .home-service-photo,
body.home-brand-page .service-project-card .home-service-photo img {
  height: 120px;
}

body.home-brand-page .service-project-card .home-service-copy {
  padding: 12px;
  min-height: 0;
}

body.home-brand-page .service-project-card .home-service-copy h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

body.home-brand-page.home-page .service-project-card .service-price-line {
  margin: 0 0 6px;
  gap: 5px;
}

body.home-brand-page.home-page .service-project-card .service-price-line strong {
  font-size: 15px;
  color: var(--home-orange-dark);
}

body.home-brand-page.home-page .service-project-card .service-price-line em {
  font-size: 10px;
}

body.home-brand-page .service-project-card .home-service-copy p {
  min-height: 38px;
  font-size: 12px;
  line-height: 1.5;
}

body.home-brand-page .service-card-actions {
  gap: 8px;
  padding-top: 10px;
}

body.home-brand-page .service-link,
body.home-brand-page .service-cta {
  min-height: 34px;
  padding: 0 8px;
  font-size: 12px;
  border-radius: 999px;
}

body.home-brand-page .service-link {
  background: #fff;
  border-color: rgba(255, 90, 42, .32);
  color: var(--home-orange-dark);
}

body.home-brand-page .service-cta {
  border-color: var(--home-orange);
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  color: #fff;
}

body.home-brand-page .home-join {
  padding: 32px 0;
}

body.home-brand-page .home-join-shell {
  min-height: 136px;
  padding: 24px 32px;
  padding-right: 124px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,242,232,.93)),
    #fff;
  box-shadow: 0 12px 30px rgba(80, 40, 20, .07);
}

body.home-brand-page .home-join-shell::after {
  right: 28px;
  width: 70px;
  height: 70px;
  border-radius: 22px;
}

body.home-brand-page .home-join h2 {
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.22;
}

body.home-brand-page .home-join p {
  max-width: 820px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .home-join .cta-btns {
  grid-column: auto;
  gap: 12px;
}

body.home-brand-page footer {
  padding: 32px 0 22px;
  background: #2f1f18;
}

body.home-brand-page .brand-ft-grid {
  gap: 24px;
}

body.home-brand-page footer .ft-brand p,
body.home-brand-page footer a,
body.home-brand-page footer li,
body.home-brand-page footer .ft-bottom {
  font-size: 13px;
}

body.home-brand-page .miniapp-qr-img-dark {
  width: 82px;
  height: 82px;
}

@media (max-width: 1320px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .brand-video-card {
    max-width: 760px;
  }

  body.home-brand-page .home-services > .wrap {
    padding: 24px;
  }
}

@media (max-width: 1279px) {
  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body.home-brand-page .wrap {
    width: min(100% - 40px, 1480px);
  }

  body.home-brand-page .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .home-trust-card:nth-child(2) {
    border-right: 0;
  }

  body.home-brand-page .home-trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-border);
  }

  body.home-brand-page .home-local-channel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-brand-page .home-steps-shell {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .home-join-shell {
    padding-right: 32px;
  }

  body.home-brand-page .home-join-shell::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body.home-brand-page .wrap {
    width: min(100% - 32px, 1480px);
  }

  body.home-brand-page .brand-hero {
    padding: 30px 0 24px;
  }

  body.home-brand-page .brand-hero h1 {
    max-width: none;
    font-size: clamp(30px, 7.7vw, 38px);
  }

  body.home-brand-page .brand-hero h1 > span {
    white-space: normal;
  }

  body.home-brand-page .brand-hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  body.home-brand-page .miniapp-entry-card {
    max-width: none;
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-entry {
    min-height: 0;
  }

  body.home-brand-page .miniapp-entry + .miniapp-entry {
    border-left: 0;
    border-top: 1px solid var(--home-border);
  }

  body.home-brand-page .brand-video-card {
    aspect-ratio: 16 / 10;
  }

  body.home-brand-page .video-copy {
    bottom: 108px;
    left: 18px;
    right: 18px;
  }

  body.home-brand-page .video-copy h2 {
    font-size: 27px;
  }

  body.home-brand-page .home-services > .wrap {
    padding: 20px;
  }

  body.home-brand-page #svcGrid .scene-service-card {
    grid-template-rows: 170px 1fr;
  }

  body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
  body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
    height: 170px;
  }

  body.home-brand-page .home-trust-grid,
  body.home-brand-page .service-project-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .home-trust-card,
  body.home-brand-page .home-trust-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--home-border);
  }

  body.home-brand-page .home-trust-card:last-child {
    border-bottom: 0;
  }

  body.home-brand-page .home-services,
  body.home-brand-page .local-channel-section,
  body.home-brand-page .home-steps,
  body.home-brand-page .home-featured,
  body.home-brand-page .home-join {
    padding: 28px 0;
  }

  body.home-brand-page .home-join-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-brand-page .home-join .cta-btns {
    justify-content: start;
  }
}

@media (max-width: 430px) {
  body.home-brand-page .service-card-actions,
  body.home-brand-page #svcGrid .hot-scene-actions {
    grid-template-columns: 1fr;
  }
}

/* Homepage wide landing refinement: use the full 1600px canvas on desktop. */
body.home-brand-page {
  background: linear-gradient(180deg, #fff8ef 0%, #fff7ee 52%, #fffaf5 100%);
}

body.home-brand-page .home-container,
body.home-brand-page .wrap {
  width: min(1600px, calc(100vw - 96px));
  max-width: none;
}

body.home-brand-page .nav-inner {
  display: flex;
  align-items: center;
  min-height: 68px;
}

body.home-brand-page .nav-logo {
  flex: 0 0 auto;
}

body.home-brand-page .nav-links {
  flex: 0 0 auto;
  margin-left: 40px;
  gap: 34px;
  justify-content: flex-start;
}

body.home-brand-page .nav-right {
  margin-left: auto;
}

body.home-brand-page .nav-right .btn-red {
  min-width: 126px;
}

body.home-brand-page .brand-hero {
  padding: 42px 0 34px;
}

body.home-brand-page .brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, .9fr) minmax(760px, 1.1fr);
  gap: 56px;
  align-items: start;
}

body.home-brand-page .brand-hero h1 {
  max-width: 680px;
  font-size: clamp(40px, 2.6vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-weight: 850;
}

body.home-brand-page .brand-hero h1 > span {
  white-space: nowrap;
}

body.home-brand-page .brand-hero-lead {
  max-width: 650px;
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.76;
}

body.home-brand-page .miniapp-entry-card {
  max-width: 660px;
  margin-top: 24px;
  padding: 0;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(80, 40, 20, .08);
}

body.home-brand-page .miniapp-entry {
  min-height: 240px;
  padding: 20px 22px;
}

body.home-brand-page .miniapp-entry + .miniapp-entry {
  border-left: 1px solid rgba(120, 70, 40, .08);
}

body.home-brand-page .miniapp-qr-img {
  width: 128px;
  height: 128px;
}

body.home-brand-page .miniapp-entry .btn-red {
  min-height: 44px;
  padding: 0 32px;
}

body.home-brand-page .brand-video-card {
  width: 100%;
  max-width: 840px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(80, 40, 20, .16);
}

body.home-brand-page .video-play {
  width: 84px;
  height: 84px;
}

body.home-brand-page .video-trust span::before {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

body.home-brand-page .home-services {
  padding: 20px 0 24px;
}

body.home-brand-page .home-services > .wrap {
  width: min(1600px, calc(100vw - 96px));
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 248, 239, .95), rgba(255, 244, 232, .75));
  border: 1px solid rgba(120, 70, 40, .06);
  box-shadow: none;
}

body.home-brand-page #svcGrid.home-service-grid {
  gap: 22px;
}

body.home-brand-page #svcGrid .scene-service-card {
  grid-template-rows: 204px 1fr;
  border-radius: 18px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
  height: 204px;
}

body.home-brand-page #svcGrid .hot-service-body {
  min-height: 218px;
  padding: 18px;
}

body.home-brand-page .home-trust-grid {
  margin-top: 22px;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(80, 40, 20, .06);
}

body.home-brand-page .home-trust-card {
  min-height: 100px;
  padding: 20px 24px;
}

body.home-brand-page .home-trust-icon {
  border-radius: 50%;
}

body.home-brand-page .local-channel-section {
  padding: 24px 0 20px;
}

body.home-brand-page .home-local-channel {
  width: 100%;
  min-height: 126px;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr) minmax(340px, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 24px;
  background: linear-gradient(90deg, #fff, #fff3e8);
}

body.home-brand-page .home-local-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
}

body.home-brand-page .local-channel-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
}

body.home-brand-page .home-local-channel .btn-red {
  min-width: 138px;
}

body.home-brand-page .home-local-tags {
  grid-column: 3;
  grid-row: 1;
  justify-content: end;
}

body.home-brand-page .home-local-channel > .btn-red {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}

body.home-brand-page .home-steps {
  padding: 20px 0 24px;
}

body.home-brand-page .home-steps-shell {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

body.home-brand-page .home-step-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.home-brand-page .home-step {
  min-height: 150px;
  padding: 22px;
}

body.home-brand-page .home-featured {
  padding: 20px 0 32px;
}

body.home-brand-page .service-project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

body.home-brand-page .service-project-card {
  grid-template-rows: 138px 1fr;
  min-height: 306px;
  border-radius: 16px;
}

body.home-brand-page .service-project-card .home-service-photo,
body.home-brand-page .service-project-card .home-service-photo img {
  height: 138px;
}

body.home-brand-page .service-project-card .home-service-copy {
  padding: 14px;
}

body.home-brand-page .service-project-card .home-service-copy h3 {
  font-size: 16px;
}

body.home-brand-page.home-page .service-project-card .service-price-line strong {
  font-size: 15px;
}

body.home-brand-page .home-join {
  padding: 24px 0 32px;
}

body.home-brand-page .home-join-shell {
  width: min(1600px, calc(100vw - 96px));
  min-height: 136px;
  grid-template-columns: minmax(0, 1.3fr) minmax(140px, .35fr) minmax(300px, .8fr);
  gap: 24px;
  padding: 28px 36px;
  border-radius: 26px;
  background: linear-gradient(90deg, #fff, #fff0e5);
}

body.home-brand-page .home-join-shell::after {
  position: static;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  transform: none;
}

body.home-brand-page .home-join .cta-btns {
  grid-column: 3;
  grid-row: 1;
  justify-content: end;
}

body.home-brand-page footer {
  padding: 30px 0 22px;
}

@media (max-width: 1500px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: minmax(560px, .95fr) minmax(680px, 1.05fr);
  }
}

@media (max-width: 1320px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .brand-video-card {
    max-width: 860px;
  }

  body.home-brand-page .home-local-channel,
  body.home-brand-page .home-join-shell {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .home-local-copy,
  body.home-brand-page .local-channel-visual,
  body.home-brand-page .home-local-tags,
  body.home-brand-page .home-local-channel > .btn-red,
  body.home-brand-page .home-join .cta-btns {
    grid-column: auto;
    grid-row: auto;
  }

  body.home-brand-page .home-local-tags,
  body.home-brand-page .home-local-channel > .btn-red,
  body.home-brand-page .home-join .cta-btns {
    justify-self: start;
    justify-content: start;
  }

  body.home-brand-page .home-join-shell::after {
    display: none;
  }
}

@media (max-width: 980px) {
  body.home-brand-page .home-container,
  body.home-brand-page .wrap,
  body.home-brand-page .home-services > .wrap,
  body.home-brand-page .home-join-shell {
    width: calc(100vw - 40px);
  }

  body.home-brand-page .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.home-brand-page .home-container,
  body.home-brand-page .wrap,
  body.home-brand-page .home-services > .wrap,
  body.home-brand-page .home-join-shell {
    width: calc(100vw - 32px);
  }

  body.home-brand-page .brand-hero {
    padding: 30px 0 24px;
  }

  body.home-brand-page .brand-hero h1 {
    font-size: clamp(30px, 7.7vw, 38px);
  }

  body.home-brand-page .brand-hero h1 > span {
    white-space: normal;
  }

  body.home-brand-page .miniapp-entry-card {
    max-width: none;
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-entry + .miniapp-entry {
    border-left: 0;
    border-top: 1px solid rgba(120, 70, 40, .08);
  }

  body.home-brand-page #svcGrid .scene-service-card {
    grid-template-rows: 180px 1fr;
  }

  body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
  body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
    height: 180px;
  }

  body.home-brand-page .home-trust-grid,
  body.home-brand-page .home-step-list,
  body.home-brand-page .service-project-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage final visual polish pass: align to official mini-program landing reference. */
body.home-brand-page {
  --home-container: min(1560px, calc(100vw - 96px));
  --home-orange: #ff5a2a;
  --home-orange-dark: #e64b1e;
  --home-orange-soft: #fff1e7;
  --home-cream: #fff7ee;
  --home-card: rgba(255, 255, 255, .96);
  --home-text: #2a1711;
  --home-muted: #725f56;
  --home-line: rgba(120, 70, 40, .08);
  --home-shadow: 0 16px 42px rgba(84, 43, 20, .08);
  --home-shadow-hover: 0 22px 54px rgba(84, 43, 20, .12);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 226, 196, .72), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fff6ec 45%, #fffaf4 100%);
}

body.home-brand-page .home-container,
body.home-brand-page .wrap,
body.home-brand-page .home-services > .wrap,
body.home-brand-page .home-join-shell {
  width: var(--home-container);
  max-width: none;
  box-sizing: border-box;
}

body.home-brand-page .nav {
  min-height: 72px;
  overflow: visible;
  background: rgba(255, 250, 243, .96);
  border-bottom: 1px solid var(--home-line);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body.home-brand-page .nav-inner {
  min-height: 72px;
  height: 72px;
  overflow: visible;
}

body.home-brand-page .brand-logo-link,
body.home-brand-page .brand-logo-static {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

body.home-brand-page .brand-logo-img {
  width: auto;
  height: 38px;
  max-width: none;
  object-fit: contain;
}

body.home-brand-page .nav-links {
  margin-left: 42px;
  gap: 38px;
}

body.home-brand-page .nav-links a {
  color: #3a2a22;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

body.home-brand-page .nav-links a:hover {
  color: var(--home-orange-dark);
}

body.home-brand-page .nav-right {
  gap: 14px;
}

body.home-brand-page .nav-right .btn,
body.home-brand-page .nav-mobile-actions .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
}

body.home-brand-page .nav-right .btn-ghost,
body.home-brand-page .nav-mobile-actions .btn-ghost {
  border-color: rgba(255, 90, 42, .42);
  background: rgba(255, 255, 255, .82);
  color: var(--home-orange-dark);
}

body.home-brand-page .nav-right .btn-red,
body.home-brand-page .nav-mobile-actions .btn-red {
  border-color: var(--home-orange);
  background: var(--home-orange);
  box-shadow: 0 9px 18px rgba(255, 90, 42, .18);
}

body.home-brand-page .brand-hero {
  padding: 40px 0 28px;
}

body.home-brand-page .brand-hero-grid {
  grid-template-columns: minmax(620px, .9fr) minmax(760px, 1.1fr);
  gap: 56px;
  align-items: start;
}

body.home-brand-page .brand-hero-copy {
  max-width: 660px;
  min-width: 0;
}

body.home-brand-page .home-kicker {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 42, .16);
  background: rgba(255, 244, 235, .92);
  color: var(--home-orange-dark);
  font-size: 13px;
  font-weight: 850;
}

body.home-brand-page .brand-hero h1 {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(40px, 2.7vw, 54px);
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 850;
  color: var(--home-text);
}

body.home-brand-page .brand-hero h1 > span {
  display: block;
  white-space: nowrap;
}

body.home-brand-page .brand-hero-lead {
  max-width: 620px;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
}

body.home-brand-page .miniapp-entry-card {
  max-width: 660px;
  margin-top: 22px;
  border-radius: 22px;
  background: var(--home-card);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

body.home-brand-page .miniapp-entry {
  min-height: 230px;
  padding: 18px;
  gap: 10px;
}

body.home-brand-page .miniapp-entry + .miniapp-entry {
  border-left: 1px solid var(--home-line);
}

body.home-brand-page .entry-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  font-size: 16px;
}

body.home-brand-page .miniapp-entry h2 {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.3;
}

body.home-brand-page .miniapp-entry p {
  margin-top: 6px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .miniapp-qr-img {
  width: 124px;
  height: 124px;
  padding: 8px;
}

body.home-brand-page .qr-card {
  gap: 5px;
}

body.home-brand-page .qr-card strong {
  font-size: 12px;
}

body.home-brand-page .qr-card span {
  font-size: 11px;
}

body.home-brand-page .provider-entry .entry-actions {
  margin-top: 28px;
  gap: 12px;
  align-items: flex-start;
}

body.home-brand-page .miniapp-entry .btn-red {
  width: 190px;
  min-height: 42px;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
}

body.home-brand-page .brand-video-card {
  width: 100%;
  max-width: 820px;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  box-shadow: 0 24px 62px rgba(84, 43, 20, .16);
  transition: transform .22s ease, box-shadow .22s ease;
}

body.home-brand-page .brand-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(84, 43, 20, .19);
}

body.home-brand-page .brand-video-card > img {
  min-height: 430px;
  object-fit: cover;
  object-position: center 46%;
}

body.home-brand-page .video-badge {
  top: 18px;
  right: 18px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(42, 23, 17, .58);
}

body.home-brand-page .video-play {
  width: 84px;
  height: 84px;
  transition: transform .2s ease, background .2s ease;
}

body.home-brand-page .video-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(255, 255, 255, .22);
}

body.home-brand-page .video-copy {
  left: 34px;
  right: 34px;
  bottom: 76px;
}

body.home-brand-page .video-copy h2 {
  font-size: clamp(30px, 2.2vw, 38px);
  line-height: 1.12;
}

body.home-brand-page .video-copy p {
  margin-top: 6px;
  font-size: 15px;
}

body.home-brand-page .video-trust {
  min-height: 70px;
  background: rgba(45, 24, 15, .78);
}

body.home-brand-page .home-services {
  padding: 16px 0 30px;
}

body.home-brand-page .home-services > .wrap {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 249, 241, .98), rgba(255, 242, 228, .88)),
    #fff8ef;
  border: 1px solid rgba(120, 70, 40, .07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

body.home-brand-page .home-section-head {
  margin-bottom: 24px;
}

body.home-brand-page .home-section-head h2 {
  font-size: clamp(26px, 1.9vw, 32px);
  line-height: 1.22;
}

body.home-brand-page .home-section-head p {
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.65;
}

body.home-brand-page .home-head-link,
body.home-brand-page .home-text-link,
body.home-brand-page .text-action {
  color: var(--home-orange-dark);
  font-weight: 750;
}

body.home-brand-page #svcGrid.home-service-grid {
  gap: 22px;
}

body.home-brand-page #svcGrid .scene-service-card {
  grid-template-rows: 198px 1fr;
  min-height: 432px;
  border-radius: 20px;
  border: 1px solid var(--home-line);
  box-shadow: 0 14px 32px rgba(84, 43, 20, .075);
  transition: transform .22s ease, box-shadow .22s ease;
}

body.home-brand-page #svcGrid .scene-service-card:hover,
body.home-brand-page #svcGrid .scene-service-card:focus-within,
body.home-brand-page .service-project-card:hover,
body.home-brand-page .service-project-card:focus-within,
body.home-brand-page .home-trust-card:hover,
body.home-brand-page .home-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-hover);
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
  height: 198px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo em {
  top: 14px;
  right: 14px;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 90, 42, .22);
  background: rgba(255, 245, 239, .94);
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-service-body {
  min-height: 226px;
  padding: 18px;
}

body.home-brand-page #svcGrid .hot-scene-title {
  font-size: 18px;
  line-height: 1.28;
}

body.home-brand-page #svcGrid .hot-scene-summary {
  min-height: 44px;
  font-size: 14px;
  line-height: 1.62;
}

body.home-brand-page #svcGrid .hot-service-tags span {
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 42, .16);
  background: #fff5ef;
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-scene-actions {
  margin-top: auto;
  padding-top: 16px;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-ghost,
body.home-brand-page #svcGrid .hot-scene-actions .btn-primary {
  min-height: 38px;
  border-radius: 999px;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-ghost:hover,
body.home-brand-page .service-link:hover,
body.home-brand-page .btn-ghost:hover {
  border-color: rgba(255, 90, 42, .42);
  background: #fff4ec;
  color: var(--home-orange-dark);
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary:hover,
body.home-brand-page .service-cta:hover,
body.home-brand-page .btn-red:hover {
  background: var(--home-orange-dark);
  color: #fff;
}

body.home-brand-page .home-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--home-line);
  box-shadow: 0 12px 30px rgba(84, 43, 20, .065);
}

body.home-brand-page .home-trust-card {
  min-height: 94px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home-brand-page .home-trust-card:first-child {
  padding-left: 0;
}

body.home-brand-page .home-trust-card:last-child {
  padding-right: 0;
}

body.home-brand-page .home-trust-card:not(:last-child) {
  border-right: 1px solid var(--home-line);
}

body.home-brand-page .home-trust-icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--home-orange-soft);
}

body.home-brand-page .home-trust-card strong {
  align-self: end;
  font-size: 16px;
}

body.home-brand-page .home-trust-card p {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.55;
}

body.home-brand-page .local-channel-section {
  padding: 28px 0;
}

body.home-brand-page .home-local-channel {
  min-height: 132px;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .65fr) minmax(320px, .9fr);
  grid-template-rows: auto auto;
  gap: 22px 30px;
  padding: 26px 34px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,241,228,.94)),
    #fff;
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

body.home-brand-page .home-local-copy {
  align-self: center;
}

body.home-brand-page .home-local-copy h2 {
  margin-top: 8px;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.22;
}

body.home-brand-page .home-local-copy p {
  max-width: 680px;
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .local-channel-visual {
  position: relative;
  min-height: 106px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 90, 42, .14), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255, 177, 116, .28), transparent 26%),
    linear-gradient(135deg, #fff7ec, #ffe5d0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 12px 24px rgba(84, 43, 20, .08);
}

body.home-brand-page .local-channel-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 132px;
  height: 66px;
  border-radius: 18px 18px 13px 13px;
  background:
    linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.82) 12px 36px, transparent 36px 48px, rgba(255,255,255,.82) 48px 72px, transparent 72px 100%),
    linear-gradient(180deg, #ffb979 0 18px, #fffaf2 18px 100%);
  border: 1px solid rgba(255, 119, 54, .18);
  box-shadow: 0 10px 20px rgba(84, 43, 20, .12);
  transform: translateX(-50%);
}

body.home-brand-page .local-channel-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 78px;
  width: 92px;
  height: 34px;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(90deg, #ff7b42 0 20%, #fff4e8 20% 40%, #ff7b42 40% 60%, #fff4e8 60% 80%, #ff7b42 80% 100%);
  border: 1px solid rgba(255, 90, 42, .18);
  transform: translateX(-50%);
}

body.home-brand-page .local-channel-visual span {
  position: absolute;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 18px rgba(84, 43, 20, .08);
}

body.home-brand-page .local-channel-visual span:nth-child(1) {
  left: 24px;
  bottom: 20px;
  background:
    radial-gradient(circle at 50% 60%, #ff6b35 0 6px, transparent 7px),
    radial-gradient(circle at 32% 34%, #ff6b35 0 4px, transparent 5px),
    radial-gradient(circle at 50% 28%, #ff6b35 0 4px, transparent 5px),
    radial-gradient(circle at 68% 34%, #ff6b35 0 4px, transparent 5px),
    rgba(255,255,255,.9);
}

body.home-brand-page .local-channel-visual span:nth-child(2) {
  right: 28px;
  top: 18px;
  background:
    linear-gradient(180deg, transparent 0 11px, #ff7b42 11px 14px, transparent 14px),
    linear-gradient(90deg, transparent 0 11px, #ff7b42 11px 14px, transparent 14px),
    rgba(255,255,255,.9);
}

body.home-brand-page .local-channel-visual span:nth-child(3) {
  right: 28px;
  bottom: 18px;
  background:
    radial-gradient(circle at 50% 54%, transparent 0 6px, #ff7b42 7px 9px, transparent 10px),
    linear-gradient(#ff7b42, #ff7b42) center 9px / 18px 3px no-repeat,
    rgba(255,255,255,.9);
}

body.home-brand-page .home-local-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

body.home-brand-page .home-local-tags span {
  min-height: 30px;
  justify-content: center;
  border-radius: 999px;
  background: #fff6ee;
  border: 1px solid rgba(255, 90, 42, .16);
  color: var(--home-orange-dark);
}

body.home-brand-page .home-local-channel > .btn-red {
  min-height: 42px;
  justify-self: end;
  align-self: start;
  border-radius: 999px;
}

body.home-brand-page .home-steps {
  padding: 30px 0;
}

body.home-brand-page .home-steps-shell {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

body.home-brand-page .home-steps .align-left h2 {
  max-width: 360px;
  word-break: keep-all;
}

body.home-brand-page .home-step-list {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.home-brand-page .home-step-list::before {
  display: none;
}

body.home-brand-page .home-step {
  position: relative;
  min-height: 150px;
  padding: 22px 24px;
  overflow: visible;
  border-radius: 18px;
  border: 1px solid var(--home-line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(84, 43, 20, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

body.home-brand-page .home-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(255, 90, 42, .28);
  border-right: 2px solid rgba(255, 90, 42, .28);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

body.home-brand-page .home-step span {
  min-width: 42px;
  min-height: 28px;
  border-radius: 999px;
  background: var(--home-orange);
  color: #fff;
  font-size: 13px;
}

body.home-brand-page .home-step i,
body.home-brand-page .step-mini-qr {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

body.home-brand-page .home-step strong {
  margin-top: 18px;
  font-size: 17px;
}

body.home-brand-page .home-step p {
  margin-top: 8px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.58;
}

body.home-brand-page .home-featured {
  padding: 30px 0 34px;
}

body.home-brand-page .service-project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

body.home-brand-page .service-project-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  border-radius: 18px;
  border: 1px solid var(--home-line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(84, 43, 20, .065);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

body.home-brand-page .service-project-card .home-service-photo {
  flex: 0 0 136px;
}

body.home-brand-page .service-project-card .home-service-photo,
body.home-brand-page .service-project-card .home-service-photo img {
  height: 136px;
}

body.home-brand-page .service-project-card .home-service-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 15px 14px;
}

body.home-brand-page .service-project-card .home-service-copy h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

body.home-brand-page.home-page .service-project-card .service-price-line {
  margin: 0 0 9px;
  gap: 6px;
  flex-wrap: nowrap;
}

body.home-brand-page.home-page .service-project-card .service-price-line strong {
  font-size: 16px;
  line-height: 1.2;
  color: var(--home-orange-dark);
  white-space: nowrap;
}

body.home-brand-page.home-page .service-project-card .service-price-line em {
  font-size: 10px;
  white-space: nowrap;
}

body.home-brand-page .service-project-card .home-service-copy p {
  min-height: 38px;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.55;
}

body.home-brand-page .service-card-actions {
  margin-top: auto;
  padding-top: 14px;
  gap: 8px;
}

body.home-brand-page .service-link,
body.home-brand-page .service-cta {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

body.home-brand-page .service-link {
  background: #fff;
  border: 1px solid rgba(120, 70, 40, .16);
  color: var(--home-text);
}

body.home-brand-page .service-cta {
  border: 1px solid rgba(255, 90, 42, .36);
  background: #fff1e8;
  color: var(--home-orange-dark);
  box-shadow: none;
}

body.home-brand-page .home-join {
  padding: 30px 0 34px;
}

body.home-brand-page .home-join-shell {
  position: relative;
  min-height: 142px;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, .7fr) minmax(330px, .75fr);
  gap: 24px;
  align-items: center;
  padding: 28px 36px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,241,230,.93)),
    #fff;
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

body.home-brand-page .home-join-shell::after {
  content: "";
  position: static;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 190px;
  height: 94px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.15), rgba(255,255,255,.45)),
    url("../assets/home-cta-sitter-dog.png") center / cover no-repeat;
  box-shadow: 0 12px 28px rgba(84, 43, 20, .1);
  transform: none;
}

body.home-brand-page .home-join h2 {
  max-width: 820px;
  font-size: clamp(30px, 2vw, 36px);
  line-height: 1.28;
}

body.home-brand-page .home-join p {
  max-width: 820px;
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .home-join .cta-btns {
  grid-column: 3;
  justify-content: end;
  gap: 14px;
}

body.home-brand-page .home-join .cta-btns .btn {
  min-height: 44px;
  border-radius: 999px;
}

body.home-brand-page footer {
  padding: 34px 0 30px;
  background: #2c1d17;
}

body.home-brand-page .brand-ft-grid {
  gap: 28px;
}

body.home-brand-page .ft-miniapp {
  justify-self: end;
}

body.home-brand-page .miniapp-qr-img-dark {
  width: 92px;
  height: 92px;
}

body.home-brand-page #miniProgramQrModal {
  background: rgba(42, 23, 17, .38);
  backdrop-filter: blur(4px);
}

body.home-brand-page #miniProgramQrModal .mini-program-modal {
  width: min(420px, calc(100vw - 32px));
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(42, 23, 17, .24);
}

body.home-brand-page .modal-qr-wrap {
  padding: 18px 12px 10px;
  text-align: center;
}

body.home-brand-page .miniapp-qr-img-large {
  width: 204px;
  height: 204px;
}

body.home-brand-page .modal-qr-wrap p {
  margin-top: 14px;
  color: var(--home-text);
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .modal-qr-note {
  display: block;
  margin-top: 8px;
  color: #9a877d;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1500px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: minmax(560px, .95fr) minmax(680px, 1.05fr);
  }
}

@media (max-width: 1320px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .brand-video-card {
    max-width: 860px;
  }

  body.home-brand-page .home-local-channel,
  body.home-brand-page .home-join-shell {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .home-local-copy,
  body.home-brand-page .local-channel-visual,
  body.home-brand-page .home-local-tags,
  body.home-brand-page .home-local-channel > .btn-red,
  body.home-brand-page .home-join .cta-btns {
    grid-column: auto;
    grid-row: auto;
  }

  body.home-brand-page .home-local-tags,
  body.home-brand-page .home-local-channel > .btn-red,
  body.home-brand-page .home-join .cta-btns {
    justify-self: start;
    justify-content: start;
  }

  body.home-brand-page .home-join-shell::after {
    display: none;
  }
}

@media (max-width: 980px) {
  body.home-brand-page {
    --home-container: calc(100vw - 40px);
  }

  body.home-brand-page .nav-inner {
    height: auto;
    min-height: 64px;
  }

  body.home-brand-page .brand-video-card,
  body.home-brand-page .brand-video-card > img {
    min-height: 0;
  }

  body.home-brand-page .home-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-brand-page .home-trust-card,
  body.home-brand-page .home-trust-card:first-child,
  body.home-brand-page .home-trust-card:last-child {
    padding: 18px;
  }

  body.home-brand-page .home-trust-card:nth-child(2) {
    border-right: 0;
  }

  body.home-brand-page .home-trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-line);
  }

  body.home-brand-page .home-step:not(:last-child)::after {
    display: none;
  }

  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-brand-page {
    --home-container: calc(100vw - 32px);
  }

  body.home-brand-page .nav-right {
    display: none;
  }

  body.home-brand-page .brand-logo-img {
    height: 34px;
  }

  body.home-brand-page .brand-hero {
    padding: 30px 0 24px;
  }

  body.home-brand-page .brand-hero h1 {
    max-width: none;
    font-size: clamp(30px, 7.6vw, 38px);
  }

  body.home-brand-page .brand-hero h1 > span {
    white-space: normal;
  }

  body.home-brand-page .brand-hero-lead {
    font-size: 14px;
  }

  body.home-brand-page .miniapp-entry-card {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .miniapp-entry {
    min-height: 0;
  }

  body.home-brand-page .miniapp-entry + .miniapp-entry {
    border-left: 0;
    border-top: 1px solid var(--home-line);
  }

  body.home-brand-page .brand-video-card {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  body.home-brand-page .video-play {
    width: 66px;
    height: 66px;
  }

  body.home-brand-page .video-copy {
    left: 18px;
    right: 18px;
    bottom: 104px;
  }

  body.home-brand-page .video-copy h2 {
    font-size: 26px;
  }

  body.home-brand-page .video-trust {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-brand-page .video-trust span {
    display: none;
  }

  body.home-brand-page .video-trust span:first-child {
    display: block;
  }

  body.home-brand-page .home-services > .wrap {
    padding: 20px;
    border-radius: 22px;
  }

  body.home-brand-page #svcGrid .scene-service-card {
    min-height: 0;
    grid-template-rows: 176px 1fr;
  }

  body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
  body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
    height: 176px;
  }

  body.home-brand-page .home-trust-grid,
  body.home-brand-page .home-step-list,
  body.home-brand-page .service-project-grid {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .home-trust-card,
  body.home-brand-page .home-trust-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  body.home-brand-page .home-trust-card:last-child {
    border-bottom: 0;
  }

  body.home-brand-page .home-local-channel,
  body.home-brand-page .home-join-shell {
    padding: 22px;
    border-radius: 22px;
  }

  body.home-brand-page .local-channel-visual {
    min-height: 112px;
  }

  body.home-brand-page .home-local-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  body.home-brand-page .home-local-channel > .btn-red {
    width: 100%;
    justify-self: stretch;
  }

  body.home-brand-page .home-step {
    min-height: 0;
  }

  body.home-brand-page .home-join .cta-btns,
  body.home-brand-page .service-card-actions,
  body.home-brand-page #svcGrid .hot-scene-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  body.home-brand-page .home-join .cta-btns .btn {
    width: 100%;
  }

  body.home-brand-page .ft-miniapp {
    justify-self: start;
  }
}

/* Hero first-screen cleanup: make the video card visual-first and reduce copy density. */
body.home-brand-page .brand-hero {
  padding-top: 38px;
  padding-bottom: 18px;
}

body.home-brand-page .brand-hero-lead {
  max-width: 600px;
  margin-top: 14px;
  color: #6f5b52;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

body.home-brand-page .miniapp-entry-card {
  margin-top: 22px;
}

body.home-brand-page .miniapp-entry p {
  font-weight: 500;
}

body.home-brand-page .qr-card .entry-note {
  color: #9a8376;
  font-size: 12px;
  font-weight: 400;
}

body.home-brand-page .hero-video-column {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  align-self: start;
}

body.home-brand-page .hero-video-column .brand-video-card {
  max-width: none;
}

body.home-brand-page .brand-video-card {
  height: clamp(430px, 27vw, 470px);
  max-height: 470px;
  aspect-ratio: auto;
}

body.home-brand-page .brand-video-card > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

body.home-brand-page .brand-video-card::after {
  background: linear-gradient(
    180deg,
    rgba(42, 23, 17, .04) 0%,
    rgba(42, 23, 17, .12) 48%,
    rgba(42, 23, 17, .58) 100%
  );
}

body.home-brand-page .video-copy {
  left: 36px;
  right: 36px;
  bottom: 32px;
}

body.home-brand-page .video-copy h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

body.home-brand-page .video-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  line-height: 1.5;
}

body.home-brand-page .video-trust {
  display: none !important;
}

body.home-brand-page .hero-video-trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.home-brand-page .hero-video-trust-item {
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(120, 70, 40, .08);
  box-shadow: 0 10px 26px rgba(80, 40, 20, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5a3b2e;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

body.home-brand-page .hero-video-trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff1e6;
  color: #ff5a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
}

body.home-brand-page .home-services {
  padding-top: 12px;
}

@media (max-width: 1320px) {
  body.home-brand-page .hero-video-column {
    max-width: 860px;
  }
}

@media (max-width: 980px) {
  body.home-brand-page .brand-video-card {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  body.home-brand-page .brand-hero {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  body.home-brand-page .brand-hero-lead {
    font-size: 14px;
    line-height: 1.7;
  }

  body.home-brand-page .brand-video-card {
    aspect-ratio: 16 / 10;
  }

  body.home-brand-page .video-copy {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  body.home-brand-page .video-copy h2 {
    font-size: 26px;
  }

  body.home-brand-page .video-copy p {
    font-size: 13px;
  }

  body.home-brand-page .hero-video-trust {
    gap: 8px;
  }

  body.home-brand-page .hero-video-trust-item {
    height: 46px;
    gap: 6px;
    font-size: 12px;
  }

  body.home-brand-page .hero-video-trust-icon {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  body.home-brand-page .home-services {
    padding-top: 12px;
  }
}

/* Homepage icon unification and card alignment polish. */
body.home-brand-page .entry-icon,
body.home-brand-page .home-trust-icon,
body.home-brand-page .step-icon-wrap,
body.home-brand-page .hero-video-trust-icon {
  background: #fff1e6;
  color: #ff5a2a;
}

body.home-brand-page .entry-icon svg,
body.home-brand-page .home-trust-icon svg,
body.home-brand-page .step-icon-wrap svg,
body.home-brand-page .hero-video-trust-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home-brand-page .entry-icon svg path:first-child:nth-last-child(n + 5),
body.home-brand-page .entry-icon svg path {
  fill: none;
}

body.home-brand-page .miniapp-entry-card {
  align-items: stretch;
}

body.home-brand-page .miniapp-entry {
  min-height: 0;
  padding: 16px 18px;
  gap: 10px;
}

body.home-brand-page .miniapp-entry h2 {
  margin-top: 7px;
}

body.home-brand-page .miniapp-entry p {
  margin-top: 6px;
  line-height: 1.56;
}

body.home-brand-page .provider-entry {
  justify-content: flex-start;
}

body.home-brand-page .provider-entry .entry-actions {
  margin-top: 18px;
}

body.home-brand-page .miniapp-entry .btn-red {
  min-height: 40px;
}

body.home-brand-page .qr-card {
  margin-top: 6px;
}

body.home-brand-page .home-trust-icon svg {
  width: 24px;
  height: 24px;
}

body.home-brand-page .home-trust-icon svg path,
body.home-brand-page .home-trust-icon svg rect,
body.home-brand-page .home-trust-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home-brand-page .home-step {
  min-height: 144px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(120, 70, 40, .06);
  box-shadow: 0 12px 30px rgba(80, 40, 20, .06);
}

body.home-brand-page .home-step .step-badge,
body.home-brand-page .home-step > span:first-child {
  width: 78px !important;
  max-width: 78px !important;
  flex: 0 0 78px;
  min-width: 78px;
  min-height: 42px !important;
  height: 42px !important;
  max-height: 42px !important;
  aspect-ratio: auto !important;
  line-height: 1 !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff5a2a;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

body.home-brand-page .step-icon-wrap {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px !important;
  min-width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff1e6 !important;
  color: #ff5a2a !important;
  flex: 0 0 52px;
}

body.home-brand-page .step-icon-wrap svg {
  width: 25px;
  height: 25px;
}

body.home-brand-page .home-step strong {
  margin-top: 24px;
  color: #2a1711;
  font-size: 18px;
  font-weight: 800;
}

body.home-brand-page .home-step p {
  margin-top: 10px;
  color: #6f5b52;
  font-size: 14px;
  line-height: 1.65;
}

body.home-brand-page .home-step:not(:last-child)::after {
  right: -20px;
  width: 18px;
  height: 18px;
  border-top-color: rgba(255, 90, 42, .34);
  border-right-color: rgba(255, 90, 42, .34);
}

body.home-brand-page #svcGrid .scene-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 432px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo {
  flex: 0 0 198px;
}

body.home-brand-page #svcGrid .hot-service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 234px;
}

body.home-brand-page #svcGrid .hot-scene-summary {
  min-height: 46px;
}

body.home-brand-page #svcGrid .hot-service-tags {
  min-height: 30px;
}

body.home-brand-page #svcGrid .hot-scene-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

body.home-brand-page .service-project-card {
  height: 100%;
}

body.home-brand-page .service-project-card .home-service-copy {
  min-height: 174px;
}

body.home-brand-page .service-project-card .home-service-copy p {
  min-height: 40px;
}

body.home-brand-page .service-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

body.home-brand-page .local-channel-visual {
  min-height: 112px;
}

body.home-brand-page .local-channel-visual span {
  font-size: 0 !important;
}

body.home-brand-page .home-local-tags span {
  min-height: 32px;
  border-radius: 999px;
  color: #ff5a2a;
}

body.home-brand-page .home-join-shell {
  align-items: center;
}

body.home-brand-page .home-join-shell::after {
  width: 210px;
  height: 98px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 90, 42, .16), transparent 20%),
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.52)),
    url("../assets/home-cta-sitter-dog.png") center / cover no-repeat;
}

body.home-brand-page .btn,
body.home-brand-page button,
body.home-brand-page .service-link,
body.home-brand-page .service-cta {
  transition: all 160ms ease;
}

@media (max-width: 980px) {
  body.home-brand-page .home-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body.home-brand-page .miniapp-entry {
    padding: 18px;
  }

  body.home-brand-page .provider-entry .entry-actions {
    margin-top: 18px;
  }

  body.home-brand-page .home-step {
    min-height: 0;
  }

  body.home-brand-page .home-step strong {
    margin-top: 20px;
  }
}

/* Homepage final target restore: 1600px canvas, in-video trust bar, stronger catalog CTAs. */
body.home-brand-page {
  --home-container: min(1600px, calc(100vw - 96px));
  --home-text: #2a1711;
  --home-muted: #6f5b52;
  --home-orange: #ff5a2a;
  --home-orange-hover: #e94a20;
  --home-orange-soft: #fff1e6;
  --home-line: rgba(120, 70, 40, .06);
  --home-soft-shadow: 0 12px 30px rgba(80, 40, 20, .07);
}

body.home-brand-page .home-container,
body.home-brand-page .wrap,
body.home-brand-page .home-services > .wrap,
body.home-brand-page .home-join-shell {
  width: var(--home-container);
  max-width: none;
}

body.home-brand-page .nav-inner {
  width: var(--home-container);
  height: 72px;
  min-height: 72px;
}

body.home-brand-page .nav-links {
  gap: 38px;
}

body.home-brand-page .nav-right .btn-ghost {
  background: #fff;
  border-color: rgba(255, 90, 42, .42);
  color: var(--home-orange);
}

body.home-brand-page .nav-right .btn-red {
  background: var(--home-orange);
  border-color: var(--home-orange);
}

body.home-brand-page .brand-hero {
  padding-top: 38px;
  padding-bottom: 24px;
}

body.home-brand-page .brand-hero-grid {
  grid-template-columns: minmax(640px, .9fr) minmax(780px, 1.1fr);
  gap: 56px;
  align-items: start;
}

body.home-brand-page .brand-hero-copy {
  max-width: 680px;
}

body.home-brand-page .brand-hero h1 {
  max-width: 680px;
}

body.home-brand-page .brand-hero-lead {
  max-width: 600px;
  font-weight: 500;
}

body.home-brand-page .miniapp-entry-card {
  max-width: 680px;
  border-radius: 22px;
}

body.home-brand-page .miniapp-entry {
  padding: 18px 20px;
}

body.home-brand-page .provider-entry .entry-actions {
  margin-top: 24px;
  gap: 14px;
}

body.home-brand-page .hero-video-column {
  max-width: 840px;
}

body.home-brand-page .brand-video-card {
  width: 100%;
  max-width: 840px;
  min-height: 430px;
  height: clamp(430px, 27vw, 470px);
  max-height: 470px;
  aspect-ratio: auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(80, 40, 20, .16);
}

body.home-brand-page .brand-video-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.home-brand-page .brand-video-card::after {
  background: linear-gradient(
    180deg,
    rgba(42, 23, 17, .04) 0%,
    rgba(42, 23, 17, .12) 48%,
    rgba(42, 23, 17, .58) 100%
  );
}

body.home-brand-page .video-copy {
  left: 36px;
  right: 36px;
  bottom: 84px;
}

body.home-brand-page .video-copy h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

body.home-brand-page .video-copy p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}

body.home-brand-page .video-trust {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 72px;
  padding: 14px 28px;
  background: rgba(42, 23, 17, .46);
  backdrop-filter: blur(6px);
}

body.home-brand-page .video-trust span {
  position: static;
  padding: 0;
}

body.home-brand-page .video-trust span::before {
  content: none !important;
  display: none !important;
}

body.home-brand-page .video-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
}

body.home-brand-page .video-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .16);
  padding-right: 14px;
}

body.home-brand-page .video-trust-item:not(:first-child) {
  padding-left: 14px;
}

body.home-brand-page .video-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  color: #fff;
}

body.home-brand-page .video-trust-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home-brand-page .video-trust-title {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

body.home-brand-page .video-trust-desc {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.3;
  font-style: normal;
}

body.home-brand-page .hero-video-trust {
  display: none !important;
}

body.home-brand-page .home-services {
  padding-top: 16px;
}

body.home-brand-page .home-services > .wrap {
  width: var(--home-container);
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 241, .96), rgba(255, 242, 228, .78));
  border: 1px solid rgba(120, 70, 40, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

body.home-brand-page #svcGrid .scene-service-card {
  min-height: 432px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo,
body.home-brand-page #svcGrid .scene-service-card .home-service-photo img {
  height: 200px;
}

body.home-brand-page #svcGrid .scene-service-card .home-service-photo {
  flex-basis: 200px;
}

body.home-brand-page #svcGrid .hot-service-body {
  min-height: 232px;
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary {
  background: var(--home-orange);
  border-color: var(--home-orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 90, 42, .2);
}

body.home-brand-page #svcGrid .hot-scene-actions .btn-primary:hover {
  background: var(--home-orange-hover);
  border-color: var(--home-orange-hover);
}

body.home-brand-page .home-trust-grid {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 32px rgba(80, 40, 20, .07);
}

body.home-brand-page .home-trust-card:hover {
  background: transparent;
  box-shadow: none;
}

body.home-brand-page .local-channel-section,
body.home-brand-page .home-steps,
body.home-brand-page .home-featured,
body.home-brand-page .home-join {
  padding-left: 0;
  padding-right: 0;
}

body.home-brand-page .home-local-channel {
  width: 100%;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .72fr) minmax(360px, .9fr);
}

body.home-brand-page .local-channel-visual {
  min-height: 124px;
  transform: scale(1.04);
}

body.home-brand-page .home-steps-shell {
  width: var(--home-container);
  grid-template-columns: 360px minmax(0, 1fr);
}

body.home-brand-page .home-step {
  min-height: 150px;
  padding: 22px 24px;
}

body.home-brand-page .home-step:not(:last-child)::after {
  right: -23px;
  border-top-color: rgba(255, 90, 42, .42);
  border-right-color: rgba(255, 90, 42, .42);
}

body.home-brand-page .service-project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

body.home-brand-page .service-project-card {
  min-height: 310px;
  box-shadow: 0 12px 30px rgba(80, 40, 20, .07);
}

body.home-brand-page .service-project-card .home-service-photo,
body.home-brand-page .service-project-card .home-service-photo img {
  height: 136px;
}

body.home-brand-page .service-project-card .home-service-copy {
  padding: 14px;
}

body.home-brand-page .service-link {
  background: #fff;
  color: var(--home-text);
  border: 1px solid rgba(120, 70, 40, .14);
}

body.home-brand-page .service-cta {
  background: var(--home-orange);
  color: #fff;
  border: 1px solid var(--home-orange);
  box-shadow: 0 8px 18px rgba(255, 90, 42, .18);
}

body.home-brand-page .service-cta:hover {
  background: var(--home-orange-hover);
  border-color: var(--home-orange-hover);
}

body.home-brand-page .home-join-shell {
  width: var(--home-container);
  min-height: 150px;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, .72fr) minmax(340px, .72fr);
  align-items: center;
}

body.home-brand-page .home-join-shell::after {
  width: 240px;
  height: 108px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.5)),
    url("../assets/home-cta-sitter-dog.png") center / cover no-repeat;
}

body.home-brand-page .home-join .cta-btns {
  align-self: center;
}

@media (max-width: 1500px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: minmax(580px, .95fr) minmax(700px, 1.05fr);
  }
}

@media (max-width: 1320px) {
  body.home-brand-page .brand-hero-grid,
  body.home-brand-page .home-local-channel,
  body.home-brand-page .home-join-shell {
    grid-template-columns: 1fr;
  }

  body.home-brand-page .hero-video-column,
  body.home-brand-page .brand-video-card {
    max-width: 860px;
  }

  body.home-brand-page .home-join-shell::after {
    display: none;
  }
}

@media (max-width: 980px) {
  body.home-brand-page {
    --home-container: calc(100vw - 40px);
  }

  body.home-brand-page .brand-video-card {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  body.home-brand-page .video-copy {
    bottom: 90px;
  }

  body.home-brand-page .video-trust {
    padding: 12px 16px;
  }

  body.home-brand-page .video-trust-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.home-brand-page .video-trust-title {
    font-size: 13px;
  }

  body.home-brand-page .video-trust-desc {
    font-size: 11px;
  }

  body.home-brand-page .service-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-brand-page {
    --home-container: calc(100vw - 32px);
  }

  body.home-brand-page .brand-video-card {
    aspect-ratio: 16 / 10;
  }

  body.home-brand-page .video-copy {
    bottom: 22px;
  }

  body.home-brand-page .video-trust {
    display: none !important;
  }

  body.home-brand-page .home-services > .wrap {
    padding: 20px;
  }

  body.home-brand-page .service-project-grid {
    grid-template-columns: 1fr;
  }
}

/* Final homepage visual lock: keep header width aligned and prevent legacy video-trust rules from stretching the new bar. */
body.home-brand-page .nav-inner {
  width: var(--home-container) !important;
  max-width: none !important;
}

body.home-brand-page .brand-video-card .video-trust {
  height: 72px;
  min-height: 72px;
  padding: 10px 28px;
  align-items: center;
}

body.home-brand-page .brand-video-card .video-trust > .video-trust-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  line-height: normal;
}

body.home-brand-page .brand-video-card .video-trust > .video-trust-item:first-child {
  padding-left: 0 !important;
}

body.home-brand-page .brand-video-card .video-trust > .video-trust-item:last-child {
  padding-right: 0 !important;
}

body.home-brand-page .brand-video-card .video-trust > .video-trust-item::before,
body.home-brand-page .brand-video-card .video-trust > .video-trust-item > span::before,
body.home-brand-page .brand-video-card .video-trust span::before {
  content: none !important;
  display: none !important;
}

body.home-brand-page .brand-video-card .video-trust > .video-trust-item > span {
  display: block !important;
  min-width: 0;
  padding: 0 !important;
  line-height: normal;
}

@media (max-width: 760px) {
  body.home-brand-page .brand-video-card {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  body.home-brand-page .video-play {
    top: 40% !important;
    left: 50% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
  }

  body.home-brand-page .video-copy {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  body.home-brand-page .video-copy h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  body.home-brand-page .video-copy p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  body.home-brand-page .brand-video-card .video-trust {
    display: none !important;
  }
}

/* Hero dual-entry balance: right identity card matches the owner's QR visual weight. */
body.home-brand-page .provider-entry {
  gap: 14px;
}

body.home-brand-page .provider-type-card {
  margin-top: 0;
  padding: 13px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 241, 230, .92), rgba(255, 248, 242, .94));
  border: 1px solid rgba(255, 90, 42, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

body.home-brand-page .provider-type-card strong {
  display: block;
  color: #2a1711;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

body.home-brand-page .provider-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

body.home-brand-page .provider-type-tags button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 90, 42, .16);
  color: #6f5b52;
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: all 160ms ease;
}

body.home-brand-page .provider-type-tags button:hover {
  background: #fff8f2;
  border-color: rgba(255, 90, 42, .28);
  color: #ff5a2a;
}

body.home-brand-page .provider-type-tags button.is-selected,
body.home-brand-page .provider-type-tags button[aria-checked="true"] {
  background: #fff1e6;
  border-color: #ff5a2a;
  color: #ff5a2a;
  box-shadow: 0 8px 18px rgba(255, 90, 42, .12);
}

body.home-brand-page .provider-type-tags button[aria-checked="true"]::before {
  content: "✓";
  margin-right: 5px;
  font-size: 11px;
  font-weight: 900;
}

body.home-brand-page .provider-type-card p {
  margin: 9px 0 0;
  color: #9a8376;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

body.home-brand-page .provider-entry .entry-actions {
  margin-top: 2px;
  gap: 10px;
}

body.home-brand-page .provider-entry .provider-next-btn {
  width: auto;
  min-width: 180px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
}

body.home-brand-page .provider-entry .provider-next-btn:disabled {
  background: #f3eee9;
  border-color: #eadfd7;
  color: #a9978c;
  box-shadow: none;
  cursor: not-allowed;
}

@media (max-width: 760px) {
  body.home-brand-page .provider-type-card {
    padding: 14px;
  }

  body.home-brand-page .provider-entry .provider-next-btn {
    width: 100%;
  }
}
/* Public website consistency layer */
:root {
  --brand-orange: #ff5a2a;
  --brand-orange-hover: #e94a20;
  --text-primary: #2a1711;
  --text-secondary: #6f5b52;
  --page-bg: #fff8ef;
  --surface: #ffffff;
  --surface-soft: #fff1e6;
  --border-soft: rgba(120, 70, 40, 0.08);
  --shadow-card: 0 12px 32px rgba(80, 40, 20, 0.08);
  --radius-card: 18px;
  --radius-large: 24px;
  --site-max: 1600px;
}

.site-container {
  width: min(var(--site-max), calc(100vw - 96px));
  margin-inline: auto;
}

[id] { scroll-margin-top: 88px; }

.nav { height: 72px; background: rgba(255, 252, 247, .96); border-bottom: 1px solid var(--border-soft); }
.nav .nav-inner { height: 72px; min-height: 72px; }
.nav .brand-logo-img { width: 132px; height: 52px; object-fit: contain; }
.nav-links { gap: 30px; }
.nav-links a { color: var(--text-primary); font-size: 14px; font-weight: 700; }
.nav-links a.on, .nav-links a:hover { color: var(--brand-orange); }
.public-nav-actions { gap: 12px; }
.public-nav-actions .btn { min-height: 42px; padding-inline: 20px; border-radius: 12px; }
.btn.btn-red { background: var(--brand-orange); border-color: var(--brand-orange); }
.btn.btn-red:hover { background: var(--brand-orange-hover); border-color: var(--brand-orange-hover); }
.btn.btn-ghost:hover { background: var(--surface-soft); border-color: var(--brand-orange); color: var(--brand-orange); }
.btn, button, a { transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(255, 90, 42, .28);
  outline-offset: 3px;
}

.public-footer { background: #2a1b17; color: rgba(255,255,255,.72); }
.public-footer .brand-ft-grid { grid-template-columns: 1.55fr .85fr .75fr .8fr auto; gap: 48px; align-items: start; }
.public-footer .ft-brand p { max-width: 360px; color: rgba(255,255,255,.64); }
.public-footer .brand-logo-img { width: 132px; height: 52px; object-fit: contain; filter:none; }
.public-footer .ft-miniapp { display: grid; justify-items: center; gap: 10px; text-align: center; font-size: 12px; line-height: 1.5; }
.public-footer .miniapp-qr-img-dark { width: 92px; height: 92px; border-radius: 10px; background: #fff; padding: 4px; }

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .public-nav-actions .btn { padding-inline: 14px; }
  .public-footer .brand-ft-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .public-footer .ft-miniapp { grid-column: 1 / -1; justify-self: start; grid-auto-flow: column; align-items: center; text-align: left; }
}

@media (max-width: 768px) {
  .site-container { width: calc(100vw - 32px); }
  .nav .nav-inner { justify-content: space-between; }
  body .nav .nav-toggle { display: inline-flex; order: 2 !important; }
  body .nav .nav-logo { order: 1 !important; }
  .nav .nav-links, .nav .public-nav-actions { display: none; }
  .nav-mobile-shell { display: block; }
  .nav-mobile { max-height: calc(100vh - 72px); overflow-y: auto; }
  .public-footer .brand-ft-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .public-footer .ft-brand, .public-footer .ft-miniapp { grid-column: 1 / -1; }
  .public-footer .ft-miniapp { justify-self: start; }
}

@media (max-width: 480px) {
  .public-footer .brand-ft-grid { grid-template-columns: 1fr; }
  .public-footer .ft-brand, .public-footer .ft-miniapp { grid-column: auto; }
  .public-footer .ft-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Homepage target proportions and stable responsive grids */
body.home-brand-page .brand-hero > .wrap,
body.home-brand-page main > section > .wrap,
body.home-brand-page footer > .site-container {
  width: min(var(--site-max), calc(100vw - 96px)) !important;
  max-width: none !important;
}
body.home-brand-page .brand-hero { padding: 38px 0 24px; }
body.home-brand-page .brand-hero-grid {
  grid-template-columns: minmax(620px, .9fr) minmax(760px, 1.1fr);
  gap: 52px;
  align-items: stretch;
}
body.home-brand-page .brand-hero-copy,
body.home-brand-page .hero-video-column { min-width: 0; }
body.home-brand-page .hero-video-column { display: flex; }
body.home-brand-page .brand-video-card {
  width: 100%;
  max-width: none;
  min-height: 420px;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 10;
  align-self: stretch;
  border-radius: 22px;
}
body.home-brand-page .miniapp-entry-card { width: 100%; max-width: 700px; }
body.home-brand-page .provider-entry { justify-content: flex-start; }
body.home-brand-page .provider-entry .entry-actions { margin-top: 12px; }
body.home-brand-page .home-service-card,
body.home-brand-page .service-project-card { height: 100%; }

@media (max-width: 1500px) {
  body.home-brand-page .brand-hero-grid {
    grid-template-columns: minmax(560px, .94fr) minmax(650px, 1.06fr);
    gap: 40px;
  }
}
@media (max-width: 1240px) {
  body.home-brand-page .brand-hero-grid { grid-template-columns: 1fr; }
  body.home-brand-page .brand-video-card { max-width: 900px; }
}
@media (min-width: 1600px) {
  body.home-brand-page .service-project-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (min-width: 1024px) and (max-width: 1599px) {
  body.home-brand-page .service-project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 600px) and (max-width: 1023px) {
  body.home-brand-page .service-project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  body.home-brand-page .brand-hero > .wrap,
  body.home-brand-page main > section > .wrap,
  body.home-brand-page footer > .site-container { width: calc(100vw - 32px) !important; }
  body.home-brand-page .brand-hero { padding: 24px 0 18px; overflow: clip; }
  body.home-brand-page .brand-hero-grid { gap: 24px; }
  body.home-brand-page .miniapp-entry-card { width: 100%; min-width: 0; }
  body.home-brand-page .provider-type-tags { display: grid; grid-template-columns: 1fr; }
  body.home-brand-page .brand-video-card { min-height: 0; aspect-ratio: 16 / 10; }
  body.home-brand-page .home-steps-shell { grid-template-columns:minmax(0,1fr); gap:20px; }
  body.home-brand-page .home-step-list { width:100%; min-width:0; grid-template-columns:minmax(0,1fr); }
}
@media (max-width: 599px) {
  body.home-brand-page .service-project-grid { grid-template-columns: 1fr; }
}

/* Help center: warm public-site treatment without placeholder artwork */
body.help-page { background:var(--page-bg); color:var(--text-primary); }
body.help-page.role-sitter,
body.help-page.role-parent { --role-main:var(--brand-orange); --role-main-dark:var(--brand-orange-hover); --role-soft:var(--surface-soft); --role-wash:#fff8f2; --role-border:rgba(255,90,42,.22); }
body.help-page .help-hero { background:linear-gradient(135deg,#fffaf4,#fff1e6); padding:58px 0 50px; }
body.help-page .help-hero h1,
body.help-page .section-heading,
body.help-page .faq-title { color:var(--text-primary); }
body.help-page .help-hero p { color:var(--text-secondary); }
body.help-page .help-search-wrap { border:1px solid var(--border-soft); box-shadow:var(--shadow-card); }
body.help-page .help-search-wrap button { background:var(--brand-orange); }
body.help-page .help-search-wrap button:hover { background:var(--brand-orange-hover); }
body.help-page .role-section { background:transparent; }
body.help-page .role-btn::before { display:none; content:none; }
body.help-page .role-line-icon { display:grid; place-items:center; width:30px; height:30px; border-radius:10px; background:var(--surface-soft); color:var(--brand-orange); }
body.help-page .role-line-icon svg { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
body.help-page .role-btn.active .role-line-icon { background:rgba(255,255,255,.2); color:#fff; }
body.help-page .help-body { max-width:1280px; padding-bottom:64px; }
body.help-page .help-sidebar { top:92px; border-color:var(--border-soft); border-radius:var(--radius-card); box-shadow:0 10px 28px rgba(80,40,20,.05); }
body.help-page .learn-card { background:#fff; border:1px solid var(--border-soft); border-radius:18px; padding:12px 12px 18px; box-shadow:0 10px 28px rgba(80,40,20,.05); }
body.help-page .learn-card-img { border-radius:13px; }
body.help-page .help-article-art { display:grid; place-items:center; background:linear-gradient(135deg,#fff1e6,#fff8ef); color:var(--brand-orange); }
body.help-page .help-article-art span { display:grid; place-items:center; width:54px; height:54px; border-radius:18px; background:#fff; box-shadow:0 10px 22px rgba(80,40,20,.08); }
body.help-page .help-article-art svg { width:28px; height:28px; }
body.help-page .faq-card { padding:18px; border:1px solid var(--border-soft); border-radius:14px; background:#fff; }
body.help-page .no-result { max-height:160px; padding:34px 20px; border:1px dashed rgba(255,90,42,.25); border-radius:16px; background:#fffaf6; }
body.help-page .contact-section { margin-top:40px; padding:36px; background:linear-gradient(135deg,#fff1e6,#fff8f2); border:1px solid var(--border-soft); }
body.help-page .contact-btn.primary { background:var(--brand-orange); }
body.help-page .contact-btn.primary:hover { background:var(--brand-orange-hover); }
body.help-article-page { background:var(--page-bg); color:var(--text-primary); }
body.help-article-page .article-hero { background:linear-gradient(135deg,#fffaf4,#fff1e6); }
body.home-brand-page .home-flow{display:flex;flex-direction:column}body.home-brand-page .home-services{order:1}body.home-brand-page .home-featured{order:2}body.home-brand-page .home-steps{order:3}body.home-brand-page .local-channel-section{order:4}body.home-brand-page .home-join{order:5}
body.home-brand-page .home-services,body.home-brand-page .home-featured,body.home-brand-page .home-steps,body.home-brand-page .local-channel-section{box-shadow:none}
body.home-brand-page .home-trust-card{box-shadow:none!important;background:transparent!important}body.home-brand-page .home-step{box-shadow:none!important}
@media(min-width:1600px){body.home-brand-page .service-project-grid{grid-template-columns:repeat(6,minmax(0,1fr))}}
@media(min-width:1200px) and (max-width:1599px){body.home-brand-page .service-project-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(min-width:768px) and (max-width:1199px){body.home-brand-page .service-project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:767px){body.home-brand-page .service-project-grid{grid-template-columns:1fr}}

/* Independent provider application */
.provider-form-page{background:var(--page-bg);color:var(--text-primary)}.provider-form-page [hidden]{display:none!important}.provider-form-step h2:focus{outline:none}
.provider-apply-shell{padding-block:40px 64px}.provider-form-head{max-width:760px;margin-bottom:28px}.provider-form-head h1{font-size:clamp(36px,4vw,52px);line-height:1.1;margin:12px 0}.provider-form-head p,.step-intro{color:var(--text-secondary);line-height:1.7}
.provider-progress{display:grid;grid-template-columns:repeat(5,1fr);list-style:none;padding:0;margin:0 0 24px;background:#fff;border:1px solid var(--border-soft);border-radius:16px;overflow:hidden}.provider-progress li{position:relative;display:flex;align-items:center;justify-content:center;gap:9px;min-height:64px;color:#9a8376;font-weight:650}.provider-progress li:not(:last-child){border-right:1px solid var(--border-soft)}.provider-progress b{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#f4eee9}.provider-progress .active{color:var(--brand-orange);background:#fff8f2}.provider-progress .active b,.provider-progress .done b{background:var(--brand-orange);color:#fff}
.provider-form-layout{display:grid;grid-template-columns:minmax(0,820px) minmax(280px,340px);gap:28px;align-items:start}.provider-form-panel,.provider-summary{background:#fff;border:1px solid var(--border-soft);border-radius:24px}.provider-form-panel{padding:32px}.provider-summary{position:sticky;top:96px;padding:24px}.provider-form-step h2,.provider-summary h2{font-size:26px;margin-bottom:10px}.provider-form-step[hidden]{display:none!important}
.apply-fields{display:grid;gap:20px;margin-top:24px}.two-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.full{grid-column:1/-1}.apply-fields label,.apply-fields fieldset{display:grid;gap:8px;font-size:14px;font-weight:650}.apply-fields i,.upload-card i{color:var(--brand-orange);font-style:normal}.apply-fields input,.apply-fields textarea,.apply-fields select,.human-check input{width:100%;min-height:46px;padding:11px 13px;border:1px solid #ded4cd;border-radius:12px;background:#fff;font:inherit;color:var(--text-primary)}.apply-fields textarea{min-height:120px;resize:vertical}.apply-fields fieldset{border:0;padding:0;margin:0}.check-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.check-grid label{display:flex;align-items:center;gap:8px;min-height:42px;padding:8px 12px;border:1px solid var(--border-soft);border-radius:12px;background:#fffaf7}.check-grid input{width:auto;min-height:0}.form-note{margin-top:18px;padding:12px 14px;border-radius:12px;background:#fff8f2;color:#806b60;font-size:13px;line-height:1.6}
.apply-choice-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:22px}.apply-choice-grid label{cursor:pointer}.apply-choice-grid input{position:absolute;opacity:0}.apply-choice-grid span{display:block;height:100%;min-height:112px;padding:18px;border:1.5px solid #e2d8d1;border-radius:16px;background:#fff}.apply-choice-grid strong,.apply-choice-grid em{display:block}.apply-choice-grid strong{font-size:17px}.apply-choice-grid em{margin-top:8px;color:var(--text-secondary);font-size:13px;line-height:1.55;font-style:normal}.apply-choice-grid input:checked+span{border-color:var(--brand-orange);background:var(--surface-soft);box-shadow:inset 0 0 0 1px var(--brand-orange)}.apply-choice-grid input:focus-visible+span{outline:3px solid rgba(255,90,42,.28);outline-offset:3px}
.upload-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.upload-card{padding:18px;border:1px dashed rgba(255,90,42,.35);border-radius:16px;background:#fffaf7}.upload-card p{margin:6px 0 12px;color:#8d776b;font-size:12px}.upload-preview{display:grid;place-items:center;min-height:140px;margin-top:12px;border-radius:14px;background:#f5eee8;color:#9a8376}.upload-preview img{width:128px;height:128px;border-radius:50%;object-fit:cover}.photo-preview{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:12px}.photo-preview img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px}.role-extra{margin-top:4px;padding:18px;border-radius:16px;background:#fff8f2}.role-extra h3{margin-bottom:14px}
.provider-form-actions{position:sticky;bottom:12px;z-index:4;display:flex;align-items:center;gap:10px;margin:30px -12px -12px;padding:14px;border:1px solid var(--border-soft);border-radius:16px;background:rgba(255,255,255,.96);box-shadow:0 12px 34px rgba(80,40,20,.1)}.provider-form-actions [data-next],.provider-form-actions [data-submit]{margin-left:auto}.provider-summary dl{display:grid;gap:8px}.provider-summary dt{margin-top:12px;color:#917c70;font-size:12px}.provider-summary dd{margin:0;font-weight:650}.summary-meter{height:8px;margin:7px 0;border-radius:99px;background:#eee4dd;overflow:hidden}.summary-meter span{display:block;height:100%;width:0;background:var(--brand-orange)}.summary-avatar{display:grid;place-items:center;min-height:150px;margin-top:20px;border-radius:16px;background:#fff8f2;color:#9a8376}.summary-avatar img{width:108px;height:108px;border-radius:50%;object-fit:cover}.apply-review dl{display:grid;grid-template-columns:130px 1fr;border:1px solid var(--border-soft);border-radius:16px;overflow:hidden}.apply-review dt,.apply-review dd{margin:0;padding:13px;border-bottom:1px solid var(--border-soft)}.apply-review dt{background:#fff8f2;font-weight:650}.human-check{display:flex;align-items:center;gap:14px;margin-top:22px}.agreement-check{display:flex;align-items:flex-start;gap:9px;margin-top:20px}.submit-status{margin-top:16px;color:#277a50}.submit-status.error{color:#b33b25}
@media(max-width:1000px){.provider-form-layout{grid-template-columns:1fr}.provider-summary{position:static;order:initial}.provider-summary dl{grid-template-columns:repeat(2,1fr)}.summary-avatar{display:none}}
@media(max-width:700px){.provider-apply-shell{padding-top:24px}.provider-progress span{display:none}.provider-progress li{min-height:50px}.provider-form-panel{padding:20px 16px}.two-col,.apply-choice-grid,.upload-grid,.check-grid{grid-template-columns:1fr}.provider-form-actions{flex-wrap:wrap}.provider-form-actions .text-action{order:3;width:100%}.provider-summary dl{grid-template-columns:1fr}.human-check{align-items:flex-start;flex-direction:column}.apply-review dl{grid-template-columns:1fr}.apply-review dt{border-bottom:0}}
