/* ═══ Zufiti Design System ═══════════════════════════════════ */
:root {
  --primary: #6c47ff;
  --primary-dark: #4f2fe0;
  --primary-light: #ede9ff;
  --accent: #ff6b35;
  --accent-dark: #d94e1f;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --bg: #f8f7ff;
  --surface: #ffffff;
  --surface-2: #f1f0f7;
  --border: #e2e0f0;
  --text: #1a1a2e;
  --text-muted: #6b6b8a;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(108,71,255,.08);
  --shadow-md: 0 4px 32px rgba(108,71,255,.14);
  --transition: 180ms ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 15px; overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 60px;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-brand a { font-weight: 800; font-size: 1.3rem; color: var(--primary); letter-spacing: -.5px; }
.nav-links { display: flex; gap: .5rem; align-items: center; }
.nav-links a, .nav-links button {
  padding: .4rem .85rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; cursor: pointer;
  border: none; background: none; color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links button:hover { color: var(--primary); background: var(--primary-light); text-decoration: none; }
.nav-links .btn-primary { background: var(--primary); color: #fff !important; }
.nav-links .btn-primary:hover { background: var(--primary-dark); }

/* ─── Layout ───────────────────────────────────────────────── */
.main-content { max-width: 1200px; margin: 0 auto; padding: 1.5rem 1rem; min-height: calc(100vh - 60px); }
.lp-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem 3rem; }
.page-header { margin-bottom: 1.5rem; }
.page-header h1 { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.page-header p { color: var(--text-muted); margin-top: .25rem; }

/* ─── Grid ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 768px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* ─── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.25rem;
  box-shadow: var(--shadow); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.card-title { font-weight: 700; font-size: 1rem; }
.card-image { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 16/9; background: var(--surface-2); }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1rem; }
.card-footer { padding: .75rem 1rem; border-top: 1px solid var(--border); display: flex; gap: .5rem; align-items: center; }

/* Property Card */
.property-card { cursor: pointer; }
.property-card .badge-type {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: .7rem; padding: .2rem .6rem; border-radius: 20px;
}
.property-card-inner { position: relative; }
.property-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: .75rem 0; }
.property-meta span { background: var(--primary-light); color: var(--primary); font-size: .75rem; padding: .2rem .6rem; border-radius: 20px; font-weight: 500; }
.property-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.traffic-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin: .5rem 0; }
.traffic-fill { height: 100%; background: linear-gradient(90deg, var(--success), var(--warning)); border-radius: 3px; }

/* ─── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: .35rem; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .6rem .85rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,71,255,.1);
}
.form-error { color: var(--danger); font-size: .8rem; margin-top: .25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-2); }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-sm { padding: .3rem .8rem; font-size: .8rem; }
.btn-lg { padding: .75rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ─── Stat Cards ───────────────────────────────────────────── */
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.stat-value { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.stat-change { font-size: .8rem; }
.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }
.stat-icon { font-size: 1.5rem; }

/* ─── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .2rem .65rem;
  border-radius: 20px; font-size: .75rem; font-weight: 600;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-neutral { background: var(--surface-2); color: var(--text-muted); }
.badge-primary { background: var(--primary-light); color: var(--primary); }

/* ─── Table ────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--surface-2); }
th { padding: .75rem 1rem; text-align: left; font-size: .8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
td { padding: .75rem 1rem; border-top: 1px solid var(--border); font-size: .9rem; }
tr:hover td { background: var(--surface-2); }

/* ─── Search Bar ───────────────────────────────────────────── */
.search-bar {
  display: flex; gap: .5rem; align-items: center;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: .4rem .75rem;
  box-shadow: var(--shadow);
}
.search-bar input { border: none; outline: none; flex: 1; background: transparent; }

/* ─── Filters ──────────────────────────────────────────────── */
.filters {
  display: flex; flex-wrap: wrap; gap: .75rem;
  padding: 1rem; background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.filter-group { display: flex; flex-direction: column; gap: .25rem; min-width: 140px; }
.filter-group label { font-size: .75rem; font-weight: 600; color: var(--text-muted); }

/* ─── Map ──────────────────────────────────────────────────── */
#map { height: 450px; border-radius: var(--radius); border: 1px solid var(--border); }
.map-wrapper { margin-bottom: 1.5rem; }

/* ─── Auction Card ─────────────────────────────────────────── */
.auction-card { border-left: 4px solid var(--accent); }
.auction-timer { font-size: .85rem; color: var(--accent); font-weight: 700; }
.bid-display { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.bid-history { max-height: 200px; overflow-y: auto; }
.bid-row { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.bid-row:last-child { border-bottom: none; }
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ─── Toast ────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: .5rem; z-index: 9999; }
.toast {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .75rem 1.25rem;
  box-shadow: var(--shadow-md); max-width: 360px; font-size: .9rem;
  display: flex; gap: .5rem; align-items: flex-start;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: none; opacity: 1; } }
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-warning { border-left: 4px solid var(--warning); }
.toast-info { border-left: 4px solid var(--info); }

/* ─── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem; max-width: 540px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-md);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.modal-title { font-weight: 700; font-size: 1.1rem; }
.modal-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-muted); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #3b1fa8 100%);
  color: #fff; border-radius: var(--radius); padding: 4rem 2rem;
  text-align: center; margin-bottom: 2rem;
}
.hero h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.15; margin-bottom: .75rem; }
.hero p { font-size: 1.1rem; opacity: .85; max-width: 560px; margin: 0 auto 2rem; }
.hero-search { display: flex; gap: .5rem; max-width: 500px; margin: 0 auto; }
.hero-search input { flex: 1; padding: .75rem 1.1rem; border-radius: var(--radius-sm); border: none; font-size: 1rem; outline: none; }
.hero-search button { padding: .75rem 1.5rem; border-radius: var(--radius-sm); background: var(--accent); color: #fff; border: none; font-weight: 700; cursor: pointer; font-size: 1rem; }

/* ─── Dashboard sidebar ────────────────────────────────────── */
.dashboard-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .dashboard-layout { grid-template-columns: 1fr; } }
.sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; height: fit-content; position: sticky; top: 80px; }
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.sidebar-nav li a, .sidebar-nav li button {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .85rem;
  border-radius: var(--radius-sm); color: var(--text-muted); font-size: .9rem;
  font-weight: 500; text-decoration: none; width: 100%; background: none; border: none; cursor: pointer; text-align: left;
}
.sidebar-nav li a:hover, .sidebar-nav li button:hover,
.sidebar-nav li a.active, .sidebar-nav li button.active {
  background: var(--primary-light); color: var(--primary);
}

/* ─── Timeline / Steps ─────────────────────────────────────── */
.status-steps { display: flex; gap: 0; margin: 1rem 0; }
.step { flex: 1; text-align: center; position: relative; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); margin: 0 auto .5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; position: relative; z-index: 1;
}
.step.active .step-dot { background: var(--primary); color: #fff; }
.step.done .step-dot { background: var(--success); color: #fff; }
.step-label { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.step::before {
  content: ''; position: absolute; top: 14px; left: calc(-50% + 14px); right: calc(50% + 14px);
  height: 2px; background: var(--border); z-index: 0;
}
.step:first-child::before { display: none; }
.step.done::before { background: var(--success); }

/* ─── Misc ─────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: .85rem; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; } .flex-1 { flex: 1; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.hidden { display: none !important; }
.loading { display: flex; align-items: center; justify-content: center; padding: 3rem; color: var(--text-muted); }
.spinner { width: 28px; height: 28px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; margin-right: .75rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-state h3 { font-size: 1.1rem; margin-bottom: .5rem; }

/* ═══ Landing Page ═══════════════════════════════════════════════ */

/* Hero — full-screen Zillow style */
.lp-hero {
  /* CSS full-bleed: breaks out of max-width container without JS */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -1.5rem;       /* cancel main-content padding-top */
  width: 100vw;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 0;
  color: #fff;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #12082e 0%, #2c1470 55%, #5233c4 100%);
}
.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
}
/* Stats strip pinned to bottom of hero */
.lp-hero-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  margin-top: 4rem;
}
.lp-stat-item {
  padding: .75rem 3rem;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  display: block;
  line-height: 1.1;
}
.lp-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .2rem;
  display: block;
}
.lp-hero-content { position: relative; z-index: 1; max-width: 760px; width: 100%; }

.lp-badge {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.lp-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.025em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.lp-accent {
  background: linear-gradient(90deg, #ff9a52, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-subtitle {
  font-size: 1.05rem;
  opacity: .88;
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 460px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.lp-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.lp-ctas-center { justify-content: center; margin-bottom: 0; }

.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }


/* Hero search bar — inside hero */
.lp-hero-search {
  display: flex;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.35);
}
.lp-hero-search:focus-within { box-shadow: 0 8px 48px rgba(0,0,0,.4), 0 0 0 3px rgba(108,71,255,.35); }
.lp-searchbar-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.1rem;
}
.lp-searchbar-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text);
}
.lp-searchbar-input input::placeholder { color: #9896a0; }
.lp-search-type {
  border: none;
  border-left: 1.5px solid var(--border);
  outline: none;
  background: #fafafa;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 0 1rem;
  cursor: pointer;
  font-family: inherit;
  min-width: 130px;
}
.lp-search-btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
  padding: .9rem 1.75rem;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Type chips inside hero */
.lp-hero-chips { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.lp-hero-chip {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.lp-hero-chip:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.4); }

/* Below-hero sections use lp-inner wrapper */
.lp-search-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  display: none; /* search is now in the hero */
}
.lp-section-title { font-size: 1.75rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; letter-spacing: -.02em; }
.lp-section-sub { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.75rem; }
.lp-center { text-align: center; }

/* standalone searchbar (kept for potential reuse) */
.lp-searchbar {
  display: flex;
  max-width: 700px;
  margin: 0 auto 1.25rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lp-searchbar:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,71,255,.1); }

.lp-type-chips { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.lp-chip {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: .38rem 1rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.lp-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Sections */
.lp-section { margin-bottom: 3.5rem; }
.lp-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* Property type cards */
.lp-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.lp-type-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}
.lp-type-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 28px rgba(108,71,255,.13);
  transform: translateY(-3px);
}
.lp-type-icon { font-size: 2.25rem; margin-bottom: .75rem; }
.lp-type-title { font-weight: 700; font-size: 1rem; margin-bottom: .4rem; color: var(--text); }
.lp-type-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: .85rem; }
.lp-type-tag {
  font-size: .76rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  display: inline-block;
  padding: .22rem .7rem;
  border-radius: 20px;
}

/* How it works */
.lp-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow);
}
.lp-how-col { padding: 2.5rem 2.25rem; background: var(--surface); }
.lp-how-col-r { border-left: 1px solid var(--border); background: var(--bg); }

.lp-how-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.lp-badge-owner { background: #d1fae5; color: #065f46; }
.lp-badge-advertiser { background: #dbeafe; color: #1e40af; }

.lp-how-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--text);
}
.lp-how-step { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.lp-how-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.lp-num-owner { background: var(--success); }
.lp-num-advertiser { background: var(--info); }
.lp-how-step-title { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; color: var(--text); }
.lp-how-step-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* Bottom CTA */
.lp-cta-section {
  background: linear-gradient(140deg, #12082e 0%, #2c1470 55%, #5233c4 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 4.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.lp-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-cta-section h2 { font-size: 2.1rem; font-weight: 900; margin-bottom: .75rem; letter-spacing: -.025em; position: relative; }
.lp-cta-section p { font-size: .97rem; opacity: .75; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; position: relative; }
.lp-cta-section .lp-ctas { position: relative; }


/* Responsive */
@media (max-width: 960px) {
  .lp-title { font-size: 2.4rem; }
  .lp-how { grid-template-columns: 1fr; }
  .lp-how-col-r { border-left: none; border-top: 1px solid var(--border); }
  .lp-types-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-item { padding: .75rem 1.75rem; }
}
@media (max-width: 640px) {
  .lp-hero { padding: 3rem 1rem 0; min-height: calc(100vh - 60px); }
  .lp-title { font-size: 2rem; }
  .lp-subtitle { font-size: .93rem; }
  .lp-hero-search { flex-direction: column; border-radius: var(--radius); }
  .lp-search-type { border-left: none; border-top: 1.5px solid var(--border); padding: .75rem 1rem; }
  .lp-search-btn { border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important; padding: .85rem; }
  .lp-types-grid { grid-template-columns: 1fr; }
  .lp-how-col { padding: 1.75rem 1.25rem; }
  .lp-section-header { flex-direction: column; gap: .75rem; }
  .lp-cta-section { padding: 3rem 1.25rem; }
  .lp-cta-section h2 { font-size: 1.65rem; }
  .lp-hero-stats { flex-wrap: wrap; }
  .lp-stat-item { padding: .65rem 1.25rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ═══ Footer ═════════════════════════════════════════════════════ */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.25rem 2rem;
  margin-top: auto;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.02em;
  display: inline-block;
  margin-bottom: .75rem;
}
.footer-logo:hover { text-decoration: none; color: #fff; }
.footer-tagline {
  font-size: .82rem;
  line-height: 1.65;
  opacity: .5;
  max-width: 230px;
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .9rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .86rem;
  transition: color 160ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copyright { font-size: .78rem; opacity: .35; }
.footer-isolation  { font-size: .76rem; opacity: .28; font-style: italic; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
