/* =========================================================
   CLIENT HUNTER PRO — MODERN DARK GLASSMORPHIC DESIGN SYSTEM
   ========================================================= */

:root {
  --bg-main: #080c14;
  --bg-secondary: #0f172a;
  --card-bg: rgba(18, 26, 43, 0.72);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(26, 38, 64, 0.85);
  
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.25);
  --primary-hover: #059669;
  
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --gold-bg: rgba(245, 158, 11, 0.12);
  
  --cyan: #06b6d4;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --red: #f43f5e;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.15);
  
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
}

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

body.dark-theme {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Animated Glow Spheres */
.glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
}
.glow-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
  bottom: -50px;
  left: -50px;
}

/* Layout Container */
.app-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  position: relative;
  z-index: 1;
}

/* Glassmorphic Base */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-title span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #06101e;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.logo-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.region-tabs {
  display: flex;
  background: rgba(15, 23, 42, 0.8);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
}

.region-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.region-tab.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
  color: var(--text-main);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
}

.hot-badge {
  font-size: 10px;
  background: #f43f5e;
  color: #fff;
  padding: 1px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

/* =========================================================
   SEARCH PANEL
   ========================================================= */
.search-panel {
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.search-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, #06b6d4, transparent);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-title i {
  font-size: 24px;
  color: var(--primary);
}

.panel-title h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.panel-title p {
  font-size: 13px;
  color: var(--text-muted);
}

.strategy-tip {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  color: #fde68a;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 480px;
}

.search-form {
  display: grid;
  grid-template-columns: 1.5fr 1.8fr 1fr auto;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

select, input[type="text"] {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
  appearance: none;
}

select:focus, input[type="text"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: rgba(18, 28, 51, 0.95);
}

.sub-input {
  font-size: 12px !important;
  padding: 8px 12px !important;
  background: rgba(15, 23, 42, 0.5) !important;
  border-style: dashed !important;
}

.sub-input::placeholder {
  color: var(--text-dim);
}

.btn-hunt {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
  height: 48px;
}

.btn-hunt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.btn-hunt:active {
  transform: translateY(0);
}

.quick-presets {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.preset-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.chip-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-color: rgba(16, 185, 129, 0.3);
}

/* =========================================================
   METRICS ROW
   ========================================================= */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.metric-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.metric-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.metric-icon.gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.metric-icon.green { background: rgba(37, 211, 102, 0.15); color: #4ade80; }
.metric-icon.purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }

.gold-border { border-color: rgba(245, 158, 11, 0.3); }
.green-border { border-color: rgba(37, 211, 102, 0.3); }
.purple-border { border-color: rgba(139, 92, 246, 0.3); }

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =========================================================
   RESULTS SECTION
   ========================================================= */
.results-header {
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab.active {
  background: var(--text-main);
  color: var(--bg-main);
  border-color: var(--text-main);
}

.results-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

.search-box input {
  padding: 8px 14px 8px 34px !important;
  font-size: 13px !important;
  width: 240px;
  border-radius: var(--radius-full) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================================================
   LEADS GRID & CARDS
   ========================================================= */
.leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 20px;
}

.lead-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  position: relative;
}

.lead-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6);
}

.lead-card.golden-card {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(18, 26, 43, 0.8) 100%);
}

.lead-card.golden-card::after {
  content: '🔥 NO WEBSITE';
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 10px;
  font-weight: 800;
  background: var(--gold-bg);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.lead-top {
  margin-bottom: 16px;
}

.lead-badge-category {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.lead-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 4px;
}

.lead-arabic-name {
  font-family: var(--font-arabic);
  font-size: 15px;
  color: #a7f3d0;
  margin-bottom: 6px;
  direction: rtl;
  text-align: left;
}

.lead-location {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.detail-label {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-val {
  font-weight: 600;
  color: var(--text-main);
}

.no-web-val {
  color: #fbbf24;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.1);
  padding: 1px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.web-val {
  color: #60a5fa;
  text-decoration: none;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-val:hover {
  text-decoration: underline;
}

.lead-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-row-primary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-whatsapp-lead {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-find-mobile {
  background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #833ab4 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-find-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(225, 48, 108, 0.45);
}

.badge-mobile {
  font-size: 10px;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.badge-landline {
  font-size: 10px;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.btn-pitch-trigger {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--card-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-pitch-trigger:hover {
  background: rgba(255, 255, 255, 0.15);
}

.action-row-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.external-links {
  display: flex;
  gap: 12px;
}

.ext-link {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ext-link:hover {
  color: var(--text-main);
}

.btn-audit-inline {
  background: transparent;
  border: none;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-audit-inline:hover {
  text-decoration: underline;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-icon {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 8px;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.empty-state p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 14px;
}

.empty-quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.btn-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pill:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary);
  color: #6ee7b7;
}

/* =========================================================
   MODALS
   ========================================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-lg { max-width: 720px; }
.modal-md { max-width: 540px; }

.modal-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--card-border);
}

.modal-tag {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.modal-title-wrap h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-top: 2px;
}

.modal-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-close {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--card-border);
  background: rgba(15, 23, 42, 0.6);
  padding: 0 16px;
}

.modal-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.modal-tab.active {
  color: var(--text-main);
}

.modal-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.pitch-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.btn-copy {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background: rgba(16, 185, 129, 0.25);
}

.pitch-textarea {
  width: 100%;
  background: rgba(10, 15, 28, 0.85);
  border: 1px solid var(--card-border);
  color: #e2e8f0;
  padding: 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  outline: none;
}

.tajawal-font {
  font-family: var(--font-arabic), var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

.subject-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  background: rgba(15, 23, 42, 0.8);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.subject-box label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
}

.subject-box input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: #93c5fd !important;
}

.btn-mini-copy {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-whatsapp-action {
  background: #25d366;
  color: #032d18;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-whatsapp-action:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* =========================================================
   AUDIT REPORT VIEW IN MODAL
   ========================================================= */
.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.audit-item {
  background: rgba(15, 23, 42, 0.7);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.audit-item i {
  font-size: 20px;
}

.audit-item.good i { color: #34d399; }
.audit-item.bad i { color: #f87171; }
.audit-item.warn i { color: #fbbf24; }

.audit-meta h4 {
  font-size: 13px;
  font-weight: 600;
}

.audit-meta p {
  font-size: 11px;
  color: var(--text-muted);
}

.scraped-box {
  background: rgba(15, 23, 42, 0.7);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  margin-bottom: 12px;
}

.scraped-box h5 {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.email-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.social-links-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =========================================================
   TOAST
   ========================================================= */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f172a;
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 900px) {
  .search-form {
    grid-template-columns: 1fr;
  }
  .leads-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   NAV TOOLS & HEADER BUTTONS
   ========================================================= */
.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-tool-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-tool-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================================
   VERIFICATION & OPERATIONAL BADGES
   ========================================================= */
.badge-verification-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  transition: all 0.2s ease;
}

.badge-verified-active {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.badge-verified-risk {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-verified-closed {
  background: rgba(244, 63, 94, 0.15);
  color: #f87171;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.badge-verified-pending {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Lead Action Buttons */
.action-row-tertiary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 8px;
}

.btn-verify-status {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-verify-status:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
}

.btn-mark-closed {
  background: transparent;
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #f87171;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-mark-closed:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
}

.btn-restore-lead {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-restore-lead:hover {
  background: rgba(59, 130, 246, 0.2);
}

/* Blacklist Management Modal List */
.blacklist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.blacklist-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blacklist-item-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.blacklist-item-info p {
  font-size: 12px;
  color: var(--text-dim);
}

.badge-closed-reason {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: rgba(244, 63, 94, 0.12);
  color: #f87171;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Verification Result Box in Modal */
.verify-result-card {
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.verify-result-card.operational {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.verify-result-card.closed {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.verify-result-card.stale {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.verify-reasons-list {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.verify-reasons-list li {
  margin-bottom: 6px;
}

/* ==========================================================================
   HIGH CONVERSION NEXT-LEVEL EXTENSIONS
   ========================================================================== */

/* 1. Concept Live Demo Header in Pitch Modal */
.concept-preview-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.concept-preview-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.preview-banner-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.preview-url-text {
  font-size: 11px;
  color: #94a3b8;
  font-family: monospace;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.concept-preview-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-demo-action {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-demo-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-copy-demo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-copy-demo:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* 2. Voice Note Script Cards */
.voice-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}

.voice-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.voice-tag {
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.voice-hint {
  display: block;
  font-size: 11px;
  color: #fbbf24;
  margin-top: 6px;
}

.btn-copy-sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-copy-sm:hover {
  background: var(--primary);
  color: #fff;
}

/* 3. Follow-Up Sequence Cards */
.followup-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}

.followup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.followup-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-day3 {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.badge-day7 {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* 4. Multi-Service Pitch Cards */
.service-pitch-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}

.service-pitch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.service-pitch-badge {
  font-size: 12px;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 5. Visual Scorecard Modal */
.scorecard-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.grade-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.grade-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
}

.grade-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.grade-info p {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.4;
}

.revenue-loss-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
}
.loss-label {
  font-size: 12px;
  color: #fbbf24;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.loss-amount {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.loss-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

.metrics-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.score-metric-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}
.score-metric-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 16px;
}
.score-metric-title {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 4px;
}
.score-metric-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.score-metric-hint {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 4px;
}

.scorecard-copy-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
}
.scorecard-copy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 600;
}

/* 6. Lead Card Actions & CRM Status Tag */
.lead-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-top: 10px;
}

.lead-status-select {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}
.lead-status-select:focus {
  border-color: var(--primary);
}

.btn-card-demo {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-card-demo:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-card-scorecard {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-card-scorecard:hover {
  background: #ef4444;
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   REDDIT TECH CLIENT HUNTER STYLES
   ========================================================= */
.reddit-leads-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reddit-lead-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reddit-lead-card:hover {
  border-color: #ff4500;
  transform: translateY(-1px);
}

.reddit-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reddit-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.reddit-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.reddit-pill-sub {
  background: rgba(255, 69, 0, 0.15);
  color: #ff6535;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.reddit-pill-budget {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.reddit-pill-kw {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
}

.reddit-snippet-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reddit-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.reddit-author-info {
  font-size: 12px;
  color: #94a3b8;
}

.reddit-author-info b {
  color: #e2e8f0;
}

.btn-reddit-pitch {
  background: #ff4500;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-reddit-pitch:hover {
  background: #e03d00;
  transform: translateY(-1px);
}


