/* lands/static/lands/css/app.css
   CLEANED for Bootstrap coexistence

   Goals:
   - Keep LandSecure theme (.ls-*) + leaflets + hero + footer + whatsapp + accessibility
   - Avoid undefined variables (nav/primary/border)
   - Keep styles organized & maintainable
*/

/* =========================================================
   1) THEME TOKENS
   ========================================================= */
:root{
  /* Brand */
  --ls-brand: #0b6b3a;
  --ls-brand-600:#095c32;
  --ls-accent: #f2b705;
  --ls-accent-600:#d9a104;

  /* Neutrals */
  --ls-bg: #f4f7f5;
  --ls-surface: #ffffff;
  --ls-surface-2:#f7fbf8;
  --ls-text: #0f172a;
  --ls-muted: #64748b;

  /* Borders / Shadow */
  --ls-border: rgba(11,107,58,.12);
  --ls-border-soft: rgba(2,6,23,.10);
  --ls-shadow: 0 12px 30px rgba(2, 6, 23, .08);
  --ls-radius: 14px;

  /* Feedback */
  --ls-ok: #16a34a;
  --ls-warn: #f59e0b;
  --ls-danger: #dc2626;

  /* Navbar background (replaces old --nav) */
  --ls-nav: #0f172a;

  /* Aliases (backward compatibility if old CSS uses these) */
  --primary: var(--ls-brand);
  --border: var(--ls-border-soft);
  --nav: var(--ls-nav);
}

/* =========================================================
   2) BASE / TYPOGRAPHY
   ========================================================= */
body.ls-theme{
  background: var(--ls-bg);
  color: var(--ls-text);
}

.title{ color: var(--ls-text); }
.subtitle{ color: var(--ls-muted); }

/* =========================================================
   3) CARDS
   ========================================================= */
.card{
  background: var(--ls-surface);
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  box-shadow: var(--ls-shadow);
  overflow: hidden; /* helps the accent strip look clean */
}

/* Nice accent bar inside cards */
.card::before{
  content:"";
  display:block;
  height: 4px;
  background: linear-gradient(90deg, var(--ls-brand), var(--ls-accent));
}

/* Headers inside cards */
.card .header{
  border-bottom: 1px solid rgba(2,6,23,.06);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

/* =========================================================
   4) FORMS (Bootstrap harmonization)
   ========================================================= */
label, .form-label{
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 6px;
}

.help, .form-text{
  color: var(--ls-muted);
  font-size: 0.9rem;
}

/* Inputs */
.form-control,
.form-select,
textarea.form-control{
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.10);
  background: var(--ls-surface-2);
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

/* Focus state */
.form-control:focus,
.form-select:focus{
  border-color: rgba(11,107,58,.55);
  box-shadow: 0 0 0 .25rem rgba(11,107,58,.18);
  background: #fff;
}

/* Checkbox */
.form-check-input{
  border-color: rgba(2,6,23,.18);
}
.form-check-input:checked{
  background-color: var(--ls-brand);
  border-color: var(--ls-brand);
}
.form-check-input:focus{
  box-shadow: 0 0 0 .25rem rgba(11,107,58,.18);
}

/* =========================================================
   5) BUTTONS (Your custom .btn system)
   Note: Bootstrap uses .btn too; this intentionally overrides.
   ========================================================= */
.btn, .ls-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.btn{
  background: var(--ls-brand);
  color: #fff;
}
.btn:hover{
  background: var(--ls-brand-600);
  box-shadow: 0 10px 18px rgba(11,107,58,.18);
}
.btn:active{ transform: translateY(1px); }

.btn.secondary{
  background: #0f172a;
  color: #fff;
}
.btn.secondary:hover{ background:#111c33; }

.btn.light{
  background: #fff;
  color: var(--ls-text);
  border-color: rgba(2,6,23,.10);
}
.btn.light:hover{
  background: #f8fafc;
  box-shadow: 0 10px 18px rgba(2,6,23,.08);
}

.btn.warn{
  background: var(--ls-accent);
  color: #1b1400;
}
.btn.warn:hover{
  background: var(--ls-accent-600);
}

/* =========================================================
   6) ALERTS / FLASH
   ========================================================= */
.alert, .flash{
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  padding: 12px 14px;
}

.alert.warn, .flash.warning{
  border-color: rgba(245,158,11,.35);
  background: rgba(245,158,11,.10);
}
.alert.ok, .flash.success{
  border-color: rgba(22,163,74,.28);
  background: rgba(22,163,74,.10);
}
.alert.danger, .flash.error{
  border-color: rgba(220,38,38,.28);
  background: rgba(220,38,38,.10);
}
.alert.muted{
  border-color: rgba(100,116,139,.18);
  background: rgba(100,116,139,.08);
}

/* =========================================================
   7) ACCESSIBILITY
   ========================================================= */
.skip-link{
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--ls-brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
}
.skip-link:focus{
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid #fff;
}

/* =========================================================
   8) NAVBAR — Sleek Topbar + Responsive Menu
   ========================================================= */
.ls-topbar{
  background: var(--ls-nav);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.ls-topbar-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
}
.ls-topbar-left{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.ls-topbar-right{ display:flex; gap:8px; align-items:center; }
.ls-topbar .dot{ opacity:.55; }
.ls-topbar .pill{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.ls-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.ls-nav{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ls-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: #0f172a;
  flex: 1 1 auto;
  min-width: 160px;
}
.ls-brand-text{
  font-weight: 900;
  letter-spacing: .2px;
}

.ls-menu{
  display:flex;
  align-items:center;
  gap: 6px;
}
.ls-menu a{
  display:inline-flex;
  align-items:center;
  color:#0f172a;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  opacity: .88;
  transition: background 140ms ease, opacity 140ms ease;
}
.ls-menu a:hover{
  background: rgba(15,23,42,.06);
  opacity: 1;
  text-decoration:none;
}

.ls-actions{ display:flex; align-items:center; gap:10px; flex: 0 0 auto; }

.ls-login{
  padding: 8px 12px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 10px;
  color:#0f172a;
  font-weight: 800;
  font-size: 14px;
  background: #fff;
}

.ls-burger{
  display:none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  cursor:pointer;
  padding: 0 10px;
  flex-direction: column;
  justify-content:center;
  gap: 5px;
}
.ls-burger span{
  display:block;
  height: 2px;
  background:#0f172a;
  border-radius: 2px;
}

.ls-mobile{
  display:none;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 10px 0 18px 0;
  border-top: 1px solid rgba(15,23,42,.08);
}
.ls-mobile a{
  display:block;
  padding: 12px 0;
  text-decoration:none;
  color:#0f172a;
  font-weight: 800;
}
.ls-mobile.open{ display:block; }

@media (max-width: 991px){
  .ls-menu{ display:none; }
  .ls-login{ display:none; }
  .ls-burger{ display:flex; }
}

/* =========================================================
   9) HERO
   ========================================================= */
.ls-hero{
  position: relative;
  padding: 72px 0;
  background: url("/static/lands/img/hero.jpeg") center/cover no-repeat;
}
.ls-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.ls-hero > .container{
  position: relative;
  z-index: 2;
}
.ls-hero h1,
.ls-hero p{
  color: #fff !important;
}
.ls-search-card{
  border-radius: 18px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.92);
}

/* =========================================================
   10) FOOTER (safe)
   ========================================================= */
.footer{
  margin-top: 26px;
  background: var(--ls-nav);
  color: rgba(255,255,255,.75);
}
.footer-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 14px 0;
  text-align:center;
  font-size: 13px;
}
.footer-inner b{ color: #fff; }

/* =========================================================
   11) MAP PAGE (Leaflet)
   ========================================================= */
.map-shell{
  width: 100%;
  height: calc(100vh - 64px);
  position: relative;
}
.ls-map{
  width: 100%;
  height: 100%;
}

.toast{
  position: absolute;
  z-index: 9999;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  max-width: 360px;
}

.area-label{
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(17, 24, 39, 0.25);
  border-radius: 8px;
  padding: 2px 6px;
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  pointer-events: none;
  white-space: nowrap;
}

.ls-legend{
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  font-size: 13px;
  line-height: 1.6;
}
.ls-legend-title{ font-weight: 900; margin-bottom: 6px; color: #111827; }
.ls-legend-row{ display:flex; align-items:center; gap: 8px; color: #111827; }

.ls-swatch{ width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.ls-swatch.is-available{ background: green; }
.ls-swatch.is-allocated{ background: red; }
.ls-swatch.is-disputed{ background: orange; }

.ls-popup{ min-width: 240px; font-size: 13px; }
.ls-popup-title{ font-weight: 900; font-size: 14px; margin-bottom: 6px; }
.ls-popup-actions{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ls-popup-btn{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}
.ls-popup-btn.dark{ background: #111827; color: #fff; }
.ls-popup-btn.green{ background: var(--ls-brand); color: #fff; }

.ls-popup-form{
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 2px;
}
.ls-popup-select{
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(2,6,23,.12);
  font-weight: 800;
  background: #fff;
}

/* Leaflet controls: reset anchor styles */
.leaflet-container .leaflet-bar,
.leaflet-container .leaflet-control{
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.leaflet-container .leaflet-bar a{
  text-decoration: none !important;
  color: #111827 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  line-height: 34px !important;
  padding: 0 10px !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
  width: auto !important;
}
.leaflet-container .leaflet-bar a:hover{ background: #f9fafb !important; }
.leaflet-container .leaflet-control-zoom a{
  width: 34px !important;
  padding: 0 !important;
}
.leaflet-container .leaflet-control-zoom a{ margin-bottom: 6px; }
.leaflet-container .leaflet-control-zoom a:last-child{ margin-bottom: 0; }

/* keep map layers behind navbar */
.leaflet-container,
.leaflet-pane,
.leaflet-top,
.leaflet-bottom{
  z-index: 1 !important;
}

/* =========================================================
   12) WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  text-decoration: none;
}
.whatsapp-float:hover{
  background-color: #1ebe5d;
  text-decoration: none;
}

/* =========================================================
   13) ACCOUNT DROPDOWN (LS)
   ========================================================= */
.ls-account{ position: relative; }
.ls-account-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius: 12px;
  padding: 8px 12px;
  cursor:pointer;
  font-weight: 800;
}
.ls-account-name{ color:#0f172a; }
.ls-caret{ opacity:.7; }

.ls-account-menu{
  display:none;
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width: 220px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px;
  z-index: 5000;
}
.ls-account-menu.open{ display:block; }

.ls-account-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  color:#111827;
  font-weight:800;
  text-decoration:none;
}
.ls-account-menu a:hover{ background: rgba(0,0,0,.06); }

.ls-divider{
  height:1px;
  background: rgba(0,0,0,.10);
  margin: 8px 0;
}

.ls-account-logout{
  width:100%;
  padding: 10px 10px;
  border-radius: 10px;
  border: none;
  cursor:pointer;
  background: #111827;
  color:#fff;
  font-weight:900;
}

/* =========================================================
   LANDSECURE PUBLIC HOME
   ========================================================= */

.ls-home-hero{
    position:relative;
    margin:-24px calc(50% - 50vw) 0;
    padding:90px 0 82px;
    overflow:hidden;
    background:
        linear-gradient(
            115deg,
            rgba(6,46,29,.96),
            rgba(11,107,58,.88)
        ),
        url("/static/lands/img/hero.jpeg")
        center/cover no-repeat;
}

.ls-home-hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(242,183,5,.18),
            transparent 35%
        );
}

.ls-eyebrow,
.ls-section-kicker{
    display:inline-block;
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
    color:var(--ls-accent);
}

.ls-home-title{
    max-width:820px;
    margin:15px 0 20px;
    color:#fff;
    font-size:clamp(2.6rem,5vw,4.8rem);
    font-weight:900;
    line-height:1.02;
    letter-spacing:-.04em;
}

.ls-home-title span{
    display:block;
    color:#f8d85b;
}

.ls-home-lead{
    max-width:760px;
    color:rgba(255,255,255,.86);
    font-size:1.12rem;
    line-height:1.8;
}

.ls-home-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.ls-home-actions .btn{
    min-height:50px;
}

.ls-home-actions .btn-light{
    background:#fff;
    color:#0f172a;
}

.ls-home-actions .btn-outline-light,
.ls-home-cta .btn-outline-light{
    background:transparent;
    border:1px solid rgba(255,255,255,.65);
    color:#fff;
}

.ls-home-actions .btn-outline-light:hover,
.ls-home-cta .btn-outline-light:hover{
    background:#fff;
    color:#0f172a;
}

.ls-home-trust{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    margin-top:38px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.18);
}

.ls-home-trust div{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.ls-home-trust strong{
    color:#fff;
    font-size:.95rem;
}

.ls-home-trust span{
    color:rgba(255,255,255,.62);
    font-size:.82rem;
}

.ls-hero-panel{
    padding:32px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:24px;
    background:rgba(3,30,18,.68);
    backdrop-filter:blur(12px);
    box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.ls-hero-panel-badge{
    display:inline-flex;
    padding:6px 10px;
    margin-bottom:18px;
    border-radius:999px;
    background:rgba(242,183,5,.15);
    color:#f8d85b;
    font-size:.75rem;
    font-weight:900;
}

.ls-hero-panel h2{
    color:#fff;
    font-size:1.55rem;
    font-weight:800;
    line-height:1.35;
    margin-bottom:22px;
}

.ls-hero-check{
    display:flex;
    gap:11px;
    padding:12px 0;
    color:rgba(255,255,255,.87);
    border-bottom:1px solid rgba(255,255,255,.09);
}

.ls-hero-check:last-child{
    border-bottom:0;
}

.ls-hero-check span{
    color:#f8d85b;
    font-weight:900;
}

.ls-home-section{
    padding:78px 0;
}

.ls-section-heading{
    max-width:790px;
    margin:0 auto;
}

.ls-section-heading h2,
.ls-governance-section h2,
.ls-home-cta h2{
    margin-top:12px;
    font-size:clamp(1.9rem,3vw,2.8rem);
    line-height:1.18;
    font-weight:900;
    letter-spacing:-.025em;
}

.ls-section-heading p{
    margin-top:16px;
    color:var(--ls-muted);
    font-size:1.05rem;
    line-height:1.8;
}

.ls-feature-card{
    height:100%;
    padding:28px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    transition:transform .18s ease, box-shadow .18s ease;
}

.ls-feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(15,23,42,.09);
}

.ls-feature-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    border-radius:13px;
    background:rgba(11,107,58,.10);
    color:var(--ls-brand);
    font-weight:900;
}

.ls-feature-card h3{
    font-size:1.08rem;
    font-weight:900;
    margin-bottom:11px;
}

.ls-feature-card p{
    margin:0;
    color:var(--ls-muted);
    line-height:1.7;
}

.ls-governance-section{
    margin:0 calc(50% - 50vw);
    padding:82px 0;
    background:#0f1d18;
    color:#fff;
}

.ls-governance-section h2{
    color:#fff;
}

.ls-governance-lead{
    margin-top:18px;
    color:rgba(255,255,255,.70);
    line-height:1.8;
}

.ls-governance-list{
    margin-top:30px;
}

.ls-governance-item{
    display:flex;
    gap:14px;
    padding:17px 0;
    border-bottom:1px solid rgba(255,255,255,.09);
}

.ls-governance-item > span{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    flex:0 0 30px;
    border-radius:50%;
    background:rgba(242,183,5,.16);
    color:#f8d85b;
    font-weight:900;
}

.ls-governance-item strong{
    display:block;
    color:#fff;
    margin-bottom:4px;
}

.ls-governance-item p{
    margin:0;
    color:rgba(255,255,255,.62);
}

.ls-governance-panel{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    background:rgba(255,255,255,.05);
}

.ls-governance-stat{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.ls-governance-stat:last-child{
    border-bottom:0;
}

.ls-governance-stat .number{
    color:#f8d85b;
    font-size:1.2rem;
    font-weight:900;
}

.ls-governance-stat strong{
    display:block;
    color:#fff;
}

.ls-governance-stat small{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.60);
    line-height:1.5;
}

.ls-audience-card{
    height:100%;
    padding:22px;
    border-left:4px solid var(--ls-brand);
    border-radius:12px;
    background:#fff;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.ls-audience-card h3{
    font-size:1rem;
    font-weight:900;
}

.ls-audience-card p{
    margin:8px 0 0;
    color:var(--ls-muted);
    line-height:1.6;
}

.ls-home-cta{
    margin:0 calc(50% - 50vw) -24px;
    padding:70px 0;
    background:
        linear-gradient(
            120deg,
            #06341f,
            #0b6b3a
        );
}

.ls-home-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.ls-home-cta h2{
    max-width:760px;
    color:#fff;
}

.ls-home-cta p{
    max-width:700px;
    margin-top:14px;
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

.ls-home-cta-actions{
    flex:0 0 auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

@media (max-width:991px){

    .ls-home-hero{
        padding:65px 0;
    }

    .ls-home-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .ls-home-cta-actions{
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
    }
}

@media (max-width:575px){

    .ls-home-title{
        font-size:2.45rem;
    }

    .ls-home-trust{
        gap:18px;
    }

    .ls-home-actions .btn{
        width:100%;
    }

    .ls-hero-panel{
        padding:24px;
    }

    .ls-home-section{
        padding:58px 0;
    }

    .ls-home-cta-actions{
        flex-direction:column;
    }

    .ls-home-cta-actions .btn{
        width:100%;
    }
}

/* =========================================================
   LANDSECURE BASE LAYOUT ENHANCEMENTS
   ========================================================= */

.ls-topbar-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color .15s ease;
}

.ls-topbar-link:hover{
  color:#fff;
}

.ls-topbar-separator{
  opacity:.45;
}

.ls-topbar-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.ls-brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    var(--ls-brand),
    var(--ls-brand-600)
  );
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 8px 18px rgba(11,107,58,.18);
}

.ls-brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}

.ls-brand-text{
  font-size:1rem;
}

.ls-brand-subtitle{
  margin-top:4px;
  color:var(--ls-muted);
  font-size:.69rem;
  font-weight:700;
}

.ls-dashboard-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:10px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.ls-dashboard-link:hover{
  background:rgba(11,107,58,.14);
  color:var(--ls-brand-600);
}

.ls-logout-form{
  margin:0;
}

.ls-flash-container{
  padding-top:16px;
}

.ls-mobile-logout-form{
  margin:0;
}

.ls-mobile-logout{
  width:100%;
  padding:12px 0;
  border:0;
  background:transparent;
  color:#0f172a;
  text-align:left;
  font-weight:800;
}


/* =========================================================
   PROFESSIONAL FOOTER
   ========================================================= */

.ls-footer{
  margin-top:0;
  padding:58px 0 22px;
  background:#081712;
  color:rgba(255,255,255,.68);
}

.ls-footer-brand{
  margin-bottom:12px;
  color:#fff;
  font-size:1.35rem;
  font-weight:900;
}

.ls-footer-description{
  max-width:450px;
  margin-bottom:14px;
  line-height:1.75;
}

.ls-footer-tagline{
  margin:0;
  color:#f8d85b;
  font-size:.92rem;
  font-weight:800;
}

.ls-footer-heading{
  margin-bottom:15px;
  color:#fff;
  font-size:.84rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.ls-footer-links,
.ls-footer-contact{
  margin:0;
  padding:0;
  list-style:none;
}

.ls-footer-links li,
.ls-footer-contact li{
  margin-bottom:10px;
}

.ls-footer-links a,
.ls-footer-contact a{
  color:rgba(255,255,255,.67);
  text-decoration:none;
  transition:color .15s ease;
}

.ls-footer-links a:hover,
.ls-footer-contact a:hover{
  color:#fff;
}

.ls-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.46);
  font-size:.78rem;
}


/* =========================================================
   HEADER RESPONSIVE IMPROVEMENTS
   ========================================================= */

@media (max-width: 991px){

  .ls-dashboard-link{
    display:none;
  }

  .ls-brand-subtitle{
    display:none;
  }

  .ls-footer-bottom{
    flex-direction:column;
    gap:5px;
  }
}

@media (max-width: 575px){

  .ls-topbar-inner{
    align-items:flex-start;
  }

  .ls-topbar-right{
    display:none;
  }

  .ls-topbar-left{
    gap:6px;
  }

  .ls-topbar-separator{
    display:none;
  }

  .ls-topbar-link{
    width:100%;
  }

  .ls-brand-mark{
    width:38px;
    height:38px;
    flex-basis:38px;
  }

  .ls-footer{
    padding-top:45px;
  }
}

/* =========================================================
   FINAL LANDING PAGE POLISH
   ========================================================= */

/* Header spacing */
.ls-nav{
  min-height:64px;
}

.ls-brand{
  gap:11px;
}

/* Slightly cleaner brand lockup */
.ls-brand-text{
  font-size:1.02rem;
  letter-spacing:-.01em;
}

.ls-brand-subtitle{
  font-size:.66rem;
  letter-spacing:.02em;
}

/* Hero refinement */
.ls-home-hero{
  padding-top:88px;
  padding-bottom:82px;
}

.ls-home-title{
  max-width:760px;
}

.ls-home-lead{
  max-width:720px;
}

/* Improve hero panel visual balance */
.ls-hero-panel{
  max-width:500px;
  margin-left:auto;
}

.ls-hero-check{
  line-height:1.5;
}

/* Reduce excessive whitespace */
.ls-home-section{
  padding-top:68px;
  padding-bottom:68px;
}

.ls-section-heading{
  margin-bottom:8px;
}

/* Audience cards */
.ls-audience-card{
  min-height:135px;
}

/* Remove unnecessary space after audience area */
.ls-home-section:last-of-type{
  padding-bottom:58px;
}

/* Governance panel refinement */
.ls-governance-panel{
  box-shadow:0 20px 55px rgba(0,0,0,.16);
}

/* CTA spacing */
.ls-home-cta{
  padding-top:62px;
  padding-bottom:62px;
}

.ls-home-cta-inner{
  max-width:1180px;
  margin:0 auto;
}

/* Footer compactness */
.ls-footer{
  padding-top:48px;
}

.ls-footer-bottom{
  margin-top:32px;
}

/* Navigation hover feels more deliberate */
.ls-menu a{
  text-decoration:none;
}

.ls-menu a:hover{
  color:var(--ls-brand);
}

/* Staff login emphasis */
.ls-login{
  min-width:92px;
}

/* Top bar simplification */
.ls-topbar{
  background:#0d1830;
}

.ls-topbar-link{
  font-size:12.5px;
}

/* Slightly smaller hero headline on laptop widths */
@media (max-width: 1200px){
  .ls-home-title{
    font-size:clamp(2.7rem,4.7vw,4.25rem);
  }
}

/* Tablet */
@media (max-width: 991px){
  .ls-home-hero{
    padding-top:64px;
    padding-bottom:64px;
  }

  .ls-hero-panel{
    max-width:none;
    margin-left:0;
  }

  .ls-home-section{
    padding-top:58px;
    padding-bottom:58px;
  }
}

/* Mobile */
@media (max-width: 575px){
  .ls-home-title{
    font-size:2.25rem;
    line-height:1.05;
  }

  .ls-home-lead{
    font-size:1rem;
  }

  .ls-home-section{
    padding-top:48px;
    padding-bottom:48px;
  }

  .ls-governance-section{
    padding-top:56px;
    padding-bottom:56px;
  }

  .ls-home-cta{
    padding-top:52px;
    padding-bottom:52px;
  }

  .ls-footer{
    padding-top:40px;
  }
}

/* =========================================================
   PUBLIC LISTINGS PAGE
   ========================================================= */

.ls-listings-hero{
  padding:72px 0 64px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(242,183,5,.18),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-listings-hero h1{
  margin:12px 0 16px;
  max-width:850px;
  color:#fff;
  font-size:clamp(2.5rem,5vw,4.3rem);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-.04em;
}

.ls-listings-hero h1 span{
  display:block;
  color:#f8d85b;
}

.ls-listings-hero p{
  max-width:700px;
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.75;
}

.ls-listings-trust{
  display:inline-flex;
  flex-direction:column;
  gap:8px;
  padding:18px 22px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  background:rgba(0,0,0,.13);
  text-align:left;
}

.ls-listings-trust span{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,.80);
  font-size:.88rem;
  font-weight:700;
}

.ls-listings-trust span::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f8d85b;
}


.ls-listings-section{
  padding:64px 0 78px;
}

.ls-filter-panel{
  margin-top:-105px;
  position:relative;
  z-index:3;
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,23,42,.12);
}

.ls-filter-heading{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  margin-bottom:22px;
}

.ls-filter-kicker{
  display:block;
  margin-bottom:4px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-filter-heading h2{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
}

.ls-clear-filter{
  color:var(--ls-muted);
  font-size:.85rem;
  font-weight:800;
  text-decoration:none;
}

.ls-clear-filter:hover{
  color:var(--ls-brand);
}

.ls-filter-actions{
  display:flex;
  gap:10px;
  margin-top:3px;
}

.ls-listings-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin:64px 0 24px;
}

.ls-listings-heading h2{
  margin:6px 0;
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-listings-heading p{
  margin:0;
  color:var(--ls-muted);
}

.ls-published-heading{
  margin-top:70px;
}


/* Parcel card */

.ls-parcel-card{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.ls-parcel-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(15,23,42,.09);
}

.ls-parcel-card-top{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:flex-start;
}

.ls-parcel-label{
  display:block;
  margin-bottom:4px;
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ls-parcel-card h3{
  margin:0;
  font-size:1.05rem;
  font-weight:900;
}

.ls-status-badge{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.ls-status-available{
  background:rgba(22,163,74,.11);
  color:#15803d;
}

.ls-parcel-divider{
  height:1px;
  margin:19px 0;
  background:rgba(15,23,42,.08);
}

.ls-parcel-meta{
  display:grid;
  gap:15px;
  flex-grow:1;
}

.ls-parcel-meta div{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.ls-parcel-meta span{
  color:var(--ls-muted);
  font-size:.76rem;
}

.ls-parcel-meta strong{
  color:var(--ls-text);
  font-size:.9rem;
  font-weight:800;
}

.ls-parcel-actions{
  display:flex;
  gap:9px;
  margin-top:22px;
}


/* Property card */

.ls-property-card{
  height:100%;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.ls-property-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 42px rgba(15,23,42,.11);
}

.ls-property-image{
  position:relative;
  height:225px;
  display:block;
  overflow:hidden;
  background:#e9f1ec;
}

.ls-property-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.ls-property-card:hover .ls-property-image img{
  transform:scale(1.035);
}

.ls-property-placeholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(
      135deg,
      #0b6b3a,
      #06341f
    );
  color:#fff;
}

.ls-property-placeholder span{
  font-size:1.2rem;
  font-weight:900;
}

.ls-property-placeholder small{
  margin-top:5px;
  color:rgba(255,255,255,.65);
}

.ls-property-badges{
  position:absolute;
  inset:15px 15px auto 15px;
  display:flex;
  justify-content:space-between;
  gap:8px;
}

.ls-listing-type,
.ls-featured-badge{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:900;
}

.ls-listing-type{
  background:rgba(6,23,18,.88);
  color:#fff;
}

.ls-featured-badge{
  margin-left:auto;
  background:#f8d85b;
  color:#312400;
}

.ls-property-body{
  flex-grow:1;
  padding:22px;
}

.ls-property-location{
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.74rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.ls-property-body h3{
  margin:0 0 10px;
  font-size:1.13rem;
  font-weight:900;
  line-height:1.35;
}

.ls-property-body h3 a{
  color:var(--ls-text);
  text-decoration:none;
}

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

.ls-property-price{
  margin-bottom:14px;
  color:var(--ls-text);
  font-size:1.35rem;
  font-weight:900;
}

.ls-property-price span{
  margin-right:3px;
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
}

.ls-property-description{
  margin:0 0 18px;
  color:var(--ls-muted);
  font-size:.88rem;
  line-height:1.7;
}

.ls-property-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ls-property-meta span{
  padding:6px 8px;
  border-radius:7px;
  background:#f3f6f4;
  color:#586477;
  font-size:.7rem;
  font-weight:700;
}

.ls-property-footer{
  padding:0 22px 22px;
}


/* Empty state */

.ls-empty-state{
  padding:65px 25px;
  text-align:center;
  border:1px dashed rgba(15,23,42,.15);
  border-radius:18px;
  background:#fff;
}

.ls-empty-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border-radius:15px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
  font-weight:900;
}

.ls-empty-state h3{
  font-size:1.3rem;
  font-weight:900;
}

.ls-empty-state p{
  max-width:470px;
  margin:8px auto 20px;
  color:var(--ls-muted);
}


/* Pagination */

.ls-pagination-wrap{
  margin-top:28px;
}

.ls-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.ls-page-link,
.ls-page-info{
  padding:9px 13px;
  border-radius:10px;
  font-size:.8rem;
  font-weight:800;
}

.ls-page-link{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--ls-text);
  text-decoration:none;
}

.ls-page-link:hover{
  border-color:rgba(11,107,58,.25);
  color:var(--ls-brand);
}

.ls-page-link.disabled{
  opacity:.45;
}

.ls-page-info{
  color:var(--ls-muted);
}


/* CTA */

.ls-listings-cta{
  padding:62px 0;
  background:#0f1d18;
  color:#fff;
}

.ls-listings-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
}

.ls-listings-cta h2{
  max-width:760px;
  margin:9px 0;
  color:#fff;
  font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:900;
  line-height:1.2;
}

.ls-listings-cta p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.65);
  line-height:1.7;
}

.ls-listings-cta-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}


/* Responsive */

@media (max-width:991px){

  .ls-listings-hero{
    padding-bottom:115px;
  }

  .ls-filter-panel{
    margin-top:-75px;
  }

  .ls-listings-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-listings-cta-actions{
    width:100%;
  }
}

@media (max-width:575px){

  .ls-listings-hero{
    padding:54px 0 105px;
  }

  .ls-listings-hero h1{
    font-size:2.5rem;
  }

  .ls-filter-panel{
    padding:20px;
  }

  .ls-filter-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-filter-actions{
    flex-direction:column;
  }

  .ls-filter-actions .btn{
    width:100%;
  }

  .ls-listings-heading{
    margin-top:48px;
  }

  .ls-parcel-actions{
    flex-direction:column;
  }

  .ls-property-image{
    height:205px;
  }

  .ls-listings-cta-actions{
    flex-direction:column;
  }

  .ls-listings-cta-actions .btn{
    width:100%;
  }
}

/* =========================================================
   PUBLIC LISTING DETAIL PAGE
   ========================================================= */

.ls-detail-header{
  padding:54px 0 46px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242,183,5,.12),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #f4f7f5,
      #eef4f0
    );
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-detail-back{
  display:inline-flex;
  margin-bottom:24px;
  color:var(--ls-brand);
  font-size:.83rem;
  font-weight:900;
  text-decoration:none;
}

.ls-detail-back:hover{
  color:var(--ls-brand-600);
}

.ls-detail-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:35px;
}

.ls-detail-heading h1{
  max-width:790px;
  margin:9px 0 10px;
  color:var(--ls-text);
  font-size:clamp(2.2rem,4vw,3.6rem);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.035em;
}

.ls-detail-location{
  color:var(--ls-muted);
  font-size:1rem;
  font-weight:700;
}

.ls-detail-price-block{
  flex:0 0 auto;
  min-width:220px;
  text-align:right;
}

.ls-detail-price-label{
  display:inline-flex;
  margin-bottom:7px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.ls-detail-price{
  color:var(--ls-text);
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.02em;
}

.ls-detail-price small{
  margin-right:4px;
  color:var(--ls-muted);
  font-size:.8rem;
  font-weight:800;
}

.ls-detail-section{
  padding:54px 0 76px;
}


/* Image */

.ls-detail-image-card{
  position:relative;
  overflow:hidden;
  min-height:460px;
  border-radius:22px;
  background:#e8f0eb;
  box-shadow:0 18px 45px rgba(15,23,42,.09);
}

.ls-detail-image-card img{
  display:block;
  width:100%;
  height:460px;
  object-fit:cover;
}

.ls-detail-image-placeholder{
  height:460px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(
      135deg,
      #0b6b3a,
      #06341f
    );
  color:#fff;
}

.ls-detail-placeholder-mark{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin-bottom:13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:17px;
  background:rgba(255,255,255,.09);
  font-weight:900;
}

.ls-detail-image-placeholder strong{
  font-size:1.2rem;
}

.ls-detail-image-placeholder span{
  margin-top:4px;
  color:rgba(255,255,255,.65);
  font-size:.85rem;
}

.ls-detail-image-badges{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  display:flex;
  justify-content:space-between;
}


/* Content cards */

.ls-detail-card{
  margin-top:28px;
  padding:30px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ls-detail-card-heading{
  margin-bottom:18px;
}

.ls-detail-card-kicker,
.ls-detail-summary-kicker{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.ls-detail-card-heading h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.45rem;
  font-weight:900;
}

.ls-detail-card-heading p{
  max-width:690px;
  margin:8px 0 0;
  color:var(--ls-muted);
  line-height:1.65;
}

.ls-detail-description{
  color:#3f4b5c;
  line-height:1.85;
}

.ls-detail-description p:last-child{
  margin-bottom:0;
}

.ls-detail-muted{
  margin:0;
  color:var(--ls-muted);
}


/* Linked parcel */

.ls-linked-parcel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:20px;
  border:1px solid rgba(11,107,58,.11);
  border-radius:14px;
  background:#f5faf7;
}

.ls-linked-parcel-main{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.ls-linked-label{
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
}

.ls-linked-parcel-main strong{
  color:var(--ls-text);
  font-size:1.05rem;
}

.ls-linked-parcel-status{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(22,163,74,.11);
  color:#15803d;
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
}


/* Sidebar */

.ls-detail-sidebar{
  position:sticky;
  top:105px;
  display:grid;
  gap:18px;
}

.ls-detail-summary-card,
.ls-detail-enquiry-card,
.ls-detail-record-card{
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ls-detail-summary-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-detail-summary-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.ls-detail-summary-row span{
  color:var(--ls-muted);
  font-size:.8rem;
}

.ls-detail-summary-row strong{
  max-width:55%;
  color:var(--ls-text);
  font-size:.82rem;
  text-align:right;
}

.ls-verified-text{
  color:var(--ls-brand) !important;
}

.ls-detail-enquiry-card{
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-detail-enquiry-card .ls-detail-summary-kicker{
  color:#f8d85b;
}

.ls-detail-enquiry-card h2{
  margin:5px 0 10px;
  color:#fff;
  font-size:1.45rem;
  font-weight:900;
}

.ls-detail-enquiry-card p{
  color:rgba(255,255,255,.72);
  font-size:.88rem;
  line-height:1.7;
}

.ls-detail-record-card p{
  margin:0 0 16px;
  color:var(--ls-muted);
  font-size:.87rem;
  line-height:1.65;
}


/* Trust section */

.ls-detail-trust{
  padding:55px 0;
  background:#0f1d18;
}

.ls-detail-trust-item{
  display:flex;
  gap:16px;
  height:100%;
}

.ls-detail-trust-item > span{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 40px;
  border-radius:12px;
  background:rgba(242,183,5,.12);
  color:#f8d85b;
  font-size:.76rem;
  font-weight:900;
}

.ls-detail-trust-item strong{
  display:block;
  color:#fff;
  font-size:.95rem;
}

.ls-detail-trust-item p{
  margin:7px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.83rem;
  line-height:1.65;
}


/* Responsive */

@media (max-width:991px){

  .ls-detail-heading{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-detail-price-block{
    min-width:0;
    text-align:left;
  }

  .ls-detail-sidebar{
    position:static;
  }
}

@media (max-width:575px){

  .ls-detail-header{
    padding:42px 0 36px;
  }

  .ls-detail-heading h1{
    font-size:2.25rem;
  }

  .ls-detail-section{
    padding:36px 0 55px;
  }

  .ls-detail-image-card,
  .ls-detail-image-card img,
  .ls-detail-image-placeholder{
    min-height:300px;
    height:300px;
  }

  .ls-detail-card{
    padding:22px;
  }

  .ls-linked-parcel{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-detail-summary-card,
  .ls-detail-enquiry-card,
  .ls-detail-record-card{
    padding:21px;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.ls-about-hero,
.ls-contact-hero{
  padding:78px 0 72px;
  background:
    radial-gradient(
      circle at 83% 20%,
      rgba(242,183,5,.16),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-about-hero h1,
.ls-contact-hero h1{
  max-width:900px;
  margin:12px 0 18px;
  color:#fff;
  font-size:clamp(2.7rem,5vw,4.5rem);
  line-height:1.03;
  font-weight:900;
  letter-spacing:-.04em;
}

.ls-about-hero h1 span,
.ls-contact-hero h1 span{
  display:block;
  color:#f8d85b;
}

.ls-about-hero p,
.ls-contact-hero p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:1.05rem;
  line-height:1.8;
}

.ls-about-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:27px;
}

.ls-about-section{
  padding:74px 0;
}

.ls-about-heading{
  margin:10px 0 18px;
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.03em;
}

.ls-about-lead{
  color:var(--ls-muted);
  line-height:1.85;
}

.ls-about-principles{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 42px rgba(15,23,42,.07);
}

.ls-about-principle{
  display:flex;
  gap:17px;
  padding:22px;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-about-principle:last-child{
  border-bottom:0;
}

.ls-about-principle > span{
  color:var(--ls-brand);
  font-size:.8rem;
  font-weight:900;
}

.ls-about-principle strong{
  display:block;
  margin-bottom:5px;
  font-weight:900;
}

.ls-about-principle p{
  margin:0;
  color:var(--ls-muted);
  line-height:1.6;
}

.ls-about-dark{
  padding:72px 0;
  background:#0f1d18;
}

.ls-about-dark h2{
  margin:9px 0 15px;
  color:#fff;
  font-size:2.1rem;
  font-weight:900;
}

.ls-about-dark p{
  margin:0;
  color:rgba(255,255,255,.66);
  line-height:1.8;
}

.ls-about-capability{
  height:100%;
  padding:25px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:17px;
  background:#fff;
  box-shadow:0 9px 26px rgba(15,23,42,.05);
}

.ls-about-capability > span{
  display:inline-flex;
  margin-bottom:17px;
  padding:7px 9px;
  border-radius:9px;
  background:rgba(11,107,58,.09);
  color:var(--ls-brand);
  font-size:.73rem;
  font-weight:900;
}

.ls-about-capability h3{
  font-size:1.05rem;
  font-weight:900;
}

.ls-about-capability p{
  margin:9px 0 0;
  color:var(--ls-muted);
  line-height:1.7;
}

.ls-about-users{
  padding:72px 0;
  background:#eef4f0;
}

.ls-about-users h2{
  margin:10px 0 16px;
  font-size:2.25rem;
  font-weight:900;
}

.ls-about-users p{
  color:var(--ls-muted);
  line-height:1.8;
}

.ls-about-user-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
}

.ls-about-user-grid div{
  padding:18px;
  border-radius:14px;
  background:#fff;
}

.ls-about-user-grid strong{
  display:block;
  font-weight:900;
}

.ls-about-user-grid span{
  display:block;
  margin-top:5px;
  color:var(--ls-muted);
  font-size:.83rem;
}

.ls-about-cta{
  padding:62px 0;
  background:linear-gradient(120deg,#06341f,#0b6b3a);
}

.ls-about-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.ls-about-cta h2{
  max-width:760px;
  margin:8px 0;
  color:#fff;
  font-size:2.35rem;
  font-weight:900;
}

.ls-about-cta p{
  margin:0;
  color:rgba(255,255,255,.68);
}

.ls-about-cta-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.ls-contact-section{
  padding:72px 0;
}

.ls-contact-info h2{
  margin:10px 0 16px;
  font-size:2.4rem;
  font-weight:900;
}

.ls-contact-info > p{
  margin-bottom:30px;
  color:var(--ls-muted);
  line-height:1.8;
}

.ls-contact-method{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
  padding:17px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  background:#fff;
}

.ls-contact-method-icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 40px;
  border-radius:11px;
  background:rgba(11,107,58,.09);
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
}

.ls-contact-method span{
  display:block;
  margin-bottom:2px;
  color:var(--ls-muted);
  font-size:.72rem;
}

.ls-contact-method a{
  color:var(--ls-text);
  font-weight:900;
  text-decoration:none;
}

.ls-contact-method a:hover{
  color:var(--ls-brand);
}

.ls-contact-support-box{
  margin-top:25px;
  padding:22px;
  border-radius:16px;
  background:#0f1d18;
}

.ls-contact-support-box strong{
  color:#fff;
}

.ls-contact-support-box p{
  margin:7px 0 0;
  color:rgba(255,255,255,.66);
  font-size:.87rem;
  line-height:1.7;
}

.ls-contact-form-card{
  padding:34px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.ls-contact-form-heading{
  margin-bottom:28px;
}

.ls-contact-form-kicker{
  display:block;
  margin-bottom:6px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.09em;
}

.ls-contact-form-heading h2{
  margin:0;
  font-size:1.75rem;
  font-weight:900;
}

.ls-contact-form-heading p{
  margin:8px 0 0;
  color:var(--ls-muted);
}

.ls-required{
  color:#dc2626;
}

.ls-contact-form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:23px;
}

.ls-contact-note{
  margin-top:15px;
  color:var(--ls-muted);
  font-size:.79rem;
}

.ls-contact-success-action{
  margin-top:18px;
}

.ls-contact-bottom{
  padding:55px 0;
  background:#0f1d18;
}

.ls-contact-value{
  height:100%;
}

.ls-contact-value > span{
  display:block;
  margin-bottom:11px;
  color:#f8d85b;
  font-size:.75rem;
  font-weight:900;
}

.ls-contact-value strong{
  display:block;
  color:#fff;
}

.ls-contact-value p{
  margin:7px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.83rem;
  line-height:1.65;
}


/* =========================================================
   ABOUT / CONTACT RESPONSIVE
   ========================================================= */

@media (max-width:991px){

  .ls-about-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-about-cta-actions{
    width:100%;
  }
}

@media (max-width:575px){

  .ls-about-hero,
  .ls-contact-hero{
    padding:54px 0;
  }

  .ls-about-hero h1,
  .ls-contact-hero h1{
    font-size:2.4rem;
  }

  .ls-about-section,
  .ls-about-dark,
  .ls-about-users,
  .ls-contact-section{
    padding:52px 0;
  }

  .ls-about-user-grid{
    grid-template-columns:1fr;
  }

  .ls-about-cta-actions,
  .ls-contact-form-actions{
    flex-direction:column;
  }

  .ls-about-cta-actions .btn,
  .ls-contact-form-actions .btn{
    width:100%;
  }

  .ls-contact-form-card{
    padding:22px;
  }

  .ls-about-cta h2{
    font-size:2rem;
  }
}

/* =========================================================
   STAFF LOGIN PAGE
   ========================================================= */

.ls-login-page{
  min-height:100vh;
  margin:0;
  background:#eef3f0;
  color:var(--ls-text);
}

.ls-login-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);
}


/* Left branding panel */

.ls-login-brand-panel{
  position:relative;
  display:flex;
  min-height:100vh;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(242,183,5,.18),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #062f1d,
      #0b6b3a
    );
  color:#fff;
}

.ls-login-brand-panel::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-120px;
  bottom:-120px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
}

.ls-login-brand-panel::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-40px;
  bottom:-50px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:50%;
}

.ls-login-brand-content{
  position:relative;
  z-index:2;
  width:min(680px,100%);
  display:flex;
  flex-direction:column;
  padding:56px 8vw 40px;
}


/* Brand */

.ls-login-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:max-content;
  color:#fff;
  text-decoration:none;
}

.ls-login-brand:hover{
  color:#fff;
}

.ls-login-brand-mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.20);
  border-radius:14px;
  background:rgba(255,255,255,.11);
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.ls-login-brand > span:last-child{
  display:flex;
  flex-direction:column;
}

.ls-login-brand strong{
  color:#fff;
  font-size:1.05rem;
  font-weight:900;
}

.ls-login-brand small{
  margin-top:2px;
  color:rgba(255,255,255,.62);
  font-size:.7rem;
}


/* Main message */

.ls-login-message{
  margin:auto 0;
  padding:70px 0;
}

.ls-login-message .ls-section-kicker{
  color:#f8d85b;
}

.ls-login-message h1{
  max-width:650px;
  margin:15px 0 22px;
  color:#fff;
  font-size:clamp(2.7rem,5vw,4.5rem);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.045em;
}

.ls-login-message h1 span{
  display:block;
  color:#f8d85b;
}

.ls-login-message > p{
  max-width:630px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:1.02rem;
  line-height:1.85;
}


/* Benefits */

.ls-login-benefits{
  display:grid;
  gap:12px;
}

.ls-login-benefits > div{
  display:flex;
  gap:13px;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.10);
}

.ls-login-benefits > div > span{
  color:#f8d85b;
  font-size:.76rem;
  font-weight:900;
}

.ls-login-benefits p{
  margin:0;
  color:rgba(255,255,255,.65);
  font-size:.82rem;
  line-height:1.6;
}

.ls-login-benefits strong{
  display:block;
  margin-bottom:2px;
  color:#fff;
  font-size:.86rem;
}


/* Left footer */

.ls-login-brand-footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:36px;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.45);
  font-size:.7rem;
}


/* Right form panel */

.ls-login-form-panel{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px;
  background:#f8faf9;
}

.ls-login-form-wrap{
  width:100%;
  max-width:465px;
}

.ls-login-mobile-brand{
  display:none;
  margin-bottom:40px;
}

.ls-login-mobile-brand .ls-login-brand{
  color:var(--ls-text);
}

.ls-login-mobile-brand .ls-login-brand strong{
  color:var(--ls-text);
}

.ls-login-mobile-brand .ls-login-brand small{
  color:var(--ls-muted);
}

.ls-login-mobile-brand .ls-login-brand-mark{
  border:0;
  background:linear-gradient(
    135deg,
    var(--ls-brand),
    var(--ls-brand-600)
  );
}


/* Form heading */

.ls-login-form-kicker{
  display:block;
  margin-bottom:8px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-login-form-heading h2{
  margin:0;
  color:var(--ls-text);
  font-size:2.15rem;
  font-weight:900;
  letter-spacing:-.03em;
}

.ls-login-form-heading p{
  margin:9px 0 0;
  color:var(--ls-muted);
  line-height:1.65;
}


/* Form */

.ls-login-form{
  margin-top:30px;
}

.ls-login-field{
  margin-bottom:20px;
}

.ls-login-field > label,
.ls-login-password-label label{
  margin-bottom:7px;
  color:#334155;
  font-size:.82rem;
  font-weight:900;
}

.ls-login-form .form-control,
.ls-login-form .form-select{
  min-height:50px;
  border:1px solid #d8e0dc;
  border-radius:11px;
  background:#fff;
  font-size:.9rem;
  box-shadow:none;
}

.ls-login-form .form-control:focus,
.ls-login-form .form-select:focus{
  border-color:rgba(11,107,58,.50);
  box-shadow:0 0 0 .2rem rgba(11,107,58,.09);
}

.ls-login-help{
  display:block;
  margin-top:6px;
  color:var(--ls-muted);
  font-size:.72rem;
}


/* Password */

.ls-password-wrap{
  position:relative;
}

.ls-password-wrap .form-control{
  padding-right:70px;
}

.ls-password-toggle{
  position:absolute;
  top:50%;
  right:12px;
  transform:translateY(-50%);
  padding:4px 6px;
  border:0;
  background:transparent;
  color:var(--ls-brand);
  font-size:.75rem;
  font-weight:900;
}


/* Submit */

.ls-login-submit{
  width:100%;
  min-height:52px;
  margin-top:5px;
  font-weight:900;
}


/* Security notice */

.ls-login-security-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:20px;
  padding:14px;
  border-radius:11px;
  background:#eef6f1;
}

.ls-security-icon{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  flex:0 0 23px;
  border-radius:50%;
  background:rgba(11,107,58,.11);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
}

.ls-login-security-note p{
  margin:0;
  color:#627067;
  font-size:.72rem;
  line-height:1.55;
}


/* Bottom links */

.ls-login-bottom-links{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid rgba(15,23,42,.07);
}

.ls-login-bottom-links a{
  color:var(--ls-muted);
  font-size:.78rem;
  font-weight:800;
  text-decoration:none;
}

.ls-login-bottom-links a:hover{
  color:var(--ls-brand);
}


/* Messages */

.ls-login-messages{
  margin-top:22px;
}


/* Responsive */

@media (max-width: 991px){

  .ls-login-shell{
    display:block;
  }

  .ls-login-brand-panel{
    display:none;
  }

  .ls-login-form-panel{
    min-height:100vh;
    padding:38px 24px;
  }

  .ls-login-mobile-brand{
    display:block;
  }
}

@media (max-width: 575px){

  .ls-login-form-panel{
    align-items:flex-start;
    padding:28px 20px;
  }

  .ls-login-form-heading h2{
    font-size:1.9rem;
  }

  .ls-login-bottom-links{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}

/* =========================================================
   INTERNAL APPLICATION SHELL
   ========================================================= */

.ls-internal-body{
  margin:0;
  background:#f3f6f4;
  color:var(--ls-text);
}

.ls-app-shell{
  min-height:100vh;
  display:flex;
}


/* Sidebar */

.ls-app-sidebar{
  position:fixed;
  inset:0 auto 0 0;
  z-index:1040;
  width:270px;
  background:
    linear-gradient(
      180deg,
      #081712,
      #0d2419
    );
  color:#fff;
  box-shadow:8px 0 30px rgba(0,0,0,.08);
}

.ls-app-sidebar-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}


/* Brand */

.ls-app-brand-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:21px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ls-app-brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:#fff;
  text-decoration:none;
}

.ls-app-brand:hover{
  color:#fff;
}

.ls-app-brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    #0b6b3a,
    #14a05a
  );
  color:#fff;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.04em;
}

.ls-app-brand-copy{
  display:flex;
  flex-direction:column;
}

.ls-app-brand-copy strong{
  color:#fff;
  font-size:.95rem;
  font-weight:900;
}

.ls-app-brand-copy small{
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.67rem;
}

.ls-app-sidebar-close{
  display:none;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.7);
  font-size:1.7rem;
}


/* User Card */

.ls-app-user-card{
  display:flex;
  align-items:center;
  gap:11px;
  margin:18px;
  padding:13px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.ls-app-user-avatar,
.ls-app-account-avatar{
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(242,183,5,.16);
  color:#f8d85b;
  font-weight:900;
}

.ls-app-user-avatar{
  width:38px;
  height:38px;
  flex:0 0 38px;
}

.ls-app-user-info{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.ls-app-user-info strong{
  overflow:hidden;
  color:#fff;
  font-size:.82rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-app-user-info span{
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.67rem;
}


/* Navigation */

.ls-app-nav{
  padding:0 13px 20px;
}

.ls-app-nav-label{
  margin:22px 9px 8px;
  color:rgba(255,255,255,.30);
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-app-nav-link{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:43px;
  padding:8px 10px;
  margin-bottom:3px;
  border-radius:10px;
  color:rgba(255,255,255,.72);
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
  transition:
    background .15s ease,
    color .15s ease;
}

.ls-app-nav-link:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
}

.ls-app-nav-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  flex:0 0 28px;
  border-radius:8px;
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.46);
  font-size:.60rem;
  font-weight:900;
}

.ls-app-nav-link:hover .ls-app-nav-icon{
  background:rgba(242,183,5,.12);
  color:#f8d85b;
}


/* Sidebar Footer */

.ls-app-sidebar-footer{
  display:flex;
  flex-direction:column;
  margin-top:auto;
  padding:18px;
  border-top:1px solid rgba(255,255,255,.07);
}

.ls-app-sidebar-footer span{
  color:rgba(255,255,255,.55);
  font-size:.70rem;
  font-weight:800;
}

.ls-app-sidebar-footer small{
  margin-top:3px;
  color:rgba(255,255,255,.27);
  font-size:.62rem;
}


/* Main application area */

.ls-app-main{
  width:calc(100% - 270px);
  min-height:100vh;
  margin-left:270px;
}


/* Top bar */

.ls-app-topbar{
  position:sticky;
  top:0;
  z-index:1020;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:11px 28px;
  border-bottom:1px solid rgba(15,23,42,.07);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 5px 20px rgba(15,23,42,.035);
}

.ls-app-topbar-left,
.ls-app-topbar-right{
  display:flex;
  align-items:center;
  gap:15px;
}

.ls-app-menu-toggle{
  display:none;
  width:39px;
  height:39px;
  border:1px solid rgba(15,23,42,.09);
  border-radius:10px;
  background:#fff;
  color:var(--ls-text);
  font-size:1rem;
}

.ls-app-page-heading{
  display:flex;
  flex-direction:column;
}

.ls-app-page-heading span{
  color:var(--ls-muted);
  font-size:.65rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.ls-app-page-heading strong{
  margin-top:1px;
  color:var(--ls-text);
  font-size:.95rem;
  font-weight:900;
}


/* Community */

.ls-app-community-badge{
  display:flex;
  flex-direction:column;
  padding-right:15px;
  border-right:1px solid rgba(15,23,42,.07);
}

.ls-app-community-badge span{
  color:var(--ls-muted);
  font-size:.62rem;
}

.ls-app-community-badge strong{
  max-width:180px;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.77rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}


/* Account */

.ls-app-account-btn{
  display:flex;
  align-items:center;
  gap:9px;
  padding:6px 8px;
  border:0;
  border-radius:10px;
  background:transparent;
}

.ls-app-account-btn:hover{
  background:#f3f6f4;
}

.ls-app-account-avatar{
  width:35px;
  height:35px;
  flex:0 0 35px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
}

.ls-app-account-copy{
  display:flex;
  flex-direction:column;
  text-align:left;
}

.ls-app-account-copy strong{
  max-width:150px;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.76rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-app-account-copy small{
  color:var(--ls-muted);
  font-size:.61rem;
}

.ls-app-account-menu{
  min-width:230px;
  padding:8px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:13px;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
}

.ls-app-account-menu-header{
  display:flex;
  flex-direction:column;
  padding:8px 9px;
}

.ls-app-account-menu-header strong{
  font-size:.83rem;
  font-weight:900;
}

.ls-app-account-menu-header span{
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.68rem;
}

.ls-app-account-menu .dropdown-item{
  border-radius:8px;
  font-size:.78rem;
  font-weight:700;
}


/* Content */

.ls-app-content{
  padding:28px;
}

.ls-app-flash-wrap{
  padding:18px 28px 0;
}


/* Overlay */

.ls-app-overlay{
  position:fixed;
  inset:0;
  z-index:1035;
  display:none;
  background:rgba(3,10,7,.48);
}

.ls-app-overlay.open{
  display:block;
}

.ls-no-scroll{
  overflow:hidden;
}


/* =========================================================
   INTERNAL COMMON COMPONENTS
   ========================================================= */

.ls-internal-page-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:24px;
}

.ls-internal-page-header h1{
  margin:4px 0 6px;
  font-size:1.8rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-internal-page-header p{
  margin:0;
  color:var(--ls-muted);
}

.ls-internal-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.ls-internal-card{
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
}

.ls-stat-card{
  padding:20px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:15px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.04);
}

.ls-stat-card span{
  display:block;
  color:var(--ls-muted);
  font-size:.7rem;
  font-weight:800;
}

.ls-stat-card strong{
  display:block;
  margin-top:7px;
  color:var(--ls-text);
  font-size:1.75rem;
  font-weight:900;
  letter-spacing:-.025em;
}


/* Responsive */

@media (max-width:1200px){

  .ls-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:991px){

  .ls-app-sidebar{
    transform:translateX(-100%);
    transition:transform .22s ease;
  }

  .ls-app-sidebar.open{
    transform:translateX(0);
  }

  .ls-app-sidebar-close{
    display:block;
  }

  .ls-app-main{
    width:100%;
    margin-left:0;
  }

  .ls-app-menu-toggle{
    display:grid;
    place-items:center;
  }

  .ls-app-content{
    padding:22px;
  }

  .ls-app-topbar{
    padding:10px 20px;
  }

  .ls-app-flash-wrap{
    padding-left:22px;
    padding-right:22px;
  }
}

@media (max-width:575px){

  .ls-app-sidebar{
    width:min(86vw,290px);
  }

  .ls-app-topbar{
    padding:9px 14px;
  }

  .ls-app-community-badge{
    display:none;
  }

  .ls-app-account-copy{
    display:none;
  }

  .ls-app-content{
    padding:18px 14px;
  }

  .ls-app-flash-wrap{
    padding-left:14px;
    padding-right:14px;
  }

  .ls-internal-page-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-internal-actions{
    width:100%;
  }

  .ls-internal-actions .btn{
    flex:1;
  }

  .ls-stat-grid{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   ADMINISTRATIVE DASHBOARD
   ========================================================= */

.ls-dashboard-kicker{
  display:block;
  color:var(--ls-brand);
  font-size:.64rem;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}


/* Filter */

.ls-dashboard-filter{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:22px;
  margin-bottom:20px;
  padding:18px 20px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:15px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.035);
}

.ls-dashboard-filter-heading{
  display:flex;
  flex-direction:column;
}

.ls-dashboard-filter-heading span{
  color:var(--ls-muted);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.07em;
}

.ls-dashboard-filter-heading strong{
  margin-top:3px;
  color:var(--ls-text);
  font-size:.94rem;
  font-weight:900;
}

.ls-dashboard-filter-form{
  display:flex;
  align-items:end;
  gap:9px;
}

.ls-dashboard-filter-control{
  min-width:250px;
}

.ls-dashboard-filter-control label{
  display:block;
  margin-bottom:5px;
  color:var(--ls-muted);
  font-size:.67rem;
  font-weight:800;
}

.ls-dashboard-filter-control .form-select{
  min-height:42px;
  border:1px solid #dce4df;
  border-radius:10px;
  font-size:.8rem;
  box-shadow:none;
}

.ls-dashboard-reset{
  min-height:42px;
}


/* Stats */

.ls-dashboard-stat-grid{
  margin-bottom:23px;
}

.ls-stat-card{
  position:relative;
  overflow:hidden;
}

.ls-stat-card::after{
  content:"";
  position:absolute;
  width:80px;
  height:80px;
  right:-28px;
  bottom:-30px;
  border-radius:50%;
  background:rgba(15,23,42,.025);
}

.ls-stat-card-primary{
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-stat-card-primary span,
.ls-stat-card-primary strong,
.ls-stat-card-primary p{
  color:#fff;
}

.ls-stat-card-primary p{
  color:rgba(255,255,255,.60);
}

.ls-stat-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.ls-stat-card-top small{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(15,23,42,.04);
  color:var(--ls-muted);
  font-size:.57rem;
  font-weight:900;
}

.ls-stat-card-primary .ls-stat-card-top small{
  background:rgba(255,255,255,.09);
  color:#f8d85b;
}

.ls-stat-card p{
  position:relative;
  z-index:1;
  margin:7px 0 0;
  color:var(--ls-muted);
  font-size:.72rem;
  line-height:1.55;
}

.ls-stat-success{
  color:#138647 !important;
}

.ls-stat-danger{
  color:#c2413b !important;
}

.ls-stat-warning{
  color:#b7791f !important;
}


/* Main panels */

.ls-dashboard-panel{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-dashboard-panel-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:22px 22px 17px;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-dashboard-panel-header h2,
.ls-dashboard-small-header h2{
  margin:4px 0;
  color:var(--ls-text);
  font-size:1rem;
  font-weight:900;
}

.ls-dashboard-panel-header p{
  margin:0;
  color:var(--ls-muted);
  font-size:.74rem;
}

.ls-dashboard-panel-link{
  flex:0 0 auto;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  text-decoration:none;
}

.ls-dashboard-panel-link:hover{
  color:var(--ls-brand-600);
}


/* Table */

.ls-dashboard-table{
  margin:0;
}

.ls-dashboard-table thead th{
  padding:12px 18px;
  border-bottom:1px solid rgba(15,23,42,.07);
  background:#f7f9f8;
  color:#718078;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.ls-dashboard-table tbody td{
  padding:14px 18px;
  border-color:rgba(15,23,42,.055);
  color:#46534c;
  font-size:.78rem;
  vertical-align:middle;
}

.ls-dashboard-table tbody tr:last-child td{
  border-bottom:0;
}

.ls-dashboard-table tbody tr:hover{
  background:#fafcfb;
}

.ls-parcel-code-cell{
  display:flex;
  align-items:center;
  gap:10px;
}

.ls-parcel-code-icon{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  flex:0 0 31px;
  border-radius:8px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.55rem;
  font-weight:900;
}

.ls-parcel-code-cell div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.ls-parcel-code-cell a{
  color:var(--ls-text);
  font-weight:900;
  text-decoration:none;
}

.ls-parcel-code-cell a:hover{
  color:var(--ls-brand);
}

.ls-parcel-code-cell small{
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.64rem;
}

.ls-table-muted{
  color:var(--ls-muted);
}

.ls-table-action{
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  text-decoration:none;
}


/* Status badges */

.ls-status-badge{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.025em;
  text-transform:uppercase;
}

.ls-status-pending{
  background:#eef1f3;
  color:#64748b;
}

.ls-status-available{
  background:#e9f7ef;
  color:#15803d;
}

.ls-status-allocated{
  background:#fceceb;
  color:#b42318;
}

.ls-status-disputed{
  background:#fff4d9;
  color:#996515;
}

.ls-status-neutral{
  background:#eef1f3;
  color:#64748b;
}


/* Empty */

.ls-dashboard-empty{
  padding:55px 25px;
  text-align:center;
}

.ls-dashboard-empty > span{
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  border-radius:12px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
}

.ls-dashboard-empty h3{
  margin:0;
  font-size:.95rem;
  font-weight:900;
}

.ls-dashboard-empty p{
  margin:6px 0 0;
  color:var(--ls-muted);
  font-size:.75rem;
}


/* Side panels */

.ls-dashboard-side-stack{
  display:grid;
  gap:18px;
}

.ls-dashboard-small-header{
  padding:21px 21px 13px;
}

.ls-dashboard-summary-list{
  padding:0 21px 14px;
}

.ls-dashboard-summary-list > div{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:12px 0;
  border-top:1px solid rgba(15,23,42,.06);
}

.ls-dashboard-summary-list span{
  color:var(--ls-muted);
  font-size:.72rem;
}

.ls-dashboard-summary-list strong{
  max-width:58%;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
  text-align:right;
}

.ls-summary-success{
  color:#15803d !important;
}


/* Quick links */

.ls-dashboard-quick-panel{
  padding-bottom:7px;
}

.ls-dashboard-quick-links{
  padding:0 13px;
}

.ls-dashboard-quick-links a{
  display:grid;
  grid-template-columns:32px 1fr auto;
  align-items:center;
  gap:10px;
  padding:11px 8px;
  border-top:1px solid rgba(15,23,42,.055);
  color:var(--ls-text);
  text-decoration:none;
}

.ls-dashboard-quick-links > a > span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#f2f6f3;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
}

.ls-dashboard-quick-links a div{
  display:flex;
  flex-direction:column;
}

.ls-dashboard-quick-links strong{
  font-size:.75rem;
  font-weight:900;
}

.ls-dashboard-quick-links small{
  margin-top:1px;
  color:var(--ls-muted);
  font-size:.62rem;
}

.ls-dashboard-quick-links b{
  color:#9ba7a0;
  font-size:.8rem;
}

.ls-dashboard-quick-links a:hover strong{
  color:var(--ls-brand);
}


/* Governance */

.ls-dashboard-governance{
  padding:22px;
  border-radius:16px;
  background:
    linear-gradient(
      145deg,
      #082118,
      #0d3826
    );
}

.ls-dashboard-governance > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.09em;
}

.ls-dashboard-governance strong{
  display:block;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
}

.ls-dashboard-governance p{
  margin:8px 0 0;
  color:rgba(255,255,255,.57);
  font-size:.7rem;
  line-height:1.6;
}


/* Responsive */

@media (max-width:991px){

  .ls-dashboard-filter{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-dashboard-filter-form{
    width:100%;
  }

  .ls-dashboard-filter-control{
    flex:1;
    min-width:0;
  }
}

@media (max-width:575px){

  .ls-dashboard-filter-form{
    align-items:stretch;
    flex-direction:column;
  }

  .ls-dashboard-panel-header{
    flex-direction:column;
  }

  .ls-dashboard-table{
    min-width:650px;
  }
}

/* =========================================================
   CHIEF DASHBOARD
   ========================================================= */

.ls-chief-community-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  margin-bottom:20px;
  padding:26px 28px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(248,216,91,.20),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #092c1d,
      #0b6b3a
    );
  box-shadow:0 12px 28px rgba(6,47,29,.12);
}

.ls-chief-community-banner::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-80px;
  bottom:-100px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
}

.ls-chief-community-content{
  position:relative;
  z-index:1;
}

.ls-chief-community-content > span{
  display:block;
  margin-bottom:8px;
  color:#f8d85b;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-chief-community-content h2{
  margin:0;
  color:#fff;
  font-size:1.75rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-chief-community-content p{
  max-width:620px;
  margin:8px 0 0;
  color:rgba(255,255,255,.65);
  font-size:.77rem;
  line-height:1.65;
}

.ls-chief-community-mark{
  position:relative;
  z-index:1;
  width:92px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  flex:0 0 92px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:23px;
  background:rgba(255,255,255,.07);
}

.ls-chief-community-mark span{
  color:#fff;
  font-size:1.25rem;
  font-weight:900;
}

.ls-chief-community-mark small{
  margin-top:3px;
  color:#f8d85b;
  font-size:.57rem;
  font-weight:800;
}


/* Governance Card */

.ls-chief-governance-card{
  padding:24px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #151c31,
      #0f1b35
    );
  color:#fff;
  box-shadow:0 12px 28px rgba(15,27,53,.10);
}

.ls-chief-governance-label{
  display:block;
  margin-bottom:8px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-chief-governance-card h3{
  margin:0;
  color:#fff;
  font-size:1rem;
  font-weight:900;
  line-height:1.4;
}

.ls-chief-governance-card p{
  margin:10px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.72rem;
  line-height:1.65;
}

.ls-chief-governance-rule{
  height:1px;
  margin:17px 0;
  background:rgba(255,255,255,.09);
}

.ls-chief-governance-card small{
  display:block;
  color:rgba(255,255,255,.42);
  font-size:.65rem;
  line-height:1.55;
}

.ls-chief-warning-text{
  color:#b7791f !important;
}


/* Mobile */

@media (max-width:575px){

  .ls-chief-community-banner{
    align-items:flex-start;
    flex-direction:column;
    padding:22px;
  }

  .ls-chief-community-mark{
    width:72px;
    height:72px;
    flex-basis:72px;
    border-radius:18px;
  }

  .ls-chief-community-content h2{
    font-size:1.45rem;
  }
}

/* =========================================================
   ELDER DASHBOARD
   ========================================================= */

.ls-elder-community-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  overflow:hidden;
  margin-bottom:20px;
  padding:24px 27px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(248,216,91,.20),
      transparent 25%
    ),
    #ffffff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-elder-community-banner::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:#0b6b3a;
}

.ls-elder-community-banner > div:first-child{
  position:relative;
  z-index:1;
}

.ls-elder-community-banner span{
  display:block;
  margin-bottom:6px;
  color:var(--ls-brand);
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-elder-community-banner h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-elder-community-banner p{
  max-width:620px;
  margin:7px 0 0;
  color:var(--ls-muted);
  font-size:.75rem;
  line-height:1.6;
}

.ls-elder-community-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  flex:0 0 72px;
  border-radius:19px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:1rem;
  font-weight:900;
}


/* Stewardship card */

.ls-elder-stewardship{
  padding:23px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #f7faf8,
      #eef6f1
    );
}

.ls-elder-stewardship > span{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-elder-stewardship h3{
  margin:0;
  color:var(--ls-text);
  font-size:.95rem;
  font-weight:900;
  line-height:1.4;
}

.ls-elder-stewardship p{
  margin:9px 0 0;
  color:var(--ls-muted);
  font-size:.71rem;
  line-height:1.65;
}


@media (max-width:575px){

  .ls-elder-community-banner{
    align-items:flex-start;
    flex-direction:column;
    padding:21px;
  }

  .ls-elder-community-icon{
    width:60px;
    height:60px;
    flex-basis:60px;
    border-radius:16px;
  }

  .ls-elder-community-banner h2{
    font-size:1.35rem;
  }
}

/* =========================================================
   SURVEYOR DASHBOARD
   ========================================================= */

.ls-surveyor-banner{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
  position:relative;
  overflow:hidden;
  margin-bottom:20px;
  padding:25px 27px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(248,216,91,.20),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #102a3b
    );
  box-shadow:0 12px 30px rgba(15,27,53,.10);
}

.ls-surveyor-banner > div:first-child{
  position:relative;
  z-index:1;
}

.ls-surveyor-banner > div:first-child > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-surveyor-banner h2{
  margin:0;
  color:#fff;
  font-size:1.55rem;
  font-weight:900;
}

.ls-surveyor-banner p{
  max-width:650px;
  margin:8px 0 0;
  color:rgba(255,255,255,.63);
  font-size:.75rem;
  line-height:1.6;
}

.ls-surveyor-banner-action{
  position:relative;
  z-index:1;
}

.ls-surveyor-banner-action a{
  min-width:215px;
  display:grid;
  grid-template-columns:1fr auto;
  column-gap:14px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:13px;
  background:rgba(255,255,255,.07);
  color:#fff;
  text-decoration:none;
  transition:.2s ease;
}

.ls-surveyor-banner-action a:hover{
  background:rgba(255,255,255,.11);
  transform:translateY(-1px);
}

.ls-surveyor-banner-action strong{
  font-size:.76rem;
  font-weight:900;
}

.ls-surveyor-banner-action small{
  grid-column:1;
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.61rem;
}

.ls-surveyor-banner-action b{
  grid-column:2;
  grid-row:1 / span 2;
  align-self:center;
  color:#f8d85b;
}


/* Notifications */

.ls-surveyor-notification-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.ls-surveyor-notification-actions form{
  margin:0;
}

.ls-notification-count{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  background:#e7f6ed;
  color:#147a3e;
  font-size:.6rem;
  font-weight:900;
}

.ls-notification-count-zero{
  background:#eef1f3;
  color:#68756e;
}

.ls-surveyor-notification-list{
  padding:7px 18px 15px;
}

.ls-surveyor-notification{
  display:grid;
  grid-template-columns:35px 1fr auto;
  align-items:flex-start;
  gap:11px;
  padding:14px 4px;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-surveyor-notification:last-child{
  border-bottom:0;
}

.ls-surveyor-notification-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.58rem;
  font-weight:900;
}

.ls-surveyor-notification-copy{
  min-width:0;
}

.ls-surveyor-notification-copy strong{
  display:block;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
}

.ls-surveyor-notification-copy p{
  margin:3px 0;
  color:var(--ls-muted);
  font-size:.69rem;
  line-height:1.5;
}

.ls-surveyor-notification-copy small{
  color:#9aa59f;
  font-size:.59rem;
}


/* Subdivided status */

.ls-status-subdivided{
  background:#eef0fb;
  color:#525bb7;
}


/* Quality card */

.ls-surveyor-quality-card{
  padding:23px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
  box-shadow:0 12px 28px rgba(7,55,32,.10);
}

.ls-surveyor-quality-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-surveyor-quality-card h3{
  margin:0;
  color:#fff;
  font-size:.95rem;
  font-weight:900;
  line-height:1.45;
}

.ls-surveyor-quality-card p{
  margin:9px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.7rem;
  line-height:1.65;
}


@media (max-width:991px){

  .ls-surveyor-banner{
    grid-template-columns:1fr;
  }

  .ls-surveyor-banner-action a{
    width:100%;
  }
}


@media (max-width:575px){

  .ls-surveyor-banner{
    padding:21px;
  }

  .ls-surveyor-banner h2{
    font-size:1.35rem;
  }

  .ls-surveyor-notification{
    grid-template-columns:34px 1fr;
  }

  .ls-surveyor-notification > .ls-table-action{
    grid-column:2;
    justify-self:start;
  }

  .ls-surveyor-notification-actions{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   FINANCE DASHBOARD
   ========================================================= */

.ls-finance-filter-panel{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;
  gap:24px;
  margin-bottom:20px;
  padding:20px 22px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.035);
}

.ls-finance-filter-form{
  display:flex;
  align-items:end;
  gap:10px;
}

.ls-finance-filter-form > div{
  min-width:190px;
}

.ls-finance-filter-form label{
  display:block;
  margin-bottom:6px;
  color:var(--ls-text);
  font-size:.66rem;
  font-weight:900;
}

.ls-finance-scope{
  min-width:220px;
  padding-left:20px;
  border-left:1px solid rgba(15,23,42,.08);
}

.ls-finance-scope > span{
  display:block;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-finance-scope strong{
  display:block;
  margin-top:3px;
  color:var(--ls-text);
  font-size:.85rem;
}

.ls-finance-scope small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.62rem;
}


/* Summary */

.ls-finance-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}

.ls-finance-stat-primary{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.15),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-finance-stat-primary .ls-stat-card-top span,
.ls-finance-stat-primary .ls-stat-card-top small,
.ls-finance-stat-primary p{
  color:rgba(255,255,255,.62);
}

.ls-finance-stat-primary strong{
  color:#fff;
}

.ls-finance-status-card{
  padding:19px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.035);
}

.ls-finance-status-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:15px;
}

.ls-finance-status-list > div{
  display:grid;
  grid-template-columns:8px 1fr auto;
  align-items:center;
  gap:8px;
  padding:7px 0;
  border-bottom:1px solid rgba(15,23,42,.05);
}

.ls-finance-status-list > div:last-child{
  border-bottom:0;
}

.ls-finance-status-list span{
  color:var(--ls-muted);
  font-size:.68rem;
}

.ls-finance-status-list strong{
  color:var(--ls-text);
  font-size:.72rem;
}

.ls-finance-dot{
  width:7px;
  height:7px;
  border-radius:50%;
}

.ls-finance-dot-danger{
  background:#c94c4c;
}

.ls-finance-dot-warning{
  background:#d8a126;
}

.ls-finance-dot-success{
  background:#25985b;
}


/* Chart */

.ls-finance-chart-wrap{
  position:relative;
  height:320px;
  padding:8px 18px 20px;
}


/* Table amounts */

.ls-finance-amount-warning{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:#fff4db;
  color:#976500;
  font-size:.65rem;
  font-weight:900;
}

.ls-finance-reference{
  color:var(--ls-brand);
  font-weight:800;
}

.ls-finance-paid-amount{
  color:#18794a;
}

.ls-finance-table-empty{
  padding:30px 10px;
  color:var(--ls-muted);
  text-align:center;
  font-size:.72rem;
}


/* Defaulters */

.ls-finance-defaulter-list{
  padding:4px 18px 15px;
}

.ls-finance-defaulter{
  display:grid;
  grid-template-columns:30px 1fr auto;
  align-items:center;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-finance-defaulter:last-child{
  border-bottom:0;
}

.ls-finance-rank{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#f2f4f3;
  color:#5e6b64;
  font-size:.62rem;
  font-weight:900;
}

.ls-finance-defaulter-copy{
  min-width:0;
}

.ls-finance-defaulter-copy strong{
  display:block;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.7rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-finance-defaulter-copy small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.59rem;
}

.ls-finance-defaulter-balance{
  text-align:right;
}

.ls-finance-defaulter-balance small{
  display:block;
  color:var(--ls-muted);
  font-size:.54rem;
}

.ls-finance-defaulter-balance strong{
  display:block;
  margin-top:2px;
  color:#bb3b3b;
  font-size:.69rem;
}

.ls-finance-mini-empty{
  margin:5px 18px 18px;
  padding:17px;
  border-radius:11px;
  background:#f7f9f8;
}

.ls-finance-mini-empty strong{
  display:block;
  color:var(--ls-text);
  font-size:.72rem;
}

.ls-finance-mini-empty span{
  display:block;
  margin-top:3px;
  color:var(--ls-muted);
  font-size:.63rem;
}


/* Accountability */

.ls-finance-governance-card{
  padding:23px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.17),
      transparent 35%
    ),
    #0f1b35;
}

.ls-finance-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-finance-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.96rem;
  font-weight:900;
  line-height:1.42;
}

.ls-finance-governance-card p{
  margin:9px 0 0;
  color:rgba(255,255,255,.58);
  font-size:.69rem;
  line-height:1.65;
}

.ls-finance-danger-text{
  color:#bc3c3c !important;
}


/* Responsive */

@media (max-width:1199px){

  .ls-finance-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:767px){

  .ls-finance-filter-panel{
    grid-template-columns:1fr;
  }

  .ls-finance-scope{
    padding-top:15px;
    padding-left:0;
    border-top:1px solid rgba(15,23,42,.08);
    border-left:0;
  }

  .ls-finance-filter-form{
    align-items:stretch;
    flex-direction:column;
  }

  .ls-finance-filter-form > div{
    min-width:0;
  }

  .ls-finance-chart-wrap{
    height:270px;
  }
}


@media (max-width:575px){

  .ls-finance-stat-grid{
    grid-template-columns:1fr;
  }

  .ls-finance-defaulter{
    grid-template-columns:28px 1fr;
  }

  .ls-finance-defaulter-balance{
    grid-column:2;
    text-align:left;
  }
}

/* =========================================================
   HR DASHBOARD
   ========================================================= */

.ls-hr-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  margin-bottom:20px;
  padding:27px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(248,216,91,.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #173149
    );
  box-shadow:0 12px 30px rgba(15,27,53,.10);
}

.ls-hr-banner > div:first-child{
  max-width:720px;
}

.ls-hr-banner span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-hr-banner h2{
  margin:0;
  color:#fff;
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-hr-banner p{
  margin:8px 0 0;
  color:rgba(255,255,255,.61);
  font-size:.74rem;
  line-height:1.65;
}

.ls-hr-banner-mark{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  flex:0 0 74px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  color:#f8d85b;
  font-size:1rem;
  font-weight:900;
}


/* HR function cards */

.ls-hr-module-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
  padding:3px 18px 19px;
}

.ls-hr-module-card{
  position:relative;
  min-height:152px;
  padding:18px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:13px;
  background:#fafcfb;
  transition:.2s ease;
}

.ls-hr-module-card:hover{
  border-color:rgba(11,107,58,.18);
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transform:translateY(-1px);
}

.ls-hr-module-card > span{
  display:grid;
  place-items:center;
  width:29px;
  height:29px;
  margin-bottom:13px;
  border-radius:8px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.57rem;
  font-weight:900;
}

.ls-hr-module-card h3{
  margin:0;
  color:var(--ls-text);
  font-size:.8rem;
  font-weight:900;
}

.ls-hr-module-card p{
  margin:6px 0 0;
  color:var(--ls-muted);
  font-size:.67rem;
  line-height:1.6;
}


/* Status */

.ls-hr-status-card{
  padding:22px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:#f4faf6;
}

.ls-hr-status-card > span{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-status-card h3{
  margin:0;
  color:var(--ls-text);
  font-size:.9rem;
  font-weight:900;
}

.ls-hr-status-card p{
  margin:8px 0 15px;
  color:var(--ls-muted);
  font-size:.67rem;
  line-height:1.6;
}

.ls-hr-status-indicator{
  display:flex;
  align-items:center;
  gap:8px;
  padding-top:12px;
  border-top:1px solid rgba(11,107,58,.10);
}

.ls-hr-status-indicator i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#25985b;
  box-shadow:0 0 0 4px rgba(37,152,91,.10);
}

.ls-hr-status-indicator strong{
  color:#147a3e;
  font-size:.65rem;
}


/* Governance */

.ls-hr-governance-card{
  padding:22px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.91rem;
  font-weight:900;
  line-height:1.45;
}

.ls-hr-governance-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.67rem;
  line-height:1.65;
}


@media (max-width:767px){

  .ls-hr-module-grid{
    grid-template-columns:1fr;
  }

  .ls-hr-banner{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   HRM DASHBOARD
   ========================================================= */

.ls-hr-dashboard-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-bottom:18px;
  padding:25px 27px;
  border-radius:18px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(248,216,91,.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #18334c
    );
  box-shadow:0 10px 28px rgba(15,27,53,.09);
}

.ls-hr-dashboard-banner > div:first-child{
  max-width:720px;
}

.ls-hr-dashboard-banner span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-hr-dashboard-banner h2{
  margin:0;
  color:#fff;
  font-size:1.45rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-hr-dashboard-banner p{
  margin:7px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.7rem;
  line-height:1.65;
}

.ls-hr-dashboard-mark{
  width:73px;
  height:73px;
  display:grid;
  place-items:center;
  flex:0 0 73px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  color:#f8d85b;
  font-size:1rem;
  font-weight:900;
}


/* Statistics */

.ls-hr-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
  margin-bottom:15px;
}

.ls-hr-stat-featured{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.15),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-stat-featured .ls-stat-card-top span,
.ls-hr-stat-featured .ls-stat-card-top small,
.ls-hr-stat-featured p{
  color:rgba(255,255,255,.62);
}

.ls-hr-stat-featured strong{
  color:#fff;
}


/* Secondary status strip */

.ls-hr-status-strip{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  margin-bottom:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.065);
  border-radius:14px;
  background:#fff;
}

.ls-hr-status-strip > div{
  display:flex;
  align-items:center;
  gap:9px;
  padding:13px 15px;
  border-right:1px solid rgba(15,23,42,.06);
}

.ls-hr-status-strip > div:last-child{
  border-right:0;
}

.ls-hr-status-strip small{
  display:block;
  color:var(--ls-muted);
  font-size:.56rem;
}

.ls-hr-status-strip strong{
  display:block;
  margin-top:1px;
  color:var(--ls-text);
  font-size:.78rem;
  font-weight:900;
}

.ls-hr-status-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex:0 0 26px;
  border-radius:8px;
  font-size:.6rem;
  font-weight:900;
}

.ls-hr-status-icon.warning{
  background:#fff4da;
  color:#9a6c00;
}

.ls-hr-status-icon.muted{
  background:#f0f2f1;
  color:#69736e;
}

.ls-hr-status-icon.progress{
  background:#e8f1ff;
  color:#346eab;
}

.ls-hr-status-icon.success{
  background:#e9f7ef;
  color:#19864a;
}

.ls-hr-status-icon.danger{
  background:#fcecec;
  color:#bd3e3e;
}


/* Person cell */

.ls-hr-person{
  display:flex;
  align-items:center;
  gap:9px;
}

.ls-hr-person > span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  flex:0 0 32px;
  border-radius:9px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.68rem;
  font-weight:900;
}

.ls-hr-person strong{
  display:block;
  color:var(--ls-text);
  font-size:.69rem;
  font-weight:900;
}

.ls-hr-person small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-role-chip{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:#edf5f0;
  color:#176940;
  font-size:.59rem;
  font-weight:800;
}


/* Staff statuses */

.ls-status-active{
  background:#e8f7ef;
  color:#187c46;
}

.ls-status-suspended{
  background:#fff3da;
  color:#986500;
}

.ls-status-resigned{
  background:#edf0ef;
  color:#65706a;
}

.ls-status-deceased{
  background:#f5eded;
  color:#795858;
}


/* Task list */

.ls-hr-task-list{
  padding:0 18px 16px;
}

.ls-hr-task-row{
  display:grid;
  grid-template-columns:30px 1fr auto;
  align-items:center;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-hr-task-row:last-child{
  border-bottom:0;
}

.ls-hr-task-status span{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:.65rem;
  font-weight:900;
}

.ls-hr-task-status .open{
  background:#fff3d9;
  color:#996700;
}

.ls-hr-task-status .progress{
  background:#e9f2ff;
  color:#316da8;
}

.ls-hr-task-status .done{
  background:#e7f7ee;
  color:#198048;
}

.ls-hr-task-status .cancelled{
  background:#f5eded;
  color:#a04848;
}

.ls-hr-task-copy strong{
  display:block;
  color:var(--ls-text);
  font-size:.7rem;
  font-weight:900;
}

.ls-hr-task-copy > div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:3px;
}

.ls-hr-task-copy span{
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-task-state{
  color:var(--ls-muted);
  font-size:.59rem;
  font-weight:800;
}


/* Appointment list */

.ls-hr-appointment-list{
  padding:0 18px 15px;
}

.ls-hr-appointment{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-hr-appointment:last-child{
  border-bottom:0;
}

.ls-hr-appointment strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
}

.ls-hr-appointment span{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-appointment > small{
  flex:0 0 auto;
  color:var(--ls-muted);
  font-size:.56rem;
}


/* Governance card */

.ls-hr-governance-panel{
  padding:22px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.13),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-governance-panel > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-governance-panel h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-hr-governance-panel p{
  margin:8px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.66rem;
  line-height:1.65;
}


/* Responsive */

@media (max-width:1199px){

  .ls-hr-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ls-hr-status-strip{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .ls-hr-status-strip > div{
    border-bottom:1px solid rgba(15,23,42,.06);
  }
}


@media (max-width:767px){

  .ls-hr-status-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:575px){

  .ls-hr-dashboard-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-hr-stat-grid,
  .ls-hr-status-strip{
    grid-template-columns:1fr;
  }

  .ls-hr-status-strip > div{
    border-right:0;
  }

  .ls-hr-task-row{
    grid-template-columns:30px 1fr;
  }

  .ls-hr-task-state{
    grid-column:2;
  }
}

/* =========================================================
   INTERNAL APPLICATION LAYOUT + FOOTER FIX
   ========================================================= */


/* ---------------------------------------------------------
   Main internal application area
   --------------------------------------------------------- */

.ls-main{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}


/* ---------------------------------------------------------
   Page content
   IMPORTANT:
   Do not force this area to fill the whole viewport.
   That was causing the large blank space before the footer.
   --------------------------------------------------------- */

.ls-internal-content{
    width:100%;
    padding:24px;
    min-height:auto;
    flex:0 0 auto;
}


/* ---------------------------------------------------------
   SIMPLE INTERNAL FOOTER
   --------------------------------------------------------- */

.ls-internal-footer-simple{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    margin-top:28px;
    padding:14px 4px 8px;

    border:0;
    border-top:1px solid rgba(15, 23, 42, .08);

    background:transparent;

    color:#7b857f;

    font-size:.55rem;
    line-height:1.5;
}


/* Right-hand footer items */

.ls-internal-footer-simple > div{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:8px;
}


/* Small gold separators */

.ls-internal-footer-simple i{
    width:3px;
    height:3px;

    display:block;
    flex:0 0 3px;

    border-radius:50%;

    background:#d2a927;
}


/* ---------------------------------------------------------
   Optional slightly stronger copyright text
   --------------------------------------------------------- */

.ls-internal-footer-simple > span{
    color:#68736d;
    font-weight:700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:991px){

    .ls-internal-content{
        padding:20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px){

    .ls-internal-content{
        padding:17px;
    }

    .ls-internal-footer-simple{
        align-items:flex-start;
        flex-direction:column;

        gap:6px;

        margin-top:24px;
        padding:13px 0 6px;
    }

    .ls-internal-footer-simple > div{
        justify-content:flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width:575px){

    .ls-internal-content{
        padding:15px;
    }

    .ls-internal-footer-simple{
        font-size:.52rem;
    }

}

/* =========================================================
   HR STAFF REGISTER
   ========================================================= */

.ls-staff-register-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  margin-bottom:18px;
  padding:20px 23px;

  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;

  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #ffffff;
}

.ls-staff-register-summary > div:first-child > span{
  display:block;
  margin-bottom:5px;

  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-staff-register-summary h2{
  margin:0;

  color:var(--ls-text);

  font-size:1.08rem;
  font-weight:900;
}

.ls-staff-register-summary p{
  margin:5px 0 0;

  color:var(--ls-muted);

  font-size:.66rem;
}


/* Counter */

.ls-staff-register-count{
  min-width:95px;
  padding:12px 18px;

  border-radius:12px;

  background:#f3f8f5;

  text-align:center;
}

.ls-staff-register-count small{
  display:block;

  color:var(--ls-muted);

  font-size:.53rem;
  font-weight:700;
}

.ls-staff-register-count strong{
  display:block;

  margin-top:2px;

  color:var(--ls-brand);

  font-size:1.35rem;
  font-weight:900;
}


/* =========================================================
   STAFF TABLE
   ========================================================= */

.ls-staff-table{
  margin-bottom:0;
}

.ls-staff-table tbody tr{
  transition:.15s ease;
}

.ls-staff-table tbody tr:hover{
  background:#fbfdfc;
}

.ls-staff-name{
  display:block;

  color:var(--ls-text);

  font-size:.69rem;
  font-weight:900;

  text-decoration:none;
}

.ls-staff-name:hover{
  color:var(--ls-brand);
}


/* Contact */

.ls-staff-contact{
  color:#4e5d55;

  font-size:.64rem;
  font-weight:700;
}


/* Community */

.ls-staff-community{
  display:flex;
  align-items:center;
  gap:7px;

  color:#536058;

  font-size:.63rem;
  font-weight:700;
}

.ls-staff-community-dot{
  width:6px;
  height:6px;

  flex:0 0 6px;

  border-radius:50%;

  background:#0b6b3a;

  box-shadow:
    0 0 0 3px rgba(11,107,58,.08);
}


/* Empty */

.ls-staff-empty{
  padding:48px 20px;
}

.ls-staff-empty .btn{
  margin-top:9px;
}


/* =========================================================
   GOVERNANCE NOTE
   ========================================================= */

.ls-staff-governance-note{
  display:flex;
  align-items:flex-start;
  gap:13px;

  margin-top:18px;
  padding:17px 19px;

  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;

  background:#f7faf8;
}

.ls-staff-governance-icon{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  flex:0 0 34px;

  border-radius:10px;

  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
}

.ls-staff-governance-note strong{
  display:block;

  color:var(--ls-text);

  font-size:.67rem;
  font-weight:900;
}

.ls-staff-governance-note p{
  margin:4px 0 0;

  color:var(--ls-muted);

  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:767px){

  .ls-staff-register-summary{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-staff-register-count{
    width:100%;
    text-align:left;
  }

}

/* =========================================================
   HR STAFF DETAIL
   ========================================================= */

.ls-staff-profile-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  margin-bottom:20px;
  padding:21px 23px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:17px;
  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.08),
      transparent 32%
    ),
    #fff;
}

.ls-staff-profile-identity{
  display:flex;
  align-items:center;
  gap:14px;
}

.ls-staff-profile-avatar{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  flex:0 0 58px;
  border-radius:16px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
  color:#f8d85b;
  font-size:1.1rem;
  font-weight:900;
}

.ls-staff-profile-identity h2{
  margin:2px 0 7px;
  color:var(--ls-text);
  font-size:1.15rem;
  font-weight:900;
}

.ls-staff-profile-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
}

.ls-staff-profile-community{
  min-width:150px;
  padding-left:20px;
  border-left:1px solid rgba(15,23,42,.08);
}

.ls-staff-profile-community small{
  display:block;
  color:var(--ls-muted);
  font-size:.54rem;
}

.ls-staff-profile-community strong{
  display:block;
  margin-top:3px;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
}


/* Detail grid */

.ls-staff-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0;
  padding:0 18px 10px;
}

.ls-staff-detail-item{
  padding:14px 12px;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-staff-detail-item span{
  display:block;
  margin-bottom:3px;
  color:var(--ls-muted);
  font-size:.55rem;
}

.ls-staff-detail-item strong{
  display:block;
  color:var(--ls-text);
  font-size:.68rem;
  font-weight:800;
}


/* Additional information */

.ls-staff-additional-info{
  margin:4px 18px 18px;
  padding:16px;
  border-radius:12px;
  background:#f8faf9;
}

.ls-staff-additional-info > div + div{
  margin-top:13px;
  padding-top:13px;
  border-top:1px solid rgba(15,23,42,.055);
}

.ls-staff-additional-info span{
  display:block;
  margin-bottom:3px;
  color:var(--ls-muted);
  font-size:.55rem;
  font-weight:700;
}

.ls-staff-additional-info p{
  margin:0;
  color:#45534b;
  font-size:.65rem;
  line-height:1.55;
}


/* Table detail */

.ls-staff-table-title{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-staff-table-note{
  display:block;
  margin-top:3px;
  max-width:280px;
  color:var(--ls-muted);
  font-size:.56rem;
  line-height:1.45;
}

.ls-staff-date-range strong{
  display:block;
  color:#46534c;
  font-size:.62rem;
}

.ls-staff-date-range small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.55rem;
}

.ls-evidence-ref{
  display:inline-block;
  padding:4px 7px;
  border-radius:6px;
  background:#f2f4f3;
  color:#536058;
  font-size:.57rem;
  font-weight:800;
}

.ls-staff-appointed-by{
  color:#4c5a52;
  font-size:.61rem;
  font-weight:700;
}


/* Task status */

.ls-task-open{
  background:#fff3d8;
  color:#956600;
}

.ls-task-progress{
  background:#e8f1ff;
  color:#316ca7;
}

.ls-task-cancelled{
  background:#f6ecec;
  color:#a44747;
}

.ls-staff-related-link{
  color:var(--ls-brand);
  font-size:.61rem;
  font-weight:800;
  text-decoration:none;
}

.ls-staff-related-link:hover{
  text-decoration:underline;
}

.ls-staff-related-record,
.ls-staff-due-date{
  color:#4f5c55;
  font-size:.61rem;
  font-weight:700;
}


/* Appointment form */

.ls-staff-appointment-form{
  padding:0 18px 18px;
}

.ls-staff-appointment-form .ls-form-group{
  margin-bottom:13px;
}

.ls-staff-appointment-form label{
  display:block;
  margin-bottom:5px;
  color:#37453d;
  font-size:.6rem;
  font-weight:800;
}

.ls-staff-appointment-form input,
.ls-staff-appointment-form select,
.ls-staff-appointment-form textarea{
  width:100%;
  min-height:39px;
  padding:8px 10px;
  border:1px solid #dce2de;
  border-radius:8px;
  background:#fff;
  color:#27332d;
  font-size:.64rem;
  outline:none;
  transition:.15s ease;
}

.ls-staff-appointment-form textarea{
  min-height:78px;
  resize:vertical;
}

.ls-staff-appointment-form input:focus,
.ls-staff-appointment-form select:focus,
.ls-staff-appointment-form textarea:focus{
  border-color:rgba(11,107,58,.45);
  box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-form-help{
  display:block;
  margin-top:4px;
  color:#8a948e;
  font-size:.53rem;
}

.ls-form-error{
  margin-top:4px;
  color:#b23838;
  font-size:.55rem;
  font-weight:700;
}


/* Governance */

.ls-staff-governance-card{
  padding:22px;
  border-radius:17px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
}

.ls-staff-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-staff-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-staff-governance-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.61);
  font-size:.65rem;
  line-height:1.6;
}


/* Responsive */

@media(max-width:767px){

  .ls-staff-profile-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-staff-profile-community{
    width:100%;
    padding:12px 0 0;
    border-left:0;
    border-top:1px solid rgba(15,23,42,.08);
  }

  .ls-staff-detail-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   HR STAFF FORM
   ========================================================= */

.ls-staff-form-wrap{
  padding:4px 20px 22px;
}


/* Form grid */

.ls-staff-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 18px;
}

.ls-staff-form-grid .ls-form-group{
  min-width:0;
}

.ls-staff-form-grid .ls-form-full{
  grid-column:1 / -1;
}


/* Labels */

.ls-staff-form-grid label{
  display:block;

  margin-bottom:6px;

  color:#334139;

  font-size:.61rem;
  font-weight:800;
}


/* Fields */

.ls-staff-form-grid input,
.ls-staff-form-grid select,
.ls-staff-form-grid textarea{
  width:100%;

  min-height:42px;

  padding:9px 11px;

  border:1px solid #d9e0dc;
  border-radius:9px;

  background:#ffffff;

  color:#27332d;

  font-size:.66rem;

  outline:none;

  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.ls-staff-form-grid textarea{
  min-height:95px;
  resize:vertical;
}

.ls-staff-form-grid input:hover,
.ls-staff-form-grid select:hover,
.ls-staff-form-grid textarea:hover{
  border-color:#c9d4cd;
}

.ls-staff-form-grid input:focus,
.ls-staff-form-grid select:focus,
.ls-staff-form-grid textarea:focus{
  border-color:rgba(11,107,58,.48);

  box-shadow:
    0 0 0 3px rgba(11,107,58,.07);
}


/* Checkbox */

.ls-staff-form-grid input[type="checkbox"]{
  width:auto;
  min-height:auto;
  margin-right:6px;
}


/* Help + error */

.ls-required{
  color:#bf3e3e;
}

.ls-form-help{
  display:block;

  margin-top:4px;

  color:#89938d;

  font-size:.53rem;
  line-height:1.45;
}

.ls-form-error{
  margin-top:5px;

  color:#b63f3f;

  font-size:.55rem;
  font-weight:700;
}


/* Buttons */

.ls-staff-form-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;

  margin-top:22px;
  padding-top:18px;

  border-top:1px solid rgba(15,23,42,.06);
}


/* =========================================================
   SIDE INFO CARD
   ========================================================= */

.ls-staff-form-info-card{
  padding:22px;

  border-radius:17px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-staff-form-info-card > span{
  display:block;

  margin-bottom:7px;

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-staff-form-info-card h3{
  margin:0;

  color:#fff;

  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-staff-form-info-card p{
  margin:8px 0 0;

  color:rgba(255,255,255,.62);

  font-size:.65rem;
  line-height:1.65;
}


/* =========================================================
   GUIDANCE
   ========================================================= */

.ls-staff-form-guidance{
  padding:0 18px 16px;
}

.ls-staff-form-guidance > div{
  display:flex;
  align-items:flex-start;
  gap:10px;

  padding:10px 0;

  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-staff-form-guidance > div:last-child{
  border-bottom:0;
}

.ls-staff-form-guidance span{
  width:26px;
  height:26px;

  display:grid;
  place-items:center;

  flex:0 0 26px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.54rem;
  font-weight:900;
}

.ls-staff-form-guidance p{
  margin:2px 0 0;

  color:#5a675f;

  font-size:.62rem;
  line-height:1.5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:767px){

  .ls-staff-form-grid{
    grid-template-columns:1fr;
  }

  .ls-staff-form-grid .ls-form-full{
    grid-column:auto;
  }

  .ls-staff-form-actions{
    align-items:stretch;
    flex-direction:column-reverse;
  }

  .ls-staff-form-actions .btn{
    width:100%;
  }

}

/* =========================================================
   HR STAFF ROLES
   ========================================================= */

.ls-role-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  margin-bottom:18px;
  padding:20px 23px;

  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;

  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #fff;
}

.ls-role-summary > div:first-child > span{
  display:block;
  margin-bottom:5px;

  color:var(--ls-brand);

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-role-summary h2{
  margin:0;

  color:var(--ls-text);

  font-size:1.05rem;
  font-weight:900;
}

.ls-role-summary p{
  margin:5px 0 0;

  color:var(--ls-muted);

  font-size:.65rem;
  line-height:1.5;
}

.ls-role-summary-count{
  min-width:95px;
  padding:12px 18px;

  border-radius:12px;

  background:#f3f8f5;

  text-align:center;
}

.ls-role-summary-count small{
  display:block;

  color:var(--ls-muted);

  font-size:.53rem;
}

.ls-role-summary-count strong{
  display:block;

  margin-top:2px;

  color:var(--ls-brand);

  font-size:1.35rem;
  font-weight:900;
}


/* Role cell */

.ls-role-name-cell{
  display:flex;
  align-items:center;
  gap:9px;
}

.ls-role-name-cell > span{
  width:30px;
  height:30px;

  display:grid;
  place-items:center;

  flex:0 0 30px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.6rem;
  font-weight:900;
}

.ls-role-name-cell strong{
  color:var(--ls-text);

  font-size:.68rem;
  font-weight:900;
}

.ls-role-description{
  display:block;
  max-width:420px;

  color:#59665f;

  font-size:.62rem;
  line-height:1.5;
}


/* Bottom guidance */

.ls-role-guidance{
  display:flex;
  align-items:flex-start;
  gap:13px;

  margin-top:18px;
  padding:17px 19px;

  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;

  background:#f7faf8;
}

.ls-role-guidance-icon{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  flex:0 0 34px;

  border-radius:10px;

  background:linear-gradient(145deg,#073720,#0b6b3a);

  color:#f8d85b;

  font-size:.55rem;
  font-weight:900;
}

.ls-role-guidance strong{
  display:block;

  color:var(--ls-text);

  font-size:.67rem;
  font-weight:900;
}

.ls-role-guidance p{
  margin:4px 0 0;

  color:var(--ls-muted);

  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   ROLE FORM
   ========================================================= */

.ls-role-form-wrap{
  padding:4px 20px 22px;
}

.ls-role-form-wrap .ls-form-group{
  margin-bottom:16px;
}

.ls-role-form-wrap label{
  display:block;

  margin-bottom:6px;

  color:#334139;

  font-size:.61rem;
  font-weight:800;
}

.ls-role-form-wrap input,
.ls-role-form-wrap select,
.ls-role-form-wrap textarea{
  width:100%;

  min-height:42px;

  padding:9px 11px;

  border:1px solid #d9e0dc;
  border-radius:9px;

  background:#fff;

  color:#27332d;

  font-size:.66rem;

  outline:none;
}

.ls-role-form-wrap textarea{
  min-height:110px;
  resize:vertical;
}

.ls-role-form-wrap input[type="checkbox"]{
  width:auto;
  min-height:auto;
}

.ls-role-form-wrap input:focus,
.ls-role-form-wrap select:focus,
.ls-role-form-wrap textarea:focus{
  border-color:rgba(11,107,58,.48);

  box-shadow:
    0 0 0 3px rgba(11,107,58,.07);
}


/* Info */

.ls-role-info-card{
  padding:22px;

  border-radius:17px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-role-info-card > span{
  display:block;

  margin-bottom:7px;

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-role-info-card h3{
  margin:0;

  color:#fff;

  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-role-info-card p{
  margin:8px 0 0;

  color:rgba(255,255,255,.62);

  font-size:.65rem;
  line-height:1.6;
}


/* Examples */

.ls-role-example-list{
  padding:0 18px 16px;
}

.ls-role-example-list > div{
  display:flex;
  align-items:center;
  gap:9px;

  padding:10px 0;

  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-role-example-list > div:last-child{
  border-bottom:0;
}

.ls-role-example-list span{
  width:26px;
  height:26px;

  display:grid;
  place-items:center;

  flex:0 0 26px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.53rem;
  font-weight:900;
}

.ls-role-example-list strong{
  color:#47554d;

  font-size:.63rem;
  font-weight:800;
}


/* Responsive */

@media(max-width:767px){

  .ls-role-summary{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-role-summary-count{
    width:100%;
    text-align:left;
  }

}

/* =========================================================
   HR TASK REGISTER
   ========================================================= */

.ls-task-summary-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
  padding:20px 23px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;
  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #fff;
}

.ls-task-summary-banner > div:first-child > span{
  display:block;
  margin-bottom:5px;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-task-summary-banner h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.05rem;
  font-weight:900;
}

.ls-task-summary-banner p{
  margin:5px 0 0;
  color:var(--ls-muted);
  font-size:.65rem;
  line-height:1.5;
}

.ls-task-summary-count{
  min-width:95px;
  padding:12px 18px;
  border-radius:12px;
  background:#f3f8f5;
  text-align:center;
}

.ls-task-summary-count small{
  display:block;
  color:var(--ls-muted);
  font-size:.53rem;
}

.ls-task-summary-count strong{
  display:block;
  margin-top:2px;
  color:var(--ls-brand);
  font-size:1.35rem;
  font-weight:900;
}


/* Task table */

.ls-task-register-table{
  margin-bottom:0;
}

.ls-task-title-cell{
  display:flex;
  align-items:flex-start;
  gap:9px;
}

.ls-task-title-icon{
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  flex:0 0 29px;
  border-radius:8px;
  background:#edf5f0;
  color:#176b40;
  font-size:.66rem;
  font-weight:900;
}

.ls-task-title-cell strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-task-title-cell small{
  display:block;
  max-width:280px;
  margin-top:3px;
  color:var(--ls-muted);
  font-size:.56rem;
  line-height:1.45;
}


/* Staff link */

.ls-task-staff{
  display:flex;
  align-items:center;
  gap:7px;
  text-decoration:none;
}

.ls-task-staff > span{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  flex:0 0 25px;
  border-radius:7px;
  background:#f2f5f3;
  color:#176b40;
  font-size:.52rem;
  font-weight:900;
}

.ls-task-staff strong{
  color:#435149;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-staff:hover strong{
  color:var(--ls-brand);
}


/* Related parcel/dispute */

.ls-task-related-records{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.ls-task-related-records a,
.ls-task-related-records > span:not(.ls-table-muted){
  color:#5a665f;
  font-size:.58rem;
  text-decoration:none;
}

.ls-task-related-records a:hover{
  color:var(--ls-brand);
}

.ls-task-related-records strong{
  font-weight:900;
}


/* Dates */

.ls-task-date strong{
  color:#48564e;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-created{
  color:var(--ls-muted);
  font-size:.58rem;
}


/* Governance note */

.ls-task-governance-note{
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-top:18px;
  padding:17px 19px;
  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;
  background:#f7faf8;
}

.ls-task-governance-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  flex:0 0 34px;
  border-radius:10px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
  color:#f8d85b;
  font-size:.55rem;
  font-weight:900;
}

.ls-task-governance-note strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-task-governance-note p{
  margin:4px 0 0;
  color:var(--ls-muted);
  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   HR TASK FORM
   ========================================================= */

.ls-task-form-wrap{
  padding:4px 20px 22px;
}

.ls-task-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 18px;
}

.ls-task-form-full{
  grid-column:1 / -1;
}

.ls-task-form-grid label{
  display:block;
  margin-bottom:6px;
  color:#334139;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-form-grid input,
.ls-task-form-grid select,
.ls-task-form-grid textarea{
  width:100%;
  min-height:42px;
  padding:9px 11px;
  border:1px solid #d9e0dc;
  border-radius:9px;
  background:#fff;
  color:#27332d;
  font-size:.66rem;
  outline:none;
  transition:.15s ease;
}

.ls-task-form-grid textarea{
  min-height:105px;
  resize:vertical;
}

.ls-task-form-grid input:focus,
.ls-task-form-grid select:focus,
.ls-task-form-grid textarea:focus{
  border-color:rgba(11,107,58,.48);
  box-shadow:0 0 0 3px rgba(11,107,58,.07);
}


/* Task info panel */

.ls-task-form-info-card{
  padding:22px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-task-form-info-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-task-form-info-card h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-task-form-info-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.65rem;
  line-height:1.6;
}


/* Guidance */

.ls-task-guidance{
  padding:0 18px 16px;
}

.ls-task-guidance > div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-task-guidance > div:last-child{
  border-bottom:0;
}

.ls-task-guidance span{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex:0 0 26px;
  border-radius:8px;
  background:#edf5f0;
  color:#176b40;
  font-size:.53rem;
  font-weight:900;
}

.ls-task-guidance p{
  margin:2px 0 0;
  color:#5a675f;
  font-size:.62rem;
  line-height:1.5;
}


/* Responsive */

@media(max-width:767px){

  .ls-task-summary-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-task-summary-count{
    width:100%;
    text-align:left;
  }

  .ls-task-form-grid{
    grid-template-columns:1fr;
  }

  .ls-task-form-full{
    grid-column:auto;
  }

}

/* =========================================================
   LANDSECURE GH — HOMEPAGE PREMIUM REFINEMENT
   ========================================================= */

/* ---------------------------------------------------------
   Prevent viewport-width sections from creating horizontal
   scrolling on Windows browsers.
   --------------------------------------------------------- */
html,
body{
    max-width:100%;
    overflow-x:hidden;
}

/* ---------------------------------------------------------
   HERO
   More compact, balanced and deliberate.
   --------------------------------------------------------- */
.ls-home-hero{
    position:relative;
    width:100%;
    margin:-24px 0 0;
    padding:68px 0 62px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(248,216,91,.14),
            transparent 30%
        ),
        linear-gradient(
            112deg,
            rgba(5,48,29,.98) 0%,
            rgba(8,79,44,.95) 48%,
            rgba(22,112,61,.89) 100%
        ),
        url("/static/lands/img/hero.jpeg")
        center/cover no-repeat;
}

.ls-home-hero-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.12),
            transparent 55%
        );
}

.ls-home-hero .container{
    position:relative;
    z-index:2;
}

/* Eyebrow */
.ls-home-hero .ls-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:4px;
    color:#ffd447;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.13em;
}

.ls-home-hero .ls-eyebrow::before{
    content:"";
    width:24px;
    height:2px;
    border-radius:999px;
    background:#ffd447;
}

/* Main headline */
.ls-home-title{
    max-width:700px;
    margin:13px 0 18px;
    color:#fff;
    font-size:clamp(2.75rem,4.55vw,4.45rem);
    font-weight:900;
    line-height:1.015;
    letter-spacing:-.045em;
}

.ls-home-title span{
    display:block;
    margin-top:4px;
    color:#f8d85b;
}

/* Supporting copy */
.ls-home-lead{
    max-width:675px;
    margin:0;
    color:rgba(255,255,255,.80);
    font-size:1.04rem;
    line-height:1.72;
}

/* ---------------------------------------------------------
   HERO ACTIONS
   --------------------------------------------------------- */
.ls-home-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

.ls-home-actions .btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.7rem 1.15rem;
    border-radius:10px;
    font-size:.88rem;
    font-weight:800;
}

.ls-home-actions .btn-primary{
    border-color:#f2b705;
    background:#f2b705;
    color:#172117;
}

.ls-home-actions .btn-primary:hover{
    border-color:#ffd447;
    background:#ffd447;
    color:#172117;
    transform:translateY(-1px);
}

.ls-home-actions .btn-light{
    border-color:#fff;
    background:#fff;
    color:#0f172a;
}

.ls-home-actions .btn-outline-light{
    border-color:rgba(255,255,255,.42);
    background:rgba(255,255,255,.03);
    color:#fff;
}

/* ---------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------- */
.ls-home-trust{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:0;
    max-width:690px;
    margin-top:29px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

.ls-home-trust > div{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:3px;
    padding-right:18px;
}

.ls-home-trust > div:not(:first-child){
    padding-left:20px;
}

.ls-home-trust > div:not(:last-child)::after{
    content:"";
    position:absolute;
    top:3px;
    right:0;
    width:1px;
    height:34px;
    background:rgba(255,255,255,.13);
}

.ls-home-trust strong{
    color:#fff;
    font-size:.86rem;
    font-weight:800;
}

.ls-home-trust span{
    color:rgba(255,255,255,.56);
    font-size:.73rem;
    line-height:1.4;
}

/* ---------------------------------------------------------
   HERO GOVERNANCE PANEL
   --------------------------------------------------------- */
.ls-hero-panel{
    position:relative;
    max-width:455px;
    margin-left:auto;
    padding:29px 30px 25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    background:
        linear-gradient(
            145deg,
            rgba(4,42,25,.88),
            rgba(4,54,30,.72)
        );
    box-shadow:
        0 25px 60px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
}

.ls-hero-panel::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    top:-70px;
    right:-55px;
    border-radius:50%;
    background:rgba(248,216,91,.08);
}

.ls-hero-panel-badge{
    position:relative;
    z-index:1;
    display:inline-flex;
    align-items:center;
    padding:6px 10px;
    margin-bottom:17px;
    border:1px solid rgba(248,216,91,.13);
    border-radius:999px;
    background:rgba(248,216,91,.10);
    color:#f8d85b;
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.02em;
}

.ls-hero-panel h2{
    position:relative;
    z-index:1;
    max-width:370px;
    margin:0 0 17px;
    color:#fff;
    font-size:1.42rem;
    font-weight:850;
    line-height:1.32;
    letter-spacing:-.02em;
}

.ls-hero-check{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:11px;
    min-height:43px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.075);
    color:rgba(255,255,255,.78);
    font-size:.86rem;
    line-height:1.45;
}

.ls-hero-check span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:20px;
    height:20px;
    flex:0 0 20px;
    border-radius:50%;
    background:rgba(248,216,91,.10);
    color:#ffd447;
    font-size:.72rem;
    font-weight:900;
}

/* ---------------------------------------------------------
   FIRST CONTENT SECTION
   --------------------------------------------------------- */
.ls-home-section{
    padding:66px 0;
}

.ls-section-heading{
    max-width:760px;
}

.ls-section-heading h2{
    margin-top:10px;
    color:#101c17;
    font-size:clamp(1.9rem,3vw,2.65rem);
    line-height:1.16;
    letter-spacing:-.035em;
}

.ls-section-heading p{
    max-width:700px;
    margin:14px auto 0;
    font-size:1rem;
    line-height:1.72;
}

/* ---------------------------------------------------------
   CAPABILITY CARDS
   --------------------------------------------------------- */
.ls-feature-card{
    position:relative;
    height:100%;
    padding:25px 25px 27px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.075);
    border-radius:17px;
    background:#fff;
    box-shadow:0 8px 28px rgba(15,23,42,.035);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.ls-feature-card:hover{
    transform:translateY(-4px);
    border-color:rgba(11,107,58,.18);
    box-shadow:0 18px 38px rgba(15,23,42,.075);
}

.ls-feature-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-bottom:19px;
    border-radius:10px;
    background:#edf7f1;
    color:#0b6b3a;
    font-size:.72rem;
    font-weight:900;
}

.ls-feature-card h3{
    margin-bottom:10px;
    color:#11231a;
    font-size:1.05rem;
    font-weight:850;
}

.ls-feature-card p{
    margin:0;
    color:#66736d;
    font-size:.88rem;
    line-height:1.68;
}

/* ---------------------------------------------------------
   GOVERNANCE SECTION
   --------------------------------------------------------- */
.ls-governance-section{
    padding:72px 0;
}

.ls-governance-section h2{
    max-width:620px;
    font-size:clamp(2rem,3.2vw,2.8rem);
    line-height:1.15;
}

.ls-governance-lead{
    max-width:620px;
    font-size:.98rem;
    line-height:1.75;
}

.ls-governance-panel{
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.13);
}

/* ---------------------------------------------------------
   AUDIENCE CARDS
   --------------------------------------------------------- */
.ls-audience-card{
    min-height:145px;
    padding:24px;
    border-radius:16px;
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.ls-audience-card:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 34px rgba(15,23,42,.07);
}

.ls-audience-card h3{
    font-size:1rem;
    font-weight:850;
}

.ls-audience-card p{
    font-size:.86rem;
    line-height:1.62;
}

/* ---------------------------------------------------------
   FINAL CTA
   No viewport-width calculation = no horizontal overflow.
   --------------------------------------------------------- */
.ls-home-cta{
    width:100%;
    margin:0 0 -24px;
    padding:58px 0;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 88% 30%,
            rgba(248,216,91,.12),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            #06341f,
            #0b6b3a
        );
}

.ls-home-cta-inner{
    max-width:1140px;
    margin:0 auto;
}

.ls-home-cta h2{
    font-size:clamp(1.9rem,3vw,2.65rem);
}

.ls-home-cta-actions .btn{
    min-width:175px;
    border-radius:10px;
    font-size:.88rem;
    font-weight:800;
}

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width:1199px){

    .ls-home-title{
        font-size:clamp(2.65rem,4.5vw,4rem);
    }

    .ls-hero-panel{
        max-width:430px;
    }
}

@media (max-width:991px){

    .ls-home-hero{
        margin:-24px 0 0;
        padding:58px 0;
    }

    .ls-hero-panel{
        max-width:none;
        margin-left:0;
    }

    .ls-home-section{
        padding:56px 0;
    }

    .ls-governance-section{
        padding:60px 0;
    }
}

@media (max-width:767px){

    .ls-home-trust{
        grid-template-columns:1fr;
        gap:13px;
    }

    .ls-home-trust > div,
    .ls-home-trust > div:not(:first-child){
        padding:0;
    }

    .ls-home-trust > div:not(:last-child)::after{
        display:none;
    }
}

@media (max-width:575px){

    .ls-home-hero{
        padding:48px 0 50px;
    }

    .ls-home-title{
        margin-top:11px;
        font-size:2.28rem;
        line-height:1.04;
    }

    .ls-home-lead{
        font-size:.96rem;
        line-height:1.65;
    }

    .ls-home-actions{
        margin-top:22px;
    }

    .ls-home-actions .btn{
        width:100%;
    }

    .ls-hero-panel{
        padding:23px 21px;
        border-radius:18px;
    }

    .ls-hero-panel h2{
        font-size:1.25rem;
    }

    .ls-home-section{
        padding:48px 0;
    }

    .ls-governance-section{
        padding:52px 0;
    }

    .ls-home-cta{
        padding:50px 0;
    }
}

/* =========================================================
   HOMEPAGE HERO — LAPTOP VIEWPORT FINAL TUNING
   ========================================================= */

@media (min-width: 992px){

    .ls-home-hero{
        padding-top:48px;
        padding-bottom:46px;
    }

    .ls-home-hero .row{
        --bs-gutter-y:1.5rem;
    }

    .ls-home-title{
        max-width:690px;
        margin-top:11px;
        margin-bottom:15px;
        font-size:clamp(2.7rem,4.25vw,4.1rem);
    }

    .ls-home-lead{
        max-width:665px;
        font-size:.98rem;
        line-height:1.62;
    }

    .ls-home-actions{
        margin-top:20px;
    }

    .ls-home-trust{
        margin-top:22px;
        padding-top:16px;
    }

    .ls-hero-panel{
        padding-top:25px;
        padding-bottom:21px;
    }

    .ls-hero-panel-badge{
        margin-bottom:14px;
    }

    .ls-hero-panel h2{
        margin-bottom:12px;
        font-size:1.35rem;
    }

    .ls-hero-check{
        min-height:38px;
        padding:8px 0;
    }
}

/* =========================================================
   LANDSECURE GH — PREMIUM PLATFORM CAPABILITIES
   FINAL DESIGN
   ========================================================= */

.ls-platform-section{
    position:relative;
    padding:72px 0 80px;
    overflow:hidden;
    background:
        radial-gradient(circle at 7% 25%, rgba(11,107,58,.045), transparent 24%),
        radial-gradient(circle at 93% 77%, rgba(11,107,58,.05), transparent 25%),
        #fbfdfc;
}

.ls-platform-section::before,
.ls-platform-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(11,107,58,.05);
    border-radius:46% 54% 60% 40%;
    pointer-events:none;
}

.ls-platform-section::before{
    left:-310px;
    top:90px;
    transform:rotate(-18deg);
}

.ls-platform-section::after{
    right:-320px;
    bottom:30px;
    transform:rotate(22deg);
}

.ls-platform-section > .container{
    position:relative;
    z-index:2;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.ls-platform-heading{
    max-width:850px;
    margin:0 auto 40px;
    text-align:center;
}

.ls-platform-kicker{
    display:inline-flex;
    align-items:center;
    gap:11px;
    color:#c78e00;
    font-size:.73rem;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
}

.ls-platform-kicker::before{
    content:"";
    width:34px;
    height:2px;
    border-radius:999px;
    background:#e6ad0c;
}

.ls-platform-heading h2{
    max-width:820px;
    margin:12px auto 13px;
    color:#08261e;
    font-size:clamp(2.1rem,3.4vw,3rem);
    font-weight:900;
    line-height:1.07;
    letter-spacing:-.045em;
}

.ls-platform-heading h2 span{
    display:block;
}

.ls-platform-heading p{
    max-width:760px;
    margin:0 auto;
    color:#65746d;
    font-size:.96rem;
    line-height:1.68;
}


/* =========================================================
   SHARED CARD ELEMENTS
   ========================================================= */

.ls-platform-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.ls-platform-card h3{
    margin:2px 0 0;
    font-size:1.35rem;
    font-weight:900;
    line-height:1.18;
    letter-spacing:-.025em;
}

.ls-platform-card p{
    margin:15px 0 0;
    font-size:.89rem;
    line-height:1.65;
}

.ls-platform-card-top{
    display:flex;
    align-items:flex-start;
    gap:17px;
}

.ls-platform-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:10px;
    background:#dff3e8;
    color:#08713d;
    font-size:.9rem;
    font-weight:900;
}

.ls-platform-number-dark{
    background:linear-gradient(
        135deg,
        rgba(248,216,91,.34),
        rgba(196,157,16,.24)
    );
    color:#fff;
}

.ls-platform-label{
    display:block;
    margin-bottom:5px;
    color:#5b9d7b;
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.ls-platform-label-gold{
    color:#ffd13b;
}


/* =========================================================
   01 — PARCEL ADMINISTRATION
   ========================================================= */

.ls-platform-card-main{
    min-height:300px;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(390px,.8fr);
    margin-bottom:16px;
    border:1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(circle at 82% 5%, rgba(248,216,91,.08), transparent 23%),
        linear-gradient(118deg, #034326 0%, #005b31 55%, #087640 100%);
    color:#fff;
    box-shadow:0 17px 40px rgba(4,67,38,.15);
}

.ls-platform-main-copy{
    position:relative;
    z-index:3;
    padding:35px 38px;
}

.ls-platform-card-main h3{
    color:#fff;
    font-size:1.72rem;
}

.ls-platform-card-main p{
    max-width:700px;
    color:rgba(255,255,255,.82);
}

.ls-platform-tags{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:22px;
}

.ls-platform-tags > span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:37px;
    padding:7px 13px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    background:rgba(255,255,255,.065);
    color:#fff;
    font-size:.73rem;
    font-weight:800;
}

.ls-platform-tags svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:#ffd23f;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}


/* =========================================================
   PARCEL MAP
   ========================================================= */

.ls-platform-map{
    position:relative;
    min-height:300px;
    overflow:hidden;
    background:
        radial-gradient(circle at 52% 52%, rgba(248,216,91,.10), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,.02), transparent);
}

.ls-platform-map::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.42;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size:32px 32px;
}

.ls-map-parcel{
    position:absolute;
    display:block;
    border:2px dashed rgba(255,255,255,.72);
    border-radius:6px;
    background:rgba(255,255,255,.045);
}

.ls-map-parcel-1{
    width:108px;
    height:92px;
    left:20px;
    top:62px;
    transform:rotate(7deg);
}

.ls-map-parcel-2{
    width:110px;
    height:76px;
    left:124px;
    top:28px;
    transform:rotate(5deg);
}

.ls-map-parcel-3{
    width:94px;
    height:106px;
    right:27px;
    top:63px;
    transform:rotate(4deg);
}

.ls-map-parcel-4{
    width:110px;
    height:84px;
    left:110px;
    bottom:20px;
    transform:rotate(-5deg);
}

.ls-map-parcel-featured{
    width:124px;
    height:91px;
    left:168px;
    top:98px;
    border-color:#ffd23f;
    background:rgba(248,216,91,.30);
    box-shadow:0 0 25px rgba(248,216,91,.06);
    transform:rotate(5deg);
}

.ls-map-pin{
    position:absolute;
    left:50%;
    top:50%;
    width:29px;
    height:36px;
    border-radius:50% 50% 50% 0;
    background:#ffd23f;
    transform:translate(-50%,-50%) rotate(-45deg);
}

.ls-map-pin i{
    position:absolute;
    width:9px;
    height:9px;
    left:10px;
    top:10px;
    border-radius:50%;
    background:#17643c;
}

.ls-map-road{
    position:absolute;
    height:8px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
}

.ls-map-road-one{
    width:310px;
    right:-35px;
    bottom:42px;
    transform:rotate(-28deg);
}

.ls-map-road-two{
    width:260px;
    left:95px;
    bottom:8px;
    transform:rotate(12deg);
}

.ls-map-caption{
    position:absolute;
    top:22px;
    right:23px;
    display:flex;
    flex-direction:column;
    color:rgba(255,255,255,.62);
    font-size:.72rem;
    font-style:italic;
    transform:rotate(-3deg);
}

.ls-map-caption strong{
    color:rgba(255,255,255,.82);
}


/* =========================================================
   02–05 GRID
   ========================================================= */

.ls-platform-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-platform-grid .ls-platform-card{
    min-height:250px;
    display:flex;
    align-items:center;
    padding:29px 31px;
}

.ls-platform-card-content{
    position:relative;
    z-index:3;
    max-width:72%;
}


/* =========================================================
   LIGHT CARDS — 02 & 05
   ========================================================= */

.ls-platform-card-light{
    border:1px solid rgba(11,107,58,.10);
    background:
        radial-gradient(circle at 89% 50%, rgba(248,216,91,.13), transparent 16%),
        radial-gradient(circle at 84% 55%, rgba(11,107,58,.08), transparent 27%),
        linear-gradient(120deg, #ffffff 0%, #edf8f2 100%);
    box-shadow:0 8px 26px rgba(15,23,42,.035);
}

.ls-platform-card-light h3{
    color:#0b241b;
}

.ls-platform-card-light p{
    color:#63736b;
}


/* =========================================================
   DARK CARDS — 03 & 04
   ========================================================= */

.ls-platform-card-dark{
    border:1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(circle at 88% 17%, rgba(248,216,91,.13), transparent 20%),
        linear-gradient(130deg, #034326 0%, #005c32 60%, #08723e 100%);
    box-shadow:0 13px 32px rgba(5,70,40,.13);
}

.ls-platform-card-dark h3{
    color:#fff;
}

.ls-platform-card-dark p{
    color:rgba(255,255,255,.80);
}


/* =========================================================
   CARD ILLUSTRATIONS
   ========================================================= */

.ls-platform-icon-illustration{
    position:absolute;
    right:20px;
    bottom:14px;
    width:142px;
    height:142px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(11,107,58,.055);
}

.ls-platform-icon-illustration::after{
    content:"";
    position:absolute;
    width:52px;
    height:52px;
    right:1px;
    top:0;
    border-radius:50%;
    background:rgba(248,216,91,.30);
}

.ls-platform-icon-illustration svg{
    position:relative;
    z-index:2;
    width:101px;
    height:101px;
    fill:none;
    stroke:#62aa84;
    stroke-width:4;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ls-platform-icon-dark{
    background:rgba(255,255,255,.045);
}

.ls-platform-icon-dark svg{
    stroke:rgba(255,255,255,.82);
}

.ls-platform-icon-dark::after{
    background:rgba(248,216,91,.13);
}


/* =========================================================
   INFORMATION PILLS
   ========================================================= */

.ls-platform-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:17px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(11,107,58,.055);
    color:#173f2b;
    font-size:.71rem;
    font-weight:800;
}

.ls-platform-pill svg{
    width:17px;
    height:17px;
    fill:none;
    stroke:#08723e;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ls-platform-pill-dark{
    border:1px solid rgba(255,255,255,.07);
    background:rgba(255,255,255,.07);
    color:rgba(255,255,255,.87);
}

.ls-platform-pill-dark svg{
    stroke:#ffd23f;
}


/* =========================================================
   06 — VERIFIED LAND DISCOVERY
   DARK PREMIUM FOOTER CARD
   ========================================================= */

.ls-platform-card-public{
    min-height:185px;
    display:grid;
    grid-template-columns:minmax(0,1.35fr) 265px 175px;
    align-items:center;
    gap:32px;
    margin-top:16px;
    padding:30px 34px;
    border:1px solid rgba(255,255,255,.06);
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(248,216,91,.10),
            transparent 22%
        ),
        linear-gradient(
            115deg,
            #033c23 0%,
            #004f2b 55%,
            #076d3b 100%
        );
    box-shadow:0 15px 38px rgba(4,65,37,.14);
}

.ls-platform-card-public::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.06),
            transparent 45%
        );
}

.ls-platform-card-public .ls-platform-number{
    background:linear-gradient(
        135deg,
        rgba(248,216,91,.34),
        rgba(248,216,91,.17)
    );
    color:#fff;
}

.ls-platform-card-public .ls-platform-label{
    color:#ffd23f;
}

.ls-platform-card-public h3{
    color:#fff;
    font-size:1.4rem;
}

.ls-platform-public-copy{
    position:relative;
    z-index:3;
}

.ls-platform-public-copy p{
    max-width:730px;
    margin-top:13px;
    color:rgba(255,255,255,.78);
}


/* CTA inside card 06 */

.ls-platform-public-action{
    position:relative;
    z-index:3;
    padding:17px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:13px;
    background:rgba(255,255,255,.065);
    backdrop-filter:blur(4px);
}

.ls-platform-public-action > span{
    display:block;
    margin-bottom:11px;
    color:rgba(255,255,255,.74);
    font-size:.71rem;
    font-weight:750;
}

.ls-platform-public-action .btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:43px;
    padding:.66rem 1rem;
    border:0;
    border-radius:8px;
    background:#ffd23f;
    color:#172116;
    font-size:.78rem;
    font-weight:900;
    box-shadow:0 8px 18px rgba(0,0,0,.09);
}

.ls-platform-public-action .btn:hover{
    background:#ffdc63;
    color:#172116;
    transform:translateY(-1px);
}


/* =========================================================
   CARD 06 LANDSCAPE MOTIF
   ========================================================= */

.ls-platform-landmark{
    position:relative;
    z-index:2;
    height:125px;
    opacity:.50;
}

.landmark-tree{
    position:absolute;
    bottom:53px;
    width:14px;
    height:34px;
    border-radius:50% 50% 45% 45%;
    background:#62a985;
}

.landmark-tree::after{
    content:"";
    position:absolute;
    width:2px;
    height:24px;
    left:50%;
    top:24px;
    background:#62a985;
}

.landmark-tree-1{
    left:37px;
}

.landmark-tree-2{
    left:84px;
    bottom:65px;
    transform:scale(1.2);
}

.landmark-tree-3{
    right:18px;
}

.landmark-line{
    position:absolute;
    height:40px;
    border-top:2px solid #65aa87;
    border-radius:50%;
    transform:rotate(-8deg);
}

.landmark-line-1{
    width:150px;
    left:3px;
    bottom:8px;
}

.landmark-line-2{
    width:130px;
    left:26px;
    bottom:21px;
}

.landmark-line-3{
    width:105px;
    left:46px;
    bottom:34px;
}


/* =========================================================
   HOVER
   ========================================================= */

.ls-platform-card-main,
.ls-platform-card-public,
.ls-platform-grid .ls-platform-card{
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.ls-platform-grid .ls-platform-card:hover{
    transform:translateY(-3px);
}

.ls-platform-card-light:hover{
    box-shadow:0 17px 38px rgba(15,23,42,.065);
}

.ls-platform-card-dark:hover{
    box-shadow:0 19px 42px rgba(5,70,40,.18);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:991px){

    .ls-platform-section{
        padding:60px 0 66px;
    }

    .ls-platform-card-main{
        grid-template-columns:1fr;
    }

    .ls-platform-map{
        min-height:270px;
    }

    .ls-platform-card-public{
        grid-template-columns:1fr 240px;
    }

    .ls-platform-landmark{
        display:none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px){

    .ls-platform-grid{
        grid-template-columns:1fr;
    }

    .ls-platform-grid .ls-platform-card{
        min-height:295px;
    }

    .ls-platform-card-content{
        max-width:100%;
        padding-right:0;
    }

    .ls-platform-icon-illustration{
        width:105px;
        height:105px;
        right:12px;
        bottom:9px;
        opacity:.42;
    }

    .ls-platform-icon-illustration svg{
        width:74px;
        height:74px;
    }

    .ls-platform-card-public{
        grid-template-columns:1fr;
    }

    .ls-platform-public-action{
        width:100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width:575px){

    .ls-platform-section{
        padding:48px 0 54px;
    }

    .ls-platform-heading{
        margin-bottom:29px;
    }

    .ls-platform-heading h2{
        font-size:2rem;
    }

    .ls-platform-main-copy{
        padding:25px 21px;
    }

    .ls-platform-map{
        min-height:225px;
        transform:scale(.92);
        transform-origin:center;
    }

    .ls-platform-grid .ls-platform-card{
        min-height:280px;
        padding:23px 20px;
    }

    .ls-platform-number{
        width:44px;
        height:44px;
        flex-basis:44px;
    }

    .ls-platform-card h3{
        font-size:1.17rem;
    }

    .ls-platform-card p{
        font-size:.86rem;
    }

    .ls-platform-pill{
        max-width:82%;
    }

    .ls-platform-card-public{
        padding:24px 21px;
    }
}

/* =========================================================
   LANDSECURE GH — PARCEL REGISTER
   ========================================================= */

.ls-parcel-register-header{
    margin-bottom:22px;
}

.ls-parcel-register-header h1{
    margin:5px 0 7px;
    color:#10231a;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-parcel-register-header p{
    max-width:710px;
    margin:0;
    color:#6b7771;
    font-size:.92rem;
    line-height:1.65;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.ls-parcel-register-summary{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:16px;
    margin-bottom:18px;
}

.ls-parcel-summary-main,
.ls-parcel-summary-note{
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
}

.ls-parcel-summary-main{
    padding:22px 24px;
}

.ls-parcel-summary-label{
    display:block;
    margin-bottom:6px;
    color:#8a958f;
    font-size:.65rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-parcel-summary-main strong{
    display:block;
    color:#0b6b3a;
    font-size:2rem;
    line-height:1;
    font-weight:900;
}

.ls-parcel-summary-main > span:last-child{
    display:block;
    margin-top:7px;
    color:#7a8580;
    font-size:.75rem;
}

.ls-parcel-summary-note{
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px 22px;
    background:
        linear-gradient(
            120deg,
            #f7fbf8,
            #edf7f1
        );
}

.ls-parcel-summary-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:43px;
    height:43px;
    flex:0 0 43px;
    border-radius:12px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:1.15rem;
    font-weight:900;
}

.ls-parcel-summary-note strong{
    display:block;
    color:#163426;
    font-size:.86rem;
}

.ls-parcel-summary-note div span{
    display:block;
    margin-top:3px;
    color:#748079;
    font-size:.75rem;
    line-height:1.5;
}


/* =========================================================
   FILTER PANEL
   ========================================================= */

.ls-parcel-filter-panel{
    margin-bottom:18px;
    padding:24px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 26px rgba(15,23,42,.025);
}

.ls-parcel-filter-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
}

.ls-parcel-filter-heading h2{
    margin:5px 0 4px;
    color:#15271e;
    font-size:1.14rem;
    font-weight:900;
}

.ls-parcel-filter-heading p{
    margin:0;
    color:#7a8580;
    font-size:.78rem;
}

.ls-parcel-filter-active{
    display:inline-flex;
    align-items:center;
    min-height:29px;
    padding:5px 10px;
    border-radius:999px;
    background:#fff4ce;
    color:#876400;
    font-size:.66rem;
    font-weight:850;
}

.ls-parcel-filter-form{
    display:grid;
    grid-template-columns:minmax(240px,1.7fr) minmax(150px,.7fr) minmax(180px,.8fr) auto;
    gap:13px;
    align-items:end;
}

.ls-parcel-filter-field{
    min-width:0;
}

.ls-parcel-filter-field label{
    display:block;
    margin-bottom:6px;
    color:#536058;
    font-size:.69rem;
    font-weight:850;
}

.ls-parcel-filter-field input,
.ls-parcel-filter-field select{
    width:100%;
    height:43px;
    padding:0 12px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#27332d;
    font-size:.8rem;
    outline:none;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.ls-parcel-filter-field input:focus,
.ls-parcel-filter-field select:focus{
    border-color:rgba(11,107,58,.5);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-parcel-search-control{
    position:relative;
}

.ls-parcel-search-control > span{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:#8b9690;
    font-size:1rem;
}

.ls-parcel-search-control input{
    padding-left:37px;
}

.ls-parcel-filter-actions{
    display:flex;
    gap:8px;
}

.ls-parcel-filter-actions .btn{
    min-height:43px;
    white-space:nowrap;
    font-size:.76rem;
    font-weight:800;
}


/* =========================================================
   REGISTER CARD
   ========================================================= */

.ls-parcel-register-card{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.075);
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 30px rgba(15,23,42,.03);
}

.ls-parcel-register-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 24px;
    border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-parcel-register-card-header h2{
    margin:5px 0 3px;
    color:#15271e;
    font-size:1.15rem;
    font-weight:900;
}

.ls-parcel-register-card-header p{
    margin:0;
    color:#7a8580;
    font-size:.76rem;
}

.ls-parcel-table-count{
    min-width:65px;
    text-align:right;
    color:#0b6b3a;
    font-size:1.2rem;
    font-weight:900;
}

.ls-parcel-table-count span{
    display:block;
    color:#8a948f;
    font-size:.62rem;
    font-weight:700;
}


/* =========================================================
   TABLE
   ========================================================= */

.ls-parcel-table-wrap{
    width:100%;
    overflow-x:auto;
}

.ls-parcel-table{
    width:100%;
    min-width:1080px;
    border-collapse:collapse;
}

.ls-parcel-table thead{
    background:#f7faf8;
}

.ls-parcel-table th{
    padding:12px 15px;
    border-bottom:1px solid rgba(15,23,42,.07);
    color:#7b8680;
    font-size:.64rem;
    font-weight:900;
    letter-spacing:.055em;
    text-align:left;
    text-transform:uppercase;
    white-space:nowrap;
}

.ls-parcel-table td{
    padding:15px;
    border-bottom:1px solid rgba(15,23,42,.055);
    color:#36443c;
    font-size:.77rem;
    vertical-align:middle;
}

.ls-parcel-table tbody tr{
    transition:background .15s ease;
}

.ls-parcel-table tbody tr:hover{
    background:#fbfdfc;
}

.ls-parcel-table tbody tr:last-child td{
    border-bottom:0;
}


/* =========================================================
   PARCEL IDENTITY
   ========================================================= */

.ls-parcel-identity{
    display:flex;
    align-items:center;
    gap:11px;
}

.ls-parcel-marker{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    flex:0 0 34px;
    border-radius:9px;
    background:#edf7f1;
    color:#0b6b3a;
    font-size:.61rem;
    font-weight:900;
}

.ls-parcel-code{
    display:block;
    color:#0b6b3a;
    font-size:.79rem;
    font-weight:850;
    text-decoration:none;
}

.ls-parcel-code:hover{
    color:#074c2a;
    text-decoration:underline;
}

.ls-parcel-identity div span{
    display:block;
    margin-top:2px;
    color:#9aa39f;
    font-size:.62rem;
}

.ls-parcel-owner{
    color:#35443c;
    font-weight:700;
}

.ls-parcel-community{
    color:#35443c;
    font-weight:650;
}

.ls-parcel-location,
.ls-parcel-date{
    color:#69756f;
}

.ls-parcel-muted{
    color:#a2aaa6;
}


/* =========================================================
   STATUS PILLS
   ========================================================= */

.ls-parcel-status{
    display:inline-flex;
    align-items:center;
    min-height:25px;
    padding:4px 9px;
    border-radius:999px;
    background:#eef1ef;
    color:#626e68;
    font-size:.62rem;
    font-weight:850;
}

.ls-parcel-status-available{
    background:#e4f5eb;
    color:#127041;
}

.ls-parcel-status-allocated{
    background:#e8eef9;
    color:#315b98;
}

.ls-parcel-status-disputed{
    background:#fff1d2;
    color:#946400;
}

.ls-parcel-status-pending{
    background:#f0f1f2;
    color:#677079;
}

.ls-parcel-status-subdivided{
    background:#eee9fb;
    color:#654da0;
}

.ls-parcel-status-archived{
    background:#e9eceb;
    color:#69726e;
}


/* =========================================================
   DISPUTE / CLEAR
   ========================================================= */

.ls-parcel-alert{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#9b6500;
    font-size:.68rem;
    font-weight:850;
}

.ls-parcel-alert > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:19px;
    height:19px;
    border-radius:50%;
    background:#fff0ca;
    color:#a46b00;
    font-size:.65rem;
    font-weight:900;
}

.ls-parcel-clear{
    color:#4c8768;
    font-size:.68rem;
    font-weight:750;
}


/* =========================================================
   ROW ACTIONS
   ========================================================= */

.ls-parcel-row-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
}

.ls-parcel-action,
.ls-parcel-map-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:29px;
    padding:5px 9px;
    border-radius:7px;
    font-size:.64rem;
    font-weight:850;
    text-decoration:none;
}

.ls-parcel-action{
    background:#0b6b3a;
    color:#fff;
}

.ls-parcel-action:hover{
    background:#07582f;
    color:#fff;
}

.ls-parcel-map-action{
    border:1px solid #d9e2dd;
    background:#fff;
    color:#516058;
}

.ls-parcel-map-action:hover{
    border-color:#0b6b3a;
    color:#0b6b3a;
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.ls-parcel-empty{
    padding:54px 20px;
    text-align:center;
}

.ls-parcel-empty-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 13px;
    border-radius:14px;
    background:#edf7f1;
    color:#0b6b3a;
    font-size:1.3rem;
}

.ls-parcel-empty h3{
    margin:0 0 6px;
    color:#25352d;
    font-size:1rem;
    font-weight:900;
}

.ls-parcel-empty p{
    max-width:420px;
    margin:0 auto 16px;
    color:#7a8580;
    font-size:.78rem;
}


/* =========================================================
   GOVERNANCE NOTE
   ========================================================= */

.ls-parcel-register-note{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-top:18px;
    padding:18px 20px;
    border:1px solid rgba(11,107,58,.08);
    border-radius:15px;
    background:
        linear-gradient(
            120deg,
            #f7fbf8,
            #eef7f2
        );
}

.ls-parcel-register-note-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.66rem;
    font-weight:900;
}

.ls-parcel-register-note strong{
    color:#274035;
    font-size:.78rem;
}

.ls-parcel-register-note p{
    max-width:850px;
    margin:4px 0 0;
    color:#76827b;
    font-size:.7rem;
    line-height:1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1199px){

    .ls-parcel-filter-form{
        grid-template-columns:1.5fr .7fr .8fr;
    }

    .ls-parcel-filter-actions{
        grid-column:1 / -1;
    }
}

@media (max-width:991px){

    .ls-parcel-register-summary{
        grid-template-columns:1fr;
    }

    .ls-parcel-filter-form{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ls-parcel-filter-actions{
        grid-column:auto;
    }
}

@media (max-width:767px){

    .ls-parcel-filter-heading,
    .ls-parcel-register-card-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-parcel-filter-form{
        grid-template-columns:1fr;
    }

    .ls-parcel-filter-actions{
        width:100%;
    }

    .ls-parcel-filter-actions .btn{
        flex:1;
    }

    .ls-parcel-table-count{
        text-align:left;
    }
}

@media (max-width:575px){

    .ls-parcel-filter-panel{
        padding:19px;
    }

    .ls-parcel-register-card-header{
        padding:19px;
    }

    .ls-parcel-filter-actions{
        flex-direction:column;
    }

    .ls-parcel-summary-note{
        align-items:flex-start;
    }
}

/* =========================================================
   LANDSECURE GH — PARCEL DETAIL
   ========================================================= */

.ls-parcel-detail-header{
    margin-bottom:20px;
}

.ls-parcel-detail-header h1{
    margin:5px 0 6px;
    color:#11261c;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-parcel-detail-header p{
    margin:0;
    color:#718078;
    font-size:.86rem;
}


/* =========================================================
   DOSSIER HERO
   ========================================================= */

.ls-parcel-dossier{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
    min-height:265px;
    margin-bottom:18px;
    overflow:hidden;
    border-radius:20px;
    background:
        radial-gradient(circle at 82% 10%, rgba(248,216,91,.11), transparent 25%),
        linear-gradient(118deg, #033d23, #075f35 70%, #0b6b3a);
    color:#fff;
    box-shadow:0 16px 40px rgba(4,63,36,.14);
}

.ls-parcel-dossier-main{
    padding:32px 34px;
}

.ls-parcel-dossier-badge-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
}

.ls-parcel-dossier-type{
    display:inline-flex;
    align-items:center;
    min-height:27px;
    padding:5px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#f8d85b;
    font-size:.64rem;
    font-weight:850;
}

.ls-parcel-dossier h2{
    margin:16px 0 9px;
    color:#fff;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-parcel-dossier-main > p{
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.74);
    font-size:.88rem;
    line-height:1.65;
}

.ls-parcel-dossier-meta{
    display:flex;
    flex-wrap:wrap;
    gap:0;
    margin-top:27px;
    padding-top:19px;
    border-top:1px solid rgba(255,255,255,.12);
}

.ls-parcel-dossier-meta > div{
    min-width:150px;
    padding-right:25px;
}

.ls-parcel-dossier-meta > div + div{
    padding-left:25px;
    border-left:1px solid rgba(255,255,255,.10);
}

.ls-parcel-dossier-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.61rem;
    font-weight:750;
    text-transform:uppercase;
    letter-spacing:.055em;
}

.ls-parcel-dossier-meta strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:.78rem;
}


/* =========================================================
   DOSSIER MAP MOTIF
   ========================================================= */

.ls-parcel-dossier-map{
    position:relative;
    overflow:hidden;
    min-height:265px;
}

.ls-dossier-grid{
    position:absolute;
    inset:0;
    opacity:.35;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:27px 27px;
}

.ls-dossier-boundary{
    position:absolute;
    display:block;
    border:2px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.035);
}

.ls-dossier-boundary-one{
    width:125px;
    height:90px;
    left:38px;
    top:42px;
    transform:rotate(8deg);
}

.ls-dossier-boundary-two{
    width:140px;
    height:100px;
    right:25px;
    top:70px;
    border-color:#f8d85b;
    background:rgba(248,216,91,.12);
    transform:rotate(-5deg);
}

.ls-dossier-boundary-three{
    width:120px;
    height:83px;
    left:74px;
    bottom:18px;
    transform:rotate(-6deg);
}

.ls-dossier-point{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#f8d85b;
    box-shadow:0 0 0 4px rgba(248,216,91,.09);
}

.ls-dossier-point-one{
    left:37px;
    top:40px;
}

.ls-dossier-point-two{
    right:24px;
    top:67px;
}

.ls-dossier-point-three{
    left:72px;
    bottom:16px;
}

.ls-dossier-map-label{
    position:absolute;
    right:23px;
    bottom:18px;
    padding:6px 9px;
    border-radius:999px;
    background:rgba(3,40,23,.55);
    color:rgba(255,255,255,.72);
    font-size:.61rem;
    font-weight:750;
}


/* =========================================================
   STATUS BADGES
   ========================================================= */

.ls-parcel-detail-status{
    display:inline-flex;
    align-items:center;
    min-height:27px;
    padding:5px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.11);
    color:#fff;
    font-size:.62rem;
    font-weight:850;
}

.ls-parcel-detail-status-available{
    background:rgba(117,220,157,.15);
    color:#aaf0c4;
}

.ls-parcel-detail-status-allocated{
    background:rgba(134,174,239,.15);
    color:#c9dbff;
}

.ls-parcel-detail-status-disputed{
    background:rgba(248,216,91,.16);
    color:#ffe783;
}

.ls-parcel-detail-status-subdivided{
    background:rgba(193,176,247,.14);
    color:#ded1ff;
}

.ls-parcel-detail-status-pending{
    background:rgba(255,255,255,.10);
    color:#e0e6e2;
}

.ls-parcel-detail-status-archived{
    background:rgba(255,255,255,.08);
    color:#cbd3cf;
}


/* =========================================================
   METRICS
   ========================================================= */

.ls-parcel-detail-metrics{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
    margin-bottom:18px;
}

.ls-parcel-detail-metric{
    padding:20px 22px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:16px;
    background:#fff;
}

.ls-parcel-detail-metric-label{
    display:block;
    margin-bottom:8px;
    color:#8b9690;
    font-size:.62rem;
    font-weight:900;
    letter-spacing:.085em;
}

.ls-parcel-detail-metric strong{
    display:block;
    color:#193327;
    font-size:1rem;
    font-weight:900;
}

.ls-parcel-detail-metric strong small{
    color:#738079;
    font-size:.66rem;
    font-weight:700;
}

.ls-parcel-detail-metric > span:last-child{
    display:block;
    margin-top:5px;
    color:#8a948f;
    font-size:.68rem;
}


/* =========================================================
   ACTION STRIP
   ========================================================= */

.ls-parcel-detail-action-strip{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
    padding:20px 22px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:17px;
    background:
        linear-gradient(120deg,#f7fbf8,#edf7f1);
}

.ls-parcel-detail-action-strip h3{
    margin:5px 0 0;
    color:#244035;
    font-size:.95rem;
    font-weight:900;
}

.ls-parcel-detail-action-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.ls-parcel-detail-action-buttons .btn{
    min-height:38px;
    font-size:.72rem;
    font-weight:800;
}


/* =========================================================
   FINANCE SUMMARY
   ========================================================= */

.ls-parcel-finance-summary{
    display:grid;
    grid-template-columns:minmax(220px,1fr) minmax(360px,1.4fr) auto;
    gap:25px;
    align-items:center;
    margin-bottom:18px;
    padding:20px 22px;
    border-radius:17px;
}

.ls-parcel-finance-summary.is-clear{
    border:1px solid rgba(11,107,58,.11);
    background:#f0f8f3;
}

.ls-parcel-finance-summary.has-arrears{
    border:1px solid rgba(180,126,0,.12);
    background:#fff8e9;
}

.ls-parcel-finance-title h3{
    margin:4px 0 0;
    color:#263d33;
    font-size:.95rem;
    font-weight:900;
}

.ls-parcel-finance-values{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.ls-parcel-finance-values div{
    padding:9px 12px;
    border-radius:10px;
    background:rgba(255,255,255,.75);
}

.ls-parcel-finance-values span{
    display:block;
    color:#7d8982;
    font-size:.62rem;
}

.ls-parcel-finance-values strong{
    display:block;
    margin-top:3px;
    color:#243b30;
    font-size:.85rem;
}

.ls-finance-state-badge{
    display:inline-flex;
    align-items:center;
    min-height:29px;
    padding:5px 10px;
    border-radius:999px;
    font-size:.66rem;
    font-weight:900;
    text-transform:uppercase;
}

.ls-finance-state-badge.clear{
    background:#dff3e8;
    color:#08713d;
}

.ls-finance-state-badge.arrears{
    background:#ffe9b0;
    color:#8b6100;
}


/* =========================================================
   DETAIL PANELS
   ========================================================= */

.ls-parcel-detail-panel{
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.075);
    border-radius:18px;
    background:#fff;
    box-shadow:0 7px 26px rgba(15,23,42,.025);
}

.ls-parcel-detail-panel-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    padding:21px 23px;
    border-bottom:1px solid rgba(15,23,42,.065);
}

.ls-parcel-detail-panel-header h2{
    margin:4px 0 3px;
    color:#1a3026;
    font-size:1.08rem;
    font-weight:900;
}

.ls-parcel-detail-panel-header p{
    margin:0;
    color:#7b8780;
    font-size:.73rem;
}


/* =========================================================
   STATUS FORM
   ========================================================= */

.ls-parcel-status-form{
    display:flex;
    align-items:end;
    gap:11px;
    padding:22px 23px;
}

.ls-parcel-status-form > div{
    flex:1;
}

.ls-parcel-status-form label{
    display:block;
    margin-bottom:6px;
    color:#59675f;
    font-size:.69rem;
    font-weight:850;
}

.ls-parcel-status-form select{
    width:100%;
    height:42px;
    padding:0 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#34433b;
    font-size:.78rem;
}

.ls-parcel-status-form .btn{
    min-height:42px;
    font-size:.72rem;
    font-weight:800;
}


/* =========================================================
   DETAIL TABLE
   ========================================================= */

.ls-parcel-detail-table-wrap{
    width:100%;
    overflow-x:auto;
}

.ls-parcel-detail-table{
    width:100%;
    min-width:660px;
    border-collapse:collapse;
}

.ls-parcel-detail-table th{
    padding:11px 15px;
    border-bottom:1px solid rgba(15,23,42,.07);
    background:#f7faf8;
    color:#7b8780;
    font-size:.62rem;
    font-weight:900;
    letter-spacing:.055em;
    text-transform:uppercase;
    text-align:left;
}

.ls-parcel-detail-table td{
    padding:14px 15px;
    border-bottom:1px solid rgba(15,23,42,.055);
    color:#536058;
    font-size:.73rem;
}

.ls-parcel-detail-table tbody tr:last-child td{
    border-bottom:0;
}


/* =========================================================
   INVOICE / DISPUTE STATES
   ========================================================= */

.ls-invoice-status,
.ls-dispute-status{
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:4px 8px;
    border-radius:999px;
    font-size:.6rem;
    font-weight:850;
}

.ls-invoice-status.paid{
    background:#e4f5eb;
    color:#11703f;
}

.ls-invoice-status.partial{
    background:#fff1ce;
    color:#8a6200;
}

.ls-invoice-status.unpaid{
    background:#fee8e8;
    color:#a14040;
}

.ls-dispute-status.open{
    background:#fff0c9;
    color:#916200;
}

.ls-dispute-status.resolved{
    background:#e5f4eb;
    color:#176c41;
}


/* =========================================================
   EMPTY
   ========================================================= */

.ls-parcel-detail-empty{
    padding:42px 20px;
    text-align:center;
}

.ls-parcel-detail-empty > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin:0 auto 11px;
    border-radius:12px;
    background:#edf7f1;
    color:#0b6b3a;
    font-weight:900;
}

.ls-parcel-detail-empty h3{
    margin:0 0 5px;
    color:#293b32;
    font-size:.9rem;
    font-weight:900;
}

.ls-parcel-detail-empty p{
    margin:0;
    color:#808b85;
    font-size:.72rem;
}


/* =========================================================
   SIDE CARDS
   ========================================================= */

.ls-parcel-detail-side-stack{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.ls-parcel-side-card{
    padding:22px;
    border:1px solid rgba(15,23,42,.075);
    border-radius:17px;
    background:#fff;
}

.ls-parcel-side-card h3{
    margin:6px 0 13px;
    color:#1f392d;
    font-size:1rem;
    font-weight:900;
}

.ls-parcel-side-card > p{
    margin:0;
    color:#75817b;
    font-size:.74rem;
    line-height:1.62;
}

.ls-parcel-side-list{
    display:flex;
    flex-direction:column;
}

.ls-parcel-side-list > div{
    padding:10px 0;
    border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-parcel-side-list > div:last-child{
    border-bottom:0;
}

.ls-parcel-side-list span{
    display:block;
    color:#8a958f;
    font-size:.62rem;
}

.ls-parcel-side-list strong{
    display:block;
    margin-top:3px;
    color:#34473d;
    font-size:.74rem;
}

.ls-parcel-side-card-green{
    border-color:rgba(255,255,255,.05);
    background:
        linear-gradient(135deg,#043f24,#0b6b3a);
}

.ls-parcel-side-card-green .ls-dashboard-kicker{
    color:#f8d85b;
}

.ls-parcel-side-card-green h3{
    color:#fff;
}

.ls-parcel-side-card-green p{
    color:rgba(255,255,255,.72);
}

.ls-parcel-side-card-green .btn{
    margin-top:17px;
    font-size:.73rem;
    font-weight:800;
}


/* =========================================================
   SMALL LINKS
   ========================================================= */

.ls-parcel-detail-action-link{
    color:#0b6b3a;
    font-size:.68rem;
    font-weight:850;
    text-decoration:none;
}

.ls-parcel-detail-action-link:hover{
    text-decoration:underline;
}

.ls-parcel-detail-muted{
    color:#98a19d;
    font-size:.66rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:991px){

    .ls-parcel-dossier{
        grid-template-columns:1fr;
    }

    .ls-parcel-dossier-map{
        min-height:220px;
    }

    .ls-parcel-detail-metrics{
        grid-template-columns:1fr;
    }

    .ls-parcel-finance-summary{
        grid-template-columns:1fr;
    }

    .ls-parcel-detail-action-strip{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media (max-width:767px){

    .ls-parcel-finance-values{
        grid-template-columns:1fr;
    }

    .ls-parcel-status-form{
        align-items:stretch;
        flex-direction:column;
    }

    .ls-parcel-detail-panel-header{
        flex-direction:column;
    }

    .ls-parcel-dossier-meta{
        gap:13px;
    }

    .ls-parcel-dossier-meta > div,
    .ls-parcel-dossier-meta > div + div{
        min-width:45%;
        padding:0;
        border:0;
    }

}

@media (max-width:575px){

    .ls-parcel-dossier-main{
        padding:25px 21px;
    }

    .ls-parcel-dossier h2{
        font-size:1.6rem;
    }

    .ls-parcel-detail-action-buttons{
        width:100%;
        flex-direction:column;
    }

    .ls-parcel-detail-action-buttons .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — CREATE PARCEL
   ========================================================= */

.ls-create-parcel-header{
    margin-bottom:20px;
}

.ls-create-parcel-header h1{
    margin:5px 0 7px;
    color:#13291f;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-create-parcel-header p{
    max-width:720px;
    margin:0;
    color:#748078;
    font-size:.87rem;
}


/* =========================================================
   BANNER
   ========================================================= */

.ls-create-parcel-banner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:18px;
    padding:24px 27px;
    overflow:hidden;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(248,216,91,.13),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #033e24,
            #0a6739
        );
    color:#fff;
}

.ls-create-parcel-banner > div:first-child > span{
    color:#f8d85b;
    font-size:.65rem;
    font-weight:900;
    letter-spacing:.09em;
}

.ls-create-parcel-banner h2{
    margin:7px 0 6px;
    color:#fff;
    font-size:1.3rem;
    font-weight:900;
}

.ls-create-parcel-banner p{
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.68);
    font-size:.76rem;
    line-height:1.55;
}

.ls-create-parcel-steps{
    flex:0 0 auto;
    display:flex;
    gap:6px;
}

.ls-create-parcel-steps span{
    padding:6px 9px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:999px;
    color:rgba(255,255,255,.62);
    font-size:.59rem;
    font-weight:800;
}

.ls-create-parcel-steps span.active{
    border-color:rgba(248,216,91,.22);
    background:rgba(248,216,91,.13);
    color:#f8d85b;
}


/* =========================================================
   SECTION
   ========================================================= */

.ls-create-section{
    margin-bottom:18px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.075);
    border-radius:18px;
    background:#fff;
    box-shadow:0 7px 25px rgba(15,23,42,.025);
}

.ls-create-section-heading{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:22px 24px;
    border-bottom:1px solid rgba(15,23,42,.065);
    background:
        linear-gradient(
            120deg,
            #fbfdfc,
            #f4f9f6
        );
}

.ls-create-section-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:39px;
    height:39px;
    flex:0 0 39px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.67rem;
    font-weight:900;
}

.ls-create-section-heading h2{
    margin:4px 0 3px;
    color:#1b3529;
    font-size:1.08rem;
    font-weight:900;
}

.ls-create-section-heading p{
    max-width:720px;
    margin:0;
    color:#7b8780;
    font-size:.72rem;
    line-height:1.55;
}

.ls-create-section-body{
    padding:24px;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.ls-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-form-field{
    min-width:0;
}

.ls-form-field-full{
    grid-column:1 / -1;
}

.ls-form-field-medium{
    max-width:520px;
    margin-top:18px;
}

.ls-form-field label{
    display:block;
    margin-bottom:6px;
    color:#4b5c53;
    font-size:.7rem;
    font-weight:850;
}

.ls-required{
    color:#b34d4d;
}

.ls-optional{
    margin-left:5px;
    padding:3px 6px;
    border-radius:999px;
    background:#eef2ef;
    color:#758078;
    font-size:.56rem;
    font-weight:800;
}

.ls-form-field input:not([type="checkbox"]),
.ls-form-field select,
.ls-form-field textarea,
.ls-create-section-body input:not([type="checkbox"]),
.ls-create-section-body select,
.ls-create-section-body textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#2e3d35;
    font-size:.78rem;
    outline:none;
    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.ls-form-field textarea,
.ls-create-section-body textarea{
    min-height:105px;
    resize:vertical;
}

.ls-form-field input:focus,
.ls-form-field select:focus,
.ls-form-field textarea:focus,
.ls-create-section-body input:focus,
.ls-create-section-body select:focus,
.ls-create-section-body textarea:focus{
    border-color:rgba(11,107,58,.5);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-form-field small{
    display:block;
    margin-top:5px;
    color:#8a958f;
    font-size:.63rem;
    line-height:1.5;
}

.ls-form-error{
    margin-top:5px;
    color:#a64242;
    font-size:.65rem;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.ls-community-lock{
    margin-bottom:18px;
    padding:15px 17px;
    border:1px solid rgba(11,107,58,.08);
    border-radius:12px;
    background:#f2f8f4;
}

.ls-community-lock span{
    display:block;
    color:#7b8780;
    font-size:.61rem;
}

.ls-community-lock strong{
    display:block;
    margin:3px 0;
    color:#0b6b3a;
    font-size:.85rem;
}

.ls-community-lock small{
    color:#849089;
    font-size:.63rem;
}


/* =========================================================
   NEW LOCATION
   ========================================================= */

.ls-new-location-panel{
    margin-top:18px;
    padding:18px;
    border:1px dashed rgba(11,107,58,.18);
    border-radius:13px;
    background:#f8fbf9;
}

.ls-new-location-heading{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:16px;
}

.ls-new-location-heading > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:#e5f3eb;
    color:#0b6b3a;
    font-size:1rem;
    font-weight:900;
}

.ls-new-location-heading strong{
    display:block;
    color:#264034;
    font-size:.75rem;
}

.ls-new-location-heading small{
    display:block;
    margin-top:2px;
    color:#8a958f;
    font-size:.62rem;
}


/* =========================================================
   SUPERUSER
   ========================================================= */

.ls-superuser-option{
    display:flex;
    align-items:flex-start;
    gap:11px;
    margin-top:18px;
    padding:14px 16px;
    border:1px solid #ead59a;
    border-radius:12px;
    background:#fff8e8;
}

.ls-superuser-option strong{
    display:block;
    color:#614d17;
    font-size:.72rem;
}

.ls-superuser-option span{
    display:inline-block;
    margin-top:3px;
    color:#9b7310;
    font-size:.57rem;
    font-weight:800;
}

.ls-superuser-option small{
    display:block;
    margin-top:5px;
    color:#837559;
    font-size:.62rem;
}


/* =========================================================
   PARTY CARDS
   ========================================================= */

.ls-party-stack{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.ls-party-card{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:14px;
    background:#fbfcfb;
}

.ls-party-card-optional{
    background:#fdfefd;
}

.ls-party-card-header{
    padding:14px 16px;
    border-bottom:1px solid rgba(15,23,42,.055);
    background:#f5f9f6;
}

.ls-party-card-header > div{
    display:flex;
    align-items:center;
    gap:10px;
}

.ls-party-index{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    border-radius:8px;
    background:#e3f2e9;
    color:#0b6b3a;
    font-size:.58rem;
    font-weight:900;
}

.ls-party-card-header strong{
    display:block;
    color:#2a4135;
    font-size:.72rem;
}

.ls-party-card-header div div span{
    display:block;
    margin-top:2px;
    color:#8c9791;
    font-size:.59rem;
}

.ls-party-card > .ls-form-grid{
    padding:18px;
}

.ls-party-remove{
    display:flex;
    align-items:center;
    gap:7px;
    padding:10px 18px 14px;
    color:#9a5555;
    font-size:.66rem;
}


/* =========================================================
   SURVEY
   ========================================================= */

.ls-create-section-survey{
    border-color:rgba(11,107,58,.11);
}

.ls-survey-format-note{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:25px;
    margin-bottom:17px;
    padding:16px 18px;
    border-radius:12px;
    background:
        linear-gradient(
            120deg,
            #eef7f2,
            #f7fbf8
        );
}

.ls-survey-format-note strong{
    display:block;
    color:#284538;
    font-size:.75rem;
}

.ls-survey-format-note span{
    display:block;
    margin-top:4px;
    color:#748079;
    font-size:.65rem;
}

.ls-survey-format-note code{
    flex:0 0 auto;
    padding:9px 12px;
    border-radius:8px;
    background:#18352a;
    color:#dff5e8;
    font-size:.61rem;
    line-height:1.6;
}


/* =========================================================
   FINAL SUBMIT
   ========================================================= */

.ls-create-parcel-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding:22px 24px;
    border-radius:17px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.12),
            transparent 25%
        ),
        linear-gradient(
            120deg,
            #034024,
            #0b6b3a
        );
}

.ls-create-parcel-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.61rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-create-parcel-submit strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:.9rem;
}

.ls-create-parcel-submit small{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.61);
    font-size:.62rem;
}

.ls-create-parcel-submit > div:last-child{
    display:flex;
    gap:8px;
}

.ls-create-parcel-submit .btn{
    min-width:110px;
    min-height:40px;
    font-size:.72rem;
    font-weight:850;
}

.ls-create-parcel-submit .btn-primary{
    border-color:#f2b705;
    background:#f2b705;
    color:#142019;
}


/* =========================================================
   DEBUG
   ========================================================= */

.ls-create-debug{
    margin-top:15px;
    padding:14px 16px;
    border:1px solid #eadada;
    border-radius:12px;
    background:#fffafa;
}

.ls-create-debug summary{
    cursor:pointer;
    color:#8a4343;
    font-size:.7rem;
    font-weight:850;
}

.ls-create-debug pre{
    margin:13px 0 0;
    white-space:pre-wrap;
    color:#684c4c;
    font-size:.64rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:991px){

    .ls-create-parcel-banner{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-create-parcel-steps{
        flex-wrap:wrap;
    }

}

@media (max-width:767px){

    .ls-form-grid{
        grid-template-columns:1fr;
    }

    .ls-form-field-full{
        grid-column:auto;
    }

    .ls-survey-format-note{
        flex-direction:column;
    }

    .ls-survey-format-note code{
        width:100%;
    }

    .ls-create-parcel-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-create-parcel-submit > div:last-child{
        width:100%;
    }

    .ls-create-parcel-submit .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-create-section-heading,
    .ls-create-section-body{
        padding:18px;
    }

    .ls-create-parcel-banner{
        padding:20px;
    }

    .ls-create-parcel-submit > div:last-child{
        flex-direction:column;
    }

    .ls-create-parcel-submit .btn{
        width:100%;
    }

}

/* ==========================================================
   LANDSECURE GH — PARCEL SUBDIVISION
   ========================================================== */

.ls-split-page-header{
    margin-bottom:20px;
}

.ls-split-page-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-split-page-header p{
    margin:0;
    color:#75817a;
    font-size:.83rem;
}

.ls-split-page-header p strong{
    color:#0b6b3a;
}


/* HERO */

.ls-split-hero{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:14px;
    padding:25px 28px;
    overflow:hidden;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.17),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #043c23 0%,
            #086039 60%,
            #0b6b3a 100%
        );
    color:#fff;
    box-shadow:0 12px 30px rgba(4,60,35,.09);
}

.ls-split-eyebrow{
    display:block;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-split-hero-main h2{
    margin:6px 0 2px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
    letter-spacing:-.025em;
}

.ls-split-hero-main p{
    margin:0;
    color:rgba(255,255,255,.66);
    font-size:.7rem;
}

.ls-split-hero-status{
    min-width:285px;
    padding:14px 17px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:13px;
    background:rgba(0,0,0,.11);
}

.ls-split-hero-status span{
    display:block;
    color:#f8d85b;
    font-size:.56rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-split-hero-status strong{
    display:block;
    margin:5px 0 3px;
    color:#fff;
    font-size:.78rem;
}

.ls-split-hero-status small{
    color:rgba(255,255,255,.58);
    font-size:.6rem;
}


/* WORKFLOW */

.ls-split-workflow{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    margin-bottom:14px;
}

.ls-split-workflow > div{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:57px;
    padding:10px 12px;
    border:1px solid rgba(15,23,42,.065);
    border-radius:11px;
    background:#fff;
}

.ls-split-workflow > div > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    flex:0 0 29px;
    border-radius:8px;
    background:#edf2ef;
    color:#77827c;
    font-size:.56rem;
    font-weight:900;
}

.ls-split-workflow > div.active{
    border-color:rgba(11,107,58,.12);
    background:#f2f8f4;
}

.ls-split-workflow > div.active > span{
    background:#0b6b3a;
    color:#f8d85b;
}

.ls-split-workflow strong{
    display:block;
    color:#31443a;
    font-size:.66rem;
}

.ls-split-workflow small{
    display:block;
    margin-top:1px;
    color:#929c96;
    font-size:.55rem;
}


/* WARNING */

.ls-split-warning{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    padding:14px 17px;
    border:1px solid #ead79a;
    border-radius:12px;
    background:#fff9e9;
}

.ls-split-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    flex:0 0 28px;
    border-radius:50%;
    background:#d9a918;
    color:#fff;
    font-size:.72rem;
    font-weight:900;
}

.ls-split-warning strong{
    display:block;
    color:#654e0c;
    font-size:.7rem;
}

.ls-split-warning p{
    margin:3px 0 0;
    color:#7d6c3b;
    font-size:.64rem;
    line-height:1.55;
}


/* SECTIONS */

.ls-split-section{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-split-section-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-split-section-no{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-split-section-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-split-section-head p{
    max-width:700px;
    margin:0;
    color:#7d8982;
    font-size:.67rem;
    line-height:1.5;
}

.ls-split-section-body{
    padding:22px;
}


/* FORM */

.ls-split-form-grid{
    display:grid;
    grid-template-columns:minmax(180px,.65fr) minmax(0,1.35fr);
    gap:17px;
}

.ls-split-field-full{
    grid-column:1/-1;
}

.ls-split-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-split-field input:not([type="checkbox"]),
.ls-split-field select,
.ls-split-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-split-field textarea{
    min-height:105px;
    resize:vertical;
}

.ls-split-field input:focus,
.ls-split-field select:focus,
.ls-split-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-split-field small{
    display:block;
    margin-top:5px;
    color:#8b9690;
    font-size:.6rem;
}

.ls-split-error{
    margin-top:5px;
    color:#ae4141;
    font-size:.62rem;
}


/* GEOMETRY */

.ls-split-geometry-section{
    border-color:rgba(11,107,58,.12);
}

.ls-split-coordinate-guide{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-bottom:18px;
    padding:16px 18px;
    border-radius:12px;
    background:#eef7f2;
}

.ls-split-coordinate-guide span{
    display:block;
    color:#0b6b3a;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-split-coordinate-guide strong{
    display:block;
    margin:4px 0;
    color:#284639;
    font-size:.75rem;
}

.ls-split-coordinate-guide p{
    max-width:600px;
    margin:0;
    color:#718078;
    font-size:.61rem;
    line-height:1.5;
}

.ls-split-coordinate-guide code{
    flex:0 0 auto;
    padding:10px 13px;
    border-radius:9px;
    background:#16372a;
    color:#dff5e8;
    font-size:.58rem;
    line-height:1.65;
}

.ls-split-geometry-block{
    padding:17px;
    border:1px solid rgba(15,23,42,.065);
    border-radius:12px;
    background:#fcfdfc;
}

.ls-split-geometry-block + .ls-split-geometry-block{
    margin-top:15px;
}

.ls-split-geometry-label{
    display:flex;
    align-items:center;
    gap:9px;
    margin-bottom:12px;
}

.ls-split-geometry-label strong{
    display:block;
    color:#354b40;
    font-size:.7rem;
}

.ls-split-geometry-label small{
    display:block;
    margin-top:1px;
    color:#909b95;
    font-size:.58rem;
}

.ls-split-geometry-dot{
    width:10px;
    height:10px;
    flex:0 0 10px;
    border-radius:50%;
}

.ls-split-geometry-dot.sold{
    background:#d7a714;
}

.ls-split-geometry-dot.remainder{
    background:#0b6b3a;
}

.ls-split-auto-compute{
    display:flex;
    align-items:flex-start;
    gap:11px;
    margin:15px 0;
    padding:14px 16px;
    border:1px solid rgba(11,107,58,.1);
    border-radius:11px;
    background:#f3f9f5;
}

.ls-split-auto-check input{
    width:17px;
    height:17px;
    accent-color:#0b6b3a;
}

.ls-split-auto-compute strong{
    display:block;
    color:#28513d;
    font-size:.69rem;
}

.ls-split-auto-compute p{
    margin:3px 0;
    color:#74817a;
    font-size:.61rem;
}

.ls-split-auto-compute small{
    color:#87928c;
    font-size:.58rem;
}


/* ASSIGNEES */

.ls-split-assignee-heading{
    align-items:center;
}

.ls-split-assignee-heading > div{
    flex:1;
}

.ls-add-assignee{
    margin-left:auto;
    flex:0 0 auto;
    font-size:.67rem;
    font-weight:800;
}

.ls-assignee-notice{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:15px;
    padding:11px 14px;
    border-radius:9px;
    background:#f7f9f8;
}

.ls-assignee-notice strong{
    color:#42564b;
    font-size:.65rem;
}

.ls-assignee-notice span{
    color:#87928c;
    font-size:.59rem;
}

.ls-assignee-stack{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.ls-assignee-card{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:13px;
    background:#fbfcfb;
}

.ls-assignee-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:13px 15px;
    border-bottom:1px solid rgba(15,23,42,.055);
    background:#f4f8f5;
}

.ls-assignee-head > div{
    display:flex;
    align-items:center;
    gap:9px;
}

.ls-assignee-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.6rem;
    font-weight:900;
}

.ls-assignee-head strong{
    display:block;
    color:#31483c;
    font-size:.69rem;
}

.ls-assignee-head small{
    display:block;
    margin-top:1px;
    color:#929c96;
    font-size:.56rem;
}

.ls-assignee-delete{
    display:flex;
    align-items:center;
    gap:6px;
    margin:0;
    color:#a64a4a;
    cursor:pointer;
    font-size:.61rem;
    font-weight:800;
}

.ls-assignee-delete input{
    accent-color:#a64a4a;
}

.ls-assignee-body{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    padding:16px;
}

.ls-assignee-field label{
    display:block;
    margin-bottom:5px;
    color:#506057;
    font-size:.65rem;
    font-weight:800;
}

.ls-assignee-field label span{
    color:#a74848;
}

.ls-assignee-field input:not([type="checkbox"]),
.ls-assignee-field select,
.ls-assignee-field textarea{
    width:100%;
    min-height:40px;
    padding:8px 10px;
    border:1px solid #dce3df;
    border-radius:8px;
    background:#fff;
    color:#34433b;
    font-size:.72rem;
}

.ls-assignee-field small{
    display:block;
    margin-top:4px;
    color:#909b95;
    font-size:.57rem;
}


/* dynamically added as_p fields */

.ls-assignee-body-generated{
    display:block;
}

.ls-assignee-body-generated p{
    margin:0 0 12px;
}

.ls-assignee-body-generated p:last-child{
    margin-bottom:0;
}

.ls-assignee-body-generated label{
    display:block;
    margin-bottom:5px;
    color:#506057;
    font-size:.65rem;
    font-weight:800;
}

.ls-assignee-body-generated input:not([type="checkbox"]),
.ls-assignee-body-generated select,
.ls-assignee-body-generated textarea{
    width:100%;
    min-height:40px;
    padding:8px 10px;
    border:1px solid #dce3df;
    border-radius:8px;
    background:#fff;
    font-size:.72rem;
}


/* FINAL SUBMIT */

.ls-split-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:22px 24px;
    border-radius:17px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
}

.ls-split-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.56rem;
    font-weight:900;
    letter-spacing:.09em;
}

.ls-split-submit strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:.88rem;
}

.ls-split-submit p{
    max-width:630px;
    margin:3px 0 0;
    color:rgba(255,255,255,.62);
    font-size:.6rem;
    line-height:1.5;
}

.ls-split-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-split-submit-actions .btn{
    min-height:40px;
    padding:9px 16px;
    font-size:.68rem;
    font-weight:850;
}

.ls-split-complete-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#18251e;
}

.ls-split-complete-btn:hover{
    border-color:#dbaa17;
    background:#dbaa17;
    color:#18251e;
}


/* RESPONSIVE */

@media (max-width:991px){

    .ls-split-hero{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-split-hero-status{
        width:100%;
        min-width:0;
    }

    .ls-split-workflow{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:767px){

    .ls-split-form-grid,
    .ls-assignee-body{
        grid-template-columns:1fr;
    }

    .ls-split-field-full{
        grid-column:auto;
    }

    .ls-split-coordinate-guide{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-split-coordinate-guide code{
        width:100%;
    }

    .ls-split-assignee-heading{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .ls-add-assignee{
        width:100%;
        margin-left:52px;
    }

    .ls-assignee-notice{
        align-items:flex-start;
        flex-direction:column;
        gap:3px;
    }

    .ls-split-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-split-submit-actions{
        width:100%;
    }

    .ls-split-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-split-workflow{
        grid-template-columns:1fr;
    }

    .ls-split-section-head,
    .ls-split-section-body{
        padding:17px;
    }

    .ls-split-hero{
        padding:20px;
    }

    .ls-split-submit{
        padding:19px;
    }

    .ls-split-submit-actions{
        flex-direction:column;
    }

    .ls-split-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — TRANSFER OWNERSHIP
   ========================================================= */

.ls-transfer-header{
    margin-bottom:20px;
}

.ls-transfer-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-transfer-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-transfer-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   HERO
   ========================================================= */

.ls-transfer-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(270px,.6fr);
    gap:0;
    margin-bottom:16px;
    overflow:hidden;
    border-radius:18px;
    background:
        radial-gradient(circle at 90% 0,rgba(248,216,91,.15),transparent 26%),
        linear-gradient(120deg,#043c23,#0b6b3a);
    color:#fff;
}

.ls-transfer-hero-main{
    padding:27px 30px;
}

.ls-transfer-kicker{
    display:block;
    color:#f8d85b;
    font-size:.61rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-transfer-hero h2{
    margin:7px 0 20px;
    color:#fff;
    font-size:1.65rem;
    font-weight:900;
    letter-spacing:-.03em;
}

.ls-transfer-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:0;
}

.ls-transfer-hero-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-transfer-hero-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.11);
}

.ls-transfer-hero-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.58rem;
    text-transform:uppercase;
}

.ls-transfer-hero-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-transfer-state.available{
    color:#9df0bc;
}

.ls-transfer-state.allocated{
    color:#c8dcff;
}

.ls-transfer-state.disputed{
    color:#ffe27a;
}

.ls-transfer-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-transfer-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-transfer-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:.59rem;
}


/* =========================================================
   DISPUTE WARNING
   ========================================================= */

.ls-transfer-warning{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    padding:14px 17px;
    border:1px solid #e8d28a;
    border-radius:12px;
    background:#fff8e3;
}

.ls-transfer-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    flex:0 0 29px;
    border-radius:50%;
    background:#d4a514;
    color:#fff;
    font-weight:900;
}

.ls-transfer-warning strong{
    display:block;
    color:#6b5209;
    font-size:.7rem;
}

.ls-transfer-warning p{
    margin:3px 0 0;
    color:#7d6e40;
    font-size:.62rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.ls-transfer-section{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-transfer-section-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-transfer-section-no{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-transfer-section-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-transfer-section-head p{
    max-width:730px;
    margin:0;
    color:#7d8982;
    font-size:.67rem;
    line-height:1.5;
}

.ls-transfer-section-body{
    padding:22px;
}


/* =========================================================
   FIELDS
   ========================================================= */

.ls-transfer-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px;
}

.ls-transfer-field-full{
    grid-column:1/-1;
}

.ls-transfer-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.67rem;
    font-weight:850;
}

.ls-transfer-field label span{
    color:#aa4545;
}

.ls-transfer-field input:not([type="checkbox"]),
.ls-transfer-field select,
.ls-transfer-field textarea,
.ls-transfer-facilitator-type select{
    width:100%;
    min-height:41px;
    padding:8px 10px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.74rem;
    outline:none;
}

.ls-transfer-field textarea{
    min-height:95px;
    resize:vertical;
}

.ls-transfer-field input:focus,
.ls-transfer-field select:focus,
.ls-transfer-field textarea:focus,
.ls-transfer-facilitator-type select:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-transfer-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   PARTY CARDS
   ========================================================= */

.ls-transfer-party-stack{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ls-transfer-party-card{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:13px;
    background:#fbfcfb;
}

.ls-transfer-party-optional{
    background:#fdfefd;
}

.ls-transfer-party-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:13px 15px;
    border-bottom:1px solid rgba(15,23,42,.055);
    background:#f4f8f5;
}

.ls-transfer-party-head > div{
    display:flex;
    align-items:center;
    gap:9px;
}

.ls-transfer-party-number{
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    border-radius:8px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.58rem;
    font-weight:900;
}

.ls-transfer-party-head strong{
    display:block;
    color:#31483c;
    font-size:.69rem;
}

.ls-transfer-party-head small{
    display:block;
    margin-top:1px;
    color:#929c96;
    font-size:.56rem;
}

.ls-transfer-party-card > .ls-transfer-grid{
    padding:16px;
}

.ls-transfer-remove{
    display:flex;
    align-items:center;
    gap:6px;
    color:#a34a4a;
    font-size:.6rem;
    font-weight:800;
}

.ls-transfer-remove input{
    accent-color:#a34a4a;
}


/* =========================================================
   FACILITATOR TYPE
   ========================================================= */

.ls-transfer-facilitator-type{
    margin-bottom:15px;
    padding:15px;
    border:1px dashed rgba(11,107,58,.16);
    border-radius:11px;
    background:#f8fbf9;
}

.ls-transfer-facilitator-type label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.67rem;
    font-weight:850;
}


/* =========================================================
   GOVERNANCE
   ========================================================= */

.ls-transfer-governance{
    border-color:rgba(11,107,58,.11);
}

.ls-transfer-governance .ls-transfer-section-head{
    background:linear-gradient(120deg,#f2f8f4,#fbfdfc);
}


/* =========================================================
   FINAL SUBMIT
   ========================================================= */

.ls-transfer-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    padding:22px 24px;
    border-radius:17px;
    background:
        radial-gradient(circle at 91% 0,rgba(248,216,91,.14),transparent 27%),
        linear-gradient(120deg,#043c23,#0b6b3a);
}

.ls-transfer-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.56rem;
    font-weight:900;
    letter-spacing:.09em;
}

.ls-transfer-submit strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:.87rem;
}

.ls-transfer-submit p{
    max-width:640px;
    margin:3px 0 0;
    color:rgba(255,255,255,.6);
    font-size:.6rem;
    line-height:1.5;
}

.ls-transfer-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-transfer-submit-actions .btn{
    min-height:40px;
    padding:9px 16px;
    font-size:.68rem;
    font-weight:850;
}

.ls-transfer-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#18251e;
}

.ls-transfer-submit-btn:hover{
    border-color:#dbaa17;
    background:#dbaa17;
    color:#18251e;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:991px){

    .ls-transfer-hero{
        grid-template-columns:1fr;
    }

    .ls-transfer-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

}

@media (max-width:767px){

    .ls-transfer-grid{
        grid-template-columns:1fr;
    }

    .ls-transfer-field-full{
        grid-column:auto;
    }

    .ls-transfer-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-transfer-submit-actions{
        width:100%;
    }

    .ls-transfer-submit-actions .btn{
        flex:1;
    }

    .ls-transfer-hero-meta > div,
    .ls-transfer-hero-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

}

@media (max-width:575px){

    .ls-transfer-section-head,
    .ls-transfer-section-body{
        padding:17px;
    }

    .ls-transfer-hero-main,
    .ls-transfer-hero-side{
        padding:20px;
    }

    .ls-transfer-submit{
        padding:19px;
    }

    .ls-transfer-submit-actions{
        flex-direction:column;
    }

    .ls-transfer-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — UPDATE PARCEL STATUS
   ========================================================= */

.ls-status-update-header{
    margin-bottom:20px;
}

.ls-status-update-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-status-update-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-status-update-header p strong{
    color:#0b6b3a;
}


/* SUMMARY */

.ls-status-update-summary{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(260px,.6fr);
    margin-bottom:15px;
    overflow:hidden;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 91% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-status-update-main{
    padding:27px 30px;
}

.ls-status-update-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-status-update-main h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
}

.ls-status-update-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-status-update-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-status-update-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-status-update-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.57rem;
    font-weight:700;
    text-transform:uppercase;
}

.ls-status-update-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-status-update-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:24px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.08);
}

.ls-status-update-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-status-update-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-status-update-side small{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:.59rem;
}


/* CURRENT STATUS */

.ls-status-current.available{
    color:#9df0bc;
}

.ls-status-current.allocated{
    color:#c8dcff;
}

.ls-status-current.disputed{
    color:#ffe17a;
}

.ls-status-current.pending{
    color:#e3e8e5;
}

.ls-status-current.subdivided{
    color:#dbd0ff;
}

.ls-status-current.archived{
    color:#c9d0cc;
}


/* NOTICE */

.ls-status-update-notice{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    padding:14px 17px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:12px;
    background:#f3f8f5;
}

.ls-status-update-notice-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    flex:0 0 29px;
    border-radius:50%;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.7rem;
    font-weight:900;
}

.ls-status-update-notice strong{
    display:block;
    color:#315043;
    font-size:.69rem;
}

.ls-status-update-notice p{
    max-width:820px;
    margin:3px 0 0;
    color:#748079;
    font-size:.62rem;
    line-height:1.55;
}


/* MAIN CARD */

.ls-status-update-card{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-status-update-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-status-update-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-status-update-card-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-status-update-card-head p{
    margin:0;
    color:#7d8982;
    font-size:.67rem;
}


/* FORM */

.ls-status-update-form{
    padding:22px;
}

.ls-status-update-field{
    max-width:720px;
    margin-bottom:17px;
}

.ls-status-update-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-status-update-field select,
.ls-status-update-field input,
.ls-status-update-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-status-update-field textarea{
    min-height:105px;
    resize:vertical;
}

.ls-status-update-field select:focus,
.ls-status-update-field input:focus,
.ls-status-update-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-status-update-field small{
    display:block;
    margin-top:5px;
    color:#8a958f;
    font-size:.6rem;
}

.ls-status-update-error{
    margin-top:5px;
    color:#ab4646;
    font-size:.61rem;
}

.ls-status-update-actions{
    display:flex;
    gap:8px;
    margin-top:22px;
}

.ls-status-update-actions .btn{
    min-width:110px;
    min-height:40px;
    font-size:.69rem;
    font-weight:850;
}


/* STATUS GUIDE */

.ls-status-guide{
    padding:22px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
}

.ls-status-guide-head{
    margin-bottom:17px;
}

.ls-status-guide-head h2{
    margin:4px 0 3px;
    color:#1e392c;
    font-size:1rem;
    font-weight:900;
}

.ls-status-guide-head p{
    margin:0;
    color:#7f8a84;
    font-size:.65rem;
}

.ls-status-guide-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.ls-status-guide-grid > div{
    position:relative;
    min-height:91px;
    padding:14px 14px 14px 32px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:11px;
    background:#fafcfb;
}

.ls-status-guide-dot{
    position:absolute;
    left:14px;
    top:17px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#98a29d;
}

.ls-status-guide-dot.available{
    background:#2ca766;
}

.ls-status-guide-dot.allocated{
    background:#5c7fc4;
}

.ls-status-guide-dot.disputed{
    background:#d9a51b;
}

.ls-status-guide-dot.pending{
    background:#919a96;
}

.ls-status-guide-dot.subdivided{
    background:#8067bc;
}

.ls-status-guide-dot.archived{
    background:#6f7974;
}

.ls-status-guide-grid strong{
    display:block;
    color:#354b40;
    font-size:.67rem;
}

.ls-status-guide-grid small{
    display:block;
    margin-top:4px;
    color:#86918b;
    font-size:.57rem;
    line-height:1.45;
}


/* RESPONSIVE */

@media (max-width:991px){

    .ls-status-update-summary{
        grid-template-columns:1fr;
    }

    .ls-status-update-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

    .ls-status-guide-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media (max-width:767px){

    .ls-status-update-meta > div,
    .ls-status-update-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-status-update-actions{
        flex-direction:column;
    }

    .ls-status-update-actions .btn{
        width:100%;
    }

}

@media (max-width:575px){

    .ls-status-update-main,
    .ls-status-update-side{
        padding:20px;
    }

    .ls-status-update-card-head,
    .ls-status-update-form{
        padding:17px;
    }

    .ls-status-guide-grid{
        grid-template-columns:1fr;
    }

} 

/* =========================================================
   LANDSECURE GH — FLOATING WHATSAPP BUTTON
   ========================================================= */

.ls-whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    border:2px solid rgba(255,255,255,.9);
    border-radius:50%;

    background:#25d366;
    color:#fff;

    font-size:27px;
    text-decoration:none;

    z-index:1090;

    box-shadow:
        0 9px 28px rgba(0,0,0,.22);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;

    animation:
        lsWhatsAppPulse 2.7s infinite;
}

.ls-whatsapp-float i{
    line-height:1;
}

.ls-whatsapp-float:hover{
    background:#1ebe5d;
    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 13px 34px rgba(0,0,0,.28);
}

.ls-whatsapp-float:focus{
    color:#fff;

    outline:3px solid rgba(37,211,102,.24);
    outline-offset:4px;
}

.ls-whatsapp-float:active{
    transform:scale(.95);
}


/* Pulse */

@keyframes lsWhatsAppPulse{

    0%{
        box-shadow:
            0 9px 28px rgba(0,0,0,.22),
            0 0 0 0 rgba(37,211,102,.42);
    }

    70%{
        box-shadow:
            0 9px 28px rgba(0,0,0,.22),
            0 0 0 16px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
            0 9px 28px rgba(0,0,0,.22),
            0 0 0 0 rgba(37,211,102,0);
    }

}


/* Respect reduced-motion preference */

@media (prefers-reduced-motion: reduce){

    .ls-whatsapp-float{
        animation:none;
        transition:none;
    }

}


/* Mobile */

@media (max-width:575px){

    .ls-whatsapp-float{
        right:16px;
        bottom:18px;

        width:53px;
        height:53px;

        font-size:25px;
    }

}

/* =========================================================
   LANDSECURE GH — OWNERSHIP TRANSFER REQUEST
   ========================================================= */

.ls-transfer-request-header{
    margin-bottom:20px;
}

.ls-transfer-request-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-transfer-request-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-transfer-request-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   PARCEL HERO
========================================================= */

.ls-transfer-request-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:15px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-transfer-request-hero-main{
    padding:27px 30px;
}

.ls-transfer-request-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-transfer-request-hero h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
    letter-spacing:-.025em;
}

.ls-transfer-request-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-transfer-request-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-transfer-request-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-transfer-request-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.57rem;
    font-weight:700;
    text-transform:uppercase;
}

.ls-transfer-request-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-transfer-request-status.available{
    color:#9df0bc;
}

.ls-transfer-request-status.allocated{
    color:#c8dcff;
}

.ls-transfer-request-status.disputed{
    color:#ffe17a;
}

.ls-transfer-request-status.pending{
    color:#e5eae7;
}

.ls-transfer-request-status.subdivided{
    color:#d9cdff;
}

.ls-transfer-request-status.archived{
    color:#c6cfca;
}

.ls-transfer-request-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-transfer-request-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-request-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-transfer-request-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:.59rem;
}


/* =========================================================
   NOTICE
========================================================= */

.ls-transfer-request-notice{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:15px;
    padding:15px 17px;
    border:1px solid #ead594;
    border-radius:12px;
    background:#fff9e8;
}

.ls-transfer-request-notice-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:50%;
    background:#d4a514;
    color:#fff;
    font-size:.75rem;
    font-weight:900;
}

.ls-transfer-request-notice span{
    display:block;
    margin-bottom:2px;
    color:#a47d09;
    font-size:.54rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-request-notice strong{
    display:block;
    color:#654f0c;
    font-size:.7rem;
}

.ls-transfer-request-notice p{
    max-width:850px;
    margin:3px 0 0;
    color:#807041;
    font-size:.62rem;
    line-height:1.55;
}


/* =========================================================
   WORKFLOW
========================================================= */

.ls-transfer-request-workflow{
    display:flex;
    align-items:center;
    margin-bottom:16px;
    padding:14px 18px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:13px;
    background:#fff;
}

.ls-transfer-request-workflow-item{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}

.ls-transfer-request-workflow-item > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:#edf1ef;
    color:#738078;
    font-size:.56rem;
    font-weight:900;
}

.ls-transfer-request-workflow-item.active > span{
    background:#0b6b3a;
    color:#f8d85b;
}

.ls-transfer-request-workflow-item strong{
    display:block;
    color:#405249;
    font-size:.61rem;
}

.ls-transfer-request-workflow-item small{
    display:block;
    margin-top:1px;
    color:#919b95;
    font-size:.52rem;
}

.ls-transfer-request-workflow-line{
    height:1px;
    flex:1;
    min-width:18px;
    margin:0 12px;
    background:#e2e7e4;
}


/* =========================================================
   FORM CARD
========================================================= */

.ls-transfer-request-card{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-transfer-request-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-transfer-request-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-transfer-request-card-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-transfer-request-card-head p{
    margin:0;
    color:#7d8982;
    font-size:.67rem;
}

.ls-transfer-request-form{
    padding:22px;
}


/* =========================================================
   FIELDS
========================================================= */

.ls-transfer-request-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-transfer-request-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-transfer-request-field label span{
    color:#b34a4a;
}

.ls-transfer-request-field input:not([type="checkbox"]):not([type="radio"]),
.ls-transfer-request-field select,
.ls-transfer-request-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-transfer-request-field textarea{
    min-height:100px;
    resize:vertical;
}

.ls-transfer-request-field input:focus,
.ls-transfer-request-field select:focus,
.ls-transfer-request-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-transfer-request-field small{
    display:block;
    margin-top:5px;
    color:#89958e;
    font-size:.59rem;
    line-height:1.45;
}

.ls-transfer-request-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   SUBMIT PANEL
========================================================= */

.ls-transfer-request-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:23px;
    padding:20px 22px;
    border-radius:14px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.14),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
}

.ls-transfer-request-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-request-submit strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.82rem;
}

.ls-transfer-request-submit p{
    max-width:580px;
    margin:3px 0 0;
    color:rgba(255,255,255,.58);
    font-size:.59rem;
    line-height:1.5;
}

.ls-transfer-request-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-transfer-request-submit-actions .btn{
    min-height:40px;
    padding:9px 15px;
    font-size:.67rem;
    font-weight:850;
}

.ls-transfer-request-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#17251e;
}

.ls-transfer-request-submit-btn:hover{
    border-color:#dcae19;
    background:#dcae19;
    color:#17251e;
}


/* =========================================================
   GOVERNANCE
========================================================= */

.ls-transfer-request-governance{
    display:flex;
    align-items:flex-start;
    gap:13px;
    padding:17px 19px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:13px;
    background:#f6faf7;
}

.ls-transfer-request-governance-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex:0 0 32px;
    border-radius:9px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.72rem;
    font-weight:900;
}

.ls-transfer-request-governance h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.75rem;
    font-weight:900;
}

.ls-transfer-request-governance p{
    max-width:820px;
    margin:0;
    color:#7b8780;
    font-size:.6rem;
    line-height:1.55;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ls-transfer-request-hero{
        grid-template-columns:1fr;
    }

    .ls-transfer-request-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

    .ls-transfer-request-workflow{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
    }

    .ls-transfer-request-workflow-line{
        width:1px;
        height:14px;
        min-width:1px;
        flex:none;
        margin:0 0 0 14px;
    }

}

@media (max-width:767px){

    .ls-transfer-request-fields{
        grid-template-columns:1fr;
    }

    .ls-transfer-request-meta > div,
    .ls-transfer-request-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-transfer-request-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-transfer-request-submit-actions{
        width:100%;
    }

    .ls-transfer-request-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-transfer-request-hero-main,
    .ls-transfer-request-hero-side{
        padding:20px;
    }

    .ls-transfer-request-card-head,
    .ls-transfer-request-form{
        padding:17px;
    }

    .ls-transfer-request-submit{
        padding:18px;
    }

    .ls-transfer-request-submit-actions{
        flex-direction:column;
    }

    .ls-transfer-request-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — REVIEW TRANSFER REQUEST
   ========================================================= */

.ls-transfer-review-header{
    margin-bottom:20px;
}

.ls-transfer-review-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-transfer-review-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-transfer-review-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   HERO
   ========================================================= */

.ls-transfer-review-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:16px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-transfer-review-hero-main{
    padding:27px 30px;
}

.ls-transfer-review-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-transfer-review-hero h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
}

.ls-transfer-review-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-transfer-review-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-transfer-review-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-transfer-review-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.57rem;
    text-transform:uppercase;
}

.ls-transfer-review-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-transfer-review-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-transfer-review-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-review-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-transfer-review-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:.59rem;
}


/* =========================================================
   REQUEST SUMMARY
   ========================================================= */

.ls-transfer-review-summary{
    margin-bottom:16px;
    padding:22px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
}

.ls-transfer-review-summary-head{
    margin-bottom:18px;
}

.ls-transfer-review-summary-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-transfer-review-summary-head p{
    margin:0;
    color:#7d8982;
    font-size:.66rem;
}


/* OWNER FLOW */

.ls-transfer-review-parties{
    display:grid;
    grid-template-columns:minmax(0,1fr) 42px minmax(0,1fr);
    align-items:stretch;
    margin-bottom:16px;
}

.ls-transfer-review-party{
    padding:17px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:12px;
    background:#fafcfb;
}

.ls-transfer-review-party.incoming{
    border-color:rgba(11,107,58,.13);
    background:#f3f8f5;
}

.ls-transfer-review-party-label{
    display:block;
    margin-bottom:5px;
    color:#8a958f;
    font-size:.53rem;
    font-weight:900;
    letter-spacing:.07em;
}

.ls-transfer-review-party strong{
    display:block;
    color:#344a3e;
    font-size:.78rem;
}

.ls-transfer-review-party small{
    display:block;
    margin-top:3px;
    color:#89958e;
    font-size:.58rem;
}

.ls-transfer-review-party.incoming strong{
    color:#0b6b3a;
}

.ls-transfer-review-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b6b3a;
    font-size:1.2rem;
    font-weight:900;
}


/* SUMMARY DATA */

.ls-transfer-review-details-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

.ls-transfer-review-details-grid > div{
    padding:13px 14px;
    border-radius:10px;
    background:#f8faf9;
}

.ls-transfer-review-detail-wide{
    grid-column:1/-1;
}

.ls-transfer-review-details-grid span{
    display:block;
    color:#8b958f;
    font-size:.55rem;
    text-transform:uppercase;
}

.ls-transfer-review-details-grid strong{
    display:block;
    margin-top:4px;
    color:#405249;
    font-size:.66rem;
    font-weight:750;
}


/* =========================================================
   CUSTOMARY WARNING
   ========================================================= */

.ls-transfer-review-warning{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:15px;
    padding:15px 17px;
    border:1px solid #e6cd7d;
    border-radius:12px;
    background:#fff8df;
}

.ls-transfer-review-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:50%;
    background:#d4a514;
    color:#fff;
    font-weight:900;
}

.ls-transfer-review-warning span{
    display:block;
    color:#9b7407;
    font-size:.53rem;
    font-weight:900;
    letter-spacing:.07em;
}

.ls-transfer-review-warning strong{
    display:block;
    margin-top:2px;
    color:#644d09;
    font-size:.69rem;
}

.ls-transfer-review-warning p{
    margin:3px 0 0;
    color:#7b6b3c;
    font-size:.61rem;
    line-height:1.5;
}


/* =========================================================
   EVIDENCE PANEL
   ========================================================= */

.ls-transfer-review-evidence{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:15px;
    padding:17px 19px;
    border:1px solid rgba(11,107,58,.10);
    border-radius:13px;
    background:#f5f9f6;
}

.ls-transfer-review-evidence h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.78rem;
    font-weight:900;
}

.ls-transfer-review-evidence p{
    margin:0;
    color:#78847d;
    font-size:.61rem;
}

.ls-transfer-review-evidence small{
    display:block;
    margin-top:4px;
    color:#8b958f;
    font-size:.56rem;
}


/* =========================================================
   DECISION WARNING
   ========================================================= */

.ls-transfer-review-decision-warning{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    padding:14px 17px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:12px;
    background:#f3f8f5;
}

.ls-transfer-review-decision-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    flex:0 0 29px;
    border-radius:50%;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.66rem;
    font-weight:900;
}

.ls-transfer-review-decision-warning strong{
    display:block;
    color:#315043;
    font-size:.69rem;
}

.ls-transfer-review-decision-warning p{
    margin:3px 0 0;
    color:#748079;
    font-size:.61rem;
    line-height:1.5;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.ls-transfer-review-card{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-transfer-review-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-transfer-review-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-transfer-review-card-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-transfer-review-card-head p{
    margin:0;
    color:#7d8982;
    font-size:.67rem;
}

.ls-transfer-review-form{
    padding:22px;
}


/* =========================================================
   FIELDS
   ========================================================= */

.ls-transfer-review-field{
    max-width:760px;
    margin-bottom:17px;
}

.ls-transfer-review-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-transfer-review-field input,
.ls-transfer-review-field select,
.ls-transfer-review-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-transfer-review-field textarea{
    min-height:105px;
    resize:vertical;
}

.ls-transfer-review-field input:focus,
.ls-transfer-review-field select:focus,
.ls-transfer-review-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-transfer-review-field small{
    display:block;
    margin-top:5px;
    color:#89958e;
    font-size:.59rem;
}

.ls-transfer-review-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   SANCTION SECTION
   ========================================================= */

.ls-transfer-review-sanction{
    margin:22px 0;
    padding:18px;
    border:1px dashed rgba(11,107,58,.18);
    border-radius:13px;
    background:#f8fbf9;
}

.ls-transfer-review-sanction-head{
    margin-bottom:15px;
}

.ls-transfer-review-sanction-head h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.82rem;
    font-weight:900;
}

.ls-transfer-review-sanction-head p{
    margin:0;
    color:#7d8982;
    font-size:.61rem;
}

.ls-transfer-review-sanction-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px;
}

.ls-transfer-review-sanction-grid .ls-transfer-review-field{
    max-width:none;
    margin-bottom:0;
}


/* =========================================================
   FINAL SUBMIT
   ========================================================= */

.ls-transfer-review-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:22px;
    padding:20px 22px;
    border-radius:14px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.14),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
}

.ls-transfer-review-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-transfer-review-submit strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.82rem;
}

.ls-transfer-review-submit p{
    max-width:590px;
    margin:3px 0 0;
    color:rgba(255,255,255,.58);
    font-size:.59rem;
    line-height:1.5;
}

.ls-transfer-review-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-transfer-review-submit-actions .btn{
    min-height:40px;
    padding:9px 15px;
    font-size:.67rem;
    font-weight:850;
}

.ls-transfer-review-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#17251e;
}

.ls-transfer-review-submit-btn:hover{
    border-color:#dcae19;
    background:#dcae19;
    color:#17251e;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:991px){

    .ls-transfer-review-hero{
        grid-template-columns:1fr;
    }

    .ls-transfer-review-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

}

@media (max-width:767px){

    .ls-transfer-review-meta > div,
    .ls-transfer-review-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-transfer-review-parties{
        grid-template-columns:1fr;
        gap:8px;
    }

    .ls-transfer-review-arrow{
        transform:rotate(90deg);
    }

    .ls-transfer-review-details-grid,
    .ls-transfer-review-sanction-grid{
        grid-template-columns:1fr;
    }

    .ls-transfer-review-detail-wide{
        grid-column:auto;
    }

    .ls-transfer-review-evidence,
    .ls-transfer-review-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-transfer-review-submit-actions{
        width:100%;
    }

    .ls-transfer-review-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-transfer-review-hero-main,
    .ls-transfer-review-hero-side{
        padding:20px;
    }

    .ls-transfer-review-summary,
    .ls-transfer-review-card-head,
    .ls-transfer-review-form{
        padding:17px;
    }

    .ls-transfer-review-submit{
        padding:18px;
    }

    .ls-transfer-review-submit-actions{
        flex-direction:column;
    }

    .ls-transfer-review-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — GIS MAP
========================================================= */

.ls-gis-page-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:25px;
    margin-bottom:16px;
}

.ls-gis-page-header h1{
    margin:5px 0 5px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-gis-page-header p{
    max-width:720px;
    margin:0;
    color:#75817a;
    font-size:.78rem;
    line-height:1.55;
}

.ls-gis-header-actions{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}

.ls-gis-header-actions .btn{
    min-height:38px;
    padding:8px 13px;
    font-size:.66rem;
    font-weight:800;
}


/* =========================================================
   STATUS STRIP
========================================================= */

.ls-gis-status-strip{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1px;
    margin-bottom:14px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:13px;
    background:#e8ece9;
}

.ls-gis-status-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    background:#fff;
}

.ls-gis-status-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:8px;
    background:#e5f0e9;
    color:#0b6b3a;
    font-size:.75rem;
}

.ls-gis-status-item strong{
    display:block;
    color:#3a5045;
    font-size:.62rem;
}

.ls-gis-status-item small{
    display:block;
    margin-top:1px;
    color:#909b95;
    font-size:.51rem;
}


/* =========================================================
   WORKSPACE
========================================================= */

.ls-gis-workspace{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.08);
    border-radius:17px;
    background:#fff;
    box-shadow:0 10px 32px rgba(15,23,42,.05);
}

.ls-gis-map-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    min-height:54px;
    padding:10px 16px;
    border-bottom:1px solid rgba(15,23,42,.07);
    background:
        linear-gradient(
            120deg,
            #fbfdfc,
            #f4f9f6
        );
}

.ls-gis-map-toolbar-kicker{
    display:block;
    color:#0b6b3a;
    font-size:.5rem;
    font-weight:900;
    letter-spacing:.09em;
}

.ls-gis-map-toolbar strong{
    display:block;
    margin-top:2px;
    color:#354b40;
    font-size:.7rem;
}

.ls-gis-map-toolbar-info{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.ls-gis-map-toolbar-info span{
    color:#7e8a83;
    font-size:.55rem;
    font-weight:650;
}

.ls-gis-map-toolbar-info i{
    margin-right:4px;
    color:#0b6b3a;
}


/* =========================================================
   MAP
========================================================= */

.ls-gis-map-wrap{
    position:relative;
    width:100%;
    height:calc(100vh - 270px);
    min-height:590px;
    overflow:hidden;
}

#map{
    width:100%;
    height:100%;
    background:#e9efeb;
}


/* =========================================================
   LEAFLET CONTROL RESTYLE
========================================================= */

.ls-gis-control,
.ls-gis-button-group{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.12) !important;
    border-radius:9px !important;
    background:#fff;
    box-shadow:
        0 8px 23px rgba(15,23,42,.10) !important;
}

.ls-gis-button-group{
    display:flex;
}

.ls-gis-map-button{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:5px;
    width:auto !important;
    min-width:0 !important;
    height:35px !important;
    padding:0 10px !important;
    border:0 !important;
    border-right:1px solid #e6eae7 !important;
    background:#fff !important;
    color:#344a3e !important;
    font-size:.57rem !important;
    font-weight:850 !important;
    line-height:35px !important;
    text-decoration:none !important;
}

.ls-gis-map-button:last-child{
    border-right:0 !important;
}

.ls-gis-map-button:hover{
    background:#f2f7f4 !important;
    color:#0b6b3a !important;
}

.ls-gis-map-button.active{
    background:#8c2525 !important;
    color:#fff !important;
}

.ls-gis-control-label{
    padding:7px 10px 4px;
    color:#405249;
    font-size:.55rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.ls-gis-community-select{
    min-width:205px;
    margin:0 9px 9px;
    padding:7px 9px;
    border:1px solid #d9e0dc;
    border-radius:7px;
    background:#fafcfb;
    color:#35483e;
    font-size:.64rem;
    outline:none;
}


/* =========================================================
   LEAFLET ZOOM
========================================================= */

.leaflet-control-zoom{
    overflow:hidden;
    border:1px solid rgba(15,23,42,.12) !important;
    border-radius:9px !important;
    box-shadow:
        0 8px 23px rgba(15,23,42,.10) !important;
}

.leaflet-control-zoom a{
    color:#354a3f !important;
}


/* =========================================================
   LEGEND
========================================================= */

.ls-gis-legend{
    min-width:145px;
    padding:11px 12px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:10px;
    background:rgba(255,255,255,.96);
    box-shadow:0 9px 25px rgba(15,23,42,.11);
    backdrop-filter:blur(8px);
}

.ls-gis-legend-head{
    margin-bottom:7px;
    padding-bottom:6px;
    border-bottom:1px solid #edf0ee;
    color:#364b40;
    font-size:.62rem;
    font-weight:900;
}

.ls-gis-legend-row{
    display:flex;
    align-items:center;
    gap:7px;
    margin:5px 0;
    color:#66736c;
    font-size:.56rem;
}

.ls-gis-swatch{
    display:block;
    width:10px;
    height:10px;
    flex:0 0 10px;
    border-radius:3px;
}

.ls-gis-swatch.available{
    background:#16a34a;
}

.ls-gis-swatch.allocated{
    background:#dc2626;
}

.ls-gis-swatch.disputed{
    background:#f59e0b;
}

.ls-gis-swatch.pending{
    background:#7c3aed;
}

.ls-gis-swatch.subdivided{
    background:#64748b;
}

.ls-gis-swatch.archived{
    background:#9ca3af;
}


/* =========================================================
   AREA LABEL
========================================================= */

.ls-gis-area-label{
    padding:4px 7px !important;
    border:1px solid rgba(15,23,42,.15) !important;
    border-radius:7px !important;
    background:rgba(255,255,255,.94) !important;
    color:#243a2e !important;
    font-size:.54rem !important;
    font-weight:850 !important;
    box-shadow:0 5px 13px rgba(15,23,42,.09);
}


/* =========================================================
   POPUPS
========================================================= */

.leaflet-popup-content-wrapper{
    overflow:hidden;
    padding:0;
    border-radius:13px !important;
    box-shadow:
        0 15px 38px rgba(15,23,42,.17) !important;
}

.leaflet-popup-content{
    width:285px !important;
    margin:0 !important;
}

.ls-gis-popup{
    padding:16px;
    color:#405249;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        sans-serif;
}

.ls-gis-popup-title{
    margin-bottom:10px;
    color:#163a28;
    font-size:.82rem;
    font-weight:900;
}

.ls-gis-popup-badge{
    display:inline-block;
    margin:0 4px 8px 0;
    padding:4px 7px;
    border-radius:5px;
    font-size:.48rem;
    font-weight:900;
}

.ls-gis-popup-badge.warning{
    background:#fff2c6;
    color:#8b6500;
}

.ls-gis-popup-badge.pending{
    background:#ede5ff;
    color:#6845a9;
}

.ls-gis-popup-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
}

.ls-gis-popup-grid > div,
.ls-gis-popup-section > div{
    padding:7px;
    border-radius:7px;
    background:#f7f9f8;
}

.ls-gis-popup-grid .wide{
    grid-column:1/-1;
}

.ls-gis-popup-grid span,
.ls-gis-popup-section span{
    display:block;
    color:#929c96;
    font-size:.47rem;
    text-transform:uppercase;
}

.ls-gis-popup-grid strong,
.ls-gis-popup-section strong{
    display:block;
    margin-top:2px;
    color:#42554b;
    font-size:.56rem;
}

.ls-gis-popup-section{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px;
    margin-top:8px;
    padding-top:8px;
    border-top:1px solid #edf0ee;
}

.ls-gis-popup-note{
    grid-column:1/-1;
    margin:6px 0 0;
    padding:7px;
    border-radius:6px;
    background:#fff9e7;
    color:#73663c;
    font-size:.52rem;
}

.ls-gis-popup-actions{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-top:10px;
}

.ls-gis-popup-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    padding:7px 9px;
    border:0;
    border-radius:7px;
    text-align:center;
    text-decoration:none;
    font-size:.56rem;
    font-weight:850;
    cursor:pointer;
}

.ls-gis-popup-btn.primary{
    background:#0f1b35;
    color:#fff;
}

.ls-gis-popup-btn.primary:hover{
    background:#081124;
    color:#fff;
}

.ls-gis-popup-btn.update{
    background:#0b6b3a;
    color:#fff;
}

.ls-gis-popup-btn.update:hover{
    background:#07542d;
}

.ls-gis-popup-form{
    display:grid;
    grid-template-columns:1fr auto;
    gap:6px;
}

.ls-gis-popup-select{
    width:100%;
    padding:6px 7px;
    border:1px solid #d9e0dc;
    border-radius:7px;
    background:#fff;
    color:#405249;
    font-size:.56rem;
}


/* =========================================================
   TOAST
========================================================= */

.ls-gis-toast{
    position:absolute;
    left:17px;
    bottom:17px;
    z-index:1200;
    pointer-events:none;
    opacity:0;
    transform:translateY(7px);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.ls-gis-toast.show{
    opacity:1;
    transform:translateY(0);
}

.ls-gis-toast-inner{
    max-width:360px;
    padding:10px 13px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:8px;
    background:rgba(15,27,53,.94);
    color:#fff;
    font-size:.58rem;
    font-weight:700;
    box-shadow:0 10px 28px rgba(15,23,42,.20);
    backdrop-filter:blur(8px);
}


/* =========================================================
   DRAW TOOLBAR
========================================================= */

.leaflet-draw-toolbar a{
    background-color:#fff !important;
}


/* =========================================================
   FOOTNOTE
========================================================= */

.ls-gis-footnote{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:8px 4px 0;
    color:#929b96;
    font-size:.52rem;
}

.ls-gis-footnote > div{
    display:flex;
    align-items:center;
    gap:5px;
}

.ls-gis-footnote i{
    color:#0b6b3a;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px){

    .ls-gis-status-strip{
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}

@media (max-width:991px){

    .ls-gis-page-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-gis-map-wrap{
        height:calc(100vh - 300px);
        min-height:560px;
    }

}

@media (max-width:767px){

    .ls-gis-map-toolbar{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-gis-map-toolbar-info{
        gap:8px;
    }

    .ls-gis-map-wrap{
        height:70vh;
        min-height:520px;
    }

    .ls-gis-popup-form{
        grid-template-columns:1fr;
    }

}

@media (max-width:575px){

    .ls-gis-status-strip{
        grid-template-columns:1fr;
    }

    .ls-gis-header-actions{
        width:100%;
    }

    .ls-gis-header-actions .btn{
        flex:1;
    }

    .ls-gis-map-wrap{
        min-height:500px;
    }

    .ls-gis-community-select{
        min-width:175px;
    }

    .ls-gis-footnote{
        align-items:flex-start;
        flex-direction:column;
    }

}

/* =========================================================
   LANDSECURE GH — EVIDENCE UPLOAD
========================================================= */

.ls-evidence-header{
    margin-bottom:20px;
}

.ls-evidence-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-evidence-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-evidence-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   HERO
========================================================= */

.ls-evidence-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:15px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-evidence-hero-main{
    padding:27px 30px;
}

.ls-evidence-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-evidence-hero h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
}

.ls-evidence-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-evidence-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-evidence-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-evidence-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.57rem;
    text-transform:uppercase;
}

.ls-evidence-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-evidence-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-evidence-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-evidence-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-evidence-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.55);
    font-size:.59rem;
}


/* =========================================================
   LINKED WORKFLOW NOTICE
========================================================= */

.ls-evidence-link-notice{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:15px;
    padding:15px 17px;
    border:1px solid #d9c87c;
    border-radius:12px;
    background:#fff9e5;
}

.ls-evidence-link-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:8px;
    background:#d4a514;
    color:#fff;
}

.ls-evidence-link-notice span{
    display:block;
    color:#977208;
    font-size:.54rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-evidence-link-notice strong{
    display:block;
    margin-top:2px;
    color:#614d0d;
    font-size:.69rem;
}

.ls-evidence-link-notice p{
    margin:3px 0 0;
    color:#7e7044;
    font-size:.61rem;
}


/* =========================================================
   GUIDANCE
========================================================= */

.ls-evidence-guidance{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:16px;
    padding:16px 18px;
    border:1px solid rgba(11,107,58,.10);
    border-radius:13px;
    background:#f5f9f6;
}

.ls-evidence-guidance-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    flex:0 0 34px;
    border-radius:9px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.78rem;
}

.ls-evidence-guidance h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.76rem;
    font-weight:900;
}

.ls-evidence-guidance p{
    max-width:850px;
    margin:0;
    color:#77837c;
    font-size:.61rem;
    line-height:1.55;
}


/* =========================================================
   FORM CARD
========================================================= */

.ls-evidence-card{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-evidence-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-evidence-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-evidence-card-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-evidence-card-head p{
    margin:0;
    color:#7d8982;
    font-size:.67rem;
}

.ls-evidence-form{
    padding:22px;
}


/* =========================================================
   FIELDS
========================================================= */

.ls-evidence-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-evidence-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-evidence-field label span{
    color:#b34a4a;
}

.ls-evidence-field input:not([type="checkbox"]):not([type="radio"]),
.ls-evidence-field select,
.ls-evidence-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-evidence-field input[type="file"]{
    padding:8px;
    background:#fff;
}

.ls-evidence-field input[type="file"]::file-selector-button{
    margin-right:10px;
    padding:7px 10px;
    border:0;
    border-radius:6px;
    background:#e5f0e9;
    color:#0b6b3a;
    font-size:.64rem;
    font-weight:800;
    cursor:pointer;
}

.ls-evidence-field textarea{
    min-height:105px;
    resize:vertical;
}

.ls-evidence-field input:focus,
.ls-evidence-field select:focus,
.ls-evidence-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-evidence-field small{
    display:block;
    margin-top:5px;
    color:#89958e;
    font-size:.59rem;
    line-height:1.45;
}

.ls-evidence-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   SUBMIT
========================================================= */

.ls-evidence-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:23px;
    padding:20px 22px;
    border-radius:14px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.14),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
}

.ls-evidence-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-evidence-submit strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.82rem;
}

.ls-evidence-submit p{
    max-width:580px;
    margin:3px 0 0;
    color:rgba(255,255,255,.58);
    font-size:.59rem;
    line-height:1.5;
}

.ls-evidence-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-evidence-submit-actions .btn{
    min-height:40px;
    padding:9px 15px;
    font-size:.67rem;
    font-weight:850;
}

.ls-evidence-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#17251e;
}

.ls-evidence-submit-btn:hover{
    border-color:#dcae19;
    background:#dcae19;
    color:#17251e;
}


/* =========================================================
   AUDIT PANEL
========================================================= */

.ls-evidence-audit{
    display:flex;
    align-items:flex-start;
    gap:13px;
    padding:17px 19px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:13px;
    background:#f6faf7;
}

.ls-evidence-audit-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex:0 0 32px;
    border-radius:9px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.72rem;
}

.ls-evidence-audit h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.75rem;
    font-weight:900;
}

.ls-evidence-audit p{
    max-width:820px;
    margin:0;
    color:#7b8780;
    font-size:.6rem;
    line-height:1.55;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ls-evidence-hero{
        grid-template-columns:1fr;
    }

    .ls-evidence-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

}

@media (max-width:767px){

    .ls-evidence-fields{
        grid-template-columns:1fr;
    }

    .ls-evidence-meta > div,
    .ls-evidence-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-evidence-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-evidence-submit-actions{
        width:100%;
    }

    .ls-evidence-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-evidence-hero-main,
    .ls-evidence-hero-side{
        padding:20px;
    }

    .ls-evidence-card-head,
    .ls-evidence-form{
        padding:17px;
    }

    .ls-evidence-submit{
        padding:18px;
    }

    .ls-evidence-submit-actions{
        flex-direction:column;
    }

    .ls-evidence-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — RAISE DISPUTE
========================================================= */

.ls-dispute-header{
    margin-bottom:20px;
}

.ls-dispute-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-dispute-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-dispute-header p strong{
    color:#9a6511;
}


/* =========================================================
   HERO
========================================================= */

.ls-dispute-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:15px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.16),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #3d2a08,
            #8b5e0a
        );
    color:#fff;
}

.ls-dispute-hero-main{
    padding:27px 30px;
}

.ls-dispute-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-dispute-hero h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
}

.ls-dispute-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-dispute-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-dispute-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-dispute-meta span{
    display:block;
    color:rgba(255,255,255,.52);
    font-size:.57rem;
    text-transform:uppercase;
}

.ls-dispute-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-dispute-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.1);
}

.ls-dispute-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-dispute-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-dispute-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.58);
    font-size:.59rem;
}


/* =========================================================
   WARNING
========================================================= */

.ls-dispute-warning{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:15px;
    padding:15px 17px;
    border:1px solid #e2c67c;
    border-radius:12px;
    background:#fff8e3;
}

.ls-dispute-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:50%;
    background:#b77a12;
    color:#fff;
    font-size:.75rem;
    font-weight:900;
}

.ls-dispute-warning span{
    display:block;
    color:#9b680f;
    font-size:.54rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-dispute-warning strong{
    display:block;
    margin-top:2px;
    color:#65450e;
    font-size:.69rem;
}

.ls-dispute-warning p{
    max-width:850px;
    margin:3px 0 0;
    color:#7e6d42;
    font-size:.61rem;
    line-height:1.55;
}


/* =========================================================
   WORKFLOW
========================================================= */

.ls-dispute-workflow{
    display:flex;
    align-items:center;
    margin-bottom:16px;
    padding:14px 18px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:13px;
    background:#fff;
}

.ls-dispute-workflow-item{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}

.ls-dispute-workflow-item > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:#edf1ef;
    color:#738078;
    font-size:.56rem;
    font-weight:900;
}

.ls-dispute-workflow-item.active > span{
    background:#8b5e0a;
    color:#f8d85b;
}

.ls-dispute-workflow-item strong{
    display:block;
    color:#405249;
    font-size:.61rem;
}

.ls-dispute-workflow-item small{
    display:block;
    margin-top:1px;
    color:#919b95;
    font-size:.52rem;
}

.ls-dispute-workflow-line{
    height:1px;
    flex:1;
    min-width:18px;
    margin:0 12px;
    background:#e2e7e4;
}


/* =========================================================
   FORM CARD
========================================================= */

.ls-dispute-card{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-dispute-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fffdf8,#faf7ef);
}

.ls-dispute-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#8b5e0a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-dispute-card-head h2{
    margin:4px 0 3px;
    color:#4f3a12;
    font-size:1.05rem;
    font-weight:900;
}

.ls-dispute-card-head p{
    margin:0;
    color:#817967;
    font-size:.67rem;
}

.ls-dispute-form{
    padding:22px;
}


/* =========================================================
   FIELDS
========================================================= */

.ls-dispute-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-dispute-field label{
    display:block;
    margin-bottom:6px;
    color:#5c594f;
    font-size:.68rem;
    font-weight:850;
}

.ls-dispute-field label span{
    color:#b34a4a;
}

.ls-dispute-field input:not([type="checkbox"]):not([type="radio"]),
.ls-dispute-field select,
.ls-dispute-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #e1ddd1;
    border-radius:9px;
    background:#fdfcf9;
    color:#403c32;
    font-size:.75rem;
    outline:none;
}

.ls-dispute-field textarea{
    min-height:115px;
    resize:vertical;
}

.ls-dispute-field input:focus,
.ls-dispute-field select:focus,
.ls-dispute-field textarea:focus{
    border-color:rgba(139,94,10,.45);
    background:#fff;
    box-shadow:0 0 0 3px rgba(139,94,10,.07);
}

.ls-dispute-field small{
    display:block;
    margin-top:5px;
    color:#918a7a;
    font-size:.59rem;
    line-height:1.45;
}

.ls-dispute-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   SUBMIT
========================================================= */

.ls-dispute-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:23px;
    padding:20px 22px;
    border-radius:14px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.16),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #3d2a08,
            #8b5e0a
        );
}

.ls-dispute-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-dispute-submit strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.82rem;
}

.ls-dispute-submit p{
    max-width:580px;
    margin:3px 0 0;
    color:rgba(255,255,255,.6);
    font-size:.59rem;
    line-height:1.5;
}

.ls-dispute-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-dispute-submit-actions .btn{
    min-height:40px;
    padding:9px 15px;
    font-size:.67rem;
    font-weight:850;
}

.ls-dispute-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#30240c;
}

.ls-dispute-submit-btn:hover{
    border-color:#dcae19;
    background:#dcae19;
    color:#30240c;
}


/* =========================================================
   NEXT STEPS
========================================================= */

.ls-dispute-next{
    display:flex;
    align-items:flex-start;
    gap:13px;
    padding:17px 19px;
    border:1px solid rgba(139,94,10,.09);
    border-radius:13px;
    background:#fcfaf5;
}

.ls-dispute-next-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex:0 0 32px;
    border-radius:9px;
    background:#f1ead9;
    color:#8b5e0a;
    font-size:.72rem;
}

.ls-dispute-next h3{
    margin:4px 0 3px;
    color:#554525;
    font-size:.75rem;
    font-weight:900;
}

.ls-dispute-next p{
    max-width:820px;
    margin:0;
    color:#837c6d;
    font-size:.6rem;
    line-height:1.55;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ls-dispute-hero{
        grid-template-columns:1fr;
    }

    .ls-dispute-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

    .ls-dispute-workflow{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
    }

    .ls-dispute-workflow-line{
        width:1px;
        height:14px;
        min-width:1px;
        flex:none;
        margin:0 0 0 14px;
    }

}

@media (max-width:767px){

    .ls-dispute-fields{
        grid-template-columns:1fr;
    }

    .ls-dispute-meta > div,
    .ls-dispute-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-dispute-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-dispute-submit-actions{
        width:100%;
    }

    .ls-dispute-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-dispute-hero-main,
    .ls-dispute-hero-side{
        padding:20px;
    }

    .ls-dispute-card-head,
    .ls-dispute-form{
        padding:17px;
    }

    .ls-dispute-submit{
        padding:18px;
    }

    .ls-dispute-submit-actions{
        flex-direction:column;
    }

    .ls-dispute-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — RESOLVE DISPUTE
========================================================= */

.ls-resolve-dispute-header{
    margin-bottom:20px;
}

.ls-resolve-dispute-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-resolve-dispute-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-resolve-dispute-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   HERO
========================================================= */

.ls-resolve-dispute-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:15px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-resolve-dispute-hero-main{
    padding:27px 30px;
}

.ls-resolve-dispute-kicker{
    display:block;
    color:#f8d85b;
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-resolve-dispute-hero h2{
    margin:7px 0 19px;
    color:#fff;
    font-size:1.55rem;
    font-weight:900;
}

.ls-resolve-dispute-meta{
    display:flex;
    flex-wrap:wrap;
}

.ls-resolve-dispute-meta > div{
    min-width:150px;
    padding-right:24px;
}

.ls-resolve-dispute-meta > div + div{
    padding-left:24px;
    border-left:1px solid rgba(255,255,255,.1);
}

.ls-resolve-dispute-meta span{
    display:block;
    color:rgba(255,255,255,.5);
    font-size:.57rem;
    text-transform:uppercase;
}

.ls-resolve-dispute-meta strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.72rem;
}

.ls-resolve-dispute-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:25px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-resolve-dispute-hero-side span{
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-resolve-dispute-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.78rem;
}

.ls-resolve-dispute-hero-side small{
    margin-top:4px;
    color:rgba(255,255,255,.56);
    font-size:.59rem;
}


/* =========================================================
   SUMMARY
========================================================= */

.ls-resolve-dispute-summary{
    margin-bottom:15px;
    padding:20px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:15px;
    background:#fff;
}

.ls-resolve-dispute-summary-head{
    margin-bottom:14px;
}

.ls-resolve-dispute-summary-head h2{
    margin:4px 0 3px;
    color:#315043;
    font-size:.95rem;
    font-weight:900;
}

.ls-resolve-dispute-summary-head p{
    margin:0;
    color:#7d8982;
    font-size:.63rem;
}

.ls-resolve-dispute-summary-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}

.ls-resolve-dispute-summary-grid > div{
    padding:12px 14px;
    border-radius:9px;
    background:#f7faf8;
}

.ls-resolve-dispute-summary-wide{
    grid-column:1/-1;
}

.ls-resolve-dispute-summary-grid span{
    display:block;
    color:#8d9892;
    font-size:.53rem;
    text-transform:uppercase;
}

.ls-resolve-dispute-summary-grid strong{
    display:block;
    margin-top:3px;
    color:#405249;
    font-size:.64rem;
    line-height:1.5;
}


/* =========================================================
   WARNING
========================================================= */

.ls-resolve-dispute-warning{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:15px;
    padding:15px 17px;
    border:1px solid #e2c67c;
    border-radius:12px;
    background:#fff8e3;
}

.ls-resolve-dispute-warning-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:50%;
    background:#b77a12;
    color:#fff;
    font-size:.75rem;
    font-weight:900;
}

.ls-resolve-dispute-warning span{
    display:block;
    color:#9b680f;
    font-size:.54rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-resolve-dispute-warning strong{
    display:block;
    margin-top:2px;
    color:#65450e;
    font-size:.69rem;
}

.ls-resolve-dispute-warning p{
    max-width:850px;
    margin:3px 0 0;
    color:#7e6d42;
    font-size:.61rem;
    line-height:1.55;
}


/* =========================================================
   WORKFLOW
========================================================= */

.ls-resolve-dispute-workflow{
    display:flex;
    align-items:center;
    margin-bottom:16px;
    padding:14px 18px;
    border:1px solid rgba(15,23,42,.06);
    border-radius:13px;
    background:#fff;
}

.ls-resolve-dispute-workflow-item{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}

.ls-resolve-dispute-workflow-item > span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:29px;
    height:29px;
    border-radius:8px;
    background:#edf1ef;
    color:#738078;
    font-size:.56rem;
    font-weight:900;
}

.ls-resolve-dispute-workflow-item.complete > span{
    background:#dfeee5;
    color:#0b6b3a;
}

.ls-resolve-dispute-workflow-item.active > span{
    background:#0b6b3a;
    color:#f8d85b;
}

.ls-resolve-dispute-workflow-item strong{
    display:block;
    color:#405249;
    font-size:.61rem;
}

.ls-resolve-dispute-workflow-item small{
    display:block;
    margin-top:1px;
    color:#919b95;
    font-size:.52rem;
}

.ls-resolve-dispute-workflow-line{
    height:1px;
    flex:1;
    min-width:18px;
    margin:0 12px;
    background:#e2e7e4;
}

.ls-resolve-dispute-workflow-line.complete{
    background:#b7d4c2;
}


/* =========================================================
   CARD
========================================================= */

.ls-resolve-dispute-card{
    margin-bottom:16px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.07);
    border-radius:17px;
    background:#fff;
    box-shadow:0 7px 24px rgba(15,23,42,.025);
}

.ls-resolve-dispute-card-head{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(15,23,42,.06);
    background:linear-gradient(120deg,#fbfdfc,#f4f9f6);
}

.ls-resolve-dispute-step{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:#0b6b3a;
    color:#f8d85b;
    font-size:.62rem;
    font-weight:900;
}

.ls-resolve-dispute-card-head h2{
    margin:4px 0 3px;
    color:#1c382b;
    font-size:1.05rem;
    font-weight:900;
}

.ls-resolve-dispute-card-head p{
    margin:0;
    color:#7d8982;
    font-size:.67rem;
}

.ls-resolve-dispute-form{
    padding:22px;
}


/* =========================================================
   FIELDS
========================================================= */

.ls-resolve-dispute-fields{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.ls-resolve-dispute-field label{
    display:block;
    margin-bottom:6px;
    color:#4d5f55;
    font-size:.68rem;
    font-weight:850;
}

.ls-resolve-dispute-field label span{
    color:#b34a4a;
}

.ls-resolve-dispute-field input:not([type="checkbox"]):not([type="radio"]),
.ls-resolve-dispute-field select,
.ls-resolve-dispute-field textarea{
    width:100%;
    min-height:42px;
    padding:9px 11px;
    border:1px solid #dce3df;
    border-radius:9px;
    background:#fbfcfb;
    color:#304038;
    font-size:.75rem;
    outline:none;
}

.ls-resolve-dispute-field textarea{
    min-height:115px;
    resize:vertical;
}

.ls-resolve-dispute-field input:focus,
.ls-resolve-dispute-field select:focus,
.ls-resolve-dispute-field textarea:focus{
    border-color:rgba(11,107,58,.48);
    background:#fff;
    box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-resolve-dispute-field small{
    display:block;
    margin-top:5px;
    color:#89958e;
    font-size:.59rem;
    line-height:1.45;
}

.ls-resolve-dispute-error{
    margin-top:5px;
    color:#aa4545;
    font-size:.61rem;
}


/* =========================================================
   FINAL SUBMIT
========================================================= */

.ls-resolve-dispute-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    margin-top:23px;
    padding:20px 22px;
    border-radius:14px;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(248,216,91,.14),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
}

.ls-resolve-dispute-submit > div:first-child > span{
    display:block;
    color:#f8d85b;
    font-size:.55rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-resolve-dispute-submit strong{
    display:block;
    margin-top:3px;
    color:#fff;
    font-size:.82rem;
}

.ls-resolve-dispute-submit p{
    max-width:590px;
    margin:3px 0 0;
    color:rgba(255,255,255,.58);
    font-size:.59rem;
    line-height:1.5;
}

.ls-resolve-dispute-submit-actions{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}

.ls-resolve-dispute-submit-actions .btn{
    min-height:40px;
    padding:9px 15px;
    font-size:.67rem;
    font-weight:850;
}

.ls-resolve-dispute-submit-btn{
    border:1px solid #efbd21;
    background:#efbd21;
    color:#17251e;
}

.ls-resolve-dispute-submit-btn:hover{
    border-color:#dcae19;
    background:#dcae19;
    color:#17251e;
}


/* =========================================================
   AUDIT
========================================================= */

.ls-resolve-dispute-audit{
    display:flex;
    align-items:flex-start;
    gap:13px;
    padding:17px 19px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:13px;
    background:#f6faf7;
}

.ls-resolve-dispute-audit-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:32px;
    height:32px;
    flex:0 0 32px;
    border-radius:9px;
    background:#dfeee5;
    color:#0b6b3a;
    font-size:.72rem;
}

.ls-resolve-dispute-audit h3{
    margin:4px 0 3px;
    color:#315043;
    font-size:.75rem;
    font-weight:900;
}

.ls-resolve-dispute-audit p{
    max-width:820px;
    margin:0;
    color:#7b8780;
    font-size:.6rem;
    line-height:1.55;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ls-resolve-dispute-hero{
        grid-template-columns:1fr;
    }

    .ls-resolve-dispute-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

    .ls-resolve-dispute-workflow{
        align-items:flex-start;
        flex-direction:column;
        gap:10px;
    }

    .ls-resolve-dispute-workflow-line{
        width:1px;
        height:14px;
        min-width:1px;
        flex:none;
        margin:0 0 0 14px;
    }

}

@media (max-width:767px){

    .ls-resolve-dispute-summary-grid,
    .ls-resolve-dispute-fields{
        grid-template-columns:1fr;
    }

    .ls-resolve-dispute-summary-wide{
        grid-column:auto;
    }

    .ls-resolve-dispute-meta > div,
    .ls-resolve-dispute-meta > div + div{
        width:50%;
        min-width:0;
        padding:7px 15px 7px 0;
        border:0;
    }

    .ls-resolve-dispute-submit{
        align-items:flex-start;
        flex-direction:column;
    }

    .ls-resolve-dispute-submit-actions{
        width:100%;
    }

    .ls-resolve-dispute-submit-actions .btn{
        flex:1;
    }

}

@media (max-width:575px){

    .ls-resolve-dispute-hero-main,
    .ls-resolve-dispute-hero-side{
        padding:20px;
    }

    .ls-resolve-dispute-summary,
    .ls-resolve-dispute-card-head,
    .ls-resolve-dispute-form{
        padding:17px;
    }

    .ls-resolve-dispute-submit{
        padding:18px;
    }

    .ls-resolve-dispute-submit-actions{
        flex-direction:column;
    }

    .ls-resolve-dispute-submit-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — 403 ACCESS DENIED
========================================================= */

.ls-error-page{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:calc(100vh - 180px);
    padding:35px 15px;
}

.ls-error-card{
    position:relative;
    width:100%;
    max-width:700px;
    overflow:hidden;
    padding:44px 42px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:20px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.08),
            transparent 30%
        ),
        #fff;
    text-align:center;
    box-shadow:0 18px 45px rgba(15,23,42,.06);
}

.ls-error-code{
    position:absolute;
    top:-24px;
    right:20px;
    color:rgba(11,107,58,.04);
    font-size:9rem;
    font-weight:950;
    line-height:1;
    letter-spacing:-.08em;
    pointer-events:none;
}

.ls-error-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:68px;
    height:68px;
    margin:0 auto 18px;
    border-radius:18px;
    background:#fff4d2;
    color:#a56c0d;
    font-size:1.75rem;
}

.ls-error-card h1{
    position:relative;
    z-index:1;
    margin:7px 0 8px;
    color:#183428;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-error-lead{
    max-width:520px;
    margin:0 auto;
    color:#748079;
    font-size:.82rem;
    line-height:1.65;
}

.ls-error-notice{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:24px auto 0;
    padding:15px 17px;
    max-width:560px;
    border:1px solid #ead594;
    border-radius:12px;
    background:#fff9e8;
    text-align:left;
}

.ls-error-notice-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:8px;
    background:#d4a514;
    color:#fff;
    font-size:.7rem;
}

.ls-error-notice strong{
    display:block;
    color:#654f0c;
    font-size:.69rem;
}

.ls-error-notice p{
    margin:3px 0 0;
    color:#807041;
    font-size:.61rem;
    line-height:1.55;
}

.ls-error-actions{
    display:flex;
    justify-content:center;
    gap:9px;
    margin-top:25px;
}

.ls-error-actions .btn{
    min-height:41px;
    padding:9px 16px;
    font-size:.68rem;
    font-weight:850;
}

.ls-error-primary-btn{
    border:1px solid #0b6b3a;
    background:#0b6b3a;
    color:#fff;
}

.ls-error-primary-btn:hover{
    border-color:#07542d;
    background:#07542d;
    color:#fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:575px){

    .ls-error-page{
        min-height:auto;
        padding:20px 0;
    }

    .ls-error-card{
        padding:34px 20px;
        border-radius:16px;
    }

    .ls-error-code{
        top:-8px;
        right:10px;
        font-size:6rem;
    }

    .ls-error-card h1{
        font-size:1.65rem;
    }

    .ls-error-actions{
        flex-direction:column;
    }

    .ls-error-actions .btn{
        width:100%;
    }

}

/* =========================================================
   LANDSECURE GH — GUEST DASHBOARD
========================================================= */

.ls-guest-header{
    margin-bottom:20px;
}

.ls-guest-header h1{
    margin:5px 0 6px;
    color:#142d21;
    font-size:2rem;
    font-weight:900;
    letter-spacing:-.035em;
}

.ls-guest-header p{
    margin:0;
    color:#75817a;
    font-size:.84rem;
}

.ls-guest-header p strong{
    color:#0b6b3a;
}


/* =========================================================
   HERO
========================================================= */

.ls-guest-hero{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) minmax(280px,.6fr);
    overflow:hidden;
    margin-bottom:16px;
    border-radius:18px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(248,216,91,.15),
            transparent 26%
        ),
        linear-gradient(
            120deg,
            #043c23,
            #0b6b3a
        );
    color:#fff;
}

.ls-guest-hero-main{
    padding:30px;
}

.ls-guest-kicker{
    display:block;
    color:#f8d85b;
    font-size:.58rem;
    font-weight:900;
    letter-spacing:.1em;
}

.ls-guest-hero h2{
    max-width:600px;
    margin:8px 0 10px;
    color:#fff;
    font-size:1.7rem;
    font-weight:900;
    letter-spacing:-.025em;
}

.ls-guest-hero-main > p{
    max-width:650px;
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:.72rem;
    line-height:1.6;
}

.ls-guest-user{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.ls-guest-user-avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    flex:0 0 38px;
    border-radius:10px;
    background:rgba(255,255,255,.12);
    color:#f8d85b;
    font-size:.88rem;
}

.ls-guest-user span{
    display:block;
    color:rgba(255,255,255,.46);
    font-size:.48rem;
    font-weight:800;
}

.ls-guest-user strong{
    display:block;
    margin-top:1px;
    color:#fff;
    font-size:.68rem;
}

.ls-guest-user small{
    display:block;
    color:rgba(255,255,255,.55);
    font-size:.52rem;
}

.ls-guest-hero-side{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:26px;
    border-left:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.09);
}

.ls-guest-hero-side span{
    color:#f8d85b;
    font-size:.54rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-guest-hero-side strong{
    margin-top:6px;
    color:#fff;
    font-size:.8rem;
}

.ls-guest-hero-side small{
    margin-top:5px;
    color:rgba(255,255,255,.56);
    font-size:.59rem;
    line-height:1.5;
}


/* =========================================================
   NOTICE
========================================================= */

.ls-guest-notice{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:18px;
    padding:15px 17px;
    border:1px solid rgba(11,107,58,.09);
    border-radius:12px;
    background:#f4f9f6;
}

.ls-guest-notice-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:31px;
    height:31px;
    flex:0 0 31px;
    border-radius:8px;
    background:#dfeee5;
    color:#0b6b3a;
}

.ls-guest-notice span{
    display:block;
    color:#0b6b3a;
    font-size:.53rem;
    font-weight:900;
    letter-spacing:.08em;
}

.ls-guest-notice strong{
    display:block;
    margin-top:2px;
    color:#315043;
    font-size:.69rem;
}

.ls-guest-notice p{
    max-width:860px;
    margin:3px 0 0;
    color:#748079;
    font-size:.61rem;
    line-height:1.55;
}


/* =========================================================
   QUICK ACCESS
========================================================= */

.ls-guest-section{
    margin-bottom:18px;
}

.ls-guest-section-head{
    margin-bottom:12px;
}

.ls-guest-section-head h2{
    margin:4px 0 3px;
    color:#213e30;
    font-size:1rem;
    font-weight:900;
}

.ls-guest-section-head p{
    margin:0;
    color:#7f8a84;
    font-size:.64rem;
}

.ls-guest-actions-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.ls-guest-action-card{
    display:flex;
    gap:14px;
    min-height:175px;
    padding:20px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:15px;
    background:#fff;
    color:inherit;
    text-decoration:none;
    box-shadow:0 7px 22px rgba(15,23,42,.025);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.ls-guest-action-card:hover{
    transform:translateY(-2px);
    border-color:rgba(11,107,58,.2);
    box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.ls-guest-action-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:11px;
    background:#e6f0ea;
    color:#0b6b3a;
    font-size:.92rem;
}

.ls-guest-action-card span{
    display:block;
    margin-bottom:3px;
    color:#0b6b3a;
    font-size:.51rem;
    font-weight:900;
    letter-spacing:.06em;
}

.ls-guest-action-card h3{
    margin:0 0 6px;
    color:#2d4839;
    font-size:.82rem;
    font-weight:900;
}

.ls-guest-action-card p{
    max-width:440px;
    margin:0 0 15px;
    color:#808b85;
    font-size:.61rem;
    line-height:1.55;
}

.ls-guest-action-card strong{
    display:inline-flex;
    align-items:center;
    gap:5px;
    color:#0b6b3a;
    font-size:.6rem;
    font-weight:850;
}


/* =========================================================
   ACCESS CONTROL PANEL
========================================================= */

.ls-guest-access-panel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding:20px 22px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:15px;
    background:
        linear-gradient(
            120deg,
            #fafcfb,
            #f4f8f6
        );
}

.ls-guest-access-panel h2{
    margin:4px 0 4px;
    color:#315043;
    font-size:.84rem;
    font-weight:900;
}

.ls-guest-access-panel p{
    max-width:760px;
    margin:0;
    color:#7c8781;
    font-size:.61rem;
    line-height:1.55;
}

.ls-guest-access-badge{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
    padding:11px 14px;
    border:1px solid rgba(11,107,58,.1);
    border-radius:10px;
    background:#fff;
}

.ls-guest-access-badge > i{
    color:#0b6b3a;
    font-size:1rem;
}

.ls-guest-access-badge span{
    display:block;
    color:#909a94;
    font-size:.48rem;
    font-weight:800;
}

.ls-guest-access-badge strong{
    display:block;
    margin-top:1px;
    color:#315043;
    font-size:.63rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){

    .ls-guest-hero{
        grid-template-columns:1fr;
    }

    .ls-guest-hero-side{
        border-top:1px solid rgba(255,255,255,.08);
        border-left:0;
    }

}

@media (max-width:767px){

    .ls-guest-actions-grid{
        grid-template-columns:1fr;
    }

    .ls-guest-access-panel{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media (max-width:575px){

    .ls-guest-hero-main,
    .ls-guest-hero-side{
        padding:21px;
    }

    .ls-guest-hero h2{
        font-size:1.4rem;
    }

    .ls-guest-action-card{
        padding:17px;
    }

}

/* =========================================================
   LANDSECURE PRIVATE PORTFOLIO
========================================================= */

.ls-private-portfolio {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(248, 216, 91, 0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #071d16 0%,
            #0b2f23 48%,
            #103c2c 100%
        );
    overflow: hidden;
}

.ls-private-portfolio::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(248, 216, 91, 0.05);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.ls-private-portfolio::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    left: -100px;
    bottom: -120px;
    pointer-events: none;
}

.ls-private-shell {
    position: relative;
    z-index: 2;
}

.ls-private-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #f8d85b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ls-private-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #f8d85b;
    border-radius: 999px;
}

.ls-private-title {
    max-width: 640px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.ls-private-title span {
    display: block;
    color: #f8d85b;
}

.ls-private-lead {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ls-private-features {
    display: grid;
    gap: 16px;
}

.ls-private-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(6px);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.ls-private-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(248, 216, 91, 0.35);
    background: rgba(255, 255, 255, 0.055);
}

.ls-private-feature-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f8d85b;
    color: #073720;
    font-size: 1.2rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.ls-private-feature strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 0.98rem;
}

.ls-private-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.91rem;
    line-height: 1.55;
}


/* =========================================================
   PRIVATE PORTFOLIO DASHBOARD PREVIEW
========================================================= */

.ls-private-dashboard {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(245, 248, 246, 0.94)
        );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ls-private-dashboard::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 34px;
    border: 1px solid rgba(248, 216, 91, 0.14);
    pointer-events: none;
}

.ls-private-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.ls-private-dashboard-top small {
    display: block;
    margin-bottom: 4px;
    color: #809087;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.ls-private-dashboard-top strong {
    color: #073720;
    font-size: 1.25rem;
}

.ls-private-secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e8f4ed;
    color: #0b6b3a;
    font-size: 0.75rem;
    font-weight: 700;
}

.ls-private-stat {
    height: 100%;
    padding: 17px;
    border: 1px solid #e7ece9;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 50, 37, 0.05);
}

.ls-private-stat span {
    display: block;
    margin-bottom: 8px;
    color: #79877f;
    font-size: 0.76rem;
    font-weight: 700;
}

.ls-private-stat strong {
    display: block;
    margin-bottom: 4px;
    color: #073720;
    font-size: 1.55rem;
    line-height: 1;
}

.ls-private-stat strong.ls-private-value {
    font-size: 1.32rem;
}

.ls-private-stat small {
    color: #98a39d;
    font-size: 0.72rem;
}


/* =========================================================
   MINI PORTFOLIO MAP
========================================================= */

.ls-private-mini-map {
    position: relative;
    height: 240px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(
            rgba(231, 239, 234, 0.68),
            rgba(231, 239, 234, 0.68)
        ),
        linear-gradient(
            135deg,
            #dfe9e2,
            #eef4f0
        );
}

.ls-private-map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image:
        linear-gradient(
            rgba(11, 107, 58, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 107, 58, 0.08) 1px,
            transparent 1px
        );
    background-size: 34px 34px;
}

.ls-private-mini-map::before,
.ls-private-mini-map::after {
    content: "";
    position: absolute;
    background: rgba(11, 107, 58, 0.08);
    border-radius: 999px;
    transform: rotate(-22deg);
}

.ls-private-mini-map::before {
    width: 420px;
    height: 18px;
    left: -80px;
    top: 92px;
}

.ls-private-mini-map::after {
    width: 360px;
    height: 12px;
    right: -90px;
    bottom: 62px;
    transform: rotate(28deg);
}

.ls-private-map-point {
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #0b6b3a;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(11, 107, 58, 0.28);
}

.ls-private-map-point.point-1 {
    left: 17%;
    top: 25%;
}

.ls-private-map-point.point-2 {
    left: 57%;
    top: 18%;
}

.ls-private-map-point.point-3 {
    left: 38%;
    top: 57%;
    background: #f8d85b;
    color: #073720;
}

.ls-private-map-point.point-4 {
    right: 11%;
    bottom: 19%;
}

.ls-private-map-label {
    position: absolute;
    z-index: 4;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.ls-private-map-label > i {
    color: #0b6b3a;
    font-size: 1.25rem;
}

.ls-private-map-label strong {
    display: block;
    color: #073720;
    font-size: 0.84rem;
}

.ls-private-map-label small {
    display: block;
    color: #7c8881;
    font-size: 0.7rem;
}

.ls-private-dashboard-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.ls-private-dashboard-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef4f0;
    color: #426051;
    font-size: 0.72rem;
    font-weight: 700;
}

.ls-private-dashboard-bottom i {
    color: #0b6b3a;
}


/* =========================================================
   PORTFOLIO BUTTON REFINEMENTS
========================================================= */

.ls-private-portfolio .btn-primary {
    border-color: #f8d85b;
    background: #f8d85b;
    color: #073720;
    font-weight: 800;
}

.ls-private-portfolio .btn-primary:hover,
.ls-private-portfolio .btn-primary:focus {
    border-color: #ffe684;
    background: #ffe684;
    color: #073720;
}

.ls-private-portfolio .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.38);
    color: #ffffff;
    font-weight: 700;
}

.ls-private-portfolio .btn-outline-light:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #073720;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .ls-private-portfolio {
        padding: 78px 0;
    }

    .ls-private-title {
        max-width: 720px;
    }

    .ls-private-dashboard {
        margin-top: 12px;
    }

}


@media (max-width: 767.98px) {

    .ls-private-portfolio {
        padding: 64px 0;
    }

    .ls-private-title {
        font-size: 2.4rem;
    }

    .ls-private-lead {
        font-size: 1rem;
    }

    .ls-private-feature {
        padding: 14px;
    }

    .ls-private-dashboard {
        padding: 18px;
        border-radius: 22px;
    }

    .ls-private-mini-map {
        height: 210px;
    }

}


@media (max-width: 575.98px) {

    .ls-private-title {
        font-size: 2rem;
    }

    .ls-private-dashboard-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .ls-private-stat {
        padding: 14px;
    }

    .ls-private-stat strong {
        font-size: 1.3rem;
    }

    .ls-private-mini-map {
        height: 190px;
    }

    .ls-private-map-point {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .ls-private-map-label {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

}

/* =========================================================
   QR MANAGEMENT SIDEBAR
   ========================================================= */

.sidebar-section-title {
    margin: 26px 18px 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}


/* ---------------------------------------------------------
   Sidebar Link
   --------------------------------------------------------- */

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 5px 12px;
    padding: 11px 12px;

    border-radius: 12px;

    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}


/* ---------------------------------------------------------
   Active Sidebar Link
   --------------------------------------------------------- */

.sidebar-link.active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(11, 107, 58, 0.95),
            rgba(7, 55, 32, 0.98)
        );

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}


/* ---------------------------------------------------------
   Number / Icon Container
   --------------------------------------------------------- */

.sidebar-link-number {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.07);

    color: #f8d85b;

    font-size: 0.78rem;
    font-weight: 800;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.sidebar-link:hover .sidebar-link-number {
    background: rgba(248, 216, 91, 0.12);
    color: #ffe58a;
}


.sidebar-link.active .sidebar-link-number {
    background: rgba(248, 216, 91, 0.18);
    color: #f8d85b;
}


/* Bootstrap icon support */
.sidebar-link-number i {
    font-size: 1rem;
    line-height: 1;
}


/* ---------------------------------------------------------
   QR Management Special Accent
   --------------------------------------------------------- */

.sidebar-link.qr-link {
    position: relative;
    overflow: hidden;
}


.sidebar-link.qr-link::before {
    content: "";
    position: absolute;

    left: 0;
    top: 20%;
    bottom: 20%;

    width: 3px;

    border-radius: 0 4px 4px 0;

    background: transparent;

    transition: background-color 0.2s ease;
}


.sidebar-link.qr-link:hover::before {
    background: rgba(248, 216, 91, 0.55);
}


.sidebar-link.qr-link.active::before {
    background: #f8d85b;
}


/* ---------------------------------------------------------
   QR Security Badge
   --------------------------------------------------------- */

.qr-nav-badge {
    margin-left: auto;

    padding: 3px 7px;

    border-radius: 999px;

    background: rgba(248, 216, 91, 0.12);

    color: #f8d85b;

    font-size: 0.62rem;
    font-weight: 800;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Optional QR Section Divider
   --------------------------------------------------------- */

.qr-sidebar-divider {
    height: 1px;

    margin: 18px 18px 8px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(248, 216, 91, 0.25),
            transparent
        );
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

    .sidebar-link {
        margin-left: 8px;
        margin-right: 8px;
    }

    .sidebar-section-title {
        margin-left: 14px;
        margin-right: 14px;
    }
}

/* ====================================================
   USER ACCOUNT DROPDOWN
==================================================== */

.pp-user-menu-button {
    border: 0;
    background: transparent;

    padding: 7px 10px;

    border-radius: 12px;

    cursor: pointer;

    color: var(--pp-text);

    transition:
        background-color .18s ease,
        box-shadow .18s ease;
}


.pp-user-menu-button:hover {
    background: #f3f7f4;
}


.pp-user-menu-button:focus {
    outline: none;

    box-shadow:
        0 0 0 3px rgba(11,107,58,.10);
}


.pp-user-chevron {
    margin-left: 4px;

    color: var(--pp-muted);

    font-size: .7rem;

    transition:
        transform .2s ease;
}


.pp-user-menu-button[aria-expanded="true"]
.pp-user-chevron {
    transform: rotate(180deg);
}


/* DROPDOWN */

.pp-user-dropdown {
    width: 260px;

    margin-top: 10px !important;

    padding: 8px;

    border:
        1px solid var(--pp-border);

    border-radius: 14px;

    box-shadow:
        0 14px 35px rgba(15,27,53,.12);
}


.pp-user-dropdown .dropdown-item {
    padding:
        10px 12px;

    border-radius: 9px;

    color:
        var(--pp-text);

    font-size:
        .82rem;

    font-weight:
        600;

    transition:
        background-color .15s ease,
        color .15s ease;
}


.pp-user-dropdown .dropdown-item:hover {
    background:
        #edf7f0;

    color:
        var(--pp-green);
}


.pp-user-dropdown .dropdown-divider {
    margin:
        5px 0;

    border-color:
        var(--pp-border);
}


/* LOGOUT */

.pp-user-dropdown .pp-dropdown-logout {
    width: 100%;

    border: 0;

    background: transparent;

    text-align: left;

    color:
        #b42318;
}


.pp-user-dropdown .pp-dropdown-logout:hover {
    color:
        #8f1c13;

    background:
        #fff1f0;
}