/* ================================================================
   STRATUM EXECUTIVE PROFILE - PREMIUM REDESIGN v2.0
   Ultra-polished executive protection profile viewer
   Competitor-level UI with advanced animations and styling
   ================================================================ */

/* ==================== MODAL OVERLAY ==================== */
.exec-modal-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exec-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==================== MODAL CONTAINER ==================== */
.exec-modal-container {
  width: 100%;
  max-width: 1200px;
  max-height: 94vh;
  background: linear-gradient(175deg, 
    rgba(18, 24, 38, 0.98) 0%, 
    rgba(10, 14, 22, 0.99) 50%,
    rgba(8, 10, 16, 1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 28px;
  box-shadow: 
    0 60px 120px rgba(0, 0, 0, 0.6),
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 80px rgba(139, 92, 246, 0.02);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exec-modal-overlay.active .exec-modal-container {
  transform: scale(1) translateY(0);
}

/* Decorative Elements */
.exec-modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.5) 20%, 
    rgba(59, 130, 246, 0.5) 50%, 
    rgba(139, 92, 246, 0.5) 80%, 
    transparent 100%);
}

/* ==================== CLOSE BUTTON ==================== */
.exec-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exec-modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg);
}

/* ==================== HEADER SECTION ==================== */
.exec-modal-header {
  position: relative;
  padding: 36px 40px 28px;
  overflow: hidden;
}

.exec-modal-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.12) 0%, 
    rgba(59, 130, 246, 0.06) 40%, 
    transparent 80%);
  pointer-events: none;
}

.exec-modal-header.critical .exec-modal-header-bg {
  background: linear-gradient(135deg, 
    rgba(239, 68, 68, 0.15) 0%, 
    rgba(239, 68, 68, 0.06) 40%, 
    transparent 80%);
}

.exec-modal-header.high .exec-modal-header-bg {
  background: linear-gradient(135deg, 
    rgba(249, 115, 22, 0.15) 0%, 
    rgba(249, 115, 22, 0.06) 40%, 
    transparent 80%);
}

.exec-modal-header.medium .exec-modal-header-bg {
  background: linear-gradient(135deg, 
    rgba(234, 179, 8, 0.12) 0%, 
    rgba(234, 179, 8, 0.05) 40%, 
    transparent 80%);
}

.exec-modal-header.low .exec-modal-header-bg {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.12) 0%, 
    rgba(34, 197, 94, 0.05) 40%, 
    transparent 80%);
}

/* Header Content Grid */
.exec-modal-header-content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

/* ==================== AVATAR SECTION ==================== */
.exec-modal-avatar-section {
  flex-shrink: 0;
}

.exec-modal-avatar {
  position: relative;
  width: 120px;
  height: 120px;
}

.exec-modal-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.exec-modal-avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  border: 2px dashed transparent;
  animation: avatar-pulse 3s ease-in-out infinite;
}

.exec-modal-avatar.critical .exec-modal-avatar-ring {
  border-color: rgba(239, 68, 68, 0.4);
}

.exec-modal-avatar.high .exec-modal-avatar-ring {
  border-color: rgba(249, 115, 22, 0.4);
}

.exec-modal-avatar.medium .exec-modal-avatar-ring {
  border-color: rgba(234, 179, 8, 0.4);
}

.exec-modal-avatar.low .exec-modal-avatar-ring {
  border-color: rgba(34, 197, 94, 0.4);
}

@keyframes avatar-pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1) rotate(0deg);
  }
  50% { 
    opacity: 0.5; 
    transform: scale(1.02) rotate(5deg);
  }
}

.exec-modal-status-indicator {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid rgba(10, 14, 22, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.exec-modal-status-indicator.critical { 
  background: #ef4444; 
  animation: status-blink 1.5s infinite;
}
.exec-modal-status-indicator.high { background: #f97316; }
.exec-modal-status-indicator.medium { background: #eab308; }
.exec-modal-status-indicator.low { background: #22c55e; }

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==================== INFO SECTION ==================== */
.exec-modal-info {
  flex: 1;
  min-width: 0;
}

.exec-modal-name {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.exec-modal-title {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
  font-weight: 500;
}

.exec-modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}

.exec-modal-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-modal-meta-item i {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.8);
}

/* ==================== RISK DISPLAY ==================== */
.exec-modal-risk-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 180px;
  text-align: center;
}

.exec-risk-circle {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.exec-risk-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

.exec-risk-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 10;
}

.exec-risk-progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dasharray 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px currentColor);
}

.exec-modal-risk-display.critical .exec-risk-progress { 
  stroke: #ef4444;
  filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.5));
}
.exec-modal-risk-display.high .exec-risk-progress { 
  stroke: #f97316;
  filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.5));
}
.exec-modal-risk-display.medium .exec-risk-progress { 
  stroke: #eab308;
  filter: drop-shadow(0 0 12px rgba(234, 179, 8, 0.5));
}
.exec-modal-risk-display.low .exec-risk-progress { 
  stroke: #22c55e;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.5));
}

.exec-risk-value {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.exec-risk-number {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  display: block;
}

.exec-risk-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-top: 6px;
  text-align: center;
  display: block;
}

.exec-modal-risk-display.critical .exec-risk-label { color: #ef4444; }
.exec-modal-risk-display.high .exec-risk-label { color: #f97316; }
.exec-modal-risk-display.medium .exec-risk-label { color: #eab308; }
.exec-modal-risk-display.low .exec-risk-label { color: #22c55e; }

.exec-risk-description {
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

.exec-risk-description span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.exec-risk-description small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  text-align: center;
}

/* ==================== QUICK STATS BAR ==================== */
.exec-modal-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-quick-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.exec-quick-stat:last-child {
  border-right: none;
}

.exec-quick-stat:hover {
  background: rgba(255, 255, 255, 0.02);
}

.exec-quick-stat i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.3);
  width: 28px;
  text-align: center;
}

.exec-quick-stat.critical i { color: #ef4444; }
.exec-quick-stat.warning i { color: #f97316; }
.exec-quick-stat.success i { color: #22c55e; }

.exec-quick-stat-info {
  display: flex;
  flex-direction: column;
}

.exec-quick-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.exec-quick-stat.critical .exec-quick-stat-value { color: #ef4444; }
.exec-quick-stat.warning .exec-quick-stat-value { color: #f97316; }

.exec-quick-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ==================== TAB NAVIGATION ==================== */
.exec-modal-tabs {
  display: flex;
  gap: 6px;
  padding: 16px 28px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  scrollbar-width: none;
}

.exec-modal-tabs::-webkit-scrollbar {
  display: none;
}

.exec-modal-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.exec-modal-tab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.06);
}

.exec-modal-tab.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.exec-modal-tab i {
  font-size: 15px;
}

.exec-tab-count {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  min-width: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* ==================== TAB CONTENT ==================== */
.exec-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
}

.exec-modal-content::-webkit-scrollbar {
  width: 8px;
}

.exec-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.exec-modal-content::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}

.exec-modal-panel {
  display: none;
  animation: fadeInPanel 0.4s ease;
}

.exec-modal-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== PANEL GRID & CARDS ==================== */
.exec-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.exec-panel-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.exec-panel-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.exec-panel-card.full-width {
  grid-column: 1 / -1;
}

.exec-panel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.exec-panel-card-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exec-panel-card-header h3 i {
  color: rgba(139, 92, 246, 0.9);
  font-size: 15px;
}

.exec-panel-card-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.8px;
}

.exec-panel-card-badge.critical { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%); 
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.exec-panel-card-badge.high { 
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.15) 100%); 
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.exec-panel-card-badge.medium { 
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(234, 179, 8, 0.15) 100%); 
  color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.2);
}
.exec-panel-card-badge.low { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%); 
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.exec-panel-card-link {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.9);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.exec-panel-card-link:hover {
  color: #a78bfa;
}

/* ==================== RISK ANALYSIS ==================== */
.exec-risk-analysis-content {
  padding: 24px;
}

.exec-risk-factors {
  display: grid;
  gap: 22px;
}

.exec-risk-factor-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exec-factor-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.exec-factor-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #a78bfa;
}

.exec-factor-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.exec-factor-value {
  font-size: 15px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 10px;
}

.exec-factor-value.critical { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%); 
  color: #f87171; 
}
.exec-factor-value.high { 
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.15) 100%); 
  color: #fb923c; 
}
.exec-factor-value.warning { 
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%); 
  color: #fbbf24; 
}
.exec-factor-value.medium { 
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(234, 179, 8, 0.15) 100%); 
  color: #fcd34d; 
}
.exec-factor-value.low { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%); 
  color: #4ade80; 
}

.exec-factor-bar-container {
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.exec-factor-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.exec-factor-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.exec-factor-bar-fill.critical { 
  background: linear-gradient(90deg, #ef4444 0%, #f87171 100%); 
}
.exec-factor-bar-fill.high { 
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%); 
}
.exec-factor-bar-fill.warning { 
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%); 
}
.exec-factor-bar-fill.medium { 
  background: linear-gradient(90deg, #eab308 0%, #fcd34d 100%); 
}
.exec-factor-bar-fill.low { 
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 100%); 
}

.exec-factor-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  padding-left: 54px;
}

/* ==================== MONITORING COVERAGE ==================== */
.exec-monitoring-coverage {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exec-coverage-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.exec-coverage-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.2);
}

.exec-coverage-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 18px;
}

.exec-coverage-info {
  flex: 1;
}

.exec-coverage-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.exec-coverage-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.exec-coverage-status {
  font-size: 20px;
}

.exec-coverage-status.active { color: #22c55e; }

/* ==================== RECENT ACTIVITY ==================== */
.exec-recent-activity {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exec-activity-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-radius: 14px;
  border-left: 4px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.exec-activity-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.exec-activity-item.critical { border-left-color: #ef4444; }
.exec-activity-item.warning { border-left-color: #f97316; }
.exec-activity-item.info { border-left-color: #3b82f6; }
.exec-activity-item.success { border-left-color: #22c55e; }

.exec-activity-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.exec-activity-item.critical .exec-activity-icon { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%); 
  color: #f87171; 
}
.exec-activity-item.warning .exec-activity-icon { 
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%); 
  color: #fb923c; 
}
.exec-activity-item.info .exec-activity-icon { 
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%); 
  color: #60a5fa; 
}
.exec-activity-item.success .exec-activity-icon { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%); 
  color: #4ade80; 
}

.exec-activity-info {
  flex: 1;
  min-width: 0;
}

.exec-activity-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.exec-activity-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.exec-activity-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ==================== THREATS DASHBOARD ==================== */
.exec-threats-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exec-threat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.exec-threat-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.exec-threat-card.critical { 
  border-left: 5px solid #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.exec-threat-card.high { 
  border-left: 5px solid #f97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.exec-threat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-threat-severity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exec-severity-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.8px;
}

.exec-severity-badge.critical { 
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); 
  color: white;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}
.exec-severity-badge.high { 
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); 
  color: white;
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

.exec-threat-type {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.exec-threat-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exec-threat-card-body {
  display: flex;
  gap: 24px;
  padding: 24px;
}

.exec-threat-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.exec-threat-card.critical .exec-threat-icon-large {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  color: #f87171;
}

.exec-threat-icon-large.linkedin {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.2) 0%, rgba(0, 119, 181, 0.1) 100%);
  color: #0ea5e9;
}

.exec-threat-details {
  flex: 1;
}

.exec-threat-details h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.exec-threat-details p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 18px 0;
  line-height: 1.7;
}

.exec-threat-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.exec-threat-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 14px;
  border-radius: 10px;
}

.exec-threat-meta-item i {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.7);
}

.exec-threat-card-actions {
  display: flex;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

/* ==================== NO THREATS STATE ==================== */
.exec-no-threats {
  text-align: center;
  padding: 70px 50px;
}

.exec-no-threats-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
}

.exec-no-threats-icon i {
  font-size: 44px;
  color: #4ade80;
}

.exec-no-threats h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.exec-no-threats p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 28px 0;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.exec-protection-status {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  margin: 0 auto;
}

.exec-protection-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(34, 197, 94, 0.08);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.exec-protection-item i {
  color: #4ade80;
  font-size: 16px;
}

/* ==================== CREDENTIALS DASHBOARD ==================== */
.exec-credentials-dashboard {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.exec-cred-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exec-cred-stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.exec-cred-stat-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.exec-cred-stat-card.danger { 
  border-color: rgba(239, 68, 68, 0.25); 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
}
.exec-cred-stat-card.success { 
  border-color: rgba(34, 197, 94, 0.25); 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
}

.exec-cred-stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #a78bfa;
}

.exec-cred-stat-card.danger .exec-cred-stat-icon { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%); 
  color: #f87171; 
}
.exec-cred-stat-card.success .exec-cred-stat-icon { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%); 
  color: #4ade80; 
}

.exec-cred-stat-info {
  flex: 1;
}

.exec-cred-stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.exec-cred-stat-card.danger .exec-cred-stat-value { color: #f87171; }
.exec-cred-stat-card.success .exec-cred-stat-value { color: #4ade80; }

.exec-cred-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* Credential Sections */
.exec-cred-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.exec-cred-section.danger {
  border-color: rgba(239, 68, 68, 0.25);
}

.exec-cred-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.exec-cred-section h3 i {
  color: #a78bfa;
}

.exec-cred-section.danger h3 i {
  color: #f87171;
}

.exec-cred-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exec-cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.exec-cred-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
}

.exec-cred-item.exposed {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.06) 0%, transparent 100%);
}

.exec-cred-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 18px;
}

.exec-cred-item-info {
  flex: 1;
  min-width: 0;
}

.exec-cred-email {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.exec-cred-type {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.exec-cred-item-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 10px;
}

.exec-cred-item-status.safe {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: #4ade80;
}

.exec-cred-item-status.exposed {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%);
  color: #f87171;
}

/* Breach Card */
.exec-breach-card {
  margin: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
}

.exec-breach-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.exec-breach-name {
  font-size: 18px;
  font-weight: 700;
  color: #f87171;
}

.exec-breach-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.exec-breach-details {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.exec-breach-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.exec-breach-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.exec-breach-value {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.exec-breach-actions {
  display: flex;
  gap: 12px;
}

/* ==================== SOCIAL DASHBOARD ==================== */
.exec-social-dashboard {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.exec-social-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exec-social-stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.exec-social-stat-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
}

.exec-social-stat-card.danger {
  border-color: rgba(239, 68, 68, 0.25);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.02) 100%);
}

.exec-social-stat-card.success {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
}

.exec-social-stat-card > i {
  font-size: 28px;
  color: #a78bfa;
  margin-bottom: 16px;
  display: block;
}

.exec-social-stat-card.danger > i { color: #f87171; }
.exec-social-stat-card.success > i { color: #4ade80; }

.exec-social-stat-value {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.exec-social-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}

/* Social Platforms */
.exec-social-platforms h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exec-social-platforms h3 i {
  color: #a78bfa;
}

.exec-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.exec-platform-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.exec-platform-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.exec-platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.exec-platform-card.linkedin .exec-platform-icon { 
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.2) 0%, rgba(0, 119, 181, 0.1) 100%); 
  color: #0ea5e9; 
}
.exec-platform-card.twitter .exec-platform-icon { 
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.2) 0%, rgba(29, 161, 242, 0.1) 100%); 
  color: #38bdf8; 
}
.exec-platform-card.facebook .exec-platform-icon { 
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(24, 119, 242, 0.1) 100%); 
  color: #3b82f6; 
}

.exec-platform-info {
  flex: 1;
}

.exec-platform-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.exec-platform-handle {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.exec-platform-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.exec-platform-status.active { color: #4ade80; }
.exec-platform-status.inactive { color: rgba(255, 255, 255, 0.35); }

.exec-platform-status i {
  font-size: 8px;
}

.exec-platform-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-platform-stat {
  padding: 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.exec-platform-stat:last-child {
  border-right: none;
}

.exec-platform-stat.danger { 
  background: rgba(239, 68, 68, 0.06); 
}

.exec-platform-stat .value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.exec-platform-stat.danger .value { color: #f87171; }

.exec-platform-stat .label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.exec-platform-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
}

/* ==================== HISTORY DASHBOARD ==================== */
.exec-history-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.exec-history-filters {
  display: flex;
  gap: 14px;
}

.exec-history-filter {
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exec-history-filter:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.exec-history-filter:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.5);
}

/* Timeline */
.exec-history-timeline {
  position: relative;
  padding-left: 40px;
}

.exec-history-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 26px;
  bottom: 26px;
  width: 3px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 2px;
}

.exec-timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.exec-timeline-item:last-child {
  margin-bottom: 0;
}

.exec-timeline-marker {
  position: absolute;
  left: -40px;
  top: 22px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 4px solid rgba(10, 14, 22, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.exec-timeline-item.critical .exec-timeline-marker { 
  background: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}
.exec-timeline-item.high .exec-timeline-marker { 
  background: #f97316;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}
.exec-timeline-item.info .exec-timeline-marker { 
  background: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}
.exec-timeline-item.success .exec-timeline-marker { 
  background: #22c55e;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.exec-timeline-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s ease;
}

.exec-timeline-content:hover {
  border-color: rgba(139, 92, 246, 0.2);
}

.exec-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.exec-timeline-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.8px;
}

.exec-timeline-badge.critical { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%); 
  color: #f87171; 
}
.exec-timeline-badge.high { 
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.15) 100%); 
  color: #fb923c; 
}
.exec-timeline-badge.info { 
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%); 
  color: #60a5fa; 
}
.exec-timeline-badge.success { 
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%); 
  color: #4ade80; 
}

.exec-timeline-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.exec-timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.exec-timeline-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
}

.exec-timeline-actions {
  margin-top: 14px;
}

/* ==================== MODAL FOOTER ==================== */
.exec-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.exec-footer-left,
.exec-footer-right {
  display: flex;
  gap: 12px;
}

/* ==================== NOTIFICATIONS ==================== */
.exec-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.98) 0%, rgba(10, 14, 22, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #ffffff;
  z-index: 10001;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exec-notification.show {
  transform: translateX(0);
}

.exec-notification i {
  font-size: 20px;
}

.exec-notification.success { border-left: 4px solid #22c55e; }
.exec-notification.success i { color: #4ade80; }

.exec-notification.error { border-left: 4px solid #ef4444; }
.exec-notification.error i { color: #f87171; }

.exec-notification.info { border-left: 4px solid #3b82f6; }
.exec-notification.info i { color: #60a5fa; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1000px) {
  .exec-modal-header-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .exec-modal-avatar-section {
    display: flex;
    justify-content: center;
  }
  
  .exec-modal-meta-row {
    justify-content: center;
  }
  
  .exec-modal-risk-display {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .exec-modal-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .exec-panel-grid {
    grid-template-columns: 1fr;
  }
  
  .exec-cred-stats-row,
  .exec-social-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .exec-modal-overlay {
    padding: 12px;
  }
  
  .exec-modal-container {
    max-height: 100vh;
    border-radius: 20px;
  }
  
  .exec-modal-header {
    padding: 24px 20px 20px;
  }
  
  .exec-modal-name {
    font-size: 24px;
  }
  
  .exec-modal-title {
    font-size: 15px;
  }
  
  .exec-modal-avatar {
    width: 90px;
    height: 90px;
  }
  
  .exec-modal-quick-stats {
    grid-template-columns: 1fr;
  }
  
  .exec-quick-stat {
    padding: 16px 20px;
  }
  
  .exec-modal-tabs {
    padding: 12px 16px;
  }
  
  .exec-modal-tab {
    padding: 10px 16px;
  }
  
  .exec-modal-tab span {
    display: none;
  }
  
  .exec-modal-content {
    padding: 20px 16px;
  }
  
  .exec-threat-card-body {
    flex-direction: column;
    gap: 16px;
  }
  
  .exec-threat-icon-large {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .exec-modal-footer {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }
  
  .exec-footer-left,
  .exec-footer-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .exec-platform-grid {
    grid-template-columns: 1fr;
  }
}
