:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #0f1b2d;
  --ink-2: #47566b;
  --muted: #7a879b;
  --line: #e7ecf3;
  --brand: #1463ff;
  --brand-dark: #0b47c2;
  --accent: #10b981;
  --dark: #0f1b2d;
  --warn: #f59e0b;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(16,30,54,.06), 0 4px 12px rgba(16,30,54,.05);
  --shadow-md: 0 10px 30px rgba(16,30,54,.10);
  --shadow-lg: 0 24px 60px rgba(16,30,54,.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; cursor: pointer; }
.muted { color: var(--muted); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ===== BUTTONS ===== */
.btn {
  font-family: inherit; font-weight: 600; font-size: 14px;
  border: none; border-radius: 10px; padding: 11px 18px;
  cursor: pointer; transition: .16s ease; display: inline-flex;
  align-items: center; gap: 6px; justify-content: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 6px 18px rgba(20,99,255,.35); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1c2c44; }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: #eef2f8; }
.btn-outline { background:#fff; border:1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.full { width: 100%; }
.link { background:none;border:none;color:var(--brand);cursor:pointer;font:inherit;font-weight:600;text-decoration:underline; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.logo { font-weight: 800; font-size: 20px; display: flex; align-items: center; gap: 9px; color: var(--ink); }
.logo-mark { width: 32px; height: 32px; display: block; flex: none; filter: drop-shadow(0 2px 4px rgba(20,99,255,.25)); }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--brand); }
.nav-actions { margin-left: auto; display: flex; gap: 10px; }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, #e3edff 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 0%, #eafff5 0%, transparent 55%),
    var(--bg);
  padding: 64px 24px 40px;
}
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line);
  padding: 6px 15px 6px 7px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--ink-2); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hb-mark { width: 22px; height: 22px; flex: none; }
.opt-mark { width: 15px; height: 15px; vertical-align: -2px; }
.hero h1 { font-size: 52px; font-weight: 800; }
.hero h1 span { color: var(--brand); }
.hero-sub { color: var(--ink-2); font-size: 18px; max-width: 620px; margin: 18px auto 30px; }

.search-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 14px; display: grid;
  grid-template-columns: 2fr 1fr 1.2fr auto; gap: 12px; text-align: left; align-items: end;
}
.search-field label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin: 0 0 5px 4px; }
.search-field input, .search-field select {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 15px; background: #fbfcfe; color: var(--ink);
}
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--brand); background:#fff; }
.btn-search { height: 46px; padding: 0 24px; }

.hero-trust { display: flex; gap: 22px; justify-content: center; margin-top: 24px; flex-wrap: wrap; color: var(--ink-2); font-size: 14px; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { max-width: 1180px; margin: 0 auto; padding: 56px 24px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: 28px; }
.filters { display: flex; gap: 8px; align-items: center; }
.chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  padding: 8px 15px; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: .15s;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sort-select { border: 1.5px solid var(--line); background:#fff; padding: 8px 12px; border-radius: 10px; font: inherit; font-size: 14px; font-weight: 500; color: var(--ink); cursor: pointer; }

/* ===== GRID / CARDS ===== */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s ease; cursor: pointer; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d5e0f0; }
.card-media {
  height: 150px; display: grid; place-items: center; font-size: 54px; position: relative;
  background: linear-gradient(135deg, #eef4ff, #e9fbf3);
}
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.badge { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: var(--shadow-sm); }
.badge.verified { background: var(--accent); color: #fff; }
.card-fav { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.92); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-loc { font-size: 12px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: .04em; }
.card-title { font-size: 16px; font-weight: 700; margin: 6px 0 4px; }
.card-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag { font-size: 11px; font-weight: 600; background: #f1f5fb; color: var(--ink-2); padding: 4px 9px; border-radius: 7px; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.card-price b { font-size: 20px; font-weight: 800; }
.card-price span { font-size: 13px; color: var(--muted); }
.card-rating { font-size: 13px; font-weight: 600; }

/* ===== HOW / STEPS ===== */
.how { text-align: center; }
.how h2 { font-size: 28px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; text-align: left; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.step-num { width: 38px; height: 38px; border-radius: 11px; background: #eef4ff; color: var(--brand); font-weight: 800; display: grid; place-items: center; font-size: 18px; margin-bottom: 14px; }
/* inline stroke-icon system */
.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: -4px; flex: none; }
.hero-trust .ic { color: var(--brand); }
.step-ic { position: relative; width: 46px; height: 46px; border-radius: 13px; background: #eef4ff; color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.step-ic .ic { width: 23px; height: 23px; stroke-width: 1.9; vertical-align: 0; }
.step-n { position: absolute; top: -6px; right: -6px; width: 19px; height: 19px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; box-shadow: 0 2px 5px rgba(20,99,255,.4); }
.step h3 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--ink-2); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
.pricing-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-sm); position: relative; }
.pricing-card.highlight { border: 2px solid var(--brand); box-shadow: var(--shadow-md); }
.ribbon { position: absolute; top: -13px; left: 30px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: 999px; }
.pricing-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.price-big { font-size: 44px; font-weight: 800; margin: 10px 0 18px; }
.price-big span { font-size: 15px; font-weight: 600; color: var(--muted); }
.pricing-card ul { list-style: none; margin-bottom: 22px; }
.pricing-card li { padding: 8px 0; font-size: 14.5px; color: var(--ink-2); border-bottom: 1px solid #f1f5fb; }
.pricing-note { text-align: center; margin-top: 26px; color: var(--ink-2); font-size: 15px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #cdd6e4; margin-top: 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 48px 24px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .logo { color: #fff; margin-bottom: 10px; }
.footer .muted { color: #8a97ad; }
.footer-cols { display: flex; gap: 60px; }
.footer-cols strong { display: block; color: #fff; margin-bottom: 12px; font-size: 14px; }
.footer-cols a { display: block; color: #9fabc0; font-size: 14px; padding: 4px 0; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #23324a; padding: 20px 24px; text-align: center; font-size: 13px; }

/* ===== MODAL ===== */
.modal-root { position: fixed; inset: 0; z-index: 100; background: rgba(15,27,45,.55); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px; overflow-y: auto; }
.modal { background: #fff; border-radius: 20px; width: 100%; max-width: 560px; box-shadow: var(--shadow-lg); max-height: 92vh; overflow-y: auto; animation: pop .2s ease; }
@keyframes pop { from { transform: scale(.96) translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 11px; position: sticky; top: 0; background: #fff; border-radius: 20px 20px 0 0; z-index: 2; }
.modal-head .modal-close { margin-left: auto; }
.mh-mark { width: 28px; height: 28px; flex: none; }
.modal-head h3 { font-size: 20px; }
.modal-close { background: #f1f5fb; border: none; width: 34px; height: 34px; border-radius: 9px; font-size: 18px; cursor: pointer; color: var(--ink-2); }
.modal-close:hover { background: #e7ecf3; }
.modal-body { padding: 24px; }

/* detail modal */
.detail-hero { height: 180px; border-radius: 14px; background: linear-gradient(135deg,#eef4ff,#e9fbf3); display: grid; place-items: center; font-size: 72px; margin-bottom: 18px; position: relative; }
.detail-loc { color: var(--brand); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.detail-title { font-size: 22px; margin: 6px 0; }
.detail-desc { color: var(--ink-2); font-size: 15px; margin: 14px 0; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.spec-row { display: flex; gap: 24px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 16px 0; }
.spec { flex: 1; }
.spec small { display: block; color: var(--muted); font-size: 12px; margin-bottom: 3px; }
.spec b { font-size: 15px; }

/* form */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; font-size: 15px; background: #fbfcfe;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error { border-color: #ef4444 !important; }
.err-msg { color: #ef4444; font-size: 12px; margin-top: 4px; }

/* payout / breakdown */
.breakdown { background: #f8fafd; border: 1px solid var(--line); border-radius: 14px; padding: 18px; margin: 6px 0 18px; }
.brk-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14.5px; color: var(--ink-2); }
.brk-row.total { border-top: 1.5px dashed var(--line); margin-top: 6px; padding-top: 12px; font-weight: 800; font-size: 17px; color: var(--ink); }
.brk-row.commission { color: var(--brand); font-weight: 600; }
.brk-row.payout { color: var(--accent); font-weight: 700; }
.note-box { background: #eafff5; border: 1px solid #b8f0d8; border-radius: 12px; padding: 13px 15px; font-size: 13.5px; color: #06694a; margin-bottom: 18px; }
.note-box.blue { background: #eef4ff; border-color: #cadcff; color: #0b47c2; }

/* success */
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; margin: 0 auto 16px; font-size: 32px; color: #fff; }
.pass { background: linear-gradient(135deg,var(--brand),#4d8bff); color: #fff; border-radius: 16px; padding: 20px; margin: 18px 0; }
.pass small { opacity: .8; font-size: 12px; }
.pass .pass-code { font-size: 26px; font-weight: 800; letter-spacing: .12em; margin-top: 4px; }

/* bookings list */
.booking-item { display: flex; gap: 14px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; }
.booking-emoji { font-size: 30px; }
.booking-info { flex: 1; }
.booking-info b { font-size: 15px; }
.booking-info small { display: block; color: var(--muted); font-size: 13px; }
.status-pill { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: #eafff5; color: #06694a; }

/* toast */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 12px; font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 200; animation: slideup .25s ease; }
@keyframes slideup { from { transform: translate(-50%,20px); opacity: 0; } to { transform: translate(-50%,0); opacity: 1; } }
.empty { text-align: center; padding: 60px; color: var(--muted); font-size: 16px; }

/* ===== AUTH / ROLE UI ===== */
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.user-chip { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px; box-shadow: var(--shadow-sm); }
.user-identity { display: flex; align-items: center; gap: 7px; background: transparent; border: none; padding: 3px 8px 3px 3px; border-radius: 999px; cursor: pointer; font: inherit; }
.user-identity:hover { background: #f1f5fb; }
.user-name { font-weight: 600; font-size: 14px; }
.role-badge { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; color: #fff; }
.role-admin { background: #7c3aed; }
.role-owner { background: var(--brand); }
.role-buyer { background: var(--accent); }

/* avatar (profile picture or initials) */
.avatar-img { border-radius: 50%; object-fit: cover; flex: none; display: block; }
.avatar-initials { border-radius: 50%; background: linear-gradient(135deg, var(--brand), #4d8bff); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* brand marks in modals / states */
.modal-brand { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 2px 0 18px; font-weight: 800; font-size: 18px; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; }
.brand-hero { display: flex; justify-content: center; margin-bottom: 8px; }
.brand-hero-mark { width: 64px; height: 64px; filter: drop-shadow(0 6px 14px rgba(20,99,255,.28)); }
.empty-mark { display: flex; justify-content: center; margin-bottom: 14px; }
.brand-empty-mark { width: 46px; height: 46px; opacity: .9; }
.pass-top { display: flex; align-items: center; justify-content: center; gap: 8px; }
.pass-car { width: 22px; height: 22px; }

.auth-tabs { display: flex; gap: 6px; background: #f1f5fb; padding: 5px; border-radius: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.auth-tab { flex: 1; border: none; background: transparent; padding: 9px 12px; border-radius: 9px; font: inherit; font-weight: 600; font-size: 14px; color: var(--ink-2); cursor: pointer; min-width: 80px; }
.auth-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.role-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.role-opt { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px; cursor: pointer; transition: .15s; }
.role-opt:hover { border-color: var(--brand); }
.role-opt input { accent-color: var(--brand); }
.role-opt:has(input:checked) { border-color: var(--brand); background: #f5f9ff; }
.role-opt b { font-size: 14px; display: block; }
.role-opt small { font-size: 12px; color: var(--muted); }
.demo-creds { text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); }
.pw-rules { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pw-rules span { font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: #f1f5fb; color: var(--muted); border: 1px solid var(--line); }
.pw-rules span::before { content: '○ '; }
.pw-rules span.ok { background: #eafff5; color: #06694a; border-color: #b8f0d8; }
.pw-rules span.ok::before { content: '✓ '; }

/* stats / dashboards */
.stat-strip { display: flex; gap: 12px; margin-bottom: 18px; }
.stat-strip .stat { flex: 1; background: #f8fafd; border: 1px solid var(--line); border-radius: 12px; padding: 14px; text-align: center; }
.stat-strip .stat small { display: block; color: var(--muted); font-size: 12px; }
.stat-strip .stat b { font-size: 20px; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: #f8fafd; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.stat-card.highlight { background: #eef4ff; border-color: #cadcff; }
.stat-card small { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.stat-card b { display: block; font-size: 30px; font-weight: 800; margin: 6px 0 2px; }
.stat-card span { font-size: 13px; color: var(--ink-2); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { text-align: left; color: var(--muted); font-size: 12px; text-transform: uppercase; padding: 8px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 10px 8px; border-bottom: 1px solid #f1f5fb; }

.status-pill.status-pending { background: #fff7e6; color: #b45309; }
.status-pill.status-approved { background: #eafff5; color: #06694a; }
.status-pill.status-rejected { background: #fee2e2; color: #b91c1c; }

/* ===== SEARCH ACTIONS / POPULAR / NEAR ME ===== */
.search-actions { display: flex; gap: 8px; }
.search-actions .btn-search { height: 46px; padding: 0 18px; white-space: nowrap; }
.popular { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }
.pop-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.pop-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .15s; box-shadow: var(--shadow-sm); }
.pop-chip:hover { border-color: var(--brand); color: var(--brand); }

/* ===== LIVE BAR / CONNECTION ===== */
.live-row { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 13.5px; color: var(--ink-2); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.55); } 70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }
.conn { font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.conn.ok { background: #eafff5; color: #06694a; }
.conn.off { background: #fee2e2; color: #b91c1c; }

/* ===== VIEW TOGGLE ===== */
.view-toggle { display: inline-flex; background: #f1f5fb; border-radius: 10px; padding: 4px; gap: 3px; }
.vbtn { border: none; background: transparent; padding: 7px 12px; border-radius: 8px; font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; }
.vbtn.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ===== RESULTS LAYOUT (list / split / map) ===== */
.results { position: relative; }
.results .map { display: none; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); z-index: 1; }
.results.view-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.results.view-split .grid { grid-template-columns: 1fr; max-height: 78vh; overflow-y: auto; padding-right: 4px; }
.results.view-split .map { display: block; height: 78vh; position: sticky; top: 82px; }
.results.view-map .grid { display: none; }
.results.view-map .map { display: block; height: 74vh; }

/* ===== PRICE PINS ===== */
.price-pin { background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 9px; border-radius: 999px; box-shadow: 0 3px 8px rgba(0,0,0,.3); white-space: nowrap; border: 2px solid #fff; text-align: center; transition: .12s; }
.price-pin.booked { background: #9aa6b6; }
.price-pin.active { background: var(--brand); transform: scale(1.18); }
.map-pop { min-width: 180px; }
.map-pop b { font-size: 14px; }
.mp-meta { color: #7a879b; font-size: 12px; margin: 3px 0; }
.mp-price { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.mp-avail { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.mp-avail.on { color: #06694a; } .mp-avail.off { color: #b45309; }
.mp-btn { width: 100%; background: var(--brand); color: #fff; border: none; padding: 8px; border-radius: 8px; font-weight: 700; cursor: pointer; }
.mp-btn:hover { background: var(--brand-dark); }

/* ===== RICH LISTING FORM ===== */
.form-section { border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 14px; background: #fcfdff; }
.form-section h4 { font-size: 14px; margin-bottom: 12px; color: var(--ink); }
.form-section h4 .muted { font-weight: 400; }
.small { font-size: 12.5px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); cursor: pointer; padding: 6px 4px; }
.check input { accent-color: var(--brand); width: 16px; height: 16px; }
.pick-map { height: 220px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); z-index: 1; }

/* upload */
.dropzone { display: block; border: 2px dashed #cdd8e8; border-radius: 12px; padding: 22px; text-align: center; cursor: pointer; color: var(--ink-2); font-weight: 600; transition: .15s; }
.dropzone:hover { border-color: var(--brand); color: var(--brand); background: #f5f9ff; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.thumb { position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-x { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; border-radius: 50%; border: none; background: rgba(15,27,45,.75); color: #fff; cursor: pointer; font-size: 12px; }

/* ===== AREA / CONTENT / TOOL PAGES ===== */
.area-wrap, .content-wrap, .tool-wrap { max-width: 1180px; margin: 0 auto; padding: 26px 24px 60px; }
.tool-wrap, .content-wrap { max-width: 760px; }
.area-title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.area-sub { color: var(--ink-2); font-size: 16px; margin-bottom: 24px; }
.area-grid { margin-bottom: 40px; }
.area-seo { border-top: 1px solid var(--line); padding-top: 24px; color: var(--ink-2); }
.area-seo h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.area-seo p { font-size: 14.5px; line-height: 1.7; }

.tool-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); }

/* ===== ACCOUNT PAGES (/account/*, /admin/*, /list-a-spot) ===== */
.account-wrap { max-width: 760px; margin: 0 auto; padding: 26px 24px 60px; }
.account-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); }
.account-tabs { margin: 16px 0 22px; max-width: 100%; flex-wrap: wrap; }

/* profile page */
.profile-head { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.avatar-wrap { position: relative; flex: none; }
.avatar-wrap .avatar-img, .avatar-wrap .avatar-initials { width: 76px; height: 76px; font-size: 28px; }
.avatar-edit { position: absolute; bottom: -2px; right: -2px; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; cursor: pointer; box-shadow: var(--shadow-sm); }
.profile-name { font-size: 19px; font-weight: 800; margin-bottom: 4px; }

.verify-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.verify-row > div { font-size: 14.5px; }
.verified-tag { font-size: 11.5px; font-weight: 700; color: #06694a; background: #eafff5; padding: 3px 9px; border-radius: 999px; margin-left: 8px; }
.unverified-tag { font-size: 11.5px; font-weight: 700; color: #92400e; background: #fff7e6; padding: 3px 9px; border-radius: 999px; margin-left: 8px; }
.verify-box { background: #f8fafd; border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-top: 12px; }

.danger-zone { border: 1px solid #fecaca !important; background: #fff5f5; border-radius: 14px; padding: 18px; }
.danger-zone h4 { color: #b91c1c; }
.danger-btn { background: #fff; border: 1.5px solid #ef4444; color: #ef4444; }
.danger-btn:hover { background: #ef4444; color: #fff; }
.danger-box { border-color: #fecaca; background: #fff5f5; }

/* wallet / billing ledger */
.wallet-balance { text-align: center; padding: 10px 0 4px; }
.wallet-balance small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.wallet-balance b { font-size: 40px; font-weight: 800; color: var(--brand); display: block; margin: 4px 0; }
.ledger-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f5fb; }
.ledger-row:last-child { border-bottom: none; }
.ledger-ic { font-size: 20px; flex: none; }
.ledger-info { flex: 1; min-width: 0; }
.ledger-info b { font-size: 14.5px; display: block; }
.ledger-info small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.ledger-amt { font-weight: 800; font-size: 15px; white-space: nowrap; }
.ledger-amt.plus { color: #06694a; }
.ledger-amt.minus { color: var(--ink-2); }

/* ===== AUTH PAGE (/login, /signup) - centered card, real page not a popup ===== */
.auth-wrap { max-width: 1180px; margin: 0 auto; padding: 48px 24px 70px; display: flex; justify-content: center; }
.auth-card { width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-md); }

.legal h4 { font-size: 16px; margin: 20px 0 6px; }
.legal p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }
.safety-list { list-style: none; margin-top: 18px; }
.safety-list li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }

.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; border: none; padding: 16px 18px; font: inherit; font-size: 15.5px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq-q:hover { background: #f8fafd; }
.faq-q span { color: var(--brand); font-size: 20px; font-weight: 700; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; transition: max-height .2s ease, padding .2s ease; }
.faq-a.open { max-height: 260px; padding: 0 18px 16px; }

/* popular localities */
.localities-sec h2 { font-size: 28px; text-align: center; }
.locality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.locality-tile { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); transition: .18s; cursor: pointer; display: block; }
.locality-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d5e0f0; }
.lt-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.lt-meta { font-size: 13px; color: var(--brand); font-weight: 600; margin: 5px 0 3px; }
.lt-area { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .locality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .locality-grid { grid-template-columns: 1fr; } }

/* ===== STATS RIBBON ===== */
.stats-ribbon {
  background: var(--dark); color: #fff; padding: 28px 24px;
}
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; display: block; letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }
@media (max-width: 640px) {
  .stats-inner { gap: 20px; }
  .stat-num { font-size: 22px; }
  .stat-divider { display: none; }
  .stats-inner { justify-content: space-around; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-sec h2 { font-size: 28px; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-sm); transition: .18s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tc-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.tc-quote { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 14px; }
.tc-author .muted { font-size: 12.5px; display: block; margin-top: 1px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  transition: transform .18s, box-shadow .18s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.55); }
@media (max-width: 560px) { .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; } }

/* ===== FULL-PAGE LISTING (client route) ===== */
.lp-wrap { max-width: 1180px; margin: 0 auto; padding: 26px 24px 60px; }
.lp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.lp-breadcrumb a { color: var(--brand); font-weight: 600; }
.lp-back { margin-left: auto; }
.lp-grid { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }
.lp-title { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.lp-price { display: flex; align-items: center; gap: 8px; margin: 12px 0 4px; font-size: 16px; color: var(--ink-2); }
.lp-price b { font-size: 26px; color: var(--ink); }
.lp-dep { color: var(--muted); }
.lp-fav { margin-left: auto; background: #fff; border: 1px solid var(--line); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 17px; }
.lp-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 32px; margin: 22px 0; }
.lp-sec h4 { font-size: 16px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.bl { font-size: 14.5px; color: var(--ink-2); padding: 4px 0; position: relative; padding-left: 16px; }
.bl::before { content: '•'; position: absolute; left: 2px; color: var(--muted); }
.bl b { color: var(--ink); }
.ck { font-size: 14.5px; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.ck span { font-weight: 800; }
.ck.yes { color: var(--ink); } .ck.yes span { color: var(--accent); }
.ck.no { color: var(--muted); } .ck.no span { color: #c2ccda; }
.lp-plain { font-size: 14.5px; color: var(--brand); font-weight: 600; }
.lp-side { position: sticky; top: 84px; }
.lp-map { height: 320px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); z-index: 1; }
.lp-book { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.lp-book-price { margin-bottom: 12px; }
.lp-book-price b { font-size: 24px; font-weight: 800; }
.lp-book-price span { color: var(--muted); }

@media (max-width: 880px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-side { position: static; }
  .lp-sections { grid-template-columns: 1fr; }
  .lp-title { font-size: 26px; }
}

/* ===== DETAIL: GALLERY / ADDRESS / MAP / FACILITIES ===== */
.gallery { position: relative; margin-bottom: 16px; }
.gallery-main { width: 100%; height: 240px; object-fit: cover; border-radius: 14px; display: block; background: #eef4ff; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.gallery-thumbs img { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; flex: none; }
.gallery-thumbs img.active { border-color: var(--brand); }
.gallery-badge { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.addr-block { background: #f8fafd; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; margin: 14px 0; }
.addr-line { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.addr-sub { font-size: 13px; color: var(--ink-2); margin-top: 5px; }
.detail-map { height: 200px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); margin: 14px 0; z-index: 1; }
.sec-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 18px 0 10px; }
.fac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fac { background: #f8fafd; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.fac small { display: block; color: var(--muted); font-size: 12px; margin-bottom: 2px; }
.fac b { font-size: 14px; }
.amenity-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity { background: #eafff5; color: #06694a; border: 1px solid #b8f0d8; font-size: 13px; font-weight: 600; padding: 6px 11px; border-radius: 8px; }
.amenity.vsize { background: #eef4ff; color: #0b47c2; border-color: #cadcff; }

/* ===== SECURITY / 2FA ===== */
.sec-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sec-row small { display: block; margin-top: 3px; font-size: 13px; }
.sec-steps { margin: 0 0 12px 18px; font-size: 14px; color: var(--ink-2); }
.sec-steps li { padding: 3px 0; }
.secret-box { display: flex; align-items: center; gap: 10px; background: #f1f5fb; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.secret-box code { font-family: ui-monospace, 'Courier New', monospace; font-size: 15px; font-weight: 700; letter-spacing: 2px; word-break: break-all; flex: 1; color: var(--ink); }
.recovery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.recovery-grid code { font-family: ui-monospace, 'Courier New', monospace; font-size: 15px; font-weight: 700; letter-spacing: 1px; background: #f1f5fb; border: 1px solid var(--line); border-radius: 8px; padding: 9px 10px; text-align: center; }
.qr-wrap { display: flex; justify-content: center; margin: 16px 0 4px; }
.qr-wrap img, .qr-wrap canvas, .qr-wrap table { border: 8px solid #fff; border-radius: 10px; box-shadow: var(--shadow-sm); }

/* ===== SVG PHOTO COVERS ===== */
.card-media { overflow: hidden; }
.card-media svg, .detail-hero svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.detail-hero { overflow: hidden; }

/* ===== MARKER CLUSTERS ===== */
.marker-cluster-small, .marker-cluster-medium, .marker-cluster-large { background: rgba(20,99,255,.25); }
.marker-cluster-small div, .marker-cluster-medium div, .marker-cluster-large div { background: var(--brand); color: #fff; font-weight: 800; font-family: 'Inter', sans-serif; }

/* ===== RENT ESTIMATOR ===== */
.est-card { background: #f8fafd; border: 1px solid var(--line); border-radius: 16px; padding: 20px; text-align: center; }
.est-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.est-price { font-size: 30px; font-weight: 800; margin: 6px 0 2px; color: var(--brand); }
.est-mid { font-size: 14px; color: var(--ink-2); margin-bottom: 16px; }
.est-bar { position: relative; height: 8px; background: linear-gradient(90deg,#eafff5,#eef4ff,#fff7e6); border-radius: 999px; margin: 6px 0; }
.est-fill { position: absolute; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--brand); border: 3px solid #fff; box-shadow: var(--shadow-sm); transform: translate(-50%,-50%); }
.est-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.est-meta { font-size: 13.5px; color: var(--ink-2); }

/* ===== AVAILABILITY BADGE / CARD HIGHLIGHT ===== */
.avail-badge { position: absolute; bottom: 10px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.avail-badge.on { background: #eafff5; color: #06694a; }
.avail-badge.off { background: #fff7e6; color: #b45309; }
.card-hi { border-color: var(--brand) !important; box-shadow: 0 0 0 2px rgba(20,99,255,.25), var(--shadow-md) !important; }

/* ===== CONTACT GATING ===== */
.contact-locked { background: #f8fafd; border: 1px dashed #cdd8e8; border-radius: 14px; padding: 14px 16px; margin: 6px 0 14px; position: relative; }
.lock-row { display: flex; align-items: center; gap: 12px; padding: 7px 0; filter: blur(0.4px); }
.lock-row span { font-size: 18px; opacity: .5; }
.lock-row b { font-size: 13px; display: block; color: var(--ink-2); }
.lock-row small { color: #b6c0d0; letter-spacing: 2px; font-weight: 700; }
.lock-note { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-2); text-align: center; }

.owner-card { background: linear-gradient(135deg,#eafff5,#f0f7ff); border: 1px solid #b8f0d8; border-radius: 14px; padding: 14px 16px; margin: 8px 0 4px; text-align: left; }
.owner-card-head { font-size: 12.5px; font-weight: 700; color: #06694a; margin-bottom: 10px; letter-spacing: .01em; }
.oc-row { display: flex; align-items: center; gap: 12px; padding: 6px 0; }
.oc-row > span { font-size: 18px; }
.oc-row small { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.oc-row b { font-size: 15px; }
.oc-row a { color: var(--brand); }
.oc-row a:hover { text-decoration: underline; }
.booking-block { border: 1px solid var(--line); border-radius: 14px; padding: 12px; margin-bottom: 14px; }

/* ===== CONTACT CREDITS (pay-per-lead) ===== */
.credits-chip { display: inline-flex; align-items: center; gap: 4px; background: #fff7e6; color: #92400e; border: 1px solid #fde68a; font-size: 13px; font-weight: 700; padding: 7px 12px; border-radius: 999px; cursor: pointer; }
.credits-chip:hover { background: #fef3c7; }
.buy-credits { background: #f8fafd; border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: center; }
.bc-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.bc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.bc-opt { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 10px; cursor: pointer; font: inherit; text-align: center; transition: .15s; }
.bc-opt:hover { border-color: var(--brand); }
.bc-opt b { display: block; font-size: 18px; color: var(--ink); }
.bc-opt span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.bc-opt.best { border-color: var(--accent); background: #f0fdf7; }
.bc-opt.best small { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }

/* ===== MASKED / PROXY CALL (simulated demo session) ===== */
.proxy-box { background: linear-gradient(135deg,#0f1b2d,#1c2c44); color: #fff; border-radius: 14px; padding: 16px; text-align: center; }
.proxy-label { font-size: 12px; font-weight: 700; letter-spacing: .03em; opacity: .85; display: flex; align-items: center; justify-content: center; gap: 6px; }
.demo-tag { background: rgba(255,255,255,.18); font-size: 10px; padding: 2px 7px; border-radius: 999px; font-weight: 800; }
.proxy-code { font-family: ui-monospace, 'Courier New', monospace; font-size: 24px; font-weight: 800; letter-spacing: 2px; margin: 8px 0; }
.proxy-box p { color: rgba(255,255,255,.75); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .search-card { grid-template-columns: 1fr 1fr; }
  .search-actions { grid-column: 1 / -1; }
  .search-actions .btn-search { flex: 1; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .results.view-split { grid-template-columns: 1fr; }
  .results.view-split .map { position: relative; top: 0; height: 60vh; }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .steps, .pricing-grid, .form-row { grid-template-columns: 1fr; }
  .search-card { grid-template-columns: 1fr; }
  .hero { padding: 40px 18px; }
  .hero h1 { font-size: 30px; }
  .nav-actions .btn-ghost { display: none; }
  .footer-inner { flex-direction: column; }
  .filters { flex-wrap: wrap; }
}
