/* DESIGN SYSTEM — Severity Badges, Fraud Labels, Dark Theme Utilities */

/* === SEVERITY BADGES (4 tiers) === */
.severity-badge { display: inline-flex; align-items: center; gap: 5px; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; white-space: nowrap; }
.severity-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.severity-badge.kritiek { background-color: #dc3545; color: #ffffff; box-shadow: 0 0 12px rgba(220, 53, 69, 0.4); }
.severity-badge.gevaarlijk { background-color: #a71d2a; color: #ffffff; box-shadow: 0 0 12px rgba(167, 29, 42, 0.4); }
.severity-badge.verdacht { background-color: #fd7e14; color: #ffffff; box-shadow: 0 0 12px rgba(253, 126, 20, 0.4); }
.severity-badge.waarschuwing { background-color: #ffc107; color: #1a1a1a; box-shadow: 0 0 12px rgba(255, 193, 7, 0.3); }

/* === FRAUD TYPE PILLS === */
.fraud-pill { display: inline-block; font-family: "Inter", sans-serif; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 2px; white-space: nowrap; }
.fraud-pill.geen-uitbetaling { background-color: rgba(220, 53, 69, 0.15); color: #ff6b7a; }
.fraud-pill.nep-licentie { background-color: rgba(146, 43, 33, 0.2); color: #e87070; }
.fraud-pill.cruks-omzeiling { background-color: rgba(253, 126, 20, 0.15); color: #ffad5c; }
.fraud-pill.gemanipuleerde-spellen { background-color: rgba(111, 66, 193, 0.15); color: #b088f9; }
.fraud-pill.misleidende-voorwaarden { background-color: rgba(230, 81, 0, 0.15); color: #ff9a5c; }
.fraud-pill.geen-vergunning { background-color: transparent; color: #ff6b7a; border: 1px solid rgba(220, 53, 69, 0.4); }

/* === DANGER SCORE === */
.danger-score { display: inline-flex; align-items: center; gap: 8px; }
.danger-score .score-value { font-family: "Plus Jakarta Sans", sans-serif; font-size: 28px; font-weight: 800; color: #ff4757; line-height: 1; text-shadow: 0 0 10px rgba(220, 53, 69, 0.5), 0 0 20px rgba(220, 53, 69, 0.2); }
.danger-score .score-max { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.danger-score .score-bar { width: 80px; height: 6px; background-color: rgba(255, 255, 255, 0.08); border-radius: 3px; overflow: hidden; }
.danger-score .score-bar .score-fill { height: 100%; border-radius: 3px; }
.danger-score .score-bar .score-fill.critical { background-color: #dc3545; }
.danger-score .score-bar .score-fill.dangerous { background-color: #a71d2a; }
.danger-score .score-bar .score-fill.suspicious { background-color: #fd7e14; }
.danger-score .score-bar .score-fill.warning { background-color: #ffc107; }

/* === DARK THEME SURFACES === */
.surface-primary { background-color: #1a1a2e; }
.surface-secondary { background-color: #24232a; }
.surface-elevated { background-color: #1e2a3a; }
.surface-card { background-color: #1c1b20; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 4px; }

/* === DARK THEME TEXT === */
.text-primary { color: #f0f0f0; }
.text-secondary { color: #c0c0c0; }
.text-muted { color: rgba(255, 255, 255, 0.75); }
.text-danger { color: #dc3545; }
.text-safe { color: #28a745; }

/* === TRUST BAR (below hero) === */
.trust-bar { background-color: #24232a; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.trust-bar .trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.trust-bar .trust-bar-item { display: flex; align-items: center; gap: 6px; }
.trust-bar .trust-bar-item svg { width: 16px; height: 16px; flex-shrink: 0; color: #BE1E2D; }
.trust-bar .trust-bar-item .trust-bar-text { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.trust-bar .trust-bar-item .trust-bar-text strong { color: rgba(255, 255, 255, 0.9); }
@media (min-width: 768px) {
  .trust-bar .trust-bar-inner { justify-content: space-between; }
}
@media (min-width: 1200px) {
  .trust-bar .trust-bar-inner { padding: 0 32px; }
}

/* === SEARCH BAR === */
.search-bar { max-width: 1200px; margin: 0 auto; padding: 20px 24px; }
.search-bar .search-input-wrap { display: flex; align-items: center; background-color: #1c1b20; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; transition: border-color 0.2s ease; }
.search-bar .search-input-wrap:focus-within { border-color: #BE1E2D; }
.search-bar .search-input-wrap svg { width: 18px; height: 18px; margin-left: 14px; color: rgba(255, 255, 255, 0.75); flex-shrink: 0; }
.search-bar .search-input-wrap input { flex: 1; background: none; border: none; outline: none; padding: 12px 14px; font-family: "Inter", sans-serif; font-size: 14px; color: #f0f0f0; }
.search-bar .search-input-wrap input::placeholder { color: rgba(255, 255, 255, 0.75); }
@media (min-width: 1200px) {
  .search-bar { padding: 20px 32px; }
}

/* === STATS STRIP (dark theme) === */
.stats-strip { background-color: #24232a; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.stats-strip .stats-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stats-strip .stat-item { text-align: center; }
.stats-strip .stat-item .stat-number { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 800; color: #ffffff; }
.stats-strip .stat-item .stat-number.accent { color: #BE1E2D; }
.stats-strip .stat-item .stat-label { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
@media (min-width: 768px) {
  .stats-strip .stats-strip-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .stats-strip .stats-strip-inner { padding: 0 32px; }
}

/* === COMPLAINT COUNTER === */
.complaint-count { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.complaint-count .count-number { font-weight: 700; color: #ffffff; }
.complaint-count svg { width: 14px; height: 14px; color: rgba(255, 255, 255, 0.75); }
