/* ============================================================
   VOLL OPERATIONS PLATFORM v2 — Design System
   Cores: Navy (#0f172a) + Gold (#f59e0b) + Emerald (#10b981)
   Tipografia: Inter
   ============================================================ */

:root {
  /* Cores base */
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1e293b;
  --bg-surface: rgba(255,255,255,0.04);

  /* Acentos */
  --accent-gold: #f59e0b;
  --accent-gold-dim: rgba(245,158,11,0.15);
  --accent-emerald: #10b981;
  --accent-emerald-dim: rgba(16,185,129,0.15);
  --accent-blue: #3b82f6;
  --accent-blue-dim: rgba(59,130,246,0.15);
  --accent-purple: #8b5cf6;
  --accent-purple-dim: rgba(139,92,246,0.15);
  --accent-red: #ef4444;
  --accent-red-dim: rgba(239,68,68,0.15);
  --accent-orange: #ff6b35;
  --accent-pink: #ec4899;

  /* Texto */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Bordas */
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px rgba(245,158,11,0.15);

  /* Layout */
  --sidebar-width: 260px;
  --topbar-height: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ============================================================
   LOGIN
   ============================================================ */
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1a3e 50%, #0a0e1a 100%);
}

.login-shell {
  display: flex;
  width: 920px;
  max-width: 95vw;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.login-showcase {
  flex: 1;
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-showcase-content { position: relative; z-index: 2; }

.login-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.login-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,0,0,0.85);
  letter-spacing: -0.02em;
}

.login-logo-text.playia { opacity: 0.7; }

.login-brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.2);
}

.login-heading h1 {
  font-size: 28px;
  font-weight: 800;
  color: #0a0e1a;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.login-heading p { color: rgba(0,0,0,0.6); font-size: 14px; }
.login-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.login-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feature-chip {
  padding: 6px 12px;
  background: rgba(0,0,0,0.12);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
}

.login-waves {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 80px;
}

.login-waves span {
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 45%;
  background: rgba(255,255,255,0.06);
  animation: wave 8s infinite linear;
}

.login-waves span:nth-child(2) { animation-delay: -2s; opacity: 0.7; }
.login-waves span:nth-child(3) { animation-delay: -4s; opacity: 0.5; }
.login-waves span:nth-child(4) { animation-delay: -6s; opacity: 0.3; }

@keyframes wave {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.login-form-panel {
  flex: 1;
  background: var(--bg-secondary);
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

.login-form-wrap { width: 100%; }
.login-form-head h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.login-form-head p { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }

.login-field {
  display: block;
  margin-bottom: 20px;
}

.login-field span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.login-field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.login-field input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-dim);
}

.login-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border: none;
  border-radius: var(--radius-sm);
  color: #0a0e1a;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}

.login-submit:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.error { color: var(--accent-red); font-size: 13px; margin-top: 12px; }
.login-powered {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

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

.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
}

.brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.brand-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  font-size: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold-dim);
  border-radius: var(--radius-sm);
}

.brand-copy { flex: 1; }
.brand-kicker { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.brand-copy h2 { font-size: 14px; font-weight: 700; margin-top: 2px; }

.user-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: var(--accent-blue-dim);
  border-radius: 20px;
  font-size: 11px;
  color: var(--accent-blue);
  font-weight: 500;
}

/* Navigation */
#menu {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.nav-group { margin-bottom: 4px; }
.nav-group-label {
  display: block;
  padding: 12px 20px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

#menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s var(--ease);
  text-align: left;
  border-left: 3px solid transparent;
}

#menu button:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

#menu button.active {
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  font-weight: 600;
}

.nav-icon { font-size: 16px; width: 20px; text-align: center; }

/* Sidebar Footer */
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.webhook-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: pulse-dot 2s infinite;
}

.status-dot.online { background: var(--accent-emerald); }
.status-dot.error { background: var(--accent-red); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.logout {
  width: 100%;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}

.logout:hover { background: var(--accent-red-dim); color: var(--accent-red); border-color: var(--accent-red); }

/* Main */
.main {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 0 28px 28px;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.topbar h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.topbar p { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

.last-update { font-size: 11px; color: var(--text-muted); }

.view { display: none; }
.view.active { display: block; }

/* ============================================================
   CARDS (KPIs)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.kpi-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kpi-card:hover::before { opacity: 1; }

.kpi-card .kpi-icon { font-size: 24px; margin-bottom: 8px; }
.kpi-card .kpi-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.kpi-card .kpi-value { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; margin: 4px 0; }
.kpi-card .kpi-sub { font-size: 12px; color: var(--text-secondary); }

.kpi-card.accent-gold .kpi-value { color: var(--accent-gold); }
.kpi-card.accent-gold::before { background: var(--accent-gold); }
.kpi-card.accent-emerald .kpi-value { color: var(--accent-emerald); }
.kpi-card.accent-emerald::before { background: var(--accent-emerald); }
.kpi-card.accent-blue .kpi-value { color: var(--accent-blue); }
.kpi-card.accent-blue::before { background: var(--accent-blue); }
.kpi-card.accent-purple .kpi-value { color: var(--accent-purple); }
.kpi-card.accent-purple::before { background: var(--accent-purple); }
.kpi-card.accent-red .kpi-value { color: var(--accent-red); }
.kpi-card.accent-red::before { background: var(--accent-red); }

/* ============================================================
   PANELS & GRIDS
   ============================================================ */
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.panel h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.panel-subtitle { color: var(--text-secondary); font-size: 13px; margin-top: -12px; margin-bottom: 16px; }

.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: 1fr 1fr; }
.grid.three { grid-template-columns: 1fr 1fr 1fr; }

.chart-panel { padding: 20px; }
.chart-shell { height: 280px; position: relative; }
.chart-shell-tall { height: 400px; }

/* ============================================================
   TABLES
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th {
  text-align: left;
  padding: 10px 12px;
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

tr:hover td { background: var(--bg-surface); color: var(--text-primary); }

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge.online { background: var(--accent-emerald-dim); color: var(--accent-emerald); }
.badge.offline { background: var(--bg-surface); color: var(--text-muted); }
.badge.break { background: var(--accent-gold-dim); color: var(--accent-gold); }
.badge.critical { background: var(--accent-red-dim); color: var(--accent-red); }
.badge.warning { background: var(--accent-gold-dim); color: var(--accent-gold); }
.badge.info { background: var(--accent-blue-dim); color: var(--accent-blue); }
.badge.positive { background: var(--accent-emerald-dim); color: var(--accent-emerald); }
.badge.negative { background: var(--accent-red-dim); color: var(--accent-red); }
.badge.neutral { background: var(--accent-blue-dim); color: var(--accent-blue); }

/* ============================================================
   CUSTOMER JOURNEY
   ============================================================ */
.journey-search-bar {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.journey-search-bar input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.journey-search-bar input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-dim);
}

.journey-search-bar button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border: none;
  border-radius: var(--radius-md);
  color: #0a0e1a;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}

.journey-search-bar button:hover { transform: translateY(-1px); }

.journey-search-results {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.journey-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}

.journey-result-item:hover {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
}

.journey-result-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-blue);
}

.journey-result-info { flex: 1; }
.journey-result-info .name { font-weight: 600; font-size: 14px; }
.journey-result-info .detail { font-size: 12px; color: var(--text-muted); }

.journey-result-meta {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

/* Journey Hero */
.journey-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,158,11,0.1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.journey-hero-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #0a0e1a;
  flex-shrink: 0;
}

.journey-hero-info h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.journey-hero-info p { color: var(--text-secondary); font-size: 14px; }

.journey-hero-score {
  margin-left: auto;
  text-align: center;
}

.journey-hero-score .score-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.journey-hero-score .score-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journey-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

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

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-blue), var(--accent-purple));
  border-radius: 2px;
}

.timeline-event {
  position: relative;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}

.timeline-event:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.timeline-event::before {
  content: attr(data-icon);
  position: absolute;
  left: -40px;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--bg-card);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.timeline-event .event-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.timeline-event .event-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-event .event-detail {
  font-size: 12px;
  color: var(--text-secondary);
}

.timeline-event.obstacle { border-left: 3px solid var(--accent-red); }
.timeline-event.positive { border-left: 3px solid var(--accent-emerald); }

/* Journey Messages */
.journey-messages .message-group {
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.journey-messages .message-group:hover { background: var(--bg-card-hover); }

.message-bubble {
  padding: 10px 16px;
  border-radius: 12px;
  max-width: 80%;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.message-bubble.incoming {
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.message-bubble.outgoing {
  background: var(--accent-blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  align-self: flex-end;
  margin-left: auto;
}

.message-bubble .msg-meta {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Journey List */
.journey-list {
  display: grid;
  gap: 8px;
}

/* ============================================================
   WEBHOOK STATUS
   ============================================================ */
.webhook-urls {
  display: grid;
  gap: 12px;
}

.webhook-url-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.webhook-url-item .event-name {
  font-weight: 600;
  font-size: 13px;
  min-width: 200px;
}

.webhook-url-item .url {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--accent-emerald);
  word-break: break-all;
}

.webhook-url-item .copy-btn {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 11px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}

.webhook-url-item .copy-btn:hover {
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
}

/* ============================================================
   REPORT FILTERS
   ============================================================ */
.report-filters {
  display: flex;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.report-filters label {
  font-size: 12px;
  color: var(--text-muted);
}

.report-filters input {
  display: block;
  margin-top: 4px;
  padding: 8px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  width: 160px;
}

.report-filters button {
  padding: 10px 20px;
  background: var(--accent-blue);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .sidebar { width: 220px; }
  .main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .login-shell { flex-direction: column; }
  .cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.view.active { animation: fadeInUp 0.3s var(--ease); }
.kpi-card { animation: fadeInUp 0.3s var(--ease); animation-fill-mode: both; }
.kpi-card:nth-child(1) { animation-delay: 0.05s; }
.kpi-card:nth-child(2) { animation-delay: 0.1s; }
.kpi-card:nth-child(3) { animation-delay: 0.15s; }
.kpi-card:nth-child(4) { animation-delay: 0.2s; }
.kpi-card:nth-child(5) { animation-delay: 0.25s; }
