/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Completely different palette from Flow 1 (green-teal instead of purple) */
  --bg:       #080e0e;
  --bg2:      #0d1616;
  --bg3:      #162020;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.12);
  --text:     #e0eded;
  --muted:    #6b8585;
  --dim:      #344444;

  --teal:     #00d4aa;
  --teal-dim: rgba(0,212,170,0.15);
  --teal-border: rgba(0,212,170,0.3);
  --amber:    #f59e0b;
  --amber-dim:rgba(245,158,11,0.15);
  --rose:     #f43f5e;
  --rose-dim: rgba(244,63,94,0.15);
  --sky:      #38bdf8;
  --sky-dim:  rgba(56,189,248,0.15);
  --green:    #22c55e;

  --nav-h: 60px;
  --radius: 12px;
  --radius-sm: 8px;
}

html { font-size: 14px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Top Navigation ────────────────────────────────────────────────────────── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  margin-right: 24px;
}
.brand-pill {
  background: linear-gradient(135deg, var(--teal), #00a882);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.brand-name { font-size: 15px; font-weight: 700; display: block; }
.brand-tag  { font-size: 11px; color: var(--muted); display: block; }

.nav-tabs {
  display: flex;
  gap: 4px;
  flex: 1;
}
.tab {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.tab:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.tab.active {
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wa-cap-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}
.wa-icon { font-size: 14px; }

.refresh-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.refresh-btn:hover { border-color: var(--teal); color: var(--teal); }

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.status-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 16px var(--green); } }

/* ─── Main ──────────────────────────────────────────────────────────────────── */
.main {
  flex: 1;
  padding: 24px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

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

/* ─── Hero Row ──────────────────────────────────────────────────────────────── */
.hero-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 900px) { .hero-row { grid-template-columns: repeat(2, 1fr); } }

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); border-color: var(--teal); }

.hero-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--bg3);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: all 0.3s;
}
.hero-card:hover .hero-icon-wrap { background: var(--teal); color: #000; transform: scale(1.1) rotate(-5deg); }

.hero-icon-wrap svg { 
  width: 24px !important; 
  height: 24px !important; 
  flex-shrink: 0;
}

.hero-content { flex: 1; }
.hero-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.hero-value { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1; }

.hero-card.accent-teal  { background: var(--teal-dim); border-color: var(--teal-border); }
.hero-card.accent-amber { background: var(--amber-dim); border-color: rgba(245,158,11,0.3); }
.hero-card.accent-rose  { background: var(--rose-dim); border-color: rgba(244,63,94,0.3); }
.hero-card.accent-sky   { background: var(--sky-dim); border-color: rgba(56,189,248,0.3); }

/* ─── Micro Animations ──────────────────────────────────────────────────────── */
.anim-pulse { animation: pulse-svg 2s infinite; }
@keyframes pulse-svg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.anim-shake { animation: shake-svg 4s infinite; }
@keyframes shake-svg {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(10deg); }
  94% { transform: rotate(-10deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
}

.anim-spin { animation: spin-svg 15s linear infinite; }
@keyframes spin-svg {
  to { transform: rotate(360deg); }
}

/* ─── 3-Column Grid ─────────────────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1000px) { .grid-3 { grid-template-columns: 1fr; } }

/* ─── Panel ─────────────────────────────────────────────────────────────────── */
.panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: auto;
}
.panel.full { width: 100%; }

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.panel-head.wrap { flex-wrap: wrap; gap: 12px; }
.panel-title { font-size: 14px; font-weight: 600; }

.live-dot { font-size: 11px; color: var(--teal); font-weight: 600; animation: blink 1.5s infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

/* ─── Funnel List ────────────────────────────────────────────────────────────── */
.funnel-list { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.funnel-row {
  display: grid;
  grid-template-columns: 120px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.funnel-label { font-size: 12px; color: var(--muted); }
.funnel-bar {
  height: 5px;
  background: var(--bg3);
  border-radius: 3px;
  overflow: auto;
}
.funnel-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.funnel-count { font-size: 13px; font-weight: 600; text-align: right; }

/* ─── WhatsApp Cap Ring ──────────────────────────────────────────────────────── */
.cap-ring-wrap { position: relative; width: 140px; height: 140px; margin: 20px auto 12px; }
.cap-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg   { fill: none; stroke: var(--bg3); stroke-width: 8; }
.ring-fill {
  fill: none;
  stroke: var(--teal);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 238.76;
  stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4,0,0.2,1);
}
.cap-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cap-num   { font-size: 32px; font-weight: 800; color: var(--teal); line-height: 1; }
.cap-label { font-size: 12px; color: var(--muted); }
.cap-detail { text-align: center; padding-bottom: 20px; }
.cap-remain { font-size: 13px; color: var(--muted); }
.cap-date   { font-size: 11px; color: var(--dim); }

/* ─── Activity List ──────────────────────────────────────────────────────────── */
.activity-list { padding: 12px 20px; display: flex; flex-direction: column; max-height: 320px; overflow-y: auto; }
.activity-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.activity-row:last-child { border-bottom: none; }
.act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.act-body { flex: 1; }
.act-name { font-size: 13px; font-weight: 500; }
.act-detail { font-size: 12px; color: var(--muted); margin-top: 1px; }
.act-time { font-size: 11px; color: var(--dim); flex-shrink: 0; margin-top: 3px; }

/* ─── Data Table ─────────────────────────────────────────────────────────────── */
.data-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { cursor: pointer; transition: background 0.15s; }
.data-table tbody tr:hover { background: rgba(0,212,170,0.03); }

.empty { text-align: center; padding: 40px; color: var(--muted); }

/* ─── Status Chips ───────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}
.chip-email_sent          { background:rgba(148,163,184,.15); color:#94a3b8; }
.chip-awaiting_reply      { background:var(--amber-dim);      color:var(--amber); }
.chip-calling             { background:var(--sky-dim);         color:var(--sky); }
.chip-meeting_booked      { background:var(--teal-dim);        color:var(--teal); }
.chip-meeting_attended    { background:rgba(34,197,94,.15);   color:var(--green); }
.chip-no_show             { background:var(--rose-dim);        color:var(--rose); }
.chip-noshow_followup_sent{ background:rgba(244,63,94,.08);   color:#fb7185; }
.chip-replied             { background:var(--sky-dim);         color:var(--sky); }
.chip-stopped             { background:rgba(100,116,139,.15); color:#64748b; }

/* ─── Outcome Chips ──────────────────────────────────────────────────────────── */
.chip-picked_up { background:rgba(34,197,94,.15); color:var(--green); }
.chip-no_answer { background:var(--rose-dim); color:var(--rose); }
.chip-voicemail { background:var(--amber-dim); color:var(--amber); }
.chip-cancelled { background:rgba(100,116,139,.15); color:#64748b; }
.chip-failed    { background:var(--rose-dim); color:var(--rose); }

/* ─── Controls ───────────────────────────────────────────────────────────────── */
.controls { display: flex; gap: 8px; }
.search-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 7px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}
.search-box:focus { border-color: var(--teal); }
.select-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* ─── Pager ──────────────────────────────────────────────────────────────────── */
.pager {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.pager-btn {
  width: 30px; height: 30px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.pager-btn:hover, .pager-btn.active { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

/* ─── WhatsApp Stats Page ────────────────────────────────────────────────────── */
.wa-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.wa-stat { background: var(--bg2); padding: 28px 24px; text-align: center; }
.wa-stat-val { font-size: 36px; font-weight: 800; color: var(--teal); }
.wa-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.wa-note {
  padding: 20px 24px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}
.wa-note strong { color: var(--amber); }

/* ─── Owner Log ──────────────────────────────────────────────────────────────── */
.owner-log { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.owner-entry {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.owner-direction { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 6px; }
.owner-direction.out { color: var(--teal); }
.owner-direction.in  { color: var(--amber); }
.owner-msg { font-size: 13px; color: var(--text); line-height: 1.5; }
.owner-time { font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ─── Modal ──────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  width: 90%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  animation: fadeUp 0.25s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-head h2 { font-size: 16px; font-weight: 700; }
.modal-head button {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  transition: all 0.2s;
}
.modal-head button:hover { border-color: var(--rose); color: var(--rose); }
.modal-content { padding: 24px; }

/* ─── Modal Sections ─────────────────────────────────────────────────────────── */
.info-block { margin-bottom: 20px; }
.info-block-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.info-field label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 3px; }
.info-field span  { font-size: 14px; color: var(--text); font-weight: 500; }

.action-bar { display: flex; gap: 10px; margin-top: 4px; }
.btn-stop {
  background: var(--rose-dim);
  border: 1px solid rgba(244,63,94,0.3);
  color: var(--rose);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-stop:hover { background: rgba(244,63,94,0.25); }

/* ─── Skeleton ───────────────────────────────────────────────────────────────── */
.skeleton {
  height: 14px;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--dim) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.4s infinite;
  margin: 8px 20px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ─── Toast ──────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text);
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }

/* ─── Loading Spinner & Actions ────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-sync {
  background: var(--teal);
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-sync:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 12px var(--teal-dim); }
.btn-sync:disabled { opacity: 0.7; cursor: not-allowed; }

/* ─── Call Modal Custom Styles ─────────────────────────────────────────────── */
.btn-view {
  background: rgba(0, 212, 170, 0.1);
  color: var(--teal);
  border: 1px solid rgba(0, 212, 170, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.btn-view:hover {
  background: var(--teal);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.transcript-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
  word-wrap: break-word;
}
.user-msg {
  background: var(--bg3);
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bot-msg {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.system-msg {
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  align-self: center;
  font-style: italic;
}

.btn-stop:disabled { opacity: 0.5; cursor: not-allowed; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding: 10px 0;
}
.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.schedule-card h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-card .timezone {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 15px 0;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-card);
}
.timeline-item.type-waterfall::before, .timeline-item.type-follow_up::before {
  background: #fb7185;
}
.timeline-item.type-whatsapp_queue::before {
  background: #22c55e;
}
.timeline-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}
.timeline-action {
  font-size: 13px;
  color: var(--text-main);
}
.empty-schedule {
  color: var(--muted);
  font-size: 14px;
  padding: 20px;
  text-align: center;
  width: 100%;
}

/* ─── Mobile Responsiveness ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main {
    padding: 12px;
  }
  
  .topnav {
    padding: 0 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .brand {
    padding-right: 16px;
    margin-right: 12px;
  }
  
  .nav-tabs {
    gap: 4px;
    white-space: nowrap;
  }
  
  .hero-row {
    grid-template-columns: 1fr;
  }
  
  .wa-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .controls {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  
  .search-box {
    width: 100%;
  }
  
  .panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .panel-head .controls {
    width: 100%;
  }
  
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  
  .funnel-row {
    grid-template-columns: 100px 1fr 30px;
  }
  
  .nav-right {
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  .wa-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .modal {
    width: 95%;
    padding: 10px;
  }
  
  .hero-card {
    padding: 16px;
  }
  
  .wa-stat {
    padding: 16px 12px;
  }
}
