/* ═══════════════════════════════════════════════════════════
   KnowYourGujarat — LIVE STATS (Gujarat in Numbers)
   Exact Reference Spec — Pure White Card with Vertical Dividers
   ═══════════════════════════════════════════════════════════ */

.live-stats-section {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #FFFFFF;
  padding: 64px 0 56px;
  border-top: 1px solid #F1F5F9;
  border-bottom: none;
}

.live-stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Section Header ── */
.live-stats-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

/* Top Pill Badge */
.live-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.stats-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.stats-badge-dot.dot-blue {
  background: #0A4FCD;
}

.stats-badge-bar {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.stats-badge-bar.bar-orange {
  background: #FF7A00;
}

.stats-badge-bar.bar-green {
  background: #16A34A;
}

.stats-badge-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0A4FCD;
  text-transform: uppercase;
}

/* Main Heading */
.live-stats-main-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0A1C3E;
  margin: 0 0 10px;
  line-height: 1.15;
}

/* Subtitle */
.live-stats-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: #64748B;
  margin: 0 0 16px;
  font-weight: 400;
}

/* Decorative Tricolor Divider */
.live-stats-accent-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.accent-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.accent-line.line-orange {
  background: #FF7A00;
}

.accent-line.line-green {
  background: #16A34A;
}

.accent-dot.dot-blue {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0A4FCD;
}

/* ── 6-Column Metrics Grid ── */
.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  align-items: stretch;
}

/* Individual Stat Card */
.live-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 14px;
  border-right: 1px solid #E2E8F0;
  transition: transform 0.25s ease;
  min-width: 0;
}

.live-stat-card:last-child {
  border-right: none;
}

.live-stat-card:hover {
  transform: translateY(-4px);
}

/* Icons */
.live-stat-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.live-stat-icon-wrap.icon-blue { color: #0A4FCD; }
.live-stat-icon-wrap.icon-green { color: #16A34A; }
.live-stat-icon-wrap.icon-orange { color: #FF7A00; }

/* Number */
.live-stat-number-wrap {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.stat-plus {
  font-size: 26px;
  font-weight: 800;
  color: #0A1C3E;
}

/* Label */
.live-stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #64748B;
  margin: 6px 0 14px;
  text-align: center;
  line-height: 1.3;
}

/* Short Accent Bar */
.live-stat-accent-bar {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.live-stat-accent-bar.bar-blue { background: #0A4FCD; }
.live-stat-accent-bar.bar-green { background: #16A34A; }
.live-stat-accent-bar.bar-orange { background: #FF7A00; }

/* Footnote Badge */
.live-stat-footnote {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.live-stat-card:nth-child(1) .live-stat-footnote { color: #0A4FCD; }
.live-stat-card:nth-child(2) .live-stat-footnote { color: #16A34A; }
.live-stat-card:nth-child(3) .live-stat-footnote { color: #FF7A00; }
.live-stat-card:nth-child(4) .live-stat-footnote { color: #0A4FCD; }
.live-stat-card:nth-child(5) .live-stat-footnote { color: #16A34A; }
.live-stat-card:nth-child(6) .live-stat-footnote { color: #FF7A00; }

/* ── Responsive Breakpoints ── */
@media (max-width: 1240px) {
  .live-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 0;
  }
  .live-stat-card {
    border-right: 1px solid #E2E8F0;
    padding: 16px 12px;
  }
  .live-stat-card:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 720px) {
  .live-stats-main-title {
    font-size: 32px;
  }
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .live-stat-card {
    border-right: 1px solid #E2E8F0;
  }
  .live-stat-card:nth-child(2n) {
    border-right: none;
  }
  .live-stat-number-wrap {
    font-size: 26px;
  }
}
