:root {
    --brand: #ff7a00;
    --brand-2: #ffc247;
    --brand-3: #ff4d00;
    --ink: #111827;
    --muted: #667085;
    --line: #e8edf3;
    --soft: #f7f8fa;
    --green: #16a34a;
    --blue: #2563eb;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
.mobile-bottom-nav--old-disabled { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fbfcfe;
    color: var(--ink);
    font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { min-height: 65vh; }
h1, h2, h3, h4, h5, h6 { letter-spacing: 0; }

.container.narrow { max-width: 840px; }
.shadow-soft { box-shadow: var(--shadow); }
.eyebrow {
    color: var(--brand);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
}
.btn { border-radius: var(--radius); font-weight: 700; }
.btn-brand {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border: 0;
    color: #fff;
    box-shadow: 0 10px 22px rgba(255, 122, 0, .24);
}
.btn-brand:hover { color: #fff; transform: translateY(-1px); }
.btn-outline-brand {
    border: 1px solid rgba(255, 122, 0, .45);
    color: var(--brand);
    background: #fff;
}
.btn-brand-soft {
    background: #fff4e8;
    color: var(--brand);
    border: 1px solid #ffe0bd;
}

/* DISABLED — replaced by lc-header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(226, 234, 243, .95);
    backdrop-filter: blur(16px);
    min-height: 72px;
}
body {
    margin: 0;
    padding-top: 104px;
}
@media (max-width: 1024px) {
    body { padding-top: 56px; padding-bottom: 60px; }
}
.header-nav { min-height: 72px; padding: .35rem 0; }
.site-header .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header-left {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    color: var(--ink);
}
.brand img { flex: 0 0 auto; }
.brand-logo-full {
    width: auto;
    height: 44px;
    max-height: 48px;
    border-radius: 0;
    object-fit: contain;
}
.brand img:not(.brand-logo-full),
.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}
/* DISABLED — replaced by lc-header */
.navbar { min-height: 72px; }
.header-collapse { min-width: 0; }
/* DISABLED — replaced by lc-header */
.premium-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    min-width: 0;
}
/* DISABLED — replaced by lc-header */
.location-selector {
    position: relative;
    min-width: 210px;
}
.location-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 42px;
    width: 100%;
    padding: .55rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #111827;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.location-pill:hover,
.location-pill:focus-visible {
    border-color: rgba(255,255,255,.32);
    box-shadow: 0 14px 28px rgba(17,24,39,.12);
    transform: translateY(-1px);
}
.location-pill-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.location-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: .76rem;
}
/* DISABLED — replaced by lc-header */
.city-panel {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    z-index: 120;
    width: min(520px, calc(100vw - 32px));
    max-height: 520px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 1.25);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
    overflow: hidden;
}
.city-panel-search {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}
.city-search-input {
    flex: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f9fafb;
}
.city-search-icon {
    font-size: 1rem;
    color: var(--muted);
}
.city-panel-search input {
    width: 100%;
    border: 0;
    background: transparent;
    outline: 0;
    font-size: .96rem;
    color: var(--ink);
}
.city-panel-reset,
.city-panel-detect {
    border: 0;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
}
.city-panel-reset {
    background: #f8fafc;
    color: #475467;
    border: 1px solid var(--line);
}
.city-panel-detect {
    width: 100%;
    margin-bottom: 1rem;
    background: #111827;
    color: #fff;
}
.city-panel-section {
    margin-bottom: 1rem;
}
.section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .85rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #667085;
}
.city-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}
.city-card {
    display: grid;
    gap: .5rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 1.15);
    text-align: center;
    color: #0f172a;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.city-card:hover,
.city-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255,122,0,.35);
    background: #fff7ed;
}
.city-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ffb74d, #ff8b00);
    color: #fff;
    font-weight: 800;
}
.city-panel-other {
    max-height: 210px;
    overflow-y: auto;
    padding-right: .35rem;
}
.city-list {
    display: grid;
    gap: .35rem;
}
.city-list-item {
    width: 100%;
    text-align: left;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: #f8fafb;
    color: #1f2937;
    transition: background .2s ease, border-color .2s ease;
}
.city-list-item:hover,
.city-list-item:focus-visible {
    background: #fff7ed;
    border-color: rgba(255,122,0,.32);
}
.header-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 40px;
    padding: .5rem .75rem;
    border-radius: var(--radius);
    font-size: .92rem;
    font-weight: 500;
    color: #334155;
    border: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus-visible {
    color: var(--brand);
    border-color: rgba(255,122,0,.25);
    background: #fffbf3;
}
.header-menu-toggle span {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.header-menu-toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: transparent;
    transition: width .25s ease, background .25s ease;
}
.header-menu-toggle:hover::after,
.header-menu-toggle:focus-visible::after {
    width: 18px;
    background: var(--brand);
}
.mega-menu {
    position: absolute;
    top: calc(100% + .65rem);
    right: 0;
    z-index: 110;
    display: none;
    width: min(920px, calc(100vw - 32px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 1.2);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
}
.header-menu:hover .mega-menu,
.header-menu:focus-within .mega-menu,
.header-menu.is-open .mega-menu {
    display: grid;
}
.mega-menu a {
    display: block;
    padding: .55rem .65rem;
    color: #475467;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 500;
}
.mega-menu a:hover,
.mega-menu a:focus-visible {
    color: var(--brand);
    background: #fff7ed;
}
/* DISABLED — replaced by lc-header */
.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: .35rem;
}
.header-post {
    white-space: nowrap;
    background: linear-gradient(135deg, #ff9f1c, #ff7a00 62%, #ffb84d);
    box-shadow: 0 14px 28px rgba(255, 122, 0, .22);
}
.btn-outline-brand {
    border: 1px solid rgba(255, 122, 0, .4);
    color: var(--brand);
    background: #fff;
}
.user-menu-wrap {
    position: relative;
}
.user-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-height: 42px;
    padding: .5rem .8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: #111827;
    font-weight: 600;
}
.user-avatar {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #ff9f1c);
    border-radius: 50%;
    font-weight: 900;
}
.user-menu {
    position: absolute;
    top: calc(100% + .75rem);
    right: 0;
    z-index: 125;
    width: 320px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 1.15);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
    display: grid;
    gap: .85rem;
}
.user-menu-summary {
    display: grid;
    gap: .2rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--line);
}
.user-menu-summary strong {
    font-size: 1rem;
}
.user-menu-summary small {
    color: var(--muted);
    font-size: .83rem;
}
.user-menu-group {
    display: grid;
    gap: .4rem;
}
.user-menu-group h3 {
    margin: 0;
    color: #475467;
    font-size: .75rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.user-menu-group a,
.user-menu-logout {
    border: 0;
    background: transparent;
    color: #111827;
    text-align: left;
    padding: .55rem .75rem;
    border-radius: .9rem;
    font-size: .9rem;
    font-weight: 600;
}
.user-menu-group a:hover,
.user-menu-logout:hover {
    color: var(--brand);
    background: #fffbf3;
}
.user-menu-account {
    padding-top: .35rem;
    border-top: 1px solid var(--line);
}
.user-menu-logout {
    width: 100%;
    cursor: pointer;
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.icon-btn:hover,
.icon-btn:focus-visible {
    border-color: rgba(255,122,0,.25);
    background: #fffbf2;
}
/* DISABLED — replaced by lc-header */
.mobile-header {
    display: none;
    align-items: center;
    width: 100%;
    gap: .75rem;
}
.mobile-location-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 42px;
    padding: .55rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: #111827;
    color: #fff;
    font-weight: 600;
}
.mobile-location-pill:hover,
.mobile-location-pill:focus-visible {
    background: #0f172a;
}
.mobile-location-label {
    display: inline-block;
    line-height: 1;
}
.mobile-location-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: .72rem;
}
/* DISABLED — replaced by lc-header */
.mobile-nav-panel {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    background: rgba(15, 23, 42, .35);
    padding: 1.1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.mobile-nav-panel[hidden] {
    display: none !important;
}
.mobile-nav-header,
.mobile-subpanel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: .95rem 1rem;
}
.mobile-nav-title {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
}
.mobile-nav-list,
.mobile-subpanel-list {
    display: grid;
    gap: .55rem;
    margin-top: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding-right: .3rem;
}
.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    width: 100%;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: #111827;
    font-weight: 700;
    text-align: left;
}
.mobile-nav-item span {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
}
.mobile-nav-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff2e4;
    color: #c2410c;
    font-size: 1rem;
}
.mobile-nav-item:hover,
.mobile-nav-item:focus-visible,
.mobile-subpanel-link:hover,
.mobile-subpanel-link:focus-visible {
    background: #fff7ed;
    border-color: rgba(255,122,0,.25);
}
.chevron {
    color: #94a3b8;
    font-size: 1.1rem;
}
.mobile-nav-screen {
    margin-top: 1rem;
    display: grid;
    gap: .85rem;
}
.mobile-subpanel-link {
    display: block;
    width: 100%;
    padding: .95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: #111827;
    font-weight: 600;
}
.mobile-accordion {
    display: grid;
    gap: .65rem;
}
.mobile-accordion-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}
.mobile-accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: none;
    background: transparent;
    font-size: .96rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
}
.mobile-accordion-button:hover,
.mobile-accordion-button:focus-visible {
    background: #fffbf6;
}
.accordion-icon {
    color: var(--brand);
    transition: transform .2s ease;
}
.mobile-accordion-panel {
    display: none;
    padding: 0 1rem 1rem;
    gap: .6rem;
}
.mobile-accordion-item.open .mobile-accordion-panel {
    display: grid;
}
.mobile-accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}
@media (max-width: 1199px) {
    .brand-logo-full { height: 42px; }
    .location-selector { min-width: 180px; }
    .header-actions { gap: .5rem; }
}
@media (max-width: 991px) {
    .mobile-header {
        display: flex;
    }
    .site-header .navbar-toggler {
        display: none;
    }
    .header-collapse {
        display: none !important;
    }
    .site-header .container {
        align-items: center;
    }
}
@media (max-width: 640px) {
    .site-header .container {
        flex-wrap: wrap;
        align-items: center;
    }
    .brand-logo-full { height: 40px; }
    .header-left {
        flex: 1 1 auto;
        gap: .65rem;
    }
    .site-header .navbar-toggler { margin-left: auto; }
    .header-collapse {
        order: 3;
        flex-basis: 100%;
        width: 100%;
    }
    .premium-nav {
        display: grid;
        justify-content: stretch;
        width: 100%;
        gap: .65rem;
        padding: .85rem 0 1rem;
    }
    .header-menu-toggle {
        justify-content: space-between;
        width: 100%;
        min-height: 46px;
        padding: .65rem .8rem;
        background: #fff;
        border: 1px solid var(--line);
    }
    .header-menu:hover .mega-menu { display: none; }
    .header-menu:focus-within .mega-menu,
    .header-menu.is-open .mega-menu {
        display: grid;
    }
    .mega-menu,
    .compact-menu,
    .management-menu {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: .45rem;
        box-shadow: none;
    }
    .header-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin-left: 0;
    }
    .header-actions form { display: grid; }
    .user-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-height: 78vh;
        margin: 0;
        border-radius: 1rem 1rem 0 0;
        box-shadow: 0 -10px 40px rgba(15, 23, 42, .18);
    }
}
@media (max-width: 640px) {
    body { padding-bottom: 80px; }
    .mobile-bottom-nav { display: grid; }
    .site-header .container { gap: .5rem; }
    .brand-logo-full { height: 38px; }
    .location-selector {
        flex: 1 1 140px;
        min-width: 0;
    }
    .location-pill { min-height: 38px; padding: .45rem .65rem; }
    .header-actions { grid-template-columns: 1fr; }
    .city-panel {
        width: calc(100vw - 24px);
        left: 50%;
        transform: translateX(-50%);
    }
    .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .city-panel-other { max-height: 180px; }
    .header-post { width: 100%; }
    .user-menu-trigger { width: 100%; justify-content: center; }
    .mobile-sticky-actions { display: grid; }
}

.hero-section {
    padding: 64px 0 42px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 194, 71, .22), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f6fbff 48%, #fff7ed 100%);
    border-bottom: 1px solid var(--line);
}
.hero-section h1 {
    max-width: 720px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    font-weight: 900;
    margin: .4rem 0 1rem;
}
.hero-section h1 span { color: var(--brand); }
.hero-copy {
    max-width: 620px;
    color: #344054;
    font-size: 1.05rem;
}
.hero-search {
    display: grid;
    grid-template-columns: 1fr 170px 120px;
    gap: .7rem;
    padding: .72rem;
    margin-top: 1.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.hero-search input,
.hero-search select,
.filter-bar input,
.filter-bar select,
label input,
label select,
label textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .72rem .85rem;
    color: var(--ink);
    background: #fff;
    outline: 0;
}
.hero-search input { border: 0; }
.search-example { color: var(--muted); margin: .6rem 0 0; font-size: .86rem; }
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 2rem;
}
.quick-actions a {
    min-height: 84px;
    padding: 1rem;
    display: grid;
    gap: .2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.quick-actions span { color: var(--brand); font-size: 1.2rem; }
.quick-actions small { color: var(--muted); }
.hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 1rem;
}
.hero-visual > img {
    width: min(480px, 100%);
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(15,23,42,.16);
}
.hero-stat {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .9rem 1.1rem;
    box-shadow: var(--shadow);
}
.hero-stat strong { display: block; font-size: 1.4rem; }
.hero-stat span { color: var(--muted); font-size: .8rem; }

.section-pad { padding: 58px 0; }
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.section-heading h1,
.section-heading h2 { margin: .2rem 0 0; font-weight: 850; }
.section-heading a { color: var(--brand); font-weight: 700; }
.muted-section { background: #f5f7fb; }

.property-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}
.property-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.property-card-list {
    display: grid;
    grid-template-columns: minmax(190px, 260px) 1fr;
}
.property-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #eef2f6;
    overflow: hidden;
}
.property-card-list .property-image { aspect-ratio: auto; min-height: 190px; }
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}
.property-card:hover .property-image img { transform: scale(1.03); }
.badge-featured {
    position: absolute;
    left: .7rem;
    top: .7rem;
    padding: .28rem .55rem;
    color: var(--brand);
    background: #fff4e8;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
}
.save-btn {
    position: absolute;
    top: .65rem;
    right: .65rem;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: var(--brand);
    background: #fff;
    box-shadow: 0 8px 18px rgba(15,23,42,.14);
}
.property-body {
    min-height: 178px;
    display: grid;
    gap: .6rem;
    padding: 1rem;
}
.property-body h3 {
    font-size: 1rem;
    line-height: 1.35;
    margin: 0;
    font-weight: 800;
}
.property-location { color: var(--muted); margin: .15rem 0 0; font-size: .84rem; }
.property-price { color: var(--brand); font-size: 1.05rem; }
.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    color: #475467;
    font-size: .78rem;
}
.property-meta span {
    padding: .3rem .5rem;
    background: #f6f8fb;
    border-radius: 999px;
}

.trust-band { padding: 28px 0; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.trust-grid div,
.location-grid a,
.service-grid article,
.info-grid div,
.timeline-grid div,
.blog-card,
.content-panel,
.form-panel,
.sticky-card,
.wizard-shell,
.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.trust-grid div { padding: 1rem; }
.trust-grid span { color: var(--brand); font-size: 1.25rem; }
.trust-grid p { color: var(--muted); margin: .15rem 0 0; font-size: .84rem; }

.location-grid,
.blog-grid,
.service-grid,
.info-grid,
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.location-grid a { padding: 1rem; }
.location-grid span { display: block; color: var(--muted); margin-top: .3rem; }
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.blog-card { padding: 1.15rem; }
.blog-card span { color: var(--brand); font-weight: 800; font-size: .76rem; }
.blog-card h2,
.blog-card h3 { font-size: 1.08rem; margin: .5rem 0; font-weight: 850; }
.blog-card p { color: var(--muted); }
.blog-card time { color: #98a2b3; font-size: .8rem; }
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.feature-list div {
    padding: 1.1rem;
    background: #fff;
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
}
.feature-list span { display: block; margin-top: .35rem; color: var(--muted); }
.cta-band {
    padding: 42px 0;
    color: #fff;
    background: linear-gradient(135deg, #111827, #26334a);
}
.cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cta-band h2 { max-width: 760px; margin: .3rem 0 0; }

.page-hero {
    padding: 78px 0 54px;
    background: linear-gradient(135deg, #fff, #fff7ed 55%, #eef6ff);
    border-bottom: 1px solid var(--line);
}
.page-hero.compact { padding: 42px 0 28px; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.06;
}
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs {
    color: var(--muted);
    font-size: .83rem;
    margin-bottom: .8rem;
}
.breadcrumbs a { color: var(--brand); }
.management-hero { background: linear-gradient(135deg, #fff7ed, #eff6ff); }

.filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 110px;
    gap: .8rem;
    padding: 1rem;
    margin-bottom: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
label { display: grid; gap: .35rem; color: #344054; font-size: .86rem; font-weight: 700; }
.market-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.2rem;
}
.results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.view-toggle,
.sort-select {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: .45rem .7rem;
    color: #344054;
}
.view-toggle.active { color: var(--brand); border-color: #ffd1a3; background: #fff7ed; }

.property-detail-hero { padding: 24px 0 0; }
.detail-gallery {
    display: grid;
    gap: .8rem;
}
.detail-main-image {
    width: 100%;
    height: min(480px, 46vw);
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.thumb-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; }
.thumb-row img {
    height: 88px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.lc-gallery-thumb { cursor: pointer; transition: border-color .15s, opacity .15s; }
.lc-gallery-thumb:hover { opacity: .85; }
.lc-gallery-thumb.lc-active { border-color: var(--brand); border-width: 2px; }
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
}
.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.detail-title-row h1 { font-weight: 900; margin: 0; }
.detail-price { color: var(--brand); font-size: 1.5rem; white-space: nowrap; }
.detail-chips,
.amenity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: 1rem;
}
.detail-chips span,
.amenity-grid span {
    padding: .5rem .7rem;
    background: #f6f8fb;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.content-panel { padding: 1.2rem; }
.content-panel + .content-panel { margin-top: 1rem; }
.content-panel h2 { font-size: 1.1rem; font-weight: 850; }
.map-card {
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9, #eff6ff);
    border-radius: var(--radius);
    color: #344054;
}
.map-card span { color: var(--brand); font-size: 2rem; }
.sticky-card {
    position: sticky;
    top: 92px;
    padding: 1rem;
}
.sticky-card h2 { font-size: 1.1rem; font-weight: 850; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.2rem;
}
.form-panel { padding: 1.2rem; display: grid; gap: .9rem; }
.service-grid article,
.info-grid div,
.timeline-grid div { padding: 1.2rem; }
.service-grid article span { color: var(--brand); font-size: 1.5rem; }
.timeline-grid div strong {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}
.faq-list details {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.faq-list summary { cursor: pointer; font-weight: 800; }
.legal-copy h2 { font-size: 1.2rem; margin-top: 1.6rem; }

.auth-shell {
    min-height: 78vh;
    display: grid;
    place-items: center;
    padding: 40px 16px;
    background: linear-gradient(135deg, #fff, #fff7ed, #eef6ff);
}
.auth-card {
    width: min(460px, 100%);
    padding: 1.6rem;
}
.auth-card h1 { text-align: center; font-weight: 900; }
.auth-card p { text-align: center; color: var(--muted); }
.auth-card form { display: grid; gap: .8rem; }
.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    font-size: .9rem;
}
.auth-links a { color: var(--brand); font-weight: 700; }

.app-shell {
    display: grid;
    grid-template-columns: 244px 1fr;
    min-height: calc(100vh - 72px);
    background: #f5f7fb;
}
.app-sidebar {
    padding: 1.2rem;
    background: #111827;
    color: #fff;
}
.app-sidebar .brand { color: #fff; margin-bottom: 1.5rem; }
.user-mini {
    display: grid;
    gap: .2rem;
    padding: .9rem;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.user-mini span { color: #cbd5e1; font-size: .82rem; }
.app-sidebar nav { display: grid; gap: .25rem; }
.app-sidebar nav a {
    padding: .72rem .8rem;
    color: #d8dee9;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
}
.app-sidebar nav a.active,
.app-sidebar nav a:hover { background: rgba(255, 122, 0, .18); color: #fff; }
.app-main { padding: 1.4rem; min-width: 0; }
.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.app-topbar h1 { margin: .2rem 0 0; font-weight: 900; }
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}
.metric-grid.admin { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.metric-grid div {
    min-height: 94px;
    display: grid;
    align-content: center;
    gap: .25rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.metric-grid span { color: var(--muted); font-size: .82rem; }
.metric-grid strong { font-size: 1.45rem; }
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1rem;
    margin-top: 1rem;
}
.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .8rem;
}
.panel-heading h2 { margin: 0; }
.panel-heading a,
.panel-heading span { color: var(--muted); font-size: .85rem; font-weight: 700; }
.lead-list { display: grid; gap: .7rem; }
.lead-list div {
    display: grid;
    grid-template-columns: 24px 1fr auto auto;
    gap: .5rem;
    align-items: center;
    padding: .7rem;
    background: #f8fafc;
    border-radius: var(--radius);
}
.lead-list small { color: var(--muted); }
.lead-list em {
    color: var(--green);
    font-style: normal;
    font-size: .8rem;
    font-weight: 800;
}
.lead-list time { color: #98a2b3; font-size: .75rem; }
.avatar-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--blue));
}
.chart-bars {
    min-height: 230px;
    display: flex;
    align-items: end;
    gap: .8rem;
    padding-top: 1rem;
}
.chart-bars span {
    flex: 1;
    min-height: 32px;
    background: linear-gradient(180deg, var(--blue), #93c5fd);
    border-radius: 6px 6px 0 0;
}
.chart-bars.orange span { background: linear-gradient(180deg, var(--brand), var(--brand-2)); }
.table-property {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.table-property img {
    width: 52px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
}
.table-property span { display: block; color: var(--muted); font-size: .8rem; }
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    color: var(--green);
    background: #ecfdf3;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
}
.status-pill.scheduled { color: var(--blue); background: #eff6ff; }
.status-pill.draft { color: var(--brand); background: #fff7ed; }
.wizard-shell { max-width: 900px; margin: 0 auto; padding: 1.3rem; }
.wizard-header,
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.stepper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
    margin: 1.2rem 0;
}
.stepper span {
    padding: .7rem;
    text-align: center;
    color: var(--muted);
    background: #f6f8fb;
    border-radius: var(--radius);
    font-size: .8rem;
    font-weight: 800;
}
.stepper .active { color: var(--brand); background: #fff7ed; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}
.form-grid .full { grid-column: 1 / -1; }
.social-list { display: grid; gap: .85rem; }
.social-list article {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: .9rem;
    align-items: center;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.social-list img {
    width: 84px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}
.social-list h2 { margin: 0; font-size: 1rem; }
.social-list p { margin: .1rem 0; color: var(--muted); }
.social-list span { color: #98a2b3; font-size: .82rem; }

.site-footer {
    padding: 42px 0 96px;
    background: #fff;
    border-top: 1px solid var(--line);
}
.site-footer h6 { font-weight: 850; }
.site-footer a:not(.brand) {
    display: block;
    color: var(--muted);
    margin: .45rem 0;
    font-size: .92rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-right: 80px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .86rem;
}
/* DISABLED — replaced by lc-header */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    min-height: 68px;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(15,23,42,.08);
}
/* DISABLED — replaced by lc-header */
.mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: .12rem;
    color: #667085;
    font-size: .72rem;
    font-weight: 700;
}
/* DISABLED — replaced by lc-header */
.mobile-bottom-nav .nav-icon { font-size: .72rem; font-weight: 900; }
.mobile-post span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
    font-size: 1.6rem;
}
.mobile-post strong {
    color: var(--brand);
    font-size: .72rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 2rem;
    align-items: center;
}
.hero-copy-block { min-width: 0; }
.product-hero h1 {
    max-width: 820px;
    color: #0f172a;
}
.app-search {
    grid-template-columns: 1fr 180px 128px;
    border-radius: 14px;
}
.action-dock a {
    min-height: 94px;
    border-color: rgba(255, 122, 0, .18);
}
.action-dock span {
    color: #0f766e;
    font-size: .82rem;
    font-weight: 900;
}
.hero-product-preview {
    position: relative;
    padding: 1rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(232, 237, 243, .9);
    border-radius: 18px;
    box-shadow: 0 26px 70px rgba(15, 23, 42, .12);
}
.preview-topline,
.preview-metrics,
.detail-actions,
.topbar-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
}
.preview-topline span {
    color: #0f766e;
    font-size: .82rem;
    font-weight: 800;
}
.preview-map {
    position: relative;
    min-height: 300px;
    display: grid;
    place-items: center;
    margin: .9rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(22, 163, 74, .12)), #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
}
.preview-map img {
    width: min(420px, 92%);
    filter: drop-shadow(0 20px 30px rgba(15, 23, 42, .15));
}
.preview-pin {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .6rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    font-size: .78rem;
    font-weight: 800;
}
.preview-pin span {
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
}
.pin-one { left: 1rem; top: 2.2rem; }
.pin-two { right: 1rem; bottom: 2rem; }
.preview-metrics { align-items: stretch; }
.preview-metrics div {
    flex: 1;
    min-width: 96px;
    padding: .75rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.preview-metrics span,
.assistant-strip span,
.property-kicker,
.toolbar-note,
.article-meta {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}
.preview-metrics strong {
    display: block;
    font-size: 1.25rem;
}
.assistant-strip {
    margin-top: .9rem;
    padding: .85rem;
    background: linear-gradient(135deg, #111827, #26334a);
    color: #fff;
    border-radius: var(--radius);
}
.assistant-strip p {
    margin: .2rem 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
}
.assistant-strip span { color: var(--brand-2); }
.signal-band { background: #fff; }

.property-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.save-btn,
.compare-btn {
    border: 0;
    color: #344054;
    background: rgba(255,255,255,.92);
    box-shadow: 0 4px 14px rgba(15,23,42,.16);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: color .18s ease, background .18s ease, transform .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.save-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding: 0;
}
.compare-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    padding: 0;
}
.save-btn:hover { color: #e02424; background: #fff; transform: scale(1.08); }
.compare-btn:hover { color: var(--brand); background: #fff; transform: scale(1.08); }
.card-actions {
    position: absolute;
    top: .65rem;
    right: .65rem;
    display: flex;
    gap: .4rem;
}
.card-actions .save-btn {
    position: static;
}
.save-btn.active {
    color: #e02424;
    background: #fff;
}
.save-btn.active svg { fill: #e02424; stroke: #e02424; }
.compare-btn.active {
    color: var(--brand);
    background: #fff7ed;
}
.property-kicker {
    color: #0f766e;
    margin-bottom: .25rem;
    text-transform: uppercase;
}
.property-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .7rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
}
.property-card-footer a { color: var(--brand); }

.location-grid-rich a {
    min-height: 160px;
    display: grid;
    align-content: start;
    gap: .35rem;
}
.location-grid-rich small {
    color: #0f766e;
    font-weight: 800;
}
.location-grid-rich p {
    margin: .35rem 0 0;
    color: var(--muted);
    font-size: .86rem;
}
.suite-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.suite-grid article {
    min-height: 190px;
    padding: 1.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.suite-grid article span {
    display: inline-flex;
    margin-bottom: .7rem;
    color: #0f766e;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.suite-grid h3 {
    margin: 0 0 .5rem;
    font-size: 1.08rem;
    font-weight: 850;
}
.suite-grid p {
    margin: 0;
    color: var(--muted);
}
.workflow-section {
    background: linear-gradient(135deg, #111827, #26334a);
    color: #fff;
}
.workflow-section .text-muted { color: rgba(255,255,255,.72) !important; }
.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: 1.4rem;
    align-items: center;
}
.journey-list {
    display: grid;
    gap: .75rem;
}
.journey-list a {
    display: grid;
    gap: .2rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
}
.workflow-section .journey-list a {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #fff;
}
.journey-list span {
    color: var(--muted);
    font-size: .9rem;
}
.workflow-section .journey-list span { color: rgba(255,255,255,.7); }

.elevated-filter {
    position: relative;
    z-index: 5;
    margin-top: -32px;
}
.marketplace-hero { padding-bottom: 58px; }
.market-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.2rem;
}
.market-signal-card {
    width: min(360px, 100%);
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.market-signal-card span,
.market-signal-card small {
    display: block;
    color: var(--muted);
}
.market-signal-card strong {
    display: block;
    margin: .25rem 0;
    font-size: 1.35rem;
}
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1rem;
}
.filter-chips a,
.filter-chips label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .45rem .75rem;
    color: #344054;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
}
.filter-chips a:hover { color: var(--brand); border-color: #ffd1a3; }
.filter-chips.compact { margin: .5rem 0 0; }
.filter-chips.large a { min-height: 44px; }
.results-toolbar > div:first-child {
    display: grid;
    gap: .12rem;
}
.toolbar-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.detail-actions {
    justify-content: start;
    margin-bottom: .9rem;
}
.detail-ai { margin-top: .9rem; }
.timeline-list {
    display: grid;
    gap: .65rem;
}
.timeline-list div {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.timeline-list strong {
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}
.service-mini-grid,
.document-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}
.service-mini-grid span,
.document-grid div {
    padding: .75rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #344054;
    font-weight: 800;
}
.document-grid div { display: grid; gap: .25rem; }
.document-grid span { color: var(--muted); font-size: .82rem; }
.lead-card p { font-size: .9rem; }

.compare-tray {
    position: fixed;
    left: 50%;
    bottom: 86px;
    z-index: 70;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .7rem .8rem;
    background: #111827;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .26);
}
.compare-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}
.compare-table th,
.compare-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.compare-table th:first-child,
.compare-table td:first-child {
    color: var(--muted);
    font-weight: 900;
    width: 160px;
}
.compare-table img {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: .6rem;
}
.compare-table th strong,
.compare-table th a { display: block; }
.compare-table th a { color: var(--brand); margin-top: .35rem; }

.app-topbar p { max-width: 720px; }
.owner-grid { grid-template-columns: 1fr 1fr; }
.task-list,
.channel-list {
    display: grid;
    gap: .65rem;
}
.task-list div,
.channel-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .2rem .75rem;
    align-items: center;
    padding: .8rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.task-list span,
.channel-list span {
    color: var(--muted);
    font-size: .84rem;
}
.task-list em,
.channel-list em {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--brand);
    font-style: normal;
    font-size: .78rem;
    font-weight: 900;
}
.admin-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}
.admin-module-grid a {
    min-height: 154px;
    display: grid;
    align-content: start;
    gap: .35rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.admin-module-grid span {
    color: var(--brand);
    font-weight: 900;
}
.admin-module-grid small {
    color: var(--muted);
    line-height: 1.45;
}
.social-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 1rem;
    margin-top: 1rem;
}
.social-composer textarea { resize: vertical; }
.channel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.channel-pills label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .45rem .7rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.wizard-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1rem;
}
.wizard-support-grid div {
    padding: .85rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.wizard-support-grid span {
    display: block;
    margin-top: .2rem;
    color: var(--muted);
    font-size: .84rem;
}
.branding-settings {
    display: grid;
    gap: 1rem;
}
.settings-grid,
.brand-preview-row,
.city-settings-grid {
    display: grid;
    gap: .9rem;
}
.settings-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.settings-grid .settings-toggle {
    align-content: center;
    min-height: 46px;
    margin-top: 1.55rem;
}
.brand-preview-row {
    grid-template-columns: minmax(180px, 1.3fr) repeat(2, minmax(120px, .6fr));
    margin-top: 1rem;
}
.brand-preview-row div {
    display: grid;
    gap: .55rem;
    align-content: center;
    min-height: 120px;
    padding: .85rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.brand-preview-row span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}
.brand-logo-preview {
    width: min(240px, 100%);
    max-height: 82px;
    object-fit: contain;
}
.brand-icon-preview {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 14px;
}
.settings-default-city {
    max-width: 360px;
    margin-bottom: 1rem;
}
.city-settings-list {
    display: grid;
    gap: 1rem;
}
.city-settings-list article {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.city-settings-head {
    display: flex;
    align-items: center;
    gap: .7rem;
}
.city-settings-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.city-settings-grid .full { grid-column: 1 / -1; }

.blog-layout,
.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.2rem;
}
.article-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
}
.blog-sidebar {
    display: grid;
    align-content: start;
    gap: 1rem;
}
.blog-sidebar a {
    display: block;
    color: var(--muted);
    margin-top: .55rem;
    font-weight: 800;
}
.blog-sidebar a:hover { color: var(--brand); }
.article-meta {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}
.article-meta a { color: var(--brand); }
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body h2 {
    margin-top: 1.3rem;
    font-size: 1.35rem;
    font-weight: 850;
}
.read-link {
    display: inline-block;
    color: var(--brand);
    font-weight: 800;
    font-size: .86rem;
}
.empty-state {
    display: grid;
    gap: .5rem;
    place-items: start;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 86px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 48px;
    padding: .55rem .8rem;
    color: #fff;
    background: #16a34a;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(22, 163, 74, .3);
}
.floating-whatsapp .wa-icon {
    flex: 0 0 22px;
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-1px); }
.mobile-sticky-actions {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 68px;
    z-index: 65;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    padding: .7rem;
    background: rgba(255,255,255,.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

@media (max-width: 1199px) {
    .property-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .metric-grid.admin { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .admin-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-logo-full { width: 158px; }
    .location-selector { min-width: 164px; }
    .header-menu-toggle { padding: .42rem .45rem; font-size: .82rem; }
    .header-actions { gap: .3rem; margin-left: .2rem; }
    .header-post,
    .header-login { padding: .45rem .55rem; font-size: .82rem; }
    .profile-chip strong { display: none; }
}
@media (max-width: 991px) {
    .site-header .container {
        flex-wrap: wrap;
        align-items: center;
    }
    .header-left {
        flex: 1 1 auto;
        gap: .6rem;
    }
    .site-header .navbar-toggler { margin-left: auto; }
    .header-collapse {
        order: 3;
        flex-basis: 100%;
        width: 100%;
    }
    .premium-nav {
        display: grid;
        justify-content: stretch;
        width: 100%;
        gap: .55rem;
        padding: .85rem 0 1rem;
    }
    .header-menu-toggle {
        justify-content: space-between;
        width: 100%;
        min-height: 46px;
        padding: .6rem .75rem;
        background: #fff;
        border: 1px solid var(--line);
    }
    .header-menu:hover .mega-menu { display: none; }
    .header-menu:focus-within .mega-menu,
    .header-menu.is-open .mega-menu {
        display: grid;
    }
    .mega-menu,
    .compact-menu,
    .management-menu {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: .45rem;
        box-shadow: none;
    }
    .header-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin-left: 0;
    }
    .header-actions form { display: grid; }
    .profile-chip {
        justify-content: center;
        border-radius: var(--radius);
    }
    .profile-chip strong { display: block; }
    .settings-grid,
    .brand-preview-row,
    .city-settings-list article,
    .city-settings-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid,
    .hero-search,
    .filter-bar,
    .market-layout,
    .detail-layout,
    .contact-layout,
    .app-shell,
    .workflow-layout,
    .social-workspace,
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }
    .quick-actions,
    .trust-grid,
    .location-grid,
    .service-grid,
    .suite-grid,
    .info-grid,
    .timeline-grid,
    .metric-grid,
    .metric-grid.admin {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .property-grid,
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sticky-card { position: static; }
    .app-sidebar { display: none; }
    .hero-visual { min-height: 320px; }
    .market-hero-row {
        align-items: stretch;
        flex-direction: column;
    }
    .service-mini-grid,
    .document-grid,
    .wizard-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    body { padding-bottom: 68px; }
    .mobile-bottom-nav { display: grid; }
    .site-header .container { gap: .5rem; }
    .brand-logo-full { width: 126px; max-height: 48px; }
    .location-selector {
        flex: 1 1 118px;
        min-width: 0;
    }
    .city-trigger {
        width: 100%;
        min-height: 42px;
        padding: .3rem .45rem;
    }
    .city-mark {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: .58rem;
    }
    .city-copy small,
    .city-status { display: none; }
    .city-menu {
        width: min(300px, calc(100vw - 24px));
        left: auto;
        right: 0;
    }
    .header-actions { grid-template-columns: 1fr; }
    .notification-link {
        width: 100%;
        border-radius: var(--radius);
    }
    .hero-section { padding: 36px 0 28px; }
    .hero-section h1 { font-size: 2.45rem; }
    .hero-search,
    .quick-actions,
    .trust-grid,
    .location-grid,
    .feature-list,
    .property-grid,
    .blog-grid,
    .service-grid,
    .suite-grid,
    .admin-module-grid,
    .info-grid,
    .timeline-grid,
    .metric-grid,
    .metric-grid.admin,
    .dashboard-grid,
    .form-grid,
    .stepper {
        grid-template-columns: 1fr;
    }
    .section-heading,
    .cta-band .container,
    .detail-title-row,
    .app-topbar,
    .footer-bottom,
    .results-toolbar,
    .wizard-header,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .section-pad { padding: 38px 0; }
    .property-card-list { grid-template-columns: 1fr; }
    .detail-main-image { height: 260px; }
    .thumb-row { grid-template-columns: repeat(3, 1fr); }
    .hero-visual { display: none; }
    .hero-product-preview { display: none; }
    .app-search { grid-template-columns: 1fr; }
    .elevated-filter { margin-top: -20px; }
    .lead-list div { grid-template-columns: 24px 1fr; }
    .lead-list em,
    .lead-list time { grid-column: 2; }
    .social-list article { grid-template-columns: 72px 1fr; }
    .social-list .status-pill { grid-column: 2; justify-self: start; }
    .service-mini-grid,
    .document-grid,
    .wizard-support-grid { grid-template-columns: 1fr; }
    .task-list div,
    .channel-list div { grid-template-columns: 1fr; }
    .task-list em,
    .channel-list em {
        grid-column: auto;
        grid-row: auto;
    }
    .mobile-sticky-actions { display: grid; }
    .floating-whatsapp {
        right: 12px;
        bottom: 76px;
    }
    body:has(.mobile-sticky-actions) .floating-whatsapp {
        bottom: 142px;
    }
    .compare-tray {
        left: .75rem;
        right: .75rem;
        bottom: 140px;
        transform: none;
        justify-content: space-between;
    }
    .site-footer { padding-bottom: 118px; }
}

/* Premium header/navigation refresh */
.header-menu-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: .5rem .75rem;
    border-radius: var(--radius);
    color: #334155;
    font-size: .92rem;
    font-weight: 600;
}
.header-menu-link:hover,
.header-menu-link:focus-visible {
    color: var(--brand);
    background: #fffbf3;
}
.nav-line-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: currentColor;
}
.nav-line-icon::before,
.nav-line-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}
.nav-line-heart::before {
    left: 5px;
    top: 6px;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}
.nav-line-heart::after {
    left: 5px;
    top: 4px;
    width: 7px;
    height: 7px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 7px 0 0 -2px #fff, 7px 0 0 0 currentColor;
}
.nav-line-user::before {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.nav-line-user::after {
    left: 5px;
    bottom: 3px;
    width: 14px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 10px 10px 4px 4px;
}
.nav-line-home::before {
    left: 4px;
    bottom: 4px;
    width: 16px;
    height: 13px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 3px;
}
.nav-line-home::after {
    left: 5px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
}
.nav-line-tag::before {
    left: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 5px;
    transform: rotate(-35deg);
}
.nav-line-tag::after {
    left: 8px;
    top: 7px;
    width: 4px;
    height: 4px;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.nav-line-building::before,
.nav-line-tower::before {
    left: 6px;
    top: 3px;
    width: 13px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 2px;
}
.nav-line-building::after,
.nav-line-tower::after {
    left: 9px;
    top: 7px;
    width: 2px;
    height: 2px;
    background: currentColor;
    box-shadow: 5px 0 0 currentColor, 0 5px 0 currentColor, 5px 5px 0 currentColor, 0 10px 0 currentColor, 5px 10px 0 currentColor;
}
.nav-line-sofa::before {
    left: 3px;
    top: 9px;
    width: 18px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 7px 7px 3px 3px;
}
.nav-line-info::before {
    left: 5px;
    top: 3px;
    width: 14px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
}
.nav-line-info::after {
    left: 11px;
    top: 7px;
    width: 2px;
    height: 9px;
    background: currentColor;
    box-shadow: 0 -3px 0 currentColor;
}
.nav-line-phone::before {
    left: 7px;
    top: 3px;
    width: 10px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 8px;
    transform: rotate(-25deg);
}
.nav-line-chat::before {
    left: 3px;
    top: 5px;
    width: 18px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 8px;
}
.nav-line-chat::after {
    left: 7px;
    bottom: 2px;
    border-top: 6px solid currentColor;
    border-right: 6px solid transparent;
}
.city-panel-close {
    display: none;
    border: 0;
    background: #111827;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    font-size: 1.35rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .site-header .container {
        position: relative;
    }
    .brand-logo-full {
        height: 42px;
        max-height: 46px;
    }
    .header-nav {
        min-height: 66px;
    }
    .site-header {
        min-height: 66px;
    }
    .city-panel {
        left: 0;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 64px;
    }
    .site-header {
        min-height: 64px;
        background: #050505;
        border-bottom: 0;
        backdrop-filter: none;
    }
    .header-nav {
        min-height: 64px;
        padding: 0;
    }
    .site-header .container {
        min-height: 64px;
        display: flex;
        align-items: center;
        padding-inline: .8rem;
        position: relative;
    }
    .mobile-header {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px 42px;
        align-items: center;
        gap: .55rem;
        width: 100%;
    }
    .mobile-header .icon-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        color: #fff;
        background: transparent;
        border-color: transparent;
        border-radius: 50%;
    }
    .mobile-header .icon-btn:hover,
    .mobile-header .icon-btn:focus-visible {
        background: rgba(255,255,255,.1);
    }
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }
    .hamburger {
        position: relative;
    }
    .hamburger::before,
    .hamburger::after {
        content: "";
        position: absolute;
        left: 0;
    }
    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }
    .mobile-location-pill {
        justify-self: start;
        width: auto;
        max-width: 100%;
        min-height: 42px;
        padding: .55rem .85rem;
        background: transparent;
        border-color: transparent;
        border-radius: 999px;
        color: #fff;
        font-weight: 800;
    }
    .mobile-location-label {
        max-width: 45vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .header-left {
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 0;
        overflow: visible;
    }
    .brand-title,
    .location-selector > .location-pill,
    .navbar-toggler,
    .header-collapse {
        display: none !important;
    }
    .location-selector {
        position: static;
        min-width: 0;
    }
    .city-panel {
        position: fixed;
        inset: 0;
        z-index: 1100;
        width: auto;
        max-height: none;
        padding: 1rem;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .city-panel-search {
        position: sticky;
        top: 0;
        z-index: 2;
        grid-template-columns: 1fr auto auto;
        display: grid;
        background: #fff;
        padding-bottom: .85rem;
    }
    .city-panel-reset {
        white-space: nowrap;
    }
    .city-panel-close {
        display: inline-grid;
        place-items: center;
    }
    .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .city-panel-other {
        max-height: none;
    }
    /* DISABLED — replaced by lc-header */
    .mobile-nav-panel,
    .mobile-account-panel {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 1080;
        width: min(460px, 100vw);
        padding: 0;
        overflow: hidden;
        background: #fff;
        border-right: 1px solid var(--line);
        box-shadow: 24px 0 70px rgba(15, 23, 42, .22);
        animation: locoroMenuIn .22s ease-out;
        backdrop-filter: none;
    }
    /* DISABLED — replaced by lc-header */
    .mobile-account-panel {
        z-index: 1090;
    }
    .mobile-account-panel[hidden],
    .mobile-nav-panel[hidden] {
        display: none !important;
    }
    @keyframes locoroMenuIn {
        from { transform: translateX(-100%); }
        to { transform: translateX(0); }
    }
    .mobile-nav-header,
    .mobile-subpanel-header,
    .mobile-account-head {
        min-height: 58px;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        color: #fff;
        background: #050505;
        border: 0;
        border-radius: 0;
    }
    .mobile-nav-header [data-mobile-menu-back] {
        visibility: hidden;
    }
    .mobile-nav-header .icon-btn,
    .mobile-subpanel-header .icon-btn,
    .mobile-account-head .icon-btn {
        color: #fff;
        background: transparent;
        border: 0;
    }
    .mobile-nav-header strong,
    .mobile-subpanel-header strong {
        flex: 1;
        color: #fff;
        font-size: 1rem;
        font-weight: 900;
    }
    .mobile-menu-close,
    .mobile-account-close {
        font-size: 1.6rem;
    }
    .mobile-nav-list,
    .mobile-subpanel-list,
    .mobile-account-list {
        margin: 0;
        display: grid;
        gap: 0;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        padding: 0;
        background: #fff;
    }
    .mobile-nav-item,
    .mobile-subpanel-link {
        min-height: 56px;
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr) auto;
        align-items: center;
        gap: .85rem;
        width: 100%;
        padding: 0 1.2rem;
        color: #111827;
        background: #fff;
        border: 0;
        border-bottom: 1px solid #edf0f4;
        border-radius: 0;
        box-shadow: none;
        font-size: .98rem;
        font-weight: 650;
        text-align: left;
    }
    .mobile-subpanel-link {
        display: flex;
        min-height: 44px;
        padding: .35rem 1.35rem .35rem 1.8rem;
        color: #475467;
        font-weight: 500;
    }
    .mobile-nav-item:hover,
    .mobile-nav-item:focus-visible,
    .mobile-subpanel-link:hover,
    .mobile-subpanel-link:focus-visible {
        background: #fff8ef;
        border-color: #edf0f4;
    }
    .mobile-nav-icon {
        display: none;
    }
    .chevron {
        color: #111827;
        font-size: 1.35rem;
        line-height: 1;
    }
    .mobile-nav-screen {
        margin: 0;
        gap: 0;
    }
    .mobile-accordion {
        gap: 0;
    }
    .mobile-accordion-item {
        border: 0;
        border-bottom: 1px solid #edf0f4;
        border-radius: 0;
        background: #fff;
    }
    .mobile-accordion-button {
        min-height: 56px;
        padding: 0 1.2rem;
        font-size: 1rem;
        font-weight: 850;
    }
    .accordion-icon {
        width: 24px;
        text-align: center;
        color: #222;
        font-size: 1.6rem;
        line-height: 1;
    }
    .mobile-accordion-panel {
        padding: .45rem 0 .8rem;
        background: #fff;
    }
    .mobile-accordion-item.open .accordion-icon {
        transform: none;
    }
    .mobile-account-card {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: .75rem;
    }
    .mobile-account-card .icon-avatar {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: #111827;
        background: linear-gradient(135deg, var(--brand-2), var(--brand));
        font-weight: 900;
    }
    .mobile-account-card div {
        display: grid;
        min-width: 0;
    }
    .mobile-account-card small {
        color: rgba(255,255,255,.72);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .mobile-account-logout {
        color: #b42318;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 58px;
    }
    .site-header,
    .header-nav,
    .site-header .container {
        min-height: 58px;
    }
    .mobile-header {
        grid-template-columns: 38px minmax(0, 1fr) 38px 38px;
        gap: .45rem;
    }
    .mobile-header .icon-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
}

/* Locoro 2.0 product redesign layer */
:root {
    --brand: #ff7a1a;
    --brand-2: #ffc247;
    --brand-3: #ff5a2d;
    --ink: #101828;
    --navy: #17264a;
    --teal: #0f766e;
    --line: #e7ecf2;
    --soft: #f8f9fa;
    --radius: 12px;
    --macro-radius: 24px;
    --shadow: 0 4px 20px rgba(15, 23, 42, .06);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, .10);
}

body {
    background: #fff;
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* DISABLED — replaced by lc-header */
.site-header {
    min-height: 66px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1px 0 rgba(231, 236, 242, .9);
}

/* DISABLED — replaced by lc-header */
.header-nav,
.navbar {
    min-height: 66px;
}

.brand-logo-full {
    height: 38px;
    width: auto;
    max-width: 174px;
    object-fit: contain;
}

.brand-icon {
    object-fit: contain;
}

.location-pill {
    background: #fff;
    color: var(--ink);
    border-color: #edf1f6;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.location-pill:hover,
.location-pill:focus-visible {
    border-color: rgba(255, 122, 26, .3);
    box-shadow: 0 8px 24px rgba(255, 122, 26, .12);
}

.header-menu-toggle,
.header-menu-link {
    color: #24324b;
    font-weight: 700;
}

.header-post,
.btn-brand {
    background: linear-gradient(135deg, var(--brand-2), var(--brand) 48%, var(--brand-3));
    color: #fff;
}

.mega-menu,
.city-panel,
.user-menu,
.property-card,
.content-panel,
.form-panel,
.sticky-card,
.blog-card,
.location-grid a,
.suite-grid article,
.service-grid article,
.timeline-grid div,
.metric-grid div,
.admin-module-grid a {
    box-shadow: var(--shadow);
}

.mobile-brand-mark {
    display: none;
    min-width: 0;
}

.mobile-brand-mark img {
    width: 112px;
    height: 34px;
    object-fit: contain;
}

.locoro-hero2 {
    padding: 68px 0 48px;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 68%, #f8f9fa 100%);
    border-bottom: 1px solid var(--line);
}

.locoro-hero2 .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    gap: 2.5rem;
}

.locoro-hero2 h1 {
    max-width: 780px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: 0;
}

.locoro-hero2 h1 span {
    display: inline-block;
    color: var(--brand);
}

.locoro-hero2 .hero-copy {
    max-width: 690px;
    color: #475467;
}

.hero-intent-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin: 1.5rem 0 .8rem;
}

.hero-intent-tabs button {
    min-height: 38px;
    padding: .55rem .85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-size: .88rem;
    font-weight: 800;
    cursor: pointer;
}

.hero-intent-tabs button.active,
.hero-intent-tabs button:hover,
.hero-intent-tabs button:focus-visible {
    color: #fff;
    border-color: transparent;
    background: var(--ink);
}

.ai-search {
    grid-template-columns: 1fr 118px;
    max-width: 820px;
    margin-top: 0;
    border-radius: 16px;
    border-color: #edf1f6;
    box-shadow: var(--shadow-lg);
}

.ai-search input {
    min-height: 54px;
    padding-left: 1rem;
    font-size: .98rem;
}

.advanced-filter-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr)) repeat(2, auto) 92px;
    align-items: center;
    gap: .55rem;
    max-width: 920px;
    margin-top: .85rem;
}

.advanced-filter-strip select,
.advanced-filter-strip button,
.mini-check {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: .45rem .7rem;
    font-size: .82rem;
    font-weight: 800;
}

.mini-check {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #344054;
}

.mini-check input {
    width: auto;
    min-height: 0;
    accent-color: var(--brand);
}

.quick-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .9rem;
}

.quick-search-chips a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: .45rem .75rem;
    color: #344054;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.quick-search-chips a:hover {
    color: var(--brand);
    border-color: rgba(255, 122, 26, .35);
    background: #fff8ef;
}

.locoro-command-card {
    border-radius: var(--macro-radius);
    background: #ffffff;
    border: 1px solid #edf1f6;
}

.command-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.command-head div {
    display: grid;
    gap: .15rem;
}

.command-head span,
.command-search-card small {
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.command-head strong {
    font-size: 1.1rem;
}

.command-head img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    object-fit: contain;
    background: #fff8ef;
}

.command-search-card {
    display: grid;
    gap: .65rem;
    margin: 1rem 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #24365f);
    border-radius: 18px;
}

.command-search-card p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.command-search-card div {
    display: grid;
    gap: .2rem;
    padding-top: .65rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.command-search-card div span {
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
}

.lead-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .45rem;
    margin-top: .9rem;
}

.lead-flow span {
    display: grid;
    place-items: center;
    min-height: 38px;
    color: #344054;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

.locoro-signal-grid div {
    min-height: 142px;
    border-radius: 16px;
}

.platform-suite-section,
.seo-network-section {
    background: #f8f9fa;
}

.suite-grid-2 article {
    min-height: 184px;
    border-radius: 16px;
}

.conversion-section {
    background: #fff;
}

.conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.conversion-grid article,
.service-preview-card {
    padding: 1.3rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--macro-radius);
    box-shadow: var(--shadow);
}

.conversion-grid h2 {
    margin: .35rem 0 .65rem;
    font-weight: 900;
}

.conversion-grid p {
    color: var(--muted);
}

.locoro-final-cta {
    background: linear-gradient(135deg, var(--navy), #101828);
}

.marketplace-filter {
    grid-template-columns: minmax(190px, 1.15fr) minmax(150px, .8fr) minmax(130px, .65fr) minmax(150px, .75fr) minmax(150px, .75fr) minmax(120px, .6fr) 110px;
    border-radius: 18px;
}

.property-card {
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.property-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 26, .28);
    box-shadow: var(--shadow-lg);
}

.property-badges {
    position: absolute;
    left: .7rem;
    top: .7rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    max-width: calc(100% - 1.4rem);
}

.property-badges .badge-featured,
.badge-verified {
    position: static;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
}

.badge-verified {
    color: #0f766e;
    background: #ecfdf3;
}

.property-badges .badge-featured {
    color: var(--brand);
    background: #fff8ef;
}

.card-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.card-trust-row span {
    padding: .3rem .5rem;
    color: #0f766e;
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
}

.property-card-footer div {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
}

.property-card-footer div a:first-child {
    color: #16a34a;
}

.detail-conversion-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    margin: .5rem 0 1rem;
}

.detail-conversion-ribbon div {
    padding: .85rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.detail-conversion-ribbon span {
    display: block;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 800;
}

.detail-conversion-ribbon strong {
    display: block;
    margin-top: .2rem;
}

.service-hero-grid {
    align-items: center;
}

.interiors-hero {
    background: linear-gradient(180deg, #ffffff, #fff8ef);
}

.service-preview-card {
    min-height: 300px;
}

.service-preview-card > span {
    color: var(--teal);
    font-weight: 900;
    text-transform: uppercase;
}

.service-preview-card > strong {
    display: block;
    margin: .4rem 0 1rem;
    font-size: 1.35rem;
}

.brief-progress {
    height: 10px;
    overflow: hidden;
    background: #eef2f7;
    border-radius: 999px;
}

.brief-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    border-radius: inherit;
}

.service-preview-card ul {
    display: grid;
    gap: .65rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.service-preview-card li {
    padding: .65rem .75rem;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #344054;
    font-weight: 800;
}

.light-workflow {
    color: var(--ink);
}

.light-workflow .journey-list a {
    background: #fff;
}

@media (max-width: 1199px) {
    .marketplace-filter {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .mobile-header {
        display: grid;
        grid-template-columns: 40px minmax(82px, auto) minmax(0, 1fr) 40px 40px;
        align-items: center;
        gap: .45rem;
    }

    .mobile-brand-mark {
        display: inline-flex;
        align-items: center;
        overflow: hidden;
    }

    .mobile-location-pill {
        justify-content: center;
    }

    .locoro-hero2 .hero-grid,
    .conversion-grid,
    .marketplace-filter {
        grid-template-columns: 1fr;
    }

    .advanced-filter-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advanced-filter-strip .mini-check,
    .advanced-filter-strip button {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    body {
        background: #fff;
    }

    .site-header,
    .header-nav,
    .site-header .container {
        min-height: 58px;
    }

    .mobile-header {
        grid-template-columns: 38px minmax(76px, 106px) minmax(0, 1fr) 38px 38px;
    }

    .mobile-brand-mark img {
        width: 104px;
        max-width: 100%;
    }

    .mobile-location-pill {
        min-height: 36px;
        padding: .4rem .45rem;
        font-size: .84rem;
    }

    .locoro-hero2 {
        padding: 34px 0 28px;
    }

    .locoro-hero2 h1 {
        font-size: 2.35rem;
        text-align: center;
    }

    .locoro-hero2 .hero-copy,
    .locoro-hero2 .eyebrow {
        display: block;
        text-align: center;
    }

    .hero-intent-tabs,
    .quick-search-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: .25rem;
    }

    .hero-intent-tabs button,
    .quick-search-chips a {
        flex: 0 0 auto;
    }

    .ai-search {
        grid-template-columns: 1fr;
        padding: .6rem;
    }

    .advanced-filter-strip {
        grid-template-columns: 1fr 1fr;
    }

    .advanced-filter-strip button {
        grid-column: 1 / -1;
    }

    .detail-conversion-ribbon,
    .lead-flow {
        grid-template-columns: 1fr;
    }

    .property-card {
        border-radius: 14px;
    }

    .mobile-bottom-nav {
        min-height: 70px;
        z-index: 1040;
    }

    .mobile-bottom-nav a {
        color: #475467;
    }

    .mobile-bottom-nav .nav-line-icon {
        width: 22px;
        height: 22px;
    }
}

/* ============================================================
   LOCORO PREMIUM VISUAL LAYER — hero, cards, trust, footer
   ============================================================ */

/* Hero: richer background with geometric decoration */
.locoro-hero2 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 56% 42% at 8% 18%, rgba(255,194,71,.13) 0%, transparent 70%),
        radial-gradient(ellipse 44% 36% at 92% 80%, rgba(255,122,26,.09) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, #fffdf9 60%, #f8f9fa 100%);
}

/* Decorative background dots grid */
.locoro-hero2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,122,26,.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Floating orange accent blob */
.locoro-hero2::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,194,71,.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.locoro-hero2 .container {
    position: relative;
    z-index: 1;
}

/* Hero eyebrow pill badge */
.locoro-hero2 .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: .35rem .75rem;
    background: #fff8ef;
    border: 1px solid #ffd4a3;
    border-radius: 999px;
    font-size: .74rem;
    letter-spacing: .04em;
}

/* Intent tabs — more premium pill style */
.hero-intent-tabs button {
    padding: .5rem 1rem;
    font-size: .86rem;
    letter-spacing: .01em;
    transition: color .18s, background .18s, border-color .18s, box-shadow .18s;
}

.hero-intent-tabs button.active {
    box-shadow: 0 4px 14px rgba(17,24,39,.14);
}

/* AI Search bar — premium card with glow */
.ai-search {
    border: 1.5px solid #e7ecf2;
    transition: border-color .2s, box-shadow .2s;
}

.ai-search:focus-within {
    border-color: rgba(255,122,26,.45);
    box-shadow: 0 0 0 3px rgba(255,122,26,.08), var(--shadow-lg);
}

.ai-search input:focus {
    outline: none;
}

.ai-search .btn-brand {
    border-radius: 12px;
    font-size: .9rem;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* Command card — glassmorphism upgrade */
.locoro-command-card {
    background: linear-gradient(160deg, #ffffff 0%, #fdfcfa 100%);
    border: 1px solid rgba(231,236,242,.9);
    box-shadow: 0 32px 80px rgba(15,23,42,.09), 0 0 0 1px rgba(255,255,255,.8) inset;
}

.command-search-card {
    background: linear-gradient(135deg, #17264a 0%, #1e3260 55%, #243870 100%);
    box-shadow: 0 8px 24px rgba(23,38,74,.24);
}

.lead-flow span {
    font-size: .75rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: background .18s, border-color .18s, color .18s;
}

.lead-flow span:hover {
    background: #fff8ef;
    border-color: rgba(255,122,26,.3);
    color: var(--brand);
}

/* Trust/signal band */
.locoro-signal-grid div {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #edf1f6;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}

.locoro-signal-grid div:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.locoro-signal-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #fff8ef, #fff0de);
    border: 1px solid #ffd4a3;
    border-radius: 12px;
    color: var(--brand);
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}

.locoro-signal-grid strong {
    display: block;
    font-size: 1rem;
    font-weight: 850;
    margin-bottom: .2rem;
}

/* Property card — premium hover + image overlay */
.property-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,28,.28) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.property-card:hover .property-image::after {
    opacity: 1;
}

.property-body h3 a {
    color: var(--ink);
    transition: color .18s;
}

.property-body h3 a:hover {
    color: var(--brand);
}

.property-price {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -.01em;
}

/* Suite grid article — premium card */
.suite-grid article {
    border-radius: 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.suite-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(255,122,26,.2);
    box-shadow: var(--shadow-lg);
}

/* Location grid — hover lift */
.location-grid a {
    border-radius: 18px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.location-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(255,122,26,.25);
    box-shadow: var(--shadow-lg);
}

.location-grid-rich a strong {
    font-size: 1.15rem;
    font-weight: 900;
}

/* Blog cards */
.blog-card {
    border-radius: 16px;
    transition: transform .2s, box-shadow .2s;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Conversion section cards */
.conversion-grid article {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: transform .2s, box-shadow .2s;
}

.conversion-grid article:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.conversion-grid .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

/* Final CTA band */
.locoro-final-cta {
    padding: 52px 0;
    background: linear-gradient(135deg, #17264a 0%, #101828 60%, #0a1222 100%);
}

.locoro-final-cta .eyebrow {
    color: var(--brand-2);
    background: rgba(255,194,71,.12);
    border: 1px solid rgba(255,194,71,.2);
    display: inline-flex;
    padding: .35rem .75rem;
    border-radius: 999px;
}

/* Journey list links — hover accent */
.journey-list a {
    transition: transform .18s, border-color .18s;
}

.journey-list a:hover {
    transform: translateX(4px);
}

.workflow-section .journey-list a:hover {
    border-color: rgba(255,122,26,.5);
}

/* WhatsApp floating button — pulse ring */
.floating-whatsapp {
    animation: waPulse 2.8s ease-in-out infinite;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 16px 34px rgba(22,163,74,.3); }
    50% { box-shadow: 0 16px 34px rgba(22,163,74,.5), 0 0 0 8px rgba(22,163,74,.08); }
}

/* DISABLED — replaced by lc-header */
/* Mobile bottom nav active state */
.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--brand);
}

/* Section eyebrow baseline refinement */
.section-heading .eyebrow {
    font-size: .74rem;
    letter-spacing: .06em;
}

/* Auth card refinement */
.auth-card {
    border-radius: 20px;
}

/* Responsive: hide decorative blobs on small screens */
@media (max-width: 640px) {
    .locoro-hero2::after {
        display: none;
    }
}


/* ═══════════════════════════════════════════
   MARKETPLACE HERO (mp-hero)
═══════════════════════════════════════════ */
.mp-hero {
    position: relative;
    padding: 52px 0 72px;
    background: linear-gradient(140deg, #fff 0%, #fff7ed 50%, #eef6ff 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.mp-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(249,115,22,.07) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,.06) 0%, transparent 50%);
    pointer-events: none;
}
.mp-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.25rem;
}
.mp-hero__copy {
    flex: 1;
    min-width: 0;
}
.mp-hero__title {
    font-size: clamp(1.9rem, 3.8vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: .3rem 0 .75rem;
}
.mp-hero__desc {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.mp-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.mp-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: .28rem .75rem;
    letter-spacing: .01em;
}

/* Signal card */
.mp-signal-card {
    flex-shrink: 0;
    width: min(320px, 100%);
    background: white;
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.mp-signal-card__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .75rem;
}
.mp-signal-card__stat {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: 1rem;
}
.mp-signal-card__num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #F97316, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mp-signal-card__unit {
    font-size: .95rem;
    font-weight: 600;
    color: var(--muted);
}
.mp-signal-card__intents {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1rem;
}
.mp-intent-tag {
    font-size: .72rem;
    font-weight: 700;
    color: var(--brand);
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: .22rem .65rem;
}
.mp-signal-card__footer {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--muted);
}

/* Filter wrap: lifts filter bar out of hero */
.mp-filter-wrap {
    background: transparent;
}

/* Sidebar CTA */
.mp-sidebar-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 1rem;
    text-align: center;
}
.mp-sidebar-cta p {
    font-size: .82rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0 0 .75rem;
}

/* Empty state (marketplace) */
.mp-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--line);
}
.mp-empty-state__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    margin-bottom: .25rem;
}
.mp-empty-state h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    color: var(--ink);
}
.mp-empty-state p {
    max-width: 400px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* View toggle: icon buttons */
.view-toggle svg { display: block; }

/* Breadcrumb chevron */
.breadcrumbs svg { vertical-align: middle; opacity: .45; }

/* Responsive */
@media (max-width: 900px) {
    .mp-hero__inner { flex-direction: column; align-items: stretch; }
    .mp-signal-card { width: 100%; }
    .mp-hero { padding: 36px 0 56px; }
    .mp-hero__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}
@media (max-width: 600px) {
    .mp-signal-card { display: none; }
    .mp-hero { padding: 28px 0 44px; }
}

/* ═══════════════════════════════════════════
   PROPERTY DETAIL ENHANCEMENTS
═══════════════════════════════════════════ */

/* Gallery placeholder when no image */
.detail-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: linear-gradient(135deg, #f6f8fb, #eef1f6);
    color: #94a3b8;
    font-size: .85rem;
    font-weight: 600;
}

/* Trust chip variant in detail-chips */
.chip-trust {
    color: #0f766e !important;
    background: #ecfdf5 !important;
    border: 1px solid #a7f3d0 !important;
    font-weight: 900 !important;
}

/* Map card "Open in Maps" link alignment */
.map-card { align-content: start; gap: .4rem; }
.map-card .btn { align-self: start; display: inline-flex; align-items: center; gap: .35rem; }

/* Detail action buttons: icon + text */
.detail-actions .btn { display: inline-flex; align-items: center; gap: .4rem; }

/* ═══════════════════════════════════════════
   PROPERTY CARD ENHANCEMENTS
═══════════════════════════════════════════ */

/* Image placeholder when no photo is available */
.property-image__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6f8fb, #eef1f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

/* Kicker: pill separator dot */
.property-kicker {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap;
}
.property-kicker__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: .4;
    flex-shrink: 0;
}

/* Location pin icon inline */
.property-location {
    display: flex;
    align-items: center;
    gap: .3rem;
}
.property-location svg { flex-shrink: 0; opacity: .55; }

/* Price — larger and bolder */
.property-price {
    font-size: 1.18rem !important;
    font-weight: 900 !important;
    letter-spacing: -.01em;
}

/* Footer: WhatsApp icon link + View Details btn */
.pc-wa-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: #16a34a;
    text-decoration: none;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    border-radius: 8px;
    padding: .35rem .7rem;
    transition: background .15s, border-color .15s;
}
.pc-wa-link:hover { background: #dcfce7; border-color: #86efac; color: #15803d; }


/* ═══════════════════════════════════════════
   DASHBOARD: EDITABLE PROFILE & LISTINGS
═══════════════════════════════════════════ */
.lc-edit-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 20px;
}
.lc-edit-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lc-edit-card-head h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.lc-edit-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.lc-edit-toggle-btn:hover { border-color: var(--brand); color: var(--brand); background: #FFF7ED; }
.lc-edit-toggle-btn.lc-editing { background: var(--brand); border-color: var(--brand); color: white; }
.lc-edit-avatar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.lc-edit-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.lc-edit-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lc-edit-avatar-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid white;
}
.lc-edit-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lc-edit-field { margin-bottom: 4px; }
.lc-edit-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.lc-edit-value { font-size: 14.5px; color: var(--ink); font-weight: 500; padding: 10px 0; border-bottom: 1px solid transparent; min-height: 40px; }
.lc-edit-field .lc-edit-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s;
  display: none !important;
  background: white;
  font-family: inherit;
}
.lc-edit-field .lc-edit-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.08); }
.lc-edit-field.lc-editing .lc-edit-value { display: none !important; }
.lc-edit-field.lc-editing .lc-edit-input { display: block !important; }
/* Property Edit Modal (#lcPropEditForm) always shows its inputs — it has no
   view/edit toggle state, so it's exempt from the hidden-by-default rule above. */
#lcPropEditForm .lc-edit-input { display: block !important; }
.lc-edit-save-row { display: none; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--soft); }
.lc-edit-save-row.lc-show { display: flex; }
.lc-edit-save-btn {
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.lc-edit-save-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,115,22,.3); }
.lc-edit-cancel-btn {
  padding: 10px 24px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s;
}
.lc-edit-cancel-btn:hover { border-color: var(--ink); color: var(--ink); }
.lc-edit-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.lc-edit-toast.lc-show { transform: translateY(0); opacity: 1; }
.lc-edit-toast--success { background: var(--green); }
.lc-edit-toast--error { background: #EF4444; }

/* ── PROPERTY CARD ROWS ── */
.lc-prop-row {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  background: white;
  transition: border-color 0.18s;
}
.lc-prop-row:hover { border-color: var(--brand); }
.lc-prop-row-img {
  width: 100px;
  height: 80px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--soft);
  overflow: hidden;
  position: relative;
}
.lc-prop-row-img img { width: 100%; height: 100%; object-fit: cover; }
.lc-prop-row-img-edit {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s;
  cursor: pointer;
  color: white;
}
.lc-prop-row-img:hover .lc-prop-row-img-edit { opacity: 1; }
.lc-prop-row-body { flex: 1; min-width: 0; }
.lc-prop-row-title { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.lc-prop-row-meta { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.lc-prop-row-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.lc-prop-row-status--active { background: #F0FDF4; color: var(--green); }
.lc-prop-row-status--pending { background: #FEF3C7; color: #92400E; }
.lc-prop-row-status--sold, .lc-prop-row-status--draft, .lc-prop-row-status--inactive { background: #F3F4F6; color: var(--muted); }
.lc-prop-row-actions { display: flex; gap: 8px; flex-shrink: 0; align-items: flex-start; }
.lc-prop-row-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.18s;
}
.lc-prop-row-btn:hover { border-color: var(--brand); color: var(--brand); }
.lc-prop-row-btn--danger:hover { border-color: #EF4444; color: #EF4444; background: #FEF2F2; }

/* ── PROPERTY EDIT MODAL ── */
.lc-edit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lc-edit-modal-overlay.lc-show { display: flex; }
.lc-edit-modal {
  background: white;
  border-radius: 18px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
}
.lc-edit-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft);
}
.lc-edit-modal-head h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; }
.lc-edit-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--soft);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}
.lc-edit-modal-close:hover { background: #fee2e2; color: #EF4444; }

@media (max-width: 640px) {
  .lc-edit-field-grid { grid-template-columns: 1fr; }
  .lc-prop-row { flex-direction: column; }
  .lc-prop-row-img { width: 100%; height: 160px; }
  .lc-prop-row-actions { width: 100%; justify-content: flex-end; }
}

