/* ============================================================
   PROCUREMENT LINK — Complete CSS v2.0
   Website + App + Auth + Admin — All matching screenshots
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:      #0D1B3E;
  --blue:      #1A3A8A;
  --cta:       #1565C0;
  --orange:    #F97316;
  --green:     #22C55E;
  --red:       #EF4444;
  --gold:      #F59E0B;
  --wa:        #25D366;
  --grad:      linear-gradient(135deg, #1565C0 0%, #0D1B3E 100%);
  --body-bg:   #F5F7FA;
  --card:      #FFFFFF;
  --border:    #E5E7EB;
  --input-bg:  #F3F4F6;
  --text-dark: #111827;
  --text-body: #374151;
  --text-gray: #6B7280;
  --text-light:#9CA3AF;
  --sidebar-w: 165px;
  --header-h:  64px;
  --r-card:    12px;
  --r-pill:    50px;
  --shadow:    0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text-body); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ════════════════════════════════════════════════════════════
   PUBLIC WEBSITE STYLES
   ════════════════════════════════════════════════════════════ */

/* ── NAVIGATION ─────────────────────────────────────────────── */
.w-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  padding: 0 40px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.w-nav-logo { display: flex; align-items: center; gap: 4px; }
.w-nav-logo img { height: 42px; width: auto; }
.w-nav-logo span { font-size: 22px; font-weight: 900; color: var(--navy); }
.w-nav-logo span em { color: var(--cta); font-style: normal; }
.w-nav-links { display: flex; align-items: center; gap: 32px; }
.w-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-body);
  transition: color .15s; position: relative; padding-bottom: 4px;
}
.w-nav-links a:hover, .w-nav-links a.active { color: var(--cta); }
.w-nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--cta); border-radius: 2px;
}
.w-nav-btns { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 24px; border-radius: var(--r-pill);
  border: 1.5px solid var(--navy); font-size: 13px; font-weight: 600;
  color: var(--navy); background: transparent; cursor: pointer;
  transition: all .15s;
}
.btn-login:hover { background: var(--navy); color: #fff; }
.btn-signup {
  padding: 8px 24px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .15s;
}
.btn-signup:hover { background: var(--blue); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.w-page-hero {
  background: var(--grad);
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}
.w-page-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.w-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: rgba(255,255,255,.8);
}
.w-breadcrumb a { color: rgba(255,255,255,.8); }
.w-breadcrumb a:hover { color: #fff; }
.w-breadcrumb .sep { font-size: 10px; }

/* ── WEBSITE SECTION WRAPPER ─────────────────────────────────── */
.w-section { padding: 72px 0; }
.w-section.bg-gray { background: #F8F9FA; }
.w-section.bg-dark { background: var(--navy); }
.w-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.w-section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: 10px;
}
.w-section-title {
  font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2;
}
.w-section-sub { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ── HOME HERO ───────────────────────────────────────────────── */
.hero-section {
  background: var(--grad);
  background-image: var(--grad), radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 20px 20px;
  min-height: 560px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; background: rgba(0,0,0,.1);
}
.hero-content { position: relative; z-index: 2; max-width: 560px; color: #fff; }
.hero-label {
  display: inline-block; background: rgba(249,115,22,.25);
  color: var(--orange); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.hero-section h1 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-section p { font-size: 15px; opacity: .85; line-height: 1.7; margin-bottom: 28px; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r-pill);
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .15s; border: none;
}
.btn-hero:hover { background: #ea6c0a; }
.hero-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52%; object-fit: cover; object-position: center top;
}

/* ── FEATURE CARD ────────────────────────────────────────────── */
.feature-card {
  background: #fff; border-radius: var(--r-card); padding: 22px;
  box-shadow: var(--shadow); display: flex; gap: 14px; align-items: flex-start;
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feature-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.feature-desc { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ── PLAN CARDS ──────────────────────────────────────────────── */
.w-plan-card {
  border-radius: 16px; padding: 28px 24px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: box-shadow .15s, transform .15s;
}
.w-plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.w-plan-card.popular {
  background: linear-gradient(145deg, #FFF7ED, #fff);
  border-color: var(--orange);
  position: relative;
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan-price { font-size: 36px; font-weight: 800; color: var(--navy); }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--text-gray); }
.plan-feat-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; padding: 7px 0; color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.plan-feat-item:last-child { border-bottom: none; }
.feat-icon-on {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.feat-icon-off {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; color: var(--text-light);
}

/* ── BLOG CARD ───────────────────────────────────────────────── */
.blog-card { background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .15s, transform .15s; cursor: pointer; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { position: relative; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-date {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 10px; border-radius: 8px;
  text-align: center; line-height: 1.2; min-width: 44px;
}
.blog-date span { display: block; font-size: 10px; font-weight: 400; opacity: .8; text-transform: uppercase; }
.blog-card-body { padding: 18px; }
.blog-card-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.btn-know-more {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--navy); font-size: 12px; font-weight: 600;
  color: var(--navy); background: #fff; cursor: pointer;
  transition: all .15s;
}
.btn-know-more:hover { background: var(--navy); color: #fff; }

/* ── TEAM / TESTIMONIAL CARDS ────────────────────────────────── */
.team-card { text-align: center; }
.team-card img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r-card); margin-bottom: 14px; }
.team-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-gray); }
.team-card small { font-size: 12px; color: var(--text-light); }
.testimonial-card { background: #fff; border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }

/* ── STATS TILES ─────────────────────────────────────────────── */
.stat-tile { padding: 36px 24px; text-align: center; }
.stat-tile .num { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.stat-tile .lbl { font-size: 14px; color: rgba(255,255,255,.8); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.w-footer { background: #1A1A2E; color: #fff; padding: 60px 0 0; }
.w-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.w-footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.w-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .15s; }
.w-footer-col a:hover { color: #fff; }
.w-footer-col .contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 13px; color: rgba(255,255,255,.7); align-items: flex-start; }
.w-footer-col .contact-item i { margin-top: 3px; flex-shrink: 0; color: var(--orange); }
.w-footer-newsletter {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 40px 0;
  text-align: center;
}
.w-footer-newsletter h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.w-footer-newsletter p { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-pill);
  overflow: hidden; background: rgba(255,255,255,.08);
}
.newsletter-form input {
  flex: 1; padding: 13px 20px;
  background: transparent; border: none; color: #fff; font-size: 13px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form button {
  padding: 13px 28px; background: var(--cta); color: #fff;
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}
.w-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.w-footer-bottom a { color: var(--orange); }
.w-footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.w-footer-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background .15s;
}
.w-footer-socials a:hover { background: var(--cta); }
.partner-logos { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.partner-logos img { height: 36px; width: auto; filter: grayscale(100%); opacity: .6; transition: all .15s; }
.partner-logos img:hover { filter: none; opacity: 1; }

/* ── PRICING BILLING TOGGLE ──────────────────────────────────── */
.billing-toggle {
  display: inline-flex; background: var(--navy); border-radius: var(--r-pill);
  padding: 4px; gap: 2px;
}
.billing-toggle button {
  padding: 8px 24px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65);
  transition: all .15s;
}
.billing-toggle button.on { background: #fff; color: var(--navy); }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-info-box {
  background: var(--navy); border-radius: var(--r-card); padding: 32px;
  color: #fff; height: 100%;
}
.contact-info-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.contact-info-box p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 28px; line-height: 1.6; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: center; }
.contact-info-item .icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.contact-info-item div span { display: block; font-size: 13px; color: rgba(255,255,255,.8); }
.contact-form-box { background: #fff; border-radius: var(--r-card); padding: 32px; box-shadow: var(--shadow); }
.w-form-group { margin-bottom: 18px; }
.w-form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-body); margin-bottom: 6px; }
.w-form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--text-dark); background: #fff;
  transition: border-color .15s;
}
.w-form-input:focus { border-color: var(--cta); }
.w-form-input::placeholder { color: var(--text-light); }
.w-form-textarea { min-height: 130px; resize: vertical; }
.btn-send {
  padding: 13px 36px; background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 600; border-radius: 8px;
  cursor: pointer; border: none; transition: background .15s;
}
.btn-send:hover { background: var(--blue); }

/* ── BUTTONS (general website) ───────────────────────────────── */
.btn-primary-w {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: background .15s;
}
.btn-primary-w:hover { background: var(--blue); }
.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-pill);
  border: 1.5px solid var(--navy); color: var(--navy); background: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
}
.btn-outline-w:hover { background: var(--navy); color: #fff; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-pill);
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: background .15s;
}
.btn-orange:hover { background: #ea6c0a; }

/* ── PAGINATION ──────────────────────────────────────────────── */
.w-pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 32px; }
.w-page-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; color: var(--text-body); transition: all .15s;
}
.w-page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.w-page-btn:hover:not(.active) { background: var(--input-bg); }

/* ── VALUE CARD ──────────────────────────────────────────────── */
.value-card {
  background: #fff; border-radius: var(--r-card); padding: 24px;
  box-shadow: var(--shadow); border-top: 3px solid transparent;
}
.value-card:hover { border-top-color: var(--cta); }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.step-card {
  background: #fff; border-radius: var(--r-card); padding: 28px 22px;
  text-align: center; box-shadow: var(--shadow); position: relative;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cta); color: #fff;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   APP LAYOUT (authenticated sidebar app)
   ════════════════════════════════════════════════════════════ */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--grad);
  background-image: var(--grad), radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: auto, 20px 20px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-title { font-size: 20px; font-weight: 500; color: #fff; }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-right a, .header-right button { color: #fff; font-size: 17px; position: relative; background: none; border: none; cursor: pointer; }
.btn-add-post {
  border: 1.5px solid rgba(255,255,255,.8); color: #fff; background: transparent;
  padding: 6px 18px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500; cursor: pointer;
}
.header-notif-badge {
  position: absolute; top: -3px; right: -5px;
  background: var(--red); color: #fff; font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.header-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,.4);
}
.header-filter-pills { display: flex; gap: 6px; }
.hfpill {
  padding: 6px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  cursor: pointer; border: none; background: rgba(255,255,255,.15); color: #fff; transition: background .12s;
}
.hfpill.on { background: #fff; color: var(--navy); }
.tab-pills { display: flex; gap: 6px; }
.tab-pill {
  padding: 7px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  cursor: pointer; border: none; background: rgba(255,255,255,.15); color: #fff; transition: background .12s;
}
.tab-pill.on { background: #fff; color: var(--navy); }

.app-sidebar {
  position: fixed; top: var(--header-h); left: 0; bottom: 0; z-index: 900;
  width: var(--sidebar-w); background: #fff;
  display: flex; flex-direction: column; border-right: 1px solid var(--border);
  transition: width .2s; overflow: hidden;
}
.app-sidebar.collapsed { width: 52px; }
.sidebar-logo {
  padding: 12px 14px; display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; border-bottom: 1px solid var(--border); min-height: 56px;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -1px; white-space: nowrap; }
.logo-text span { color: var(--cta); }
.sidebar-collapse {
  position: absolute; top: 72px; right: -12px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cta); color: #fff; font-size: 10px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; box-shadow: 0 2px 6px rgba(0,0,0,.2); z-index: 10;
}
.sidebar-nav { flex: 1; padding: 8px 0; overflow-y: auto; overflow-x: hidden; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  color: var(--text-body); font-size: 13px; font-weight: 500; white-space: nowrap; transition: background .12s;
}
.sidebar-nav a:hover { background: var(--input-bg); }
.sidebar-nav a.active { background: var(--navy); color: #fff; }
.nav-icon { font-size: 16px; min-width: 16px; flex-shrink: 0; }
.nav-label { transition: opacity .15s; }
.app-sidebar.collapsed .nav-label { opacity: 0; pointer-events: none; }
.sidebar-divider { height: 1px; background: var(--border); margin: 6px 12px; flex-shrink: 0; }
.sidebar-bottom a {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  color: var(--text-gray); font-size: 12px; white-space: nowrap; transition: color .12s;
}
.sidebar-bottom a:hover { color: var(--text-body); }
.sidebar-socials { display: flex; gap: 8px; padding: 10px 14px 14px; flex-shrink: 0; }
.sidebar-socials a { font-size: 17px; }
.app-main { margin-left: var(--sidebar-w); margin-top: var(--header-h); padding: 20px; min-height: calc(100vh - var(--header-h)); transition: margin-left .2s; }
.app-main.collapsed { margin-left: 52px; }

/* ════════════════════════════════════════════════════════════
   AUTH LAYOUT
   ════════════════════════════════════════════════════════════ */
.auth-page { min-height: 100vh; display: flex; flex-direction: column; background: #fff; }
.auth-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--grad);
  background-image: var(--grad), radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: auto, 20px 20px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.auth-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 90px 20px 40px;
  background-image: radial-gradient(circle, rgba(30,58,138,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.auth-card {
  width: 100%; max-width: 480px; background: #fff;
  border-radius: 16px; padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 22px; }
.auth-title { text-align: center; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
.auth-subtitle { text-align: center; font-size: 13px; color: var(--text-gray); margin-bottom: 24px; line-height: 1.6; }
.auth-footer { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-gray); }
.auth-footer a { color: var(--cta); font-weight: 700; }

/* ── FORM COMPONENTS ─────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; color: var(--text-gray); font-weight: 500; margin-bottom: 5px; }
.input-wrap { position: relative; }
.i-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-gray); font-size: 14px; pointer-events: none; }
.form-ctrl {
  width: 100%; padding: 12px 18px 12px 40px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--input-bg);
  font-size: 14px; color: var(--text-dark); transition: border-color .15s, background .15s;
}
.form-ctrl.no-icon { padding-left: 18px; }
.form-ctrl:focus { border-color: var(--cta); background: #fff; }
.form-ctrl::placeholder { color: var(--text-light); }
.form-select {
  width: 100%; padding: 12px 38px 12px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--input-bg);
  font-size: 14px; color: var(--text-dark); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.form-textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--r-card);
  border: 1px solid var(--border); background: var(--input-bg);
  font-size: 14px; color: var(--text-dark); resize: vertical; min-height: 110px;
}
.form-textarea:focus { border-color: var(--cta); background: #fff; }
.char-count { text-align: right; font-size: 11px; color: var(--text-light); margin-top: 4px; }
.eye-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-gray); cursor: pointer; }
.flag-wrap { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 5px; font-size: 13px; pointer-events: none; }
.form-ctrl.with-flag { padding-left: 76px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.form-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

/* ── BUTTONS (app) ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  letter-spacing: .4px; text-transform: uppercase; cursor: pointer; transition: all .15s; border: none; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--blue); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-full { width: 100%; }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-lg { padding: 14px 36px; font-size: 15px; }
.or-div { display: flex; align-items: center; gap: 10px; margin: 14px 0; color: var(--text-light); font-size: 13px; }
.or-div::before, .or-div::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── ONBOARDING ──────────────────────────────────────────────── */
.onboard-wrap { max-width: 960px; width: 100%; padding: 0 20px; }
.onboard-head { text-align: center; margin-bottom: 28px; }
.onboard-title { font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.onboard-sub { font-size: 14px; color: var(--text-gray); }
.progress-bar { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.prog-seg { height: 4px; width: 140px; border-radius: 4px; background: var(--border); }
.prog-seg.done { background: var(--navy); }
.onboard-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); padding: 28px 32px; }

/* Role cards */
.role-cards { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto 24px; }
.role-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--r-card); border: 1.5px solid var(--border); cursor: pointer; transition: all .15s; background: #fff; }
.role-card.selected { background: var(--navy); border-color: var(--navy); }
.role-icon { font-size: 28px; min-width: 32px; }
.role-info { flex: 1; }
.role-title { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.role-card.selected .role-title { color: #fff; }
.role-desc { font-size: 12px; color: var(--text-gray); margin-top: 3px; }
.role-card.selected .role-desc { color: rgba(255,255,255,.7); }
.role-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; }
.role-card.selected .role-radio { border-color: #fff; background: radial-gradient(circle, #fff 5px, transparent 5px); }
.loc-pill { padding: 7px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--border); font-size: 12px; cursor: pointer; transition: all .15s; }
.loc-pill.on { background: var(--cta); color: #fff; border-color: var(--cta); }

/* Upload zone */
.upload-zone { border: 2px dashed var(--border); border-radius: var(--r-card); padding: 24px 20px; text-align: center; cursor: pointer; transition: border-color .15s; }
.upload-zone:hover { border-color: var(--cta); }

/* Plans in auth */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { border-radius: var(--r-card); padding: 22px 20px; border: 1.5px solid var(--border); cursor: pointer; }
.plan-card.basic { background: #F9FAFB; }
.plan-card.pro { background: #FFF7ED; border-color: #FED7AA; }
.plan-card.ent { background: #EFF6FF; border-color: #BFDBFE; }
.plan-card.selected .plan-radio { border-color: var(--navy); background: radial-gradient(circle, var(--navy) 6px, transparent 6px); }
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.plan-name.orange { color: var(--orange); }
.plan-popular { background: var(--orange); color: #fff; font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: var(--r-pill); }
.plan-price-text { font-size: 26px; font-weight: 700; color: var(--navy); }
.plan-price-text span { font-size: 13px; font-weight: 400; color: var(--text-gray); }
.plan-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--text-light); flex-shrink: 0; }
.plan-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 7px; }
.plan-feat.on { color: var(--text-body); }
.plan-feat.off { color: var(--text-light); }
.feat-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; font-weight: 700; }
.feat-check.on { background: var(--green); color: #fff; }
.feat-check.off { background: var(--border); color: var(--text-light); }

/* ── SUCCESS PAGE ────────────────────────────────────────────── */
.success-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - var(--header-h)); padding: 40px 20px; }
.success-content { text-align: center; max-width: 560px; }
.success-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 28px; color: #fff; }

/* ── DIRECTORY & REQUESTS ────────────────────────────────────── */
.dir-list { display: flex; flex-direction: column; gap: 14px; }
.dir-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); display: flex; overflow: hidden; cursor: pointer; transition: box-shadow .15s, transform .12s; }
.dir-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.dir-card-img { width: 200px; min-width: 200px; height: 140px; position: relative; flex-shrink: 0; }
.dir-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dir-supplier-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 4px; }
.dir-rating-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: var(--r-pill); }
.dir-card-body { padding: 14px 18px; flex: 1; }
.dir-card-name { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.dir-card-desc { font-size: 13px; color: var(--text-gray); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dir-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dir-tag { padding: 4px 12px; border-radius: var(--r-pill); border: 1px solid var(--border); font-size: 12px; color: var(--text-gray); }
.req-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.req-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; cursor: pointer; transition: box-shadow .15s, transform .12s; }
.req-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.req-card-img { position: relative; height: 140px; }
.req-card-img img { width: 100%; height: 100%; object-fit: cover; }
.req-status { position: absolute; top: 8px; right: 8px; padding: 3px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; }
.req-status.active { background: var(--green); color: #fff; }
.req-status.expired { background: var(--red); color: #fff; }
.req-card-body { padding: 10px 12px; }
.req-ref { font-size: 11px; color: var(--text-light); margin-bottom: 3px; }
.req-title { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.req-meta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-top: 1px solid var(--border); padding-top: 8px; margin-top: 6px; }
.req-meta-lbl { font-size: 11px; color: var(--text-gray); }
.req-meta-val { font-size: 12px; font-weight: 600; color: var(--text-dark); margin-top: 2px; }

/* ── FEED ────────────────────────────────────────────────────── */
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; }
.post-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--input-bg); border: 1px solid var(--border); }
.post-img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ── MESSAGE ─────────────────────────────────────────────────── */
.msg-layout { display: grid; grid-template-columns: 290px 1fr; height: calc(100vh - var(--header-h) - 40px); background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); }
.conv-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--input-bg); }
.conv-card { display: flex; align-items: center; gap: 10px; padding: 12px 14px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background .12s; }
.conv-card:hover { background: var(--input-bg); }
.conv-card.active { background: #EFF6FF; }
.msg-bubble.recv { background: #fff; border: 1px solid var(--border); border-top-left-radius: 2px; }
.msg-bubble.sent { background: var(--navy); color: #fff; border-top-right-radius: 2px; }
.msg-input { flex: 1; padding: 10px 18px; border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--input-bg); font-size: 14px; }
.msg-send-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; flex-shrink: 0; }

/* ── PROFILE ─────────────────────────────────────────────────── */
.profile-logo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); background: var(--input-bg); }
.profile-cam { position: absolute; bottom: 6px; right: 6px; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; border: 2.5px solid #fff; }
.profile-details-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-top: 12px; }
.profile-detail { padding: 10px 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.profile-detail:nth-child(4n) { border-right: none; }
.profile-detail-lbl { font-size: 11px; color: var(--text-gray); margin-bottom: 3px; }
.profile-detail-val { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* ── COMPANY DETAIL ──────────────────────────────────────────── */
.gallery-main { width: 420px; height: 260px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.gallery-thumb { width: 66px; height: 56px; border-radius: 6px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.gallery-thumb.active { border-color: var(--cta); }

/* ── FORM PAGES ──────────────────────────────────────────────── */
.form-page { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); }
.form-sec { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.form-sec:last-child { border-bottom: none; }
.form-sec-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.form-sec-sub { font-size: 13px; color: var(--text-gray); margin-bottom: 14px; }
.form-actions { padding: 16px 24px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BADGES ──────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; }
.badge-active { background: var(--green); color: #fff; }
.badge-expired { background: var(--red); color: #fff; }
.badge-pending { background: var(--gold); color: #fff; }

/* ── ADMIN ───────────────────────────────────────────────────── */
.admin-stat-card { background: #fff; border-radius: var(--r-card); padding: 20px; box-shadow: var(--shadow); border-left: 4px solid var(--cta); }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { background: var(--input-bg); padding: 12px 14px; text-align: left; font-weight: 600; color: var(--text-gray); border-bottom: 2px solid var(--border); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text-body); }
.data-table tr:hover td { background: #FAFAFA; }

/* ── ADMIN LOGIN ─────────────────────────────────────────────── */
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 24px 24px; }
.admin-login-card { background: #fff; border-radius: 16px; padding: 40px 44px; width: 100%; max-width: 420px; box-shadow: 0 8px 32px rgba(0,0,0,.3); }

/* ── MISC ────────────────────────────────────────────────────── */
.proj-exp-card { display: flex; gap: 10px; background: var(--input-bg); border-radius: 8px; padding: 10px; flex-shrink: 0; min-width: 280px; }
.proj-exp-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.cert-card { text-align: center; }
.cert-card img { width: 90px; height: 120px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.cert-card span { font-size: 11px; color: var(--text-gray); display: block; margin-top: 5px; max-width: 90px; line-height: 1.3; }

.promote-box { border: 1px solid var(--border); border-radius: var(--r-card); padding: 18px; }
.toggle-sw { position: relative; width: 42px; height: 22px; }
.toggle-sw input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--border); border-radius: 22px; cursor: pointer; transition: background .2s; }
.toggle-slider::before { content: ''; position: absolute; left: 3px; bottom: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s; }
.toggle-sw input:checked + .toggle-slider { background: var(--cta); }
.toggle-sw input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── PROFILE PAGE ────────────────────────────────────────────── */
.profile-top { display:flex; gap:28px; align-items:flex-start; background:#fff; border-radius:14px; padding:24px; box-shadow:var(--shadow); margin-bottom:16px; }
.profile-logo-wrap { position:relative; flex-shrink:0; }
.profile-right { flex:1; min-width:0; }
.profile-name-row { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:10px; }
.profile-co-name { font-size:22px; font-weight:700; color:var(--text-dark); margin-bottom:3px; }
.profile-loc { font-size:13px; color:var(--text-gray); display:flex; align-items:center; gap:4px; margin-bottom:4px; }
.profile-rating { display:inline-flex; align-items:center; gap:4px; background:#FFF9EC; border:1px solid var(--gold); border-radius:50px; padding:2px 10px; font-size:12px; font-weight:700; color:#B45309; }
.profile-icon-btns { display:flex; gap:8px; }
.profile-icon-btn { width:34px; height:34px; border-radius:8px; border:1px solid var(--border); background:#fff; color:var(--text-gray); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:14px; transition:background .12s; }
.profile-icon-btn:hover { background:var(--input-bg); }
.profile-section { background:#fff; border-radius:14px; padding:20px 24px; box-shadow:var(--shadow); margin-bottom:14px; }
.profile-sec-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.profile-sec-title { font-size:16px; font-weight:700; color:var(--text-dark); }
.profile-add-more { font-size:12px; font-weight:700; color:var(--cta); cursor:pointer; text-decoration:none; }
.profile-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:4px; }
.profile-scroll::-webkit-scrollbar { height:4px; }
.profile-scroll::-webkit-scrollbar-thumb { background:var(--border); border-radius:2px; }
.prod-thumb { flex-shrink:0; text-align:center; cursor:pointer; }
.prod-thumb img { width:100px; height:80px; object-fit:cover; border-radius:8px; border:1px solid var(--border); display:block; }
.prod-thumb span { font-size:11px; color:var(--text-gray); display:block; margin-top:4px; max-width:100px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.req-card { background:#fff; border-radius:12px; box-shadow:var(--shadow); overflow:hidden; cursor:pointer; transition:box-shadow .15s; flex-shrink:0; min-width:190px; max-width:210px; }
.req-card:hover { box-shadow:var(--shadow-md); }
.req-card-img { position:relative; height:120px; overflow:hidden; }
.req-card-img img { width:100%; height:100%; object-fit:cover; }
.req-status { position:absolute; top:8px; right:8px; font-size:10px; font-weight:700; padding:2px 8px; border-radius:50px; }
.req-status.active { background:#DCFCE7; color:#16A34A; }
.req-status.expired { background:#FEE2E2; color:#DC2626; }
.req-card-body { padding:10px 12px; }
.req-ref { font-size:10px; color:var(--text-gray); margin-bottom:3px; }
.req-title { font-size:12px; font-weight:700; color:var(--text-dark); margin-bottom:6px; line-height:1.4; }
.req-meta-row { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.req-meta-lbl { font-size:10px; color:var(--text-gray); }
.req-meta-val { font-size:11px; font-weight:600; color:var(--text-dark); }
.contact-pers-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.contact-pers-item { padding:12px 16px; border-right:1px solid var(--border); }
.contact-pers-item:last-child { border-right:none; }
.contact-pers-item label { font-size:11px; color:var(--text-gray); display:block; margin-bottom:3px; }
.contact-pers-item span { font-size:13px; font-weight:600; color:var(--text-dark); }

/* ── MESSAGE PAGE ────────────────────────────────────────────── */
.msg-sidebar { border-right: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; }
.msg-sidebar-top { padding: 12px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.msg-panel { display: flex; flex-direction: column; overflow: hidden; background: var(--input-bg); }
.msg-panel-top { padding: 14px 18px; background: #fff; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.msg-panel-title { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.msg-panel-meta { font-size: 12px; color: var(--text-gray); margin-top: 2px; }
.msg-thread { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.msg-input-bar { padding: 10px 14px; background: #fff; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.msg-send { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.msg-send:disabled { opacity: .5; cursor: not-allowed; }
.msg-wrap { display: flex; align-items: flex-end; gap: 8px; }
.msg-wrap.sent { flex-direction: row-reverse; }
.msg-sender-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.msg-content { display: flex; flex-direction: column; max-width: 70%; }
.msg-sender-name { font-size: 11px; color: var(--text-gray); margin-bottom: 3px; }
.msg-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; word-break: break-word; white-space: pre-wrap; }
.msg-time { font-size: 10px; color: var(--text-light); margin-top: 3px; }
.msg-time.right { text-align: right; }
.conv-info { flex: 1; min-width: 0; }
.conv-top { display: flex; align-items: center; justify-content: space-between; gap: 4px; margin-bottom: 3px; }
.conv-name { font-size: 13px; font-weight: 600; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-preview { font-size: 12px; color: var(--text-gray); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.conv-badge { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 50px; flex-shrink: 0; }
.conv-badge.new { background: #EFF6FF; color: var(--cta); }
.conv-badge.closed { background: #FEF2F2; color: #EF4444; }
.unread-dot { min-width: 18px; height: 18px; border-radius: 50%; background: var(--cta); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#convList { flex: 1; overflow-y: auto; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) { .req-grid { grid-template-columns: repeat(3, 1fr); } .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } .profile-details-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  :root { --sidebar-w: 52px; }
  .nav-label { opacity: 0; pointer-events: none; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-3, .form-row-2 { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .msg-layout { grid-template-columns: 1fr; }
  .dir-card-img { width: 120px; min-width: 120px; }
  .w-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .w-nav-links { display: none; }
  .hero-section h1 { font-size: 28px; }
  .hero-img { display: none; }
}
