/* AreaFix GH — mobile-first UI. Ghana-inspired green/gold/red accents. */
:root {
  --green: #0a7d3f; --green-d: #075e2f; --green-l: #e7f4ec;
  --gold: #f4b400; --gold-d: #b9860b; --red: #ce1126;
  --ink: #14201a; --muted: #5f6f67; --line: #e4e9e6; --bg: #f6f8f7; --card: #fff;
  --radius: 14px; --shadow: 0 1px 3px rgba(20,32,26,.08), 0 6px 18px rgba(20,32,26,.05);
  --maxw: 1040px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .4em; }
h1 { font-size: 1.9rem; } h2 { font-size: 1.35rem; } h3 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.section { padding: 28px 0; }

/* Header */
header.top { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; gap: 14px; height: 96px; }
.brand { display: flex; align-items: center; }
.brand .logo-img { height: 80px; width: auto; display: block; }
.brand .logo { width: 30px; height: 30px; border-radius: 8px; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.brand .gh { color: var(--gold-d); }
.nav { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav a { padding: 8px 10px; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.nav a:hover, .nav a.active { background: var(--green-l); color: var(--green-d); }
.nav .who { color: var(--muted); font-weight: 600; font-size: .85rem; padding: 0 6px; }
.menu-btn { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; font-size: 1.1rem; }
@media (max-width: 760px) {
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 58px; left: 0; right: 0; background: #fff; flex-direction: column;
         align-items: stretch; padding: 8px 12px 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 11px 10px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer;
  border: 1px solid transparent; border-radius: 11px; padding: 11px 16px; font-weight: 700; font-size: .95rem;
  background: var(--green); color: #fff; transition: filter .12s, transform .02s; text-align: center; }
.btn:hover { filter: brightness(1.06); } .btn:active { transform: translateY(1px); }
.btn.gold { background: var(--gold); color: #3a2c00; }
.btn.outline { background: #fff; color: var(--green-d); border-color: var(--green); }
.btn.ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn.sm { padding: 7px 12px; font-size: .85rem; border-radius: 9px; }
.btn.block { display: flex; width: 100%; }
.btn.danger { background: #fff; color: var(--red); border-color: #f0c2c8; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card.pad { padding: 16px; }
.grid { display: grid; gap: 14px; }
.grid.cols2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid.cols3, .grid.cols4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.cols2, .grid.cols3, .grid.cols4 { grid-template-columns: 1fr; } }

/* Hero */
.hero { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; border-radius: 0 0 26px 26px; }
.hero .wrap { padding: 34px 16px 40px; }
.hero h1 { font-size: 2.15rem; max-width: 15ch; }
.hero p { color: #dff0e6; max-width: 46ch; font-size: 1.05rem; }
.hero .cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.pill { display: inline-block; background: rgba(255,255,255,.15); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; margin-bottom: 14px; }

/* Category / task cards */
.cat { padding: 16px; cursor: pointer; display: flex; flex-direction: column; gap: 6px; }
.cat .ic { font-size: 1.9rem; }
.cat h3 { margin: 0; }
.cat .subs { color: var(--muted); font-size: .84rem; }
.tile { padding: 16px; text-align: center; }
.tile .n { font-size: 1.7rem; font-weight: 800; color: var(--green-d); }
.tile .l { color: var(--muted); font-size: .85rem; }

.task { padding: 15px; display: flex; flex-direction: column; gap: 8px; }
.task .row { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.task .title { font-weight: 700; }
.task .meta { color: var(--muted); font-size: .85rem; display: flex; flex-wrap: wrap; gap: 4px 12px; }
.task .budget { font-weight: 800; color: var(--green-d); white-space: nowrap; }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: .01em; }
.badge.green { background: var(--green-l); color: var(--green-d); }
.badge.gold { background: #fdf3d6; color: var(--gold-d); }
.badge.red { background: #fbe3e6; color: var(--red); }
.badge.gray { background: #eef1ef; color: var(--muted); }
.badge.blue { background: #e4eefb; color: #1c5bb8; }
.badge.status { text-transform: capitalize; }

/* Forms */
label.f { display: block; font-weight: 700; font-size: .85rem; margin: 12px 0 5px; }
input, select, textarea { width: 100%; font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green-l); border-color: var(--green); }
textarea { min-height: 90px; resize: vertical; }
.hint { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.field-row { display: flex; gap: 10px; } .field-row > * { flex: 1; }
.chip { display: inline-block; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .88rem; font-weight: 600; background: #fff; margin: 0 6px 6px 0; }
.chip.on { background: var(--green); color: #fff; border-color: var(--green); }

/* Steps */
.steps { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.steps .s { flex: 1; min-width: 40px; height: 6px; border-radius: 999px; background: var(--line); }
.steps .s.done { background: var(--green); }

/* Tabs */
.tabs { display: flex; gap: 4px; overflow-x: auto; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.tabs button { background: none; border: none; border-bottom: 3px solid transparent; padding: 10px 12px; font-weight: 700; color: var(--muted); cursor: pointer; white-space: nowrap; font-size: .92rem; }
.tabs button.on { color: var(--green-d); border-color: var(--green); }

/* Misc */
.stack > * + * { margin-top: 12px; }
.center { text-align: center; }
.split { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.toast { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 12px; font-weight: 600; z-index: 200; box-shadow: var(--shadow); max-width: 90%; }
.toast.err { background: var(--red); }
.spin { display: inline-block; width: 18px; height: 18px; border: 3px solid var(--green-l); border-top-color: var(--green); border-radius: 50%; animation: sp 1s linear infinite; }
@keyframes sp { to { transform: rotate(360deg); } }
.loading { padding: 40px; text-align: center; color: var(--muted); }
.empty { padding: 28px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }
.list > * + * { border-top: 1px solid var(--line); }
.safety { background: #fff8e6; border: 1px solid #f2e3b0; border-radius: var(--radius); padding: 14px 16px; font-size: .9rem; }
.safety b { color: var(--gold-d); }
.how { counter-reset: step; }
.how .step { display: flex; gap: 12px; align-items: start; }
.how .step .num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 800; }
footer.foot { border-top: 1px solid var(--line); background: #fff; margin-top: 30px; padding: 22px 0; color: var(--muted); font-size: .88rem; }
.foot-logo { height: 260px; width: auto; max-width: 100%; display: block; margin-bottom: 16px; }
.modal-bg { position: fixed; inset: 0; background: rgba(10,20,15,.45); display: grid; place-items: center; z-index: 150; padding: 16px; }
.modal { background: #fff; border-radius: var(--radius); max-width: 460px; width: 100%; padding: 20px; box-shadow: var(--shadow); max-height: 90vh; overflow: auto; }

/* ============================================================ */
/* Mobile redesign (2026) — new classes only; desktop unchanged. */
/* Tints: green border #b9dcc7 · light-on-green #c5e3d2 · gold bg #fff8e6 / border #f2e3b0 / text #6b5304 & #3a2c00 */

/* Bottom navigation (customers, mobile only) */
.bottomnav { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff;
  border-top: 1px solid var(--line); grid-template-columns: repeat(4, 1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); }
.bottomnav a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 7px 4px;
  min-height: 52px; color: var(--muted); font-size: 11px; font-weight: 500; }
.bottomnav a svg { display: block; }
.bottomnav a.on { color: var(--green); font-weight: 700; }
@media (max-width: 760px) {
  body.has-bottomnav .bottomnav { display: grid; }
  body.has-bottomnav main { padding-bottom: 84px; }
  body.has-bottomnav footer.foot { display: none; }
}

/* Mobile home */
.mhome-top { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line);
  padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mhome-top .logo-sm { height: 44px; width: auto; display: block; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-l); color: var(--green-d);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
  border: 2px solid var(--green); flex: none; }
.hero-mobile { background: linear-gradient(135deg, var(--green-d), var(--green)); padding: 18px 20px 22px;
  color: #fff; border-radius: 0 0 22px 22px; }
.hero-mobile .greet { font-size: 19px; font-weight: 800; letter-spacing: -.2px; }
.loc-pill { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.16);
  border: none; color: #fff; padding: 8px 14px; border-radius: 999px; font: inherit; font-size: 13px;
  font-weight: 600; cursor: pointer; min-height: 36px; }
.msearch { margin-top: 12px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px;
  padding: 14px 16px; box-shadow: 0 4px 14px rgba(7,94,47,.25); }
.msearch input { border: none; outline: none; flex: 1; font: inherit; font-size: 15px; color: var(--ink);
  background: transparent; min-width: 0; padding: 0; }
.mh-heading { padding: 0 20px; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.cat-row { display: flex; gap: 10px; overflow-x: auto; padding: 2px 20px 6px; -webkit-overflow-scrolling: touch; }
.cat-tile { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; min-width: 88px; min-height: 78px;
  cursor: pointer; font: inherit; box-shadow: 0 1px 3px rgba(20,32,26,.06); }
.cat-tile:hover { border-color: var(--green); }
.cat-tile .ic { font-size: 24px; line-height: 1; }
.cat-tile .lb { font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.mtask-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; cursor: pointer;
  box-shadow: var(--shadow); display: block; color: var(--ink); }
.mtask-card .icsq { width: 44px; height: 44px; border-radius: 12px; background: var(--green-l); display: flex;
  align-items: center; justify-content: center; font-size: 22px; flex: none; }
.mtask-card .t { font-size: 15px; font-weight: 700; color: var(--ink); }
.mtask-card .m { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.mtask-card .amt { font-size: 15px; font-weight: 800; color: var(--green-d); white-space: nowrap; }
.pill-escrow { display: inline-flex; align-items: center; gap: 6px; background: var(--green-l); border: 1px solid #b9dcc7;
  color: var(--green-d); font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; }
.pill-progress { display: inline-flex; align-items: center; gap: 6px; background: #e4eefb; border: 1px solid #bcd4f5;
  color: #1c5bb8; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.pill-done { display: inline-flex; align-items: center; gap: 6px; background: var(--green-l); border: 1px solid #b9dcc7;
  color: var(--green-d); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.trust-banner { background: #fff8e6; border: 1px solid #f2e3b0; border-radius: 14px; padding: 14px 16px;
  display: flex; gap: 12px; align-items: center; }
.trust-banner .tt { font-size: 13.5px; font-weight: 700; color: #3a2c00; }
.trust-banner .tb { font-size: 12.5px; color: #6b5304; margin-top: 1px; }
.fab { position: fixed; bottom: 96px; right: 20px; z-index: 80; display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #3a2c00; border: none; border-radius: 999px; padding: 15px 22px; font: inherit;
  font-size: 15px; font-weight: 800; cursor: pointer; box-shadow: 0 6px 18px rgba(185,134,11,.4); }
.fab:hover { filter: brightness(1.06); } .fab:active { transform: scale(.98); }

/* Post-a-Task bottom sheet (mobile) */
.sheet-bg { position: fixed; inset: 0; background: rgba(10,20,15,.45); z-index: 140; animation: sheetFade .2s ease; }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; background: #fff; border-radius: 22px 22px 0 0; z-index: 145;
  padding: 14px 20px calc(24px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 30px rgba(10,20,15,.2);
  max-height: 88vh; overflow: auto; }
.sheet.up { animation: sheetUp .25s ease; }
.sheet-handle { width: 42px; height: 5px; background: var(--line); border-radius: 999px; margin: 0 auto 14px; }
.sheet label.f { font-size: 13px; margin: 12px 0 6px; }
.sheet input, .sheet select, .sheet textarea { border-width: 1.5px; border-radius: 11px; padding: 13px 14px; font-size: 15px; }
.sheet input:focus, .sheet select:focus, .sheet textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes sheetFade { from { opacity: 0; } to { opacity: 1; } }
.ghs-prefix { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 11px; overflow: hidden; background: #fff; }
.ghs-prefix .cur { background: #fff8e6; color: #6b5304; font-weight: 800; font-size: 15px; padding: 13px 14px;
  border-right: 1.5px solid var(--line); flex: none; }
.ghs-prefix input { border: none !important; outline: none !important; flex: 1; min-width: 0; border-radius: 0; }
.reassure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px;
  color: var(--muted); margin-top: 10px; text-align: center; }

/* Task detail — escrow tracker */
.mtask-hero { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; padding: 14px 20px 18px; }
.mtask-hero .back { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: #c5e3d2;
  font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; padding: 6px 0; min-height: 36px; }
.mtask-hero .tt { font-size: 19px; font-weight: 800; margin-top: 4px; }
.mtask-hero .mm { font-size: 13px; color: #c5e3d2; margin-top: 3px; }
.worker-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex;
  align-items: center; gap: 14px; }
.worker-card .avatar-lg { width: 56px; height: 56px; border-radius: 50%; background: var(--green-l); color: var(--green-d);
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; flex: none; }
.worker-card .nm { font-size: 16px; font-weight: 800; color: var(--ink); }
.worker-card .rt { font-size: 13px; color: var(--muted); margin-top: 2px; }
.worker-card .vf { font-size: 12px; color: var(--green-d); font-weight: 600; margin-top: 2px; }
.callbtn { width: 44px; height: 44px; border-radius: 50%; background: var(--green-l); border: 1px solid #b9dcc7;
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex: none; }
.escrow { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 16px; }
.escrow .hd { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.escrow .hd .hl { font-size: 15px; font-weight: 800; color: var(--ink); }
.escrow .held { margin-left: auto; background: #fff8e6; border: 1px solid #f2e3b0; color: #6b5304; font-size: 11.5px;
  font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.escrow .step { display: flex; gap: 14px; }
.escrow .rail { display: flex; flex-direction: column; align-items: center; }
.escrow .dot { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex: none; }
.escrow .dot.done { background: var(--green-l); border: 2px solid var(--green); }
.escrow .dot.pending { background: #fff8e6; border: 2px solid var(--gold); }
.escrow .line { width: 2px; flex: 1; min-height: 22px; background: var(--line); }
.escrow .line.done { background: var(--green); }
.escrow .st { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.escrow .st.pending { color: #6b5304; }
.escrow .ss { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.escrow .body { padding-bottom: 18px; }
.release-btn { width: 100%; background: var(--green); color: #fff; border: none; border-radius: 14px; padding: 17px;
  font: inherit; font-size: 16px; font-weight: 800; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 9px; box-shadow: 0 4px 14px rgba(10,125,63,.35); }
.release-btn:hover { filter: brightness(1.08); } .release-btn:active { transform: scale(.98); }
.release-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }
.released-card { background: var(--green-l); border: 1px solid #b9dcc7; border-radius: 14px; padding: 18px; text-align: center; }
.released-card .big { font-size: 34px; }
.released-card .hl { font-size: 16px; font-weight: 800; color: var(--green-d); margin-top: 6px; }
.released-card .bb { font-size: 13px; color: var(--green-d); margin-top: 3px; }
.rate-pill { margin-top: 12px; background: #fff; border: 1px solid #b9dcc7; color: var(--green-d); border-radius: 999px;
  padding: 10px 18px; font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer; min-height: 44px; }

/* My Tasks list card */
.mylist-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: block; color: var(--ink); }
.mylist-card .row1 { display: flex; justify-content: space-between; gap: 10px; }
.mylist-card .t { font-size: 15px; font-weight: 700; color: var(--ink); }
.mylist-card .amt { font-size: 14px; font-weight: 800; color: var(--green-d); white-space: nowrap; }
.mylist-card .who { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* Wallet */
.wallet-balance { background: linear-gradient(135deg, var(--green-d), var(--green)); border-radius: 18px; padding: 20px; color: #fff; }
.wallet-balance .lb { font-size: 12.5px; color: #c5e3d2; font-weight: 600; }
.wallet-balance .amt { font-size: 32px; font-weight: 800; margin-top: 4px; }
.escrow-row { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex;
  align-items: center; gap: 12px; }
.escrow-row .icsq { width: 42px; height: 42px; border-radius: 12px; background: #fff8e6; display: flex;
  align-items: center; justify-content: center; flex: none; }
.escrow-row .t { font-size: 14px; font-weight: 700; color: var(--ink); }
.escrow-row .m { font-size: 12.5px; color: var(--muted); }
.escrow-row .amt { font-size: 16px; font-weight: 800; color: var(--gold-d); white-space: nowrap; }

/* ============================================================ */
/* Desktop redesign (2026) — dashboard, landing polish, task rail. */

/* Greeting hero band (logged-in dashboard, inside .wrap) */
.dhero { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; border-radius: 22px;
  padding: 26px 28px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.dhero .greet { font-size: 24px; font-weight: 800; letter-spacing: -.2px; }
.dhero .dsearch { margin-top: 14px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px;
  padding: 13px 16px; box-shadow: 0 4px 14px rgba(7,94,47,.25); min-width: 340px; }
.dhero .dsearch input { border: none; outline: none; flex: 1; font: inherit; font-size: 15px; color: var(--ink);
  background: transparent; min-width: 0; padding: 0; }
.dhero .btn.gold { border-radius: 999px; padding: 14px 22px; font-weight: 800; box-shadow: 0 6px 18px rgba(185,134,11,.4); }

/* Dashboard grid */
.dash-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; align-items: start; margin-top: 18px; }
@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.cat-grid .cat-tile { min-width: 0; width: 100%; }
.side-title { font-size: 14px; font-weight: 700; margin: 0 0 10px; }

/* Landing trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-strip .titem { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow); }
.trust-strip .titem .icsq { width: 42px; height: 42px; border-radius: 12px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center; flex: none; }
.trust-strip .titem .icsq.gold { background: #fff8e6; }
.trust-strip .titem b { display: block; font-size: 14px; }
.trust-strip .titem span { font-size: 12.5px; color: var(--muted); }

/* Category cards: icon in tinted square */
.cat .ic { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 12px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center; }

/* Task detail: two-column with sticky escrow rail (wide screens) */
@media (min-width: 761px) {
  .task-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: start; }
  .task-rail { position: sticky; top: 112px; }
  .task-rail > :first-child { margin-top: 0 !important; }
}

/* Pill tabs (dashboard/vendor/admin) */
.tabs { border-bottom: none; gap: 8px; }
.tabs button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: #fff; }
.tabs button.on { background: var(--green-l); border-color: var(--green); color: var(--green-d); }

/* Vendor dashboard band */
.vendor-band { background: linear-gradient(135deg, var(--green-d), var(--green)); color: #fff; border-radius: 22px;
  padding: 22px 26px; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 18px; }
.vendor-band h1 { margin: 0; font-size: 1.5rem; color: #fff; }
.vendor-band .sub { color: #c5e3d2; font-size: .92rem; }
.vendor-band .vstats { display: flex; gap: 10px; flex-wrap: wrap; }
.vendor-band .vstat { background: rgba(255,255,255,.14); border-radius: 14px; padding: 10px 16px; text-align: center; min-width: 92px; }
.vendor-band .vstat .n { font-weight: 800; font-size: 1.15rem; }
.vendor-band .vstat .l { font-size: .74rem; color: #c5e3d2; }

/* Profile */
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--green-l); color: var(--green-d);
  display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; }
.verified-banner { width: 100%; background: var(--green-l); border: 1px solid #b9dcc7; border-radius: 14px;
  padding: 14px 16px; display: flex; gap: 12px; align-items: center; font-size: 13.5px; font-weight: 700; color: var(--green-d); }
.settings-list { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.settings-list .srow { width: 100%; display: flex; align-items: center; gap: 12px; background: none; border: none;
  border-bottom: 1px solid #eef1ef; padding: 15px 16px; font: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--ink); cursor: pointer; text-align: left; min-height: 50px; }
.settings-list .srow:last-child { border-bottom: none; }
.settings-list .srow:hover { background: var(--bg); }
.settings-list .chev { margin-left: auto; display: flex; }
