/* assets/css/style.css - ExitBazar Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@400;500&display=swap');

:root {
  --orange: #F97316;
  --amber: #F59E0B;
  --dark: #080808;
  --card: #101010;
  --border: #1c1c1c;
  --muted: #555;
  --text: #e8e8e8;
  --green: #22C55E;
  --red: #EF4444;
  --blue: #3B82F6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ── UTILITIES ── */
.gradient-text { background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glass { background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid var(--border); }
.glow { box-shadow: 0 0 25px rgba(249,115,22,0.25); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.hidden { display: none !important; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all .2s; border: none; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #F97316, #F59E0B); color: #fff; }
.btn-primary:hover { opacity: .88; transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 1.5px solid var(--orange); color: var(--orange); }
.btn-secondary:hover { background: rgba(249,115,22,0.1); }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; border-radius: 8px; }
.btn-danger { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #EF4444; }
.btn-green { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #22C55E; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; font-family: 'DM Mono', monospace; }
.form-control { width: 100%; background: #0f0f0f; border: 1.5px solid var(--border); color: var(--text); border-radius: 10px; padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; transition: border-color .2s; }
.form-control:focus { outline: none; border-color: var(--orange); }
.form-control::placeholder { color: #444; }
.form-control textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 0.68rem; font-weight: 600; font-family: 'DM Mono', monospace; }
.badge-verified { background: rgba(34,197,94,0.15); color: #22C55E; border: 1px solid rgba(34,197,94,0.3); }
.badge-pending { background: rgba(234,179,8,0.15); color: #EAB308; border: 1px solid rgba(234,179,8,0.3); }
.badge-monetized { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }
.badge-sold { background: rgba(99,102,241,0.15); color: #818CF8; border: 1px solid rgba(99,102,241,0.3); }
.badge-rejected { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }

/* ── CARDS ── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.card:hover { border-color: rgba(249,115,22,0.3); transition: border-color .2s; }
.card-hover { transition: transform .2s, border-color .2s; }
.card-hover:hover { transform: translateY(-5px); border-color: var(--orange) !important; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; transition: all .3s; }
.navbar.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-logo { width: 34px; height: 34px; background: linear-gradient(135deg, #F97316, #F59E0B); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 0.85rem; font-family: 'Syne', sans-serif; }
.navbar-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.navbar-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { color: #888; font-size: 0.88rem; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: #fff; }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.user-avatar { width: 34px; height: 34px; background: linear-gradient(135deg, #F97316, #F59E0B); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; right: 0; top: calc(100% + 10px); width: 200px; background: #111; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; }
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 0.85rem; color: #ccc; transition: background .15s; cursor: pointer; }
.dropdown-item:hover { background: rgba(255,255,255,0.04); color: #fff; }
.dropdown-divider { border-top: 1px solid var(--border); margin: 4px 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #ccc; border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 64px; }
.hero-glow { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; text-align: center; max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); color: var(--orange); padding: 6px 16px; border-radius: 30px; font-size: 0.8rem; margin-bottom: 28px; font-family: 'DM Mono', monospace; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { color: #888; font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 460px; margin: 0 auto; background: var(--border); border-radius: 16px; overflow: hidden; }
.hero-stat { background: var(--card); padding: 18px; text-align: center; }
.hero-stat-value { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat-label { font-size: 0.72rem; color: #555; margin-top: 3px; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; position: relative; }
.step-card::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: rgba(249,115,22,0.4); font-size: 1.2rem; z-index: 1; }
.step-card:last-child::after { display: none; }
.step-num { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--orange); margin-bottom: 10px; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: #777; line-height: 1.6; }

/* ── LISTINGS GRID ── */
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 20px; cursor: pointer; transition: transform .2s, border-color .2s; text-decoration: none; display: flex; flex-direction: column; }
.listing-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.listing-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.listing-niche-icon { width: 42px; height: 42px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.listing-title { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 600; color: #fff; margin-bottom: 3px; }
.listing-meta { font-size: 0.75rem; color: #666; }
.listing-badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.stat-box { background: rgba(255,255,255,0.02); border-radius: 12px; padding: 10px 12px; }
.stat-label { font-size: 0.65rem; color: #555; text-transform: uppercase; letter-spacing: .07em; font-family: 'DM Mono', monospace; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.stat-value { font-size: 1.05rem; font-weight: 600; color: #fff; }
.trust-bar-wrap { margin-bottom: 14px; }
.trust-bar-header { display: flex; justify-content: space-between; font-size: 0.72rem; margin-bottom: 5px; }
.trust-bar-bg { height: 5px; background: #1a1a1a; border-radius: 3px; overflow: hidden; }
.trust-bar-fill { height: 100%; background: linear-gradient(90deg, #F97316, #22C55E); border-radius: 3px; transition: width 1s ease; }
.listing-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-end; }
.listing-price { font-size: 0.72rem; color: #666; margin-bottom: 3px; }
.listing-price-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.listing-multiple { font-size: 0.7rem; color: #666; }

/* ── FILTERS ── */
.filters-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-select { background: var(--card); border: 1.5px solid var(--border); color: #ccc; border-radius: 10px; padding: 9px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--orange); }
.search-box { flex: 1; min-width: 200px; position: relative; }
.search-box input { width: 100%; background: var(--card); border: 1.5px solid var(--border); color: var(--text); border-radius: 10px; padding: 9px 14px 9px 38px; font-size: 0.85rem; }
.search-box input:focus { outline: none; border-color: var(--orange); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #555; font-size: 0.9rem; }
.filter-toggle { background: var(--card); border: 1.5px solid var(--border); color: #888; border-radius: 10px; padding: 9px 16px; cursor: pointer; font-size: 0.85rem; transition: all .2s; }
.filter-toggle.active { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,0.08); }

/* ── PAGE HEADER ── */
.page-header { padding: 100px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.page-title { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.page-subtitle { color: #666; font-size: 0.95rem; }

/* ── DETAIL PAGE ── */
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; }
.detail-main { display: flex; flex-direction: column; gap: 24px; }
.detail-sidebar { position: sticky; top: 84px; height: fit-content; display: flex; flex-direction: column; gap: 16px; }
.detail-header { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; }
.detail-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
.detail-stat { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.price-card { background: var(--card); border: 2px solid rgba(249,115,22,0.25); border-radius: 18px; padding: 24px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trust-badges { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.trust-badge-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: #888; }

/* ── DASHBOARD ── */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding-top: 84px; min-height: 100vh; }
.sidebar { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 20px; height: fit-content; position: sticky; top: 84px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; font-size: 0.85rem; color: #888; transition: all .15s; cursor: pointer; }
.sidebar-link:hover { background: rgba(255,255,255,0.04); color: #fff; }
.sidebar-link.active { background: rgba(249,115,22,0.1); color: var(--orange); }
.dashboard-content { padding-bottom: 60px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.stat-card-label { font-size: 0.72rem; color: #555; text-transform: uppercase; letter-spacing: .07em; font-family: 'DM Mono', monospace; margin-bottom: 8px; }
.stat-card-value { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; }
.tabs { display: flex; gap: 4px; background: #0c0c0c; border: 1px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 20px; width: fit-content; }
.tab { padding: 8px 18px; border-radius: 9px; font-size: 0.82rem; font-weight: 500; cursor: pointer; color: #666; transition: all .15s; }
.tab.active { background: var(--orange); color: #fff; font-family: 'Syne', sans-serif; }
.data-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 12px; }
.data-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; }

/* ── DEAL ROOM ── */
.deal-room-layout { display: grid; grid-template-columns: 1fr 300px; gap: 16px; height: calc(100vh - 80px); }
.chat-area { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.chat-header { padding: 16px 20px; border-bottom: 1px solid var(--border); background: #0c0c0c; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.message { max-width: 75%; }
.message.mine { align-self: flex-end; }
.message.theirs { align-self: flex-start; }
.message-bubble { padding: 12px 16px; border-radius: 18px; font-size: 0.88rem; line-height: 1.5; }
.message.mine .message-bubble { background: var(--orange); color: #fff; border-bottom-right-radius: 4px; }
.message.theirs .message-bubble { background: #1a1a1a; color: #ddd; border-bottom-left-radius: 4px; }
.message.system { align-self: center; }
.message.system .message-bubble { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #6ee7b7; font-size: 0.78rem; border-radius: 20px; }
.message-time { font-size: 0.65rem; color: #555; margin-top: 4px; }
.chat-input { padding: 16px; border-top: 1px solid var(--border); display: flex; gap: 10px; }
.chat-input input { flex: 1; }

/* ── LOGIN PAGE ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.auth-card { width: 100%; max-width: 440px; background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: #666; font-size: 0.88rem; margin-bottom: 28px; }
.user-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.user-type-btn { padding: 18px 12px; border: 2px solid var(--border); border-radius: 14px; text-align: center; cursor: pointer; transition: all .2s; background: transparent; color: var(--text); }
.user-type-btn:hover, .user-type-btn.selected { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.user-type-btn .icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.user-type-btn .label { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.9rem; }
.user-type-btn .sublabel { font-size: 0.72rem; color: #666; margin-top: 3px; }
.divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: #444; font-size: 0.78rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.phone-input { display: flex; gap: 8px; }
.country-code { background: #0f0f0f; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; color: #ccc; font-size: 0.9rem; white-space: nowrap; }
.otp-input { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 16px; }
.otp-digit { background: #0f0f0f; border: 1.5px solid var(--border); border-radius: 10px; padding: 14px 0; text-align: center; font-size: 1.3rem; font-family: 'DM Mono', monospace; color: #fff; width: 100%; transition: border-color .2s; }
.otp-digit:focus { outline: none; border-color: var(--orange); }

/* ── POST WIZARD ── */
.wizard-steps { display: flex; align-items: center; margin-bottom: 36px; }
.wizard-step { display: flex; align-items: center; gap: 10px; flex: 1; }
.wizard-step:last-child { flex: 0; }
.wizard-step-num { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; transition: all .2s; border: 2px solid var(--border); color: #555; flex-shrink: 0; }
.wizard-step.active .wizard-step-num { background: var(--orange); border-color: var(--orange); color: #fff; }
.wizard-step.done .wizard-step-num { background: #22C55E; border-color: #22C55E; color: #fff; }
.wizard-step-label { font-size: 0.8rem; color: #666; }
.wizard-step.active .wizard-step-label { color: #fff; font-weight: 500; }
.wizard-connector { flex: 1; height: 1px; background: var(--border); margin: 0 8px; }
.wizard-connector.done { background: #22C55E; }
.channel-verified-box { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.25); border-radius: 14px; padding: 16px; }
.suggested-price { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.2); border-radius: 12px; padding: 14px; margin-bottom: 16px; }

/* ── TRUST PAGE ── */
.process-steps { display: flex; flex-direction: column; gap: 28px; }
.process-step { display: flex; gap: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.process-step-icon { width: 60px; height: 60px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.process-step-num { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--orange); margin-bottom: 6px; }
.faq-item summary { list-style: none; padding: 18px 20px; cursor: pointer; font-weight: 500; color: #ddd; display: flex; justify-content: space-between; }
.faq-item summary::after { content: '+'; color: #555; font-size: 1.2rem; }
.faq-item[open] summary::after { content: '−'; color: var(--orange); }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; }
.faq-body { padding: 0 20px 18px; color: #777; font-size: 0.88rem; line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }

/* ── PRICING PAGE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: rgba(249,115,22,0.5); background: linear-gradient(160deg, rgba(249,115,22,0.08), transparent); }
.pricing-name { font-size: 0.75rem; color: #666; margin-bottom: 4px; }
.pricing-plan { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pricing-amount { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #F97316, #F59E0B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-period { font-size: 0.82rem; color: #666; }
.pricing-features { flex: 1; list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #ccc; }
.pricing-feature.no { color: #444; text-decoration: line-through; }

/* ── CALLOUT ── */
.callout { border-radius: 12px; padding: 14px 16px; display: flex; gap: 12px; margin: 16px 0; font-size: 0.85rem; line-height: 1.6; }
.callout.warn { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25); color: #d4a017; }
.callout.info { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); color: #93c5fd; }
.callout.success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #6ee7b7; }
.callout.error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #fca5a5; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #555; font-size: 0.85rem; margin-top: 12px; line-height: 1.6; max-width: 260px; }
.footer-heading { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.82rem; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: #555; font-size: 0.83rem; transition: color .15s; }
.footer-link:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: #444; }
.footer-trust { display: flex; gap: 16px; font-size: 0.72rem; color: #444; }
.footer-trust span { display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; display: inline-block; }

/* ── ALERTS ── */
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.85rem; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.empty-state p { color: #666; font-size: 0.88rem; margin-bottom: 20px; }

/* ── LOADING ── */
.skeleton { background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--orange); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .navbar-nav, .navbar-actions .btn:not(.user-avatar) { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(8,8,8,0.98); border-bottom: 1px solid var(--border); padding: 20px 24px; flex-direction: column; gap: 4px; z-index: 999; }
  .mobile-menu.open { display: flex; }
  .mobile-menu .nav-link { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .listings-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .deal-room-layout { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .filters-bar { flex-direction: column; }
  .detail-stats { grid-template-columns: repeat(2, 1fr); }
}
