/**
 * Module CSS: 18-stats.css
 * Trích nguyên văn dòng 848-876 của pctech-homepage.css gốc.
 * Không đổi nội dung — chỉ tách file theo đúng marker sẵn có trong code gốc.
 */
    /* ── Stats ── */
    .stats {
      background: var(--blue-dark);
      padding: 48px 0;
      margin-top: -40px;
      position: relative;
      z-index: 2;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat-item {
      text-align: center;
      color: var(--white);
      padding: 20px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label { font-size: 0.9rem; opacity: 0.85; }

