:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --ink: #17212b;
  --dim: #66727e;
  --line: #e3e8ed;
  --accent: #0e7a5f;
  --accent-soft: #e2f3ee;
  --owner: #b45309;
  --owner-soft: #fef3c7;
  --danger: #b91c1c;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 32, 48, .06), 0 6px 18px rgba(16, 32, 48, .05);
  font-family: "Noto Sans Georgian", "Sylfaen", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--ink); font-family: inherit; line-height: 1.5; }
.wrap { max-width: 1460px; margin: 0 auto; padding: 0 22px; }
a { color: var(--accent); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.hidden { display: none !important; }

/* topbar */
.topbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.logo { font-size: 20px; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.back-link { display: inline-block; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 4px 13px; font-size: 12.5px; font-weight: 700; color: var(--accent); margin-right: 8px; }
.back-link:hover { background: var(--accent-soft); }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-word b { letter-spacing: .3px; }
.logo-tld { color: var(--accent); font-weight: 800; }
.proto-badge { font-size: 11px; background: var(--accent-soft); color: var(--accent); border-radius: 20px; padding: 2px 9px; margin-left: 9px; vertical-align: 2px; font-weight: 600; }
.nav a { margin-left: 20px; color: var(--dim); font-size: 14.5px; font-weight: 500; }
.nav a.active, .nav a:hover { color: var(--ink); }
.nav a#navOwner { color: var(--owner); font-weight: 700; }

/* hero */
.hero { background: linear-gradient(160deg, #0d3b32 0%, #0e7a5f 90%); color: #fff; padding: 38px 0 30px; }
.hero h1 { font-size: 30px; font-weight: 800; letter-spacing: .2px; }
.hero-sub { opacity: .85; margin-top: 6px; font-size: 15px; }
.stats { display: flex; gap: 26px; margin-top: 20px; flex-wrap: wrap; }
.stat b { font-size: 22px; display: block; }
.stat span { font-size: 12.5px; opacity: .8; }

/* filters */
/* new-build promo banner — quiet white card matching the site's design */
.nb-promo { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 26px; margin-top: -18px; position: relative; z-index: 6; box-shadow: var(--shadow); }
.nb-promo-kicker { display: inline-flex; align-items: center; gap: 7px; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; border-radius: 20px; padding: 3px 12px; font-size: 12px; font-weight: 800; letter-spacing: .3px; margin-bottom: 8px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #dc2626; opacity: .6; animation: pulse-ring 1.6s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(.5); opacity: .7; } 80% { transform: scale(1.4); opacity: 0; } 100% { opacity: 0; } }
.nb-status { font-size: 10.5px; font-weight: 700; border-radius: 6px; padding: 2px 8px; align-self: flex-start; }
.nb-status.building { background: #fef3c7; color: #b45309; }
.nb-status.done { background: var(--accent-soft); color: var(--accent); }
.nb-promo-text h2 { font-size: 19px; font-weight: 800; margin: 2px 0 4px; color: var(--ink); }
.nb-promo-text p { font-size: 13.5px; color: var(--dim); max-width: 520px; }
.btn-nbpromo { width: auto; margin-top: 12px; padding: 10px 22px; }
.nb-promo-art { width: 280px; max-width: 40%; height: auto; flex-shrink: 0; }
@media (max-width: 720px) { .nb-promo { flex-direction: column; align-items: flex-start; } .nb-promo-art { max-width: 80%; align-self: center; } }

.filters-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin-top: 16px; position: relative; z-index: 5; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 22px; padding: 7px 16px; font-size: 14px; font-weight: 600; color: var(--dim); transition: .15s; }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip-owner.active { background: var(--owner); border-color: var(--owner); }
.hot-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 12px; padding: 10px 12px; background: #fff8ec; border: 1px solid #f5dfb8; border-radius: 11px; }
.hot-label { font-size: 13px; font-weight: 700; color: var(--owner); }
.hot { border: 1px solid #eed49a; background: #fff; border-radius: 18px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: #7c5209; transition: .15s; }
.hot:hover { border-color: var(--owner); color: var(--owner); }
.hot.active { background: var(--owner); border-color: var(--owner); color: #fff; }
.filter-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 9px; margin-top: 13px; }
.filter-row select, .filter-row input { border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px; font-size: 13.5px; font-family: inherit; background: #fff; color: var(--ink); min-width: 0; }
.filter-row input:focus, .filter-row select:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
.filter-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 13px; flex-wrap: wrap; gap: 10px; }
.dup-toggle { font-size: 13.5px; color: var(--dim); display: flex; gap: 7px; align-items: center; }
#dupInfo { color: var(--accent); font-weight: 600; }

.btn { border: none; border-radius: 10px; padding: 10px 18px; font-size: 14px; font-weight: 700; }
.btn-alert { background: var(--ink); color: #fff; }
.btn-alert:hover { background: #000; }
.btn-more { background: #fff; border: 1px solid var(--line); color: var(--ink); margin: 22px auto; display: block; padding: 11px 34px; }
.btn-accent { background: var(--accent); color: #fff; width: 100%; }
.btn-owner { background: var(--owner); color: #fff; width: 100%; }

/* gamige.com-style dense price list — used for new-build/developer comparison */
.nb-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.nb-head { display: grid; grid-template-columns: 44px 1fr 160px 150px; gap: 12px; padding: 10px 18px; font-size: 12px; font-weight: 700; color: var(--dim); background: var(--bg); border-bottom: 1px solid var(--line); }
.nb-row { display: grid; grid-template-columns: 44px 1fr 160px 150px; gap: 12px; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); cursor: pointer; transition: background .12s; }
.nb-row:last-child { border-bottom: none; }
.nb-row:hover { background: var(--bg); }
.dev-logo { width: 40px; height: 40px; border-radius: 10px; color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; letter-spacing: .3px; flex-shrink: 0; }
.dev-logo-img { object-fit: contain; background: #fff; border: 1px solid var(--line); padding: 2px; }
.nb-thumb { width: 44px; height: 40px; border-radius: 9px; object-fit: cover; flex-shrink: 0; background: var(--bg); }
.nb-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.nb-tag { align-self: flex-start; background: var(--bg); color: var(--dim); font-size: 10.5px; font-weight: 700; border-radius: 6px; padding: 2px 8px; border: 1px solid var(--line); }
.nb-name { font-size: 14.5px; font-weight: 700; }
.nb-addr { font-size: 12px; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nb-track { background: var(--bg); border-radius: 6px; height: 12px; overflow: hidden; }
.nb-bar { height: 100%; background: linear-gradient(90deg, #1d4ed8, #3b82f6); min-width: 6px; border-radius: 0 4px 4px 0; }
.nb-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.nb-from { font-size: 14px; font-weight: 800; }
.nb-from.dim { font-size: 12px; font-weight: 600; color: var(--dim); }
.nb-sqm { font-size: 12.5px; color: var(--accent); font-weight: 700; }
@media (max-width: 720px) {
  .nb-head { display: none; }
  .nb-row { grid-template-columns: 44px 1fr; grid-template-areas: "logo main" "track track" "prices prices"; gap: 8px 10px; }
  .nb-row .dev-logo { grid-area: logo; }
  .nb-row .nb-main { grid-area: main; }
  .nb-row .nb-track { grid-area: track; }
  .nb-row .nb-prices { grid-area: prices; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* sidebar (districts + developers) */
.main-flex { display: flex; gap: 18px; align-items: flex-start; }
.sidebar { width: 248px; flex-shrink: 0; position: sticky; top: 72px; display: flex; flex-direction: column; gap: 14px; margin-top: 20px; max-height: calc(100vh - 92px); overflow-y: auto; padding-right: 10px; scrollbar-width: thin; scrollbar-color: #b9cfc7 transparent; }
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: #b9cfc7; border-radius: 3px; }
.sidebar::-webkit-scrollbar-thumb:hover { background: #93b3a8; }
.sidebar > * { flex-shrink: 0; }
.main-col { flex: 1; min-width: 0; }
.side-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; position: relative; overflow: hidden; }
.side-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 64px; pointer-events: none; }
.side-card:first-child::before { background: linear-gradient(180deg, var(--accent-soft), transparent); }
.side-card-devs::before { background: linear-gradient(180deg, #e8edff, transparent) !important; }
.side-card-devs .side-title::after { background: #4c6ef5; }
.side-title { font-size: 14px; font-weight: 800; margin-bottom: 9px; position: relative; }
.title-tail { display: block; font-size: 10.5px; font-weight: 600; color: var(--dim); margin-top: 2px; letter-spacing: .2px; }
.side-title::after { content: ""; display: block; width: 34px; height: 3px; border-radius: 2px; background: var(--accent); margin-top: 5px; opacity: .5; }
.side-item, .side-dev { position: relative; }

/* developer ad slot — B2B revenue surface, sells itself */
.side-ad { border-radius: var(--radius); padding: 18px 16px; background: linear-gradient(150deg, #0d3b32, #0e7a5f); color: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.side-ad::before { content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,.07); }
.side-ad::after { content: ""; position: absolute; right: 10px; bottom: -40px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.05); }
.side-ad-tag { display: inline-block; background: rgba(255,255,255,.16); border-radius: 12px; padding: 2px 10px; font-size: 10.5px; font-weight: 700; letter-spacing: .4px; margin-bottom: 10px; }
.side-ad b { display: block; font-size: 16px; margin-bottom: 4px; }
.side-ad p { font-size: 12.5px; opacity: .85; margin-bottom: 12px; line-height: 1.45; }
.side-ad-btn { background: #fff; color: var(--accent); width: 100%; padding: 9px 12px; font-size: 13px; position: relative; }
.side-ad-btn:hover { background: var(--accent-soft); }
.side-item { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 8px; font-size: 13px; cursor: pointer; color: var(--ink); }
.side-item-main { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.side-dot { width: 27px; height: 27px; border-radius: 8px; color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.side-name { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-sub { font-size: 11px; color: var(--dim); line-height: 1.45; }
.side-item.active .side-sub { color: var(--accent); }
.side-item:hover { background: var(--bg); }
.side-item.active { background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.side-count { font-size: 11.5px; color: var(--dim); background: var(--bg); border-radius: 10px; padding: 1px 8px; font-weight: 600; }
.side-item.active .side-count { background: #fff; color: var(--accent); }
#sideDevs { max-height: 36vh; overflow-y: auto; padding-right: 5px; scrollbar-width: thin; scrollbar-color: #c3cede transparent; }
.side-cta { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 15px 16px; text-align: center; }
.side-cta b { display: block; font-size: 14px; margin-bottom: 4px; }
.side-cta p { font-size: 12px; color: var(--dim); margin-bottom: 10px; }
.side-cta .btn { width: 100%; padding: 9px 12px; font-size: 13px; }
#sideDevs::-webkit-scrollbar { width: 5px; }
#sideDevs::-webkit-scrollbar-thumb { background: #c3cede; border-radius: 3px; }
.side-dev { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 8px; font-size: 13.5px; cursor: pointer; }
.side-dev:hover { background: var(--bg); }
.side-dev.active { background: var(--accent-soft); }
.side-dev .dev-logo { width: 30px; height: 30px; border-radius: 8px; font-size: 11.5px; }
.side-dev-info { flex: 1; min-width: 0; }
.side-dev-name { font-weight: 700; font-size: 13px; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-dev-meta { font-size: 11.5px; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-all-btn { margin-top: 10px; padding: 8px 12px; font-size: 12.5px; }
@media (max-width: 960px) { .sidebar { display: none; } }

/* active filter chips */
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin: 18px 2px 0; }
.active-filters:empty { display: none; }
.af-chip { background: var(--accent-soft); color: var(--accent); border: 1px solid #bfe3d8; border-radius: 16px; padding: 5px 13px; font-size: 12.5px; font-weight: 700; }
.af-chip:hover { background: #d3ece3; }
.af-clear { background: none; border: none; color: var(--dim); text-decoration: underline; font-size: 12px; }
.chip-n, .hot-n { opacity: .72; font-weight: 600; font-size: 11.5px; }
.side-item.side-dim { opacity: .45; }

/* results */
.results-line { margin: 14px 2px 12px; font-size: 14px; color: var(--dim); }
.results-line b { color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: transform .12s, box-shadow .12s; position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(16, 32, 48, .12); }
.card-img { height: 168px; background: #dde4ea; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img .noimg { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; height: 100%; font-size: 42px; background: linear-gradient(135deg, #e7edf2, #d3dde6); }
.noimg small { font-size: 12px; color: var(--dim); font-weight: 600; }
.noimg-owner { background: linear-gradient(150deg, #12856a, #0b5d49) !important; position: relative; justify-content: flex-end; padding-bottom: 8px; }
.noimg-owner svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.noimg-owner small { position: relative; color: rgba(255,255,255,.92); font-size: 11.5px; background: rgba(0,0,0,.18); border-radius: 10px; padding: 2px 10px; }
.badge { position: absolute; top: 10px; left: 10px; font-size: 11.5px; font-weight: 700; border-radius: 7px; padding: 3px 9px; background: rgba(15, 23, 32, .78); color: #fff; }
.badge-owner { background: var(--owner); }
.badge-vip { background: linear-gradient(135deg, #b8860b, #daa520); }
.badge-feat { background: #d97706; }
.badge-newbuild { background: #1d4ed8; }
.dev-name { font-weight: 700; color: var(--ink); }
.card.vip { border: 2px solid #daa520; box-shadow: 0 0 0 3px rgba(218, 165, 32, .15), var(--shadow); }
.card.featured { border: 2px solid #f59e0b; }
.badge-dup { position: absolute; top: 10px; right: 10px; background: var(--danger); color: #fff; font-size: 11px; border-radius: 7px; padding: 3px 8px; font-weight: 700; }
.imgcount { position: absolute; bottom: 8px; right: 10px; color: #fff; font-size: 11.5px; background: rgba(15,23,32,.6); border-radius: 6px; padding: 2px 7px; }
.card-body { padding: 13px 14px 14px; }
.price { font-size: 18.5px; font-weight: 800; }
.price small { font-weight: 600; color: var(--dim); font-size: 12.5px; margin-left: 6px; }
.card-title { font-size: 13.8px; font-weight: 600; margin-top: 5px; height: 42px; overflow: hidden; }
.card-loc { font-size: 12.5px; color: var(--dim); margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--dim); margin-top: 9px; border-top: 1px dashed var(--line); padding-top: 9px; }
.src-line { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--dim); margin-top: 8px; }
.src-line .src { font-weight: 700; color: var(--accent); }
.src-line .src.owner { color: var(--owner); }

/* modals */
.overlay { position: fixed; inset: 0; background: rgba(10, 18, 26, .55); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal { background: #fff; border-radius: 16px; max-width: 780px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 0; position: relative; }
.modal-sm { max-width: 470px; }
.modal-pricing { max-width: 900px; }
.m-close { position: absolute; top: 12px; right: 14px; border: none; background: rgba(15,23,32,.08); border-radius: 50%; width: 34px; height: 34px; font-size: 16px; z-index: 5; }
.m-img { height: 300px; background: #dde4ea; }
.m-img img { width: 100%; height: 100%; object-fit: cover; }
.m-img .noimg { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 72px; background: linear-gradient(135deg, #e7edf2, #d3dde6); }
.m-dev-hero { height: 100%; display: flex; align-items: center; justify-content: center; }
.m-dev-initials { width: 110px; height: 110px; border-radius: 24px; background: rgba(255,255,255,.22); color: #fff; font-size: 38px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.m-body { padding: 20px 24px 24px; }
.m-price { font-size: 26px; font-weight: 800; }
.m-price small { font-size: 14px; color: var(--dim); margin-left: 8px; }
.m-title { font-size: 17px; font-weight: 700; margin-top: 6px; }
.m-loc { color: var(--dim); font-size: 14px; margin-top: 4px; }
.m-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
.m-meta div { background: var(--bg); border-radius: 10px; padding: 9px 12px; font-size: 13px; }
.m-meta b { display: block; font-size: 15px; }
.m-desc { font-size: 14px; color: #333d47; }
.m-note { background: var(--accent-soft); border: 1px solid #bfe3d8; border-radius: 12px; padding: 14px 16px; font-size: 13.5px; margin-top: 16px; }
.m-note.owner-note { background: var(--owner-soft); border-color: #fcd9a0; }
.m-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.m-actions .btn { flex: 1; text-align: center; }
.phone-reveal { font-size: 22px; font-weight: 800; color: var(--owner); letter-spacing: 1px; }
.lock-teaser { background: var(--bg); border: 1px dashed var(--line); border-radius: 10px; padding: 10px 14px; font-size: 13px; color: var(--dim); margin-top: 14px; }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 24px; }
.plan { border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.plan.hot { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); position: relative; }
.plan h3 { font-size: 16px; }
.plan .p-price { font-size: 26px; font-weight: 800; margin: 8px 0 4px; }
.plan .p-price span { font-size: 13px; color: var(--dim); font-weight: 500; }
.plan ul { list-style: none; margin: 12px 0 16px; font-size: 13.5px; color: #333d47; }
.plan li { padding: 4px 0; }
.p-tag { position: absolute; top: -11px; left: 20px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; border-radius: 12px; padding: 2px 11px; }
.m-head { padding: 22px 24px 0; font-size: 19px; font-weight: 800; }
.m-subhead { padding: 4px 24px 0; color: var(--dim); font-size: 13.5px; }

/* forms in modals */
.f-body { padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.f-body input, .f-body select, .f-body textarea { border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; font-size: 14px; font-family: inherit; width: 100%; }
.f-body textarea { min-height: 80px; resize: vertical; }
.f-ok { background: var(--accent-soft); color: var(--accent); border-radius: 10px; padding: 12px 14px; font-size: 14px; font-weight: 600; }

/* owner packages + demo payment */
.pkg-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pkg-row-4 { grid-template-columns: repeat(2, 1fr); }
.pkg-hot { border-color: #daa520; background: linear-gradient(180deg, #fffbeb, #fff); }

/* VIP showcase strip */
.vip-strip { background: linear-gradient(180deg, #fffbeb, #fff 55%); border: 1px solid #f2dfa8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 16px 16px; margin-top: 16px; }
.vip-strip-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 11px; flex-wrap: wrap; }
.vip-strip-head span { font-size: 15px; font-weight: 800; color: #92610a; }
.vip-strip-head small { color: var(--dim); font-size: 12px; }
.vip-strip-head a { color: #b45309; font-weight: 700; }
.vip-strip-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; }
.vip-mini { flex: 0 0 210px; background: #fff; border: 2px solid #e8c86e; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform .12s; }
.vip-mini:hover { transform: translateY(-2px); }
.vip-mini-img { height: 104px; background: #eee; position: relative; }
.vip-mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vip-mini-img .noimg { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 30px; background: linear-gradient(135deg, #e7edf2, #d3dde6); }
.vip-mini-img .badge { top: 7px; left: 7px; padding: 2px 7px; font-size: 11px; }
.vip-mini-body { padding: 8px 10px 10px; }
.vip-mini-body .price { font-size: 14.5px; }
.vip-mini-title { font-size: 11.5px; font-weight: 600; margin-top: 3px; height: 30px; overflow: hidden; }
.vip-mini-loc { font-size: 10.5px; color: var(--dim); margin-top: 3px; }
.pkg { border: 1px solid var(--line); border-radius: 11px; padding: 10px 8px; text-align: center; font-size: 12px; cursor: pointer; display: flex; flex-direction: column; gap: 2px; }
.pkg:has(input:checked) { border-color: var(--owner); background: var(--owner-soft); }
.pkg input { display: none; }
.pkg b { font-size: 12.5px; }
.pkg-price { font-weight: 800; font-size: 15px; }
.pkg small { color: var(--dim); font-size: 10.5px; line-height: 1.3; }
.pay-box { display: flex; flex-direction: column; gap: 10px; }
.pay-line { display: flex; justify-content: space-between; background: var(--bg); border-radius: 9px; padding: 10px 13px; font-size: 14px; }
.dim-line { color: var(--dim); }

/* district price comparison */
.stats-tabs { display: flex; gap: 8px; padding: 14px 24px 4px; }
.stats-list { padding: 12px 24px 6px; }
.stat-row { display: grid; grid-template-columns: 210px 1fr 110px; gap: 12px; align-items: center; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.stat-row:last-child { border-bottom: none; }
.stat-name { font-size: 13.5px; font-weight: 600; }
.stat-name small { color: var(--dim); font-weight: 400; }
.stat-track { background: var(--bg); border-radius: 6px; height: 14px; overflow: hidden; }
.stat-bar { height: 100%; background: var(--accent); border-radius: 0 4px 4px 0; min-width: 6px; }
.stat-val { font-size: 14px; font-weight: 800; text-align: right; white-space: nowrap; }
.stat-val small { color: var(--dim); font-weight: 500; font-size: 11px; }
.stat-row.cheapest .stat-name { color: var(--accent); }
.stat-row.cheapest .stat-bar { background: linear-gradient(90deg, var(--accent), #16a34a); }
.cheap-tag { background: var(--accent-soft); color: var(--accent); font-size: 10.5px; font-weight: 700; border-radius: 10px; padding: 2px 8px; vertical-align: 1px; }
.stats-foot { padding: 12px 24px 22px; font-size: 12.5px; color: var(--dim); border-top: 1px solid var(--line); margin-top: 8px; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 130px 1fr 84px; } .pkg-row { grid-template-columns: 1fr; } }

.footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 22px 0 34px; font-size: 13px; color: var(--dim); background: #fff; }
.footer .dim { font-size: 12px; margin-top: 6px; }

@media (max-width: 900px) {
  .filter-row { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .m-meta { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 23px; }
}
