/* ============================================================
   JurisCRM - Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f2744;
  --navy-mid: #1a3a5c;
  --navy-light: #1e4976;
  --gold: #e8c97e;
  --gold-dark: #c9a84c;
  --white: #ffffff;
  --bg: #f0f4f8;
  --bg-card: #ffffff;
  --border: #d1dce8;
  --text: #1a2b3c;
  --text-muted: #5a7a96;
  --text-light: #8ba4be;

  --green: #059669;
  --green-light: #d1fae5;
  --yellow: #d97706;
  --yellow-light: #fef3c7;
  --red: #dc2626;
  --red-light: #fee2e2;
  --blue: #2563eb;
  --blue-light: #dbeafe;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --orange: #ea580c;
  --orange-light: #fed7aa;

  --sidebar-width: 230px;
  --sidebar-collapsed: 60px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(15,39,68,0.08), 0 1px 2px rgba(15,39,68,0.06);
  --shadow-md: 0 4px 6px rgba(15,39,68,0.07), 0 2px 4px rgba(15,39,68,0.06);
  --shadow-lg: 0 10px 15px rgba(15,39,68,0.1), 0 4px 6px rgba(15,39,68,0.05);
  --transition: 0.18s ease;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ============================================================ LOGIN */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy);
}
.login-bg {
  position: absolute;inset:0;
  background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 50%, #0f2744 100%);
  overflow: hidden;
}
.login-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(232,201,126,0.05);
  top: -200px; right: -200px;
}
.login-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,201,126,0.04);
  bottom: -150px; left: -150px;
}
.login-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.login-card h2 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.login-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 28px; }
.login-footer { margin-top: 24px; text-align: center; font-size: 11px; color: var(--text-light); }

/* ============================================================ LAYOUT */
#app { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-width);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: width var(--transition);
  overflow: hidden;
}
.sidebar.collapsed { width: var(--sidebar-collapsed); }
.sidebar.collapsed .sidebar-logo span,
.sidebar.collapsed .nav-item span,
.sidebar.collapsed .user-info,
.sidebar.collapsed .nav-divider span { display: none; }
.sidebar.collapsed .nav-divider { border-top: 1px solid rgba(255,255,255,0.1); padding: 0; }
.sidebar.collapsed .badge { display: none !important; }

.sidebar-header {
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: var(--gold);
  white-space: nowrap; overflow: hidden;
}
.sidebar-toggle {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); padding: 4px; border-radius: 6px;
  transition: all var(--transition);
}
.sidebar-toggle:hover { color: white; background: rgba(255,255,255,0.1); }

.sidebar-nav {
  flex: 1;
  padding: 12px 8px;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
.nav-item:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-item.active { color: var(--gold); background: rgba(232,201,126,0.12); }
.nav-item svg { flex-shrink: 0; }
.nav-item span:first-of-type { flex: 1; }

.nav-divider {
  padding: 16px 10px 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.sidebar-user {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
}
.user-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.user-info { flex: 1; overflow: hidden; }
.user-name { font-size: 13px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: capitalize; }

.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
  transition: margin-left var(--transition);
}
.sidebar.collapsed ~ .main-content { margin-left: var(--sidebar-collapsed); }

/* ============================================================ PAGE */
.page { padding: 24px; max-width: 1400px; }
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.page-title { font-size: 22px; font-weight: 700; color: var(--navy); }
.page-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================ CARDS */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.card-body { padding: 20px; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-sub { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.stat-card.green .stat-value { color: var(--green); }
.stat-card.red .stat-value { color: var(--red); }
.stat-card.yellow .stat-value { color: var(--yellow); }
.stat-card.blue .stat-value { color: var(--blue); }
.stat-card.purple .stat-value { color: var(--purple); }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

/* ============================================================ FORMS */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13.5px;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,73,118,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.form-section { margin-bottom: 24px; }
.form-section-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--navy); margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gold);
}
.input-password { position: relative; }
.input-password input { padding-right: 40px; }
.input-password .btn-icon { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--navy); color: white; border-color: var(--navy); }
.btn-primary:hover:not(:disabled) { background: var(--navy-light); }
.btn-secondary { background: white; color: var(--navy); border-color: var(--border); }
.btn-secondary:hover:not(:disabled) { background: var(--bg); border-color: var(--navy); }
.btn-success { background: var(--green); color: white; border-color: var(--green); }
.btn-success:hover:not(:disabled) { opacity: 0.9; }
.btn-danger { background: var(--red); color: white; border-color: var(--red); }
.btn-danger:hover:not(:disabled) { opacity: 0.9; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover:not(:disabled) { background: var(--gold-dark); }
.btn-full { width: 100%; justify-content: center; padding: 11px 16px; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-icon {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 6px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.btn-icon:hover { color: var(--navy); background: var(--bg); }

/* ============================================================ TABLE */
.table-container { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  vertical-align: middle;
}
tbody tr { transition: background var(--transition); }
tbody tr:hover { background: #f8fafc; }
tbody tr:last-child td { border-bottom: none; }

/* ============================================================ BADGES & STATUS */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-red { background: var(--red-light); color: var(--red); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-gray { background: #f1f5f9; color: #64748b; }
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-navy { background: #dbeafe; color: var(--navy); }

.status-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ============================================================ PRIORITY */
.priority-urgent { color: var(--red); font-weight: 600; }
.priority-high { color: var(--orange); }
.priority-normal { color: var(--blue); }
.priority-low { color: var(--text-muted); }

/* ============================================================ FILTERS */
.filters-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.search-box {
  position: relative; flex: 1; min-width: 200px;
}
.search-box input {
  width: 100%; padding: 8px 12px 8px 36px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; background: white;
  transition: all var(--transition);
}
.search-box input:focus { outline: none; border-color: var(--navy-light); }
.search-box svg {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-light);
}
.filter-select {
  padding: 8px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px;
  background: white; cursor: pointer; color: var(--text);
  font-family: inherit;
}

/* ============================================================ MODAL */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,39,68,0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 14px;
  width: 100%; max-width: 700px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
.modal.modal-lg { max-width: 900px; }
.modal.modal-sm { max-width: 480px; }
@keyframes modalIn { from { opacity:0; transform: scale(0.96) translateY(10px); } to { opacity:1; transform: none; } }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: white; z-index: 1;
}
.modal-header h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
#modal-body { padding: 22px; }
.modal-footer {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 16px 22px; border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ============================================================ ALERTS */
.alert {
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.alert-error { background: var(--red-light); color: var(--red); border: 1px solid #fca5a5; }
.alert-success { background: var(--green-light); color: var(--green); border: 1px solid #6ee7b7; }
.alert-warning { background: var(--yellow-light); color: var(--yellow); border: 1px solid #fcd34d; }
.alert-info { background: var(--blue-light); color: var(--blue); border: 1px solid #93c5fd; }

/* ============================================================ TOASTS */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  padding: 12px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.25s ease;
  display: flex; align-items: center; gap: 10px;
  max-width: 340px;
}
.toast.success { background: #065f46; color: #d1fae5; }
.toast.error { background: #991b1b; color: #fee2e2; }
.toast.info { background: var(--navy); color: #bfdbfe; }
.toast.warning { background: #92400e; color: #fef3c7; }
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: none; } }
@keyframes toastOut { to { opacity:0; transform: translateX(20px); } }

/* ============================================================ TABS */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.tab {
  padding: 10px 18px; cursor: pointer; font-size: 13px; font-weight: 500;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.tab:hover { color: var(--navy); }
.tab.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }

/* ============================================================ TIMELINE */
.timeline { position: relative; padding-left: 24px; }
.timeline::before { content:''; position:absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 18px; }
.timeline-dot {
  position: absolute; left: -21px; top: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.timeline-date { font-size: 11px; color: var(--text-light); margin-bottom: 3px; }
.timeline-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.timeline-desc { font-size: 12px; color: var(--text-muted); }
.timeline-user { font-size: 11px; color: var(--text-light); margin-top: 3px; }

/* ============================================================ EMPTY STATE */
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state svg { margin: 0 auto 16px; opacity: 0.3; display: block; }
.empty-state h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.empty-state p { font-size: 13px; }

/* ============================================================ LOADING */
.loading {
  display: flex; align-items: center; justify-content: center;
  padding: 48px; color: var(--text-muted);
}
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--navy);
  animation: spin 0.6s linear infinite;
  margin-right: 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================ DOCUMENT CHECKLIST */
.doc-list { display: flex; flex-direction: column; gap: 6px; }
.doc-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg);
  transition: all var(--transition);
}
.doc-item.received { border-color: #6ee7b7; background: #f0fdf4; }
.doc-item.pending { border-color: #fca5a5; background: #fef2f2; }
.doc-item-name { font-size: 12.5px; font-weight: 500; }
.doc-item-status { font-size: 11px; font-weight: 600; }

/* ============================================================ FINANCIAL */
.fin-summary {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.fin-box {
  padding: 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg);
}
.fin-box label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.fin-box .amount { font-size: 22px; font-weight: 700; font-family: 'IBM Plex Mono'; }
.fin-box.contracted .amount { color: var(--navy); }
.fin-box.received .amount { color: var(--green); }
.fin-box.pending .amount { color: var(--red); }

.installment-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 6px;
  background: white;
}
.installment-row.paid { background: #f0fdf4; border-color: #6ee7b7; }
.installment-row.overdue { background: #fef2f2; border-color: #fca5a5; }

/* ============================================================ PAGINATION */
.pagination {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; justify-content: center;
}
.pagination .btn { padding: 5px 12px; min-width: 34px; justify-content: center; }
.pagination .btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ============================================================ CHART BARS */
.bar-chart { margin-top: 12px; }
.bar-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bar-label { font-size: 12px; color: var(--text-muted); white-space: nowrap; min-width: 140px; overflow: hidden; text-overflow: ellipsis; }
.bar-track { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--navy-light); transition: width 0.6s ease; }
.bar-value { font-size: 12px; font-weight: 600; color: var(--navy); min-width: 40px; text-align: right; }

/* ============================================================ RESPONSIVE */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.mobile-open { transform: translateX(0); }
  .main-content { margin-left: 0 !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fin-summary { grid-template-columns: 1fr; }
  .page { padding: 16px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .filters-bar { flex-direction: column; }
  .search-box { min-width: 100%; }
}

/* ============================================================ MISC */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-mono { font-family: 'IBM Plex Mono'; }
.font-bold { font-weight: 700; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chip {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  background: var(--navy); color: white;
}
.actions { display: flex; align-items: center; gap: 4px; }
.divider { height: 1px; background: var(--border); margin: 16px 0; }
hr { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
select option[value=""] { color: var(--text-muted); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b0bec5; }

/* Client detail layout */
.client-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: white;
  margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 20px;
}
.client-avatar-lg {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; flex-shrink: 0;
}
.client-header h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.client-header p { font-size: 13px; opacity: 0.75; }
.client-header .badges { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
