/* ═══════════════════════════════════════════
   ENKORE CAPITAL — ADMIN DASHBOARD STYLES
   ═══════════════════════════════════════════ */

:root {
  --gold: #E8A020;
  --gold-light: #F5B84C;
  --gold-dark: #C8881A;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A2E;
  --sidebar-w: 248px;
  --topbar-h: 60px;
  --gray-1: #F8F9FA;
  --gray-2: #F0F1F3;
  --gray-3: #E0E2E6;
  --gray-4: #9CA3AF;
  --text: #1A1A2E;
  --text-light: #4B5563;
  --white: #FFFFFF;
  --green: #22C55E;
  --red: #EF4444;
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --radius: 10px;
  --radius-sm: 7px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--gray-1); color: var(--text); line-height: 1.5; }
a { text-decoration: none; }

/* ══ LOGIN ══ */
.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 24px;
}
.login-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.login-logo { text-align: center; margin-bottom: 28px; }
.login-box h2 { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.login-sub { font-size: 14px; color: var(--text-light); text-align: center; margin-bottom: 28px; }
.login-back { text-align: center; margin-top: 20px; font-size: 13px; }
.login-back a { color: var(--gold); }

/* ══ LAYOUT ══ */
#adminApp { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  background: var(--dark-2);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 200;
  border-right: 1px solid rgba(255,255,255,0.05);
  overflow-y: auto;
}

.sidebar-logo {
  padding: 18px 20px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sidebar-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  background: var(--gold); color: var(--dark);
  padding: 2px 8px; border-radius: 100px;
}

.sidebar-nav {
  flex: 1; padding: 14px 10px;
  display: flex; flex-direction: column; gap: 2px;
}

.nav-section-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  padding: 4px 10px 2px;
  margin-top: 4px;
}

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all 0.18s;
  border: none; background: none;
  width: 100%; text-align: left;
}
.nav-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.nav-item.active { background: rgba(232,160,32,0.14); color: var(--gold); font-weight: 600; }

.nav-icon { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }

.nav-badge {
  margin-left: auto;
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 100px;
  min-width: 20px; text-align: center;
}

.sidebar-footer {
  padding: 14px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sidebar-user {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 7px;
}
.btn-view-site {
  display: block; text-align: center;
  color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 500;
  padding: 8px; border-radius: 7px; margin-bottom: 6px;
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.btn-view-site:hover { color: var(--gold); background: rgba(232,160,32,0.1); }
.btn-logout {
  width: 100%;
  background: rgba(239,68,68,0.12); color: var(--red);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 7px; padding: 8px;
  font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: var(--font);
  transition: all 0.2s;
}
.btn-logout:hover { background: rgba(239,68,68,0.22); }

.main-content { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; display: flex; flex-direction: column; }

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-3);
  padding: 0 28px;
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 100;
  flex-shrink: 0;
}
.sidebar-toggle { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-light); display: none; }
.topbar-title { font-size: 15px; font-weight: 700; flex: 1; color: var(--text); }
.topbar-actions { display: flex; gap: 10px; }

/* ══ PAGES ══ */
.page { display: none; padding: 28px; flex: 1; }
.page.active { display: block; }

.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.page-header h1 { font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.page-header p { font-size: 13px; color: var(--text-light); }
.page-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ══ STATS ══ */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: var(--white); border: 1px solid var(--gray-3);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 16px;
  transition: box-shadow 0.2s;
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card.stat-gold { border-color: rgba(232,160,32,0.3); background: rgba(232,160,32,0.04); }
.stat-icon { font-size: 26px; flex-shrink: 0; }
.stat-val { font-size: 26px; font-weight: 900; color: var(--text); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ══ CARDS ══ */
.card { background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius); margin-bottom: 20px; overflow: hidden; }
.card-header { padding: 14px 20px; border-bottom: 1px solid var(--gray-3); display: flex; align-items: center; justify-content: space-between; }
.card-header h3 { font-size: 14px; font-weight: 700; }

.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.dashboard-grid .card { margin-bottom: 0; }

/* ══ TABLES ══ */
.table-wrapper { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  background: var(--gray-1); padding: 9px 14px;
  text-align: left; font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--text-light);
  text-transform: uppercase; border-bottom: 1px solid var(--gray-3);
  white-space: nowrap;
}
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-2); color: var(--text); vertical-align: middle; }
.data-table tr:hover td { background: var(--gray-1); }
.data-table tr:last-child td { border-bottom: none; }

/* ══ STATUS BADGES ══ */
.badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.badge-new { background: rgba(59,130,246,0.1); color: var(--blue); }
.badge-contacted { background: rgba(232,160,32,0.12); color: var(--gold-dark); }
.badge-qualified { background: rgba(34,197,94,0.1); color: #16A34A; }
.badge-committed { background: rgba(139,92,246,0.1); color: var(--purple); }
.badge-invested { background: rgba(34,197,94,0.18); color: #15803D; }
.badge-not-interested { background: rgba(239,68,68,0.1); color: var(--red); }

/* ══ FILTERS ══ */
.filters-bar { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.search-input { flex: 1; min-width: 200px; padding: 9px 14px; border: 1px solid var(--gray-3); border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font); outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--gold); }
.filter-select { padding: 9px 14px; border: 1px solid var(--gray-3); border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font); background: var(--white); outline: none; cursor: pointer; }

/* ══ PAGINATION ══ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px; border-top: 1px solid var(--gray-3); flex-wrap: wrap; }
.page-btn { padding: 5px 12px; border: 1px solid var(--gray-3); border-radius: 6px; background: var(--white); font-size: 12px; cursor: pointer; font-family: var(--font); transition: all 0.2s; }
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); font-weight: 700; }

/* ══ BUTTONS ══ */
.btn-primary { background: var(--gold); color: var(--dark); border: none; border-radius: var(--radius-sm); padding: 10px 20px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--gray-3); border-radius: var(--radius-sm); padding: 10px 20px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.25); border-radius: var(--radius-sm); padding: 10px 20px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: all 0.2s; }
.btn-danger:hover { background: rgba(239,68,68,0.2); }
.btn-icon { background: none; border: none; cursor: pointer; font-size: 15px; padding: 4px 6px; border-radius: 5px; transition: background 0.2s; }
.btn-icon:hover { background: var(--gray-2); }

/* ══ MODALS ══ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: var(--white); border-radius: var(--radius); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-md); }
.modal-lg { max-width: 720px; }
.modal-header { padding: 18px 24px; border-bottom: 1px solid var(--gray-3); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-header h3 { font-size: 17px; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--gray-4); transition: color 0.2s; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 22px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--gray-3); }
.modal-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

/* ══ FORMS ══ */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 9px 12px; border: 1px solid var(--gray-3); border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font); color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-hint { display: block; font-size: 11px; color: var(--gray-4); margin-top: 3px; font-weight: 400; }
.req { color: var(--red); }

/* ══ ALERTS ══ */
.alert { padding: 11px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 14px; }
.alert-error { background: rgba(239,68,68,0.08); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }
.alert-success { background: rgba(34,197,94,0.08); color: #16A34A; border: 1px solid rgba(34,197,94,0.2); }

/* ══ PROJECTS ADMIN LIST ══ */
.projects-admin-list { display: flex; flex-direction: column; gap: 12px; }
.project-admin-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius); padding: 18px 22px; display: flex; align-items: center; gap: 18px; transition: box-shadow 0.2s; }
.project-admin-card:hover { box-shadow: var(--shadow-md); }
.project-admin-order { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-2); color: var(--text-light); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.project-admin-info { flex: 1; min-width: 0; }
.project-admin-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.project-admin-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 14px; flex-wrap: wrap; }
.project-admin-actions { display: flex; gap: 8px; flex-shrink: 0; }
.project-status-pill { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.status-active { background: rgba(34,197,94,0.1); color: #16A34A; }
.status-hidden { background: rgba(156,163,175,0.2); color: var(--gray-4); }
.status-closed { background: rgba(239,68,68,0.1); color: var(--red); }

/* ══ INVESTOR DETAIL ══ */
.investor-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.detail-item label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-light); text-transform: uppercase; display: block; margin-bottom: 3px; }
.detail-item span { font-size: 13px; color: var(--text); font-weight: 500; }
.detail-full { grid-column: span 2; }

/* ══ SETTINGS ══ */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.settings-body { padding: 20px 22px; }

/* ══ HELP & DOCS ══ */
.help-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.help-tab { padding: 9px 18px; border: 1.5px solid var(--gray-3); border-radius: 8px; background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); color: var(--text-light); transition: all 0.2s; }
.help-tab:hover { border-color: var(--gold); color: var(--gold); }
.help-tab.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.help-tab-content { display: none; }
.help-tab-content.active { display: block; }

.help-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); border-radius: var(--radius); padding: 32px 36px; margin-bottom: 24px; }
.help-hero-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; background: rgba(232,160,32,0.18); color: var(--gold); border: 1px solid rgba(232,160,32,0.3); padding: 3px 12px; border-radius: 100px; margin-bottom: 12px; }
.help-hero h2 { font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.help-hero p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 640px; margin-bottom: 16px; }
.help-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.help-meta span { font-size: 12px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); padding: 4px 12px; border-radius: 100px; }

.help-steps { display: flex; flex-direction: column; gap: 12px; }
.help-step { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius); padding: 22px 26px; transition: box-shadow 0.2s; }
.help-step:hover { box-shadow: var(--shadow-md); }
.help-step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--dark); font-size: 15px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.help-step-body { flex: 1; min-width: 0; }
.help-step-body h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.help-step-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.help-step-body p:last-child { margin-bottom: 0; }

.help-callout { border-radius: 7px; padding: 11px 14px; margin: 10px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.6; }
.help-tip { background: rgba(34,197,94,0.07); border-left: 3px solid var(--green); }
.help-warning { background: rgba(232,160,32,0.07); border-left: 3px solid var(--gold); }
.help-info { background: rgba(59,130,246,0.07); border-left: 3px solid var(--blue); }
.help-callout span { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.help-callout div { color: var(--text-light); }
.help-callout div strong { display: block; font-size: 12px; font-weight: 700; margin-bottom: 3px; color: var(--text); }

.help-table { width: 100%; border-collapse: collapse; font-size: 12px; margin: 12px 0; }
.help-table th { background: var(--gray-1); padding: 7px 12px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--text-light); text-transform: uppercase; border-bottom: 2px solid var(--gray-3); }
.help-table td { padding: 8px 12px; border-bottom: 1px solid var(--gray-2); vertical-align: top; color: var(--text-light); line-height: 1.5; }
.help-table tr:last-child td { border-bottom: none; }
.help-table tr:hover td { background: var(--gray-1); }
.help-table code { background: var(--gray-2); color: var(--text); font-family: 'Courier New', monospace; font-size: 11px; padding: 1px 5px; border-radius: 3px; white-space: nowrap; }
.req-badge { display: inline-block; font-size: 9px; font-weight: 700; background: rgba(239,68,68,0.1); color: #DC2626; padding: 1px 6px; border-radius: 100px; margin-left: 4px; vertical-align: middle; }

.help-list { list-style: none; padding: 0; margin: 8px 0; }
.help-list li { padding: 7px 0 7px 18px; border-bottom: 1px solid var(--gray-2); font-size: 13px; color: var(--text-light); position: relative; line-height: 1.6; }
.help-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.help-list li:last-child { border-bottom: none; }

/* ══ QUICK REFERENCE ══ */
.qr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.qr-card { background: var(--white); border: 1px solid var(--gray-3); border-radius: var(--radius); padding: 20px; }
.qr-card-title { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }

/* ══ MY PROFILE BUTTON ══ */
.btn-my-profile {
  width: 100%;
  background: rgba(232,160,32,0.1); color: var(--gold);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 7px; padding: 8px;
  font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: var(--font);
  transition: all 0.2s; margin-bottom: 6px;
  text-align: center;
}
.btn-my-profile:hover { background: rgba(232,160,32,0.2); }

/* ══ PROFILE CARD ══ */
.profile-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(232,160,32,0.2);
}
.profile-card-header {
  display: flex; align-items: center; gap: 18px;
}
.profile-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 3px solid rgba(232,160,32,0.4);
}
.profile-info { flex: 1; min-width: 0; }
.profile-name {
  font-size: 18px; font-weight: 800;
  color: var(--white); margin-bottom: 3px;
}
.profile-email {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.profile-role-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

/* ══ ROLE PILLS ══ */
.role-pill {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.role-superadmin { background: rgba(239,68,68,0.15); color: #EF4444; }
.role-admin { background: rgba(232,160,32,0.15); color: var(--gold); }
.role-viewer { background: rgba(34,197,94,0.12); color: #22C55E; }

/* ══ PROFILE MODAL TABS ══ */
.profile-modal-tabs {
  display: flex; gap: 8px; border-bottom: 1px solid var(--gray-3);
  padding-bottom: 0; margin-bottom: 0;
}
.profile-tab {
  padding: 9px 16px;
  background: none; border: none; border-bottom: 2px solid transparent;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font); color: var(--text-light);
  transition: all 0.2s; margin-bottom: -1px;
}
.profile-tab:hover { color: var(--text); }
.profile-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.profile-tab-content { display: none; }
.profile-tab-content.active { display: block; }

/* ══ PASSWORD STRENGTH ══ */
.password-strength {
  margin-top: 6px; height: 4px; border-radius: 2px;
  background: var(--gray-3); overflow: hidden;
  position: relative;
}
.password-strength::after {
  content: '';
  position: absolute; top: 0; left: 0; height: 100%;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
  width: var(--strength-width, 0%);
  background: var(--strength-color, var(--gray-3));
}
.strength-label {
  font-size: 11px; margin-top: 4px;
  font-weight: 600;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .settings-grid { grid-template-columns: 1fr; }
  .qr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.28s ease; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .sidebar-toggle { display: block; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .investor-detail-grid { grid-template-columns: 1fr; }
  .detail-full { grid-column: span 1; }
}
@media (max-width: 600px) {
  .page { padding: 16px; }
  .topbar { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal-box { max-height: 95vh; }
  .help-step { padding: 16px; }
  .help-hero { padding: 22px; }
}
