:root {
  --ink: #18212f;
  --muted: #617084;
  --line: #dde5ef;
  --soft: #f5f7fa;
  --brand: #0f766e;
  --brand-2: #b45309;
  --accent: #2563eb;
  --danger: #b91c1c;
  --ok: #166534;
  --card: #ffffff;
  --shadow: 0 14px 32px rgba(24, 33, 47, .10);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .post-btn {
  border: 0;
  background: var(--brand);
  color: #fff;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
button:disabled { opacity: .55; cursor: not-allowed; background: #64748b; }
.warning-button { background: #b45309; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-wrap { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; }
.table-scroll-top {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  height: 18px;
  margin: 8px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.table-scroll-top div { height: 1px; }
.admin-scroll-table,
.username-table-wrap {
  max-height: min(62vh, 620px);
  overflow: auto;
  scrollbar-gutter: stable;
  border: 1px solid var(--line);
}
.admin-scroll-table table { min-width: 1280px; }
.username-table-wrap table { min-width: 980px; }
.username-table-wrap th,
.username-table-wrap td { white-space: nowrap; }
.username-table-wrap td:nth-child(3) { white-space: normal; min-width: 180px; }
.admin-scroll-table thead th,
.username-table-wrap thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.admin-toolbox { border: 1px solid var(--line); border-radius: 8px; padding: 14px; margin: 12px 0 18px; background: #fff; box-shadow: var(--soft-shadow); }
.admin-toolbox summary { cursor: pointer; font-weight: 900; color: var(--primary); }
.admin-toolbox table input, .admin-toolbox table textarea, .admin-toolbox table select { min-width: 150px; }
.admin-toolbox table textarea { min-height: 70px; }
.pagination { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 14px 0; }
.pagination a, .pagination span, .press-link {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #eef3f8);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -3px 0 rgba(15,23,42,.08), 0 8px 16px rgba(15,23,42,.08);
  font-weight: 900;
  padding: 0 11px;
}
.pagination a:hover, .press-link:hover { border-color: var(--brand); box-shadow: inset 0 2px 0 #fff, 0 0 0 3px rgba(15,118,110,.12), 0 10px 18px rgba(15,23,42,.12); }
.pagination a:active, .press-link:active { transform: translateY(1px); box-shadow: inset 0 4px 10px rgba(15,23,42,.14); }
.pagination a.active { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: inset 0 4px 10px rgba(0,0,0,.16); }
.pagination a.disabled { pointer-events: none; opacity: .45; }
.pagination .pager-arrow { font-size: 18px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; background: var(--ink); color: #fff; }
.brand-copy { display: grid; gap: 1px; line-height: 1.05; }
.brand-name { display: block; }
.brand-copy small {
  display: block;
  max-width: 220px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.desktop-search { flex: 1; display: grid; grid-template-columns: 150px 1fr 110px; gap: 8px; max-width: 760px; }
.desktop-nav { display: flex; align-items: center; gap: 16px; font-weight: 700; }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; padding: 10px 0; margin: -10px 0; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  display: none;
  z-index: 20;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, .14);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: grid; gap: 4px; }
.nav-dropdown-menu a { padding: 9px 10px; border-radius: 6px; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--soft); }
.submenu-link { padding-left: 20px; font-size: 14px; color: var(--muted); }
.auth-key-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #eef6f4);
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(15,23,42,.06);
}
.auth-key-link::before {
  content: "\1F511";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.auth-key-link:hover { border-color: var(--brand); }
.ip-city-menu {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 900;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  cursor: pointer;
}
.ip-city-menu::before {
  content: "\1F4CD";
  font-size: 14px;
  line-height: 1;
}
.hamburger { display: none; width: 44px; padding: 0; background: #eef3f8; color: var(--ink); }
.mobile-location-strip { display: none; }

.offcanvas {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 340px);
  max-height: 100dvh;
  z-index: 80;
  padding: 20px 20px 110px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.offcanvas.open { transform: translateX(0); }
.offcanvas a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
.offcanvas .ip-city-menu {
  width: 100%;
  justify-content: flex-start;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
}
.offcanvas .menu-location-change {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  text-align: left;
  border-radius: 7px;
  background: #f8fbff;
}
.offcanvas .menu-location-change::before { grid-row: 1 / span 2; align-self: center; }
.offcanvas .menu-location-change span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.offcanvas .menu-location-change b { color: var(--ink); font-size: 15px; }
.offcanvas .menu-location-change small { grid-column: 2; color: var(--brand); font-weight: 900; }
.offcanvas .mobile-auth-key {
  order: -1;
  margin: 4px 0 10px;
  justify-content: center;
  border: 1px solid rgba(15,118,110,.25);
  background: #eefdf8;
  color: var(--brand);
}
.offcanvas .submenu-link { padding: 10px 10px 10px 26px; font-size: 14px; color: var(--muted); background: #f8fafc; border-bottom-color: #eef2f7; }
.close-menu { align-self: flex-end; width: 44px; background: #eef3f8; color: var(--ink); padding: 0; }
.city-picker-modal[hidden] { display: none; }
.city-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, .52);
}
.city-picker-card {
  width: min(720px, 100%);
  max-height: min(760px, calc(100dvh - 36px));
  overflow: auto;
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.city-picker-card h2 { margin: 0; font-size: 30px; }
.city-picker-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.city-picker-current {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  background: #ecfdf5;
}
.city-picker-current span { color: var(--muted); font-weight: 800; }
.city-picker-current strong { color: var(--brand); }
.city-picker-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.city-picker-actions button,
.city-picker-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #d8e2ef;
  font-weight: 900;
  text-align: center;
}
.city-picker-actions button { background: #fff; color: var(--ink); }
.city-picker-actions a { background: var(--brand); color: #fff; }
.city-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.city-picker-grid button {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d8e2ef;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 -2px 0 rgba(15,23,42,.06);
  display: grid;
  gap: 2px;
  text-align: left;
}
.city-picker-grid button strong { font-size: 14px; }
.city-picker-grid button small { color: var(--muted); font-weight: 800; }
body.city-picker-open { overflow: hidden; }

.hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 44px clamp(16px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .86), rgba(15, 118, 110, .42)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='720' viewBox='0 0 1400 720'%3E%3Crect width='1400' height='720' fill='%2388a6b8'/%3E%3Cpath d='M0 520L180 430L360 470L540 340L720 390L900 260L1080 310L1260 190L1400 240V720H0Z' fill='%23444f5d'/%3E%3Cpath d='M90 390h180v210H90zM330 330h130v270H330zM560 280h190v320H560zM820 350h160v250H820zM1080 250h210v350h-210z' fill='%23eef3f8' opacity='.9'/%3E%3Cpath d='M115 420h36v36h-36zM175 420h36v36h-36zM355 365h28v28h-28zM405 365h28v28h-28zM595 320h36v36h-36zM660 320h36v36h-36zM855 385h32v32h-32zM910 385h32v32h-32zM1125 290h42v42h-42zM1200 290h42v42h-42z' fill='%232563eb'/%3E%3C/svg%3E") center/cover;
}
.hero-copy { width: min(920px, 100%); }
.eyebrow { margin: 0 0 8px; color: var(--brand-2); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.hero .eyebrow { color: #fbbf24; }
.hero h1 { margin: 0 0 22px; max-width: 860px; font-size: clamp(34px, 6vw, 68px); line-height: 1.02; }
.hero-subtitle { max-width: 760px; margin: -8px 0 22px; color: #e6f3f1; font-size: 19px; line-height: 1.5; font-weight: 700; }
.hero-search { display: grid; grid-template-columns: 170px 1fr 170px; gap: 10px; max-width: 900px; padding: 10px; border-radius: 8px; background: rgba(255, 255, 255, .96); }
.hero-search-hint { margin: 10px 0 0; color: #f8fafc; font-weight: 800; font-size: 14px; }
.city-hero { min-height: 430px; }
.city-hero p:not(.eyebrow) { max-width: 780px; font-size: 20px; color: #e6f3f1; }
.city-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.city-hero-actions a { min-height: 44px; display: inline-flex; align-items: center; border-radius: 8px; padding: 10px 14px; background: #fff; color: var(--brand); font-weight: 900; box-shadow: inset 0 -3px 0 rgba(15,118,110,.18); }

.quick-cats, .property-grid, .plan-grid, .section-head, .search-layout, .dashboard, .form-page, .auth-card, .property-detail, .profile-layout, .empty-state, .city-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
}
.city-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.city-property-grid { width: auto; margin: 18px 0 0; }
.city-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.city-highlights span { border: 1px solid #d8e2ef; border-radius: 6px; background: #f8fbff; color: #24364f; font-weight: 900; padding: 8px 10px; }
.city-enquiry { top: 92px; }
.city-builder-section { margin-top: 24px; }
.city-builder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.city-builder-card { display: grid; gap: 8px; }
.city-builder-card strong, .city-builder-card span { display: block; }
.city-builder-card span { color: var(--brand); font-weight: 900; }
.city-builder-card p { margin: 0; color: var(--muted); }
.builder-project-list { margin: 0; padding-left: 18px; color: #344256; font-size: 14px; line-height: 1.45; }
.content-page { width: min(920px, calc(100% - 32px)); margin: 32px auto; line-height: 1.75; }
.content-page h1 { font-size: 40px; margin-bottom: 12px; }
.content-page h2 { margin-top: 28px; }
.legal-page h2 { padding-top: 16px; border-top: 1px solid var(--line); }
.legal-page p { color: #344256; }
.about-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}
.about-hero-copy,
.about-founder-card,
.about-story-card,
.about-values article,
.about-promise {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.about-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(120deg, rgba(15,23,42,.90), rgba(15,118,110,.70)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  overflow: hidden;
}
.about-hero-copy .eyebrow { color: #a7f3d0; }
.about-hero-copy h1 { margin: 4px 0 14px; font-size: clamp(38px, 6vw, 68px); line-height: 1; letter-spacing: 0; }
.about-hero-copy p { max-width: 760px; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.65; }
.about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; align-items: center; }
.about-actions .press-link { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.10); }
.about-founder-card {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.about-founder-card span { color: var(--muted); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.about-founder-card strong { font-size: 34px; line-height: 1.05; color: var(--ink); }
.about-founder-card p { color: #475569; line-height: 1.6; }
.about-stats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.about-stats strong { display: block; font-size: 30px; color: var(--brand); line-height: 1; }
.about-stats span { display: block; margin-top: 6px; color: #475569; font-weight: 800; }
.about-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}
.about-story-card { padding: clamp(22px, 4vw, 38px); line-height: 1.78; }
.about-story-card p { color: #334155; }
.about-story-card p:first-of-type { font-size: 20px; color: var(--ink); font-weight: 800; }
.about-values { display: grid; gap: 14px; align-content: start; }
.about-values article { padding: 20px; }
.about-values span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eefdf8;
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 10px;
}
.about-values h2 { margin: 0 0 8px; font-size: 22px; }
.about-values p { margin: 0; color: #475569; line-height: 1.6; }
.about-promise {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  background: #0f172a;
  color: #fff;
}
.about-promise .eyebrow { color: #a7f3d0; }
.about-promise h2 { margin: 0; font-size: clamp(26px, 4vw, 42px); line-height: 1.1; }
.about-promise p { color: rgba(255,255,255,.82); line-height: 1.7; font-size: 17px; }
.quick-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 14px; }
.quick-cats a {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #eef6f4);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -4px 0 rgba(15,118,110,.10), 0 10px 20px rgba(15,23,42,.10);
  font-weight: 900;
  text-align: center;
  outline: 2px solid rgba(37,99,235,.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.quick-cats a:hover { border-color: var(--brand); box-shadow: inset 0 2px 0 #fff, 0 0 0 4px rgba(15,118,110,.12), 0 14px 28px rgba(15,23,42,.16); transform: translateY(-2px); }
.quick-cats a:active { transform: translateY(2px); box-shadow: inset 0 4px 10px rgba(15,23,42,.20); }
.quick-cats span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 18px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.section-head h1, .section-head h2 { margin: 0; font-size: 30px; }
.section-head.compact { width: auto; margin: 0 0 16px; align-items: center; }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.property-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #cdd8e6;
  border-radius: 7px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(24,33,47,.14), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .16s ease, box-shadow .16s ease;
  cursor: pointer;
}
.property-card:hover { transform: translateY(-3px); box-shadow: 0 22px 38px rgba(24,33,47,.18), 0 0 0 4px rgba(37,99,235,.08); }
.property-card:active { transform: translateY(1px); box-shadow: inset 0 6px 18px rgba(24,33,47,.14); }
.premium-card { border-color: #f59e0b; box-shadow: 0 18px 34px rgba(180,83,9,.18); }
.property-media {
  position: relative;
  height: 210px;
  min-height: 0;
  padding: 14px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(135deg, #1f2937, #0f766e 55%, #2563eb);
  background-position: center;
  background-size: cover;
}
.card-property-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.property-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.48), rgba(15,23,42,.10) 45%, rgba(15,23,42,.62)); }
.property-media span, .property-media b { position: relative; z-index: 1; }
.property-media b { background: #f59e0b; color: #111827; padding: 5px 8px; border-radius: 6px; font-size: 12px; margin-left: 6px; }
.property-body { padding: 16px; }
.listing-meta-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 9px; }
.listing-meta-row span { border: 1px solid #d8e2ef; border-radius: 6px; background: #f8fbff; color: #24364f; font-size: 12px; font-weight: 800; padding: 4px 7px; }
.property-body h3 { margin: 0 0 8px; font-size: 19px; }
.property-body p { color: var(--muted); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-row strong { font-size: 21px; color: var(--brand); }
.price-row span { display: inline-flex; min-height: 32px; align-items: center; padding: 5px 10px; border-radius: 6px; background: #eef6f4; color: var(--brand); font-weight: 900; box-shadow: inset 0 -2px 0 rgba(15,118,110,.14); }
.price-row.big { justify-content: flex-start; flex-wrap: wrap; }
.price-row.big strong { font-size: 32px; }
.owner-line { font-size: 13px; }

.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 22px; align-items: start; }
.filter-panel, .panel, .auth-card, .enquiry-box, .plan-card, .mini-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 18px; }
.enquiry-card { box-shadow: 0 12px 28px rgba(15, 23, 42, .08); }
.user-enquiry-compact { padding: 10px 12px; display: grid; grid-template-columns: minmax(160px, 240px) minmax(220px, 1fr) auto; gap: 10px; align-items: center; }
.user-enquiry-main,
.user-enquiry-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.user-enquiry-main b,
.user-enquiry-main small { display: block; }
.user-enquiry-main small { margin-top: 3px; color: var(--muted); font-weight: 800; }
.user-enquiry-message { margin: 0; line-height: 1.35; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.user-enquiry-compact .status-pill { min-height: 24px; padding: 3px 8px; }
.user-enquiry-actions .inline { justify-content: flex-end; }
.user-enquiry-actions button,
.user-enquiry-actions summary { min-height: 30px; padding: 6px 9px; font-size: 13px; }
.activity-strip { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0; }
.activity-strip span { border: 1px solid #d8e2ef; border-radius: 6px; background: #f8fbff; color: #24364f; font-size: 12px; padding: 4px 7px; }
.activity-strip.stacked { display: grid; gap: 6px; }
.status-pill { display: inline-flex; align-items: center; min-height: 30px; border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 900; border: 1px solid #d8e2ef; background: #f8fbff; color: #24364f; }
.status-open { border-color: #93c5fd; background: #eff6ff; color: #1d4ed8; }
.status-replied { border-color: #86efac; background: #f0fdf4; color: #166534; }
.status-flagged { border-color: #fca5a5; background: #fef2f2; color: #b91c1c; }
.status-deleted { border-color: #cbd5e1; background: #f1f5f9; color: #475569; }
.trail-item::before { display: inline-block; width: 18px; font-weight: 900; }
.trail-created::before { content: "i"; color: var(--accent); }
.trail-ok::before { content: "✓"; color: var(--ok); }
.trail-wait::before { content: "…"; color: #64748b; }
.trail-priority::before { content: "!"; color: #b45309; }
.trail-flag::before { content: "!"; color: var(--danger); }
.reply-trail { display: grid; gap: 8px; margin: 12px 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; }
.reply-trail p { margin: 0; display: grid; gap: 3px; color: var(--ink); }
.reply-trail span { font-weight: 900; color: var(--brand); }
.reply-trail small { color: var(--muted); }
.compact-reply-trail { margin-top: 8px; }
.compact-reply-trail summary {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}
.compact-reply-trail .reply-trail { margin: 8px 0 0; max-width: 420px; }
.compact-popup-button {
  width: auto;
  min-height: 30px;
  margin-top: 6px;
  padding: 5px 9px;
  background: #eef6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 13px;
}
.compact-activity-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}
.compact-activity-row span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 900;
}
.modal-lite[hidden] { display: none; }
.modal-lite {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, .48);
}
.modal-lite-card {
  width: min(720px, 100%);
  max-height: min(760px, calc(100dvh - 36px));
  overflow: auto;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.modal-lite-close {
  float: right;
  width: auto;
  min-height: 34px;
  padding: 6px 10px;
  background: #eef3f8;
  color: var(--ink);
}
.state-button.ok { background: var(--ok); opacity: 1; }
.state-button.flagged { background: var(--danger); opacity: 1; }
.filter-drawer-toggle,
.filter-close,
.filter-drawer-backdrop { display: none; }
.filter-panel { position: sticky; top: 92px; display: grid; gap: 10px; }
.filter-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.filter-panel-head h2 { margin: 0; }
.filter-head-actions { display: inline-flex; align-items: center; gap: 8px; }
.filter-clear-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 28, 28, .22);
  border-radius: 7px;
  background: #fff7f7;
  color: var(--danger);
  font-size: 13px;
  font-weight: 900;
}
.check-line { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); }
.check-line input { width: auto; }
.filter-actions { display: grid; gap: 10px; }
.filter-reset { text-align: center; font-weight: 900; color: var(--brand); }
.results-panel .property-grid { width: auto; margin: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.dashboard { display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: start; }
.dashboard-menu-toggle, .dash-nav-close { display: none; }
.dash-nav { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 7px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); max-height: calc(100vh - 112px); overflow: auto; }
.dash-nav-heading { margin: 10px 2px 2px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.dash-nav a { padding: 10px; border-radius: 7px; font-weight: 800; border: 1px solid #d8e2ef; background: linear-gradient(180deg, #fff, #eef3f8); box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(15,23,42,.06); }
.dash-nav a:hover { border-color: var(--brand); }
.dash-nav a:active { transform: translateY(1px); box-shadow: inset 0 4px 10px rgba(15,23,42,.14); }
.dash-nav a.active { color: #fff; border-color: var(--brand); background: var(--brand); box-shadow: inset 0 4px 12px rgba(0,0,0,.16); }
.nav-count { display: inline-grid; place-items: center; min-width: 22px; min-height: 22px; margin-left: 6px; padding: 0 6px; border-radius: 999px; background: #b45309; color: #fff; font-size: 12px; }
.dash-content { display: grid; gap: 18px; min-width: 0; }
.dash-content > .panel { min-width: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-grid div { padding: 16px; border-radius: 8px; background: var(--soft); }
.stat-grid b { display: block; font-size: 28px; }
.stat-grid span { color: var(--muted); }
.stat-grid .urgent-stat { border: 1px solid #f59e0b; background: #fffbeb; }
.stat-grid .urgent-stat b { color: #b45309; }
.consultant-dashboard .dash-nav .status-pill { justify-content: center; margin: 0 0 6px; }
.consultant-access-strip span { background: #ecfdf5; border-color: #99f6e4; color: #0f766e; font-weight: 900; }
.consultant-upgrade-card { display: grid; gap: 8px; border-color: #fed7aa; background: #fff7ed; }
.consultant-upgrade-card .post-btn { width: max-content; }
.consultant-lead-list { display: grid; gap: 12px; }
.consultant-lead-card { display: grid; gap: 12px; }
.consultant-lead-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.consultant-lead-top b,
.consultant-lead-top small { display: block; }
.consultant-lead-top small { margin-top: 3px; color: var(--muted); font-weight: 800; }
.consultant-lead-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.consultant-lead-grid p { margin: 0; padding: 10px; border: 1px solid var(--line); border-radius: 7px; background: #fbfdff; }
.consultant-lead-grid span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; font-weight: 900; }
.consultant-lead-message { margin: 0; padding: 10px 12px; border-left: 4px solid var(--brand); background: #f8fafc; }
.consultant-note-form { display: grid; grid-template-columns: 220px 1fr auto; gap: 10px; align-items: end; }
.city-lead-grid, .consultant-analytics-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.city-lead-grid .mini-card { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.city-lead-button { width: 100%; color: var(--ink); text-align: left; box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(15,23,42,.06); cursor: pointer; }
.city-lead-button:hover { border-color: var(--brand); transform: translateY(-1px); }
.city-lead-button:active { transform: translateY(1px); box-shadow: inset 0 4px 12px rgba(15,23,42,.13); }
.city-lead-grid span { color: var(--brand); font-weight: 900; }
.consultant-filter-note { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.consultant-filter-note button { width: auto; min-height: 30px; padding: 5px 10px; font-size: 13px; background: #eef3f8; color: var(--ink); }
.lead-filter-highlight { border-color: var(--brand); box-shadow: 0 14px 30px rgba(15,118,110,.12); }
.consultant-active-plan-grid { width: auto; margin: 0 0 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.consultant-active-plan-grid .plan-card { min-height: 0; }
.bar-row { display: grid; grid-template-columns: 110px 1fr 44px; gap: 10px; align-items: center; margin: 10px 0; }
.bar-row i { display: block; min-width: 4px; height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--brand), #f59e0b); }
.bar-row span, .bar-row b { font-size: 13px; font-weight: 900; }
.status-fresh { border-color: #bfdbfe; background: #eff6ff; color: #1d4ed8; }
.status-contacted { border-color: #fde68a; background: #fffbeb; color: #92400e; }
.status-interested { border-color: #99f6e4; background: #ecfdf5; color: #0f766e; }
.status-closed { border-color: #86efac; background: #f0fdf4; color: #166534; }
.status-ignored { border-color: #cbd5e1; background: #f1f5f9; color: #475569; }

.form-page, .auth-card { max-width: 920px; }
.form-grid, .property-form, .settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-grid textarea, .property-form textarea, fieldset, .settings-grid button { grid-column: 1 / -1; }
.full-span { grid-column: 1 / -1; }
.admin-review-controls {
  border-color: #f59e0b;
  background: #fff7ed;
}
.admin-review-controls legend span {
  background: #b45309;
}
.open-map-field, .open-map-box { position: relative; }
.open-map-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 8px 0; }
.open-map-tools button, .open-map-button {
  width: auto;
  min-height: 40px;
  padding: 8px 14px;
  position: relative;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
}
.open-map-tools a { font-weight: 900; color: var(--brand); }
.open-map-tools span { color: var(--muted); font-size: 13px; font-weight: 800; }
.open-map-preview {
  min-height: 190px;
  margin: 10px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #f8fbff;
}
.open-map-preview iframe { width: 100%; height: 260px; border: 0; display: block; }
.open-map-preview p { margin: 0; padding: 18px; color: var(--muted); text-align: center; font-weight: 800; }
.open-map-preview small { width: 100%; display: block; padding: 8px 10px; color: var(--muted); background: #fff; font-weight: 800; overflow-wrap: anywhere; }
.open-map-suggestions {
  position: static;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .16);
}
.open-map-suggestion {
  width: 100%;
  display: grid;
  gap: 2px;
  min-height: 0;
  padding: 9px 10px;
  text-align: left;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #d8e2ef;
  border-radius: 7px;
  box-shadow: inset 0 -2px 0 rgba(15,23,42,.06);
}
.open-map-suggestion span { color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.35; }
.map-icon-link { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-weight: 900; color: var(--brand); }
.map-pin { width: 14px; height: 14px; display: inline-block; border: 3px solid currentColor; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); position: relative; }
.map-pin::after { content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: currentColor; left: 2px; top: 2px; }
.property-share-box { margin: 14px 0; padding: 14px; border: 1px solid #d8e2ef; border-radius: 8px; background: #f8fbff; }
.property-share-box h2 { margin: 0 0 10px; font-size: 18px; }
.property-share-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.property-share-buttons a, .property-share-buttons button {
  width: auto;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 7px;
  border: 1px solid #d8e2ef;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(15,23,42,.06);
}
.property-share-buttons .share-whatsapp { color: #047857; }
.property-share-buttons .share-facebook { color: #1d4ed8; }
.property-share-buttons .share-twitter { color: #111827; }
.property-share-buttons .share-linkedin { color: #0f5f9f; }
.property-share-buttons .share-telegram { color: #0284c7; }
.property-share-box p { margin: 8px 0 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.permission-package { display: grid; gap: 12px; margin: 18px 0; padding: 14px; border: 1px solid #d8e2ef; border-radius: 8px; background: #fbfdff; }
.permission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.permission-check { align-items: flex-start; padding: 10px; border: 1px solid #d8e2ef; border-radius: 7px; background: #fff; }
.permission-check span { display: grid; gap: 3px; }
.permission-check small { color: var(--muted); font-size: 12px; }
.settings-group { grid-column: 1 / -1; display: grid; gap: 12px; padding: 14px; border: 1px solid #d8e2ef; border-radius: 8px; background: #fbfdff; }
.settings-group h3 { margin: 0; font-size: 18px; color: var(--ink); }
.settings-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.settings-group-grid label { display: grid; gap: 6px; font-weight: 900; }
.settings-group-grid small { color: var(--muted); font-size: 12px; font-weight: 800; }
.vertical-plan-tabs { display: grid; gap: 14px; }
.plan-edit-card { border-left: 5px solid var(--brand); }
.daily-bars { display: grid; gap: 10px; }
.daily-bars div { display: grid; grid-template-columns: 110px 1fr auto; gap: 8px; align-items: center; }
.daily-bars b { display: block; height: 18px; min-width: 6px; border-radius: 4px; background: var(--brand); }
.daily-bars em { font-style: normal; color: var(--muted); font-weight: 800; font-size: 13px; }
.compact-admin-form { grid-template-columns: repeat(6, minmax(120px, 1fr)); align-items: end; }
.compact-admin-form button { grid-column: auto; margin-right: 6px; }
fieldset { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border: 1px dashed var(--line); border-radius: 8px; padding: 14px; }
fieldset label { display: grid; gap: 6px; font-weight: 800; color: var(--ink); }
fieldset label input, fieldset label select, fieldset label textarea { font-weight: 400; }
fieldset label small, .field-hint { color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.35; }
.property-step-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0;
  margin: 4px 0 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.property-step-tab {
  position: relative;
  min-height: 72px;
  display: grid;
  width: 100%;
  justify-items: center;
  align-content: start;
  gap: 8px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  overflow: visible;
}
.property-step-tab::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 3px;
  background: #d8e2ef;
}
.property-step-tab:first-child::before { left: 50%; }
.property-step-tab:last-child::before { right: 50%; }
.property-step-tab span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 72px;
  height: 38px;
  padding: 0 10px;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}
.property-step-tab b {
  max-width: 150px;
  color: inherit;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
}
.property-step-tab.is-active span,
.property-step-tab.is-done span {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.property-step-tab.is-active b { color: var(--brand); }
.property-step-tab.is-done::before { background: rgba(15,118,110,.35); }
.property-step-tab.is-off {
  opacity: .48;
  cursor: not-allowed;
}
.property-step-tab.is-off span {
  border-style: dashed;
  background: #f1f5f9;
}
.property-step-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
}
.property-step-actions button { width: auto; }
.form-step { position: relative; border-style: solid; background: #fbfdff; }
.form-step legend { display: inline-flex; align-items: center; gap: 10px; padding: 0 8px 6px 0; border-bottom: 3px solid currentColor; font-size: 18px; }
.form-step legend span { display: inline-grid; place-items: center; min-width: 82px; min-height: 34px; padding: 0 10px; border-radius: 7px; background: var(--brand); color: #fff; font-weight: 900; box-shadow: inset 0 -3px 0 rgba(0,0,0,.14); }
.form-step:nth-of-type(1) legend { color: #0f766e; }
.form-step:nth-of-type(2) legend { color: #2563eb; }
.form-step:nth-of-type(3) legend { color: #b45309; }
.form-step:nth-of-type(4) legend { color: #7c3aed; }
.form-step:nth-of-type(5) legend { color: #be123c; }
.form-step:nth-of-type(6) legend { color: #047857; }
.form-step:nth-of-type(7) legend { color: #1d4ed8; }
.form-step:nth-of-type(8) legend { color: #92400e; }
.form-step:nth-of-type(1) legend span { background: #0f766e; }
.form-step:nth-of-type(2) legend span { background: #2563eb; }
.form-step:nth-of-type(3) legend span { background: #b45309; }
.form-step:nth-of-type(4) legend span { background: #7c3aed; }
.form-step:nth-of-type(5) legend span { background: #be123c; }
.form-step:nth-of-type(6) legend span { background: #047857; }
.form-step:nth-of-type(7) legend span { background: #1d4ed8; }
.form-step:nth-of-type(8) legend span { background: #92400e; }
.required-star { color: var(--danger); font-weight: 900; }
.property-specific-section { transition: opacity .16s ease, border-color .16s ease, background .16s ease; }
.property-specific-section.inactive-specific-section { opacity: .48; background: #f8fafc; border-color: #e2e8f0; }
.property-specific-section.active-specific-section { border-color: var(--brand); background: #f7fcfb; box-shadow: 0 0 0 3px rgba(15,118,110,.08); }
.form-step.is-skipped-step { display: none; }
.submit-property-button { justify-self: start; min-width: 220px; }
.gateway-form { display: grid; gap: 16px; }
.gateway-form > button { justify-self: start; }
.gateway-card { grid-template-columns: repeat(2, 1fr); }
.admin-search-form { display: grid; grid-template-columns: minmax(180px, 1fr) auto auto; gap: 8px; align-items: center; margin: 12px 0; }
.admin-search-form .press-link { color: var(--ink); }
.delete-menu-form { margin-top: 10px; }
.menu-help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0; }
.menu-help-grid article { padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; }
.menu-help-grid strong, .menu-help-grid span { display: block; }
.menu-help-grid span { color: var(--muted); margin-top: 4px; font-size: 13px; }
.menu-current-row { display: flex; justify-content: space-between; gap: 12px; align-items: start; margin-bottom: 10px; }
.menu-current-row p { margin: 6px 0 0; color: var(--muted); }
.menu-current-row code { color: var(--brand); font-weight: 900; }
.menu-actions-note { color: var(--muted); font-size: 13px; font-weight: 800; }
.priority-alert { padding: 12px; border: 1px solid #f59e0b; border-radius: 8px; background: #fffbeb; color: #92400e; font-weight: 900; }
.admin-steps { display: grid; gap: 8px; padding-left: 22px; line-height: 1.55; }
.custom-page-copy { width: auto; margin: 0 0 22px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.ready-url-panel { margin: 12px 0; border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #fbfdff; }
.ready-url-panel summary { cursor: pointer; font-weight: 900; color: var(--brand); }
.ready-url-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 8px; margin-top: 12px; }
.ready-url-grid button { display: grid; gap: 3px; justify-items: start; min-height: 54px; background: #fff; color: var(--ink); border: 1px solid #d8e2ef; box-shadow: inset 0 -2px 0 rgba(15,23,42,.06); }
.ready-url-grid small { color: var(--muted); font-weight: 800; }
.current-plan-card { margin: 12px 0 18px; border-color: rgba(15,118,110,.28); background: #f7fcfb; }
.dashboard-plan-grid { width: auto; margin: 16px 0 0; }
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.help-grid article { padding: 14px; background: var(--soft); border-radius: 8px; }
.help-grid h3 { margin: 0 0 8px; }
legend { font-weight: 900; color: var(--brand); }
.property-detail, .profile-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.gallery-placeholder { min-height: 340px; display: grid; place-items: center; border-radius: 8px; color: #fff; font-size: 28px; font-weight: 900; background: linear-gradient(135deg, #0f766e, #1f2937 50%, #b45309); }
.property-gallery { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 12px; }
.gallery-image-button { display: none; border: 0; padding: 0; background: transparent; border-radius: 8px; overflow: hidden; min-height: 0; }
.gallery-image-button:first-child { display: block; }
.gallery-image-button img { width: 100%; height: min(72vh, 680px); object-fit: cover; display: block; background: var(--soft); }
.video-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.video-buttons button { min-height: 34px; padding: 7px 11px; border-radius: 6px; background: #111827; color: #fff; font-size: 13px; box-shadow: inset 0 -2px 0 rgba(255,255,255,.14), 0 8px 18px rgba(24,33,47,.16); }
.media-lightbox[hidden] { display: none; }
.media-lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 18px; background: rgba(2,6,23,.92); }
.media-lightbox-content { width: min(96vw, 1400px); max-height: 92vh; display: grid; place-items: center; }
.media-lightbox-content img { max-width: 100%; max-height: 92vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.media-lightbox-content iframe { width: min(96vw, 1200px); aspect-ratio: 16 / 9; border: 0; border-radius: 8px; background: #000; }
.media-lightbox-close { position: fixed; right: 18px; top: 18px; background: #fff; color: var(--ink); }
.existing-media { display: flex; gap: 10px; flex-wrap: wrap; }
.existing-media img { width: 120px; height: 90px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.detail-grid div { padding: 12px; background: var(--soft); border-radius: 8px; }
.detail-grid b, .detail-grid span { display: block; }
.detail-grid span { color: var(--muted); margin-top: 4px; }
.enquiry-box { position: sticky; top: 92px; }
.enquiry-box form { display: grid; gap: 10px; }
.property-tools { display: grid; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.property-tools h3, .property-tools h4 { margin: 0; }
.tool-box { display: grid; gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); }
.tool-box output { display: block; min-height: 38px; border-radius: 6px; background: #fff; padding: 9px 10px; font-weight: 900; color: var(--brand); }
.profile-hero { min-height: 430px; display: flex; align-items: end; padding: 44px clamp(16px, 5vw, 72px); color: #fff; background: linear-gradient(90deg, rgba(8, 20, 36, .9), rgba(15, 118, 110, .55)); background-size: cover; background-position: center; }
.profile-hero > div { max-width: 820px; }
.profile-hero h1 { margin: 8px 0 12px; font-size: clamp(36px, 6vw, 68px); line-height: 1.02; }
.profile-hero p:not(.eyebrow) { max-width: 780px; color: #e6f3f1; font-size: 19px; }
.avatar { display: grid; place-items: center; width: 82px; height: 82px; border-radius: 50%; background: #fff; color: var(--ink); font-size: 34px; font-weight: 900; }
.username-hero { min-height: 520px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.14); }
.username-hero-inner { width: min(980px, 100%); padding-top: 56px; }
.profile-logo-circle { width: 112px; height: 112px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--ink); overflow: hidden; border: 4px solid rgba(255,255,255,.82); box-shadow: 0 18px 50px rgba(2,6,23,.28); font-size: 44px; font-weight: 900; }
.profile-logo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.username-highlights span { background: rgba(255,255,255,.94); color: var(--ink); }
.username-layout { grid-template-columns: minmax(0, 1fr) 360px; }
.username-main { display: grid; gap: 18px; min-width: 0; }
.profile-card { border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 22px; box-shadow: 0 16px 40px rgba(15,23,42,.08); }
.profile-card h3 { margin-top: 0; }
.profile-social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.social-post-card { min-height: 170px; display: flex; flex-direction: column; gap: 10px; justify-content: space-between; }
.social-post-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; background: var(--soft); }
.video-post { grid-column: 1 / -1; }
.username-sidebox { position: sticky; top: 96px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; gap: 12px; overflow: hidden; box-shadow: 0 18px 42px rgba(15,23,42,.10); }
.plan-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--brand), #f59e0b); }
.plan-card h2 { margin: 12px 0 0; font-size: 24px; line-height: 1.15; }
.plan-card strong { font-size: 32px; color: var(--brand); letter-spacing: 0; }
.plan-card p { color: #475569; line-height: 1.55; }
.plan-card ul { padding: 0; margin: 0 0 4px; color: var(--muted); list-style: none; display: grid; gap: 8px; }
.plan-card li { position: relative; padding-left: 24px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 17px; height: 17px; display: inline-grid; place-items: center; border-radius: 50%; background: #dcfce7; color: #047857; font-size: 11px; font-weight: 900; }
.plan-card form { margin-top: auto; display: grid; gap: 10px; }
.plan-card .post-btn, .plan-card button { width: 100%; margin-top: auto; }
.plan-badge { align-self: flex-start; margin-top: 8px; padding: 5px 9px; border-radius: 999px; background: #eefdf8; color: var(--brand); border: 1px solid rgba(15,118,110,.18); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.plan-duration { color: #64748b; font-weight: 900; margin-top: -6px; }
.pricing-tabs { width: min(1180px, calc(100% - 32px)); margin: 0 auto 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.pricing-tabs a { min-height: 42px; display: inline-grid; place-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-weight: 900; box-shadow: inset 0 2px 0 #fff, 0 8px 18px rgba(15,23,42,.08); }
.pricing-tabs a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pricing-head { margin-top: 34px; }
.pricing-section { width: min(1180px, calc(100% - 32px)); margin: 0 auto 18px; }
.pricing-section .plan-grid { width: auto; margin: 0; }
.pricing-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: stretch;
}
.pricing-hero > div,
.pricing-hero-card,
.pricing-empty-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.pricing-hero h1 { margin: 4px 0 10px; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; letter-spacing: 0; }
.pricing-hero p { color: #475569; max-width: 740px; line-height: 1.65; }
.pricing-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; align-items: center; }
.pricing-hero-card { background: #0f172a; color: #fff; }
.pricing-hero-card strong { display: block; font-size: 22px; margin-bottom: 12px; }
.pricing-hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pricing-hero-card li { padding: 10px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.07); font-weight: 800; }
.pricing-empty-panel { text-align: center; max-width: 760px; margin: 0 auto; }
.pricing-category-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pricing-category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,23,42,.10);
}
.pricing-category-card h2 { margin: 0; font-size: 26px; }
.pricing-category-card p { color: #475569; line-height: 1.55; }
.pricing-category-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.pricing-category-card li { padding-left: 20px; position: relative; font-weight: 800; }
.pricing-category-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.pricing-category-card .post-btn { margin-top: auto; width: 100%; }
.saas-cover-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  align-items: stretch;
}
.saas-cover-copy, .saas-dashboard-visual, .saas-value-strip article, .saas-cover-section, .saas-package-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.saas-cover-copy { min-height: 430px; display: grid; align-content: center; gap: 16px; padding: clamp(24px, 5vw, 54px); }
.saas-cover-copy h1 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: 0; }
.saas-cover-copy p { max-width: 720px; color: #475569; font-size: 18px; line-height: 1.65; }
.saas-dashboard-visual { padding: 18px; background: #111827; color: #fff; overflow: hidden; }
.saas-window-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.saas-window-bar span { width: 12px; height: 12px; border-radius: 50%; background: #f59e0b; }
.saas-window-bar span:nth-child(2) { background: #10b981; }
.saas-window-bar span:nth-child(3) { background: #60a5fa; }
.saas-screen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.saas-screen-grid div { min-height: 130px; display: grid; align-content: end; gap: 8px; padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(255,255,255,.07); }
.saas-screen-grid .wide { grid-column: 1 / -1; min-height: 170px; align-content: center; }
.saas-screen-grid b { color: #b6c3d4; font-size: 13px; text-transform: uppercase; }
.saas-screen-grid strong { font-size: 34px; }
.saas-screen-grid p { margin: 0; color: #dbe4ef; }
.saas-value-strip { width: min(1180px, calc(100% - 32px)); margin: 18px auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.saas-value-strip article, .saas-feature-grid article { display: grid; gap: 8px; padding: 18px; }
.saas-value-strip b, .saas-feature-grid b { font-size: 18px; }
.saas-value-strip span, .saas-feature-grid span { color: var(--muted); }
.saas-cover-section { width: min(1180px, calc(100% - 32px)); margin: 18px auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 22px; padding: 28px; }
.saas-cover-section h2, .saas-package-preview h2 { margin-top: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.saas-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.saas-feature-grid article { border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; }
.saas-package-preview { width: min(1180px, calc(100% - 32px)); margin: 18px auto 70px; padding: 28px; }
.saas-package-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.saas-package-row span { display: inline-flex; min-height: 40px; align-items: center; padding: 8px 12px; border: 1px solid #99f6e4; border-radius: 7px; background: #ecfdf5; color: var(--brand); font-weight: 900; }
.page-name-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}
.page-name-copy, .page-name-card, .page-name-benefits article, .page-name-section, .page-name-steps {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.page-name-copy { min-height: 420px; display: grid; align-content: center; gap: 16px; padding: clamp(24px, 5vw, 54px); }
.page-name-copy h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: .98; }
.page-name-copy p { max-width: 720px; color: #475569; font-size: 18px; line-height: 1.65; }
.page-name-card { display: grid; align-content: center; justify-items: start; padding: 28px; background: #0f172a; color: #fff; }
.page-name-card span { color: #b6c3d4; font-weight: 900; }
.page-name-card strong { display: block; margin: 6px 0 18px; font-size: clamp(42px, 6vw, 70px); line-height: .95; color: #f59e0b; }
.page-name-card p { color: #dbe4ef; line-height: 1.6; }
.page-name-benefits { width: min(1180px, calc(100% - 32px)); margin: 18px auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.page-name-benefits article, .page-name-steps article { display: grid; gap: 8px; padding: 18px; }
.page-name-benefits b, .page-name-steps b { font-size: 18px; }
.page-name-benefits span, .page-name-steps span { color: var(--muted); }
.page-name-section { width: min(1180px, calc(100% - 32px)); margin: 18px auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; padding: 28px; }
.page-name-section h2, .page-name-steps h2 { margin-top: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.page-name-examples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; align-content: center; }
.page-name-examples span { display: block; padding: 12px; border: 1px solid #99f6e4; border-radius: 7px; background: #ecfdf5; color: var(--brand); font-weight: 900; }
.page-name-steps { width: min(1180px, calc(100% - 32px)); margin: 18px auto 70px; padding: 28px; }
.page-name-steps > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 18px 0; }
.page-name-steps article { border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; }
.product-cover-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}
.product-cover-copy, .product-cover-card, .product-value-strip article, .product-cover-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.product-cover-copy { min-height: 420px; display: grid; align-content: center; gap: 16px; padding: clamp(24px, 5vw, 54px); }
.product-cover-copy h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: .98; }
.product-cover-copy p { max-width: 720px; color: #475569; font-size: 18px; line-height: 1.65; }
.product-cover-card { display: grid; align-content: center; gap: 12px; padding: 28px; background: #111827; color: #fff; }
.product-cover-card span { color: #b6c3d4; font-weight: 900; text-transform: uppercase; font-size: 13px; }
.product-cover-card strong { display: block; font-size: clamp(38px, 5vw, 62px); line-height: .95; color: #f59e0b; }
.product-cover-card p { color: #dbe4ef; line-height: 1.6; }
.product-value-strip { width: min(1180px, calc(100% - 32px)); margin: 18px auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product-value-strip article, .product-feature-grid article { display: grid; gap: 8px; padding: 18px; }
.product-value-strip b, .product-feature-grid b { font-size: 18px; }
.product-value-strip span, .product-feature-grid span { color: var(--muted); }
.product-cover-section { width: min(1180px, calc(100% - 32px)); margin: 18px auto 70px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; padding: 28px; }
.product-cover-section h2 { margin-top: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.product-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-feature-grid article { border: 1px solid var(--line); border-radius: 8px; background: #fbfdff; }
.ad-space-cover .product-cover-card { background: #0f172a; }
.agent-cover .product-cover-card { background: #12372f; }
.builder-cover .product-cover-card { background: #1f2937; }
.consultant-cover-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}
.consultant-cover-hero > div,
.consultant-cover-hero aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.consultant-cover-hero > div {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(120deg, rgba(15,23,42,.92), rgba(15,118,110,.62)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}
.consultant-cover-hero h1 { margin: 4px 0 14px; font-size: clamp(36px, 6vw, 64px); line-height: 1; }
.consultant-cover-hero p { max-width: 760px; color: rgba(255,255,255,.88); font-size: 18px; line-height: 1.65; }
.consultant-cover-hero .eyebrow { color: #a7f3d0; }
.consultant-cover-hero aside {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: #0f172a;
  color: #fff;
}
.consultant-cover-hero aside strong { font-size: 25px; line-height: 1.15; }
.consultant-cover-hero aside span { padding: 10px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.07); font-weight: 800; }
.consultant-cover-grid .pricing-category-card { min-height: 250px; }
.consultant-interest-page { margin-top: 18px; }
.username-input-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.username-search-icon { min-height: 42px; display: inline-grid; place-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft); font-size: 12px; font-weight: 900; color: var(--muted); }
[data-username-status] { display: block; margin-top: 6px; font-weight: 800; }
[data-username-status][data-state="available"], .username-state.available { color: var(--primary); }
[data-username-status][data-state="reserved"], .username-state.reserved, .username-state.premium { color: #b45309; }
[data-username-status][data-state="acquired"], [data-username-status][data-state="invalid"], .username-state.acquired { color: #b91c1c; }
.username-premium-box { border: 1px dashed #f59e0b; background: #fff7ed; color: #78350f; border-radius: 8px; padding: 14px; }
.username-premium-box p { margin: 6px 0 10px; }
.inline-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.editor-tier-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 16px; }
.editor-fieldset { grid-template-columns: repeat(2, minmax(0, 1fr)); background: #fbfdff; }
.editor-fieldset legend span { background: var(--brand); color: #fff; border-radius: 6px; padding: 5px 9px; margin-right: 8px; }
.pro-editor-fieldset { border-color: rgba(180,83,9,.35); background: #fffaf3; }
.pro-editor-fieldset legend span { background: #b45309; }
.is-locked-editor {
  opacity: .58;
  filter: grayscale(.15);
  position: relative;
}
.is-locked-editor input,
.is-locked-editor textarea,
.is-locked-editor select,
.is-locked-editor button {
  cursor: not-allowed;
}
.editor-toolbar { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0; }
.editor-toolbar button { min-height: 30px; padding: 5px 9px; border-radius: 6px; background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: inset 0 -2px 0 rgba(15,23,42,.06); }
.username-pro-lock { border: 1px dashed #f59e0b; border-radius: 8px; padding: 16px; background: #fff7ed; color: #78350f; }
.profile-rich-content { line-height: 1.65; color: var(--ink); }
.profile-rich-content ul, .profile-rich-content ol { padding-left: 22px; }
.profile-editor-block h3, .username-cta-card h3 { margin-top: 0; }
.inner-tabs { display: grid; gap: 14px; margin-top: 18px; }
.inner-tab-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.username-management-tabs {
  position: sticky;
  top: 84px;
  z-index: 35;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
  scrollbar-gutter: stable;
}
.username-management-tabs button { white-space: nowrap; }
.inner-tab-nav button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #cbd5e1;
  background: linear-gradient(180deg, #fff, #eef3f8);
  color: var(--ink);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(15,23,42,.06);
}
.inner-tab-nav button.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.inner-tab-panel { min-width: 0; }
.plan-section-tabs {
  position: sticky;
  top: 84px;
  z-index: 35;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
}
.plan-section-tabs a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #eef3f8);
  font-weight: 900;
}
.plan-section-tabs a.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.username-lease-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}
.username-lease-hero > div,
.username-lease-hero aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.username-lease-hero h1 { margin: 4px 0 10px; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; }
.username-lease-hero p { color: #475569; line-height: 1.65; max-width: 720px; }
.username-lease-hero aside { background: #0f172a; color: #fff; }
.username-lease-hero aside strong { display: block; font-size: 22px; margin-bottom: 10px; }
.username-lease-hero ol { margin: 0; padding-left: 20px; display: grid; gap: 10px; }
.username-lease-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.username-lease-points span { padding: 8px 10px; border-radius: 999px; background: #eefdf8; color: var(--brand); border: 1px solid rgba(15,118,110,.18); font-weight: 900; }
.username-lease-search { display: grid; grid-template-columns: minmax(180px, 1fr) auto; gap: 10px; margin: 8px 0 20px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(15,23,42,.06); }
.username-result-card { margin-top: 16px; box-shadow: 0 18px 42px rgba(15,23,42,.10); }
.username-result-head { display: flex; gap: 12px; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--line); margin: -2px 0 16px; padding-bottom: 12px; }
.username-result-head h2 { margin: 0; font-size: 30px; }
.username-state { font-weight: 900; font-size: 18px; }
.lease-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 14px 0; }
.lease-price-grid span { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #f8fafc; }
.lease-price-grid b { color: var(--ink); }
.plan-media { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); background: var(--soft); }
.vertical-plan-tabs { display: grid; gap: 10px; }
.plan-admin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.plan-admin-row strong,
.plan-admin-row small { display: block; }
.plan-admin-row small { margin-top: 4px; color: var(--muted); font-weight: 800; }
.modal-wide-card { width: min(980px, 100%); }
.inline { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-message-form { display: grid; gap: 8px; min-width: 220px; }
.mini-message-form textarea { min-height: 72px; }
.danger-button { background: var(--danger); }
.table-wrap td button,
.table-wrap td .post-btn,
.table-wrap td select,
.table-wrap td input {
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 7px;
  font-size: 13px;
}
.table-wrap input[type="checkbox"],
.admin-search-form input[type="checkbox"],
.check-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  flex: 0 0 auto;
}
.table-wrap td textarea {
  min-height: 58px;
  padding: 7px 9px;
  font-size: 13px;
}
.table-wrap td .inline {
  gap: 6px;
  align-items: center;
}
.table-wrap td .mini-message-form {
  min-width: 190px;
  gap: 6px;
}
.action-menu {
  position: relative;
  display: inline-block;
  min-width: 130px;
}
.action-menu summary {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #eef3f8);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.95), inset 0 -2px 0 rgba(15,23,42,.06);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}
.action-menu summary::-webkit-details-marker { display: none; }
.action-menu summary::after { content: "v"; font-size: 11px; color: var(--muted); }
.action-menu[open] summary {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,118,110,.12);
}
.action-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  width: min(280px, 72vw);
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.action-menu.floating .action-menu-panel {
  position: fixed;
  top: var(--action-menu-top, 0);
  left: var(--action-menu-left, 0);
  right: auto;
  width: min(280px, calc(100vw - 24px));
  z-index: 120;
}
.action-menu-panel .inline,
.action-menu-panel form {
  display: grid;
  grid-template-columns: 1fr;
}
.action-menu-panel button,
.action-menu-panel select,
.action-menu-panel input,
.action-menu-panel textarea {
  width: 100%;
}
.flash, .notice, .warning, .form-error { width: min(1180px, calc(100% - 32px)); margin: 12px auto; padding: 12px; border-radius: 8px; }
.success { background: #dcfce7; color: var(--ok); }
.error, .form-error { background: #fee2e2; color: var(--danger); }
.notice { background: #eff6ff; color: #1d4ed8; }
.warning { background: #fff7ed; color: #9a3412; font-size: 13px; }
.input-warning { border-color: var(--danger); background: #fff1f2; }
.promo-unit, .ad-box {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 0;
  display: grid;
  place-items: stretch;
  gap: 8px;
  padding: 18px;
  border: 1px dashed #a7b7ca;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
  color: var(--muted);
}
.promo-unit strong, .promo-unit span, .ad-box strong, .ad-box span { color: var(--ink); font-weight: 900; }
.promo-unit small, .ad-box small { display: block; }
.sponsor-promo, .self-ad { border-color: #f59e0b; background: #fffbeb; box-shadow: 0 18px 34px rgba(180,83,9,.14); }
.sponsor-promo-head { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 12px; text-align: left; }
.sponsor-promo-head strong { font-size: 18px; }
.sponsor-promo-body { display: grid; place-items: center; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
.sponsor-promo img, .self-ad img { max-width: 100%; max-height: 260px; border-radius: 8px; object-fit: cover; }
.sponsor-promo iframe, .self-ad iframe { display: block; width: 100%; max-width: 100%; min-height: 0; aspect-ratio: 16 / 9; border: 0; border-radius: 8px; background: #111827; }
.sponsor-video-body { aspect-ratio: 16 / 9; min-height: 0; }
.promo-video-wrap { display: grid; justify-items: center; gap: 10px; width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
.google-promo, .adsense-ad { border-color: #93c5fd; background: #eff6ff; }
.simulated-google-promo, .simulated-google-ad { background: linear-gradient(135deg, #eff6ff, #ffffff); border-style: solid; }
.ad-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 12px 0 22px; }
.ad-preview-grid > div { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: #fff; }
.ad-preview-grid .promo-unit, .ad-preview-grid .ad-box { margin-top: 10px; }
.preview-actions { margin: 8px 0 12px; gap: 10px; }
.state-good, .state-bad { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 9px; border-radius: 999px; font-weight: 900; font-size: 12px; }
.state-good { background: #dcfce7; color: #166534; }
.state-bad { background: #fee2e2; color: #991b1b; }
.import-form { gap: 8px; align-items: center; flex-wrap: wrap; }
.import-form input[type="file"] { max-width: 240px; padding: 8px; background: #fff; }
.footer { display: flex; justify-content: space-between; gap: 22px; padding: 34px clamp(16px, 5vw, 72px) 96px; background: #111827; color: #e5e7eb; }
.footer nav { display: flex; gap: 18px; flex-wrap: wrap; align-content: start; }
.whatsapp-float { position: fixed; right: 18px; bottom: 90px; z-index: 60; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #16a34a; color: #fff; font-weight: 900; box-shadow: var(--shadow); }
.bottom-dock { display: none; }
.sticky-enquiry { display: none; }
.empty-state { min-height: 420px; display: grid; place-items: center; text-align: center; align-content: center; }

@media (max-width: 980px) {
  .desktop-search, .desktop-nav { display: none; }
  .hamburger { display: inline-grid; place-items: center; margin-left: auto; }
  .mobile-location-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 5px 14px;
    flex-wrap: nowrap;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f8fbff;
    position: sticky;
    top: 0;
    z-index: 45;
    position: relative;
    pointer-events: auto;
  }
  .mobile-location-strip span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .mobile-location-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(210px, 62vw);
    min-height: 28px;
    border: 1px solid rgba(15,118,110,.32);
    border-radius: 999px;
    background: #eef7f5;
    overflow: hidden;
    flex: 0 1 210px;
    position: relative;
    z-index: 46;
  }
  .mobile-location-toggle a,
  .mobile-location-toggle .mobile-ip-city-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 8px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: auto;
  }
  .mobile-location-toggle .active {
    background: var(--brand);
    color: #fff;
    box-shadow: inset 0 2px 5px rgba(0,0,0,.18), inset 0 -1px 0 rgba(255,255,255,.18);
  }
  .mobile-location-toggle .active,
  .mobile-location-toggle .active span,
  .mobile-location-toggle .active::before {
    color: #fff;
  }
  .mobile-location-toggle .ip-city-menu::before {
    content: "\2691";
    font-size: 12px;
  }
  .hero { min-height: 520px; padding-bottom: 28px; }
  .hero-search, .search-layout, .dashboard, .property-detail, .profile-layout, .username-layout, .city-layout, .about-hero, .about-layout, .about-promise { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .property-grid, .results-panel .property-grid, .plan-grid, .pricing-category-grid { grid-template-columns: 1fr 1fr; }
  .pricing-hero, .username-lease-hero, .consultant-cover-hero, .saas-cover-hero, .saas-cover-section, .saas-value-strip, .page-name-hero, .page-name-section, .page-name-benefits, .page-name-steps > div, .product-cover-hero, .product-cover-section, .product-value-strip { grid-template-columns: 1fr; }
  .saas-feature-grid { grid-template-columns: 1fr 1fr; }
  .lease-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-social-grid { grid-template-columns: 1fr; }
  .username-sidebox { position: static; }
  .promo-unit, .ad-box { padding: 14px; }
  .property-media { height: 190px; }
  .property-gallery, .video-grid { grid-template-columns: 1fr; }
  .city-builder-grid { grid-template-columns: 1fr; }
  .property-gallery img:first-child, .property-gallery img { height: 240px; grid-row: auto; }
  .filter-drawer-toggle {
    position: sticky;
    top: 76px;
    z-index: 44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 0 12px;
    box-shadow: var(--shadow);
  }
  .filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 88;
    display: block;
    background: rgba(15, 23, 42, .48);
  }
  .filter-drawer-backdrop[hidden] { display: none; }
  .filter-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 90;
    width: min(88vw, 360px);
    max-height: 100dvh;
    padding: 18px 18px 118px;
    border-radius: 0;
    border-width: 0 1px 0 0;
    transform: translateX(-105%);
    transition: transform .22s ease;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
  }
  .filter-panel.open { transform: translateX(0); }
  .filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 34px;
    padding: 6px 10px;
    background: #eef3f8;
    color: var(--ink);
  }
  .filter-actions {
    position: static;
    margin: 8px 0 0;
    padding: 0 0 calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    padding-top: 12px;
    background: transparent;
  }
  body.filter-drawer-open { overflow: hidden; }
  .enquiry-box { position: static; }
  .dashboard { position: relative; }
  .dashboard-menu-toggle {
    position: sticky;
    top: 76px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 0 12px;
    box-shadow: var(--shadow);
  }
  .dash-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 95;
    width: min(86vw, 340px);
    max-height: 100dvh;
    padding: 18px 18px 110px;
    border-radius: 0;
    border-width: 0 1px 0 0;
    transform: translateX(-105%);
    transition: transform .22s ease;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .dash-nav.open { transform: translateX(0); }
  .dash-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: auto;
    background: #eef3f8;
    color: var(--ink);
  }
  .dash-nav strong { padding: 4px 2px 8px; }
  body.dashboard-menu-open { overflow: hidden; }
  .stat-grid, .detail-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { background: var(--soft); padding-bottom: 70px; }
  .city-picker-actions { grid-template-columns: 1fr; }
  .topbar { min-height: 62px; padding: 10px 14px; }
  .brand { min-width: 0; align-items: center; font-size: 18px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .brand-name { display: block; line-height: 1.05; }
  .brand-copy small {
    display: block;
    max-width: 150px;
    color: #334155;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
  }
  .hero { min-height: 500px; align-items: center; }
  .hero h1 { font-size: 38px; }
  .about-hero, .about-stats, .about-layout, .about-promise { width: min(100% - 24px, 1180px); }
  .about-hero { min-height: 0; margin-top: 18px; }
  .about-hero-copy, .about-founder-card, .about-story-card, .about-values article, .about-promise, .about-stats article { box-shadow: none; }
  .about-hero-copy, .about-founder-card, .about-story-card, .about-promise { padding: 18px; }
  .about-hero-copy h1 { font-size: 38px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-stats strong { font-size: 24px; }
  .username-hero { min-height: 460px; padding: 28px 16px; }
  .profile-logo-circle { width: 86px; height: 86px; font-size: 34px; }
  .profile-card { padding: 16px; box-shadow: none; }
  .hero-search, .form-grid, .property-form, .settings-grid, fieldset, .property-grid, .results-panel .property-grid, .plan-grid, .pricing-category-grid, .stat-grid, .detail-grid, .ad-preview-grid, .username-lease-search, .lease-price-grid { grid-template-columns: 1fr; }
  .property-step-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    background: #fff;
  }
  .property-step-tab {
    min-height: 56px;
    grid-template-columns: 86px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    align-content: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--ink);
  }
  .property-step-tab::before {
    top: 0;
    bottom: -10px;
    left: 52px;
    right: auto;
    width: 3px;
    height: auto;
    z-index: 0;
  }
  .property-step-tab:first-child::before { top: 50%; left: 52px; }
  .property-step-tab:last-child::before { bottom: 50%; right: auto; }
  .property-step-tab span {
    justify-self: start;
    min-width: 72px;
    height: 38px;
    font-size: 12px;
  }
  .property-step-tab b {
    max-width: none;
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
    overflow-wrap: anywhere;
  }
  .property-step-tab.is-active {
    border-color: var(--brand);
    background: #eefdf8;
    box-shadow: inset 0 -3px 0 rgba(15,118,110,.12);
  }
  .property-step-tab.is-off {
    opacity: 1;
    background: #eef2f7;
    color: #64748b;
  }
  .property-step-tab.is-off span {
    min-width: 72px;
    background: #cbd5e1;
    border-color: #cbd5e1;
    color: #fff;
  }
  .property-step-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .property-step-actions button { width: 100%; }
  .pricing-hero, .username-lease-hero, .consultant-cover-hero, .saas-cover-hero, .saas-cover-section, .saas-value-strip, .saas-package-preview, .page-name-hero, .page-name-section, .page-name-benefits, .page-name-steps, .product-cover-hero, .product-cover-section, .product-value-strip { width: min(100% - 24px, 1180px); margin-top: 18px; }
  .pricing-hero > div, .pricing-hero-card, .pricing-empty-panel, .username-lease-hero > div, .username-lease-hero aside, .consultant-cover-hero > div, .consultant-cover-hero aside, .saas-cover-copy, .saas-dashboard-visual, .saas-value-strip article, .saas-cover-section, .saas-package-preview, .page-name-copy, .page-name-card, .page-name-benefits article, .page-name-section, .page-name-steps, .product-cover-copy, .product-cover-card, .product-value-strip article, .product-cover-section { padding: 18px; box-shadow: none; }
  .consultant-cover-hero > div { min-height: 0; }
  .pricing-hero h1, .username-lease-hero h1 { font-size: 34px; }
  .saas-cover-copy h1 { font-size: 36px; }
  .saas-screen-grid, .saas-feature-grid { grid-template-columns: 1fr; }
  .page-name-copy h1 { font-size: 36px; }
  .page-name-examples { grid-template-columns: 1fr; }
  .product-cover-copy h1 { font-size: 36px; }
  .product-feature-grid { grid-template-columns: 1fr; }
  .pricing-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .pricing-hero-actions a,
  .pricing-hero-actions .post-btn,
  .pricing-hero-actions .press-link {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }
  .saas-cover-hero,
  .page-name-hero,
  .product-cover-hero,
  .saas-value-strip,
  .page-name-benefits,
  .product-value-strip,
  .saas-cover-section,
  .page-name-section,
  .page-name-steps > div,
  .product-cover-section,
  .saas-feature-grid,
  .product-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .saas-cover-copy,
  .page-name-copy,
  .product-cover-copy {
    min-height: 0;
    gap: 12px;
  }
  .saas-cover-copy h1,
  .page-name-copy h1,
  .product-cover-copy h1 {
    font-size: 30px;
    line-height: 1.08;
  }
  .saas-cover-copy p,
  .page-name-copy p,
  .product-cover-copy p {
    font-size: 15px;
    line-height: 1.55;
  }
  .saas-dashboard-visual,
  .page-name-card,
  .product-cover-card {
    display: grid;
    gap: 10px;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
  }
  .saas-screen-grid {
    display: grid;
    gap: 10px;
  }
  .saas-screen-grid div,
  .saas-screen-grid .wide {
    min-height: 0;
    padding: 12px;
  }
  .saas-screen-grid strong,
  .page-name-card strong,
  .product-cover-card strong {
    font-size: 24px;
    line-height: 1.1;
  }
  .saas-value-strip article,
  .page-name-benefits article,
  .page-name-steps article,
  .product-value-strip article,
  .saas-feature-grid article,
  .product-feature-grid article {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
  }
  .saas-value-strip b,
  .page-name-benefits b,
  .page-name-steps b,
  .product-value-strip b,
  .saas-feature-grid b,
  .product-feature-grid b {
    display: block;
    font-size: 16px;
    line-height: 1.25;
  }
  .saas-value-strip span,
  .page-name-benefits span,
  .page-name-steps span,
  .product-value-strip span,
  .saas-feature-grid span,
  .product-feature-grid span {
    display: block;
    color: #475569;
    line-height: 1.45;
  }
  .page-name-examples {
    display: grid;
    gap: 8px;
  }
  .page-name-steps {
    margin-bottom: 96px;
  }
  .pricing-tabs { width: min(100% - 24px, 1180px); overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .pricing-tabs a { white-space: nowrap; }
  .username-result-head { display: grid; }
  .menu-help-grid { grid-template-columns: 1fr; }
  .menu-current-row { display: grid; }
  .admin-search-form { grid-template-columns: 1fr; }
  .user-enquiry-compact { grid-template-columns: 1fr; }
  .user-enquiry-main,
  .user-enquiry-actions { align-items: flex-start; flex-direction: column; }
  .user-enquiry-actions .inline { justify-content: flex-start; }
  .consultant-lead-grid,
  .consultant-note-form,
  .city-lead-grid,
  .consultant-analytics-grid { grid-template-columns: 1fr; }
  .consultant-lead-top { display: grid; }
  .consultant-upgrade-card .post-btn { width: 100%; }
  .plan-admin-row { align-items: stretch; flex-direction: column; }
  .plan-admin-row .compact-popup-button { width: 100%; }
  table { min-width: 680px; }
  .table-wrap { margin-inline: -6px; padding-bottom: 6px; }
  .table-wrap::after { content: "Swipe table left/right"; display: block; padding: 8px 10px 2px; color: var(--muted); font-size: 12px; font-weight: 800; }
  .dashboard-menu-toggle { top: 66px; width: 100%; }
  .property-media { height: 215px; }
  .quick-cats { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; flex-direction: column; }
  .property-card, .panel, .filter-panel, .auth-card, .enquiry-box, .plan-card { box-shadow: none; }
  .promo-unit, .ad-box { padding: 10px; border-radius: 7px; box-shadow: none; }
  .sponsor-promo-head strong { font-size: 15px; overflow-wrap: anywhere; }
  .sponsor-promo-head small { overflow-wrap: anywhere; }
  .sponsor-promo-head { display: grid; gap: 4px; }
  .sponsor-promo iframe, .self-ad iframe, .sponsor-video-body { width: 100%; max-width: 100%; min-height: 0; aspect-ratio: 16 / 9; }
  .footer { display: block; padding-bottom: 110px; }
  .bottom-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px 8px 10px;
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .bottom-dock a { text-align: center; padding: 8px 2px; border-radius: 8px; font-size: 12px; font-weight: 800; color: var(--muted); }
  .bottom-dock a span { display: block; font-size: 15px; line-height: 1; margin-bottom: 3px; color: inherit; }
  .bottom-dock .dock-primary { background: var(--brand); color: #fff; }
  .sticky-enquiry { position: fixed; left: 12px; right: 82px; bottom: 88px; z-index: 65; display: block; text-align: center; padding: 14px; border-radius: 8px; background: var(--brand-2); color: #fff; font-weight: 900; }
}
